@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html, body{
    scroll-padding: 75px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #203864;
    --yellow--: #dbe23c;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Roboto", serif;
    /* background: var(--primary-color--); */
    color: #000;
    /* padding-top: 25px; */
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin: 0;
}

p{
    margin: 0;
    font-size: 16px;
}

section{
    overflow: hidden;
}

.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: var(--primary-color--);
    display: grid;
    place-items: center;
}

.prealoader img{
    width: 200px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

.whats-app {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 20px;
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 25px;
}

header{
    position: sticky;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: var(--primary-color--);
    justify-content: space-between;
    padding: 5px 5%;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .logo{
    width: 120px;
}

header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

header nav ul{
    display: flex;
    gap: 20px;
}

header nav ul li a{
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

header nav ul li a:hover, header nav ul li a.active{
    color: #01c83c;
}

header .menu_btn{
    margin-left: 20px;
    display: none;
}
header .menu_btn i{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    margin-left: auto;
    /* border-radius: 50%; */
    cursor: pointer;
}

header nav ul .close_btn{
    text-align: end;
    padding: 10px 20px;
    display: none;
}

header nav ul .close_btn i{
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: var(--primary-color--);
    border: 1px solid var(--primary-color--);
    font-size: 20px;
    margin-left: auto;
    border-radius: 50%;
    cursor: pointer;
}

.banner_sec{
    /* background: var(--primary-color--); */
}

.call_now{
    padding: 10px 20px;
    display: inline-block;
    border-radius: 50px;
    background: #fff;
    color: var(--primary-color--);
    font-weight: 500;
    transition: 0.3s;
}

.call_now:hover{
    transform: scale(1.1);
    color: var(--primary-color--);
}

.connect_us_btn{
    padding: 10px 20px;
    display: inline-block;
    border-radius: 50px;
    background: var(--primary-color--);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.connect_us_btn:hover{
    transform: scale(1.1);
    color: #fff;
}

.banner_sec{
    display: flex;
    flex-wrap: wrap;
    padding: 0 5%;
    padding-top: 50px;
    height: calc(100vh - 90px);
}

.banner_sec .banner_content{
    width: 50%;
    padding: 0 20px;
    align-self: center;
}

.banner_sec .banner_content h2{
    font-size: 70px;
    font-weight: 800;
    color: #1f2d46;
}

.banner_sec .banner_content h2 span{
    color: #516488;
}

.banner_sec .banner_content p{
    font-size: 18px;
    /* color: #fff; */
    margin: 10px 0;
}

.banner_sec .banner_img{
    width: 50%;
    padding: 0 20px;
    align-self: baseline;
    height: 100%;
}

.banner_sec .banner_img img{
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.bg_white{
    background: #fff;
}

.bg_about_us{
    background: var(--primary-color--);
}

.about_us_img{
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.about_us_img > img{
    width: 60%;
    border-radius: 20px;
}

.about_us_img.about_us_img_1{
    justify-content: flex-end;
}

.about_us_img.about_us_img_2{
    margin-top: -10%;
}

.about_us_img .content{
    display: flex;
    background: var(--primary-color--);
    gap: 10px;
    padding: 20px;
    border-radius: 50px;
    align-items: center;
    position: absolute;
}

.about_us_img.about_us_img_1 .content{
    left: 50%;
    transform: translateX(-100%);
    top: 10%;
}


.about_us_img.about_us_img_2 .content{
    right: 50%;
    transform: translateX(100%);
    bottom: 10%;
}

.about_us_img .content img{
    width: 40px;
    flex: 0 0 auto;
}

.about_us_img .content p{
    font-size: 18px;
    color: #fff;
}

.heading span{
    font-size: 20px;
    color: #516488;
    font-weight: 600;
}

.heading h2{
    font-size: 32px;
    color: var(--primary-color--);
    font-weight: 600;
}

.content p:not(:last-child){
    margin-bottom: 10px;
}

.big_content p{
    font-size: 18px;
}

.services_card{
    text-align: center;
}

.services_card img{
    width: 100%;
    /* height: 100px;
    object-fit: contain; */
    margin-bottom: 15px;
    border-radius: 10px;
}

.services_card h3{
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

.services_card_row .services_card_col{
    padding: 50px 10px;
    border-right: 1px solid var(--yellow--);
    border-bottom: 1px solid var(--yellow--);
}

@media(min-width: 991px){
    .services_card_row .services_card_col:nth-child(3n - 0){
        border-right: none;
    }
    .services_card_row .services_card_col:nth-last-child(6n + 1),.services_card_row .services_card_col:nth-last-child(6n + 2){
        border-bottom: none;
    }
}

@media(min-width: 575px) and (max-width: 991px){
    .services_card_row .services_card_col:nth-child(2n - 0){
        border-right: none;
    }
    .services_card_row .services_card_col:nth-last-child(1),.services_card_row .services_card_col:nth-last-child(2){
        border-bottom: none;
    }
}

.services_card_row .services_card_col:nth-last-child(1){
    border-bottom: none;
}

.bg_dark{
    background: var(--primary-color--);
}

.why_choose_us_card{
    /* border: 4px solid var(--yellow--); */
    /* border-radius: 10px; */
    padding: 20px;
    height: 100%;
    position: relative;
    /* margin-top: 20px; */
}

.why_choose_us_card h3{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.why_choose_us_card p{
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.why_choose_us_card span{
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    /* position: absolute;
    top: 0;
    left: 20px;
    transform: translateY(-50%);
    background: #122b31;
    padding: 0 5px; */
}

.coming_soon_card{
    position: relative;
    overflow: hidden;
    /* border-radius: 20px; */
}

.coming_soon_card h3{
    position: absolute;
    left: 5%;
    bottom: 5%;
    background: #19444fc7;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 24px;
}

.footer_logo img{
    width: 200px;
    /* filter: brightness(0) invert(1); */
}

.footer_content h3{
    /* color: #fff; */
    color: var(--primary-color--);
    font-size: 24px;
}

.footer_content p{
    /* color: #fff; */
    font-weight: 500;
}

.footer_heading h2 {
    /* color: #fff; */
    font-size: 24px;
}

ul.footer_menu li a {
    /* color: #ffff; */
    font-size: 16px;
    transition: 0.3s;
}

ul.footer_menu li {
    margin-bottom: 10px;
}

ul.footer_menu li a:hover{
    color: #516488;
}

.copy_right{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.copy_right p, .copy_right p a{
    /* color: #fff; */
}

.border_1 {
    border-bottom: 1px solid #B4B4B4;
}