

/*  */
html,body{
    padding: 0;
    margin: 0;
}
*{
    font-family: "Poppins";
    font-weight: 300;
    position: relative;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.font-400{
    font-weight: 400;
}
.font-700{
    font-weight: 700;
}
.font-900{
    font-weight: 900;
}
.flex{
    display: flex;
}
.justify-between{
    column-gap: 16px;
}
.navbar{
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0%;
    left: 0;
    z-index: 100;
    background-color: #111227;
    box-shadow: 1px 1px 2px #111227;
}
.navbar-brand{
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-left: 100px;
}
.navbar-nav{
    margin-right: 100px;
}
.navbar-nav li{
    margin: 0 20px;
}
.navbar-nav a{
    color: #ffffff;
}
.navbar-nav a.active{
    border-bottom: 2px solid #ffffff;
}
.hero{
    width: 100%;
    height: calc(100vh - 72px);
    background: linear-gradient(135deg, #111227, #192B53, #098C7E 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
    position: relative;
}
.left-hero{
    padding-left: 100px;
    padding-top: 64px;
    color: white
}
.right-hero{
    padding-right: 100px;
    color: white;
    padding-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-hero h1{
    font-size: 4.60vw;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 0;
}
.left-hero h5{
    font-size: 17px;
    text-align: justify;
    margin-top: 8px;
    line-height: 28px;
    padding-right: 7.2vw;
}
.left-hero button{
    height: 54px;
    background-color: transparent;
    border: 2px solid #098C7E;
    padding: 8px 32px;
    color: #ffffff;
    font-size: 16px;
    border-radius: 4px;
    position: relative;
}
.left-hero button span{
    position: relative;
    font-size: 16px;
    z-index: 10;
}
.left-hero button:hover span{
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.left-hero button::before{
    content: "";
    width: 0;
    height: 100%;
    background-color: #098C7E;
    transition: all 650ms ease-out;
}
.left-hero button:hover::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #098C7E;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 650ms ease-out;
    border: none;
}
.services-section{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1.5em;
    row-gap: 1.5em;
    padding: 100px;
}
.services-section .card{
    /* width: 100%; */
    height: 320px;
    box-shadow: 3px 3px 3px #11122715;
    border-radius: 4px;
    border: 1px solid #11122715;
    padding: 2.4vw 2.2vw;
    border-radius: 8px;
}
.services-section .card h5{
    font-size: 1.85vw;
    color: #192B53;
    margin: 0;
    font-weight: 600;
    line-height: 32px;
    margin-top: 18px;
    margin-bottom: 18px;
}
.services-section .card p{
    font-size: 1.35vw;
    color: #192B53;
    margin: 0;
    font-weight: 400;
}

.feature-sections{
    z-index: 20;
}
.feature-1{
    display: grid;
    grid-template-columns: 40% 60%;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    min-height: 100vh;
    /* background-color: #f6f6f5; */
    background: linear-gradient(-135deg, #111227, #192B53, #098C7E 100%);
}
.feature-1 .feature-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.feature-1 .feature-right h3{
    font-size: 3.6vw;
    text-align: right;
    color: #f0eeee;
}
.feature-1 .feature-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.feature-1 .feature-left h4{
    font-size: 1.75vw;
    text-align: left;
    margin: 0;
    margin-top: 150px;
    color: #f0eeee;
}
.feature-1 .feature-left button{
    padding: 14px 32px;
    background-color: #098C7E;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    border-radius: 4px;
    border: 2px solid #f6f6f5;
    color: #f6f6f5;
    margin-top: 16px;
}
.feature-2{
    display: grid;
    grid-template-columns: 60% 40%;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    min-height: 100vh;
    background-color: #f6f6f5;
}
.feature-2 .feature-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.feature-2 .feature-left h3{
    font-size: 3.6vw;
    text-align: left;
}
.feature-2 .feature-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.feature-2 .feature-right h4{
    font-size: 1.75vw;
    text-align: right;
    margin: 0;
    margin-top: 150px;
    color: #111227;
}
.feature-2 .feature-right button{
    padding: 14px 32px;
    background-color: #098C7E;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    border-radius: 4px;
    border: 2px solid #f6f6f5;
    color: #f6f6f5;
    margin-top: 16px;
}
.feature-3{
    padding: 32px 100px;
    /* min-height: 100vh; */
    height: auto;
    background-color: #f0eeee;
    /* background: linear-gradient(-135deg, #111227, #192B53, #098C7E 100%); */
}
.feature-3 h3{
    font-size: 3.2vw;
    text-align: left;
    color: #111227;
    width: 50%;
}
.feature-3 p{
    color: #111227;
    text-align: justify;
}
.feature-3 p img{
    margin-right: 32px;
    margin-bottom: 5px;
    width: 48%;
    float: left;
}
.feature-3 ul{
    padding: 0;
    margin-top: 0;
}
.feature-3 ul li{
    color: #111227;
    margin-bottom: 6px;
}
.feature-4{
    padding: 32px 100px;
    /* min-height: 100vh; */
    height: auto;
    background: #f0eeee;
}
.feature-4 h3{
    font-size: 3.2vw;
    text-align: left;
    color: #192B53;
    width: 50%;
}
.feature-4 p{
    color: #192B53;
    text-align: justify;
}
.feature-4 p img{
    margin-left: 32px;
    margin-bottom: 5px;
    width: 48%;
    float: right;
}
.feature-4 ul{
    padding: 0;
    margin-top: 0;
}
.feature-4 span,
.feature-4 ul li{
    color: #192B53;
    margin-bottom: 6px;
    display: block;
}

.services{
    font-size: 4.2vw;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    -webkit-text-stroke: 1.5px #192B53;
    height: 32vh;
    background-color:  #192B53;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-4 .feature-right button{
    padding: 14px 32px;
    background-color: #098C7E;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    border-radius: 4px;
    border: 2px solid #f6f6f5;
    color: #f6f6f5;
    margin-top: 16px;
}
.section-container{
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-container>h2{
    font-size: 4.2vw;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    -webkit-text-stroke: 1.5px #192B53;
}
.partners-section{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 60px;
}
.partners-section > div{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f0eeee;
    height: 200px
}
.partners-section > div img{
    filter: grayscale(0.8)
}
.partners-section > div:hover img{
    filter: grayscale(0)
}
footer{
    height: 55vh;
    padding: 50px 100px;
    background-color: #111227;
    position: relative;
}
footer .brand-name{
    font-size: 1.4em;
    color: #ffffff;
}
footer .footer-nav{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.footer-nav h5{
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    margin-bottom: 28px;
}
.footer-nav ul{
    padding-left: 0;
    padding-right: 32px;
}
.footer-nav li{
    color: #f0eeee;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 300;
    /* line-height: 16px; */
}
.footer-socials{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 20%;
}
.footer-socials a{
    padding-right: 16px;
    display: hidden;
}
.copyright-text{
    color: #f0eeee;
    font-size: 14px;
}
.sroll-to-top{
    color: #ffffff;
    position: absolute;
    right: 4em;
    bottom: 8em;
}
.contact-form{
    /* height: 80vh; */
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 70px 100px;
}
.contact-form h4{
    font-size: 3em;
}
.form-container{
    padding-top: 50px;
    padding-bottom: 100px;
}
.form-group{
    padding: 0 42px;
    margin-bottom: 24px;
}
.input-field{
    width: 100%;
    height: 40px;
    border: 1px solid #cccccc;
    outline: none;
}
.textarea-field{
    width: 100%;
    height: 80px;
    border: 1px solid #cccccc;
    outline: none;
}
.submit-btn{
    padding: 10px 54px;
    background-color: #192B53;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    border-radius: 4px;
    border: 2px solid #f6f6f5;
    color: #f6f6f5;
    margin-top: 16px;
}
.primary-color{
    color: #192B53;
    font-weight: 700;
}
.about-us{
    width: 100%;
    min-height: 32vh;
    padding-bottom: 60px;
    padding-top: 7%;
    background: linear-gradient(135deg, #111227d0, #192B53d0, #098c7fd0 100%),
    url(../assets/about.jpg);
    background-size: 100%;
}
.about-us h4{
    font-size: 4.2vw;
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    -webkit-text-stroke: 1.5px #192B53;
}
.about-us h5{
    font-size: 15px;
    padding: 0 100px;
    text-align: justify;
    color: white;
}
.dropdown{
    display: none !important;
}
.dropdown {
    position: relative;
    display: inline-block;
    padding-right: 24px;
  }
  
  .dropdown-content {
    display: none;
    position: fixed;
    right: 24px;
    top: 48px;
    background-color: #f9f9f9;
    min-width: 140px;
    min-height: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    border-radius: 6px;
    z-index: 1;
  }
  .dropdown a{
      height: 30px;
      display: inline-block;
      width: 100%;
      color: #000000;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
@media screen and (max-width: 640px){
    *{
        overflow-x: hidden;
    }
    .dropdown {
        position: relative;
        display: inline-block !important;
        padding-right: 24px;
      }
    .about-us h5{
        padding: 0 24px;
    }
    .navbar .navbar-brand{
        margin-left: 24px;
    }
    .navbar .navbar-nav{
        display: none;
    }
    .hero{
        grid-template-columns: 1fr;
        height: auto;
    }
    .left-hero h1{
        font-size: 2.25em;
        /* line-height: 48px; */
        margin-top: 0;
    }
    .left-hero h5{
        font-size: 16px;
        text-align: left;
    }
    .left-hero .hero-btn-container{
        flex-direction: column;
    }
    .left-hero .hero-btn-container button{
        margin-bottom: 18px;
    }
    .hero .left-hero{
        padding-left: 32px;
        padding-right: 32px;
        position: relative;
        z-index: 1;
    }
    .hero .right-hero{
        padding-right: 24px;
    }
    .about-us h4{
        margin-top: 24%;
        font-size: 2.1em;
    }
    .feature-3 h3,
    .feature-4 h3{
        font-size: 1.65em;
        width: 100%;
    }
    .feature-3 p img,
    .feature-4 p img{
        width: 100%;
    }
    .right-hero img{
        position: absolute;
        z-index: 0;
        bottom: 5em;
        filter: opacity(.5)
    }
    .section-container{
        padding-bottom: 0;
    }
    .section-container h2{
        font-size: 2.35em;
        text-align: left;
        padding-left: 32px;
    }
    .services-section{
        grid-template-columns: 1fr;
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 0px;
        gap: 0;
        row-gap: 32px;
    }
    .services-section .card{
        height: auto;
        padding: 32px;
    }
    .services-section .card h5{
        font-size: 1.35em;
    }
    .services-section .card p{
        font-size: 1.1em;
    }
    .feature-1,
    .feature-3{
        display: flex;
        flex-direction: column;
        padding-left: 32px;
        padding-right: 32px;
        /* flex-flow: column-reverse; */
        /* padding-bottom: 100px; */
    }
    .feature-2,
    .feature-4{
        grid-template-columns: 1fr;
        padding-left: 32px;
        padding-right: 32px;
    }
    .feature-1 .feature-right,
    .feature-3 .feature-right{
        margin-top: 0;
    }
    .feature-1 .feature-right h3,
    .feature-2 .feature-left h3,
    .feature-3 .feature-right h3,
    .feature-4 .feature-left h3{
        font-size: 2em;
    }
    .feature-1 .feature-left h4,
    .feature-3 .feature-left h4{
        font-size: 1.5em;
        margin-top: 32px;
    }
    .feature-2 .feature-right h4,
    .feature-4 .feature-right h4{
        font-size: 1.5em;
        margin-top: 32px;
    }
    .partners-section{
        grid-template-columns: 1fr;
        padding-left: 32px;
        padding-right: 32px;
    }
    footer{
        height: auto;
        padding-left: 32px;
        padding-right: 32px;
    }
    footer .footer-nav{
        grid-template-columns: 1fr;
    }
    footer .footer-socials{
        width: 70%
    }
    .contact-form{
        grid-template-columns: 100%;
        padding: 0 24px;
        height: auto;
    }
    .contact-form h4{
        font-size: 1.75em;
    }
    .form-container{
        padding-top: 24px;
    }
    .form-container .form-group{
        padding: 0 8px;
    }
}