/* Font Family Start*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');

/* Font Family End*/


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

img {
    max-width: 100%;
    vertical-align: bottom;
}

.container {
    max-width: 1273px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}


body {
    font-family: var(--font-primary);
    color: var(--color-text);
}


/* Root */

:root {
    /* color */
    --color-primary: #354489;
    --color-secondary: #1E86EE;
    --color-text: #424242dd;
    --color-heading: #424242;
    --off-white: #FAFAFE;
    --onyx-gray: #3C3C3C;
    --yellow-green: #D9DC7E;
    --indigo-blue: #39478A;
    --dark-blue: #253982;
    --white-color: #fff;
    --dim-gray-bg: #494949;
    /* gggg */

    /* font-family */
    --font-primary: "Poppins", sans-serif;
}


/* ================== Define Css Start Here ================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.26;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

p,
li,
span {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 25px;
    color: var(--color-shadow-black);
}

p {
    margin: 0 0 20px;
    opacity: 0.85;
}

p:last-child {
    margin: 0;
}

a {
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    font-family: var(--font-primary);
    outline: none;
    font-size: 16px;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

input,
button,
input::placeholder {
    font-family: var(--font-primary);
    outline: none;
}

span {
    display: inline-block;
}

.section-space {
    margin-top: 100px;
}


/* Margin */

.ctm-mt-10 {
    margin-top: 10px;
}

.ctm-mt-20 {
    margin-top: 20px;
}

.ctm-mt-30 {
    margin-top: 30px;
}

.ctm-mt-40 {
    margin-top: 40px;
}

.ctm-mt-50 {
    margin-top: 50px;
}

.ctm-mt-60 {
    margin-top: 60px;
}

.ctm-mt-70 {
    margin-top: 70px;
}

.ctm-mt-80 {
    margin-top: 80px;
}

.ctm-mt-90 {
    margin-top: 90px;
}

.ctm-mt-100 {
    margin-top: 100px;
}

.ctm-mb-100 {
    margin-bottom: 100px;
}

.common-button a {
    display: inline-block;
    text-align: center;
    font-weight: 400;
    padding: 10px 30px;
    font-size: 16px;
    color: var(--white-color);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 100vmax;
    font-family: var(--font-primary);
    cursor: pointer;
    min-width: 152px;
}

.btn-blue a {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}


.btn-trans a {
    background-color: var(--white-color);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}


.common-button a:hover {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-blue a:hover {
    background-color: var(--white-color);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
}

.btn-trans a:hover {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    color: var(--white-color);
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-left {
    text-align: left;
}


/* flex */

.ctm-flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}


/* justify */

.ctm-justify-center {
    justify-content: center;
}

.ctm-justify-right {
    justify-content: right;
}

.ctm-justify-between {
    justify-content: space-between;
}


/* align */

.ctm-align-left {
    align-items: left;
}

.ctm-align-center {
    align-items: center;
}

.ctm-align-right {
    align-items: right;
}


/* width */

.footer-social-icon ul li a:hover {
    border: 1px solid var(--color-secondary);
}

nav ul li a:hover,
.footer-social-icon ul li a:hover,
.footer-menu ul li a:hover,
.engineered-content h3 a:hover {
    color: var(--color-secondary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.full-whdth {
    width: 100% !important;
}


.section-space-60 {
    margin-top: 60px;
}


input,
textarea {
    border: 1px solid var(--input-border-color);
    color: var(--input-color);
    padding: 12px 24px;
    height: 50px;
    font-family: var(--font-secondary);
    font-size: 16px;
    border-radius: 5px;
    outline: none;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: var(--input-color);
}

textarea {
    height: 84px;
}

input:focus,
textarea:focus {
    border: 1px solid var(--color-primary);
}

.circle-list li {
    position: relative;
    padding-left: 20px;
}

.circle-list li+li {
    margin-top: 10px;
}

.circle-list li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #4356C4;
    border-radius: 50%;
}

.common-heading-sec h2 {
    margin-bottom: 20px;
}

.common-heading-sec h3 {
    margin-bottom: 14px;
}

/* ================== Define Css End Here ================== */


/* ================== Header Css Start Here ==================  */

.header-sec-bg {
    background: linear-gradient(180deg, #39478A 0%, #253982 100%);
    padding: 10px 0;
}

/* LOGO */
/*
.logo-left a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    width: 300px;
    background: #bfbfbf;
    padding: 10px 20px;


    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}


.logo-left a::after {
    content: "";
    position: absolute;
    right: -25px;          
    top: 0;
    width: 50px;
    height: 100%;
    background: #bfbfbf;
    transform: skewX(-25deg);  
}
*/

/* LOGO IMAGE */
.logo-left img {
    max-width: 180px;
    height: auto;
}

/* ALIGNMENT */
.inner-header-navbar {
    display: flex;
    align-items: center;
}


/***.header-sec-bg {
    background: transparent linear-gradient(180deg, #39478A 0%, #253982 100%) 0% 0% no-repeat padding-box;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    position: relative;
    padding: 10px 0;
}


.logo-left {
    margin-bottom: -100px;
}

.logo-left>a {
    width: 246px;
    background: var(--white-color);
    height: 180px;
    box-shadow: 0px 3px 6px #00000029;
    display: flex;
    justify-content: center;
    align-items: center;
}***/

.call-content span {
    width: 37px;
    height: 37px;
    background-color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 23px;
}

.navmenu-right ul {
    display: flex;
    align-items: center;
}

.call-content {
    display: flex;
    align-items: center;
    margin-left: 85px;
}

.call-content img {
    max-width: 20px;
}

nav ul li {
    display: inline-block;
}

nav ul li+li {
    margin-left: 50px;
}

nav ul li a {
    font-size: 16px;
    line-height: 25px;
    text-transform: capitalize;
    color: var(--white-color);
    font-weight: 500;
}

nav ul li a.active {
    color: var(--color-secondary);
}

.logo-left a img {
    max-width: 230px;
}

/*  */
.ctm-sticky .logo-left {
    margin-bottom: 0;
}

.ctm-sticky .logo-left>a {
    width: 320px;
    height: 90px;
}

.ctm-sticky .logo-left a img {
    max-width: 270px;
}

.ctm-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    animation: slideDown 0.4s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.toggle-btn-mobile {
    display: none;
}


/* ================== Header Css End Here ==================  */


/* ================== Banner Css Start Here ==================  */

.banner-sec-bg {
    background-image: url(../images/banner_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 157px 0 58px 0;
    position: relative;
    overflow: hidden;
}


.inner-baner {
    gap: 0;
    row-gap: 30px;
}

.banner-col-left {
    width: calc(52% - 20px);
    margin-right: 20px;
}

.banner-col-right {
    width: 62%;
    margin-left: -80px;
    margin-right: -108px;
}

.banner-col-right img {
    position: relative;
    top: 48px;
}

.banner-col-left h1 {
    margin-bottom: 20px;
}

.banner-col-left p {
    max-width: 591px;
}

/* ================== Banner Css End Here ==================  */






/* ================== Main Css Start Here ==================  */




/* Maxi Section Start Here */

.maxi-col-right {
    width: calc(60% - 24px);
}

.maxi-col-left {
    width: 40%;
}

.maxi-col-right .circle-list {
    margin: 20px 0 20px 18px;
}


/* Maxi Section End Here */




/* Trusted Transport Section Start Here */
.trusted-transport-sec-bg {
    padding: 100px 0;
    background-color: var(--off-white);
}


/* Trusted Transport Section End Here */



/* Consultation and Support Section Start Here */


.consultation-sec-bg {
    background: transparent linear-gradient(180deg, #39478A 0%, #253982 100%) 0% 0% no-repeat padding-box;
    padding: 70px 0;
}

.inner-consultation {
    max-width: 910px;
    margin: auto;
}

.inner-consultation p{
  opacity: 0.88;
}

.inner-consultation h2,
.inner-consultation p {
    color: var(--white-color);
}

/* Consultation and Support Section End Here */



/* Advancing the Future Section Start Here */
.advancing-the-future-sec-bg {
    background: linear-gradient(100deg, rgba(225, 232, 239, 1) 34%, rgba(247, 246, 246, 1) 33%);
    padding: 70px 0;
}

.advancing-the-future-col-left,
.advancing-the-future-col-right {
    width: calc(100%/2 - 12px);
}


/* Advancing the Future Section End Here */


/* ================== Main Css End Here ==================  */


/* ================== Footer Css Start Here ==================  */
.top-footer-sec {
    background-color: var(--onyx-gray);
    padding: 52px 0 26px 0;
}

.footer-social-icon ul li a {
    color: var(--white-color);
    width: 34px;
    height: 34px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-icon ul li {
    display: inline-block;
}

.footer-social-icon ul li+li {
    margin-left: 16px;
}


.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
    justify-content: center;
}

.footer-menu ul li {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #ffffffec;
}

.footer-menu ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

.footer-menu ul li a {
    color: var(--white-color);
    font-weight: 400;
    opacity: 0.95;
    font-size: 15px;
    line-height: 25px;

}

.copy-right-sec p {
    color: var(--white-color);
    opacity: 0.95;
    font-size: 15px;
}


.copy-right-footer {
    background-color: var(--dim-gray-bg);
    padding: 13px 0;
}

/* ================== Footer Css End Here ==================  */




/* ================== About Page Css Start Here ==================  */
.inner-page-banner-content h1 {
    text-transform: uppercase;
}

.inner-page-banner-sec-bg {
    background-color: #ECEFFF;
    padding: 110px 0 79px;
}

.about-maxithermal-col-right h3 {
    font-size: 17px;
    line-height: 27px;
    color: #344488;
}

.inner-about-maxithermal {
    gap: 66px;
    row-gap: 30px;
}

.about-maxithermal-col-left,
.about-maxithermal-col-right {
    width: calc(100%/2 - 33px);
}

.about-maxithermal-img {
    height: 429px;
}

.about-maxithermal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consult-with-sec-bg,
.engineered-sec-bg {
    padding: 70px 0;
}

/* ================== About Page Css End Here ==================  */



/* ================== INDUSTRY Page Css Start Here ==================  */



.inner-engineered {
    gap: 50px;
    row-gap: 30px;
}

.engineered-col {
    width: calc(100% / 3 - 34px);
    box-shadow: 0px 3px 6px #00000029;
    background-color: var(--white-color);
}


.engineered-content {
    padding: 40px 26px;

}

.engineered-content h3 a {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-heading);
}

.engineered-content h4 {
    font-size: 16px;
    line-height: 25px;
    color: #334387;
    font-weight: 600;
}

.engineered-image {
    height: 272px;
}

.engineered-image a {
    width: 100%;
    display: inline-block;
    height: 100%;
}

.engineered-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ================== INDUSTRY Page Css End Here ==================  */

/* ================== Product Page Css Start Here ==================  */

.product_card_main {
    padding: 121px 0 119px;
}

.product_card_main .heading {
    margin: 0 0 60px;
    text-align: center;
}

.product_card_main .heading h2 {
    font-size: 30px;
    margin: 0 0 16px;
    color: #484848;
}

.product_card_main .heading p {
    color: var(--onyx-gray);
    opacity: 90%;
}

.product_main-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.product_main-row .card {
    box-shadow: 0px 3px 2px #00000029;
    border: 1px solid rgb(112 112 112 / 40%);
    background: var(--white-color);
    padding: 60px 36px 36px;
    flex: 0 0 calc(100% / 2 - 30px);
    max-width: calc(100% / 2 - 30px);
}

.product-text {
    text-align: center;
    margin: 0 0 40px;
}

.product_main-row .card .img img {
    display: block;
    margin-inline: auto;
}

.product-text h3 {
    color: #2F4086;
    font-size: 25px;
    margin: 0 0 20px;
}
.product-text p{
    opacity: 1;
}

/* ================== Product Page Css End Here ==================  */

/* ================== Advatages Page Css Start Here ==================  */


.advantages {
    background: #344488;
    padding: 69px 0 81px;
}

.advantages-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.advantages-row .left_row {
    flex: 0 0 50%;
    max-width: 50%;
}

.advantages-row .right_row {
    flex: 0 0 45.8%;
    max-width: 45.8%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 52px;
}

.advantages-row .left_row * {
    color: var(--white-color);
}

.advantages-row .left_row h2 {
    margin: 0 0 40px;
    font-weight: 600;
}

.advantages-row .left_row .icon-text+.icon-text {
    margin-top: 40px;
}

.advantages-row .left_row .icon-text h4 {
    margin: 0 0 25px;
    font-size: 22px;
    position: relative;
}

.advantages-row .left_row .icon-text {
    position: relative;
    padding-left: 43px;
}

.advantages-row .left_row .icon-text::after {
    content: "\f061";
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    width: 24px;
    height: 24px;
    border: 2px solid #1E86EE;
    color: #1E86EE;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-row .left_row .icon-text h5 {
    color: var(--yellow-green);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
}

.advantages-row .left_row .icon-text p {
    opacity: 0.93;
    max-width: 533px;
}
/* ================== Advatages Page Css End Here ==================  */

/* ================== Contact Page Css  Here ==================  */
.contact-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}





 /* Section */
.team-section {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

/* Title */
.team-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Grid */
.team-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.team-card {
    background: #fff;
    padding: 30px 20px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Image */
.team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 4px solid #2f5aa8; /* site blue */
    overflow: hidden;
}

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

/* Text */
.team-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
}

.role {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 14px;
    color: #333;
    margin: 4px 0;
}

.desc {
    margin-top: 10px;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card {
        width: 100%;
        max-width: 350px;
    }
}
















.address-info {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 50px;
   
}

.address_flex_colm {
    width: 100%;
}
.section-title {
    margin-bottom: 20px;
}
.section-title.white_text h3 {
    color: #fff;
}

.address-info ul li
 {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background-color: #fff;

}
.img-fluid {
    max-width: 100%;
    height: auto;
}

.address-info ul li h5
Specificity: (0,1,3)
 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #222F6F;
    letter-spacing: 0.23px;
    display: inline-block;
}

.address-info ul li p, .address-info ul li a {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    transition: 0.5s;
    margin: 0;
    letter-spacing: 0.17px;
    color: #3D3D3D;
}

.contact-left{
    background: #39478a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
 .contact-right {
    background: #ECEFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}


.contact-left {
    flex: 1 1 500px;
}

.contact-right {
    flex: 2 1 500px;
}

.contact-left h2, .contact-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info .icon {
    width: 35px;
    height: 35px;
    text-align: center;
    margin-right: 10px;
    background: #0073e6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-info a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #0073e6;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: #333;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0073e6;
}

/* Contact Form 7 Styles */
.contact-right input[type="text"],
.contact-right input[type="email"],
.contact-right textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-right input[type="text"]:focus,
.contact-right input[type="email"]:focus,
.contact-right textarea:focus {
    border-color: #0073e6;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
    outline: none;
}

/* Contact Form 7 Submit Button */
.contact-right input[type="submit"] {
    background: #1d3a80; /* match your site header/nav color */
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-right input[type="submit"]:hover {
    background: #16306b; /* slightly darker on hover */
}

/* Responsive */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
    }
}

/* ================== Contact Page Css End Here ==================  */


/* ================== Media Css Start Here ==================  */
@media(max-width:1199px) {
    nav ul li+li {
        margin-left: 18px;
    }


    .banner-logo img {
        max-width: 500px;
        margin: 0 auto;
    }

    .ctm-mt-60 {
        margin-top: 40px;
    }

    .logo-left>a {
        width: 200px;
        height: 150px;
    }

    .logo-left {
        margin-bottom: -70px;
    }

    .banner-sec-bg {
        padding: 120px 0 50px 0;
    }

    .banner-col-right img {
        padding: 0;
    }

    .banner-col-right {
        margin: 0;
        width: 48%;
    }
}


@media(max-width:1024px) {
    .section-space {
        margin-top: 70px;
    }

    h1 {
        font-size: 30px;
        line-height: 28px;
    }

    h2 {
        font-size: 30px;
        line-height: 38px;
    }

    h3,
    .engineered-content h3 a,
    .product-text h3 {
        font-size: 20px;
        line-height: 32px;
    }

    h4,
    .h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .common-heading-sec h2 {
        margin-bottom: 14px;
    }

    .trusted-transport-sec-bg {
        padding: 70px 0;
    }

    .ctm-mt-50 {
        margin-top: 30px;
    }

    .ctm-mt-40 {
        margin-top: 30px;
    }

    .footer-menu ul li {
        margin-right: 10px;
        padding-right: 10px;
    }

    .inner-engineered {
        gap: 30px;
    }

    .engineered-col {
        width: calc(100% / 3 - 20px);
    }

    .engineered-content {
        padding: 30px 20px;
    }

    .engineered-image {
        height: 230px;
    }

    .product_card_main {
        padding-block: 70px;
    }
}


@media(max-width:991px) {
    .logo-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .toggle-btn-mobile {
        width: 100%;
        text-align: right;
        display: flex;
       /** justify-content: flex-end;***/
        align-items: center;
        max-width: 46px;
        height: 46px;
    }

    .toggle-btn-mobile a {
        color: var(--white-color);
        font-size: 30px;
    }

    .open-icon {
        display: block;
    }

    .close-buttton-icon .open-icon {
        display: none;
    }

    .xmark-icon {
        display: none !important;
    }

    .close-buttton-icon .xmark-icon {
        display: block !important;
    }


    .navmenu-right {
        display: none;
    }

    .close-buttton-icon .navmenu-right {
        display: block;
        width: 100%;
    }

    nav ul li {
        display: block;
        margin: 0 !important;
        padding: 0;
        border: none;
    }

    nav ul li a {
        width: 100%;
        border: 0;
        border-bottom: 1px solid var(--white-color);
        padding: 10px 0;
    }

    .navmenu-right ul {
        display: block;
        align-items: center;
    }

    nav ul li:last-child a {
        border-bottom: 0;
    }

    .call-content {
        padding-top: 14px;
    }

    .call-content span {
        margin-right: 10px;
    }

    .call-content a {
        width: max-content;
    }


    .close-buttton-icon {
        box-shadow: none;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 3;
        background: transparent linear-gradient(180deg, #39478A 0%, #253982 100%) 0% 0% no-repeat padding-box;
        overflow: auto;
        height: 100%;
        overflow-x: hidden;
    }

    .close-buttton-icon .header-navbar {
        box-shadow: none;
    }

    .logo-left {
        margin-bottom: 0;
    }

    .logo-left>a {
        width: 400px;
        height: 90px;
    }

    .logo-left a img {
        max-width: 270px;
    }

    .banner-sec-bg {
        padding: 50px 0;
    }

    .inner-page-banner-sec-bg {
        padding: 70px 0;
    }

    .inner-about-maxithermal {
        gap: 30px;
    }

    .about-maxithermal-col-left,
    .about-maxithermal-col-right {
        width: calc(100% / 2 - 15px);
    }

    .product_main-row {
        gap: 30px;
    }

    .product_main-row .card {
        flex: 0 0 calc(100% / 2 - 15px);
        max-width: calc(100% / 2 - 15px);
    }

    .product_card_main .heading {
        margin: 0 0 40px;
    }

    .advantages-row {
        flex-direction: column;
        align-items: normal;
        gap: 50px;
    }

    .advantages-row .left_row,
    .advantages-row .right_row,
    .product_main-row .card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .advantages-row .left_row .icon-text p {
        max-width: 100%;
    }

    .advantages-row .right_row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media(max-width:767px) {

    input,
    textarea {
        padding: 12px 14px;
    }

    .section-space {
        margin-top: 50px;
    }

    .section-space-60 {
        margin-top: 50px;
    }

    h1,
    h2,
    .product_card_main .heading h2 {
        font-size: 26px;
        line-height: 34px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    h4 {
        font-size: 16px;
        line-height: 26px;
    }

    p {
        font-size: 14px;
    }

    .banner-col-left {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .banner-col-left p {
        max-width: 100%;
    }

    .banner-col-right,
    .maxi-col-left,
    .maxi-col-right,
    .advancing-the-future-col-left,
    .advancing-the-future-col-right,
    .about-maxithermal-col-left,
    .about-maxithermal-col-right {
        width: 100% !important;
        text-align: center
    }

    .inner-maxi-sec {
        flex-direction: column-reverse;
    }

    .trusted-transport-sec-bg,
    .consultation-sec-bg,
    .advancing-the-future-sec-bg,
    .consult-with-sec-bg,
    .engineered-sec-bg {
        padding: 50px 0;
    }

    .top-footer-sec {
        padding: 30px 0 20px 0;
    }

    .inner-copy-right-footer {
        flex-direction: column;
    }

    .trusted-transport-sec-bg .inner-maxi-sec {
        flex-direction: column;
    }

    .about-maxithermal-img,
    .engineered-image {
        height: auto;
    }

    .inner-about-maxithermal {
        flex-direction: column-reverse;
    }

    .consult-with-sec-bg .inner-maxi-sec {
        flex-direction: column;
    }

    .engineered-col {
        width: 100%;
    }

    .engineered-content {
        text-align: center;
    }

    .product_card_main,
    .advantages {
        padding-block: 50px;
    }

    .advantages-row .left_row .icon-text h4 {
        font-size: 19px;
        margin: 0 0 11px;
    }

    .product_main-row .card {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media(max-width:575px) {
    .ctm-mt-60 {
        margin-top: 30px;
    }



}

/* ================== Media Css End Here ==================  */