/*Declare some default universal values*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --mainColor: #EDD6BB;
    --orangeColor: #dd7732;
    --greenColor: #72B049;
}

body {
    font-family: 'Open Sans', sans-serif;
}

/*Style the preloader*/
#preloader{
  background: white url(/Assets/Images/Content/preloader.gif) no-repeat center center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

/*Style the scrollbar*/
::-webkit-scrollbar{
    width: 0.6em;
}

::-webkit-scrollbar-track{
    background: #3d3d3d;
}

::-webkit-scrollbar-thumb{
    background: rgba(145, 145, 145, 0.5);
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover{
    background-color: rgba(119, 118, 118, 0.9);;
}

/*Style the header*/
.logo{
  color: #B96814;
  font-size: 2em;
  letter-spacing: 1px;
  font-family: 'Roboto Mono', monospace;
}

header {
    background-color: transparent;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

ul{
    display: flex;
    list-style: none;
    align-items: center;

}

ul li a{
    padding:0 20px;
    text-decoration: none;
    color: #3a3a3a;
    display: inline-block;
}

/*Style the navigation menu buttons*/
.nav-buttons li{
    list-style: none;
    margin: 0 20px;
    display: flex;
}

.nav-buttons li a i{
    font-size: 35px;
    font-weight: 400;
    color: #fff;
    transition: 0.5s;
    padding-right: 14px;

}

.nav-buttons li a span{
    color: #333;
    letter-spacing: 2px;
    transition: 0.5;
    padding-left: 10px;
}

.nav-buttons li a{
    display: flex;
    align-items: center;
    width: 210px;
    height: 45px;
    background: #fff;
    padding-left: 20;
    position: relative;
    transition: 0.5s;
}

.nav-buttons li a::before{
    content: '';
    position: absolute;
    top: 10px;
    left: -20px;
    height: 100%;
    width: 20px;
    background: #cecece;
    transition: 0.5s;
    transform: skewY(-45deg);
}

.nav-buttons li a::after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: -10px;
    height: 20px;
    width: 100%;
    background: #cecece;
    transition: 0.5s;
    transform: skewX(-45deg);
}

.nav-buttons li:hover i{
    color: #fff;
}

.nav-buttons li:hover span{
    color: #fff
}

.nav-buttons li:hover a{
    background: #e49c6b;
    transform: translate(15px, -15px);
    box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
}

.nav-buttons li:hover a::before{
    background: #965622;
}

.nav-buttons li:hover a::after{
    background: #6d431d;
}

/*Style the curve background for the contact page*/
.spacer{
  aspect-ratio: auto;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.curve2{
  background-image: url('./Assets/SVGs/curve2.svg');
}

/*Style the contact form*/
section{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.box{
  position: relative;
}

.box .square{
  position: absolute;
  backdrop-filter: blur(5px);
  box-shadow: 0 25px 45px rgb(0,0,0,0.1);
  border: 1px solid rgb(255,255,255,0.5);
  border-right: 1px solid rgb(255,255,255,0.2);
  border-bottom: 1px solid rgb(255,255,255,0.2);
  background: rgb(255,255,255,0.1);
  animation: animate 10s linear infinite;
  animation-delay: calc(-1s * var(--i));
}

@keyframes animate{
  0%,100%{
      transform: translateY(-40px);
  }
  50%{
      transform: translateY(40px);
  }
}

.box .square:nth-child(1){
  top: -50px;
  right: -60px;
  width: 100px;
  height: 100px;
}

.box .square:nth-child(2){
  top: 150px;
  left: -100px;
  width: 120px;
  height: 120px;
  z-index: 2;
}

.box .square:nth-child(3){
  bottom: 50px;
  right: -60px;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.box .square:nth-child(4){
  bottom: -80px;
  left: 100px;
  width: 50px;
  height: 50px;
}

.box .square:nth-child(5){
  top: -80px;
  left: 100px;
  width: 60px;
  height: 60px;
}

.container{
  position: relative;
  width: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 25px 45px rgb(0,0,0,0.1);
  border: 1px solid rgb(255,255,255,0.5);
  border-right: 1px solid rgb(255,255,255,0.2);
  border-bottom: 1px solid rgb(255,255,255,0.2);
}

.form{
  position: relative;
  width: 100%;
  padding: 40px;
}

.form h2{
  font-family: 'Roboto Mono', monospace;
  position: relative;
  color: white;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}

.form h2:before{
  content: '';
  position: absolute;
  left: 76px;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: #fff;
}

.form .inputBx{
  width: 100%;
  margin-top: 20px;
}

.form .inputBx input{
   width: 100%;
   background: rgba(255,255,255,0.2);
   border: none;
   outline: none;
   padding: 10px 20px;
   border-radius: 35px;
   border: 1px solid rgb(255,255,255,0.5);
   border-right: 1px solid rgb(255,255,255,0.2);
   border-bottom: 1px solid rgb(255,255,255,0.2);
   font-size: 16px;
   letter-spacing: 1px;
   color: #fff;
   font-family: 'Roboto Mono', monospace;
   box-shadow: 0 5px 15px rgb(0,0,0,0.05);
}

.form .inputBx textarea{
  width: 315px;
  height: 140px;
  resize: none;
  background: rgba(255,255,255,0.2);
  border: none;
  outline: none;
  padding: 10px 20px;
  font-family: 'Roboto Mono', monospace;
  border-radius: 15px;
  border: 1px solid rgb(255,255,255,0.5);
  border-right: 1px solid rgb(255,255,255,0.2);
  border-bottom: 1px solid rgb(255,255,255,0.2);
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff !important;
  box-shadow: 0 5px 15px rgb(0,0,0,0.05);
}

.form .inputBx input::placeholder{
  color: #fff;
}

.form .inputBx textarea::placeholder{
  color: #fff;
}

.form .inputBx input[type="submit"]{
  background: white;
  color: #666;
  max-width: 150px;
  cursor: pointer;
  margin-bottom: 20px;
  margin-left: 80px;
  font-weight: 600;
  transition: .5s ease-in-out;
}

.form .inputBx input[type="submit"]:hover{
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
}

.text{
  margin-top: 5px;
  color: #fff;
}

.text a{
  margin-top: 5px;
  color: #fff;
}

input[type=file]::file-selector-button {
  margin-right: 20px;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  background: white;
  color: #666;
  transition: background .5s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
}

/* Social Media Icons */
.social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.social-media-list li a {
  color: #fff;
}

.social-media-list li {
  position: relative; 
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27,27,27);
  cursor: pointer; 
  transition: all .2s ease-in-out;
}

.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all .2s ease-in-out;
}

.social-media-list li:hover {
  background-color: #fff; 
}

.social-media-list li:hover:after {
  opacity: 1;  
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}

.social-media-list li:hover a {
  color: #000;
}

hr {
  border-color: rgba(255,255,255,.6);
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container, .form-horizontal {
    margin: 0 auto;
  }  
  
  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }    
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

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

  .direct-contact-container, .form-wrapper {
    float: none;
    margin: 0 auto;
  }  
  .form-control, textarea {
    
    margin: 0 auto;
  }
  
  
  .name, .email, textarea {
    width: 280px;
  } 
  
  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }  
  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  
}

@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}

/*Style the footer*/
footer{
    position: relative;
    padding-top: 0px;
    padding-bottom: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    height: 0%;;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
}

.socials li{
    margin: 0 5px;
}

.socials a{
    text-decoration: none;
    color: rgb(105, 105, 105);
}

.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;
}

.socials a:hover i{
    color: var(--mainColor);
}

.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}