/* general css */
body, html {
    height: 100%;
    font-family: 'Gruppo';
}

#loader{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 100;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#loaderSpan {
  display: inline-block;
  width: 30px;
  height: 30px;
/*  position: relative;*/
  border: 4px solid rgb(189,156,89);
/*  top: 50%;*/
  animation: loader 2s infinite ease;
}

#loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: rgb(189,156,89);
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

button{
    font-family: 'Gruppo';
    font-weight: bold;
}

input{
    font-family: 'Gruppo';
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    border: 0;
    padding: 0;
    margin: 0;
}

h2{
    /*font-family: Playfair Display, Georgia, Times New Roman serif;*/
    color:rgb(189,156,89);
}

h3{
    color:#666;
}

hr{
    background-color: #666;
}

p, pre{
    color: #939393;
}

/* header css */
header{
    width: 100%; 
    height: 80vh;  
    background-size: 100% 80%; 
    background-position: top center;
    position: relative;
    background-attachment: fixed;
}

/* nav css */
nav{
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.5s ease;
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10px;
}

nav:hover{
    background-color: rgba(0, 0, 0, 0.7); 
}

nav a{
    color: rgb(189,156,89);
    margin: 0 15px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.5s ease;
}

nav a:hover{
    color: rgba(189,156,89,0.5);
    text-decoration: underline;
}

.logo{
    position: fixed; 
    top: 10px; 
    left: 20px; 
    z-index: 10; 
    width: 70px;
}

.mobNavLink{
    display: none;
}

/* mobnav css */
.mobNav{
    z-index: 15;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    transition: 0.3s ease;
    overflow: hidden;
    background-color: black;
    padding-top: 60px; /* Place content 60px from the top */
}

.mobNav a{
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-size: 30px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.mobNav a:hover {
  color: #f1f1f1;
}

.mobNav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}

.dropdown_container {
    display: none;
    background-color: #262626;
}

.dropdown_container a{
    padding: 5px;
    font-size: 25px;
}

.active {
    background-color: black;
}

footer{
    width:100%;
    background-color: black;
    padding: 8px 17px;
    color: rgb(189,156,89);
    position: relative;
    transition: 0.5s;
    content: "";
    clear: both;
    display: table;
    font-size: 18px;
    height: 10%;
}

.socialIcon_div{
    padding-left: 10px;
    display: inline-block;
}

footer a, .socialIcon_div a{
    text-decoration: none;
    color: rgb(189,156,89);
    transition: color 0.5s ease;
}

footer a:hover, .socialIcon_div a:hover{
    color: rgba(189,156,89,0.5);
}

.blur{
    background-color: rgba(0, 0, 0, 0.3); 
    width: 100%; 
    height: 100%;
}

.cpanelLogoutDiv{
    position: fixed; 
    top: 90px; 
    right: 10px; 
    background-color: #ff6666;
    z-index: 2;
    opacity: 0.5;
    padding: 8px; 
    border-radius: 4px;
    color: white;
    transition: opacity 0.5s ease;
}

.cpanelCpanelDiv{
    position: fixed; 
    top: 90px; 
    right: 100px; 
    background-color: rgb(26, 140, 255);
    z-index: 7;
    opacity: 0.5;
    padding: 8px; 
    border-radius: 4px;
    width: 81.77px;
    text-align: center;
    color: white;
    transition: opacity 0.5s ease;
}

.cpanelLogoutDiv:hover, .cpanelCpanelDiv:hover{
    opacity: 1;
}

@media only screen and (max-width: 1025px) {

    /* media query for navbar */
    .navLinks{
        display: none;
    }

    .mobNavLink{
        display: inline;
    }

}

@media only screen and (max-width: 750px){
    nav{
        padding: 60px 30px;
    }

    /* content media */
    .socialIcon_div{
        margin-top: 5px;
        padding-left: 15px;
    }

    /* to make image backgorund fixed for ios */
    header{
        height: 320px;
        background-attachment: scroll;
        background-size: 100% 100%; 
        background-position: center;
    }
}

@media only screen and (max-width: 500px){
    nav{
        padding: 60px 20px;
    }
}
