@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #000;
    height: 100%;
}
.full-container{
    width: 100%;
}
.container {
    max-width: 1628px;  
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
    @media (max-width: 1440px) {
        max-width: 1338px;  
    }
}
.header-bg{
    padding: 15px 0px;
    background: linear-gradient(90deg, #FE4707 0%, #FE4F09 0.01%, #F62B07 0.02%, #FA8C16 100%);
    position: fixed;
    top: -1px;
    z-index: 9;
    @media (max-width: 767px){
       padding: 10px 0px;
    }
}
header{
    .container{
        max-width: 1724px;
        @media (max-width: 1440px) {
            max-width: 1338px; 
        }
    }
}
.main-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    @media (max-width: 767px){
        justify-content: center;
    }
}
.logo a{
    display: flex;
}
.logo img{
    width: 195px;
    @media (min-width: 768px) and (max-width: 1279px) {
        width: 160px;
    }
    @media (max-width: 767px){
        width: 150px;
    }
}
.header-right{
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    @media (min-width: 768px) and (max-width: 1279px) {
       gap: 20px;
    }
    @media (max-width: 767px){
       flex-direction: column;
       gap: 0px;
    }
}
.navbar{
    @media (max-width: 767px){
       order: 2;
    }
}
.navbar ul{
    list-style: none;
    display: flex;
    gap: 40px;
    @media (min-width: 768px) and (max-width: 1279px) {
       gap: 20px;
    }
}
.navbar ul li{
    position: relative;
    @media (max-width: 1023px) {
       display: none;
       &:last-child{
           display: block !important;
       }
    }
    &:after{
        content: '';
        position: absolute;
        top: 12px;
        right: -20px;
        width: 1px;
        height: 20px;
        background-color: #F5F5F580;
        transition: width 0.3s ease;
        @media (min-width: 1024px) and (max-width: 1279px) {
            right: -10px;
        }
    }
    &:last-child:after{
        display: none;
    }
}
.navbar ul li a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    @media (min-width: 768px) and (max-width: 1279px) {
       font-size: 14px;
    }
    @media (max-width: 767px){
       font-size: 9px;
       padding: 3px 0px 0px;
    }
    img{
        @media (max-width: 767px){
            width: 42px;
        }
    }
}
.becomeapartner-btn{
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    background: linear-gradient(0deg, #00187C 2.05%, #2F54EB 97.95%);
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.10);
    text-transform: uppercase;
    @media (max-width: 1279px) {
       font-size: 14px;
       padding: 12px 12px;
    }
    @media (max-width: 767px) {
       padding: 8px 12px;
       order: 1;
    }
    &:hover{
        background: linear-gradient(182deg, #2F54EB 97.95%, #00187C 2.05%);
        color: #FFFFFF;
    }
}
.herobanner-section{
    /* padding: 96px 0px 120px 0px; */
    background: linear-gradient(90deg, #021B81 32.08%, #173099 100%);
    position: relative;
    box-sizing: border-box;
    height: 100vh;
    display: flex;
    align-items: center;
    @media (min-width: 1024px) and (max-width: 1279px) {
        padding: 60px 0px 80px 0px;
    }
    @media (min-width: 768px) and (max-width: 1023px) {
        padding: 30px 0px 50px 0px;
    }
    @media (max-width: 767px) {
       padding: 90px 0px 23px 0px;
    }
    &:after{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: url('../images/herobanner-bg-shape.svg') no-repeat center bottom;
        background-size: cover;
        z-index: 1;
    }
    .container {
        display: flex;
        gap: 5.313rem;
        position: relative;
        z-index: 2;
        @media (min-width: 1024px) and (max-width: 1279px) {
            gap: 2.313rem;
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            flex-direction: column;
            gap:2.313rem;
        }
        @media (max-width: 1023px) {
            flex-direction: column;
            gap:2rem;
        }
        @media (max-width: 767px) {
            gap:1rem;
        }
        .herobanner-content {
            max-width: 750px;
            flex: 1 1 0;
            position: relative;
            @media (max-width: 1023px) {
                margin: auto;
            }
            &:after{
                content: '';
                position: absolute;
                bottom: -24%;
                right: -11%;
                width:156px;
                height: 156px;
                background: url('../images/bannerarrow.svg') no-repeat center center;
                background-size: contain;
                z-index: 1;
                animation: drawArrow 2.2s ease forwards infinite;
                @media (max-width: 1023px) {
                    display: none;
                }
            }
            h1 {
                color: #FFF;
                font-size: 89px;
                font-size: 4.6354vw;
                font-style: normal;
                font-weight: 800;
                line-height: 123.596%;
                text-transform: capitalize;
                margin-bottom: 10px;
                @media (max-width: 1536px) {
                    font-size: 5vw;
                }
                @media (min-width: 1024px) and (max-width: 1279px) {
                    font-size: 5.4vw;
                }
                @media (min-width: 768px) and (max-width: 1023px) {
                    font-size: 8vw;
                    text-align: center;
                }
                @media (max-width: 767px) {
                    font-size: 10vw;
                    text-align: center;
                    line-height: 117.021%;
                }
            }
            p {
                color: #FFF;
                font-family: Poppins;
                font-size: 54px;
                font-size: 2.8125vw;
                font-style: normal;
                font-weight: 700;
                line-height: 138.889%;
                text-transform: capitalize;
                @media (max-width: 1440px) {
                    font-size: 3rem;
                }
                @media (min-width: 1024px) and (max-width: 1279px) {
                    font-size: 2.3rem;
                }
                @media (min-width: 768px) and (max-width: 1023px) {
                    text-align: center;
                    font-size: 2.2rem;
                }
                @media (max-width: 767px) {
                    font-size: 7vw;
                    text-align: center;
                    line-height: 120%;
                }
                span {
                    color: #FF8400;
                    display: block;
                }
            }
        }
        .herobanner-right {
            width: 100%;
            flex: 1 1 0;
            .benefits {
                display: flex;
                flex-wrap: wrap;
                gap: 25px;
                justify-content: center;
                @media (min-width: 768px) and (max-width: 1279px) {
                    gap: 15px;
                }
                @media (max-width: 767px) {
                    gap: 12px;
                }
                .benefit-item {
                    display: grid;
                    grid-template-columns: 70px 1fr;
                    align-items: center;
                    align-content: center;
                    column-gap: 30px;
                    border-radius: 5px;
                    max-width: 292px;
                    width: 100%;
                    padding: 15px 27px;
                    box-sizing: border-box;
                    background: linear-gradient(294deg, #FF8E01 26.6%, #F73408 100%);
                    @media (min-width: 768px) and (max-width: 1335px) {
                        max-width: 278px;
                        padding: 15px 15px;
                    }
                    @media (min-width: 768px) and (max-width: 1279px) {
                        max-width: 230px;
                        padding: 10px 10px;
                        column-gap: 10px;
                    }
                    @media (max-width: 767px) {
                        max-width: 324px;
                        padding: 12px 36px;
                    }
                    .icon {
                        display: flex;
                        position: relative;
                        @media (max-width: 1279px) {
                            max-width: 50px;
                            img{
                                width: 100%;
                            }
                        }
                        &:after {
                            content: '';
                            position: absolute;
                            top: 12px;
                            right:-15px;
                            width: 4px;
                            height: 56px;
                            background: url('../images/verticalborder.png') no-repeat;
                            @media (max-width: 1279px) {
                                right:-16px;
                                top: 0px;
                            }
                            @media (max-width: 767px) {
                                right:-25px;
                            }
                        }
                    }
                    p {
                        color: #FFF;
                        font-size: 15px;
                        font-weight: 700;
                        line-height: 22px;
                        text-transform: capitalize;
                        @media (min-width: 768px) and (max-width: 1279px) {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
        .herobanner-form {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 183px;
            margin-top: 37px;
            @media (max-width: 767px) {
                margin-top: 21px;
                grid-template-columns: auto;
                grid-gap:8px;
            }
            input {
                height: 77px;
                border-radius: 5px 0 0 5px;
                border: 0;
                color: #5E5E5E;
                font-size: 16px;
                padding: 22px;
                box-sizing: border-box;
                @media (max-width: 767px) {
                    height: 60px;
                    border-radius: 5px;
                    text-align: center;
                }
            }
            button {
                height: 77px;
                border: 0;
                color: #FFF;
                text-align: center;
                font-size: 21px;
                font-style: normal;
                font-weight: 800;
                line-height: 40px;
                text-transform: capitalize;
                border-radius: 0 5px 5px 0;
                background: linear-gradient(180deg, #F62D08 0%, #FF9500 100%);
                transition: all 0.5s;
                cursor: pointer;
                &:hover {
                    background: linear-gradient(0deg, #F62D08 0%, #FF9500 100%);
                    transition: all 0.5s;
                }
                @media (max-width: 767px) {
                    height: 60px;
                    border-radius: 5px;
                }
            }
        }
        .form-note {
            color: #FFF;
            font-size: 21px;
            font-style: normal;
            font-weight: 600;
            line-height: 27px;
            text-transform: capitalize;
            text-align: center;
            margin-top: 17px;
            @media (min-width: 1024px) and (max-width: 1279px) {
                font-size: 16px;
            }
            @media (max-width: 767px) {
                display: none;
            }
        }
    }
}
.hm-aboutmain{
    padding: 75px 0px;
    @media (max-width: 991px) {
        padding: 35px 0px;
    }
    .hm-aboutsection {
        gap: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        align-items: stretch;
        @media (max-width: 991px) {
            grid-template-columns: auto;
        }
        .about-image {
            width: 100%;
            flex-grow: 1;
            flex-basis: 0;
            min-width: 0;
            height: 100%;
            @media (min-width: 768px) and (max-width: 991px) {
                order: 2;
            }
            @media (max-width: 767px) {
                display: none;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover; 
            }
        }
        .content {
            flex-grow: 1;
            flex-basis: 0;
            min-width: 0;
            h2 {
                color: #FD7104;
                font-family: Poppins;
                font-size: 1.823vw;
                font-style: normal;
                font-weight: 700;
                line-height: 40px;
                text-transform: capitalize;
                margin-bottom: 14px;
                @media (min-width: 992px) and (max-width: 1335px) {
                    font-size: 2.5vw;
                }
                @media (min-width: 768px) and (max-width: 991px) {
                    font-size: 4.5vw;
                }
                @media (max-width: 767px) {
                    font-size: 7.5vw;
                }
            }
            h4 {
                color: #12298F;
                font-size: 20px;
                font-style: normal;
                font-weight: 600;
                line-height: 22px;
                margin-bottom: 6px;
            }
            p {
                color: #000;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 22px;
                @media (min-width: 768px) and (max-width: 1279px) {
                    font-size: 14px;
                }
                &:last-child{
                    margin-bottom: 0px;
                }
            }
            .item {
                margin-top: 20px;
                .heading {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-bottom: 10px;
                    .icon {
                        width: 58px;
                        height: 58px;
                        border-radius: 100px;
                        background: #EFEFEF;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                    h3 {
                        color: #12298F;
                        font-size: 20px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 25px;
                        /* 125% */
                        text-transform: capitalize;
                    }
                }
                p {
                    margin-bottom: 15px;
                }
            }
        }
    }
}

.morethen-section {
    background: linear-gradient(269deg, #0E2273 -31.01%, #0C31CA 129.08%);
    padding-top: 20px;
    .container {
        display: grid;
        grid-template-columns: 1fr 398px;
        grid-gap: 50px;
        align-items: center;
        @media (min-width: 768px) and (max-width: 1023px) {
           grid-template-columns: 1fr 306px;
            grid-gap: 20px;
        }
        @media (max-width: 767px) {
            grid-gap: 0px;
            grid-template-columns:auto;
        }
        .left-content {
            padding-bottom: 35px;
            h2 {
                color: #FFF;
                font-size: 2.865vw;
                font-weight: 800;
                line-height: 172.727%;
                text-transform: capitalize;
                @media (min-width: 1024px) and (max-width: 1279px) {
                    font-size: 3.4vw;
                    line-height: 150%;
                }
                @media (min-width: 768px) and (max-width: 1023px) {
                    font-size: 4.6vw;
                    line-height: 150%;
                }
                @media (max-width: 767px) {
                    font-size: 8.636vw;
                    text-align: center;
                    line-height: 131.579%;
                    margin-bottom: 10px;
                }
            }
            h3 {
                color: #FFF;
                text-align: left;
                font-size: 1.771vw;
                font-weight: 600;
                line-height: 117.647%;
                text-transform: capitalize;
                @media (min-width: 768px) and (max-width: 1023px) {
                    font-size: 2.1vw;
                }
                @media (max-width: 767px) {
                    text-align: center;
                    font-size: 5.682vw;
                    line-height: 131.579%;
                    max-width: 86%;
                    margin: auto;
                }
            }
            form {
                width: 76%;
                display: grid;
                grid-template-columns: 1fr 183px;
                margin-top: 53px;
                @media (min-width: 1024px) and (max-width: 1279px) {
                    margin-top: 30px;
                    width: 100%;
                }
                @media (min-width: 768px) and (max-width: 1023px) {
                    width: 100%;
                    grid-template-columns: 1fr 150px;
                    margin-top: 30px;
                }
                @media (max-width: 767px) {
                    margin-top: 30px;
                    width: 100%;
                    grid-template-columns: auto;
                    grid-gap: 12px;
                }
                input {
                    height: 77px;
                    border-radius: 5px 0 0 5px;
                    border: 0;
                    color: #5E5E5E;
                    font-size: 16px;
                    padding: 22px;
                    box-sizing: border-box;
                    @media (max-width: 767px) {
                        height: 60px;
                        border-radius: 5px;
                        text-align: center;
                    }
                }
                button {
                    height: 77px;
                    border: 0;
                    color: #FFF;
                    text-align: center;
                    font-size: 21px;
                    font-style: normal;
                    font-weight: 800;
                    line-height: 40px;
                    text-transform: capitalize;
                    border-radius: 0 5px 5px 0;
                    background: linear-gradient(180deg, #F62D08 0%, #FF9500 100%);
                    transition: all 0.5s;
                    cursor: pointer;
                    @media (max-width: 767px) {
                        height: 60px;
                        border-radius: 5px;
                    }
                    &:hover {
                        background: linear-gradient(0deg, #F62D08 0%, #FF9500 100%);
                        transition: all 0.5s;
                    }
                }
            }
            p.rating {
                color: #ffffff;
                font-weight: 500;
                font-size: 16px;
                display: flex;
                align-items: center;
                gap: 10px;
                margin-top: 27px;
                @media (max-width: 767px) {
                    justify-content: center;
                    font-size: 14px;
                }
            }
        }
        .image {
            display: flex;
            align-items: center;
            @media (max-width: 767px) {
                display: none;
            }
            img{
                width: 100%;
            }
        }
    }
}

.howitworks-section{
    padding: 75px 0px;
    @media (max-width: 767px) {
        padding: 32px 0px;
    }
    h2{
       color: #FD7104;
        font-size: 35px;
        text-align: center;
        font-weight: 700;
        line-height: 40px;
        text-transform: capitalize; 
        margin-bottom: 30px;
        @media (max-width: 767px) {
            font-size: 6.818vw;
             margin-bottom: 17px;
        }
    }
    .howitworks-items{
        display: flex;
        gap:3%;
        @media (max-width: 1536px) {
            gap:1.2%;
        }
        @media (max-width: 767px) {
            flex-direction: column;
            gap: 30px;
        }
        .item{
            img{
                width: 100%;
            }
            .info{
                margin-top: 0px;
                background: #EFEFEF;
                padding: 23px 15px;
                @media (min-width: 768px) and (max-width: 1023px) {
                    padding: 15px 15px;
                }
                h3{
                    color: #12298F;
                    text-align: center;
                    font-size: 18px;
                    font-weight: 600;
                    line-height: normal;
                    @media (max-width: 767px) {
                        margin-bottom: 5px;
                    }
                }
                p{
                   color: #000;
                    text-align: center;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 23px;
                    max-width: 380px;
                    margin: auto;
                    @media (min-width: 768px) and (max-width: 1023px) {
                        font-size: 14px;
                        line-height: 22px;
                    }
                }
            }
        }
    }
}
.centerform-section {
    background: url('../images/centerformbg.png') no-repeat center;
    background-size: cover;
    padding: 50px 0;
    @media (max-width: 767px) {
        padding: 30px 0;
    }
    h2 {
        color: #FFF;
        text-align: center;
        font-size: 1.823vw;
        font-weight: 700;
        line-height: 40px;
        text-transform: capitalize;
        @media (min-width: 1024px) and (max-width: 1279px) {
            font-size: 2.823vw;
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            font-size: 3.4vw;
        }
        @media (max-width: 767px) {
            font-size: 7.045vw;
        }
    }
    form {
        width: 64%;
        display: grid;
        grid-template-columns: 1fr 183px;
        margin: 28px auto auto;
        @media (min-width: 768px) and (max-width: 1279px) {
            width: 80%;
        }
        @media (max-width: 767px) {
            width: 100%;
            grid-template-columns: auto;
            grid-gap: 12px;
            margin-top: 20px;
        }
        input {
            height: 77px;
            border-radius: 5px 0 0 5px;
            border: 0;
            color: #5E5E5E;
            font-size: 16px;
            padding: 22px;
            box-sizing: border-box;
            @media (max-width: 767px) {
                height: 60px;
                border-radius: 5px;
                text-align: center;
            }
        }
        button {
            height: 77px;
            border: 0;
            color: #FFF;
            text-align: center;
            font-size: 21px;
            font-style: normal;
            font-weight: 800;
            line-height: 40px;
            text-transform: capitalize;
            border-radius: 0 5px 5px 0;
            background: linear-gradient(180deg, #00187C 0%, #2F54EB 100%);
            transition: all 0.5s;
            cursor: pointer;
            @media (max-width: 767px) {
                height: 60px;
                border-radius: 5px;
            }
            &:hover {
                background: linear-gradient(0deg, #00187C 0%, #2F54EB 100%);
                transition: all 0.5s;
            }
        }
        .error-message{
            color: #fff000;
        }
    }
}
.testimonials-section {
    padding: 120px 0px 75px;
    @media (min-width: 768px) and (max-width: 990px) {
        padding: 65px 0px 65px;
    }
    @media (max-width: 767px) {
        padding: 35px 0px 35px;
    }
    .testimonials-heading {
        position: relative;
        padding: 0 212px;
        max-width: 1000px;
        margin: auto;
        @media (min-width: 768px) and (max-width: 990px) {
            padding: 0 128px;
        }
        @media (max-width: 767px) {
            padding: 0px;
        }
        &:before {
            content: '';
            position: absolute;
            left: 0;
            top: -50%;
            width: 212px;
            height: 172px;
            background: url('../images/quote1.svg') no-repeat;
            @media (min-width: 768px) and (max-width: 990px) {
                width: 130px;
                height: 105px;
                background-size: cover;
                top: -10%;
            }
            @media (max-width: 767px) {
                width: 110px;
                height: 89px;
                background-size: cover;
                top: 145%;
            }
        }
        &:after {
            content: '';
            position: absolute;
            right: 0;
            top: -50%;
            width: 212px;
            height: 172px;
            background: url('../images/quote1.svg') no-repeat;
            -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
            @media (min-width: 768px) and (max-width: 990px) {
                width: 130px;
                height: 105px;
                background-size: cover;
                top: -10%;
            }
            @media (max-width: 767px) {
                width: 110px;
                height: 89px;
                background-size: cover;
                top: 145%;
            }
        }
        h2, h3 {
            color: #000;
            text-align: center;
            font-size: 35px;
            font-style: normal;
            font-weight: 400;
            line-height: 45px;
            text-transform: capitalize;
            @media (min-width: 768px) and (max-width: 990px) {
                font-size: 26px;
            }
            @media (max-width: 767px) {
                font-size: 6.1vw;
            }
        }
        h3 {
            color: #FD7104;
            font-weight: 700;
        }
    }
    .testimonials-slider {
        padding-top: 40px;
        max-width: 1000px;
        margin: auto;
        .testimonial-item {
            .userimg {
                width: 90px;
                height: 90px;
                margin: auto;
                border-radius: 100px;
                overflow: hidden;
                margin-bottom: 30px;
                img {
                    width: 100%;
                }
            }
            p {
                text-align: center;
                max-width: 700px;
                margin: auto;
                color: #000;
                text-align: center;
                font-size: 17px;
                font-style: normal;
                font-weight: 400;
                line-height: 25px;
            }
            h4 {
                text-align: center;
                margin-top: 20px;
                color: #000;
                font-family: Poppins;
                font-size: 16px;
                font-style: normal;
                line-height: 20px;
                font-weight: 400;
                margin-bottom: 5px;
            }
            img{
                width: 70px;
                margin: auto;
            }
        }
        .owl-dots{
            margin-top: 30px !important;
            .owl-dot span{
                background: #D9D9D9 !important; 
                margin: 5px !important;
            } 
            .owl-dot.active span{
                background: #FF8D01 !important; 
            } 
        }
    }

}

footer {
    background: #1C1D3B;
    padding: 23px 0;
    p {
        text-align: center;
        color: #fff;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        text-transform: capitalize;
        @media (max-width: 767px) {
            font-size: 13px;
            line-height: 22px;
        }
        a {
            color: #FF8D01;
            text-decoration: none;
            &:hover {
                text-decoration: underline;
            }
        }
    }
    ul {
        list-style: none;
        display: flex;
        gap: 30px;
        border-top: 1px solid #4E4F7B;
        max-width: 1080px;
        margin: auto;
        align-items: center;
        justify-content: center;
        margin-top: 22px;
        padding-top: 16px;
        @media (max-width: 767px) {
            gap: 10px;
        }
        li {
            a {
                color: #FFF;
                text-align: center;
                font-size: 12px;
                font-style: normal;
                font-weight: 400;
                line-height: 25px;
                text-transform: capitalize;
                text-decoration: none;
                display: flex;
                @media (max-width: 767px) {
                    font-size: 10px;
                }
                @media (max-width: 384px) {
                    font-size: 9px;
                }
                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }
}
.pattern-bgpage{
    background: #F5F6FE url('../images/pattern.png') repeat-x center bottom;
    height: 100%;
    padding: 110px 0px 200px;
    @media (max-width: 767px) {
        padding: 75px 0px 200px;
    }
}
.quotesection.quote1-page .inner{
    @media (max-width: 767px) {
        padding-top: 130px;
        padding-bottom: 44px;
    }
}
.quotesection {
    border-radius: 20px;
    background: #EEEFF9;
    max-width: 1304px;
    margin: auto;
    padding: 26px 26px;
    @media (max-width: 767px) {
         padding: 16px;
    }
    .inner {
        border-radius: 10px;
        padding: 42px 15px;
        background: #FFF;
        box-shadow: 0 5px 10px 0 rgba(190, 192, 215, 0.30);
        position: relative;
        @media (max-width: 767px) {
            padding: 15px 15px 40px;
        }
        .quote-message{
            background:url('../images/message.png') center;
            width: 265px;
            height: 127px;
            position: absolute;
            top: -40px;
            right: 0px;
            padding: 26px;
            box-sizing: border-box;
            @media (max-width: 767px) {
                top: -15px;
            }
            p{
                color: #0F2EAA;
                font-size: 15px;
                font-weight: 500;
                line-height: 20px;
                text-align: center;
                position: relative;
                left: 7px;
            }
        }
        h1 {
            color: #0F2EAA;
            text-align: center;
            font-size: 21px;
            font-weight: 600;
            line-height: 20px;
            letter-spacing: -0.42px;
            margin-bottom: 40px;
            @media (max-width: 767px) {
                font-size: 4.773vw;
                margin-bottom: 20px;
                line-height: 120%;
            }
            span {
                font-size: 13px;
                @media (max-width: 767px) {
                    display: block;
                    margin-top: 5px;
                }
            }
        }
        h1.h1label {
            margin-bottom: 20px;
            @media (max-width: 767px) {
                margin-bottom: 10px;
            }
        }
        form {
            width: 100%;
            .error-message{
                display: flex;
                justify-content: center;
                margin-top: 10px;
            }
            .items {
                display: flex;
                grid-gap: 25px;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                @media (max-width: 767px) {
                    grid-gap: 10px;
                }
                .item{
                    position: relative;
                    input{
                        position: absolute;
                        opacity: 0;
                        visibility: hidden;
                    }
                    input:checked + label{
                        background-image: linear-gradient(182deg,rgba(246, 44, 7, 1) 0%, rgba(251, 140, 22, 1) 100%);
                        border: 2px solid #F62C07;
                        border-radius: 10px;
                        background-origin: border-box;
                        background-clip: content-box, border-box;
                        background: linear-gradient(180deg, #FFF 0%, #FFEDDA 100%);
                        transition: all 0.3s;
                        &:after{
                            display: block;
                        }
                    }
                }
                label {
                    border-radius: 10px;
                    padding: 15px 20px;
                    border-width: 2px;
                    border-style: solid;
                    border-color: #CACACA;
                    text-align: center;
                    min-height: 152px;
                    max-width: 174px;
                    min-width: 174px;
                    max-height: 152px;
                    cursor: pointer;
                    display: flex;
                    flex-direction: column;
                    transition: all 0.3s;
                    position: relative;
                    box-sizing: border-box;
                    @media (max-width: 767px) {
                        max-width: 287px;
                        min-width: 287px;
                        flex-direction: row;
                        align-items: center;
                        max-height: 83px;
                        min-height: 83px;
                        padding: 10px 20px;
                        gap:30px;
                    }
                    &:after{
                        content: '';
                        position: absolute;
                        width: 36px;
                        height: 6px;
                        background: linear-gradient(90deg, #F63108 0%, #FA8215 100%);
                        border-radius: 100px;
                        left: 0px;
                        right: 0px;
                        bottom: -4px;
                        margin: auto;
                        z-index: 1;
                        display: none;
                    }
                    &:hover {
                        background-image: linear-gradient(182deg,rgba(246, 44, 7, 1) 0%, rgba(251, 140, 22, 1) 100%);
                        border: 2px solid #F62C07;
                        border-radius: 10px;
                        background-origin: border-box;
                        background-clip: content-box, border-box;
                        background: linear-gradient(180deg, #FFF 0%, #FFEDDA 100%);
                        transition: all 0.3s;
                    }
                    .icon {
                        width: 74px;
                        height: 74px;
                        margin: auto auto 10px;
                        padding: 7px;
                        position: relative;
                        @media (max-width: 767px) {
                            margin: 0px;
                            width: 60px;
                            height: 60px;
                            &:after{
                                width: 1px;
                                height: 35px;
                                background: #DEDEDE;
                                content: '';
                                position: absolute;
                                right: -15px;
                                top: 12px;
                           }
                        }
                        img{
                            width: 100%;
                        }
                    }
                    p {
                        color: #000;
                        text-align: center;
                        font-size: 13px;
                        font-weight: 500;
                        line-height: 18px;
                        letter-spacing: -0.26px;
                        position: relative;
                        @media (max-width: 767px) {
                           text-align: left;
                        }
                    }
                }
            }
            .form-group{
                max-width: 533px;
                margin: auto;
                input{
                    width: 100%;
                    height: 50px;
                    border-radius: 5px;
                    border: 1px solid #000;
                    padding: 14px 15px;
                    box-sizing: border-box;
                    font-size: 13px;
                    color: #000;
                    @media (max-width: 767px) {
                       height: 41px;
                    }
                    &::placeholder {
                        color: #363636;
                    }
                }
            }
            .labelcheck{
                display: flex;
                align-items: baseline;
                gap: 10px;
                justify-content: center;
                margin-top: 15px;
                max-width: 520px;
                margin: 0px auto 0px;
                input{
                    position: relative;
                    top: 2px;
                }
                p{
                    color: #000;
                    font-size: 13px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 18px;
                    letter-spacing: -0.26px;
                }
            }
            .formpara{
                margin-top: 15px;
                max-width: 520px;
                margin: 15px auto 0px;
                text-align: center;
                font-size: 10px;
            }
            .pagination {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 20px;
                margin:45px 0px 60px;
                @media (max-width: 767px) {
                    margin: 25px 0px 50px;
                }
                button {
                    width: 36px;
                    height: 37px;
                    border-radius: 5px;
                    cursor: pointer;
                    background: linear-gradient(182deg,rgba(246, 48, 8, 1) 0%, rgba(250, 137, 22, 1) 100%);
                    border: 1px solid #fff;
                    position: relative;
                    span{
                        position: absolute;
                        color: #000;
                        font-size: 12px;
                        font-weight: 500;
                        line-height: 18px;
                        left: 0px;
                        right: 0px;
                        bottom: -22px;
                        letter-spacing: -0.2px;
                    }
                }
                button.back {
                    cursor: pointer;
                    background: #fff;
                    border: 2px solid #F62C07;
                }
                button.getmyquote {
                    background: linear-gradient(182deg,rgba(246, 48, 8, 1) 0%, rgba(250, 137, 22, 1) 100%);
                    color: #fff;
                    font-size: 18px;
                    font-weight: 700;
                    width: 250px;
                    text-transform: uppercase;
                    height: 50px;
                }
            }
        }
    }
}
.progress {
	background-color: #ECEDF7;
	border-radius: 5px;
	position: relative;
	margin: 15px 0;
	height: 5px;
	max-width: 750px;
    margin: 0px auto 10px;
}
.progress-done {
	background: linear-gradient(90deg, #F63108 0%, #FA8215 100%);
	border-radius: 20px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 0;
	opacity: 0;
	transition: 1s ease 0.3s;
	position:relative;
}
.progress-done span {
	position:absolute;
	bottom:-22px;
    right: 0px;
    color: #6E6E6E;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 138.462% */
    letter-spacing: -0.26px;
}
.innerbanner {
    width: 100%;
    background: linear-gradient(90deg, #021B81 32.08%, #173099 100%);
    padding: 35px 0;
    margin-bottom: 50px;
    margin-top: 79px;
    position: relative;
    @media (max-width: 767px) {
        margin-bottom: 20px;
        margin-top: 57px;
    }
    .container{
        position: relative;
        z-index: 2;
    }
    &:after{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: url('../images/innerbannerpattern.png') no-repeat center center;
        background-size: cover;
        z-index: 1;
    }
}
.latestnews-banner{
    padding: 35px 0px;
    margin-bottom: 50px;
    position: relative;
    background: url('../images/blogbanner.png') no-repeat top center;
    background-size: contain;
    @media (max-width: 767px) {
        background: url('../images/mobileblogbanner.png') no-repeat top center;
        background-size: 100% auto;
    }
    .container{
        position: relative;
        z-index: 2;
    }
    h1{
        &:after{
            display: none;
        }
    }
}
h1.innerbanner-title {
    color: #FFF;
    text-align: center;
    font-size: 2.865vw;
    line-height: 180%;
    font-style: normal;
    font-weight: 800;
    text-transform: capitalize;
    position: relative;
    width: auto;
    margin: auto;
    display: table;
    @media (min-width: 1024px) and (max-width: 1279px) {
        font-size: 4vw;
    }
    @media (min-width: 768px) and (max-width: 1023px) {
        font-size: 4.6vw;
    }
    @media (max-width: 767px) {
        font-size: 9.091vw;
        line-height: 150%;
    }
    &:after {
        height: 4px;
        max-width: 237px;
        width: 100%;
        background: url('../images/zigzag.svg') center bottom repeat-x;
        content: '';
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        position: absolute;
    }
}
.innerbanner-subtitle{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px; /* 125% */
    text-align: center;
    margin-top: 0px;
    position: relative;
    padding-bottom: 20px;
    @media (max-width: 1023px) {
        font-size: 18px;
    }
    &:after {
        height: 4px;
        width: 237px;
        background: url('../images/zigzag.svg') center bottom repeat-x;
        content: '';
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        position: absolute;
    }
}
ul.breadcrumb {
    list-style-type: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
    li {
        color: #FA8C16;
        font-size: 15px;
        font-weight: 600;
        line-height: 25px;
        text-align: center;
        a {
            color: #fff;
            text-decoration: none;
        }
    }
}
.aboutus-page {
    margin-bottom: 100px;
    @media (max-width: 990px) {
       margin-bottom: 65px;
    }
    .aboutpage-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        align-items: stretch;
        @media (max-width: 990px) {
            grid-template-columns: auto;
        }
        &:last-child {
            grid-auto-flow: dense;
            direction: rtl;
            text-align: left;
            .content {
                padding-left: 55px;
                padding-right: 0px;
                @media (min-width: 991px) and (max-width: 1279px) {
                    padding: 30px 0px 30px 30px;
                }
                @media (max-width: 990px) {
                   padding: 0px;
                }
            }
        }
        .content {
            padding: 55px;
            padding-left: 0px;
            @media (min-width: 991px) and (max-width: 1279px) {
                padding: 30px 30px 30px 0px;
            }
            @media (max-width: 990px) {
                padding: 0px;
            }
            h2 {
                color: #000;
                font-size: 2.083vw;
                font-weight: 700;
                line-height: 133.333%;
                text-transform: capitalize;
                position: relative;
                padding-bottom: 25px;
                margin-bottom: 27px;
                @media (max-width: 990px) {
                    padding-bottom: 0px;
                    margin-bottom: 15px;
                    font-size: 3.183vw;
                }
                @media (max-width: 767px) {
                    font-size: 6.818vw;
                }
                &:after {
                    width: 221px;
                    height: 1px;
                    background: #BDBDBD;
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    @media (max-width: 990px) {
                        display: none;
                    }
                }
                span {
                    color: #FE4F09;
                }
            }
            p {
                color: #000;
                font-family: Poppins;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 25px;
                margin-bottom: 30px;
                @media (min-width: 768px) and (max-width: 1279px) {
                    font-size: 14px;
                    line-height: 22px;
                }
            }
        }
        .image {
            width: 100%;
            flex-grow: 1;
            flex-basis: 0;
            min-width: 0;
            height: 100%;
            @media (max-width: 990px) {
                display: none;
                height: auto;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
}

.comman-pages {
    .full-content {
        margin-bottom: 100px;
        h2 {
            font: 700 2.813rem "Poppins", sans-serif;
            color: #FD7104;
            margin-bottom: 30px;
            line-height: 130%;
            text-transform: capitalize;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 34px;
                margin-bottom: 20px;
            }
            @media (max-width: 767px) {
                font-size: 2.3rem;
                line-height: 120%;
                margin-bottom: 10px;
            }
        }
        .date {
            margin-bottom: 20px;
            font-size: 16px;
            color: #000;
        }
        h3 {
            margin-bottom: 10px;
            color: #000;
        }
        p {
            font-size: 16px;
            color: #000;
            line-height: 25px;
            margin-bottom: 15px;
            font-weight: 400;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 14px;
                line-height: 22px;
            }
            a {
                color: #12298F;
            }
        }
        ul {
            padding-left: 20px;
            margin: 20px 0;
            li {
                font-size: 16px;
                color: #000;
                line-height: 25px;
                margin-bottom: 10px;
                font-weight: 400;
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 14px;
                    line-height: 22px;
                }
            }
        }
        table {
            thead {
                th {
                    background: #efefef;
                    padding: 15px;
                    color: #000;
                }
            }
            tbody {
                tr {
                    td {
                        padding: 10px 15px;
                    }
                }
            }
        }
    }
}
.blogs-section{
    display: grid;
    grid-template-columns: 1fr 397px;
    margin-top: 100px;
    grid-gap:30px;
    @media (min-width: 1024px) and (max-width: 1279px) {
        grid-template-columns: 1fr 300px;
    }
    @media (min-width: 768px) and (max-width: 1023px) {
        grid-template-columns: 1fr 250px;
        margin-top: 24px;
        grid-gap:15px;
    }
    @media (max-width: 767px) {
        margin-top: 40px;
        grid-template-columns: auto;
    }
    .leftblogs {
        background: #fff;
        .trending-section {
            padding: 24px;
            box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
            @media (max-width: 767px) {
                padding: 15px;
            }
            h4 {
                color: #000;
                font-size: 10px;
                font-weight: 400;
                letter-spacing: 1px;
                text-transform: uppercase;
                @media (max-width: 767px) {
                    text-align: center;
                }
            }
            h2 {
                color: #FA5C05;
                font-size: 35px;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 10px;
                @media (min-width: 1024px) and (max-width: 1279px) {
                    font-size: 2.737vw;
                }
                @media (max-width: 767px) {
                    font-size: 7.273vw;
                    text-align: center;
                }
            }
            img {
                width: 100%;
                margin-bottom: 10px;
            }
            span.blogdate {
                color: #000;
                font-size: 13px;
                font-weight: 400;
                line-height: 25px;
                @media (max-width: 767px) {
                    text-align: center;
                    display: flex;
                    justify-content: center;
                }
                b {
                    font-weight: 600;
                }
            }
            .info {
                display: grid;
                grid-template-columns: 1fr 160px;
                grid-gap: 20px;
                @media (max-width: 1279px) {
                    grid-template-columns: auto;
                }
                .content {
                    h1 {
                        color: #FE4F09;
                        font-family: Poppins;
                        font-size: 29px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 137.931%;
                        text-transform: capitalize;
                        margin: 10px 0;
                        @media (min-width: 768px) and (max-width: 1279px) {
                            font-size: 2.267vw;
                        }
                        @media (max-width: 767px) {
                            text-align: center;
                            font-size: 6.364vw;
                        }
                    }
                    p {
                        color: #000;
                        font-size: 15px;
                        font-weight: 400;
                        line-height: 23px;
                        max-width: 750px;
                        @media (max-width: 767px) {
                            text-align: center;
                        }
                    }
                }
                .readmore {
                    display: flex;
                    align-items: flex-end;
                    margin-bottom: 10px;
                    @media (max-width: 767px) {
                       justify-content: center;
                    }
                    a {
                        width: 156px;
                        height: 46px;
                        display: flex;
                        color: #FFF;
                        text-align: center;
                        font-size: 16px;
                        font-weight: 600;
                        line-height: 40px;
                        align-items: center;
                        justify-content: center;
                        text-decoration: none;
                        text-transform: capitalize;
                        border-radius: 5px;
                        transition: all 0.3s;
                        background: linear-gradient(180deg, #F73308 0%, #FF9201 100%);
                        &:hover{
                            background: linear-gradient(0deg, #F73308 0%, #FF9201 100%);
                            transition: all 0.3s;
                        }
                    }
                }
            }
        }
        .adsection {
            background: linear-gradient(110deg, #0C2EB8 0.32%, #0E2686 133.62%);
            padding: 35px;
            margin: 36px 0;
            display: grid;
            grid-template-columns: 1fr 180px;
            grid-gap: 20px;
            align-items: center;
            @media (min-width: 768px) and (max-width: 1279px) {
                padding: 15px;
                grid-template-columns: auto;
                grid-gap: 20px;
            }
            @media (max-width: 767px) {
                grid-template-columns: auto;
                padding: 20px 15px 26px;
            }
            .adcontent {
                h2 {
                    color: #FFF;
                    font-size: 2.135vw;
                    font-weight: 600;
                    line-height: 45px;
                    text-transform: lowercase;
                    margin-bottom: 15px;
                    @media (min-width: 768px) and (max-width: 1279px) {
                        font-size: 4vw;
                    }
                    @media (max-width: 767px) {
                        text-align: center;
                        font-size: 8vw;
                    }
                }
                p {
                    color: #FFF;
                    font-size: 18px;
                    font-weight: 400;
                    line-height: 28px;
                    max-width: 709px;
                    @media (max-width: 767px) {
                        text-align: center;
                    }
                }
            }
            a.getquotes-btn {
                margin-bottom: 10px;
                width:180px;
                height: 60px;
                display: flex;
                color: #FFF;
                font-size: 16px;
                font-weight: 600;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                text-transform: capitalize;
                border-radius: 5px;
                background: linear-gradient(180deg, #F73308 0%, #FF9201 100%);
                @media (min-width: 768px) and (max-width: 1279px) {
                    height: 50px;
                }
                @media (max-width: 767px) {
                    margin: auto;
                    width:291px;
                    border-radius: 4px;
                }
            }
        }
        .blog-details-content {
            .trending-section {
                box-shadow: none;
                margin-bottom: 0;
                padding-bottom: 15px;
            }
            .detailsinner {
                color: #000;
                font-size: 15px;
                font-weight: 400;
                line-height: 25px;
                padding: 0 24px;
                @media (max-width: 767px) {
                    padding:0px 15px;
                }
                p {
                    color: #000;
                    font-size: 15px;
                    font-weight: 400;
                    line-height: 25px;
                    margin-bottom: 15px;
                    b {
                        font-weight: 600;
                    }
                }
                ul {
                    padding-left: 20px;
                    margin: 20px 0;
                    li {
                        font-size: 15px;
                        color: #000;
                        line-height: 25px;
                        margin-bottom: 10px;
                        font-weight: 400;
                        b {
                            font-weight: 600;
                        }
                    }
                }
                h3, h2 {
                    margin-bottom: 10px;
                    color: #000;
                }
            }
        }

    }
    .rightblogs{
        .latest-articles-hd{
            background: #F9F9F9;
            padding: 17px 17px 0px;
            h2{
                color: #FA5C05;
                font-size: 22px;
                font-style: normal;
                font-weight: 600;
                text-transform: uppercase;
            }
        }
        .blog-list {
            grid-row-gap: 30px;
            .blog-item {
                background: #F9F9F9;
                padding: 17px;
            }
        }
    }
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    grid-row-gap: 50px;
    grid-column-gap: 25px;
     margin-top: -1px;
    @media (min-width: 768px) and (max-width: 1023px) {
        grid-template-columns: repeat(auto-fit, minmax(222px, 1fr));
        grid-gap:15px;
    }
    .blog-item {
        max-width: 424px;
        .image {
            margin-bottom: 20px;
            img {
                width: 100%;
                display: flex;
            }
        }
        .blog-content {
            h3 {
                margin-bottom: 10px;
                display: none;
                &:first-of-type{
                    display: block !important;
                }
                a{
                    color: #000;
                    font-family: Poppins;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 150%;
                    text-transform: capitalize;          
                    text-decoration: none;
                    transition: all 0.3s;
                    overflow: hidden;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    @media (min-width: 768px) and (max-width: 1279px) {
                        font-size: 16px;
                    }
                    @media (max-width: 767px) {
                       -webkit-line-clamp: 2;
                    }
                    &:hover{
                        color: #FE4F09;
                        transition: all 0.3s;
                    }
                }
            }
            span {
                color: #000;
                font-size: 11px;
                font-style: normal;
                font-weight: 400;
                background: rgba(217, 217, 217, 0.50);
                padding: 3px 10px;
                margin-bottom: 10px;
                display: inline-block;
                b {
                    font-weight: 600;
                }
            }
            h2{
                display: none;
            }
            p {
                color: #000;
                font-size: 15px;
                font-style: normal;
                font-weight: 400;
                line-height: 25px;
                margin-bottom: 5px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                @media (min-width: 768px) and (max-width: 1279px) {
                    font-size: 14px;
                    line-height: 22px;
                }
            }
            a.redmore {
                color: #FE4F09;
                font-size: 13px;
                font-weight: 400;
                text-decoration: none;
                position: relative;
                padding-right: 18px;
                &:after {
                    height: 12px;
                    width: 12px;
                    background: url('../images/readmorearrow.svg') center bottom repeat-x;
                    content: '';
                    top: 4px;
                    left: auto;
                    right: 0;
                    margin: auto;
                    position: absolute;
                }
            }
        }
    }
}

.becomeapartner-page {
    .inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        align-items: stretch;
        @media (max-width: 767px) {
            grid-template-columns: auto;
        }
        .image {
            display: flex;
            @media (max-width: 767px) {
                display: none;
            }
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .form {
            width: 100%;
            padding: 60px;
            background: #EEEFF9;
            @media (min-width: 1024px) and (max-width: 1279px) {
                padding: 30px;
            }
            @media (min-width: 768px) and (max-width: 1023px) {
                padding: 20px;
            }
            @media (max-width: 767px) {
                padding: 13px;
            }
            h2 {
                color: #FE4F09;
                text-align: center;
                font-size: 2.135vw;
                font-style: normal;
                font-weight: 700;
                line-height: 134.146% ;
                margin-bottom: 16px;
                @media (min-width: 1024px) and (max-width: 1279px) {
                    font-size: 2.55vw;
                }
                @media (min-width: 768px) and (max-width: 1023px) {
                    font-size: 2.50vw;
                    margin-bottom: 5px;
                }
                @media (max-width: 767px) {
                    font-size: 7.045vw;
                }
            }
            p {
                color: #2D2D2D;
                text-align: center;
                font-size: 1.319vw;
                font-style: normal;
                font-weight: 500;
                line-height: 173.684%;
                @media (max-width: 767px) {
                    font-size: 19px;
                }
            }
            form {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-gap: 15px;
                margin-top: 35px;
                @media (min-width: 768px) and (max-width: 1023px) {
                    margin-top: 15px;
                }
                @media (max-width: 767px) {
                    display: block;
                }
                .form-group {
                    width: 100%;
                    input,
                    select,
                    textarea {
                        width: 100%;
                        height: 48px;
                        background: #fff;
                        border: 0;
                        padding: 15px;
                        color: #000;
                        font-weight: 400;
                        font-size: 13px;
                        border: 1px solid #CBCDE3;
                        font-family: 'Poppins', sans-serif;
                        &::placeholder {
                            color: rgba(0, 0, 0, 0.70);
                        }
                        @media (max-width: 767px) {
                            margin-bottom: 11px;
                        }
                    }
                    select {
                        background: #fff url('../images/selectarrow.svg') no-repeat center right;
                        background-position-x: 95%;
                        appearance: none;
                    }
                    textarea {
                        height: 100px;
                        resize: none;
                    }
                    &:nth-child(6) {
                        grid-column: span 2;
                    }
                    &:nth-child(7) {
                        grid-column: span 2;
                    }
                    button {
                        color: #fff;
                        width: 100%;
                        height: 63px;
                        border: 0;
                        cursor: pointer;
                        padding: 8px 10px;
                        border-radius: 5px;
                        text-align: center;
                        font-size: 22px;
                        font-weight: 700;
                        text-transform: uppercase;
                        background: linear-gradient(180deg, #0C2DB4 0%, #06218C 100%);
                        transition: all 0.3s;
                        &:hover{
                            background: linear-gradient(0deg, #0C2DB4 0%, #06218C 100%);
                            transition: all 0.3s;
                        }
                    }
                }
                .form-group.form-btns {
                    display: flex;
                    gap: 20px;
                    max-width: 379px;
                    align-items: center;
                    justify-content: center;
                    margin: 10px auto auto;
                }
            }
        }
    }
}
.mobileonly, .tab990mxonly{
    display: none;
}
.hamburgermenu {
    cursor: pointer;
    display: none;
    width: 14px;
    img{
        float: right;
    }
}
@media screen and (orientation: landscape) and (max-width: 767px) {
    .herobanner-section {
        height: auto;
    }
}
@media screen and (max-width: 767px) and (aspect-ratio: 1/1) {
    .herobanner-section {
        height: auto;
    }
}
.mobile-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: linear-gradient(90deg, #FE4707 0%, #FE4F09 0.01%, #F62B07 0.02%, #FA8C16 100%);
    padding: 20px 20px;
    z-index: 99;
    top: 70px;
    display: none;
    ul {
        width: 100%;
        list-style-type: none;
        margin-top: 10px;
        li {
            a {
                color: #fff;
                text-align: center;
                width: 100%;
                display: block;
                text-decoration: none;
                padding: 15px 0px;
                border-bottom: 1px solid #ff8d01;
                transition: transform 0.3s ease;
                &:hover{
                    color: #12298F;
                    transition: transform 0.3s ease;
                }
            }
            &:last-child{
                a{
                    border-bottom: 0px;
                }
            }
        }
    }
}
.error-message{
    font-size: 14px;
    color: #ff0000;
    margin-top: 3px;
    @media (max-width: 767px) {
        text-align: center;
    }
}
.alert-success{

    font-size: 18px;
    color: green;
    margin-top: 3px;
    font-weight: 600;
    text-align: center;

}
.thankyoupage {
    .thankyouicon {
        position: absolute;
        right: 20px;
        top:20px;
        @media (max-width: 767px) {
            display: none;
        }
    }
    .logo {
        width: 191px;
        margin: 0 auto 30px;
        display: flex;
        border: 1px solid #c9c9c9;
        border-radius: 10px;
        img {
            width: 100%;
        }
    }
    h2 {
        text-align: center;
        color: #000;
        font-size: 27px;
        font-style: normal;
        font-weight: 600;
        position: relative;
        line-height: 120%;
        span{
            color: #FA5C05;
        }
    }
    .border {
        max-width: 350px;
        height: 1px;
        background: #ccc;
        margin: 20px auto;
        position: relative;
        &:after,
        &:before {
            content: '';
            width: 7px;
            height: 7px;
            background: #ccc;
            position: absolute;
            left: 0;
            top: -3px;
            border-radius: 100px;
        }
        &:after {
            left: auto;
            right: 0;
        }
    }
    h3 {
        text-align: center;
        position: relative;
        color: #000;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        margin-bottom: 10px;
        span{
            color: #FA5C05;
        }
    }
    p {
        color: #000;
        text-align: center;
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        max-width: 610px;
        margin: 0 auto 40px;
    }
    a.getintouch {
        border-radius: 100px;
        position: absolute;
        left: 0;
        right: 0;
        padding: 10px 20px;
        bottom: -25px;
        max-width: 432px;
        margin: auto;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #FFF;
        text-align: center;
        font-size: 19px;
        font-weight: 800;
        line-height: 25px;
        /* 131.579% */
        text-transform: uppercase;
        background: linear-gradient(180deg, #0C2CB0 0%, #06228F 100%);
        @media (max-width: 767px) {
            font-size: 16px;
        }
    }
}
.finding-success{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FE4707;
    color: #fff;
    padding: 20px 30px;
    dorder-radius: 10px;
    z-index: 9999;
    font-size: 18px;
    font-weight: bold;
    boxShadow: 0 4px 10px rgba(0,0,0,0.3);
    @media (max-width: 767px) {
        padding: 20px 15px;
        font-size: 18px;
        max-width: 350px;
        width: 350px;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .tab990mxonly{
        display: block !important;
    }
}
@media (max-width: 767px) {
    .mobileonly, .tab990mxonly{
        display: block !important;
    }
}
@media (max-width: 1023px) {
    .hamburgermenu {
        display: block;
        margin-left: 12px;
    }
}
 @media (max-width: 380px) {
    .hamburgermenu {
        margin-left: 7px;
    }
}
@media (min-width: 1441px) and (max-width: 1540px){
    .container {
        max-width: 1420px !important;
    }
    header {
        .container {
            max-width: 1500px !important;
        }
    }
}
 @keyframes drawArrow {
  0%   { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0.8; }
  50%  { transform: translateX(5px) translateY(-2px) rotate(-4deg); opacity: 1; }
  100% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0.8; }
} 