@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Tokyo+Zoo&display=swap');

:root {
    --footer-bg: #1d1d1d;
    --gray: #bdb7b7;
    --gray-light: #00000003;
    --gray-text: #655f5f;
    --dark-gray: #414142;
    --white: #fff;
    --black: #000000;
    --hover: #26890d;
    --hover-bg: #43b02a;

    --transition: all 300ms linear;
    --margin20: 24px;
    --margin30: 25px;
    --margin40-50: 40px;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body{
    direction: ltr;
    font-family: 'Spectral', sans-serif !important;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sectionMM2 {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .sectionMM2 {
        padding: 80px 0;
    }
}

h1 {
    font-family: 'Zen Tokyo Zoo',
    sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase
}

h2,
h3,
h4,
h5 {
    font-family: 'Zen Tokyo Zoo',
    sans-serif;
    font-weight: 900;
    margin-bottom: var(--margin20);

    text-transform: uppercase
}

h2 {
    font-size: 1.55rem;
    margin-bottom: var(--margin30);
}

@media (min-width: 768px) {
    h1 {font-size: 2.75rem;}
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover,
a:focus {
    color: var(--hover);
}
.headerMM2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;

    background-color: var(--black);
}

.logoMM2 {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 19px 0;
    text-align: center;
    color: var(--white);
    margin-right: 0;
    transition: var(--transition);
}
@media (max-width: 480px) {
    .logoMM2 {
        flex-direction: column!important;
    }
}

.logoMM2:hover {
    color: var(--hover)
}
.logo-imgMM2 {
    height: 45px;
    width: 45px;
    margin-right: 6px;
    margin-left: 6px;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .header__logoMM2 {
        padding-top: 19px;
        padding-bottom: 19px;
    }
}
.header__navMM2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 992px) {
    .header__navMM2 {
        gap: var(--margin30);
    }
}

.menu-btnMM2 {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;

    border-radius: 50%;
    border: 2px dotted var(--white);
    fill: var(--white);
    background-color: transparent;

    transition: var(--transition);
}

.menu-btnMM2:hover,
.menu-btnMM2:focus {
    fill: var(--hover);
    border: 2px dotted var(--hover);
}

@media (min-width: 992px) {
    .menu-btnMM2 {
        display: none;
    }
}

.backdropMM2 {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);

    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    overflow-y: scroll;
    transition: var(--transition);
}

.backdropMM2.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 500px) {
    .menu-containerMM2 {
        max-width: 320px;
    }
}

@media (max-width: 991px) {
    .menu-containerMM2 {
        position: fixed;
        top: 0;
        right: 0;
        display: none;

        height: 100vh;
        width: 440px;
        padding: var(--margin20);

        background-color: var(--black);
    }

    .menu-containerMM2.is-open {
        display: flex;
        flex-direction: column;
        gap: var(--margin30);
        z-index: 5;
    }
}

@media (min-width: 992px) {
    .menu-containerMM2 {
        display: flex;
        flex: 1;
        align-items: center;
    }
}

.menu__close-btnMM2 {
    margin-right: auto;
    background-color: transparent;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .menu__close-btnMM2 {
        display: none;
    }
}

.menu__icon-closeMM2 {
    fill: var(--white);
    transition: var(--transition);
}

.menu__icon-closeMM2:hover {
    fill: var(--hover);
}

.header__listMM2 {
    list-style: none;
    padding: 6px;
    margin-top: var(--margin20);
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .header__listMM2 {
        display: flex;
        align-items: center;
        padding: 0;
        margin-top: 0;
    }
}
@media (max-width: 991px) {
    .header__itemMM2:not(:last-child) {
        margin-bottom: 25px;
    }
}

@media (min-width: 992px) {
    .header__itemMM2 {
        text-align: start;
    }
}
.header__linkMM2 {
    display: block;

    font-weight: 700;
    font-size: 18px;
    line-height: 1.17;
    color: var(--white);
    transition: var(--transition);
}
@media (min-width: 992px) {
    .header__linkMM2 {
        padding: 25px 12px;
        font-size: 12px;
        line-height: 1.14;
        color: var(--white);
    }
}
.activeMM2 {
    font-weight: 900;
}

.dropdownMM2 {
    position: relative;
    display: block;
    color: var(--white);
}
.dropdown-btnMM2 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    transition: var(--transition);
    background-color: transparent;
}
.dropdown-btn-textMM2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.17;
    color: var(--white);
    transition: var(--transition);
}
@media (min-width: 992px) {
    .dropdown-btnMM2 {
        padding: 25px 12px;
    }
    .dropdown-btn-textMM2 {
        font-size: 12px;
        line-height: 1.14;
        color: var(--white);
    }
}
.dropdown-btnMM2:hover .dropdown-btn-textMM2 {
    color: var(--hover);
}
.dropdown-btn-activeMM2 {
    color: var(--hover);
}
.dropdown-iconMM2 {
    width: 20px;
    height: 20px;
    fill: var(--white);
    transition: var(--transition);
}
@media (min-width: 992px) {
    .dropdown-iconMM2 {
        margin-left: 6px;
        margin-right: 5px;
        width: 16px;
        height: 16px;
    }
}
.dropdown-icon-upMM2 {
    fill: var(--hover);
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .dropdown-contentMM2 {
        display: none;
        padding: 24px 0 0 19px;
    }
}
@media (min-width: 992px) {
    .dropdown-contentMM2 {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        background-color: #ffffff;
        min-width: 250px;
        padding: 24px 19px;
        box-shadow: 0px 7px 19px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
}
.dropdown-open {
    display: block;
}

.dropdown-itemMM2 {
    display: block;
    line-height: 1.17;
    margin-bottom: 19px;
    color: #afa2a2f7;
    transition: var(--transition);
}
@media (min-width: 992px) {
    .dropdown-itemMM2 {
        padding: 12px;
        margin-bottom: 0;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.14;
        color: var(--black);
    }
}

.header-right-boxMM2 {
    gap: 15px;
    margin-top: 40px;
}
.header-phoneMM2 {
    display: flex;
    align-items: center;
    gap: 9px;
    
    color: var(--white);
}
.header-phone-iconMM2 {
    width: 23px;
    height: 23px;
    fill: var(--white);
    transition: var(--transition);
}
.header-phoneMM2:hover .header-phone-iconMM2 {
    fill: var(--hover);
}
.header-phoneMM2:hover .dropdown-btn-textMM2 {
    color: var(--hover);
}
@media (min-width: 992px) {
    .header-phoneMM2,
    .header-right-boxMM2 {
        margin: 0 ;
    }
    .header-phone-iconMM2 {
        width: 25px;
        height: 25px;
    }
}

.header-whatsupMM2 {
    font-size: 1.3rem;
    color: var(--white);
}
@media (min-width: 992px) {
    .header-whatsupMM2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .heroMM2 {
        background-color: var(--dark-gray);
    }
    .hero-mobile-bgMM2 {
        height: 350px;
        background-image: url(assets/images/bg-dB0.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}
.hero__boxMM2 {
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
@media (min-width: 768px) {
    .heroMM2 {
        position: relative;
        height: 100%;
        min-height: 100vh;
        width: 100%;

        color: var(--white);
        background-image: url(assets/images/bg-dB0.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .hero-mobile-bgMM2 {
        display: none;
    }
    .heroMM2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 43%;

        background: linear-gradient(90deg, rgba(0, 0, 0, 1) 68%, rgb(0 0 0 / 90%) 92%, rgb(0 0 0 / 83%) 100%) no-repeat;

        background-size: cover;
        background-position: center;
        z-index: 1;
    }
    .hero-containerMM2 {
        position: relative;
    }
    .hero__boxMM2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 41%;
        padding: 130px 0 60px;

        padding-left: 19px;

        padding-right: 19px;
        text-align: center;
        background-color: transparent;
        z-index: 3;
    }
}
@media (min-width: 1700px) {
    .hero__boxMM2 {
        width: 39%;
    }
}

.hero__titleMM2 {
    padding-bottom: 40px;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .hero__titleMM2 {
        padding: 40px 0;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .hero__titleMM2 {
        padding: 150px 0 43px 0;
        margin-top: 0;
    }
}
.hero-textMM2 {
    margin-bottom: var(--margin30);
}
.hero-phoneMM2 {
    text-align: center;
}
.hero-phoneMM2 {
    display: inline-block;
    padding: 12px 25px;

    font-size: 1.15rem;

    background-color: #321D2F;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 15px 25px,
    rgba(0, 0, 0, 0.22) 0px 12px 12px;

    color: var(--white);

    transition: var(--transition);
}
@media (min-width: 991px) {
    .hero-btnMM2.text-lg-center .hero-phoneMM2 {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .hero-bgMM2 {
        height: 325px!important;
    }
}
.hero-phoneMM2:hover {
    color: var(--hover-bg);
}

.reasonsMM2 {
    padding: 80px 0 0;
}
@media (min-width: 992px) {
    .reasonsMM2 .row {
        width: 70%;
        margin: 0 auto;
    }
    .reasons-titelMM2 {
        width: 70%;
        margin: 0 auto var(--margin30);
    }
}

.reasons-colMM2 {
    flex-wrap: nowrap;
    align-items: center;
}
.reasons-colMM2 {
    margin-bottom: 19px;
}
.reasons-colMM2:hover .reason-iconMM2 {
    animation: animate__fadeIn;
    animation-duration: 500ms;
}
.reason-iconMM2 svg {
    width: 24px;
    height: 24px;
    fill: #000000b3;
}
.reasons-textMM2 {
    font-size: 1.15rem;
}

.galleryMM2 {
    padding: 50px 0 24px;
}
.gallery-gridMM2 {
    width: 100%;
}
.gallery-itemMM2 {
    padding: 0 19px;
}
.gallery-linkMM2 {
    display: block;
    height: 190px;
}
.gallery-linkMM2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-dots {
    bottom: -50px;
}
.benefitsMM2 {
    padding: 80px 0 var(--margin20);
}
@media (min-width: 768px) {
    .benefitsMM2 .row {
        width: 90%;
        margin: 0 auto;
    }
}
.benefitsMM2 .col-md-6 {
    padding-right:0;
    padding-left: 0;
    margin-top:0;
    border: 5px solid var(--white);
}
.benefit-wrapperMM2 {
    width: 100%;
    height: 100%;
    background-color: var(--dark-gray);
    color: var(--white);
}
.benefits-colMM2 {
    flex-direction: column;
    align-items: center;
    padding: var(--margin30); 
}
.benefits-iconMM2 svg {
    width: 45px;
    height: 45px;
    fill: var(--hover-bg);
}
.benefit-textMM2 {
    text-align: center;
}
.benefitsMM2 .col-md-6:hover .benefits-iconMM2 {
    animation: animate__fadeIn;
    animation-duration: 500ms;
}

.contentMM2 {
    background-color: #00000003;
}
.content-titleMM2 {
    font-size: 2.25rem;
}
.content-wrapperMM2 {
    align-items: center;
    gap: 19px;
}
.content-picMM2 {
    width: 100%;
    border-radius: 6px;
}
@media (min-width: 768px) {
    .content-picMM2 {
        width: 80%;
    }
}
.content-picMM2 img {
    width: 100%;
    object-fit: contain;
    height:  462px;
}

.content-titleMM2 {
    font-size: 2.25rem;
}

.articlesMM2 {
    background-color: var(--gray);
    color: var(--black);
}
.articles-grid-elMM2 {
    margin-bottom: 19px;
    background-color: var(--white);
}
@media (max-width: 767px) {
   .side-barMM2 {
        display: none;
    } 
}

@media (min-width: 996px) {
    .articles-grid-elMM2 {
        margin-bottom: 0;
    }
    .aticles-gridMM2 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1.5fr 1.5fr;
        grid-gap: 0.6rem;

        grid-template-areas:
        "box-1 box-2 sidebar"
        "box-3 box-4 sidebar";
    }
    
    .side-barMM2 {
        background-color: var(--white);
    }

    #box-1 {
        grid-area: box-1;
    }

    #box-2 {
        grid-area: box-2;
    }

    #box-3 {
        grid-area: box-3;
    }

    #box-4 {
        grid-area: box-4;
    }
    #sidebar {
        grid-area: sidebar;
    }
    .articles-itemMM2 {
        display: flex;
        flex-direction: column;
        gap: 19px;  
    }
}

@media (min-width: 768px) {
    .side-barMM2 {
        background-color: #ffffff;
        color: var(--black);
    }
}
.sidebar-headerMM2 {
    display: none;
}
@media (max-width: 996px) {
    #sidebar {
        display: none !important;
    }
  
    #sidebar-serv {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .sidebar-headerMM2 {
        color: white;
        font-size: 2rem;
        display: flex;
        align-items: center;
        padding: 0 var(--margin20);
        width: 100%;
        height: 80px;
        background-color: var(--black);
    } 
}
.sidebar-contentMM2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 90%;
    padding: var(--margin20);
}        
.sidebar-menu-iconMM2 {
    display: none;
}
@media (min-width: 768px) {
    .sidebar-item-innerMM2 {
        display: flex;
        align-items: center;
        gap: 7px;
    }
    .sidebar-menu-iconMM2 {
        display: block;
    }
    .sidebar-menu-iconMM2 svg {
        width: 19px;
        height: 19px;
    }
    .sidebar-menu-itemMM2 {
        margin-bottom: 12px;
    }
    .sidebar-menu-itemMM2:hover .sidebar-menu-iconMM2 {
        fill: var(--hover);
    }
    .sidebar-menu-itemMM2:hover a {
        font-weight: 700;
    }
}

.articles-itemMM2 {
    height: 100%;
}

.articles-picMM2 {
    display: block;
    width: 100%;
    height: 224px;
}
.articles-picMM2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.articles-contentMM2 {
    padding: var(--margin20);

    display: flex;
    flex-direction: column;
    gap: 12px;
}
.articles-dateMM2 {
    font-size: 12px;
    color: var(--gray-text);
}
.articles-titleMM2 {
    font-size: 1.75rem;
    line-height: 1.1em;
}
.articles-textMM2 {
    color: var(--gray-text);
}
.about-textPP2 {
    font-size: 18px;
    line-height: 1.22em;
}
.articles-read-moreMM2 {
    display: inline-block;
    width: fit-content;
    padding: 6px 19px;
    background-color: #4241415e;;
    color: var(--hover-bg);
    transition: var(--transition); 
}
.articles-read-moreMM2:hover {
    color: var(--white);
}
.read-moreMM2 {
    line-height: 1.4em;
    font-weight: bold; 
}

.articlesMM2 {
    background-color: var(--gray);
    color: var(--black);
}
.servicesMM2 {
    background-color: var(--gray);
    color: var(--black);
}
.services-grid-elMM2 {
    background-color: var(--white);
}
@media (min-width: 996px) {
    .services-gridMM2 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1Fr;
        grid-gap: 0.6rem;

        grid-template-areas:
            "block-1 block-1 sidebar-serv"
            "block-2 block-2 sidebar-serv"
            "block-3 block-3 sidebar-serv"
            "block-4 block-4 sidebar-serv";
    }
    #block-1 {
        grid-area: block-1;
    }

    #block-2 {
        grid-area: block-2;
    }

    #block-3 {
        grid-area: block-3;
    }

    #block-4 {
        grid-area: block-4;
    }

    #sidebar-serv {
        grid-area: sidebar-serv;
    } 
}
.services-grid-elMM2 {
    margin-bottom: 19px;
    background-color: var(--white);
}
.services-itemMM2 {
    display: flex;
    height: 100%;
}
@media (max-width: 767px) {
    #block-1 .services-itemMM2,
    #block-3 .services-itemMM2 {
        flex-direction: column-reverse;
    }
    #block-2 .services-itemMM2,
    #block-4 .services-itemMM2 {
        flex-direction: column;
    }
}

.services-picMM2 {
    display: block;
    width: 100%;
    height: 80px;
}
.services-picMM2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 768px) {
    .services-grid-elMM2 {
        margin-bottom: 0;
    }
    .services-itemMM2 {
        flex-direction: row-reverse;
        gap: 19px;
    }
    .services-picMM2 {
        flex: 0.5;
        height: 100%;
        width: 100%;
    }
    .services-picMM2 img {
        width: 100%;
        height: 100%;
    }
}
.services-contentMM2 {
    flex: 1;
    padding: var(--margin20);

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.services-dateMM2 {
    font-size: 12px;
    color: var(--gray-text);
}

.services-titleMM2 {
    font-size: 1.75rem;
    line-height: 1.1em;
}

.services-textMM2 {
    color: var(--gray-text);
}
.read-moreMM2 {
    line-height: 1.4em;
    font-weight: bold;
}
.statsMM2 {
    padding: 40px 0;
    background-color: var(--white);
    background-attachment: fixed;
}
.stats-flexMM2 {
    display: flex;
    flex-direction: column;
    gap: var(--margin20);
}
.stats-text-wrapperMM2 {
    padding: var(--margin20);
    color: var(--black);
}
.stats-gridMM2 {
    padding: var(--margin20);
}
.stats-gridMM2 .row{
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
@media (min-width: 768px) {
    .stats-flexMM2 {
        flex-direction: row-reverse;
    }
    .stats-text-wrapperMM2 {
        flex: 1;
        padding: 35px var(--margin20);
    }
    .stats-gridMM2 {
        flex: 1;
    }
}
@media (min-width: 992px) {
    .stats-gridMM2 {
        flex: 1.5;
        padding: 0;
    }
    .stats-text-wrapperMM2 {
        flex: 1;
        padding: 12px var(--margin20);
    }
}
.stats-colMM2 {
    padding: 12px 0;
}
.stats-num-wrapperMM2 {
    padding: 19px;
    text-align: center;
    background-color: #414142;
    color: var(--white);
    height: 100%;
}
@media (min-width: 992px) {
    .stats-colMM2 {
        padding: 12px;
    }
    .stats-num-wrapperMM2 {
        padding: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
.stats__numberMM2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--hover-bg);
}
@media (min-width: 768px) {
    .stats__nameMM2 {
        padding: 12px;
        margin-top: 19px;
        font-size: 1rem; 
    }
}
@media (min-width: 992px) {
    .stats__nameMM2 {
        margin-top: 0;
        margin-top: 0;
    }
}
.video-sectionMM2 {
    position: relative;
    height: 300px;
}

.videoMM2 {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
}



.blogMM2 {
    background-color: var(--white);
    color: var(--black)
}
.blog-titelMM2 {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
}
.accordion {
    max-width: 890px;
    margin: 0 auto;
}

.blogMM2 .accordion-item {
    border-top-width: 0;
    background-color: transparent;
    border: none;
}

.blogMM2 .accordion-item:not(:first-child) {
    margin-top: var(--margin20);
}

.accordion-header {
    background-color: var(--gray);
}

.accordion-button {
    font-size: 18px;
    font-weight: 700;
    padding: 19px 29px;
    color: var(--black);
    background-color: transparent;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.accordion-button:not(.collapsed) {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    background-color: var(--gray)
}

.accordion-button:hover {
    color: var(--hover-bg)
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding-top: 35px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 45px;
    color: var(--black);
}

.teamMM2 {
    color: var(--black);
    background-image:
            linear-gradient(rgb(0 0 0 / 74%), rgb(0 0 0 / 74%)), url(assets/images/fade-overlay-1920x10800.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.team-flexMM2 {
    width: 75%;
    margin: 0 auto;
}
.team-flex-itemMM2 {
    flex: 1;
}
.team-itemMM2 {
    background-color: var(--white);
    margin-bottom: 25px;
}
.team-titleMM2 {
    font-size: 2rem;
    text-align: center;
    color: var(--white)
}
@media (min-width: 768px) {
    .team-flexMM2 {
        display: flex;
        
        margin: 0 auto;
        gap: var(--margin20);
    }
    .team-titleMM2 {
        margin-bottom: 3.5rem;
        text-align: center;
    }

    .team-itemMM2 {
        display: flex;
        flex-direction: column;
        gap: 19px;
    }
}
.team-dataMM2 {
    padding: 40px 19px;
}


.section-formMM2 {
    background-color: var(--gray);
}
.section-form-flexMM2 {
    display: flex;
    flex-direction: column;
    gap: var(--margin20);
    background-color: var(--white);
}
.section-form__titelMM2{
    font-weight: 900;
    color: var(--black);
}
.form-box {
    padding: 40px 19px;
}

@media screen and (min-width: 768px) {
    .section-form-flexMM2 {
        flex-direction: row-reverse;
    }
    .form-box {
        flex: 1;
    }
}

.form label {
    color: rgb(49 45 45 / 55%);
}

.form .input-field_fieldcontrol,
.form .textarea-field_fieldcontrol {
    width: 100%;
    padding: 12px 12px;
    margin-bottom: 19px;

    background-color: transparent;
    border-bottom: 2px solid rgb(49 45 45 / 55%);
    color: var(--black);
}

.form .input-field_fieldcontrol::placeholder,
.form .textarea-field_fieldcontrol::placeholder {
    color: rgb(49 45 45 / 55%);
}

.form .textarea-field_fieldcontrol {
    height: 5em;
    margin-bottom: 6px;
}

:focus-visible {
    outline: 0px;
}

.policy-agreement {
    margin-bottom: var(--margin30);
}

.policy-agreement .agreement-input {
    margin-right: 7px;
}

.policy-agreement .agreement-input:checked {
    accent-color: var(--hover);
}

.form .agreement-label {
    color: var(--grey);
}

.agreement-privacy-link {
    margin-left: 3px;
    color: inherit;
    font-weight: 700;
    transition: var(--transition);
}

.agreement-privacy-link:hover {
    color: var(--hover);
}

.form .submit-btn-4 {
    width: 90%;
    font-size: 1rem;
}

@media (min-width: 500px) {
    .form .submit-btn- 4 {
        width: 50%;
    }
}

.section-form-pic-boxMM2 {
    display: none;
}

@media (min-width: 768px) {
    .section-form-pic-boxMM2{
        display: block;
        flex: 0.5;
    }
}
.section-form__picMM2 {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.commentsMM2 {
    background-color: var(--white);
}
.comments-listMM2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-left: 0;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.comments-itemMM2 {
    flex-direction: column-reverse;
    padding: 24px;
    gap: var(--margin20);
}

@media (min-width: 768px) {
    .comments-itemMM2 {
        flex-direction: row;
    }
}
@media (min-width: 992px) {
    .comments-itemMM2 {
        padding: 22px 154px;
    }
}
@media (min-width: 1200px) {
    .comments-itemMM2 {
        padding: 22px 235px;
    }
}
@media (min-width: 1400px) {
    .comments-itemMM2 {
        padding: 22px 325px;
    }
}

.comment-tex-wrapperMM2 {
    border: 19px solid var(--hover);
}

.comment-textMM2 {
    width: 100%;
    background-color: rgb(255, 255, 255);
    padding: 25px 12px;
}
@media (min-width: 768px) {
    .comment-tex-wrapperMM2 {
        position: relative;
        flex: 0.7;
        margin-bottom: 40px;
    }
    .comment-textMM2 {
        position: absolute;
        top: 22px;
        left: 60px;
        width: 155%;
        z-index: 1;
        padding: 7px 12px;
    } 
}
.comments-descMM2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0px 35px 0px;
    text-align: center;
}
@media (min-width: 768px) {
    .comments-descMM2 {
        align-items: flex-end;
        padding: 100px 12px 0px;
    }
}
.comment-starMM2 {
    font-size: 18px;
    margin-bottom: 24px;
}
.comments-picMM2 {
    width: 170px;
    height: 170px;

    border-radius: 50px;
    overflow: hidden;
}
@media (min-width: 768px) {
   .comments-picMM2 {
        width: 120px;
        height: 120px;
    } 
}
.comments-picMM2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.bottom-buttons-menuMM2 {
    background-color: #414142;
    color: #d0d0ce;
}

@media (max-width: 767px) {
    .bottom-buttons-flexMM2 {
        flex-direction: column;
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .bottom-buttons-flexMM2 {
        justify-content: space-between;
        align-items: center;
    }
}
.bottom-buttons-menu__listMM2 {
    padding: 5px 0;
    margin-bottom: 0;
}
.bottom-buttons-menu__itemMM2 {
    padding: 12px;
}
@media (max-width: 767px) {
    .bottom-buttons-menu__itemMM2:not(:last-child) {
        border-bottom: 2px solid var(--black);
    }  
}

.bottom-buttons-menu__itemMM2 a {
    font-size: 18px;
    font-weight: 700;
}

.bottom-buttons-menu__itemMM2:hover a {
    color: var(--hover-bg);
}

@media (min-width: 768px) {
    .bottom-buttons-menu__listMM2 {
        display: flex;
        flex-direction: row;
    }
    .bottom-buttons-menu__itemMM2:not(:last-child) {
        border-right: 2px solid var(--black);
    }
}
@media (min-width: 992px)  {
    .bottom-buttons-menu__itemMM2 a {
        font-size: 1.2rem;
    }
    .bottom-buttons-menu__itemMM2 {
        padding: 12px 24px;
    } 
}
.bootom-logoMM2 {
    display: none;
}
@media (min-width: 992px) {
    .bootom-logoMM2 {
        display: block;
    }
    .bootom-logoMM2 a {
        display: block;
        justify-content: start;
        align-items: center;
    }
    .bootom-logoMM2 img {
        height: 25px;
    }
}


.footerMM2 {
    padding-top: 40px;
    background-color: var(--footer-bg);
    color: var(--white);
}
.footer-logoMM2 {
    margin-bottom: var(--margin30);
}
.footer-logoMM2 a {
    gap: 5px;
    align-items: center;
}
.footer-logoMM2 img {
    height: 40px; 
}
@media (min-width: 992px) {
    .footer-logoMM2 {
        display: none;
    }
}

.footerMM2 .row {
    row-gap: 25px;
}
.footerMM2 h5 {
    margin-bottom: 6px;
}
.footer-menuMM2 {
    width: 90%;
}
.footer-serv-menuMM2 {
    width: 80%;
}
.footer-menu-itemMM2{
    padding: 5px 0;
}
.footer-menu-itemMM2:hover a {
    text-decoration: underline;
}
.footer-serv-menu-itemMM2 {
    padding: 8px 0;
}
.footer-adressMM2 {
    width:90%;
}
.footer-adress-itemMM2 {
    padding: 5px 0;
    margin-bottom: 19px;
}
.footer-adress-itemMM2 h6 {
    margin-bottom: 6px;
    font-weight: 700;
}
.footer-adress-itemMM2 a {
    display: block;
}
.footer-whatsupMM2 {
    margin-top: 6px;
    font-size: 18px;
}
.footer-privacy-flexMM2 {
    margin-top: var(--margin20);
    color: #ffffffc4;
}
.footer-privacy-flexMM2 {
    flex-direction: column;
    gap: 19px;
    padding: 19px 0;
    font-size: 12px;
}
.footer-privacy-listMM2 {
    flex-direction: column;
    gap: 8px;
}
@media (min-width: 992px) {
    .footer-privacy-flexMM2 { 
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .footer-privacy-listMM2 {
        flex-direction: row-reverse;
        gap: 12px;
    }
}


.page-contentMM2 {
    margin-bottom: var(--margin40-50);
}

.page-titelMM2 {
    text-align: center;
}

.pape-rateMM2 {
    text-align: center;
    margin-bottom: var(--margin30);
    font-size: 18px;
}

.page-picMM2 {
    border-radius: 0px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pape-rateMM2 {
        text-align: start;
    }

    .page-titelMM2 {
        text-align: start;
    }

    .page-picMM2 {
        width: 90%;
        margin: 0 auto;
    }.page-picMM2 img {
        object-fit: contain;
        height: 462px;
        margin: 0 auto;
    }
}

.contacts-pageMM2 {
    padding: 80px 0 0;
}
.contacts-mapMM2 {
    width: 100%;

    height: 313px;
    border: 0;
}

.contacts-pageMM2 .form-boxMM2
{
    padding: 40px 0;
}
@media (min-width: 768px) {
    .contacts-pageMM2 .form-boxMM2 {
            width: 70%;
            margin: 0 auto;
        }
}
.contacts-pageMM2 .form-inputMM2,
.contacts-pageMM2 .form-textareaMM2 {
    width: 100%;
    padding: 12px 12px;
    margin-bottom: 19px;
    background-color: transparent;
    border-bottom: 2px solid rgb(49 45 45 / 55%);
    color: var(--black);
}

.footer__mail-linkMM2{
    word-break: break-all;
}
        

.paddingPrivacyBlock, .paddingAboutBlock{
    padding: 40px 0; 
    overflow-x: hidden;
}

.dopWidth{
    width: 44px;
}

.gallery-gridMM2, .comments-listMM2{
    direction: initial;
}

@media (max-width: 420px){

    .page-picMM2 img, .content-picMM2 img{
      height: auto;
    }
  
  }




        



