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

.t-blue{
    color: #182a5a;
}
.blue{
    background-color: #182a5a;
}

.shadow{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.main-container .slideshow-container{
  position: relative;
  margin: auto;
}

.main-container .slideshow-container .mySlides{
  display: none;
}

.main-container .slideshow-container .mySlides .text{
  color: #f2f2f2;
  padding: 8px 12px;
  position: absolute;
  bottom: 40%;
  width: 100%;
  text-align: center;
  z-index: 99;
}

.main-container .slideshow-container .mySlides .text{
  transform: translateX(-100px);
  opacity: 0;
  animation: move-in 1s ease forwards;
}

.overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: rgb(5, 5, 37);;
  opacity: 0.6;
}

.fad{
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade{
  from{opacity: .4}
  to{opacity: 1}
}

@keyframes move-in{
  to{ transform: translateX(0);
      opacity: 1;}
}

.myBtn {
    display: block; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    left: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: blue; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 100px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

.myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}


.whatsapp-btn{
    position: fixed; /* Fixed/sticky position */
    bottom: 60px; /* Place the button at the bottom of the page */
    left: 30px; /* Place the button 30px from the right */
    z-index: 9999999999999;
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 10px; /* Some padding */
    border-radius: 600px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

.container{
    background: linear-gradient(to bottom right, #7d98d3 ,#031853);
    height:85vh;
    width:70vw;
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    
}

a{
  text-decoration: none;
}

.loader{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom right, rgb(2,0,36) ,#00103d);
  height:100vh;
  overflow:hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999999999999999999999999999999;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.menu{
  background-color: #00103d;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

ul li{
  list-style-type: none;
}

a{
  color: white;
}
a:hover{
  color: orange;
}

.navv{
  display: block;
  z-index: 9999;
}    
.navv2{
  display: none;
  z-index: 9999;
} 

.size{
  font-size: 80px;
}

.main-container{
  margin-top: 80px;
  background-image: url(../images/paul-teysen-bukjsECgmeU-unsplash.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  overflow-y: scroll;
}

.active{
  color: #7d98d3;
  border: 2px solid #7d98d3;
}

@media only screen and (max-width:1200px){
  .navv{
    display: none;
  }    
  .navv2{
    display: block;
  }
  .size{
    font-size: 40px;
  }  
  .main-container{
    margin-top: 80px;
  }
}