@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #BB0000;
    --primary-light: #ff5858;
    --white-color: #ffffff;
    --black-color: #000000;
    --light-gray: #F8F8F8;
    --bg-color: #fefaf9;
}

body {
    overflow-x: hidden;
    font-family: "Poppins", sans-serif !important;
}

a {
    text-decoration: none !important;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

a, button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** Header css **************************/
#aboutSection,
#serviceSection,
#valuesSection,
#contactSection {
    scroll-margin-top: 120px;
}

.main-header {
    width: 100%;
}

    .main-header .navbar-expand-lg {
        width: 100%;
        background: var(--white-color);
        padding: 25px 0;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

        .main-header .navbar-expand-lg .navbar-nav {
            gap: 30px;
        }

.navbar-light .navbar-nav .nav-link {
    color: var(--black-color);
    position: relative;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }

    .navbar-light .navbar-nav .nav-link::before {
        content: "";
        width: 8px;
        height: 8px;
        background: var(--primary-color);
        position: absolute;
        top: 16px;
        left: -5px;
        border-radius: 50%;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.4s ease;
    }

    .navbar-light .navbar-nav .nav-link:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

header.scroll {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s ease;
}

.headerlogo {
    width: 220px;
}

.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: var(--black-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

    .animated-button svg {
        position: absolute;
        width: 24px;
        fill: var(--black-color);
        z-index: 9;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .arr-1 {
        right: 16px;
    }

    .animated-button .arr-2 {
        left: -25%;
    }

    .animated-button .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        /* background-color: var(--primary-color); */
        background: var(--primary-color);
        border-radius: 50%;
        opacity: 0;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button:hover {
        box-shadow: transparent 0px 0px 0px 12px;
        color: var(--white-color);
        border-radius: 12px;
    }

        .animated-button:hover .arr-1 {
            right: -25%;
        }

        .animated-button:hover .arr-2 {
            left: 16px;
        }

        .animated-button:hover .text {
            transform: translateX(12px);
        }

        .animated-button:hover svg {
            fill: var(--white-color);
        }

    .animated-button:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px var(--primary-color);
    }

    .animated-button:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }

.animated-button-logout {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: var(--black-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

    .animated-button-logout svg {
        position: absolute;
        width: 24px;
        fill: var(--black-color);
        z-index: 9;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button-logout .arr-1 {
        right: 16px;
    }

    .animated-button-logout .arr-2 {
        left: -25%;
    }

    .animated-button-logout .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        /* background-color: var(--primary-color); */
        background: var(--primary-color);
        border-radius: 50%;
        opacity: 0;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button-logout .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button-logout:hover {
        box-shadow: transparent 0px 0px 0px 12px;
        color: var(--white-color);
        border-radius: 12px;
    }

        .animated-button-logout:hover .arr-1 {
            right: -25%;
        }

        .animated-button-logout:hover .arr-2 {
            left: 16px;
        }

        .animated-button-logout:hover .text {
            transform: translateX(12px);
        }

        .animated-button-logout:hover svg {
            fill: var(--white-color);
        }

    .animated-button-logout:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px var(--primary-color);
    }

    .animated-button-logout:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }
/************************** Header css end **************************/
/************************** Hero Section Css Start **************************/
.hero_section {
    width: 100%;
    padding: 15rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/hero-image.jpg);
    background-position: 340px center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

    .hero_section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 55%;
        height: 100%;
        z-index: 1;
        background: linear-gradient( to right, #FDF8F5 0%, #FDF8F5 45%, rgba(250, 246, 240, 0.8) 70%, rgba(250, 246, 240, 0) 93% );
        pointer-events: none;
    }

.hero_main_content {
    width: 100%;
    position: relative;
    z-index: 2;
}

    .hero_main_content h1 {
        font-size: 62px;
        font-weight: 700;
        color: var(--black-color);
        line-height: 1.08;
        letter-spacing: -.02em;
        text-transform: uppercase;
        max-width: 620px;
    }

        .hero_main_content h1 em {
            font-style: normal;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero_main_content h1 span {
            color: transparent;
            -webkit-text-stroke: 2px var(--primary-color);
        }

    .hero_main_content p {
        font-size: 16px;
        margin-top: 10px;
        max-width: 520px;
    }

.hero-btns {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.Hero_first_btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: var(--white-color);
    border-radius: 100px;
    font-weight: 600;
    width: fit-content;
    color: var(--black-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

    .Hero_first_btn svg {
        position: absolute;
        width: 24px;
        fill: var(--black-color);
        z-index: 9;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Hero_first_btn .arr-1 {
        right: 16px;
    }

    .Hero_first_btn .arr-2 {
        left: -25%;
    }

    .Hero_first_btn .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        /* background-color: var(--primary-color); */
        background: var(--primary-color);
        border-radius: 50%;
        opacity: 0;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Hero_first_btn .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Hero_first_btn:hover {
        box-shadow: transparent 0px 0px 0px 12px;
        color: var(--white-color);
        border-radius: 12px;
    }

        .Hero_first_btn:hover .arr-1 {
            right: -25%;
        }

        .Hero_first_btn:hover .arr-2 {
            left: 16px;
        }

        .Hero_first_btn:hover .text {
            transform: translateX(12px);
        }

        .Hero_first_btn:hover svg {
            fill: var(--white-color);
        }

    .Hero_first_btn:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px var(--primary-color);
    }

    .Hero_first_btn:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }

.Hero_second_btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: transparent;
    border-radius: 100px;
    font-weight: 600;
    width: fit-content;
    color: var(--black-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

    .Hero_second_btn svg {
        position: absolute;
        width: 24px;
        fill: var(--black-color);
        z-index: 9;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Hero_second_btn .arr-1 {
        right: 16px;
    }

    .Hero_second_btn .arr-2 {
        left: -25%;
    }

    .Hero_second_btn .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        /* background-color: var(--primary-color); */
        background: var(--primary-color);
        border-radius: 50%;
        opacity: 0;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Hero_second_btn .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Hero_second_btn:hover {
        box-shadow: transparent 0px 0px 0px 12px;
        color: var(--white-color);
        border-radius: 12px;
    }

        .Hero_second_btn:hover .arr-1 {
            right: -25%;
        }

        .Hero_second_btn:hover .arr-2 {
            left: 16px;
        }

        .Hero_second_btn:hover .text {
            transform: translateX(12px);
        }

        .Hero_second_btn:hover svg {
            fill: var(--white-color);
        }

    .Hero_second_btn:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px var(--primary-color);
    }

    .Hero_second_btn:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }

.features_section {
    width: 100%;
    padding: 40px 0 0;
    position: relative;
    top: -130px;
    z-index: 3;
}

    .features_section .main-features {
        width: 100%;
        background: var(--white-color);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 15px;
        padding: 30px 40px;
        border: 2px solid #bb0000;
    }

.main_card_div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px 10px 0;
    text-align: center;
}

.main-card-border {
    border-right: 1px solid #dddddd;
}

.font-icon i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.card-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.card-content p {
    font-size: 12px;
    color: #313131;
}
/************************** Hero Section Css Start **************************/
/************************** About Section Css Start **************************/
.about-section {
    width: 100%;
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    top: -60px;
}

.about_top_heading h2 {
    font-size: 82px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.08;
    letter-spacing: -.02em;
    text-align: center;
    text-transform: uppercase;
}

    .about_top_heading h2 em {
        font-style: normal;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .about_top_heading h2 span {
        color: transparent;
        -webkit-text-stroke: 2px var(--primary-color);
    }

.about-content-box {
    width: 100%;
    padding: 0 40px;
}

    .about-content-box p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .about-content-box ul li {
        font-size: 15px;
        margin-bottom: 5px;
    }

        .about-content-box ul li i {
            color: var(--primary-color);
            padding-right: 8px;
        }

.About_btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: var(--white-color);
    border-radius: 100px;
    font-weight: 600;
    width: fit-content;
    color: var(--black-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 20px;
}

    .About_btn svg {
        position: absolute;
        width: 24px;
        fill: var(--black-color);
        z-index: 9;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .About_btn .arr-1 {
        right: 16px;
    }

    .About_btn .arr-2 {
        left: -25%;
    }

    .About_btn .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        /* background-color: var(--primary-color); */
        background: var(--primary-color);
        border-radius: 50%;
        opacity: 0;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .About_btn .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .About_btn:hover {
        box-shadow: transparent 0px 0px 0px 12px;
        color: var(--white-color);
        border-radius: 12px;
    }

        .About_btn:hover .arr-1 {
            right: -25%;
        }

        .About_btn:hover .arr-2 {
            left: 16px;
        }

        .About_btn:hover .text {
            transform: translateX(12px);
        }

        .About_btn:hover svg {
            fill: var(--white-color);
        }

    .About_btn:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px var(--primary-color);
    }

    .About_btn:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }

.about_image_box {
    width: 100%;
    margin-top: 40px;
    padding: 10px;
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
}

    .about_image_box .about_image {
        border-radius: 20px;
    }
/************************** About Section Css End **************************/
/************************** Our Services Section Css Start **************************/
.services_section {
    width: 100%;
    padding: 20px 0 80px;
}

    .services_section .services_heading {
        width: 100%;
        text-align: center;
    }

        .services_section .services_heading .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10.5px;
            font-weight: 600;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: var(--white-color);
            margin-bottom: 16px;
            background: #bb0000cf;
            padding: 5px;
            border-radius: 20px;
        }

        .services_section .services_heading .eyebrow-line {
            width: 28px;
            height: 1.5px;
            background: var(--white-color);
            border-radius: 2px;
        }

        .services_section .services_heading h2 {
            font-size: 64px;
            font-weight: 700;
            color: var(--black-color);
            line-height: 1.08;
            letter-spacing: -.02em;
            text-align: center;
            text-transform: uppercase;
        }

            .services_section .services_heading h2 em {
                font-style: normal;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .services_section .services_heading h2 span {
                color: transparent;
                -webkit-text-stroke: 2px var(--primary-color);
            }

.service_card_main {
    width: 100%;
    border-radius: 20px;
    /* overflow: hidden; */
    margin-top: 50px;
    position: relative;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .service_card_main i {
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        border-radius: 50%;
        color: #bb0000;
        background: #ffffff;
        border: 2px solid #bb0000;
        position: absolute;
        top: 59%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.service_image_box .service_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.service_content_box {
    width: 100%;
    padding: 30px 20px;
    border-bottom: 2px solid #ddd;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

    .service_content_box h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .service_content_box p {
        font-size: 14px;
        color: var(--black-color);
    }

.Service_btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: var(--white-color);
    border-radius: 100px;
    font-weight: 600;
    width: fit-content;
    color: var(--black-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 20px;
    margin: 30px auto 0 auto;
}

    .Service_btn svg {
        position: absolute;
        width: 24px;
        fill: var(--black-color);
        z-index: 9;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Service_btn .arr-1 {
        right: 16px;
    }

    .Service_btn .arr-2 {
        left: -25%;
    }

    .Service_btn .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        /* background-color: var(--primary-color); */
        background: var(--primary-color);
        border-radius: 50%;
        opacity: 0;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Service_btn .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .Service_btn:hover {
        box-shadow: transparent 0px 0px 0px 12px;
        color: var(--white-color);
        border-radius: 12px;
    }

        .Service_btn:hover .arr-1 {
            right: -25%;
        }

        .Service_btn:hover .arr-2 {
            left: 16px;
        }

        .Service_btn:hover .text {
            transform: translateX(12px);
        }

        .Service_btn:hover svg {
            fill: var(--white-color);
        }

    .Service_btn:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px var(--primary-color);
    }

    .Service_btn:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }
/************************** Our Services Section Css End **************************/
/************************** Our Values Section Css Start **************************/
.values_section {
    width: 100%;
    padding: 80px 0;
    background: var(--bg-color);
}

.values_heading {
    width: 100%;
    text-align: center;
}

.values_section .values_heading h2 {
    font-size: 82px;
    font-weight: 700;
    color: var(--black-color);
    line-height: 1.08;
    letter-spacing: -.02em;
    text-align: center;
    text-transform: uppercase;
}

    .values_section .values_heading h2 em {
        font-style: normal;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.values_section .values_card_main {
    width: 100%;
    padding: 20px;
    background: var(--white-color);
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .values_section .values_card_main .values_icon i {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--white-color);
        border-radius: 50%;
        font-size: 20px;
    }

    .values_section .values_card_main .values_content h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--primary-color);
    }

    .values_section .values_card_main .values_content p {
        font-size: 13px;
        color: var(--black-color);
    }
/************************** Our Values Section Css End **************************/
/* contact section css start */
.contact-section {
    width: 100%;
    padding: 80px 0;
}

    .contact-section .contact-info {
        width: 100%;
    }

        .contact-section .contact-info h2 {
            font-size: 62px;
            font-weight: 700;
            color: var(--black-color);
            line-height: 1.08;
            letter-spacing: -.02em;
            text-align: start;
            text-transform: uppercase;
        }

            .contact-section .contact-info h2 em {
                font-style: normal;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

        .contact-section .contact-info p {
            font-size: 16px;
            color: var(--black-color);
            margin-bottom: 10px;
        }

        .contact-section .contact-info .contact-features-info {
            width: 100%;
        }

            .contact-section .contact-info .contact-features-info .info-item {
                width: fit-content;
                display: flex;
                gap: 10px;
                align-items: center;
            }

                .contact-section .contact-info .contact-features-info .info-item i {
                    width: 40px;
                    height: 40px;
                    background: var(--primary-color);
                    color: var(--white-color);
                    border-radius: 5px;
                    font-size: 17px;
                    border: 2px solid var(--primary-color);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 10px;
                    transition: all 0.3s ease-in-out;
                }

                .contact-section .contact-info .contact-features-info .info-item:hover i {
                    background: transparent;
                    color: var(--primary-color);
                }

                .contact-section .contact-info .contact-features-info .info-item a {
                    color: var(--black-color);
                    font-size: 16px;
                    font-weight: 600;
                    transition: all 0.3s ease-in-out;
                }

                    .contact-section .contact-info .contact-features-info .info-item a:hover {
                        text-decoration: underline !important;
                    }

    .contact-section .contactsocial-media-info {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .contact-section .contactsocial-media-info h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--black-color);
        }

        .contact-section .contactsocial-media-info .social-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

            .contact-section .contactsocial-media-info .social-icons a i {
                width: 35px;
                height: 35px;
                display: flex;
                justify-content: center;
                align-items: center;
                background: var(--primary-color);
                border-radius: 5px;
                border: 2px solid var(--primary-color);
                color: #000000;
                transition: all 0.3s ease-in-out;
            }

            .contact-section .contactsocial-media-info .social-icons a:hover i {
                background: transparent;
                color: var(--primary-color);
            }

    .contact-section .contact-form {
        width: 100%;
        padding: 40px;
        background: var(--bg-color);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 25px;
        border: 2px solid var(--primary-color);
    }

        .contact-section .contact-form h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--black-color);
            margin-bottom: 20px;
        }

        .contact-section .contact-form .contact-input-div {
            width: 100%;
            margin-bottom: 20px;
        }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                width: 100%;
                padding: 10px 10px;
                border-radius: 5px;
                border: 2px solid var(--black-color);
                font-size: 16px;
                background: transparent;
                color: var(--black-color);
            }

                .contact-section .contact-form .contact-input-div .contact-custom-input::placeholder {
                    font-weight: 500;
                    color: var(--black-color);
                }

                .contact-section .contact-form .contact-input-div .contact-custom-input:focus {
                    border: 2px solid var(--primary-color);
                    box-shadow: none;
                    outline: none;
                }

.contact_btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 36px;
    border: 4px solid transparent;
    font-size: 16px;
    background-color: var(--white-color);
    border-radius: 100px;
    font-weight: 600;
    width: fit-content;
    color: var(--black-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 20px;
}

    .contact_btn svg {
        position: absolute;
        width: 24px;
        fill: var(--black-color);
        z-index: 9;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .contact_btn .arr-1 {
        right: 16px;
    }

    .contact_btn .arr-2 {
        left: -25%;
    }

    .contact_btn .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        /* background-color: var(--primary-color); */
        background: var(--primary-color);
        border-radius: 50%;
        opacity: 0;
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .contact_btn .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .contact_btn:hover {
        box-shadow: transparent 0px 0px 0px 12px;
        color: #ffffff;
        border-radius: 12px;
        background: #bb0000;
    }

        .contact_btn:hover .arr-1 {
            right: -25%;
        }

        .contact_btn:hover .arr-2 {
            left: 16px;
        }

        .contact_btn:hover .text {
            transform: translateX(12px);
        }

        .contact_btn:hover svg {
            fill: var(--white-color);
        }

    .contact_btn:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px var(--primary-color);
    }

    .contact_btn:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }
/* contact section css start */
/* footer section css start */
.footer-section {
    width: 100%;
    padding: 40px 0 0;
    background: var(--bg-color);
    border-top: 1px solid var(--primary-color);
}

.footer-left-content {
    width: 100%;
    padding: 0 0px;
}

    .footer-left-content .Footer-logo {
        max-width: 250px;
        margin-bottom: 20px;
    }

    .footer-left-content p {
        font-size: 16px;
        color: var(--black-color);
        margin-bottom: 20px;
    }

.footer-social-media {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

    .footer-links h2 {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .footer-links ul {
        margin-left: 3px;
    }

        .footer-links ul li {
            list-style: disc;
            margin-bottom: 5px;
            margin-left: 15px;
        }

            .footer-links ul li a {
                font-size: 16px;
                font-weight: 500;
                color: var(--black-color);
                transition: all 0.3s ease;
            }

            .footer-links ul li::marker {
                color: var(--primary-color);
            }

            .footer-links ul li a:hover {
                color: var(--primary-color);
            }

.footer-services {
    width: 100%;
    margin-left: 0px;
}

    .footer-services h2 {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .footer-services ul {
        margin-left: 21px;
    }

        .footer-services ul li {
            list-style: disc;
            margin-bottom: 5px;
        }

            .footer-services ul li a {
                font-size: 16px;
                font-weight: 500;
                color: var(--black-color);
                transition: all 0.3s ease;
            }

                .footer-services ul li a:hover {
                    color: var(--primary-color);
                }

            .footer-services ul li::marker {
                color: var(--primary-color);
            }

.footer-contact {
    width: 100%;
}

    .footer-contact h2 {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .footer-contact p {
        font-size: 16px;
        color: var(--black-color);
        margin-bottom: 5px;
    }

        .footer-contact p a {
            color: var(--black-color);
            transition: all 0.3s ease;
        }

            .footer-contact p a:hover {
                color: var(--primary-color);
            }

.footer-bottom {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--primary-color);
    margin-top: 20px;
}

.footer-bottom-links {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

    .footer-bottom-links ul {
        display: flex;
        gap: 20px;
        align-items: center;
    }

        .footer-bottom-links ul li a {
            font-size: 16px;
            color: var(--black-color);
            transition: all 0.3s ease;
            font-weight: 500;
        }

            .footer-bottom-links ul li a:hover {
                color: var(--primary-color);
            }

.footext p {
    font-size: 16px;
    color: var(--black-color);
}

.footer-contact .footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .footer-contact .footer-social a {
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: var(--white-color);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
    }

        .footer-contact .footer-social a:hover {
            background: var(--black-color);
        }

.custom-col {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}
/* footer section css start */

/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .service_content_box {
        padding: 30px 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .headerlogo {
        width: 150px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 20px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0;
    }

    .animated-button {
        padding: 6px 20px;
        font-size: 14px;
    }

        .animated-button .arr-1 {
            right: 4px;
        }

        .animated-button svg {
            width: 18px;
        }

        .animated-button:hover .arr-2 {
            left: 12px;
        }

    .hero_section {
        padding: 10rem 0;
        background-position: 160px center;
    }

    .hero_main_content h1 {
        font-size: 42px;
    }

    .hero_main_content p {
        font-size: 14px;
    }

    .Hero_first_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .Hero_first_btn .arr-1 {
            right: 4px;
        }

        .Hero_first_btn svg {
            width: 18px;
        }

        .Hero_first_btn:hover .arr-2 {
            left: 12px;
        }

    .Hero_second_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .Hero_second_btn .arr-1 {
            right: 4px;
        }

        .Hero_second_btn svg {
            width: 18px;
        }

        .Hero_second_btn:hover .arr-2 {
            left: 12px;
        }

    .features_section .main-features {
        padding: 20px 0px;
    }

    .card-content h4 {
        font-size: 10px;
    }

    .card-content p {
        font-size: 8px;
    }

    .about-section {
        padding: 60px 0;
    }

    .services_section {
        width: 100%;
        padding: 20px 0 60px;
    }

    .custom-col {
        flex: 0 0 auto;
        max-width: 33.3333333333%;
    }

    .about_top_heading h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 13px;
        }

        .about-content-box ul li {
            font-size: 13px;
        }

    .About_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .About_btn .arr-1 {
            right: 4px;
        }

        .About_btn svg {
            width: 18px;
        }

        .About_btn:hover .arr-2 {
            left: 12px;
        }

    .about_image_box {
        margin-top: 30px;
    }

        .about_image_box .about_image {
            width: 100%;
            height: auto;
        }

    .services_section .services_heading h2 {
        font-size: 42px;
    }

    .service_card_main {
        margin-top: 30px;
    }

        .service_card_main i {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

    .service_content_box h4 {
        font-size: 16px;
    }

    .service_content_box p {
        font-size: 12px;
    }

    .Service_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

    .service_image_box .service_image {
        height: 180px;
    }

    .values_section {
        padding: 60px 0;
    }

        .values_section .values_heading h2 {
            font-size: 42px;
        }

        .values_section .values_card_main {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px;
            margin-top: 20px;
        }

            .values_section .values_card_main .values_icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .values_section .values_card_main .values_content h4 {
                font-size: 16px;
            }

            .values_section .values_card_main .values_content p {
                font-size: 12px;
            }

    .contact-section {
        padding: 60px 0;
    }

        .contact-section .contact-info h2 {
            font-size: 42px;
        }

        .contact-section .contact-info p {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item a {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item i {
            width: 35px;
            height: 35px;
            font-size: 15px;
        }

        .contact-section .contactsocial-media-info h4 {
            font-size: 20px;
        }

        .contact-section .contactsocial-media-info .social-icons a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

        .contact-section .contact-form {
            padding: 30px;
        }

            .contact-section .contact-form h2 {
                font-size: 24px;
            }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 8px 8px;
                font-size: 14px;
            }

    .contact_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .contact_btn .arr-1 {
            right: 4px;
        }

        .contact_btn svg {
            width: 18px;
        }

        .contact_btn:hover .arr-2 {
            left: 12px;
        }

    .footer-section {
        padding: 30px 0 0;
    }

    .footer-left-content .Footer-logo {
        max-width: 200px;
    }

    .footer-left-content p {
        font-size: 14px;
    }

    .footer-social-media a i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-links h2 {
        font-size: 18px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .footer-services h2 {
        font-size: 18px;
    }

    .footer-services ul li a {
        font-size: 14px;
    }

    .footer-contact h2 {
        font-size: 18px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-bottom-links ul li a {
        font-size: 14px;
    }

    .footext p {
        font-size: 14px;
    }

    .footer-contact .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-contact .footer-social {
        display: grid;
        align-items: center;
        gap: 5px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .headerlogo {
        width: 150px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0;
    }

    .navbar-collapse {
        padding: 20px;
    }

    .animated-button {
        padding: 6px 20px;
        font-size: 14px;
        width: fit-content;
        margin-top: 10px;
    }

        .animated-button .arr-1 {
            right: 4px;
        }

        .animated-button svg {
            width: 18px;
        }

        .animated-button:hover .arr-2 {
            left: 12px;
        }

    .hero_section {
        padding: 10rem 0;
        background-position: 160px center;
    }

    .hero_main_content h1 {
        font-size: 42px;
    }

    .hero_main_content p {
        font-size: 14px;
    }

    .Hero_first_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .Hero_first_btn .arr-1 {
            right: 4px;
        }

        .Hero_first_btn svg {
            width: 18px;
        }

        .Hero_first_btn:hover .arr-2 {
            left: 12px;
        }

    .Hero_second_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .Hero_second_btn .arr-1 {
            right: 4px;
        }

        .Hero_second_btn svg {
            width: 18px;
        }

        .Hero_second_btn:hover .arr-2 {
            left: 12px;
        }

    .features_section .main-features {
        padding: 20px 20px;
    }

    .card-content h4 {
        font-size: 14px;
    }

    .card-content p {
        font-size: 12px;
        margin-top: 5px;
    }

    .about-section {
        padding: 60px 0;
    }

    .services_section {
        width: 100%;
        padding: 20px 0 60px;
    }

    .custom-col {
        flex: 0 0 auto;
        max-width: 50%;
    }

    .about_top_heading h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 13px;
        }

        .about-content-box ul li {
            font-size: 13px;
        }

    .About_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .About_btn .arr-1 {
            right: 4px;
        }

        .About_btn svg {
            width: 18px;
        }

        .About_btn:hover .arr-2 {
            left: 12px;
        }

    .about_image_box {
        margin-top: 30px;
    }

        .about_image_box .about_image {
            width: 100%;
            height: auto;
        }

    .services_section .services_heading h2 {
        font-size: 42px;
    }

    .service_card_main {
        margin-top: 30px;
    }

        .service_card_main i {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

    .service_content_box h4 {
        font-size: 16px;
    }

    .service_content_box p {
        font-size: 12px;
    }

    .Service_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

    .service_image_box .service_image {
        height: 180px;
    }

    .values_section {
        padding: 60px 0;
    }

        .values_section .values_heading h2 {
            font-size: 42px;
        }

        .values_section .values_card_main {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px;
            margin-top: 20px;
        }

            .values_section .values_card_main .values_icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .values_section .values_card_main .values_content h4 {
                font-size: 16px;
            }

            .values_section .values_card_main .values_content p {
                font-size: 12px;
            }

    .contact-section {
        padding: 60px 0;
    }

        .contact-section .contact-info h2 {
            font-size: 42px;
        }

        .contact-section .contact-info p {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item a {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item i {
            width: 35px;
            height: 35px;
            font-size: 15px;
        }

        .contact-section .contactsocial-media-info h4 {
            font-size: 20px;
        }

        .contact-section .contactsocial-media-info .social-icons a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

        .contact-section .contact-form {
            padding: 30px;
            margin-top: 20px;
        }

            .contact-section .contact-form h2 {
                font-size: 24px;
            }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 8px 8px;
                font-size: 14px;
            }

    .contact_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .contact_btn .arr-1 {
            right: 4px;
        }

        .contact_btn svg {
            width: 18px;
        }

        .contact_btn:hover .arr-2 {
            left: 12px;
        }

    .footer-section {
        padding: 30px 0 0;
    }

    .footer-left-content .Footer-logo {
        max-width: 200px;
    }

    .footer-left-content p {
        font-size: 14px;
    }

    .footer-social-media a i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-links h2 {
        font-size: 18px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .footer-services h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer-services ul li a {
        font-size: 14px;
    }

    .footer-contact h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-bottom-links ul li a {
        font-size: 14px;
    }

    .footext p {
        font-size: 14px;
    }

    .footer-contact .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-contact .footer-social {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .footer-links {
        align-items: flex-start;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .headerlogo {
        width: 150px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0;
    }

    .navbar-collapse {
        padding: 20px;
    }

    .animated-button {
        padding: 6px 20px;
        font-size: 14px;
        width: fit-content;
        margin-top: 10px;
    }

        .animated-button .arr-1 {
            right: 4px;
        }

        .animated-button svg {
            width: 18px;
        }

        .animated-button:hover .arr-2 {
            left: 12px;
        }

    .hero_section {
        padding: 10rem 0;
        background-position: 160px center;
    }

    .hero_main_content h1 {
        font-size: 42px;
    }

    .hero_main_content p {
        font-size: 14px;
    }

    .Hero_first_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .Hero_first_btn .arr-1 {
            right: 4px;
        }

        .Hero_first_btn svg {
            width: 18px;
        }

        .Hero_first_btn:hover .arr-2 {
            left: 12px;
        }

    .Hero_second_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .Hero_second_btn .arr-1 {
            right: 4px;
        }

        .Hero_second_btn svg {
            width: 18px;
        }

        .Hero_second_btn:hover .arr-2 {
            left: 12px;
        }

    .features_section .main-features {
        padding: 20px 20px;
    }

    .card-content h4 {
        font-size: 14px;
    }

    .card-content p {
        font-size: 12px;
        margin-top: 5px;
    }

    .about-section {
        padding: 60px 0;
    }

    .services_section {
        width: 100%;
        padding: 20px 0 60px;
    }

    .custom-col {
        flex: 0 0 auto;
        max-width: 50%;
    }

    .about_top_heading h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 13px;
        }

        .about-content-box ul li {
            font-size: 13px;
        }

    .About_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .About_btn .arr-1 {
            right: 4px;
        }

        .About_btn svg {
            width: 18px;
        }

        .About_btn:hover .arr-2 {
            left: 12px;
        }

    .about_image_box {
        margin-top: 30px;
    }

        .about_image_box .about_image {
            width: 100%;
            height: auto;
        }

    .services_section .services_heading h2 {
        font-size: 42px;
    }

    .service_card_main {
        margin-top: 30px;
    }

        .service_card_main i {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

    .service_content_box h4 {
        font-size: 16px;
    }

    .service_content_box p {
        font-size: 12px;
    }

    .Service_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

    .service_image_box .service_image {
        height: 180px;
    }

    .values_section {
        padding: 60px 0;
    }

        .values_section .values_heading h2 {
            font-size: 42px;
        }

        .values_section .values_card_main {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px;
            margin-top: 20px;
        }

            .values_section .values_card_main .values_icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .values_section .values_card_main .values_content h4 {
                font-size: 16px;
            }

            .values_section .values_card_main .values_content p {
                font-size: 12px;
            }

    .contact-section {
        padding: 60px 0;
    }

        .contact-section .contact-info h2 {
            font-size: 42px;
        }

        .contact-section .contact-info p {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item a {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item i {
            width: 35px;
            height: 35px;
            font-size: 15px;
        }

        .contact-section .contactsocial-media-info h4 {
            font-size: 20px;
        }

        .contact-section .contactsocial-media-info .social-icons a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

        .contact-section .contact-form {
            padding: 30px;
            margin-top: 20px;
        }

            .contact-section .contact-form h2 {
                font-size: 24px;
            }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 8px 8px;
                font-size: 14px;
            }

    .contact_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .contact_btn .arr-1 {
            right: 4px;
        }

        .contact_btn svg {
            width: 18px;
        }

        .contact_btn:hover .arr-2 {
            left: 12px;
        }

    .footer-section {
        padding: 30px 0 0;
    }

    .footer-left-content .Footer-logo {
        max-width: 200px;
    }

    .footer-left-content p {
        font-size: 14px;
    }

    .footer-social-media a i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-links h2 {
        font-size: 18px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .footer-services h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer-services ul li a {
        font-size: 14px;
    }

    .footer-contact h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-bottom-links ul li a {
        font-size: 14px;
    }

    .footext p {
        font-size: 14px;
    }

    .footer-contact .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-contact .footer-social {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .footer-links {
        align-items: flex-start;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .headerlogo {
        width: 150px;
    }

    .main-header .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0;
    }

    .navbar-collapse {
        padding: 20px;
    }

    .animated-button {
        padding: 6px 20px;
        font-size: 14px;
        width: fit-content;
        margin-top: 10px;
    }

        .animated-button .arr-1 {
            right: 4px;
        }

        .animated-button svg {
            width: 18px;
        }

        .animated-button:hover .arr-2 {
            left: 12px;
        }
    .animated-button-logout {
        padding: 6px 20px;
        font-size: 14px;
        width: fit-content;
        margin-top: 10px;
    }

        .animated-button-logout .arr-1 {
            right: 4px;
        }

        .animated-button-logout svg {
            width: 18px;
        }

        .animated-button-logout:hover .arr-2 {
            left: 12px;
        }

    .hero_section {
        padding: 5rem 0;
        background-position: center;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url(../images/hero-image.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        overflow: hidden;
    }

        .hero_section::before {
            display: none;
        }

    .hero_main_content h1 {
        font-size: 28px;
        color: var(--white-color);
        max-width: 100%;
        text-align: center;
    }

    .hero_main_content p {
        font-size: 14px;
        text-align: center;
        color: var(--white-color);
    }

    .Hero_first_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .Hero_first_btn .arr-1 {
            right: 4px;
        }

        .Hero_first_btn svg {
            width: 18px;
        }

        .Hero_first_btn:hover .arr-2 {
            left: 12px;
        }

    .Hero_second_btn {
        padding: 6px 20px;
        font-size: 14px;
        background: #fff;
    }

        .Hero_second_btn .arr-1 {
            right: 4px;
        }

        .Hero_second_btn svg {
            width: 18px;
        }

        .Hero_second_btn:hover .arr-2 {
            left: 12px;
        }

    .features_section .main-features {
        padding: 20px 20px;
    }

    .card-content h4 {
        font-size: 14px;
    }

    .card-content p {
        font-size: 12px;
        margin-top: 5px;
    }

    .about-section {
        padding: 60px 0;
        top: 0;
    }

    .services_section {
        width: 100%;
        padding: 20px 0 60px;
    }

    .custom-col {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .about_top_heading h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .about-content-box {
        padding: 0 10px;
    }

        .about-content-box p {
            font-size: 13px;
        }

        .about-content-box ul li {
            font-size: 13px;
        }

    .About_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .About_btn .arr-1 {
            right: 4px;
        }

        .About_btn svg {
            width: 18px;
        }

        .About_btn:hover .arr-2 {
            left: 12px;
        }

    .about_image_box {
        margin-top: 30px;
    }

        .about_image_box .about_image {
            width: 100%;
            height: auto;
        }

    .services_section .services_heading h2 {
        font-size: 42px;
    }

    .service_card_main {
        margin-top: 30px;
    }

        .service_card_main i {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

    .service_content_box h4 {
        font-size: 16px;
    }

    .service_content_box p {
        font-size: 12px;
    }

    .Service_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

    .service_image_box .service_image {
        height: 180px;
    }

    .values_section {
        padding: 60px 0;
    }

        .values_section .values_heading h2 {
            font-size: 42px;
        }

        .values_section .values_card_main {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px;
            margin-top: 20px;
        }

            .values_section .values_card_main .values_icon i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .values_section .values_card_main .values_content h4 {
                font-size: 16px;
            }

            .values_section .values_card_main .values_content p {
                font-size: 12px;
            }

    .contact-section {
        padding: 60px 0;
    }

        .contact-section .contact-info h2 {
            font-size: 42px;
        }

        .contact-section .contact-info p {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item a {
            font-size: 14px;
        }

        .contact-section .contact-info .contact-features-info .info-item i {
            width: 35px;
            height: 35px;
            font-size: 15px;
        }

        .contact-section .contactsocial-media-info h4 {
            font-size: 20px;
        }

        .contact-section .contactsocial-media-info .social-icons a i {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

        .contact-section .contact-form {
            padding: 30px;
            margin-top: 20px;
        }

            .contact-section .contact-form h2 {
                font-size: 24px;
            }

            .contact-section .contact-form .contact-input-div .contact-custom-input {
                padding: 8px 8px;
                font-size: 14px;
            }

    .contact_btn {
        padding: 6px 20px;
        font-size: 14px;
    }

        .contact_btn .arr-1 {
            right: 4px;
        }

        .contact_btn svg {
            width: 18px;
        }

        .contact_btn:hover .arr-2 {
            left: 12px;
        }

    .footer-section {
        padding: 30px 0 0;
    }

    .footer-left-content .Footer-logo {
        max-width: 200px;
    }

    .footer-left-content p {
        font-size: 14px;
    }

    .footer-social-media a i {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-links h2 {
        font-size: 18px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .footer-services h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer-services ul li a {
        font-size: 14px;
    }

    .footer-contact h2 {
        font-size: 18px;
        margin-top: 10px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-bottom-links ul li a {
        font-size: 14px;
    }

    .footext p {
        font-size: 14px;
        text-align: center;
    }

    .footer-contact .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .footer-contact .footer-social {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .footer-links {
        align-items: flex-start;
    }

    .hero-btns {
        justify-content: center;
        gap: 10px;
    }

    .features_section {
        top: 0;
    }

    .footer-bottom-links {
        gap: 10px;
        justify-content: center;
    }

    .main-card-border {
        border-right: none;
        padding: 10px 0px 10px 0;
    }
}

@media (min-width:1200px) and (max-width:1440px) {

    .custom-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
