@font-face {
  font-family: 'Black-ops';
  src: url('../fonts/BlackOpsOne-Regular.ttf');
}
@font-face{
  font-family: 'Krona One';
  src: url('../fonts/KronaOne-Regular.ttf');
}
@font-face{
  font-family: 'Khand';
  src: url('../fonts/Khand-Regular.ttf');
}

html{
  scroll-behavior: smooth;

}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.6s ease-in-out;
  transition-delay: 0.01s;

}
a{
  text-decoration: none;
  background: rgba(0, 20, 85, 0.416);
  border-radius: 30px;
  border: 2px solid white;
  font-family: 'Krona One', sans-serif;
  color: white;
  text-align: center;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
}
a:hover{
  background: black;
}
.h-3{
  width: 100%;
  text-align: center;
  text-transform: capitalize;
  font-size: 35px;
  letter-spacing: 5px;
  font-family: 'Black-ops';
  padding: 20px 0;
}
li{
  list-style-type: none;
}
body{
  /* background-image: url('../images/back-2.jpeg'); */
  background-image: url('../images/back-1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom;
  transition: all 0.1s ease-in-out;
  color: white;
  font-family: 'Khand', sans-serif;

}
body::-webkit-scrollbar {
  width: 6px;
  background-color: rgb(19, 24, 44);
}
body::-webkit-scrollbar-thumb {
  background-color: rgb(231, 9, 83);
  box-shadow: -10px 0 20px white;
  border-radius: 30px;
}

.new{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: #14152263;
}
.new div{
  background: blue;
  padding: 50px 20px;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  width: 700px;
  text-align: center;
  border-radius: 5px;

}
.new div a{
  margin-top: 30px;
  display: inline-block;
  width: 300px;
}
.new div p{
  text-align-last: center;
  font-size: 5em;
  display: block;
  background: red;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 46px;
  cursor: pointer;
}
/* --------------------------------------------
        PAGE LOADER
-------------------------------------------- */
.loader{
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: space-evenly;
  background: rgb(0, 0, 0);
  animation: 1.3s ld-back 1;
  animation-delay: 0s;
  opacity: 0;
  z-index: 2;
}
@keyframes ld-back{
  0%{z-index: 20;opacity: 1;}
  50%{z-index: 20;opacity: 1;}
  90%{z-index: 20;opacity: 1;}
  100%{z-index: 20;opacity: 0.5;}
}
.loader div{
  position: absolute;
  top: 30%;
  width: 20vh;
  height: 20vh;
  transition: 0.0001s;
  animation: 2s load infinite;
  animation-delay: 0s;
  opacity: 0;
  border-radius: 50%;

}
@keyframes load{
  0%{
    z-index: 20;
    opacity: 1;
    border-top: 2px solid rgb(0, 92, 167);
  }
  30%{
    z-index: 20;
    opacity: 1;
    border-right: 2px solid rgb(192, 0, 160);
  }
  60%{
    z-index: 20;
    opacity: 1;
    border-bottom: 2px solid rgb(0, 119, 255);
  }
  80%{
    z-index: 20;
    opacity: 1;
    border-left: 2px solid rgba(247, 0, 255, 0.767);
  }
  100%{
    z-index: 20;
    opacity: 1;
    border-left: 2px solid rgba(247, 0, 255, 0.767);
    transform: rotate(360deg)
  }

}
#cont-body, #home{
  position: relative;
  z-index: 10;
}




.nav-bar{
  position: absolute;
  top: 1.3%;
  right: 5%;
  font-family: 'Krona One';
}
.nav-bar ul li{
  display: inline-block;
}
.nav-bar ul li a{
  display: inline-block;
  padding: 15px 25px;
  color: white;

}
.nav-bar ul li:nth-child(1) a{
  border: none;
}

.sec-1{
  padding-top: 30vh;
  min-height: 95vh;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.sec-1 img{
  width: 300px;
  max-width: 100%;
}
.sec-1 div{
  width: 70%;
  padding: 60px;
  text-align: center;
  font-family: 'Khand', sans-serif;
  font-size: 30px;
  text-shadow: 0 0 20px rgba(0,0,0);
}
.sec-1 div p span{
  font-family: 'Black-ops';
  font-size: 40px;
  letter-spacing: 3px;
}
.sec-1 button {
  background: none;
  border: none;
  margin-top: 30px
}
.sec-1 button a{
  padding: 15px 20px;
  border: none;
}

/* -----------------------------------------
        SCROLL ME BUTTON
----------------------------------------- */
.scroll-bar a{
  all: unset;
}
.scroll-bar{
  position: absolute;
  padding: 3px 5px;
  top: 85vh;
  right: -10px;
  transform: rotate(90deg);
  letter-spacing: 5px;
  animation: 5s scroll-me infinite;
  border-radius: 30px;
  cursor: pointer;

}

.scroll-bar:hover{
  background: black;
  animation-play-state: paused;
}
.scroll-bar span{
  position: absolute;
  font-size: 35px;
  padding: 0 10px ;
  margin-top: -15px;
  text-shadow: 0 0 10px white;
}
@keyframes scroll-me{
  0%{
    top: 85vh;
  }
  50%{
    top: 80vh;
    box-shadow: 0 0 10px white;

  }
  70%{
    top: 85vh;
    box-shadow: 0 0 10px rgb(255, 0, 76);
  }
  100%{
    /* top: 87vh; */
  }
}


.sec-2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px 0;

}
.sec-2 div i{
  width: 60px;
  font-size: 60px;
  filter: drop-shadow(10px 10px 15px rgb(11, 11, 32));
}
.sec-2 div{
  width: 30%;
  min-width: 200px;
  background: rgba(0, 20, 85, 0.616);
  padding: 20px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 23px;
  border-radius: 20px 0 20px 0;
}
.sec-2 div p{
  text-transform: uppercase;
  font-weight: 900;
  border: 0.5px solid white;
  padding: 5px 2px 3px 2px;
  margin: 5px 0;
}
.sec-2 ol li:nth-child(1), .sec-2 ol li:nth-child(3){
  color: #ffd000;
  margin-top: 15px;
  margin-bottom: 10px;
  text-decoration: underline;
  letter-spacing:3px;
  font-weight: 300;
}


.icons{
  border-radius: none;
  width: 100%;
  min-height: 100px;
  background: rgba(138, 138, 138, 0.589);
  padding: 20px 0;
  text-align: center;
  transition: 2s ease-in;
}
.icons i{
  font-size: 70px;
  padding: 10px 5px;
  margin: 2px 0;
  display: inline-block;
  width: 150px;
  background: rgba(0, 5, 53, 0.233);
  border-radius: 10px;
}




.sec-3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 30px 0;
}
.sec-3 img{
  display: inline-block;
}
.sec-3 div{
  width: 30%;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s ease-in-out;
  overflow: hidden;
  margin: 5px 0;
}
.sec-3 a{
  display: block;
  padding: 0px;
  border: none;
  background: none;
}
.sec-3 .overlay{
  position: relative;
  background-color:  #141522;
  height: 100%;
  margin-top: -60%;
  width: 100%;
  padding: 8%;
  opacity: 0;
}
.sec-3 div:hover .overlay{
  opacity: 1;
}
.sec-3 div:hover img{
  filter: blur(1px);
  transform: scale(1.5);
}
.overlay p{
  font-family: 'Krona One';
  text-decoration: underline;
}
.overlay a{
  padding: 7px 20px;
  border: 2px solid white;
  display: inline-block;
}
.overlay a:hover{
  background: rgba(0, 0, 0, 0.993);
}



/* -----------------------------------------
            4th section
-----------------------------------------*/
.sec-4{
  background: #141522;
  padding: 20px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.sec-4 div{
  width: 50%;
  min-width: 300px;
}
.sec-4 .h-3{
  font-size: 30px;
}
.sec-4 p{
  font-size: 20px;
}
/* ------------------------------------------------
          5TH SECTION --> TESTIMONIALS
------------------------------------------------ */
.sec-5{
  background-image: url('../images/backlit-1.png');
  background-size: cover;
  background-position: right;
  text-align: center;
  background-attachment: fixed;
  padding: 30px 0;

}
.sec-5>p:nth-child(2){
  font-family: 'Krona One';
  margin-bottom: 30px;
}
.testi-cont{
  width: 400px;
  max-width: 95%;
  position: relative;
  left: 50%;
  transform: translate(-50%)
}
.testi-cont img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: grayscale(100%);
}
.testimonial-name{
  font-weight: 700;

}
.testimonial-name em{
  font-weight: 100;
  text-decoration: underline;
}

/* -----------------------------------------------
            FOOTER
----------------------------------------------- */
footer{
  background: #141522;
  display: flex;
  justify-content: space-evenly;
}
footer img{
  width: 100%;
  border-radius: 50%;
}
.footer-icons{
  font-size: 30px;
  transition: 0.1s ease-in-out;
}
.footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 0 5px;
  border: none;
  background: none;
  cursor: pointer;
}
.footer-icons a:hover i{
  text-shadow: 0 0 10px white;
  transition: 0.1s ease-in-out;
}
footer div{
  width: 90%;
  padding: 40px 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
footer div p{
  width: 30%;
  text-align: center;
}

footer .top{
  position: absolute;
  padding: 12px 25px;
  padding-top: 16px;
  right: 20px;
  margin-top: -25px;
  font-size: 50px;
  background: rgba(199, 1, 83, 0.685);
  width: 40px;
  line-height: 22px;
  border-radius: 50%;
  transform: rotate(90deg);
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.top:hover{
  background: rgb(231, 9, 83);
  box-shadow: 0 0 10px white;
}
.top a, .top a:hover{
  all: unset;
}



/* ---------------------------------------
                CONTACTS
 ------------------------------------------ */

#contacts-body{
  background-position: bottom;
}
.contacts-sec-1{
  margin-top: 7vh;
  margin-right: 5%;
  text-align: right;
}
.contacts-sec-1 a{
  display: inline-block;
  width: 140px;

}

.contacts-sec-1 a:nth-child(1){
  border: none;
}
.contacts-hd{
  margin-top: 10px;
  text-align: center;
  font-size: 30px;
  padding: 20px;
  font-family: 'Black-ops';
}
.form-1{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 500px;
  max-width: 90%;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 15px rgb(0, 0, 0);
  letter-spacing: 3px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

}
.form-1 div{
  display: inline-block;
  text-align: left;
}
.text-area{
  width: 100%;
}


.form-1 label{
  display: inline-block;
  font-size: 20px;
  margin-top: 10px;
  font-weight: 700;
}
input,textarea{
  outline: none;
  background: none;
  border: 1.5px solid white;
  border-radius: 5px;
  padding: 7px 5px;
  font-size: 18px;
  color:rgb(255, 255, 255);
}
input::placeholder, textarea::placeholder{
  color: rgb(85, 83, 83);
  font-size: 16px;
}
.form-1 input, .form-1 textarea{
  width: 100%;
  cursor: pointer;
}
.form-1 input[type=text]:focus, .form-1 textarea:focus{
  background: rgba(0, 20, 85, 0.416)
}
.form-1 input[type=submit]{
  margin: 20px 0;
  padding: 10px 25px;
  width: 50%;
  border-radius: 30px;
  font-family: 'Krona One', sans-serif;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
.form-1 input[type=submit]:hover{
  background: black;
}

@media screen and (max-width: 1050px){
  .sec-3 div{
    width: 45%;
  }
}
@media screen and (max-width: 541px){
  body{
    background-position: center;
  }
  .sec-1{
    padding-top: 20vh;
  }

  .sec-1 div{
    width: 100%;
    padding: 10px;
  }
  .scroll-bar{
    display: none;
  }
  .sec-2{
    background: #141522;
  }
  .sec-2 div{
    width: 100%;
    margin: 2px 0;
  }
  .sec-2 div{
    border-radius: 0px;
    background: none;
  }
  .sec-3 div{
    width: 70%;
    margin: 10px 0 0 0;
    min-height: 140px;
  }
  .sec-3 .overlay{
    font-size: 0.7em;
    border: 5px solid #141522;
  }
  .form-1 div{
    width: 100%;
  }
  .sec-4 div{
    width: 100%;
  }
  .contacts-hd{
    font-size: 5vw;
  }
  footer div p{
    width: 100%;
  }

}
