@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

html,body{
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* header styling */

header {
    width: 100%;
}

header .header-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

header .header-container .top-header {
    width: 100%;
    background-color: black;
    padding: 5px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

header .header-container .top-header p {
    font-size: 13px;
}

header .header-container .top-header .right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header .header-container .top-header .right .phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
}

header .header-container .top-header .right .phone a {
    color: white;
    font-size: 14px;
}

header .header-container .top-header .right .social i {
    font-size: 22px;
    padding: 0px 8px;
    border-right: 2px solid rgb(200, 200, 200);
    border-left: 2px solid rgb(200, 200, 200);
}

header .header-container .bottom-header {
    width: 100%;
    padding: 20px 35px;
    height: 100px;
    background-color: white;
    box-shadow: 0px 0px 30px -20px black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 63px;
}

header .header-container .bottom-header .logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-container .bottom-header .logo img {
    height: 100px;
    object-fit: cover;
}

header .header-container .bottom-header .desktop-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header .header-container .bottom-header .desktop-nav .desktop-header {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

header .header-container .bottom-header .desktop-nav .desktop-header li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-container .bottom-header .desktop-nav .desktop-header li a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s linear;
    /* position: relative; */
    white-space: nowrap;
}

header .header-container .bottom-header .desktop-nav .desktop-header li .backgroundhovereffect {
    position: relative;
}

header .header-container .bottom-header .desktop-nav .desktop-header li .backgroundhovereffect::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: #1A3D97;
    position: absolute;
    top: 70%;
    left: 0px;
    transition: all 0.3s linear;
}

header .header-container .bottom-header .desktop-nav .desktop-header li .backgroundhovereffect:hover::after {
    width: 100%;
}

header .header-container .bottom-header .desktop-nav .desktop-header li a:hover {
    color: rgb(112, 112, 112);
}

header .header-container .bottom-header .desktop-nav .desktop-header .service-hover {
    position: relative;
}

header .header-container .bottom-header .desktop-nav .desktop-header .service-hover .service-drop {
    width: 200px;
    position: absolute;
    top: 100%;
    left: 0%;
    background-color: white;
    box-shadow: 0px 0px 2px rgb(187, 187, 187);
    display: none;
    flex-direction: column;
    transition: all 0.3s linear;
    z-index: 999;
}

header .header-container .bottom-header .desktop-nav .desktop-header .service-hover:hover .service-drop {
    display: flex;
}

header .header-container .bottom-header .desktop-nav .desktop-header .service-hover .service-drop li {
    width: 100%;
    height: 40px;
}

header .header-container .bottom-header .desktop-nav .desktop-header .service-hover .service-drop li a {
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s linear;
}

header .header-container .bottom-header .desktop-nav .desktop-header .service-hover .service-drop li a:hover {
    color: rgb(112, 112, 112);
}

header .header-container .bottom-header .menu-btn {
    display: none;
}

.mob-nav{
    display: none !important;
}

@media screen and (max-width:1010px) {
    header .header-container .top-header {
        display: none ;
    }

    header .header-container .bottom-header .desktop-nav {
        display: none ;
    }

    header .header-container .bottom-header .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .header-container .bottom-header .menu-btn i {
        font-size: 30px;
    }

    header .header-container .bottom-header {
        justify-content: space-between;
        padding: 20px 5px;
        position: relative;
    }

    
    .mob-nav {
        display: block !important;
        position: absolute;
        top: 0%;
        right: -100%;
        height: 100vh;
        overflow: hidden;
        background-color: white;
        color: white;
        z-index: 9999;
        width: 80%;
        border-left: 1px solid rgb(172, 172, 172);
        transition: all 0.3s linear;
    }



    .mob-active{
        right: 0% !important;
    }

    .mob-nav .close-btn{
        width: 100%;
        height: 100px;
        border-bottom: 1px solid rgb(172, 172, 172);
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .mob-nav .close-btn .btn{
        display: flex;
        align-items: center;
        gap: 4px;
        color: black;
        margin-right: 20px;
    }

    .mob-nav .close-btn .btn i{
        font-size: 20px;
    }
    
        .mob-nav .close-btn .btn{
            font-size: 18px;
        }

    .mob-nav .mob-main-drop{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
        .mob-nav .mob-main-drop li{
            width: 100%;
            
            display: flex;
            justify-content: flex-start;
            align-items: center;
            border-bottom: 1px solid rgb(172, 172, 172);
        }
        
            .mob-nav .mob-main-drop .service-li{
                /* height: auto !important; */
                flex-direction: column;
                display: flex;
            }
        
            .mob-nav .mob-main-drop .service-li a{
                width: 100%;
                height: 60px;
                border-bottom: 1px solid rgb(172, 172, 172);
            }
        
            .mob-nav .mob-main-drop .service-li .service-drop{
                width: 100%;
                max-height: 0px;
                /* display: none; */
                overflow: hidden;
                transition: all 0.3s linear;
            }

            .service-drop-active{
                max-height: 300px !important;
            }
        
            .mob-nav .mob-main-drop .service-li .service-drop li a{
                height: 60px;
                border-bottom: 1px solid rgb(172, 172, 172);
            }
        
            .mob-nav .mob-main-drop li a{
                width: 100%;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding-left: 10px;
                color: black;
            }

}

@media screen and (max-width:480px) {
    header .header-container .bottom-header .logo {
        height: 87%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* header section end here */

/* banner section start from here  */

.banner-section {
    width: 100%;
    background-color: #F4F3F2;
}

.banner-section .banner-container {
    max-width: 1920px;
    margin: 0 auto;
}

.swiper {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:750px) {
    .swiper {
        width: 100%;
        height: 160px;
    }

}
@media screen and (max-width:390px) {
    header .header-container .bottom-header {
        height: 78px !important;
    }
}

/* banner section end here  */

/* about section styling */

.about-section {
    width: 100%;
    padding: 1% 12%;
}

.about-section .about-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section .about-container .top-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-section .about-container .top-about h2 {
    font-weight: 700;
    color: #394DA3;
    text-align: center;
    font-size: 28px;
}

.about-section .about-container .top-about p span {
    font-weight: 600;
}

.about-section .about-container .bottom-about {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-container .bottom-about .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-section .about-container .bottom-about .left h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #394DA3;
}

.about-section .about-container .bottom-about .left p span {
    font-weight: 600;
}

.about-section .about-container .bottom-about .left .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section .about-container .bottom-about .left .btn a {
    background-color: #394DA3;
    padding: 9px 20px;
    font-size: 15px;
    border-radius: 3px;
    color: white;
}

.about-section .about-container .bottom-about .right {
    width: 49%;
    position: relative;
}

.about-section .about-container .bottom-about .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .about-container .hww {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-section .about-container .hww h2 {
    font-weight: 700;
    font-size: 28px;
    color: #394DA3;
    text-align: center;
}

.about-section .about-container .hww p span {
    font-weight: 600;
}

.about-section .about-container .hww .hww-row {
    margin-top: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-container .hww .hww-row .hww-col {
    width: 31%;
    height: 190px;
    border: 2px solid rgb(181, 181, 181);
    /* border-radius: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    position: relative;
}

.about-section .about-container .hww .hww-row .hww-col .img {
    position: absolute;
    left: 0%;
    top: -44%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section .about-container .hww .hww-row .hww-col h3 {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.about-section .about-container .hww .hww-row .hww-col p {
    font-size: 15px;
    text-align: center;
}

@media screen and (max-width:850px) {

    .about-section .about-container .top-about p {
        text-align: center;
        font-size: 15px;
    }

    .about-section .about-container .bottom-about {
        flex-direction: column;
        gap: 10px;
    }

    .about-section .about-container .bottom-about .left {
        width: 100%;
    }

    .about-section .about-container .bottom-about .right {
        width: 100%;
    }

    .about-section .about-container .bottom-about .left p {
        text-align: center;
        font-size: 15px;
    }

    .about-section .about-container .hww .hww-row {
        margin-top: 0px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;

        flex-direction: column;
        gap: 10px;
    }

    .about-section .about-container .hww .hww-row .hww-col {
        margin-top: 80px;
        width: 100%;
        height: 230px;
    }

    .about-section .about-container .hww .hww-row .hww-col .img {
        top: -36%;
    }

    .about-section .about-container .hww p {
        font-size: 15px;
        text-align: center;
    }

}

/* about section styling end */

/* appointment section styling here  */

.appointment-section {
    width: 100%;
}

.appointment-section .appointment-container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    height: 300px;
    position: relative;
}

.appointment-section .appointment-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-section .appointment-container .content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: white;
}

.appointment-section .appointment-container .content h3 {
    font-size: 20px;
    text-align: center;
    width: 70%;
    font-weight: 400;
    line-height: 1.2;
}

.appointment-section .appointment-container .content p {
    font-size: 17px;
}

.appointment-section .appointment-container .content .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-section .appointment-container .content .btn a {
    background-color: #394DA3;
    padding: 9px 20px;
    font-size: 15px;
    border-radius: 3px;
    color: white;
}

/* appointment section styling end  */

/* why choose us section start from here  */

.whychooseus-section {
    width: 100%;
    background-color: #F4F3F2;
    padding: 1% 12%;
}

.whychooseus-section .whychooseus-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.whychooseus-section .whychooseus-container .top {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.whychooseus-section .whychooseus-container .top h2 {
    font-weight: 700;
    font-size: 28px;
    color: #394DA3;
    text-align: center;
}

.whychooseus-section .whychooseus-container .top p span {
    font-weight: 600;
}

.whychooseus-section .whychooseus-container .why-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.whychooseus-section .whychooseus-container .why-row .why-col {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 32%;
}

.whychooseus-section .whychooseus-container .why-row .why-col .innercol-first {
    width: 98%;
    height: 98%;
    background-color: #004AF0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whychooseus-section .whychooseus-container .why-row .why-col .innercol-first .innercol-second {
    width: 98%;
    height: 98%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whychooseus-section .whychooseus-container .why-row .why-col .innercol-first .innercol-second .innercol-third {
    width: 98%;
    height: 98%;
    background-color: #004AF0;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 8px;
}

.whychooseus-section .whychooseus-container .why-row .why-col .innercol-first .innercol-second .innercol-third h2 {
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.whychooseus-section .whychooseus-container .why-row .why-col .innercol-first .innercol-second .innercol-third p {
    color: white;
    text-align: center;
}

.whychooseus-section .whychooseus-container .why-col-row {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 100%;
}

.whychooseus-section .whychooseus-container .why-col-row .innercol-first {
    width: 99.7%;
    height: 97%;
    background-color: #004AF0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whychooseus-section .whychooseus-container .why-col-row .innercol-first .innercol-second {
    width: 99.7%;
    height: 97%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whychooseus-section .whychooseus-container .why-col-row .innercol-first .innercol-second .innercol-third {
    width: 99.7%;
    height: 97%;
    background-color: #004AF0;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 8px;
}

.whychooseus-section .whychooseus-container .why-col-row .innercol-first .innercol-second .innercol-third h2 {
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

.whychooseus-section .whychooseus-container .why-col-row .innercol-first .innercol-second .innercol-third p {
    color: white;
    text-align: center;
}

@media screen and (max-width:850px) {

    .whychooseus-section .whychooseus-container .why-row .why-col {
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 390px;
        width: 100%;
    }

    .whychooseus-section .whychooseus-container .why-col-row {
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 390px;
        width: 100%;
    }

    .whychooseus-section .whychooseus-container .why-col-row .innercol-first {
        width: 98%;
        height: 98%;
    }

    .whychooseus-section .whychooseus-container .why-col-row .innercol-first .innercol-second {
        width: 98%;
        height: 98%;
    }

    .whychooseus-section .whychooseus-container .why-col-row .innercol-first .innercol-second .innercol-third {
        width: 98%;
        height: 98%;
    }

    .whychooseus-section .whychooseus-container .top p {
        font-size: 15px;
        text-align: center;
    }

}

@media (max-width:400px) {
    .whychooseus-section .whychooseus-container .why-row .why-col {
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 400px;
        width: 100%;
    }

    .whychooseus-section .whychooseus-container .why-col-row {
        .whychooseus-section .whychooseus-container .why-col-row {
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 400px;
            width: 100%;
        }
    }
}



/* why choose us section start from end  */

.feature-section {
    width: 100%;
    background-color: #F4F3F2;
    padding: 1% 12%;
}

.feature-section .feature-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-section .feature-container .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #394DA3;
    padding: 0px 20px;
}

.feature-section .feature-container .heading p {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
}

.feature-section .feature-container .heading span {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.feature-section .feature-container .heading span::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #394DA3;
    position: absolute;
    top: 120%;
    left: calc(50% - 20px);
}

.feature-section .feature-container .row-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 20px;
}

.feature-section .feature-container .row1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.feature-section .feature-container .row1 .col {
    width: 32%;
    border: 1px solid #1A3D97;
    padding: 30px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s linear;
}

.feature-section .feature-container .row1 .col .img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section .feature-container .row1 .col .img img {
    width: 40%;
}

.feature-section .feature-container .row1 .col h2 {
    font-weight: 600;
    font-size: 18px;
    color: #394DA3;
    transition: all 0.3s linear;
}

.feature-section .feature-container .row1 .col:hover {
    background-color: #1A3D97;
}

.feature-section .feature-container .row1 .col:hover h2 {
    color: white;
}


.feature-section .feature-container .row2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.feature-section .feature-container .row2 .col {
    width: 23%;
    border: 1px solid #1A3D97;
    padding: 30px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s linear;
}

.feature-section .feature-container .row2 .col .img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section .feature-container .row2 .col .img img {
    width: 40%;
}

.feature-section .feature-container .row2 .col h2 {
    font-weight: 600;
    font-size: 18px;
    color: #394DA3;
    transition: all 0.3s linear;
}

.feature-section .feature-container .row2 .col:hover {
    background-color: #1A3D97;
}

.feature-section .feature-container .row2 .col:hover h2 {
    color: white;
}

.feature-section .feature-container .top-rated {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 20px;
}

.feature-section .feature-container .top-rated h2 {
    text-align: center;
    color: #394DA3;
}

.feature-section .feature-container .top-rated p span {
    font-weight: 600;
}

.feature-section .feature-container .top-advocate {
    width: 100%;
    height: 300px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section .feature-container .top-advocate .inner1 {
    width: 100%;
    height: 98%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #004AF0;
}

.feature-section .feature-container .top-advocate .inner1 .inner2 {
    width: 100%;
    height: 98%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.feature-section .feature-container .top-advocate .inner1 .inner2 .inner3 {
    width: 100%;
    height: 98%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #004AF0;
    color: white;
}

.feature-section .feature-container .top-advocate .inner1 .inner2 .inner3 h2 {
    font-size: 30px;
}

.feature-section .feature-container .top-legal {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-section .feature-container .top-legal h2 {
    font-weight: 700;
    font: 28px;
    color: #394DA3;
    text-align: center;
}


@media (max-width:850px) {

    .feature-section .feature-container .row1 {
        flex-direction: column;
    }

    .feature-section .feature-container .row1 .col {
        width: 100%;
    }

    .feature-section .feature-container .row2 {
        flex-direction: column;
    }

    .feature-section .feature-container .row2 .col {
        width: 100%;
    }

    .feature-section .feature-container .top-rated p {
        text-align: center;
    }

    .feature-section .feature-container .top-advocate {
        width: 100%;
        height: 693px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-section .feature-container .top-advocate .inner1 .inner2 .inner3 {
        width: 100%;
        height: 98%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #004AF0;
        color: white;
    }

    .feature-section .feature-container .top-advocate .inner1 .inner2 .inner3 h2 {
        font-size: 20px;
        text-align: center;
    }

    .feature-section .feature-container .top-advocate .inner1 .inner2 .inner3 p {
        text-align: center;
    }

    .feature-section .feature-container .top-legal p {
        text-align: center;
    }

}

@media (max-width:400px) {
    .feature-section .feature-container .top-advocate .inner1 .inner2 .inner3 p {
        font-size: 14px;
    }
}

/* why choose us section end  */

/* get in touch section start from here  */

.getintouch-section {
    width: 100%;
    /* background-image: url(assets/images/get-in-touch-bg.jpg); */
    background: url(../images/get-in-touch-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 1% 12%;
}

.getintouch-section .getintouch-container {
    max-width: 1920px;
    margin: 0 auto;
    /* padding: 40px 20px; */

    display: flex;
    justify-content: space-between;
}

.getintouch-section .getintouch-container .left {
    width: 48%;
    background-color: transparent;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
}

.getintouch-section .getintouch-container .left h2 {
    color: #1A3D97;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.getintouch-section .getintouch-container .left ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: auto;
    padding-left: 20px;
}

.getintouch-section .getintouch-container .gettouchform {
    width: 48%;
    background-color: #183b95ba;
    padding: 50px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 27px;
}

.getintouch-section .getintouch-container .gettouchform h2 {
    font-weight: 700;
    font-size: 60px;
    color: white;
    line-height: 1.2;
}

.getintouch-section .getintouch-container .gettouchform p {
    color: white;
}

.getintouch-section .getintouch-container .gettouchform p:nth-last-child(1) {
    font-size: 13px;
}

.getintouch-section .getintouch-container .gettouchform form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.getintouch-section .getintouch-container .gettouchform form input {
    width: 100%;
    height: 40px;
    border: 2px solid whitesmoke;
    outline: none;
    padding-left: 10px;
}

.getintouch-section .getintouch-container .gettouchform form button {
    background-color: whitesmoke;
    color: black;
    outline: none;
    border: 2px solid whitesmoke;
    padding: 12px 25px;
    font-weight: 500;
    cursor: pointer;

}

@media (max-width:850px) {
    .getintouch-section .getintouch-container {
        flex-direction: column;
    }

    .getintouch-section .getintouch-container .left {
        width: 100%;
        padding-top: 80px;
    }

    .getintouch-section .getintouch-container .gettouchform {
        width: 100%;
    }

    .getintouch-section .getintouch-container .left h2 {
        font-size: 30px;
    }

    .getintouch-section .getintouch-container .gettouchform h2 {
        font-size: 30px;
    }
}

/* get in touch section end  */

/* blog section start from here  */
.blog-section {
    width: 100%;
    background-color: #F4F3F2;
    padding: 1% 12%;
}

.blog-section .blog-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-section .blog-container h2 {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    color: #394DA3;
}

.blog-section .blog-container .blog-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-section .blog-container .blog-row .blog-col {
    width: 31%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-section .blog-container .blog-row .blog-col .img {
    width: 100%;
}

.blog-section .blog-container .blog-row .blog-col .img img {
    width: 100%;
    object-fit: cover;
}

.blog-section .blog-container .blog-row .blog-col .blog-heading h3 {
    font-size: 15px;
}

.blog-section .blog-container .blog-row .blog-col .blog-heading span {
    color: rgb(175, 175, 175);
    font-size: 12px;
}

.blog-section .blog-container .blog-row .blog-col p {
    font-size: 14px;
    color: rgb(93, 93, 93);
}

.blog-section .blog-container .blog-row .blog-col a {
    font-size: 13px;
    color: black;
}

@media (max-width:850px) {

    .blog-section .blog-container h2 {
        font-size: 30px;
    }

    .blog-section .blog-container .blog-row {
        flex-direction: column;
        gap: 15px;
    }

    .blog-section .blog-container .blog-row .blog-col {
        width: 100%;
    }

}

/* blog section end  */

/* footer section start from here  */

footer {
    width: 100%;
    background-color: black;
}

footer .footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    padding: 2% 12%;
}

footer .footer-container .top-footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

footer .footer-container .top-footer .col {
    width: 24%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
}

footer .footer-container .top-footer .col h3 {
    font-size: 25px;
}

footer .footer-container .top-footer .col:nth-child(1) p {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

footer .footer-container .top-footer .col .social-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .footer-container .top-footer .col .social-link .social-box {
    border: 1px solid rgb(115, 115, 115);
    padding: 3px 5px;
    color: white;
}

footer .footer-container .top-footer .col .social-link .social-box i {
    font-size: 22px;
}

footer .footer-container .top-footer .col p {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

footer .footer-container .top-footer .col ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

footer .footer-container .top-footer .col ul a {
    color: white;
}

footer .footer-container .bottom-footer {
    border-top: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

footer .footer-container .bottom-footer .img {
    width: 15%;
}

footer .footer-container .bottom-footer .img img {
    width: 100%;
    object-fit: cover;
}

footer .footer-container .bottom-footer p {
    color: white;
    font-size: 13px;
}

footer .footer-container .bottom-footer p a {
    color: white;
    font-size: 13px;
}

@media (max-width:923px) {

    footer .footer-container .top-footer {
        flex-wrap: wrap;
        gap: 30px;
    }

    footer .footer-container .top-footer .col {
        width: 48%;
    }

}

@media (max-width:795px) {
    footer .footer-container .top-footer .col {
        width: 100%;
    }

    footer .footer-container .bottom-footer {
        flex-direction: column;
        gap: 10px;
    }

    footer .footer-container .bottom-footer .img {
        width: 150px;
    }
}

/* footer section end here  */



/* court marriage page styling */

.top-banner-section {
    width: 100%;
    height: 460px;
}

.top-banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:750px) {
    .top-banner-section {
        width: 100%;
        height: 260px;
    }
}

.court-registration-section{
    width: 100%;
    background-color: #F4F3F2;
    padding: 1% 12%;
}

.court-registration-section .court-registration-container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.court-registration-section .court-registration-container h2{
    text-align: center;
}

.court-registration-section .court-registration-container .registration-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 500px;
}

.court-registration-section .court-registration-container .registration-box .left{
    width: 48%;
    height: 100%;
}

.court-registration-section .court-registration-container .registration-box .left img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.court-registration-section .court-registration-container .right{
    width: 49%;
    position: relative;
    height: 100%;
}

.court-registration-section .court-registration-container .right .inner-box{
    position: absolute;
    top: 0%;
    left: -10%;
    width: 100%;
    background-color: white;
    padding: 20px;
}

@media (max-width:1077px) {
    
    .court-registration-section .court-registration-container .right .inner-box p{
        font-size: 15px;
    }
    
}

@media (max-width:1017px) {

    

    .court-registration-section .court-registration-container .right{
        width: 50%;
    }

    .court-registration-section .court-registration-container .right{
        width: 50%;
    }

    .court-registration-section .court-registration-container .right .inner-box{
        position: static;
        top: 0%;
        left: -10%;
        width: 100%;
        background-color: white;
        padding: 20px;
    }
    
}

@media (max-width:960px) {

    .court-registration-section .court-registration-container .registration-box{
        width: 100%;
        display: flex;
        justify-content: space-between;

        flex-direction: column;
        gap: 0px;
    }
    
    .court-registration-section .court-registration-container .registration-box .left{
        width: 100%;
        height: 200px;
    }
    
    .court-registration-section .court-registration-container .registration-box .left img{
        height: 100%;
    }
    
    .court-registration-section .court-registration-container .registration-box .right{
        width: 100%;
    }
    
    .court-registration-section .court-registration-container .registration-box .right .inner-box{
        padding: 10px;
    }

    .court-registration-section .court-registration-container .registration-box{
        width: 100%;
        display: flex;
        justify-content: space-between;
        height: auto;
    }
    
}

.select-us-section{
    width: 100%;
    background-color: #FFFFFF;
    padding: 1% 12%;
}

.select-us-section .select-us-container{
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.select-us-section .select-us-container .img{
    width: 49%;
}

.select-us-section .select-us-container .img img{
    width: 100%;
    object-fit: cover;
}

.select-us-section .select-us-container .right{
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.select-us-section .select-us-container .right h2{
    font-size: 35px;
}

.select-us-section .select-us-container .right .col{
    display: flex;
    align-items: center;
    gap: 20px;
}

.select-us-section .select-us-container .right .col .icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #4D5FAC;
    color: white;
}

.select-us-section .select-us-container .right .col .icon i{
    font-size: 25px;
}

.select-us-section .select-us-container .right .col .detail h4{
    font-size: 20px;
    font-weight: 600;
}

@media (max-width:850px) {

    .select-us-section .select-us-container{
        flex-direction: column;
        gap: 20px;
    }
    
    .select-us-section .select-us-container .img{
        width: 100%;
        height: 250px;
    }
    
    .select-us-section .select-us-container .img img{
        height: 100%;
    }

    .select-us-section .select-us-container .right{
        width: 100%;
        padding: 20px 15px;
        gap: 8px;
    }

    .select-us-section .select-us-container .right h2{
        font-size: 25px;
    }

    .select-us-section .select-us-container .right .col .detail h4{
        font-size: 13px;
        font-weight: 600;
    }

    .select-us-section .select-us-container .right .col .detail p{
        font-size: 13px;
        /* font-weight: 600; */
    }
    
}

.certificate-img-section{
    width: 100%;
    padding: 1% 12%;
}

.certificate-img-section .certificate-img-container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.certificate-img-section .certificate-img-container .img{
    width: 48%;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 380px;
    border: 2px solid #1A3D97;
}

.certificate-img-section .certificate-img-container .img:nth-child(2){
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.certificate-img-section .certificate-img-container .img img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

@media (max-width:850px) {

    .certificate-img-section .certificate-img-container{
        flex-direction: column;
        gap: 10px;
    }
    
    .certificate-img-section .certificate-img-container .img{
        width: 100%;
        height: 280px;
    }
    
}

.about-marriage-section{
    width: 100%;
    padding: 1% 12%;
}

.about-marriage-section .about-marriage-container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-marriage-section .about-marriage-container .one-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-marriage-section .about-marriage-container .one-box h5{
    font-weight: 600;
    font-size: 18px;
}

.about-marriage-section .about-marriage-container .one-box h5{
    font-weight: 600;
    font-size: 16px;
}

.about-marriage-section .about-marriage-container .one-box ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-marriage-section .about-marriage-container .one-box ul li i{
    font-size: 20px;
}

.about-marriage-section .about-marriage-container .marriage-form-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-marriage-section .about-marriage-container .marriage-form-box .form-box{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background-color: #E3E2E2;
}

.about-marriage-section .about-marriage-container .marriage-form-box .form-box .heading{
    width: 100%;
    padding: 5px;
    background-color: #1A3D97;
    color: white;
    text-align: center;
}

.about-marriage-section .about-marriage-container .marriage-form-box .form-box form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-marriage-section .about-marriage-container .marriage-form-box .form-box form input{
    width: 100%;
    height: 40px;
    padding-left: 10px;
    border: 1px solid black;
    outline: none;
    border-radius: 5px;
}

.about-marriage-section .about-marriage-container .marriage-form-box .form-box form textarea{
    width: 100%;
    height: 120px;
    padding-left: 10px;
    border: 1px solid black;
    outline: none;
    border-radius: 5px;
}

.about-marriage-section .about-marriage-container .marriage-form-box .form-box form button{
    background-color: black;
    color: white;
    padding: 16px;
    border: none;
    outline: none;
}

@media (max-width:780px) {

    .about-marriage-section .about-marriage-container .marriage-form-box .form-box{
        width: 80%;
    }
    
}

@media (max-width:560px) {

    .about-marriage-section .about-marriage-container .marriage-form-box .form-box{
        width: 100%;
    }
    
}
/* call button */

.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 1rem;
	bottom: 2rem;
	background: #d30808;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 0 rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 0 rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2), 0 0 0 20px rgba(236, 0, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2), 0 0 0 20px rgba(236, 0, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 0 rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 0 rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2), 0 0 0 20px rgba(236, 0, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 0, 0, 0.2), 0 0 0 5px rgba(236, 0, 0, 0.2), 0 0 0 10px rgba(236, 0, 0, 0.2), 0 0 0 20px rgba(236, 0, 0, 0); } }

	span.num{
		position: absolute;
    color: #d30808;
    left: -30%;
    bottom: -50%;
	}

    .contact-section {
        padding: 1% 12%;
    }

    /* responsive css */

    @media(max-width:1366px){
        .about-section, .whychooseus-section, .feature-section, .getintouch-section,.blog-section, footer .footer-container,.court-registration-section, .select-us-section, .certificate-img-section, .about-marriage-section,.contact-section{
            padding: 1% 5%;
        }
        .criminal-section {
            padding: 1% 5%;
        }

    }
    
    @media(max-width:425px){
        .about-section, .whychooseus-section, .feature-section, .getintouch-section,.blog-section, footer .footer-container,.court-registration-section, .select-us-section, .certificate-img-section, .about-marriage-section,.contact-sect{
            padding: 1% 1%;
        }
        header .header-container .bottom-header .logo img {
            height: 73px;
        }
        header .header-container .bottom-header {
            padding: 6px 5px;
        }
    }