/* @font-face {
    font-family: 'Spartan Bold';
    src: url('../fonts/Spartan-Bold.woff2') format('woff2'),
        url('../fonts/Spartan-Bold.woff') format('woff');
    font-style: normal;
} */
@font-face {
    font-family: 'Spartan SemiBold';
    src: url('../fonts/Spartan-SemiBold.woff2') format('woff2'),
        url('../fonts/Spartan-SemiBold.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'Spartan';
    src: url('../fonts/Spartan-Regular.woff2') format('woff2'),
        url('../fonts/Spartan-Regular.woff') format('woff');
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
    --primary-color: #D5B13B;
    --text-color: #171615;
    --light-color: #ffffff;
}


.btn:focus,
.btn:hover {
    box-shadow: none;
}

.vc_section {
    padding: 0px !important;
    margin: 0px !important;
    /* overflow-x: hidden; */
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text-color);
}

.primary_btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    font-family: 'Spartan';
    text-transform: uppercase;
    border-radius: 39px;
    padding: 25px 40px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary_btn:hover {
    transition: 0.35s ease-in-out;
    background-color: #b59424;
    color: var(--light-color);
}

/* .primary_btn:before {
    content: '';
    background-color: var(--light-color);
    position: absolute;
    width: 100%;
    height: 0%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: -1;
    transition-property: height;
    transition-duration: 0.35s;
    transition-timing-function: ease-in-out;
}

.primary_btn:hover::before {
    height: 100%;
    top: 0px;
} */


.font_30 {
    font-size: 30px;
    line-height: 40px;
}

.container {
    margin: 0px auto !important;
}

/* Header */
header.main-header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    z-index: 3;
}

.navbar {
    /* width: 1181px; */
    width: 66%;
    /* height: 147px; */
     background-image: url('https://www.agconco.com/wp-content/uploads/2025/06/nav_bg.png');
    margin: 0px auto;
    justify-content: center;
    padding: 30px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-header .navbar-collapse {
    justify-content: center;
}


.main-header .nav {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.main-header .nav .menu_logo {
    width: 200px;
}

.main-header .nav-link {
    font-size: 22px;
    line-height: 26px;
    color: var(--text-color);
    padding: 5px 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--light-color);
}

/* Home banner */
.home_banner .figure {
    width: 100%;
    margin-bottom: 0px;
    position: relative;
}

.home_banner .figure::before {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.1);
}


.home_banner .banner_img {
    width: 100%;
    object-fit: cover;
}

.home_banner .wpb_single_image .vc_figure,
.home_banner .wpb_single_image .vc_single_image-wrapper,
.home_banner .wpb_single_image img {
    width: 100%;
}

.home_banner .figure-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.home_banner .banner_text {
    font-size: 25px;
    line-height: 32px;
    color: var(--light-color);
    filter: drop-shadow(0px 2px 6px #00000029);
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 7px;
    margin-bottom: 15px;
}

.home_banner .banner_logo {
    width: 318px;
}

.section_heading,
.contact_form_wrapper .gform_title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    font-family: 'Spartan SemiBold';
    text-transform: uppercase;
}


.main_footer {
     background-image: url('https://www.agconco.com/wp-content/uploads/2025/06/footer_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0px;
    background-position: 20% 50%;
}

.main_footer .menu_wrapper {
    margin-bottom: 0px;
}

.main_footer .footer_inner {
    align-items: center;
}

.main_footer .footer_title {
    font-size: 30px;
    line-height: 35px;
    font-family: 'Spartan';
    font-weight: 600;
    margin: 5px 0px;
    color: #393838;
}

.main_footer .footer_widget {
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
}

.main_footer .footer_icon {
    width: 35px;
    height: auto;
}

.main_footer .address_wrapper {
    width: calc(100% - 40px);
}

.main_footer .footer_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_footer .footer_add,
.main_footer .menu_link {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 0px;

}


/* Quote section */
.quote_wrapper {
    position: relative;
}

.quote_wrapper .quote_inner {
    width: 1200px;
    margin: 0px auto 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -130px;
    z-index: 3;
    float: none;
    border-radius: 40px;
    overflow: hidden;
}




.quote_wrapper .quote_inner>.vc_column-inner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px !important;
}

.quote_wrapper .quote_text_wrapper {
    width: 100%;
    margin: auto;
    padding: 30px 4.5vw;
    /* margin: 0px 20px; */
}

.quote_wrapper .quote_text_wrapper .wpb_wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    align-items: center;
    text-align: center;
}

.quote_wrapper .quote_text_wrapper img {
    width: 78px;
    height: 78px;
    object-fit: cover;
}

.quote_wrapper .quote_text_wrapper p,
.quote_wrapper .quote_text_wrapper h3 {
    font-size: 25px;
    line-height: 40px;
    font-weight: 500;
    font-style: italic;
}

.quote_wrapper .quote_text_wrapper h3 {
    font-weight: 600;
}



/* services section */
.services_wrapper {
    position: relative;
    overflow: hidden;
}

.services_wrapper .services_header {
    padding-right: 50px;
}

.services_wrapper .service_bg_img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
}

.services_inner .first_row {
    padding-top: 350px;
}

.services_inner .services_header h2 {
    font-family: 'Spartan SemiBold';
}

.services_inner .services_header p {
    font-size: 20px;
    line-height: 40px;
}

.services_inner .services_card_outer {
    row-gap: 40px;
}


.services_inner .services_card {
    background-color: var(--light-color);
    padding: 32px 25px;
    border-radius: 30px;
    box-shadow: 0px 3px 6px #00000029;
    min-height: 390px;
    height: 100%;
}

.services_card_outer .wpb_text_column,
.services_card_outer .wpb_wrapper {
    height: 100%;
}

.services_inner .services_card .services_title {
    font-size: 25px;
    line-height: 40px;
    color: var(--primary-color);
    font-family: 'Spartan';
    font-weight: 600;
    word-break: break-word;
}

.services_inner .services_card .services_desc {
    font-size: 20px;
    line-height: 40px;
}

.services_inner .vc_column_container>.vc_column-inner {
    padding: 0px 20px !important;
}



/* guarantee section */
.guarantee_wrapper {
    overflow: hidden;
}

.guarantee_innner {
    position: relative;
    margin: 130px 0px;
}

.guarantee_innner .vc_column_container>.vc_column-inner {
    padding: 0px !important;
}

.guarantee_wrapper .quarantee_banner {
    height: 390px;
}

.guarantee_wrapper .quarantee_banner * {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.guarantee_innner .guaratee_text_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-color);
    margin: 0px;
    width: 750px
}

.guarantee_innner .guaratee_text_wrapper h2 {
    font-family: 'Spartan SemiBold';
}

.guarantee_innner .guaratee_text_wrapper p {
    font-size: 25px;
    line-height: 35px;
    font-style: italic;
}


.our_work_slider div#n2-ss-2 .nextend-thumbnail-horizontal .n2-align-content-start {
    display: flex;
}

.our_work_slider div#n2-ss-2 .nextend-thumbnail-horizontal .n2-align-content-start>div {
    flex: 1;
}

.our_work_slider div#n2-ss-2 .n2-thumbnail-dot img {
    width: 100%;
    height: 165px;
}

/* contact section */
.contact_wrapper {
    background-image: url(https://www.agconco.com/wp-content/uploads/2025/06/contact_bg.png) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-bottom: 130px !important;
    margin-top: 130px !important;
}

.gform-footer input {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    font-size: 22px !important;
    line-height: 25px !important;
    font-weight: 600 !important;
    font-family: 'Spartan' !important;
    text-transform: uppercase !important;
    border-radius: 39px !important;
    padding: 25px 85px 20px !important;
    display: inline-block;
    position: relative;
    overflow: hidden !important;
    z-index: 3;
}

.gform-footer input:hover {
    transition: 0.35s ease-in-out;
    background-color: #b59424;
    color: var(--light-color);
}


.gform-footer input:hover {
    transition: 0.35s ease-in-out !important;
    background-color: #b59424 !important;
    color: var(--light-color) !important;
}

.contact_form_wrapper .gform_title {
    text-align: center;
    margin-bottom: 30px;
}


.contact_form div#gform_fields_1 {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
}

.contact_form .contact_field .gfield_label {
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
}

.contact_form .contact_field .gfield_description {
    font-size: 20px;
    line-height: 40px;
    text-transform: uppercase;
}

.contact_form .contact_field input,
.contact_form .contact_field select {
    width: 100%;
    border: 1px solid #C5C5C5 !important;
    border-radius: 13px !important;
    height: 75px !important;
    font-size: 20px !important;
    line-height: 26px !important;
}

.contact_form .contact_field select {
    padding: 13px 20px;
    cursor: pointer;
}

.contact_form .contact_field textarea {
    width: 100%;
    border: 1px solid #C5C5C5 !important;
    border-radius: 13px !important;
}

.contact_form .contact_field {
    width: 100%;
}

.contact_form .contact_field.half_field {
    width: 48%;
}

.contact_form .contact_field input:focus,
.contact_form .contact_field textarea:focus,
.contact_form .contact_field select:focus {
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid var(--primary-color);
}

.contact_form .contact_field textarea {
    min-block-size: 320px !important;
}



.services_inner {
    display: block;
}

.services_inner.mobile_services {
    display: none;
}

.page-id-23 .content-area {
    margin-top: 0px;
}

.main_footer .menu_link:is(:hover, :active, .active) {
    /* color: var(--light-color); */
    text-decoration: underline;
}
.main_footer .col-12:nth-child(2) .footer_widget .footer_icon{
    display: none;
}

.contact_form .contact_field select {
    padding: 23px 20px;
    cursor: pointer;
}



@media only screen and (min-width:1600px) {
    .container {
        max-width: 1620px;
        padding: 0px 10px;
    }
}

@media only screen and (max-width:1699px) {
    .services_inner .services_card .services_title {
        font-size: 22px;
        line-height: 35px;
    }

    .services_inner .services_card .services_desc,
    .services_inner .services_header p {
        font-size: 18px;
        line-height: 32px;
    }

    .services_inner .services_card {
        min-height: 360px;
    }
}

@media only screen and (max-width:1599px) {


    .main-header .nav {
        column-gap: 15px;
    }


    .navbar {
        padding: 20px 0px;
    }
}

@media only screen and (max-width:1399px) {


    .primary_btn {
        font-size: 18px;
        line-height: 25px;
        padding: 15px 30px;
    }

    .main-header .nav {
        column-gap: 20px;
    }

    .main-header .nav-link {
        font-size: 20px;
        line-height: 26px;
        padding: 5px 15px;
    }

    .main-header .nav .menu_logo {
        width: 160px;
    }

    .home_banner .banner_logo {
        width: 180px;
    }

    .home_banner .banner_text {
        font-size: 20px;
        line-height: 26px;
    }

    .quote_wrapper .quote_inner {
        width: 950px;
    }

    .services_inner .first_row {
        padding-top: 230px;
    }

    .font_30 {
        font-size: 25px;
        line-height: 35px;
    }

    .services_inner .services_card {
        min-height: 350px;
    }

    .services_inner .services_card .services_title {
        font-size: 16px;
        line-height: 28px;
    }

    .services_inner .services_card .services_desc,
    .services_inner .services_header p {
        font-size: 16px;
        line-height: 28px;
    }

    .services_inner .vc_column_container>.vc_column-inner {
        padding: 0px 12px !important;
    }


    .quote_wrapper .quote_text_wrapper img {
        width: 50px;
        height: 50px;
    }

    .quote_wrapper .quote_text_wrapper p,
    .quote_wrapper .quote_text_wrapper h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .guarantee_innner .guaratee_text_wrapper {
        width: 600px;
    }

    .section_heading,
    .contact_form_wrapper .gform_title {
        font-size: 25px;
        line-height: 35px;
    }

    .guarantee_innner .guaratee_text_wrapper p {
        font-size: 20px;
        line-height: 30px;
    }

    .our_work_slider div#n2-ss-2 .n2-thumbnail-dot img {
        height: 80px;
    }

  .contact_form .contact_field .gfield_label {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
}

    .contact_form .contact_field .gfield_description {
        font-size: 14px;
        line-height: 20px;
    }

    .contact_form .contact_field input,
    .contact_form .contact_field select {
        height: 45px !important;
    }
    .contact_form .contact_field input, .contact_form .contact_field select {
    font-size: 18px !important;
    line-height: 30px !important;
    padding: 5px 20px !important;
}
.contact_form_wrapper .gform_title {
    margin-bottom: 14px;
}


    .contact_form .contact_field textarea {
        min-block-size: 120px !important;
    }

    .gform-footer input {
        font-size: 18px !important;
        line-height: 22px !important;
        padding: 20px 60px 15px !important;
    }

    .main_footer .footer_logo {
        width: 200px;
    }

    .main_footer .footer_title {
        font-size: 25px;
        line-height: 30px;
    }

    .main_footer .footer_add,
    .main_footer .menu_link {
        font-size: 18px;
        line-height: 26px;
    }



    .main_footer .footer_icon {
        width: 28px;
        height: auto;
    }

    .main_footer .footer_widget {
        column-gap: 10px;
    }

    .footer_jm_logo {
        width: 200px;
        margin-left: auto;
    }
}

@media only screen and (max-width:1199px) {
    .navbar {
        padding: 15px 0px;
    }

    .main-header .nav-link {
        font-size: 18px;
        line-height: 24px;
        padding: 5px 10px;
    }

    .main-header .nav .menu_logo {
        width: 130px;
    }

    .home_banner .banner_logo {
        width: 170px;
    }


    .home_banner .banner_text {
        font-size: 16px;
        line-height: 22px;
    }

    .primary_btn {
        font-size: 16px;
        line-height: 24px;
    }

    .quote_wrapper .quote_inner {
        top: -100px;
    }

    .services_wrapper .services_header {
        padding-right: 10px;
    }

    .services_inner .services_card {
        min-height: 300px;
    }

    .guarantee_innner {
        margin: 100px 0px;
    }

    .contact_wrapper {
        padding-bottom: 100px !important;
        margin-top: 100px !important;
    }

    .contact_form .contact_field textarea {
        min-block-size: 232px !important;
    }

    .main_footer .footer_inner {
        row-gap: 30px;
    }

    .main_footer .footer_logo {
        width: 170px;
    }

    .footer_jm_logo {
        margin-left: 0px;
    }

    .main_footer {
        background-position: 20% 20%;
    }
}

@media only screen and (max-width:1024px) {
    .home_banner .banner_img {
        height: 50vw;
    }

    .our_work_slider div#n2-ss-2 .n2-thumbnail-dot img {
        height: 60px;
    }
}

@media only screen and (max-width:991px) {
    .navbar {
        padding: 12px 0px;
    }

    .main-header .nav .menu_logo {
        width: 100px;
    }

    .main-header .nav {
        column-gap: 10px;
    }

    .main-header .nav-link {
        font-size: 14px;
        line-height: 20px;
    }

    .primary_btn {
        font-size: 14px;
        line-height: 22px;
    }

    .home_banner .banner_logo {
        width: 120px;
    }

    .quote_wrapper .quote_inner {
        width: 95vw;
        top: -70px;
    }

    .quote_wrapper .quote_text_wrapper p,
    .quote_wrapper .quote_text_wrapper h3 {
        font-size: 16px;
        line-height: 28px;
    }

    .services_inner .first_row {
        padding-top: 270px;
    }

    .services_inner .services_card_outer {
        row-gap: 30px;
    }

    .services_inner .services_card .services_desc,
    .services_inner .services_header p {
        font-size: 14px;
        line-height: 24px;
    }

    .services_inner .services_card {
        min-height: 300px;
    }

    .guarantee_innner {
        margin: 100px 0px;
    }

    .contact_form div#gform_fields_1 {
        row-gap: 20px;
    }

    .gform-footer input {
        font-size: 14px !important;
        line-height: 22px !important;
        padding: 15px 40px 10px !important;
    }

    .contact_form .contact_field .gfield_label {
        font-size: 18px;
        line-height: 36px;
    }

    .contact_form .contact_field .gfield_description {
        font-size: 16px;
        line-height: 26px;
    }

    .contact_form .contact_field input,
    .contact_form .contact_field select {
        height: 45px !important;
    }

    .contact_form .contact_field select {
        padding: 8px 10px;
        cursor: pointer;
        font-size: 16px !important;
    }

    .contact_form .contact_field textarea {
        min-block-size: 170px !important;
    }
       .contact_banner  .vc_custom_1753100566455 {
        background-position: 90% 0% !important;
    }

}

@media only screen and (max-width:767px) {

    .container {
        padding: 0px 15px;
    }

    /* header */
    header.main-header {
        top: -10px;
    }

    .main-header .navbar {
        height: 140px;
        padding: 40px 50px;
        clip-path: polygon(0 0%, 100% 0, 100% 50%, 90% 90%, 10% 90%, 0 50%);
        display: flex;
        align-items: flex-start;
        transition: all 0.3s ease;
        width: 100%;
    }

    .main-header li:last-child .nav-link {
        background-color: var(--text-color);
        color: var(--primary-color);
        border-radius: 39px;
        padding: 12px 40px;
        display: inline-block;
    }

    .main-header .nav-link {
        font-size: 22px;
        line-height: 28px;
        padding: 10px 20px;
    }

    .main-header .navbar.active {
        height: 260px;
    }

    .main-header .nav {
        column-gap: 10px;
        flex-direction: column;
        row-gap: 10px;
    }

    .main-header .main_logo {
        width: 150px;
    }

    .main-header .navbar-toggler img {
        width: 35px;
    }

    .main-header .navbar-toggler {
        border: none;
        padding: 0px;
        box-shadow: none;
    }

    .main-header .navbar .navbar-toggler .nav_close {
        display: none;
    }

    .main-header .navbar.active .navbar-toggler .nav_open {
        display: none;
    }

    .main-header .navbar.active .navbar-toggler .nav_close {
        display: block;
    }

    .home_banner .banner_img {
        height: 150vw;
    }

    .home_banner .wpb_single_image .vc_figure,
    .home_banner .wpb_single_image .vc_single_image-wrapper,
    .home_banner .wpb_single_image img {
        height: 100%;
        object-fit: cover;
    }

    .home_banner .figure-caption {
        top: 58%;
        width: 90%;
    }

    .home_banner .banner_logo {
        width: 45vw;
    }

    .home_banner .banner_text {
        font-size: 20px;
        line-height: 30px;
        margin: 25px 0px;
        padding-bottom: 10px;
    }

    .quote_wrapper .quote_inner {
        width: 100vw;
    }

    .quote_wrapper .quote_text_wrapper {
        padding: 30px 18px;
    }

    .our_work_slider div#n2-ss-2 .n2-thumbnail-dot img {
        width: 100px;
        height: 60px;
    }


    .services_inner .first_row {
        padding-top: 300px;
        margin-inline: 0px !important;
    }

    .services_inner .vc_column_container>.vc_column-inner {
        padding: 0px 0px !important;
    }

    .services_wrapper .services_header {
        padding-right: 00px;
        padding-top: 250px;
        padding-bottom: 30px;
    }

    .services_inner {
        display: none;
    }

  .services_inner.mobile_services {
    display: block;
}



      .services_wrapper .service_bg_img {
        height: 120vw;
        top: 190px;
        object-fit: cover;
    }

    .services_wrapper .service_bg_img * {
        height: 100%;
    }

  .mobile_services_slider div#n2-ss-3 .n2-ss-slider-3 {
    border-radius: 39px;
	overflow: hidden;
}

    .mobile_services_slider .n2-ss-slider-4 .n2-ss-slide .n2-ss-layer-content {
        background-color: var(--light-color);
        padding: 30px 30px !important;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 39px;
        justify-content: flex-start !important;
        align-items: flex-start;
        text-align: left;
        word-break: break-word;
    }

    .mobile_services_slider .n2-ss-layer-content .n2-ow {
        color: var(--primary-color) !important;
        font-size: 25px !important;
        line-height: 40px !important;
        font-family: 'Spartan' !important;
        font-weight: 600 !important;
        margin-bottom: 10px;
    }

    .mobile_services_slider .n2-ss-layer-content .n2-ow-all p {
        font-size: 20px !important;
        line-height: 34px !important;
    }

    .mobile_services_slider .n2-ss-slider-controls.n2-ss-slider-controls-below {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        column-gap: 50px;
        width: 100%;
        margin-top: 20px;
    }

    .guarantee_wrapper .quarantee_banner {
        height: 650px;
        background-image: url('https://www.agconco.com/wp-content/uploads/2025/06/quarantte_mobile_bg.png');
        background-position: center;
    }

    .guarantee_wrapper .quarantee_banner img {
        display: none;
    }

    .guarantee_innner {
        margin: 80px 0px;
    }

    .guarantee_innner .guaratee_text_wrapper {
        width: 85%;
        top: auto;
        bottom: 0%;
        transform: translate(-50%, -50%);
    }

    .contact_wrapper {
        padding-bottom: 80px !important;
        margin-top: 80px !important;
    }

    .contact_form .contact_field.half_field {
        width: 100%;
    }

    /* .contact_form .contact_field .gfield_label {
        font-size: 20px;
        line-height: 30px;
    } */

    .contact_form .contact_field .gfield_description {
        font-size: 16px;
        line-height: 26px;
    }

    .main_footer .footer_inner {
        text-align: center;
        row-gap: 30px;
    }


    .footer_jm_logo {
        margin: auto;
    }

    .main_footer .footer_widget {
        flex-direction: column;
        align-items: center;
        row-gap: 10px;
    }

    .main_footer .footer_icon {
        width: 35px;
        height: auto;
    }

    .main_footer {
        background-image: url('https://www.agconco.com/wp-content/uploads/2025/06/footer_mobile_bg.png');
        background-position: 20% 25%;
    }

}

@media only screen and (max-width:440px) {

    /* header */
    header.main-header {
        top: -10px;
    }

    .main-header .navbar {
        height: 100px;
        padding: 25px 50px;
        clip-path: polygon(0 0%, 100% 0, 100% 50%, 90% 90%, 10% 90%, 0 50%);
        display: flex;
        align-items: flex-start;
        transition: all 0.3s ease;
        width: 100%;
    }

    .main-header li:last-child .nav-link {
        background-color: var(--text-color);
        color: var(--primary-color);
        border-radius: 39px;
        padding: 12px 40px;
        display: inline-block;
    }

    .main-header .nav-link {
        font-size: 22px;
        line-height: 28px;
        padding: 10px 20px;
    }

    .main-header .navbar.active {
        height: 220px;
    }

    .main-header .nav {
        column-gap: 10px;
        flex-direction: column;
        row-gap: 10px;
    }

    .main-header .main_logo {
        width: 120px;
    }

    .main-header .navbar-toggler img {
        width: 30px;
    }

    .main-header .navbar-toggler {
        border: none;
        padding: 0px;
        box-shadow: none;
    }

    .main-header .navbar .navbar-toggler .nav_close {
        display: none;
    }

    .main-header .navbar.active .navbar-toggler .nav_open {
        display: none;
    }

    .main-header .navbar.active .navbar-toggler .nav_close {
        display: block;
    }

    .home_banner .banner_img {
        height: 180vw;
    }

    .home_banner .wpb_single_image .vc_figure,
    .home_banner .wpb_single_image .vc_single_image-wrapper,
    .home_banner .wpb_single_image img {
        height: 100%;
        object-fit: cover;
    }
    

    .home_banner .figure-caption {
        top: 58%;
        width: 90%;
    }

    .home_banner .banner_logo {
        width: 50vw;
    }

    .home_banner .banner_text {
        font-size: 20px;
        line-height: 30px;
        margin: 25px 0px;
        padding-bottom: 10px;
    }

    .quote_wrapper .quote_inner {
        width: 100vw;
    }

    .quote_wrapper .quote_text_wrapper {
        padding: 30px 18px;
    }

    .our_work_slider div#n2-ss-2 .n2-thumbnail-dot img {
        width: 100px;
        height: 60px;
    }

    .guarantee_wrapper .quarantee_banner {
        height: 560px !important;
        background-size: contain;
    }
  .services_wrapper .services_header {
        padding-top: 350px;
    }
   .mobile_services_slider div#n2-ss-3 .nextend-arrow img {
        width: 40px !important;
    }
    .mobile_services_slider .n2-ss-slider-4 .n2-ss-slide .n2-ss-layer-content {
        padding: 30px 20px !important;
    }


    .mobile_services_slider .n2-ss-slider-4 .n2-ss-slide .n2-ss-layer-content {
        padding: 20px !important;
    }

    .mobile_services_slider .n2-ss-layer-content .n2-ow {
        font-size: 16px !important;
        line-height: 26px !important;
    }

    .mobile_services_slider .n2-ss-layer-content .n2-ow-all p {
        font-size: 14px !important;
        line-height: 22px !important;
    }

.contact_banner .jm-rich-heading {
    font-size: 40px !important;
    line-height: 55px !important;
}
}


@media only screen and (min-width:768px) and (max-width:1199px) {
    .main_footer .footer_inner .col-12:nth-child(3) {
        order: 4;
    }
}