* {
    margin: 0;
    padding: 0;
}




@font-face {
    font-family: sf_bold;
    src: url(../fonts/sf_bold.OTF);
}

@font-face {
    font-family: sf_light;
    src: url(../fonts/sf_light.OTF);
}

@font-face {
    font-family: sf_medium;
    src: url(../fonts/sf_medium.OTF);
}

@font-face {
    font-family: sf_regular;
    src: url(../fonts/sf_regular.OTF);
}

@font-face {
    font-family: ro_regular;
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face {
    font-family: inter;
    src: url(../fonts/Inter.ttf);
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

h2 {
    font-family: sf_bold;
}

/* /////////////////////////////////////////////// */


.mz_header {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 1111;
    padding: 10px 0px;
}

a.nav-link {
    color: #fff;
}

li.nav-item {
    padding: 0 0 0 50px;
}

.mz_banner {
    background-image: url(../img/banner.gif);
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.mz_banner::before {
    position: absolute;
    content: "";
    top: 0;
    background: #009464c7;
    width: 100%;
    height: 100%;
}

.mz_banner h1 {
    text-transform: uppercase;
    color: #fff;
    font-size: 94px;
    line-height: 84px;
    margin: 0 0 40px;
    font-family: sf_bold;
}

.mz_banner h1 span {
    font-size: 62px;
    font-weight: 200;
    display: inline-block;
    line-height: 60px;
}

.mz_banner img {
    max-width: 100%;
}

.mz_banner .row {
    height: 880px;
}

.btn_wrp a {
    background: #BE984E;
    color: #fff;
    border-radius: 15px;
}

.btn_wrp a {
    background: #BE984E;
    color: #fff;
    border-radius: 15px;
    padding: 14px 20px;
    transition: 0.5s;
    box-shadow: 0 0px 6px #be984e;
}

.btn_wrp a:hover {
    background-color: transparent;
    border: 1px solid #BE984E;
    color: #BE984E;
    box-shadow: none;
}

.left-text {
    position: absolute;
    left: -180px;
    top: 386px;
    color: #fff;
    text-transform: uppercase;
    transform: rotate(-90deg);
}

.left-text ul {
    display: block;
}

.left-text ul li {
    display: inline-block;
    padding: 0 20px 0;
    font-size: 14px;
    font-weight: 500;
    font-family: ro_regular;
}

.mz_clint {
    background: #F3F3F3;
    padding: 60px 0;
}

.mz_clint h2 {
    font-size: 50px;
    font-family: sf_bold;
    font-weight: bold;
    color: #313030;
}

.mz_clint ul {
    display: block;
}

.mz_clint ul li {
    display: inline-block;
    padding: 30px 40px 0;
}

.mz_about {
    padding: 70px 0 100px;
    background-image: url(../img/about_bg.png);
}

.mz_about h2 {
    font-size: 50px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 50px;
}

.mz_about h2 span {
    display: block;
}

.mz_about p {
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 60px;
}

.btn_wrp .btn2 {
    background: #00563A;
    padding: 12px 30px;
    box-shadow: 0 0px 6px rgb(0 82 54);
    color: #fff;
}

.two-screen-wrapper {
    position: relative;
    margin: 0 0 50px;
    height: auto;
}

.two-screen-wrapper::before {
    content: '';
    left: -20px;
    background: #fff;
    height: 100%;
    width: 3px;
    position: absolute;
    opacity: 20%;
}

.two-screen-wrapper::after {
    position: absolute;
    content: '';
    background: url(../img/scoll-img.png) no-repeat;
    background-size: contain;
    top: 49%;
    left: -22%;
    /* Initial position */
    width: 100px;
    height: 70px;
    transform: translateY(-50%);
    /* Center the image vertically */
    animation: scroll-animation 2s infinite ease-in-out;
    /* Add animation */
}

/* Animation keyframes */
@keyframes scroll-animation {
    0% {
        transform: translateY(-50%) translateY(0);
        /* Start position */
    }

    50% {
        transform: translateY(-50%) translateY(10px);
        /* Down movement */
    }

    100% {
        transform: translateY(-50%) translateY(0);
        /* Back to start */
    }
}

.left-screen {}

.myslider {
    width: 80%;
    height: 100%;
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.right-screen {}

.right-screen .content {
    text-align: center;
    width: 80%;
}

.content-item {
    display: none;
}

.content-item.active {
    display: block;
}

@media (max-width: 768px) {
    .two-screen-wrapper {
        flex-direction: column;
    }

    .left-screen,
    .right-screen {
        width: 100%;
        height: auto;
    }
}

.mz_slider {
    background-color: #00563A;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.mz_slider::before {
    content: url(../img/sp-slider1.png);
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 20%;
    height: auto;
}

.mz_slider h2 {
    color: #fff;
    font-size: 50px;
    margin: 0 0 50px;
    line-height: 127.1%;
}

.mz_slider h2 span {
    display: block;
}

.content-item img {
    z-index: 1;
    position: relative;
    max-width: 100%;
}

.btn_wrp .btn3 {
    background-color: #fff;
    color: #00563A;
    border-radius: 10px;
    padding: 11px 30px;
    box-shadow: 0 0px 6px rgb(0 82 54);
}

.myslider .item h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    opacity: 20%;
    padding: 6px 0;
}

.mz_slider p {
    width: 50%;
    color: #fff;
    margin: 0 0 40px;
    font-size: 18px;
}

.mz_casestudy {
    text-align: center;
    padding: 40px 0 0;
}

.mz_casestudy h2 {
    margin: 0 0 40px;
    line-height: 127.1%;
}

.mz_casestudy h2 span {
    display: block;
}

.mz_casestudy .col-lg-12>img {
    width: 70%;
}

.mz_testi {
    background-image: url(../img/port_bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0 100px;
}


.mz_testi h2 span {
    display: block;
}

.mz_testi h2 {
    font-size: 50px;
    text-align: center;
    line-height: 127.1%;
    margin-bottom: 50px;
    font-weight: bold;
}

.mini {}

.box1 {
    text-align: center;
    width: 271px;
    background: #BE984E;
    position: relative;
    padding: 40px 0;
}

.box1:before {
    content: url(../img/sp-g.png);
    position: absolute;
    right: 0;
    bottom: 0;
}

.box1 h3 {
    font-size: 80px;
    color: #fff;
    margin: 0;
}

.box1 h6 {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
}

.box-img img {
    width: 100%;
}

.mz_testi .row>* {
    padding-right: calc(var(--bs-gutter-x)* 0.) !important;
}

.box-testi {
    background: #BE984E;
    opacity: 41%;
    margin: 0 0;
    width: 271px;
    height: 387px;
}

.col-lg-3.large {
    height: 387px;
    width: 271px;
}

.mz_ourclient {
    padding: 70px 0;
    background-image: url(../img/ourclient-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.mz_ourclient h2 {
    text-align: center;
    color: #fff;
}

.mz_ourclient h2 span {
    display: block;
}

.mz_ourclient h2 {
    text-align: center;
    margin-bottom: 40px;
    line-height: 127.1%;
}


.clint-slider .client-item img {
    max-width: 100%;
    height: auto;
}

.mt-30 {
    margin-top: 30px !important;
}

.mz_ourclient .container-fluid {
    padding: 0 !important;
}

.mz_blog {
    padding: 70px 0 0px;
    background-image: url(../img/cta-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.mz_blog h2 {
    font-size: 50px;
    line-height: 127.1%;
    text-align: center;
    margin: 0 0 30px;
}

.mz_blog h2 span {
    display: block;
}

.date {
    font-size: 14px;
    color: #00563A;
    line-height: 20px;
    font-weight: 600;
    font-family: 'inter';
    margin: 0 0 6px;
}

.blog-item h3 {
    font-size: 24px;
    font-family: 'inter';
    line-height: 32px;
    color: #212121;
    font-weight: 600;
    position: relative;
}

.blog-item h3::before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 40px;
    top: 0;
    font-size: 20px;
    color: #212121;
    transform: rotate(313deg);
}

.blog-item p {
    font-size: 16px;
    font-family: 'inter';
    line-height: 24px;
    color: #212121;
    font-weight: 500;
}

.blog-item img {
    margin: 0 0 12px;
}

.blog-item ul {
    display: block;
    margin: 0;
    padding: 0;
}

.blog-item ul li {
    display: inline-block;
}

.blog-item ul li a {
    color: #212121;
    background: #be984e7d;
    border-radius: 16px;
    font-size: 14px;
    font-family: 'inter';
    font-weight: 500;
    line-height: 20px;
    padding: 2px 10px;
    transition: 0.4s;
}

.blog-item ul li a:hover {
    background-color: transparent;
    border: 1px solid #BE984E;
}

.bg-clr {
    background: url(../img/frm-bg.png);
    border-radius: 20px;
    background-repeat: no-repeat;
    height: auto;
    background-size: cover;
    padding: 40px 0 0;
    position: relative;
    bottom: -170px;
}

.mt-100 {
    margin-top: 0px !important;
}

.bg-clr h2 {
    margin: 0 0 30px;
    text-transform: capitalize;
}

.form-main {
    padding: 0 70px 0;
}

.form-main label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 0 0 10px;
}

.form-main .form-control {
    background-color: transparent;
    border: 1px solid #515151;
    border-radius: 5px;
    color: #515151;
}

.form-main .form-group {
    padding-bottom: 30px;
}

.form-main textarea.form-control {
    height: 118px;
}

.mz_footer {
    background-image: url(../img/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 220px 0 0;
    background-position: bottom;
}

.mz_footer h3 {
    font-size: 18px;
    color: #BE984E;
    font-weight: bold;
    line-height: 127.1%;
}

.mz_footer ul li a {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
}

.mz_footer ul li {

    padding: 0 0 8px;
}

.ftr-logo {
    padding: 0 0 50px;
}

.btm-border {
    border-bottom: 1px solid #fff;
    padding: 0 0 20px;
}

.lst {
    font-size: 16px;
    font-weight: 500;
    line-height: 30%;
    text-align: center;
    color: #fff;
    font-family: 'sf_regular';
    padding: 22px 0 4px;
}

.animation {
    position: relative;
}

.animation img {
    position: absolute;
    opacity: 0;
    top: -110px;
    z-index: -1;
    left: 240px;
}


.animation img {
    width: 80%;
}




.ns-testimonial-row {
    background: linear-gradient(113.18deg, #DE8078 2.04%, #E6C4C1 48.47%, #E08279 99.99%);
    color: #ffffff;
    padding: 50px 0;
}

.ns-testimonial-row>h2,
.ns-testimonial-row>p {
    text-align: center;
}


.outerdiv {
    width: 100%;
    /*     min-height: 100vh; */
    /*     background: #EDF2F8; */

    display: flex;
    align-items: center;
    justify-content: center;
}

.innerdiv {
    transform: scale(1.1);
    margin: 1rem;
    display: grid;
    grid-gap: 1.5rem;
    grid-template-rows: repeat(2, 17rem);
    grid-template-columns: repeat(4, 17rem);
}

.eachdiv {
    padding: 1rem 2rem;
    border-radius: 0;
    box-shadow: 5px 5px 20px #6d6b6b6b;
    color: white;
}

.div1 {
    background: #BE984E;
    grid-column: 1/1;
    grid-row: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 271px;
    position: relative;
}

.div2 {
    background: #000;
    grid-column: 3/4;
    grid-row: 1/2;
    width: 122px;
    height: 122px;
}

.div3 {
    background: white;
    grid-column: 4/5;
    grid-row: 1/2;
    color: black;
}

.div4 {
    background: white;
    grid-column: 1/2;
    grid-row: 2/3;
    color: black;
    height: 387px;
    background-color: rgba(190, 152, 78, 0.4);
}

.div5 {
    background: #5A2E33;
    grid-column: 2/3;
    grid-row: 2/3;
    margin: 117px 0 0;
    height: 271px;
}

.userdetails {
    display: flex;
}

.imgbox {
    margin-right: 1rem;
}

.imgbox img {
    border-radius: 50%;
    width: 2rem;
    border: 2px solid #cec5c5;
}

.detbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detbox p {
    margin: 0;
}

.detbox .name {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.detbox .name.dark {
    color: #49505A;
}

.detbox .designation {
    color: #ffffff;
    opacity: 50%;
    font-size: 0.8rem;
}

.detbox .designation.dark {
    color: #49505A;
}

.review h4 {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.review.dark h4 {
    color: #4B5258;
}

.review p {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    opacity: 80%;
    line-height: 1.5;
}

.review.dark p {
    color: #0e0e0e;
}

.attribution {
    font-size: 1rem;
    line-height: 1.5;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    text-align: right;
}

.attribution a {
    text-decoration: none;
}

@media only screen and (max-width: 1000px) {
    .innerdiv {
        transform: scale(0.7);
    }
}

@media only screen and (max-width: 800px) {
    .innerdiv {
        transform: scale(0.6);
    }
}

@media only screen and (max-width: 576px) {
    .div1 {
        background-position-x: 10rem;
    }

    .innerdiv {
        display: flex;
        flex-direction: column;
        transform: scale(1);
        margin: 2rem;
        margin-bottom: 5rem;
    }

    .attribution {
        position: relative;
    }
}

.div01 {
    background: #BE984E;
    grid-column: 2 / 2;
    height: 387px;
    grid-row: 1 / 2;
}

.review h3 {
    font-size: 80px;
    font-family: 'sf_bold';
    margin: 0;
}

.review h6 {
    font-size: 30px;
    font-family: 'sf_regular';
}

.review {
    text-align: center;
}

.div1::before {
    content: url(../img/sp-g.png);
    position: absolute;
    right: 0;
    bottom: 50px;
}

.testii {
    height: 387px;
    background-color: rgba(190, 152, 78, 0.4);
    padding: 50px 30px;
}

.testii img {
    padding: 0 0 10px;
}

.testii p {
    font-size: 16px;
    font-family: 'sf_regular';
    line-height: 127.1%;
    color: #212121;
    text-transform: capitalize;
}

.testii h4 {
    font-size: 18px;
    font-family: 'sf_bold';
    color: #00563A;
}

.div02 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    height: 122px;
    width: 122px;
    margin: 0 0 0 150px;
}

.div05 {
    grid-column: 3 / 3;
    grid-row: 1 / 3;
    margin: 151px 0 0;
}

.div06 {
    grid-column: 3 / 3;
    grid-row: 5 / 3;
    background: #00563a;
    margin: -27px 0 0;
    height: 119px;
    color: #fff;
    padding: 20px 30px;
}

.div06 h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 127.1%;
}

.div06 h6 {
    font-size: 18px;
    line-height: 127.1%;
    font-family: 'sf_regular';
    position: relative;
}

.div06 h6::before {
    content: '\f054';
    /* The icon */
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 24px;
    top: 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 900;
}

.div06 a {
    color: #fff !important;
}

.div03 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    color: black;
}



.clint-slider .client-item {
    height: auto;
    padding: 10px;
    transition: 0.5s;
}

.clint-slider .client-item:nth-child(odd) {

    animation: port1 5s linear infinite;
}

@keyframes port1 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

.clint-slider .client-item:nth-child(even) {
    animation: port2 5s linear infinite;
}

@keyframes port2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(10px);
    }

    100% {
        transform: translatey(0px);
    }
}

.clint-slider2 .client-item {
    height: auto;
    padding: 10px;
    transition: 0.5s;
}

.clint-slider2 .client-item:nth-child(odd) {

    animation: port1 5s linear infinite;
}

@keyframes port1 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

.clint-slider2 .client-item:nth-child(even) {
    animation: port2 5s linear infinite;
}

@keyframes port2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(10px);
    }

    100% {
        transform: translatey(0px);
    }
}

.sbtn {
    background: #BE984E;
    color: #f8f9fa;
    border-radius: 15px;
    padding: 9px 40px;
    transition: 0.5s;
    box-shadow: 0 0px 6px #BE984E;
    border: none;
    transition: 0.9s;
}

.sbtn:hover {
    background: transparent;
    color: #212121;
    border-radius: 15px;
    padding: 9px 40px;
    box-shadow: none;
    border: 1px solid #212121;
}

.slick-cloned.active h3 {
    opacity: 100% !important;
    font-size: 44px;
}

/* Style for the active slide */
.active-slide h3 {
    font-size: 48px;
    opacity: 100% !important;
    color: #fff;
    /* White text for contrast */
    transition: 0.3s ease;
    /* Smooth transition */
    font-weight: 600 !important;
}





/************************** popup  ************************************/
.modal-content {
    background: #fff;
    background-size: cover;
    border-radius: 17px;
    overflow: hidden;
    border: none;
}

.modal-dialog {
    width: 1090px;
    max-width: 100%;
    top: 140px;
    bottom: 0;
}

.modal-body {
    position: relative;
    padding: 0px;
    padding: 31px 30px;
}

.modal {
    background: #000000c7;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(7px);
}

.modal h5 {
    color: #00704b;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
}

.modal h4 {
    font-size: 32px;
    font-weight: 600;
    color: #13103c;
    margin: 10px 0;
}

.modal .form-control {
    padding: 14px 40px;
    background: none;
    width: 100%;
    font-size: 12px;
    color: #000000;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 6px 0 0px;
    border-radius: 16px;
}

.field {
    position: relative;
    margin: 5px 0;
}

span.pop_icon {
    position: absolute;
    left: 15px;
    font-size: 20px;
    top: 10px;
    color: #008c5f;
}

button.pop_btn {
    display: block;
    width: 100%;
    background: radial-gradient(75% 364.17% at 50.43% -50%, #00BC7F 0%, #00563A 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    ;
    color: #fff;
    border-radius: 17px;
    border: none;
    padding: 10px;
    font-weight: 600;
    font-size: 20px;
}

.modal textarea.form-control {
    resize: none;
    height: 140px;
}

.modal p {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

button.close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 6px;
    right: 15px;
    display: block;
    z-index: 222220;
    opacity: 1;
    background-size: 20px;
    border: none;
    background: transparent;
    font-size: 22px;
}

button.pop_btn:hover {
    background: #ffc107;
    transition: 1.3s;
    color: #fff;
}

input.form-control::placeholder {
    color: #fff;
}

textarea.form-control::placeholder {
    color: #fff;
}

.modal .form-control::placeholder {
    color: #000;
}

.modal_img {
    position: absolute;
    width: 100%;
    height: 524px;
    top: -32px;
    left: -16px;
}

.modal_img img {
    width: 50%;
    height: 110%;
    object-fit: cover;
}

/************************** popup ************************************/


/* COLORS ========================================== */
/* FONTS ========================================== */
/* MIXINS ========================================== */
/* RESET ========================================== */
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
}

body.overflow {
    overflow: hidden;
}

header {
    margin-top: 1px !important;
}

.navbar-inverse {
    background-color: #ffffff52 !important;
    border-color: #bebdbd !important;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
    width: 100%;
}

.navbar-fixed-bottom,
.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

element.style {}

.hero-image {
    background-image: url('https://i.ibb.co/ZXbmK31/photo-1485797532868-c4401a435f08.jpg" alt="photo-1485797532868-c4401a435f08');
    background-size: cover;
    min-height: 400px;
    background-repeat: no-repeat;
}

.first_image {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
}

body>header>div>div>div>div.burger>p {
    margin: 11px 16px 15px -48px;
    font-weight: 600;
    color: #fff;
}

#bar {
    background: white;
    font-family: Designio;
    position: absolute;
    left: 0;
    right: 0;
    padding: 15px;
    height: 60px;
    background-size: 100%;
}

.affix {
    -webkit-transition: padding 0.2s ease-out;
    -moz-transition: padding 0.2s ease-out;
    -o-transition: padding 0.2s ease-out;
    transition: padding 0.2s ease-out;
}

.affix-top .nav>li>a {
    color: #000;
}

.affix-top.navbar .nav>li>a:hover,
.affix-top.navbar .navbar-brand {
    color: #333;
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 0px !important;
}

/***********************************************/
/******************CUSTOME DESIGN****************** **********************************************/
/* BURGER ========================================== */
.burger {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 20px;
    right: 105px;
    border-radius: 4px;
    z-index: 999;
}

.burger span {
    position: relative;
    margin-top: 9px;
    margin-bottom: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -1.5px;
}

.burger span,
.burger span::before,
.burger span::after {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    transition-property: background-color, transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.burger span::before,
.burger span::after {
    position: absolute;
    content: "";
}

.burger span::before {
    top: -9px;
}

.burger span::after {
    top: 9px;
}

.burger.clicked span {
    background-color: transparent;
}

.burger.clicked span::before {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

.burger.clicked span::after {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.burger.clicked span:before,
.burger.clicked span:after {
    background-color: #ffffff;
}

.burger:hover {
    cursor: pointer;
}

/* NAV ========================================== */
nav {
    background-color: #fff;
    position: fixed;
    z-index: 9;
    top: 0;
    right: 0;
    height: 100%;
    max-width: 515px;
    width: 100%;
    padding: 100px 40px 60px 40px;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    background: #be984e;
    transform: translateX(0px);
}

nav.show ul.main li {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}

nav.show ul.main li:nth-child(1) {
    transition-delay: 0.15s;
}

nav.show ul.main li:nth-child(2) {
    transition-delay: 0.3s;
}

nav.show ul.main li:nth-child(3) {
    transition-delay: 0.45s;
}

nav.show ul.main li:nth-child(4) {
    transition-delay: 0.6s;
}

nav.show ul.main li:nth-child(5) {
    transition-delay: 0.75s;
}

nav.show ul.main li:nth-child(6) {
    transition-delay: 0.9s;
}

nav.show ul.main li:nth-child(7) {
    transition-delay: 1.05s;
}

nav.show ul.main li:nth-child(8) {
    transition-delay: 1.2s;
}

nav.show ul.main li:nth-child(9) {
    transition-delay: 1.35s;
}

nav.show .about,
nav.show .social,
nav.show ul.sub {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    transition-delay: .85s;
}

nav ul.main {
    list-style-type: none;
}

nav ul.main li {
    margin-bottom: 20px;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.main li:last-of-type {
    margin-bottom: 0px;
}

nav ul.main li a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    display: block;
    letter-spacing: 3px;
    font-weight: 600;
    padding: 10px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.main li a span {
    color: #b7ac7f;
}

nav ul.main li a:hover {
    color: #000000;
    background: #fff;
    width: auto;
    padding: 0 29px 0;
    letter-spacing: 5px;
}

nav .about {
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

nav .about p {
    color: #000;
    font-family: "Spectral", serif;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    line-height: 170%;
}

nav .social {
    margin-top: 40px;
    position: relative;
    padding-bottom: 30px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

nav .social:after {
    content: "";
    width: 230px;
    height: 2px;
    background-color: #b7ac7f;
    position: absolute;
    bottom: 0;
    left: 0;
}

nav .social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 25px;
}

nav .social a:last-of-type {
    margin-right: 0px;
}

nav .social a:hover svg path,
nav .social a:hover svg circle {
    fill: #b7ac7f;
}

nav .social a svg {
    width: 100%;
    height: 100%;
}

nav .social a svg path,
nav .social a svg circle {
    fill: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.sub {
    list-style-type: none;
    margin-top: 40px;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

nav ul.sub li {
    margin-bottom: 10px;
}

nav ul.sub li:last-of-type {
    margin-bottom: 0px;
}

nav ul.sub li a {
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav ul.sub li a:hover {
    color: #b7ac7f;
}

/* OVERLAY ========================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #d4d4d4;
    opacity: 0;
    visibility: hidden;
}

.overlay.show {
    opacity: 5.8;
    visibility: visible;
    background: #00563aba;
}

/***************************************** ********* Responsive start*************** * ***************************************/
@media (min-width:1024px) {
    .burger {
        width: 50px;
        height: 50px;
        position: fixed;
        top: 20px;
        right: 20px;
        border-radius: 4px;
        z-index: 10;
    }

    .cover {
        position: relative;
        left: -90.5px;
        box-sizing: border-box;
        width: 1351px;
        padding-left: 90.5px;
        padding-right: 90.5px;
        max-height: 420px;
        object-fit: cover;
    }

    body>header>nav {
        z-index: 999;
    }

    .hero-image {
        min-height: 700px;
    }
}

@media (min-width: 667px) {
    nav {
        padding: 100px 40px 50px 30px;
    }

    body>header>nav {
        z-index: 10;
    }
}

@media (min-width:768px) {
    .affix-top {
        /* navbar style at top */
        background: transparent;
        border-color: transparent;
        padding: 15px;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .burger {
        width: 50px;
        height: 50px;
        position: absolute;
        top: 0px;
        right: 20px;
        border-radius: 4px;
        z-index: 999;
    }

    .cover {
        position: relative;
        left: -90.5px;
        box-sizing: border-box;
        width: 1351px;
        padding-left: 90.5px;
        padding-right: 90.5px;
        max-height: 420px;
        object-fit: cover;
    }

    body>header>nav {
        z-index: 9;
    }

    .hero-image {
        min-height: 500px;
    }
}

@media (max-width:425px) {
    .burger {
        width: 50px;
        height: 50px;
        position: fixed;
        top: 20px;
        right: 20px;
        border-radius: 4px;
        z-index: 999;
    }

    .cover {
        position: relative;
        left: -90.5px;
        box-sizing: border-box;
        width: 1351px;
        padding-left: 90.5px;
        padding-right: 90.5px;
        max-height: 200px;
        object-fit: cover;
    }

    body>header>nav {
        z-index: 9;
    }

    .hero-image {
        min-height: 400px;
    }
}

@media (max-width:375px) {
    .burger {
        width: 50px;
        height: 50px;
        position: fixed;
        top: 20px;
        right: 20px;
        border-radius: 4px;
        z-index: 999;
    }

    .mobile_number {
        visibility: hidden;
    }

    body>header>nav {
        z-index: 1;
    }

    .hero-image {
        min-height: 400px;
    }
}

a.burger.clicked {
    transition: 0.2s;
    right: -190px;
}

p.mobile_number {
    color: #fff;
    margin: 10px 0 0px -55px;
}

/* Lock the body scroll */
body.lock-scroll {
    overflow: hidden;
}

/* Allow the slider container to scroll */
.mz_slider .left-screen {
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    /* Optional: for smooth snapping between items */
}

.mz_slider .myslider .item {
    scroll-snap-align: start;
    /* Optional: for smooth snapping */
}

.form-main .form-control::placeholder {
    color: #515151;
}


/* ////////////////////////////////////about_us//////////////////////////////////////////// */
.about_us {
    background-image: url(../img/a_bg1.png) !important;
    min-height: unset;
}

.about_us .left-text {
    top: 386px;
}

.about_us .row {
    height: 740px;
}

.about_us::before {
    display: none;
}

.about_us h1 {
    color: #BE984E;
    margin: 0 0 20px;
}

.about_us h1 span {
    color: #fff;
    font-size: 94px;
    line-height: 84px;
}

.about_us p {
    font-size: 30px;
    color: #fff;
    line-height: 127.1%;
    margin: 0 0 30px;
}

.ser_clint {
    padding: 30px 0;
}

.ser_clint ul {}

.ser_clint ul li {
    padding: 0;
}

.ser_clint ul li img {
    max-width: 110px;
}

.mz_about_sec1 {
    padding: 50px 0;
}

.mz_about_sec1 h2 {
    font-size: 50px;
    text-transform: capitalize;
}

.yellow {
    color: #BE984E;
}

.mz_about_sec1 p {
    width: 88%;
}

.p_bold {
    color: #212121;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
}

.mz_about_sec1 .imgwrp img {
    width: 100%;
}

.mz_about_sec1 .imgwrp img {
    width: 100%;
    margin: 0 0 80px;
}

.mz_bout_tabbing .nav-tabs {
    justify-content: flex-end;
    border: none;
}

.tab-content {
    background: url(../img/a_tabs.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px 50px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 33px;
}

.mz_bout_tabbing {
    padding: 50px 0 310px;
}

.mz_bout_tabbing h2 {
    color: #BE984E;
    font-size: 50px;
}

.mz_bout_tabbing p {
    color: #fff;
    font-size: 18px;
    width: 86%;
}

.mz_bout_tabbing .mission_ul {
    color: #fff;
    margin: 0 0 0 30px;
}

.mz_bout_tabbing .mission_ul li {
    position: relative;
    font-size: 18px;
    font-weight: 700;
}

.mz_bout_tabbing .mission_ul li::before {
    content: "";
    position: absolute;
    left: -30px;
    background: #be984e;
    width: 8px;
    height: 8px;
    top: 9px;
    border-radius: 50%;
}

.mz_bout_tabbing li.nav-item {
    padding: 0;
}

.mz_bout_tabbing li.nav-item button {
    background: #E8E8E8;
    width: 223px;
    height: 63px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: #939393;
    font-size: 18px;
    font-weight: 600;
    transition: 0.5s;
    border: none;
}

.mz_bout_tabbing li.nav-item button.active {
    background: #BE984E;
    color: #fff;
}

.mz_bout_tabbing li.nav-item button:hover {
    background: #be984e;
    color: #fff;
    border: none;
}

.ser_btm {
    background-color: #fff;
}

.mz_about_cta {
    background-image: url(../img/cta-bg1.png);
    padding: 94px 0px;

}

.mz_about_cta .imgwrp {
    width: 100%;
    position: relative;
}

img.cta-img {
    position: absolute;
    top: -239px;
    max-width: 100%;
}

.mz_about_cta h2 {
    font-size: 50px;
    text-transform: capitalize;
}

span.green {
    color: #00563a;
}

.mz_about_cta p {
    font-size: 18px;
    margin: 0 0 30px;
    font-weight: 500;
}

.mz_about_cta .btn_wrp .btn2:hover {
    color: #fff;
    border-color: #fff;
}

/* ////////////////////////////////////contact_us//////////////////////////////////////////// */

.contact_us {
    background-image: url(../img/contact_us_bg.png);
    min-height: unset;
}

.contact_us::before {
    display: none;
}

.contact_us .row {
    height: 500px;
}

.mz_map {
    padding: 50px;
}

.mz_map iframe {
    border-radius: 30px;
}

footer.contact_footer {
    padding: 70px 0 0;
}

.contact_us_sec {
    padding: 20px 0 70px;
}

.contact_us_sec .form-group {
    padding-bottom: 19px !important;
}

.contact_us_sec textarea.form-control {
    height: auto;
}

.contact_us_sec h2 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

.contact_us_sec p {
    font-size: 20px;
    width: 90%;
    margin: 0 0 30px;
}

.contact_us_sec ul li {
    padding: 0 180px 0 0px;
}

.contact_us_sec ul li h5 {
    color: #be984e;
    font-size: 30px;
}

.contact_us_sec ul li p {
    font-size: 20px;
    width: 229%;
    font-weight: 500;
}

.submit_btn {
    margin: 30px 0 0;
}

.submit_btn .sbtn {
    width: 30%;
    font-size: 20px;
}

.contact_us_sec textarea.form-control::placeholder {
    color: #515151 !important;
}

.contact_us_sec p {
    font-size: 18px;
    font-weight: 500;
}

/* ////////////////blog//////////////////// */

.blog_main {
    background-image: url(../img/blog_bg.png) !important;
    min-height: unset;
}

.blog_btm ul {
    display: flex;
    position: relative;
    justify-content: center;
}

.blog_btm ul li {
    padding: 0 4px 0;
}

.blog_btm ul li a {
    color: #313030;
    font-size: 22px;
    font-weight: 500;
}

.blog_btm {
    margin: 36px 0 -90px;
}

.blog_btm ul li a img {
    margin: -6px 0 0px;
}

/* //////////////////portfolio////////////////// */


.portfolio_main {
    background-image: url(../img/port_bg.png) !important;
    min-height: unset;
}

.mz_portfolio {
    background-image: url(../img/port_bg1.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top;
    padding: 70px 0 0;
}

.mz_portfolio h2 {
    font-size: 50px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 50px;
    text-align: center;
}

.mz_portfolio .container>p {
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 60px;
    text-align: center;
}

.text-box {
    background: #00563A;
    height: 481px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 50px 0;
}

.text-box h3 {
    font-size: 60px;
}

.text-box p {
    font-size: 16px;
}

.text-box a {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.text-box a::before {
    content: "";
    position: absolute;
    right: -20px;
    width: 2px;
    height: 100%;
    background: #fff;
    top: 0;
}

.mz_portfolio .row {
    justify-content: center;
    --bs-gutter-x: 0;
}

.mz_portfolio .col-lg-4 {
    width: 390px !important;
}

.m_ht1 {
    --bs-gutter-y: -111;
}

.yellow_bg {
    background-color: #BE984E;
}

/* .text-box a:hover::before
{
    left: -10px;
    transition: 0.5s;
} */
.m_ht2 {
    --bs-gutter-y: -222;
}

.m_ht3 {
    --bs-gutter-y: -384;
    height: 383px;
}

.m_ht4 {
    --bs-gutter-y: -481;
}

.m_ht7 {
    --bs-gutter-y: -260;
}

.m_ht6 {
    --bs-gutter-y: -642;
    height: 642px;
}

.m_ht02 {
    height: 642px;
}

.blog_page {
    padding: 0;
    margin: -60px 0 0px;
}


/* //////logo_port////////// */

.logo_port {
    background-image: url(../img/logo_port_banner.png) !important;
}

.logo_clt {
    background-color: #ece0ca;
    background-image: none;
}

.mz_industries {
    padding: 70px 0;
}

.mz_industries h2 {
    font-size: 50px;
    text-align: center;
    line-height: 127.1%;
    margin-bottom: 30px;
    font-weight: bold;
}

.mz_industries .box {
    text-align: center;
    background: #ece0ca;
    border-radius: 15px;
    padding: 40px 0;
    transition: 0.5s;
}

.mz_industries .box h4{
    color: #212121;
    font-size: 18px;
    margin: 10px 0 0;
    font-weight: bold;
}
.mz_industries .box:hover {
    background: #00563a;
}

.mz_industries .box:hover h4 {
    color: #fff;
}
.mz_industries .row{
    --bs-gutter-y: 19px;
} 
.slick-slide img {
    width: 100%;
}
.port_blog {
    padding: 0px 0 0px;
    margin: -60px 0 0px;
}

/* ////////logo Portfolio Inner//////////////// */

.mz_portfolio_inner{
    background-image: url(../img/port_bg1.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 100px 0 70px;
}
.mz_portfolio_inner .row {
    justify-content: center;
    --bs-gutter-x: -8rem;
    --bs-gutter-y: 2rem;
}

/* ////////website  Development//////////////// */
.website_main{
    background-image: url(../img/web_banner.png) !important;
}

.website_main p {
    font-size: 20px;
    margin: 0 0 40px;
}
.web_clt{
    background-color: #F1F1F1;
    background-image: none;
    padding: 40px 0;
}

.clint_slider3 .slick-slide img {
    width: 60%;
}

.mz_services{
    padding: 70px 0;
}
.mz_services h2{
    font-size: 50px;
    text-align: center;
}
.mz_services h2 span{
    display: block;
}
.mz_services p{
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    margin: 0 0 50px;
}
.mz_services .box{
    background: #00563A;
    border-radius: 15px;
    padding: 30px 30px;
    margin: 0 6px 0;
}
.mz_services .box h3{
    font-size: 25px;
    color: #fff;
    line-height: 127.1%;
}
.mz_services .box img{
    max-width: 40px;
    margin: 0 0 10px;
}
.mz_services button {
    background: none;
    border: none;
}
button.slick-prev.pull-left.slick-arrow {
    position: absolute;
    left: -80px;
    top: 56px;
}
button.slick-next.pull-right.slick-arrow {
    position: absolute;
    right: -80px;
    top: 56px;
}
.mz_work h2 {
    font-size: 50px;
}

.mz_work h2 span {
    display: block;
}
.mz_work p {
    font-size: 18px;
    font-weight: 500;
}
.mz_work {
    padding: 60px 0;
}
.clint_slider5{
    padding: 50px 0 0;
}
.clint_slider5 img{
    width: 95%;
}
.mz_work .btn_wrp{
    text-align: center;
    margin: 60px 0 0;
}
.mz_developer .box {
    background: #F3F3F3;
    padding: 30px 37px 10px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0px 17px 16px #73737369;
}


.mz_developer .box h4 {
    font-size: 25px;
    font-weight: bold;
}

.mz_developer .box p {
    font-size: 18px;
    font-weight: 500;
    color: #737373;
}

.mz_developer .box img {
    width: 20%;
    margin: 0 0 10px;
}
.mz_developer h2{
    font-size: 50px;
    text-align: center;
}
.mz_developer {
    text-align: center;
    padding: 70px 0 90px;
}
.mz_developer>.container p {
    margin: 0 0 30px;
}
.mz_process {
    background: #DFC694;
    padding: 70px 0;
}
.mz_process h2 {
    text-align: center;
    font-size: 50px;
}

.mz_process p {
    text-align: center;
    margin: 0 0 40px;
}
.mz_process .box p {
    text-align: left;
    font-size: 18px;
    width: 80%;
}

.mz_process .box h3 {
    font-size: 50px;
    font-weight: bold;
}

.mz_process .box h4 {
    font-size: 25px;
    font-weight: bold;
    color: #212121;
}
.mz_process .box {
    position: relative;
}

.mz_process .box::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background: #958360;
    left: -30px;
}

.mz_process .box::after {
    content: "";
    position: absolute;
    top: auto;
    left: -29px;
    bottom: 75px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid #00563A;
    transform: rotate(91deg);
}
.bdr-none::after,.bdr-none::before{
    display: none;
}

/* //////digital////////// */

.marketing_banner {}

.marketing_banner h1 {
    color: #fff;
}
.marketing_banner p {
    font-size: 20px;
}
.marketing_banner span {
    color: #be984e !important;
    display: unset !important;
}
.digital_banner_ul {
    margin: 0 0 30px 30px;
}

.digital_banner_ul li {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    position: relative;
    margin: 0 0 5px;
}
.digital_banner_ul li::before {
    content: url(../img/digi_chek.png);
    position: absolute;
    left: -40px;
    top: 0;
}
.digital_sec{
    background-image:none;
}
.digital_sec h2 {
    line-height: 50px;
    margin: 0 0 30px;
}
.digital_sec p {
    margin: 0 0 20px;
}
.digital_sec ul {
    margin: 0 0 40px;
}

.digital_sec ul li {
    font-size: 18px;
    margin: 0 0 20px;
}
.digital_sec ul li img {
    width: 4%;
    margin: 0 10px 0px 0;
}
.mz_stats {
    background: #00563a;
    text-align: center;
    padding: 70px 0;
    color: #fff;
}
.mz_stats h2 {
    margin: 0 0 50px;
    font-size: 50px;
}

.mz_stats h3 {
    color: #be984e;
    font-size: 50px;
    font-weight: 600;
}

.mz_stats p {
    font-size: 18px;
}
.bdr{
    border-left:none  !important;
}
.mz_stats .col-lg-4 {
    border-left: 1px solid;
}
.mz_stats .col {
    border-left: 1px solid;
}

.mz_ser_tab {
    padding: 70px 0;
}

.mz_ser_tab ul {
    border: none;
}

.mz_ser_tab .tab-content {
    background: none;
}
.mz_ser_tab ul li {
    padding: 0;
    border-bottom: 2px solid #C0C0C0;
    width: 19.1%;
}

.mz_ser_tab .tab-content {
    background: none;
}
.mz_ser_tab ul li button.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* Move to the center of the button */
    transform: translateX(-50%); /* Offset by 50% of its width to align center */
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #00563A;
}

.mz_ser_tab ul li button {
    position: relative;
    font-size: 25px;
    background: none;
    padding: 0px 10px 10px;
    width: 100%;
    color: #8C8C8C;
    transition: 0.5s;
}
.mz_ser_tab ul li button:hover{
    border: none;
    border-bottom: 3px solid #00563A !important;
    border-top-left-radius: none;
    border-top-right-radius: none;
    color: #00563A;
}
.mz_ser_tab ul li button.active {
    background: none;
    border-bottom: 3px solid #00563A !important;
    border: none;
    font-weight: bold;
    font-family: 'sf_bold';
    color: #00563A !important;
}

.nav-tabs .nav-link {
    border-top-left-radius: none !important;
    border-top-right-radius: none !important;
}
.mz_ser_tab .container>h2 {
    text-align: center;
    font-size: 50px;
}

.mz_ser_tab .container>p {
    font-size: 18px;
    text-align: center;
    margin: 0 0 40px;
}
.mz_ser_tab .tab-content img {
    width: 500px;
    height: 470px;
}
.mz_ser_tab .tab-content h2 {
    font-size: 50px;
}
.mz_ser_tab .tab-content p {
    width: 91%;
    font-size: 18px;
}
.mz_ser_tab .tab-content .imgwrp {
    text-align: center;
}
.mz_optimize {
    padding: 60px 0 130px;
    text-align: center;
}

.mz_optimize h2 {
    font-size: 50px;
    text-transform: capitalize;
    line-height: 50px;
}
.mz_optimize p {
    font-size: 18px;
    margin: 0 0 70px;
}
.mz_optimize img {
    max-width: 610px;
    object-fit: cover;
}
.mz_optimize .animation img {
    opacity: 1;
    top: -90px;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 50%; /* Move to the center of the button */
    max-width: 800px;
    transform: translateX(-50%);
    /* animation: rotateAnimation 2s linear infinite;  */
}
/* @keyframes rotateAnimation {
    from {
        transform: rotate(0deg); 
    }
    to {
        transform: rotate(360deg); 
    }
} */