@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    color: #3c3c3c;
}
.full-container {
    width: 100%;
}
.container {
    max-width: 1256px;
    margin: 0px auto;
    padding: 0px 15px;
    width: 100%;
    @media (min-width: 1561px) {
        max-width: 85%;
    }
}
.header-bg {
    padding: 15px 0px;
    background: #EBF7FF;
    position: relative;
    @media (max-width: 767px) {
        background: #EBF7FF;
    }
    &:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-size: cover !important;
        top: 0px;
        left: auto;
        right: 0px;
        z-index: 0;
        background: url(../images/bannerpattern.png) no-repeat center;
        @media (max-width: 767px) {
            display: none;
        }
    }
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    z-index: 1;
    @media (max-width: 767px) {
        align-items: center;
    }
}
.logo img {
    width: 107px;
    @media (min-width: 768px) and (max-width: 1024px) {
        width: 75px;
    }
    @media (max-width: 767px) {
        width: 92px;
    }
}
.hamburgermenu {
    cursor: pointer;
    @media (min-width: 768px) {
        display: none;
    }
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 40px;
}
.navbar ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0px;
}
.navbar ul li a:hover:after {
    visibility: visible;
    transition: color 0.3s ease;
}
.navbar ul li a:after {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #002F87;
    position: absolute;
    content: "";
    bottom: 1px;
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    transition: color 0.3s ease;
}
.navbar ul li.active a {
    color: #002F87;
    &::after {
        visibility: visible;
        transition: color 0.3s ease;
    }
}
.header-right {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 15px;
    @media (min-width: 768px) and (max-width: 991px) {
        gap: 25px;
    }
    @media (max-width: 767px) {
        display: none;
    }
}
.header-right img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.header-right img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.topicons {
    display: flex;
    align-items: center;
    gap: 15px;
    @media (min-width: 768px) and (max-width: 991px) {
        gap: 10px;
    }
    a {
        display: flex;
    }
}
.mobile-menu {
    position: absolute;
    width: 100%;
    top: 0x;
    left: 0;
    background: #EBF7FF;
    padding: 20px 50px;
    z-index: 99;
    top: -20px;
    display: none;
    .logo {
        margin: 30px auto 0;
        text-align: center;
        img {
            width: 150px;
        }
    }
    .menuclose {
        position: absolute;
        right: 20px;
        top: 70px;
        cursor: pointer;
        img {
            width: 16px;
        }
    }
    ul {
        width: 100%;
        list-style-type: none;
        margin-top: 30px;
        li {
            a {
                color: #000;
                text-align: center;
                width: 100%;
                display: block;
                text-decoration: none;
                padding: 15px;
                border-bottom: 1px solid #BCD8EB;
                transition: transform 0.3s ease;
                &:hover {
                    color: #002F87;
                    transition: transform 0.3s ease;
                }
            }
        }
    }
    .menuicons {
        display: flex;
        align-items: center;
        gap: 15px;
        width: auto;
        margin: 40px 0 20px;
        justify-content: center;
    }
}
.banner {
    padding: 20px 0px 40px;
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    @media (min-width: 768px) and (max-width: 991px) {
        gap: 10px;
        padding: 20px 0px 15px;
    }
    @media (max-width: 767px) {
        flex-direction: column;
        position: relative;
        padding: 20px 0px 100px;
    }
    .banner-content {
        max-width: 500px;
        width: 100%;
        flex-shrink: 0;
        flex-grow: 1;
        padding-top: 50px;
        @media (min-width: 1561px) {
            max-width: 700px;
        }
        @media (min-width: 768px) and (max-width: 991px) {
            max-width: 350px;
        }
        @media (max-width: 767px) {
            padding-top: 10px;
            max-width: 767px;
        }
        h5 {
            font-size: 17px;
            font-weight: 400;
            color: #002F87;
            margin-bottom: 10px;
            line-height: 24px;
            letter-spacing: 5px;
            @media (min-width: 1568px) {
                font-size: 24px;
                line-height: normal;
            }
            @media (min-width: 768px) and (max-width: 991px) {
                font-size: 18px;
            }
            @media (max-width: 767px) {
                letter-spacing: 3.4px;
            }
        }
        h1 {
            font-size: 4.9rem;
            font-weight: 700;
            color: #002F87;
            margin-bottom: 20px;
            line-height: 90px;
            @media (max-width: 1560px) {
                font-size: 3.5rem;
                line-height: 70px;
            }
            @media (max-width: 1256px) {
                font-size: 3rem;
                line-height: 110%;
            }
            @media (max-width: 767px) {
                font-size: 68px;
                line-height: 70px;
            }
            span {
                color: #0041BC;
                font-size: 4.9rem;
                font-weight: 700;
                line-height: 90px;
                @media (max-width: 1560px) {
                    font-size: 3.5rem;
                    line-height: 70px;
                }
                @media (max-width: 1256px) {
                    font-size: 3rem;
                    line-height: 110%;
                }
                @media (max-width: 767px) {
                    font-size: 68px;
                    line-height: 70px;
                }
            }
        }
        p {
            color: #000;
            font-size: 17px;
            font-weight: 400;
            line-height: 25px;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 14px;
                line-height: 22px;
            }
        }
        .banner-stars {
            margin-top: 65px;
            @media (min-width: 768px) and (max-width: 1024px) {
                margin-top: 40px;
            }
            @media (max-width: 767px) {
                position: absolute;
                bottom: 15px;
                left: 0px;
                margin-top: 0px;
            }
            .star {
                display: flex;
                gap: 20px;
                margin-bottom: 10px;
                @media (max-width: 767px) {
                    gap: 10px;
                }
                span {
                    color: #000;
                    font-size: 17px;
                    font-weight: 500;
                    @media (min-width: 768px) and (max-width: 1024px) {
                        font-size: 14px;
                    }
                    @media (max-width: 767px) {
                        font-size: 16px;
                    }
                }
                img {
                    width: 118px;
                    object-fit: contain;
                }
            }
            p {
                color: #000;
                font-size: 17px;
                font-weight: 400;
                display: flex;
                align-items: center;
                gap: 10px;
            }
        }
    }
}
.banner-slider {
    max-width: 700px;
    width: 100%;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    @media (min-width: 1561px) {
        max-width: 700px;
    }
    @media (min-width: 1440px) and (max-width: 1560px) {
        max-width: 700px;
    }
    @media (max-width: 767px) {
        padding: 0px 40px;
    }
    @media (max-width: 492px) {
        padding: 0px 20px;
    }
    .banner-services-slider {
        width: 100%;
        .owl-nav {
            width: auto;
            display: table;
            margin-left: auto;
            margin-top: 0px !important;
            @media (max-width: 1259px) {
                display: block;
            }
            @media (max-width: 767px) {
                width: 100%;
                position: absolute;
                top: 50%;
                z-index: 0;
            }
            button {
                width: 36px;
                height: 36px;
                border-radius: 5px;
                border: 1px solid #002F87 !important;
                @media (max-width: 767px) {
                    left: -50px;
                    position: absolute;
                }
                @media (max-width: 492px) {
                    left: -35px;
                }
                &:hover {
                    background: #002F87;
                    span {
                        filter: brightness(10000%);
                    }
                }
                span {
                    background: url(../images/sliderarrow.svg) no-repeat center;
                    width: 12px;
                    height: 9px;
                    overflow: hidden;
                    text-indent: -10000px;
                    display: table;
                    margin-left: 10px;
                }
            }
            .owl-next {
                @media (max-width: 767px) {
                    left: auto;
                    right: -35px;
                    position: absolute;
                }
                span {
                    margin-left: 12px;
                    transform: rotate(180deg);
                }
            }
        }
        .item {
            padding: 20px 0px;
            @media (max-width: 767px) {
                padding: 0px;
            }
        }
        .slider-item {
            display: flex;
            flex-direction: column;
            /*justify-content: center;
            align-items: center;*/
            height: 444px;
            width: 339px;
            border-radius: 20px;
            background: url("../images/servicebg.svg") no-repeat center;
            background-size: cover;
            gap: 0px;
            position: relative;
            margin: auto;
            place-items: center;
            place-content: space-around;
            padding-top: 65px;
            @media (max-width: 767px) {
                background: url("../images/mobileservicebg.svg") no-repeat center;
                height: 374px;
                width: 279px;
                gap: 10px;
                padding-bottom: 20px;
            }
            .smallicon {
                position: absolute;
                top: 10px;
                right: 10px;
                width: 54px;
                height: 54px;
                border-radius: 100px;
                background: #002F87;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    width: auto;
                }
            }
            .icon {
                min-height: 236px;
                display: flex;
                align-items: center;
                @media (max-width: 767px) {
                    min-height: 224px;
                }
                img {
                    aspect-ratio: auto 3/4;
                }
            }
            a {
                max-width: 199px;
                height: 59px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                text-decoration: none;
                color: #fff;
                font-size: 18px;
                font-weight: 600;
                transition: all 0.3s ease;
                border-radius: 5px;
                background: linear-gradient(90deg, #1C6B18 0%, #788E00 100%);
                box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
                &:hover {
                    color: #fff;
                    transition: all 0.3s ease;
                    background: linear-gradient(90deg, #788E00 0%, #1C6B18 100%);
                }
            }
        }
    }
}
.hm-aboutmain {
    .container {
        @media (min-width: 1561px) {
            max-width: 75%;
        }
    }
}
.hm-aboutsection {
    padding: 80px 0px;
    display: flex;
    gap: 50px;
    align-items: center;
    @media (min-width: 768px) and (max-width: 1024px) {
        gap: 20px;
        padding: 40px 0px 50px;
        align-items: flex-start;
    }
    @media (min-width: 768px) and (max-width: 820px) {
        flex-direction: column;
    }
    @media (max-width: 767px) {
        padding: 0px 0px 60px;
        display: flex;
        gap: 0px;
        flex-direction: column;
        margin: 0px -15px;
    }
    .about-image {
        /* max-width: 650px; */
        width: 100%;
        flex-grow: 1;
        flex-basis: 0;
        min-width: 0;
        @media (max-width: 767px) {
            max-width: none;
            margin: 0px 0px;
            width: 100%;
        }
        img {
            width: 100%;
            border-radius: 26px;
            @media (min-width: 768px) and (max-width: 820px) {
                border-radius: 0px;
            }
            @media (max-width: 767px) {
                border-radius: 0px;
            }
        }
    }
    .content {
        flex-grow: 1;
        flex-basis: 0;
        min-width: 0;
        @media (min-width: 768px) and (max-width: 1024px) {
            padding-top: 0px;
        }
        @media (max-width: 767px) {
            padding: 0px 15px;
        }
        h2 {
            font: 700 2.813rem "Poppins", sans-serif;
            color: #002F87;
            margin-bottom: 10px;
            @media (min-width: 1561px) {
                font: 700 2.7vw "Poppins", sans-serif;
            }
            @media (max-width: 1256px) {
                font-size: 2.4rem;
                line-height: 120%;
            }
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 34px;
                line-height: 44px;
            }
            @media (max-width: 767px) {
                font-size: 2.3rem;
                line-height: 120%;
            }
        }
        p {
            font-size: 16px;
            color: #3c3c3c;
            line-height: 25px;
            margin-bottom: 20px;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 14px;
                line-height: 22px;
                margin-bottom: 15px;
            }
        }
    }
}
.readmore {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font: 600 17px "Poppins", sans-serif;
    transition: all 0.3s ease;
    padding: 15px 20px;
    max-width: 199px;
    width: 100%;
    height: 55px;
    text-align: center;
    border-radius: 5px;
    background: linear-gradient(90deg, #1C6B18 0%, #788E00 100%);
    @media (max-width: 1024px) {
        padding: 10px 15px;
        max-width: 155px;
        width: 100%;
        height: 40px;
        font-size: 14px;
    }
    @media (max-width: 767px) {
        margin: auto;
        display: flex;
        justify-content: center;
        max-width: 249px;
        height: 55px;
        font-size: 17px;
        padding: 15px;
    }
    &:hover {
        color: #fff;
        transition: all 0.3s ease;
        background: linear-gradient(90deg, #788E00 0%, #1C6B18 100%);
    }
}
.hm-contactsection {
    height: 274px;
    background: #013393;
    @media (max-width: 767px) {
        height: auto;
        padding-top: 50px;
        background-image: none;
    }
    .inner {
        display: grid;
        grid-template-columns: 1fr 373px;
        gap: 30px;
        padding: 0;
        @media (min-width: 768px) and (max-width: 1024px) {
            grid-template-columns: 1fr 300px;
            gap: 20px;
        }
        @media (max-width: 767px) {
            display: flex;
            gap: 40px;
            flex-direction: column;
        }
        .image {
            width: 100%;
            position: relative;
            margin-top: -94px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            @media (min-width: 768px) and (max-width: 1024px) {
                margin-top: -23px;
            }
            @media (max-width: 767px) {
                margin-top: 0px;
            }
            img {
                width: 100%;
            }
        }
        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            h2 {
                color: #fff;
                font-size: 3.063rem;
                margin-bottom: 0;
                line-height: 1.3;
                @media (min-width: 1561px) {
                    font-size: 3.663rem;
                }
                @media (max-width: 1256px) {
                    font-size: 2.5rem;
                    line-height: normal;
                }
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 34px;
                }
                @media (max-width: 767px) {
                    font-size: 46px;
                    line-height: 50px;
                }
            }
            p {
                font-size: 2.5rem;
                color: #fff;
                text-transform: capitalize;
                line-height: 1.2;
                @media (max-width: 1256px) {
                    font-size: 2.1rem;
                    line-height: normal;
                }
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 20px;
                }
                @media (max-width: 767px) {
                    font-size: 32px;
                    line-height: 42px;
                    margin-top: 18px;
                }
            }
            .contactus {
                display: flex;
                grid-gap: 15px;
                margin-top: 40px;
                @media (min-width: 768px) and (max-width: 1024px) {
                    margin-top: 20px;
                }
                @media (max-width: 767px) {
                    margin-top: 30px;
                }
                .contactbtn {
                    background: #fff;
                    text-decoration: none;
                    max-width: 214px;
                    width: 100%;
                    height: 47px;
                    display: flex;
                    align-items: center;
                    padding: 10px;
                    border-radius: 5px;
                    font: 700 19px "Poppins", sans-serif;
                    text-transform: uppercase;
                    color: #002F87;
                    gap: 20px;
                    transition: all 0.3s ease;
                    .icon {
                        width: 31px;
                        height: 31px;
                        background: #002F87;
                        border-radius: 5px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                }
                .contact-arrow {
                    width: 51px;
                    height: 47px;
                    background: transparent;
                    border-radius: 5px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border: 1px solid #fff;
                    transition: all 0.3s ease;
                }
            }
        }
    }
}
.hm-contactsection .aboutpagehm-contactsection {
    display: none;
}
.whyhowmuch-section {
    padding: 80px 0px;
    display: flex;
    gap: 50px;
    align-items: center;
    @media (min-width: 768px) and (max-width: 1024px) {
        gap: 20px;
        padding: 40px 0px 40px;
    }
    @media (max-width: 767px) {
        padding: 40px 0px 60px;
        display: flex;
        gap: 0px;
        flex-direction: column;
    }
    .about-image {
        width: 100%;
        flex-grow: 1;
        flex-basis: 0;
        min-width: 0;
        position: relative;
        flex: 0 1 45%;
        @media (max-width: 767px) {
            max-width: 700px;
        }
        &:after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            background: url("../images/howmuchbg4.png") no-repeat center right;
            background-size: contain;
            top: 75px;
            left: auto;
            right: 2rem;
            z-index: -1;
            @media (max-width: 767px) {
                top: 20px;
                background: url("../images/howmuchbg4.png") no-repeat center
                    right;
            }
            @media (max-width: 1024px) {
                top: 150px;
            }
        }
        h2 {
            font: 700 2.813rem "Poppins", sans-serif;
            color: #002F87;
            margin-bottom: 30px;
            @media (min-width: 1561px) {
                font: 700 3.813rem "Poppins", sans-serif;
            }
            @media (max-width: 1256px) {
                font-size: 2.5rem;
                line-height: normal;
            }
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 32px;
            }
            @media (max-width: 767px) {
                font-size: 2.3rem;
                line-height: 120%;
            }
        }
        img {
            width: 65%;
            border-radius: 100px;
            position: relative;
            left: 30px;
            @media (max-width: 767px) {
                width: 100%;
            }
            @media (max-width: 1024px) {
                left: 0px;
            }
        }
        p {
            font-size: 16px;
            line-height: 24px;
            color: #3c3c3c;
            margin-bottom: 30px;
        }
    }
    .content {
        padding-top: 75px;
        flex-grow: 1;
        flex-basis: 0;
        min-width: 0;
        @media (min-width: 1561px) {
            flex: 0 1 44%;
        }
        @media (max-width: 1024px) {
            padding-top: 20px;
        }
        h2 {
            font: 600 2.813rem "Poppins", sans-serif;
            color: #002F87;
            margin-bottom: 10px;
            max-width: 620px;
            @media (min-width: 1561px) {
                font: 700 3.78rem "Poppins", sans-serif;
            }
            @media (max-width: 1256px) {
                font-size: 2.5rem;
                line-height: normal;
            }
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 32px;
            }
            @media (max-width: 767px) {
                font-size: 2.3rem;
                line-height: 120%;
            }
        }
        p {
            font-size: 16px;
            line-height: 24px;
            color: #3c3c3c;
            margin-bottom: 30px;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 14px;
                line-height: 22px;
                margin-bottom: 15px;
            }
            @media (max-width: 767px) {
                font-size: 16px;
                line-height: 25px;
            }
        }
        a.readmore {
            max-width: 200px;
        }
    }
}
.reviews-section {
    padding: 60px 0px;
    background: url("../images/reviewstars.svg") #EBF7FF no-repeat top;
    @media (min-width: 768px) and (max-width: 1024px) {
        padding: 40px 0px 30px;
    }
    @media (max-width: 767px) {
        padding: 60px 0px 40px;
    }
    h2 {
        font: 700 2.813rem "Poppins", sans-serif;
        color: #013393;
        margin-bottom: 30px;
        text-align: center;
        text-transform: capitalize;
        @media (min-width: 1561px) {
            font: 700 3.813rem "Poppins", sans-serif;
        }
        @media (max-width: 1256px) {
            font-size: 2.5rem;
            line-height: normal;
        }
        @media (max-width: 1024px) {
            font-size: 34px;
            line-height: normal;
        }
        @media (max-width: 767px) {
            font-size: 43px;
            line-height: 45px;
        }
    }
    h3 {
        font: 500 2.813rem "Poppins", sans-serif;
        color: #000000;
        margin-bottom: 40px;
        text-align: center;
        @media (max-width: 1256px) {
            font-size: 2.5rem;
            line-height: normal;
        }
        @media (max-width: 1024px) {
            font-size: 34px;
            line-height: normal;
        }
        @media (max-width: 767px) {
            font-size: 35px;
            line-height: 40px;
        }
    }
    .userimages {
        display: flex;
        justify-content: space-between;
        margin: 100px 0px 40px;
        .img {
            width: 110px;
            img {
                width: 100%;
            }
            &:nth-child(odd) {
                position: relative;
                top: -50px;
            }
        }
    }
    .reviews-slider {
        .review-content {
            text-align: center;
            max-width: 700px;
            margin: auto;
            img {
                width: 50px;
                margin: 0px auto 20px;
            }
            p {
                font-size: 16px;
                color: #000;
                line-height: 25px;
                margin-bottom: 20px;
                @media (max-width: 1024px) {
                    font-size: 14px;
                    line-height: 24px;
                    padding: 0px 50px;
                }
                @media (max-width: 767px) {
                    font-size: 16px;
                    line-height: 25px;
                    padding: 0px 0px;
                }
            }
            h4,
            span {
                font-size: 16px;
                color: #000;
                font-weight: 700;
            }
            span {
                font-weight: 400;
                margin-bottom: 30px;
                display: block;
                @media (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }
        .reviewowl-carousel {
            .owl-nav {
                position: absolute;
                width: 100%;
                top: 53%;
                z-index: 1;
                @media (max-width: 767px) {
                    top: 10%;
                }
                .owl-prev,
                .owl-next {
                    left: 0px;
                    position: absolute;
                    width: 44px;
                    height: 44px;
                    background: url("../images/reviewarrow.svg") no-repeat;
                    span {
                        display: none;
                    }
                }
                .owl-next {
                    right: 0px;
                    left: auto;
                    transform: rotate(180deg);
                }
            }
        }
    }
}
.servicescount-section {
    background: #013393;
    padding: 40px 15px;
    @media (max-width: 1024px) {
        padding: 25px 15px;
    }
    .servicescount {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        @media (max-width: 767px) {
            padding: 35px 0px 35px;
            display: flex;
            gap: 50px;
            flex-direction: column;
        }
        .icon {
            @media (max-width: 767px) {
                text-align: center;
            }
            img {
                width: 100%;
                @media (max-width: 767px) {
                    width: auto;
                }
            }
        }
        .countbox {
            display: flex;
            align-items: center;
            gap: 25px;
            @media (max-width: 767px) {
                display: grid;
                grid-template-columns: 108px 1fr;
                justify-items: start;
            }
            h3 {
                font-size: 54px;
                font-weight: 600;
                color: #fff;
                line-height: 100%;
                @media (max-width: 1256px) {
                    font-size: 2.5rem;
                    line-height: normal;
                }
                @media (max-width: 1024px) {
                    font-size: 34px;
                    line-height: normal;
                }
                @media (max-width: 767px) {
                    font-size: 54px;
                    line-height: normal;
                }
            }
            p {
                font-size: 15px;
                font-weight: 600;
                color: #fff;
                margin-top: 7px;
                @media (max-width: 1024px) {
                    font-size: 14px;
                    line-height: 24px;
                }
            }
        }
    }
}
.contactus-page-form{
    margin-bottom: 40px;
    .full-container{
        background: #EBF7FF;
        .bottom-contactform{
            .form {
                .form-group {
                    input,
                    select,
                    textarea {
                        background: #CAEAFF;
                    }
                }
            }
        }
    }
}
.bottom-contactform {
    display: grid;
    grid-template-columns: 390px 1fr;
    padding: 80px 0;
    grid-gap: 50px;
    @media (max-width: 1024px) {
        gap: 20px;
        padding: 40px 0px 40px;
    }
    @media (min-width: 768px) and (max-width: 1024px) {
        grid-template-columns: 379px 1fr;
    }
    @media (max-width: 767px) {
        display: flex;
        gap: 0px;
        flex-direction: column;
    }
    .image {
        flex-grow: 1;
        flex-basis: 0;
        min-width: 0;
        @media (max-width: 767px) {
            display: none;
        }
        img {
            width: 100%;
        }
    }
    .form {
        width: 100%;
        flex-grow: 1;
        flex-basis: 0;
        min-width: 0;
        h2 {
            font: 700 2.813rem "Poppins", sans-serif;
            color: #002F87;
            text-align: left;
            line-height: 100%;
            @media (min-width: 1561px) {
                font: 700 3.813rem "Poppins", sans-serif;
            }
            @media (max-width: 1256px) {
                font-size: 2.5rem;
                line-height: normal;
            }
            @media (max-width: 1024px) {
                font-size: 32px;
                line-height: normal;
            }
            @media (max-width: 767px) {
                font-size: 45px;
                line-height: 60px;
                text-align: center;
            }
        }
        h3 {
            font: 600 2.325rem "Poppins", sans-serif;
            color: #000;
            text-align: left;
            line-height: auto;
            @media (min-width: 1561px) {
                font: 600 3.2rem "Poppins", sans-serif;
            }
            @media (max-width: 1256px) {
                font-size: 2.3rem;
                line-height: normal;
            }
            @media (max-width: 1024px) {
                font-size: 24px;
                line-height: normal;
            }
            @media (max-width: 767px) {
                font-size: 32px;
                line-height: normal;
                text-align: center;
            }
        }
        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 12px;
            margin-top: 15px;
            @media (max-width: 767px) {
                display: flex;
                grid-gap: 9px;
                flex-direction: column;
            }
            .form-group {
                width: 100%;
                input,
                select,
                textarea {
                    width: 100%;
                    height: 44px;
                    background: #e4e4e4;
                    border: 0;
                    padding: 15px;
                    color: #000;
                    font-weight: 400;
                    font-size: 13px;
                    @media (min-width: 1561px) {
                        height: 55px;
                        font-size: 15px;
                    }
                    &::placeholder {
                        color: #000;
                    }
                }
                select {
                    background: #e4e4e4 url("../images/selectarrow.svg")
                        no-repeat center right;
                    background-position-x: 95%;
                    appearance: none;
                }
                textarea {
                    height: 100px;
                    resize: none;
                    font-family: "Poppins", sans-serif;
                    color: #000;
                }
                &:nth-child(6) {
                    grid-column: span 2;
                }
                &:nth-child(7) {
                    grid-column: span 2;
                }
                button {
                    background: #002F87;
                    color: #fff;
                    width: 100%;
                    border-radius: 5px;
                    font: 700 19px "Poppins", sans-serif;
                    color: #fff;
                    text-transform: uppercase;
                    border: 0;
                    cursor: pointer;
                    padding: 10px 10px;
                    max-width: 50%;
                    margin: auto;
                    display: flex;
                    text-align: center;
                    justify-content: center;
                    align-items: center;
                    transition: all .3s;
                    &:hover{
                        background: #0041BC;
                        transition: all .3s;
                    }
                    @media (min-width: 1561px) {
                        height: 55px;
                    }
                    @media (max-width: 767px) {
                        border-radius: 0px;
                    }
                }
            }
            .form-group.csrf-field {
                grid-column: span 2;
            }
        }
    }
}
footer {
    .footer-logo {
        margin: 0 auto 30px;
        text-align: center;
        display: table;
    }
    .paragraph {
        max-width: 650px;
        max-width: 830px;
        margin: auto;
        p {
            text-align: center;
            font-size: 15px;
            line-height: 25px;
            @media (max-width: 1024px) {
                font-size: 14px;
                line-height: 22px;
            }
            a {
                color: #0b603e;
                text-decoration: none;
                font-weight: 600;
            }
        }
    }
    .footer-bottom {
        background: #efefef;
        padding: 17px 0px;
        margin-top: 20px;
        @media (max-width: 767px) {
            background: #fff;
            margin-top: 0px;
            padding-bottom: 0px;
        }
        .container {
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
            @media (max-width: 767px) {
                flex-direction: column-reverse;
                padding: 0px;
            }
            .footer-menu {
                display: flex;
                list-style-type: none;
                gap: 20px;
                @media (max-width: 767px) {
                    background: #efefef;
                    margin-top: 20px;
                    padding: 18px 0px;
                    width: 100%;
                    flex-wrap: wrap;
                    justify-content: center;
                    grid-row-gap: 5px;
                }
                li a {
                    color: #000;
                    text-decoration: none;
                    font-size: 15px;
                    font-weight: 400;
                    @media (max-width: 1024px) {
                        font-size: 14px;
                        line-height: 24px;
                    }
                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
            .social-icons {
                display: flex;
                list-style-type: none;
                gap: 12px;
                li a {
                    width: 29px;
                    height: 29px;
                    background: #d9d9d9;
                    display: flex;
                    border-radius: 5px;
                    padding: 5px;
                    align-items: center;
                    justify-content: center;
                    &:hover {
                        background: #0b603e;
                        img {
                            filter: brightness(1000%);
                        }
                    }
                }
            }
        }
    }
}
.header-bg.innerpageheader {
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center !important;
    min-height: 100%;
    &:after {
        background: linear-gradient(105deg, #254333 0%, #081c13 95.38%);
        opacity: 0.9;
        display: none;
    }
}
.innerpageheader.innerbanner{
    min-height: auto;
}
.innerpage-banner {
    margin: 20px 0 82px;
    position: relative;
    z-index: 1;
    @media (min-width: 768px) and (max-width: 1024px) {
        margin: 30px 0px 30px;
    }
    @media (max-width: 767px) {
        margin: 30px 0px 40px;
    }
    h1 {
        text-align: center;
        color: #002F87;
        font-size: 3.125rem;
        @media (min-width: 768px) and (max-width: 1024px) {
            font-size: 34px;
        }
        @media (max-width: 767px) {
            font-size: 33px;
            line-height: normal;
        }
    }
    ul {
        list-style-type: none;
        display: flex;
        margin: auto;
        justify-content: center;
        align-items: center;
        li {
            a {
                color: #000;
                font-size: 15px;
                text-decoration: none;
                padding: 0 20px;
                position: relative;
                &:after {
                    content: "|";
                    position: absolute;
                    right: 0;
                }
            }
            &:last-child {
                a {
                    color: #002F87;
                    &:after {
                        display: none;
                    }
                }
            }
        }
    }
    .banner-slider {
        margin: 30px auto 30px;
        max-width: 614px;
        display: flex;
        width: 100%;
        padding: 0px 0px;
        @media (min-width: 768px) and (max-width: 1024px) {
            margin: 20px auto 0px;
        }
        @media (max-width: 767px) {
            padding: 0px 30px;
        }
        .item{
            padding-top: 0px;
        }
        .slider-item {
            height: 380px;
            width: 290px;
            background: url(../images/innerservicebg.svg) no-repeat center;
            padding-top: 65px;
            gap: 0px;
            @media (max-width: 767px) {
                background: url("../images/mobileservicebg.svg") no-repeat center !important;
                height: 374px;
                width: 279px;
                gap: 10px;
                padding-bottom: 0px;
            }
            .icon {
                min-height: 175px;
            }
            .smallicon {
                width: 46px;
                height: 46px;
                padding: 9px;
                img{
                    width: 100%;
                }
            }
            a{
                max-width: 182px;
                height: 50px;
            }
        }
        .owl-nav {
            width: 100%;
            position: absolute;
            top: 36%;
            z-index: 1;
            @media (max-width: 767px) {
               top: 50%;
            }
            button {
                width: 63px;
                height: 59px;
                left: -70px;
                right: auto;
                position: absolute;
                @media (max-width: 767px) {
                    width: 35px;
                    height: 37px;
                    left: -35px;
                }
                @media (max-width: 390px) {
                    left: -40px;
                }
                &:hover {
                    background: #002F87;
                }
                span {
                    background: url(../images/sliderarrow.svg) no-repeat center;
                    width: 27px;
                    height: 20px;
                    margin-left: 14px;
                    background-size: 100%;
                    @media (max-width: 767px) {
                        margin-left: 3px;
                        background-size: 18px;
                    }
                }
            }
            .owl-next {
                right: -75px;
                left: auto;
                @media (max-width: 767px) {
                    right: -35px;
                }
                @media (max-width: 390px) {
                    right: -40px;
                }
                span {
                    margin-left: 18px;
                    @media (max-width: 767px) {
                        margin-left: 5px;
                    }
                }
            }
        }
    }
}
.aboutsection {
    padding: 80px 0 80px;
    display: flex;
    gap: 50px;
    @media (min-width: 768px) and (max-width: 1024px) {
        padding: 40px 0 50px;
        gap: 20px;
    }
    @media (max-width: 767px) {
        padding: 30px 0 30px;
        flex-direction: column;
        gap: 0px;
    }
    .image {
        flex: 1 1 0;
        position: relative;
        img {
            width: 100%;
        }
    }
    .content {
        flex: 1 1 0;
        h2 {
            font: 700 2.813rem "Poppins", sans-serif;
            color: #002F87;
            margin-bottom: 30px;
            line-height: 113% !important;
            text-transform: capitalize;
            @media (min-width: 1561px) {
                font: 700 3.813rem "Poppins", sans-serif;
            }
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 34px;
                margin-bottom: 20px;
            }
            @media (max-width: 767px) {
                font-size: 43px;
                line-height: 55px;
                margin-bottom: 10px;
            }
        }
        p {
            font-size: 16px;
            color: #3c3c3c;
            line-height: 25px;
            margin-bottom: 30px;
            font-weight: 400;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 14px;
                line-height: 22px;
            }
        }
    }
}
.aboutsection.abouthm4 {
    @media (max-width: 767px) {
        flex-direction: column-reverse;
        padding-top: 0px;
    }
    .content {
        h2 {
            @media (max-width: 767px) {
                font-size: 38px;
                line-height: 48px;
            }
        }
    }
}
.aboutsection.abouthm4 .image {
    &:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: url("../images/howmuchbg4.png") no-repeat top right;
        background-size: contain;
        top: -35%;
        left: auto;
        right: -17%;
        z-index: -1;
        @media (max-width: 767px) {
            display: none;
        }
    }
}
.about-readmore {
    display: flex;
    margin: 20px auto 85px;
    grid-gap: 13px;
    justify-content: center;
    align-items: center;
    max-width: 375px;
    @media (min-width: 768px) and (max-width: 1024px) {
        margin-top: 0px;
    }
    @media (max-width: 767px) {
        margin: 0px auto 64px;
    }
}
.review-contentsection.contactup-page {
    .reviewsection {
        .image {
            flex: 0 1 50%;
        }
    }
}
.review-contentsection {
    .reviewsection {
        padding: 80px 0 80px;
        display: flex;
        gap: 50px;
        @media (min-width: 768px) and (max-width: 1024px) {
            gap: 20px;
            padding: 40px 0 40px;
        }
        @media (max-width: 767px) {
            padding: 40px 0 40px;
            flex-direction: column;
            gap: 0px;
        }
        .image {
            flex: 1 1 0;
            position: relative;
            flex: 0 1 35%;
            @media (min-width: 1561px) {
                flex: 0 1 30%;
            }
            @media (min-width: 768px) and (max-width: 1024px) {
                flex: 0 1 40%;
            }
            img {
                width: 100%;
            }
            @media (max-width: 767px) {
                display: none;
            }
        }
        .content {
            flex: 1 1 0;
            h5 {
                font-size: 17px;
                font-weight: 400;
                color: #002F87;
                margin-bottom: 15px;
                letter-spacing: 5px;
                @media (min-width: 1561px) {
                    font-size: 24px;
                }
                @media (min-width: 768px) and (max-width: 1024px) {
                    margin-bottom: 10px;
                }
                @media (max-width: 767px) {
                    letter-spacing: 3.5px;
                    margin-bottom: 5px;
                }
            }
            h2 {
                font: 700 49px "Poppins", sans-serif;
                color: #002F87;
                margin-bottom: 30px;
                line-height: 113% !important;
                text-transform: capitalize;
                @media (min-width: 1561px) {
                    font: 700 3.813rem "Poppins", sans-serif;
                }
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 34px;
                    margin-bottom: 15px;
                }
                @media (max-width: 767px) {
                    font-size: 45px;
                    line-height: 55px;
                    margin-bottom: 10px;
                }
                span {
                    color: #0041BC;
                }
            }
            p {
                font-size: 16px;
                color: #3c3c3c;
                line-height: 25px;
                margin-bottom: 20px;
                font-weight: 400;
                @media (min-width: 768px) and (max-width: 1024px) {
                    font-size: 14px;
                    line-height: 22px;
                }
            }
            .contactus {
                display: flex;
                grid-gap: 15px;
                margin-top: 40px;
                @media (min-width: 768px) and (max-width: 1024px) {
                    margin-top: 20px;
                }
                @media (max-width: 767px) {
                    margin-top: 25px;
                }
                .contactbtn {
                    text-decoration: none;
                    max-width: 214px;
                    width: 100%;
                    height: 47px;
                    display: flex;
                    align-items: center;
                    padding: 10px;
                    font: 700 19px "Poppins", sans-serif;
                    text-transform: uppercase;
                    color: #fff;
                    gap: 20px;
                    transition: all 0.3s ease;
                    border-radius: 5px;
                    background: linear-gradient(90deg, #1C6B18 0%, #788E00 100%);
                    @media (max-width: 415px) {
                        font: 700 17px "Poppins", sans-serif;
                        gap: 8px;
                    }
                    &:hover {
                        transition: all 0.3s ease;
                        background: linear-gradient(90deg, #788E00 0%, #1C6B18 100%);
                    }
                    .icon {
                        width: 31px;
                        height: 31px;
                        background: #042b1b;
                        border-radius: 5px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                }
                .contact-arrow {
                    width: 51px;
                    height: 47px;
                    background: transparent;
                    border-radius: 5px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border: 2px solid #042b1b;
                    transition: all 0.3s ease;
                    img {
                        width: 15px;
                    }
                }
            }
        }
    }
}
.contactform-bg {
    background: #fffbed;
    margin-bottom: 50px;
    .bottom-contactform {
        padding: 80px 0px 40px;
        @media (max-width: 767px) {
            padding: 40px 0px 40px;
        }
    }
}
.servicesinnerpage-bg {
    margin-bottom: 50px;
}
.services-inner {
    max-width: 1078px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    min-height: 80%;
    width: 100%;
    padding-top: 24px;
    z-index: 1;
    position: relative;
    .heading {
        width: 100%;
        background: #0041BC;
        text-align: center;
        border-radius: 10px;
        padding: 6px 15px;
        position: relative;
        margin-bottom: 30px;
        @media (max-width: 767px) {
            margin-bottom: 25px;
        }
        &:after {
            position: absolute;
            left: 0px;
            right: 0px;
            bottom: -25px;
            margin: auto;
            content: "";
            width: 0;
            height: 0;
            border-left: 18px solid transparent;
            border-right: 18px solid transparent;
            border-top: 20px solid #0041BC;
            @media (max-width: 767px) {
                border-left: 14px solid transparent;
                border-right: 14px solid transparent;
                border-top: 16px solid #0041BC;
                bottom: -20px;
            }
        }
        h1 {
            color: #fff;
            font-size: 1.6rem;
            font-weight: 700;
            text-transform: capitalize;
            line-height: normal;
            @media (min-width: 768px) and (max-width: 1024px) {
                font-size: 30px;
                line-height: normal;
            }
            @media (max-width: 767px) {
                font-size: 24px;
                line-height: 30px;
            }
        }
    }
    .page-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        @media (max-width: 767px) {
            margin-bottom: 15px;
        }
        a {
            color: #002F87;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            display: flex;
            grid-gap: 12px;
            transition: all 0.3s ease;
            &:hover {
                color: #002F87;
                transition: all 0.3s ease;
            }
        }
    }
    .services-section {
        display: grid;
        grid-template-columns: 323px 1fr;
        grid-gap: 25px;
        margin-bottom: 40px;
        grid-template-columns: 1fr;
        width: 100%;
        @media (min-width: 768px) and (max-width: 1024px) {
            grid-gap: 15px;
        }
        @media (min-width: 768px) and (max-width: 991px) {
            grid-template-columns: auto;
        }
        @media (max-width: 767px) {
            grid-template-columns: auto;
            margin-bottom: 0;
        }
        .leftadd {
            width: 100%;
            background: #1e4a38;
            border: 1px solid #e9ff49;
            border-radius: 20px;
            display: grid;
            display: none;
            align-content: space-between;
            @media (max-width: 991px) {
                display: none;
            }
            img {
                width: 100%;
            }
            .adlogo {
                padding: 77px 37px;
            }
        }
        .services-list {
            display: grid;
            grid-gap: 20px;
            grid-template-columns: repeat(4, 1fr);
            grid-row-gap: 50px;
            @media (min-width: 768px) and (max-width: 991px) {
                grid-gap: 12px;
            }
            @media (max-width: 767px) {
                grid-template-columns: repeat(1, 1fr);
                grid-row-gap: 0px;
                grid-gap: 0px;
                padding-bottom: 15px;
            }
            .item {
                width: 100%;
                border-radius: 26px;
                background: #002770;
                text-align: center;
                padding: 10px;
                box-sizing: border-box;
                transition: all 0.3s ease;
                position: relative;
                max-height: 280px;
                min-height: 280px;
                @media (max-width: 767px) {
                    flex-direction: row;
                    display: flex;
                    width: 100%;
                    align-items: center;
                    max-height: 83px;
                    min-height: 83px;
                    margin-bottom: 15px;
                    justify-content: space-between;
                    padding: 8px 20px;
                    border-radius: 12px;
                    gap:10px;
                }
                &:hover {
                    background: #0041BC;
                    transition: all 0.3s ease;
                    h3 {
                        color: #fff;
                        transition: all 0.3s ease;
                        margin-bottom: 10px;
                        @media (max-width: 767px) {
                            margin-bottom: 0px;
                            padding: 0px;
                        }
                    }
                    .icon {
                        max-width: 100px;
                        transition: all 0.3s ease;
                        @media (max-width: 767px) {
                            transition: none;
                            max-width: 100% !important;
                        }
                    }
                    a {
                        background: linear-gradient(90deg, #788E00 0%, #1C6B18 100%);
                        color: #fff;
                        transition: all 0.3s ease;
                        @media (max-width: 767px) {
                            bottom: 0px;
                            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
                        }
                    }
                    p {
                        visibility: visible;
                        transition: all 0.3s ease;
                    }
                }
                h3 {
                    color: #fff;
                    text-transform: uppercase;
                    font-size: 24px;
                    font-weight: 600;
                    line-height: normal;
                    position: relative;
                    padding-bottom: 5px;
                    margin-bottom: 45px;
                    line-height: 30px;
                    transition: all 0.3s ease;
                    @media (min-width: 768px) and (max-width: 1024px) {
                        font-size: 18px;
                        line-height: 24px;
                    }
                    @media (max-width: 767px) {
                        transition: none;
                        padding-bottom: 0px;
                        margin-bottom: 0px;
                        order: 2;
                        text-align: left;
                        line-height: 1.2;
                        font-size: 18px;
                    }
                    &:after {
                        width: 223px;
                        height: 1px;
                        background: #fff;
                        content: "";
                        position: absolute;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        margin: auto;
                        @media (max-width: 767px) {
                            display: none;
                        }
                        @media (min-width: 768px) and (max-width: 991px) {
                            width: 100%;
                        }
                    }
                }
                .icon {
                    width: 100px;
                    margin: 0 auto;
                    display: flex;
                    align-items: flex-start;
                    justify-content: center;
                    height: 100px;
                    padding-top: 15px;
                    transition: all 0.3s ease;
                    text-align: center;
                    @media (max-width: 767px) {
                        padding-top: 0px;
                        /* height: 70%; */
                        order: 1;
                        width: 45px;
                        height: 45px;
                        justify-content: flex-start;
                        text-align: left;
                        margin: 0 0;
                    }
                    img {
                        height: 100%;
                    }
                }
                p {
                    font-size: 14px;
                    line-height: 22px;
                    text-align: center;
                    font-weight: 400;
                    color: #fff;
                    visibility: hidden;
                    max-width: 277px;
                    margin: auto;
                    height: 85px;
                    overflow: hidden;
                    padding: 15px 0px;
                    box-sizing: border-box;
                    @media (min-width: 768px) and (max-width: 1024px) {
                        font-size: 14px;
                        line-height: 22px;
                    }

                    @media (max-width: 767px) {
                        display: none;
                    }
                }
                a {
                    position: absolute;
                    width: 135px;
                    height: 42px;
                    margin: auto;
                    left: 0;
                    right: 0;
                    bottom: -18px;
                    text-decoration: none;
                    text-transform: uppercase;
                    font-size: 18px;
                    color: white;
                    border-radius: 100px;
                    background: linear-gradient(90deg, #1C6B18 0%, #788E00 100%);
                    padding: 6px;
                    font-weight: 600;
                    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
                    text-align: center;
                    @media (min-width: 768px) and (max-width: 1024px) {
                        font-size: 16px;
                        height: 38px;
                        width: 110px;
                    }
                    @media (max-width: 767px) {
                        position: relative;
                        font-size: 16px;
                        width: 100px;
                        min-width: 100px;
                        height: 35px;
                        padding: 5px;
                        bottom: 0;
                        order: 3;
                        margin-left: auto;
                        margin-right: -8px;
                    }
                }
            }
        }

        .leadquestion-two-items-page {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            width: 50%;
            margin: auto;
            @media screen and (max-width: 767px) {
                grid-template-columns: repeat(1, 1fr);
                width: 100%;
            }

            @media screen and (min-width: 768px) and (max-width: 1024px) {
                width: 70%;
            }
        }
        .leadquestion-three-items-page {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            width: 75%;
            margin: auto;
            @media screen and (max-width: 767px) {
                grid-template-columns: repeat(1, 1fr);
                width: 100%;
            }

            @media screen and (min-width: 768px) and (max-width: 1024px) {
                width: 85%;
            }
        }
    }
    .progess-bar {
        width: 100%;
        margin-bottom: 70px;
        @media (max-width: 767px) {
            margin-bottom: 20px;
        }
        p {
            color: #000;
            font-size: 16px;
            font-weight: 600;
            line-height: normal;
            text-transform: capitalize;
        }
        progress {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 12px;
            overflow: hidden;
            background: #001D55;
            border: 0px;
        }
        progress::-webkit-progress-bar {
            background: #001D55;
        }
        progress::-webkit-progress-value {
            background: #0041BC;
        }
        progress::-moz-progress-value {
            background: #0041BC;
        }
        progress::-moz-progress-bar {
            background: #0041BC;
        }
        #nativeProgress {
            position: relative;
        }
    }
}
.postcode-content {
    margin-bottom: 50px;
    h4 {
        text-align: center;
        font-size: 24px;
        color: #000;
        margin-top: 20px;
        margin-bottom: 15px;
        @media (max-width: 767px) {
            font-size: 20px;
        }
    }
    form.postcode-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 12px;
        margin: 0 auto auto;
        max-width: 655px;
        @media (max-width: 767px) {
            display: flex;
            grid-gap: 9px;
            flex-direction: column;
        }
        .form-group {
            width: 100%;
            input,
            select,
            textarea {
                width: 100%;
                height: 50px;
                background: #fff;
                border: 0;
                padding: 15px;
                color: #000;
                font-weight: 400;
                font-size: 13px;
                border-radius: 3px;
                border: 1px solid #C9CACC;
                @media (min-width: 1561px) {
                    height: 55px;
                    font-size: 15px;
                }
                &::placeholder {
                    color: #000;
                }
            }
            select {
                background: #fff url("../images/selectarrow.svg") no-repeat center right;
                background-position-x: 95%;
                appearance: none;
            }
            textarea {
                height: 75px;
                resize: none;
                font-family: "Poppins", sans-serif;
                color: #000;
            }
            label{
                display: flex;
                color: #000000;
                align-items: center;
                gap: 10px;
                font-size: 13px;
                justify-content: center;
                input.checkbox{
                    width: 20px;
                    height: 20px;
                    border: 1px solid #fff;
                    border-radius: 2px;
                    background: transparent;
                    &:after{
                        background-color: #9FFF9D;
                    }
                }
            }
            &:nth-child(1) {
                grid-column: span 2;
            }
            &:nth-child(6) {
                grid-column: span 2;
            }
            &:nth-child(7) {
                grid-column: span 2;
            }
            &:nth-child(8) {
                grid-column: span 2;
            }
            button {
                background: #E9FF49;
                color: #fff;
                width: 100%;
                max-width: 477px;
                border-radius: 3px;
                font: 600 23px "Poppins", sans-serif;
                text-transform: capitalize;
                border: 0;
                cursor: pointer;
                padding: 10px;
                transition: all 0.3s;
                margin: 10px auto 0px;
                border-radius: 5px;
                background: linear-gradient(90deg, #1C6B18 0%, #788E00 100%);
                box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
                display: table;
                &:hover {
                    background: linear-gradient(90deg, #788E00 0%, #1C6B18 100%);
                    transition: all 0.3s;
                }
                @media (min-width: 1561px) {
                    height: 55px;
                }
                @media (max-width: 767px) {
                    border-radius: 5px;
                }
            }
        }
        /*.form-group.csrf-field {
            grid-column: span 2;
        }*/
    }
    a.arrow {
        margin: auto;
        width: 29px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        img{
            width: 100%;
        }
    }
}
.mobileonly {
    display: none;
}
@media (max-width: 767px) {
    .mobileonly {
        display: block;
    }
}
.full-content {
    padding: 40px 0px;
    h2 {
        font: 700 2.813rem "Poppins", sans-serif;
        color: #002F87;
        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: #3c3c3c;
    }
    h3 {
        margin-bottom: 10px;
        color: #000;
    }
    p {
        font-size: 16px;
        color: #3c3c3c;
        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: #002F87;
        }
    }
    ul {
        padding-left: 20px;
        margin: 20px 0px;
        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 15px;
                color: #000;
            }
        }
        tbody {
            tr {
                td {
                    padding: 10px 15px;
                }
            }
        }
    }
}

slide-right,
.slide-left {
    width: 100%;
}
.slide-right {
    animation: 3s slide-right;
}
@keyframes slide-right {
    from {
        margin-left: -100%;
    }
    to {
        margin-left: 0%;
    }
}
.slide-left {
    animation: 0.9s slide-left;
}

@keyframes slide-left {
    from {
        margin-left: 100%;
    }
    to {
        margin-left: 0%;
    }
}
.leadquestion-two-items-page {
    animation: 0.9s slide-left-two-items;
}

.leadquestion-three-items-page {
    animation: 0.9s slide-left-three-items;
}

@keyframes slide-left-two-items {
    from {
        margin-left: 100%;
    }
    to {
        margin-left: 25%;
    }
}

@media screen and (max-width: 767px) {
    @keyframes slide-left-two-items {
        from {
            margin-left: 100%;
        }
        to {
            margin-left: 0%;
        }
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    @keyframes slide-left-two-items {
        from {
            margin-left: 100%;
        }
        to {
            margin-left: 15%;
        }
    }
}

@keyframes slide-left-three-items {
    from {
        margin-left: 100%;
    }
    to {
        margin-left: 12.5%;
    }
}

@media screen and (max-width: 767px) {
    @keyframes slide-left-three-items {
        from {
            margin-left: 100%;
        }
        to {
            margin-left: 0%;
        }
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    @keyframes slide-left-three-items {
        from {
            margin-left: 100%;
        }
        to {
            margin-left: 8%;
        }
    }
}

.fade-in {
    animation: fadeIn ease 0.9s;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.services-section .services-list {
    overflow: hidden;
    padding-bottom: 26px;
}
.table-structure{
    overflow-x: auto;
}