:root{
  --white-color:#fff;
  --dark-color:#222;
  --body-bg-color:#fff;
  --section-bg-color:#202834;
  --navigation-item-hover-color:#3b5378;

  --text-shadow:0 5px 25px rgba(0,0,0,0.1);
  --box-shadow:0 5px 25px rgb(0 0 0 / 20%);

  --scroll-bar-color:#fff;
  --scroll-thumb-color:#282f4e;
  --scroll-thumb-hover-color: #454f6b;

}

body {
  margin: 0;
  padding: 0;
  /* background-color: #000; */
  background-image: url(https://i0.wp.com/picjumbo.com/wp-content/uploads/keep-calm-keep-moving-free-photo.jpg?w=2210&quality=70);
  background-size: cover;
  background-position: center;
  padding-bottom: 100px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

header{
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: calc(5rem + 1rem);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
}

header .nav-bar{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
  transition: 0.3s ease;
}

.nav-close-btn, .nav-menu-btn{
  display: none;
}

.nav-bar .Logo{
  color: var(--white-color);
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 2px;
  /* width: 5px; */
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: var(--text-shadow);
}

.navigation .nav-items a{
  color: var(--white-color);
  font-size: 0.90em;
  text-decoration: none;
  /* text-shadow: var(--text-shadow); */
  text-shadow: 0 0 4px black; 
  align-items: center;   
}

.navigation .nav-items a:hover{
  color: greenyellow;
  transition: 0.3s ease-in-out;
}

.navigation .nav-items a i{
  display: none;
}

.navigation .nav-items a:not(:last-child){
  margin-right: 45px;
}

#contact {
  width: 100%;
  height: 100%;
  margin-top: 50px;
}

.section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 300 60px 'Poppins', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 500;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
  /* background-color: white; */
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7px);
    /* text-shadow: var(--text-shadow); */
    /* text-decoration-color: white; */
    
}

/* Left contact page */
.form-horizontal {
  /*float: left;*/
  max-width: 400px;
  font-family: 'Lato';
  font-weight: 400;

}

.form-control, 
textarea {
  max-width: 400px;
  /* background-color: #000; */
  border-radius: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
  color: #fff;
  letter-spacing: 1px;
  /* text-shadow: 0 0 4px black; */
}

.form-control::placeholder{
    color: white;
}

.send-button {
  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

.alt-send-button {
  width: 400px;
  height: 34px;
  transition: all .2s ease-in-out;
}

.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px 'Lato', sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
  max-width: 400px;
}

/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}

.list-item {
  line-height: 4;
  color: #ffffff;
}

.contact-text {
  font: 300 18px 'Lato', sans-serif;
  letter-spacing: 1.9px;
  color: #ffffff;
}

.place {
  margin-left: 62px;
}

.phone {
  margin-left: 56px;
}

.gmail {
  margin-left: 53px;
}

.contact-text a {
  color: #ffffff;
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color: #0165E1;
  text-decoration: none;
}


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

.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;
}

.copyright {
  font: 200 14px 'Oswald', sans-serif;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
}

hr {
  border-color: rgba(255, 255, 255, 0.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%;
  }
}

@media  screen and (max-width: 1100px) {
  header .nav-bar{
      padding: 0 50px;
  }

  .swiper-slide .text-content{
      margin: 0 120px 0 50px;
  }

  .bg-slider-thumbs{
      bottom: 3em;
  }
}

@media  screen and (max-width: 785px){
  header .nav-bar{
      padding: 25px 20px;
  }

  .swiper-slide .text-content{
      margin: 0 70px 0 20px;
  }

  .swiper-slide .text-content .title{
      font-size: 3em;
  }

  .swiper-slide .text-content .title span{
      font-size: 0.35em;
  }

  .swiper-slide .text-content p{
      font-size: 0.9em;
  }

  .nav-menu-btn{
      display: block;
      color: var(--dark-color);
      position: absolute;
      top: 0;
      right: 0;
      font-size: 1.3em;
      margin: 10px;
      cursor: pointer;
      transition: 0.3s ease-in-out;
  }

  .navigation{
      z-index: 99999;
      position: fixed;
      width: 100%;
      height: 100vh;
      /* margin-top: 50px; */
      top: 0;
      left: 0;
      background: rgba(0,0,0,0.25);
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: 0.3s ease-in-out;
  }

  .navigation.active{
      visibility: visible;
      opacity: 1;
  }

  .navigation .nav-items{
      position: relative;
      /* background: var(--white-color); */
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      text-shadow: 0 0 4px black;
      /* padding: 20px; */
      border-radius: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: var(--box-shadow);
      width: 400px;
      max-width: 400px;
      display: grid;
      place-content: center;
      margin: 20px;
      margin-top: 360px;
      padding: 5px;
      border-radius: 20px;
      box-shadow: var(--box-shadow);
      transform: translateY(-200px); 
      transition: 0.3s ease-in-out;
  }

  .navigation .nav-items a{
      color: white;
      font-size: 1em;
      margin: 15px 50px;
      transition: 0.3s ease-in-out;
      text-shadow: none;
  }

  .navigation.active .nav-items{
      transform: translateY(-50%);
      transition: 0.3s ease-in-out;
  }

  .navigation .nav-items a i{
      display: inline-block;
      font-size: 1.3em;
      margin-right: 5px;
  }

  .swiper-slide .text-content .read-btn {
      margin-top: 20px;
  }
}