/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #ECF2FA !important;
    color: #091841 !important; 
    font-family: 'Poppins', sans-serif !important;
    width: 100%;
    overflow-x: hidden;
}
::-webkit-scrollbar
{
	width: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
::-webkit-scrollbar-thumb
{
	border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
}
.navbar{
    margin-top: 2.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    width: 100%;
}
.navbar img{
    border-radius: 100%;
}
.hamburger .line{
    width: 50px;
    height: 5px;
    background-color: #091841;
    display: block;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger:hover{
    cursor: pointer;
  }
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(5, 13, 87, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    left: 40%;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #6097E2;
    letter-spacing: 5px;
  }
  
  .overlay .nav-close-btn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  
.heading{
    width: 100%;
}
.heading .header h1{
    font-size: 48px;
    font-weight: 900;
    margin-top: 7.5rem;
    left: 16.5%;
    transform: translateX(16.5%);
}
.heading .header .header-btn{
    padding: 20px;
    background: #1E40C8;
    color: #ECF2FA;
    margin-top: 5rem;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin-left: 40%;
    box-shadow:  20px 20px 60px #bebebe,
    20px 20px 60px #ffffff;
    text-decoration: none;
}
.heading .header .header-btn:hover{
    transform:  translateY(-5px);
}

.heading  .img{
    margin-top: 2rem;
    margin-left: 30%;
}
.team-div{
    margin-top: 10rem;
    margin-bottom: 15rem;
}
.team-div h1{
    margin-top: 10rem;
    margin-left: 20rem;
    font-size: 56px;
    font-weight: 900;
}
.team-div .team-content{
    margin-top: 5rem;
    margin-left: 15rem;
}

.team-div .team-content .square{
    margin-top: 10rem;
    margin-left: 15rem;
    background: url('https://images.pexels.com/photos/3183183/pexels-photo-3183183.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260');
    background-size: cover;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    box-shadow:  20px 20px 60px #bebebe,
    20px 20px 60px #ffffff;
}
.team-div .team-content .square-alpha{
    margin-top: -20rem;
    margin-left: -0.5rem;
    width:150px;
    height: 150px;
    border-radius: 20px;
    box-shadow:  20px 20px 60px #bebebe,
    20px 20px 60px #ffffff;
    background: url('https://images.pexels.com/photos/461049/pexels-photo-461049.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    background-size: cover;
}
.team-div .team-content .image-container{
    margin-top: .5rem;
    margin-left: 5rem;
    display: flex;
}
.team-div .team-content .image-container img{
    width: 300px;
    height: 300px;
    margin-left: 20px;
    border-radius: 40px;
    animation: image-fade 0.5s ease;
}#img-2,#img-3{
    display: none;
}
@keyframes image-fade{
    from{
        opacity: 0;
        transform: scale(0);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
.team-div .team-content .image-slider{
    margin-top: 2.5rem;
    margin-left: 7.5rem;
}
.team-div .team-content .image-slider img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-left: 10px;
    opacity: 0.2;
    cursor: pointer;
    transition: all 0.2s ease;
}
.team-div .team-content .image-slider img:hover{
    transform: translateY(-5px);
    opacity: 1;
}
.square-members{
    margin-left: 40rem;
    margin-top: 5rem;
    width: 20vh;
}
.feature-div{
    margin-top: 10rem;
}
.feature-div h1{
    font-size: 56px;
    font-weight: 700;
    margin-left: 15rem;
}
.feature-div p{
    margin-top: 2.5rem;
    margin-left: 15rem;
    border-left: 5px solid #091841;
    padding-left: 2.5rem;
}
.feature-div .row{
    padding-left: 15rem;
    padding-right: 10rem;
    margin-top: 10rem;
}
.feature-div .row .col-sm-4{
    margin-bottom: 5rem;
}
.feature-div p{
    font-weight: 700;
}

.feature-div a:hover{
    transform: translateX(-5px);
}
.footer-div{
    background-color: #1E40C8;
    color: #ECF2FA;
    padding-top:5rem;
    padding-bottom: 5rem;
}
.footer-div .row{
    margin-top: 2rem;
    margin-left: 10rem;
    margin-right: 10rem;
}
.footer-div .row .square1{
    width: 100px;
    height: 100px;
    background: url('/assets/logo-sq.jpg');
    background-size: cover;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 20px 20px 60px #1a36aa,
    -20px -20px 60px #234ae6;
}
.footer-div .row .footer-ul{
    margin-left: 22.5rem;
}
.footer-div .row .label-ul{
    list-style-type: none;
    font-weight: 600;
}
.footer-div .row .info-ul{
    list-style-type: none;
}
.footer-div .row .label-ul li, .footer-div .row .info-ul li{
    margin-bottom: 20px;
}
.subscribe-modal{
    height: 50vh;
    width: 72.5vh;
    padding: 10px;
    border-radius: 20px;
    background: #091841;
    color: #ECF2FA;
    margin-top: -15rem;
    margin-left: 22.5rem;
    z-index: 1000;
    position: absolute;
    animation: subscribe 0.5s ease;
    display: none;
}
@keyframes subscribe{
    from{
        opacity: 0;
        transform: scale(0);
    }
    to{
        opacity:  1;
        transform: scale(1) rotate(360deg);
    }
}

.subscribe-modal .subscribe-content{
    padding:10px;
}
.subscribe-modal i{
    margin-top: 20px;
    margin-left: 20px;
    cursor: pointer;
}
.subscribe-modal .subscribe-content {
    margin-top: 1.5rem;
    margin-left: 1.5rem;
}
.subscribe-modal .subscribe-content button{
    margin-top: 10px;
    border:none;
    border-radius: 10px;
    background: #6097E2;
    padding:10px;
    width: 15vh;
}
.subscribe-modal .subscribe-content label{
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
}
.subscribe-modal .subscribe-content input{
    background: transparent !important;
    color: #ECF2FA !important;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #6097E2; 
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    width: 85% !important;
}