@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

:root {

    --accent-color: #0b4dea;
    --footer-bg: #1d1d1d;
    --gray: #bdb7b7;
    --white: #fff;
    --black: #000000;
    --hover: #ffcf43;

    --transition: all 300ms linear;

    --margin20: 23px;

    --margin30: 27px;

    --margin40-50: 48px;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    min-width: 320px;
}
body{
    direction: ltr;
    font-family: 'Lora', sans-serif !important;
    overflow-x: hidden
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}


.sectionPP2 {
    padding: 60px 0;
}

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

h1 {
    font-family: 'Dancing Script',
    sans-serif;
    font-size: 1.54rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: initial;
}

h2,
h3,
h4,
h5 {
    font-family: 'Dancing Script',
    sans-serif;
    font-weight: 800;
    margin-bottom: var(--margin20);

    text-transform: inherit
}

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

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

    h2 {font-size: 2.25rem;}
    h3 {font-size: 1.25rem;}
}

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

a:hover,
a:focus {
    color: var(--hover)
}

.headerPP2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;

    background-color: #00000078;
    
    box-shadow: rgba(0, 0, 0, 0.19) 0px 12px 23px, rgba(0, 0, 0, 0.23) 0px 4px 4px;
}

.logoPP2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    padding: 17px 0;
    font-size: 1rem;
    color: var(--white);
    margin-right: 0;

    overflow: hidden;
    background: linear-gradient(to right, var(--hover), var(--hover) 50%, var(--white) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
}

.logoPP2:hover {
    background-position: 0 100%;
}
.logo-imgPP2 {
    height: 54px;
    margin-right: 4px;
    margin-left: 4px;
}

@media (min-width: 480px) {
    .logoPP2 {
        font-size: 1.15rem;
    }

    .logo-imgPP2 {
        height: 62px;
    }
}

@media (max-width: 767px) {
    .header__logoPP2 {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

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

.menu-btnPP2 {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;

    border: none;
    fill: var(--white);
    background-color: transparent;

    transition: var(--transition);
}

.menu-btnPP2:hover,
.menu-btnPP2:focus {
    fill: var(--hover);
}

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

.backdropPP2 {
    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);
}

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

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

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

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

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

    .menu-containerPP2.is-open {
        display: flex;
        flex-direction: column;
        z-index: 5;
    }
}

@media (min-width: 768px) {
    .menu-containerPP2 {
        display: flex;
        align-items: center;
    }
}

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

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

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

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

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

@media (min-width: 768px) {
    .header__listPP2 {
        display: flex;
        align-items: center;
        padding: 0;
        margin-top: 0;
    }
}

.header__itemPP2 {
    text-align: center;
}

@media (max-width: 767px) {
    .header__itemPP2:not(:last-child) {
        margin-bottom: 27px;
    }
}

@media (min-width: 768px) {
    .header__itemPP2 {
        text-align: start;
    }
}
.header__linkPP2 {
    display: block;

    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: var(--white);
    transition: var(--transition);
}
@media (min-width: 768px) {
    .header__linkPP2 {
        padding: 27px 12px;
        font-size: 13px;
        line-height: 1.3;
        color: var(--white);
    }
}
.activePP2 {
    font-weight: 600;
}

.dropdownPP2 {
    position: relative;
    display: inline-block;
    color: var(--white);
}
.dropdown-btnPP2 {
    display: block;
    
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: var(--white);
    transition: var(--transition);
    background-color: transparent;
}
@media (max-width: 767px) {
    .dropdown-btnPP2 {
        width: 100%;
        text-align: center;
    }
}
@media (min-width: 768px) {
    .dropdown-btnPP2 {
        padding: 27px 12px;
        font-size: 13px;
        line-height: 1.3;
        color: var(--white);
    }
}
.dropdownPP2:hover .dropdown-btnPP2 {
    color: rgb(206, 150, 20);
    cursor: default;
}
@media (max-width: 767px) {
    .dropdown-contentPP2 {
        text-align: center;
        padding: 23px 0 0 17px;
    }
}
@media (min-width: 768px) {
    .dropdown-contentPP2 {
        display: none;
        position: absolute;
        left: 0;
        background-color: #ffffff;
        min-width: 250px;
        padding: 23px 17px;
        box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
}
.dropdownPP2:hover .dropdown-contentPP2 {
    display: block;
}
.dropdown-itemPP2 {
    display: block;
    line-height: 1.3;
    margin-bottom: 17px;
    color: #afa2a2f7;
    transition: var(--transition);
}
@media (min-width: 768px) {
    .dropdown-itemPP2 {
        padding: 12px;
        margin-bottom: 0;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        color: var(--black);
    }
}


.phone-menuPP2 {
    display: none;
    margin-left: 60px;
    margin-right: 12px;
    color: rgb(206, 150, 20);
}
@media (min-width: 1200px) {
    .phone-menuPP2 {
        display: block;
    }
}


.heroPP2 {
    padding: 90px 0 120px;

    background-image: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%), rgb(0 0 0 / 15%)), url(media/hero-bg_jRSK0.jpg);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    color: var(--white) ;
}

.hero__boxPP2 {
    text-align: center;
}
@media (min-width: 768px) {
    .hero__boxPP2 {
        text-align: left;
    }
}

.hero__titlePP2 {
    padding: 200px 0 100px 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .hero__titlePP2 {
        padding: 150px 0 100px 0;
        margin-top: 0;
    }
}
.hero-phonePP2 {
    text-align: center;
}

.phonePP2 {
    display: inline-block;
    padding: 12px 27px;

    font-size: 1.15rem;

    background-color: #0F3460;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 12px 27px,
    rgba(0, 0, 0, 0.22) 0px 12px 12px;
}
@media (min-width: 992px) {
    .phonePP2 {
        font-size: 1.54rem;
    }
}

@media (min-width: 576px) {
    .featuresPP2 {
        background-size: 120%;
        background-position: 70% 100%;
    }
}
.features-rowPP2 {
    margin: 0;
}

.features-itemPP2 {
    flex-direction: column;
    padding: 100px 27px 90px;
    
    margin: 0;
    align-items: center;
}
@media (min-width: 768px) {
    .features-itemPP2 {
        padding: 80px 27px 60px;
    }
}
.features-itemPP2:nth-child(2n + 1) {
    background-color: #040807;
    color: var(--white);
}
.features-itemPP2:nth-child(2n) {
    color: var(--black);
}
.features-itemPP2:nth-child(2) {
    background-color: #006F5F;
}
.features-itemPP2:nth-child(4) {
    background-color: #0F3460;
}

.features-iconPP2 {
   margin-bottom: var(--margin30); 
}
.features-iconPP2 svg {
    height: 40px;
    width: 40px;
}
.features-itemPP2:nth-child(2n + 1) .features-iconPP2 use {
    fill: var(--hover);
    transition: var(--transition);
}
.features-itemPP2:nth-child(2n) .features-iconPP2 use {
    fill: var(--white);
    transition: var(--transition);
}

.features-itemPP2:hover .features-iconPP2 use {
    fill: rgb(206, 150, 20);
}
.features-textPP2 {
    width: 60%;
    font-weight: 600;

    overflow: hidden;
    background: linear-gradient(to right, rgb(206, 150, 20), rgb(206, 150, 20) 50%, var(--white) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 275ms ease;
}
@media (min-width: 768px) {
    .features-textPP2 {
        width: 100%;
    }
}
.features-itemPP2:hover .features-textPP2 {
    background-position: 0 100%;
}

.contentPP2 {
    background: #141414; color: #fff;
}
.content-titlePP2 {
    margin-bottom: 35px;
    font-size: 2.75rem;
}

@media (min-width: 576px) {
    .content-titlePP2 {
        font-size: 3.75rem;
    }
}

.content-picPP2 {
    max-width: 100%;
    margin: var(--margin30) 17px;
    margin-bottom: var(--margin30);

    border-radius: 25px;
    overflow: hidden;
}

.content-picPP2.float-end,
.content-picPP2.float-start,
.content-picPP2.float-none {
    float: none !important;
    
}
@media (min-width: 768px) {
    .content-picPP2.float-end,
    .content-picPP2.float-start,
    .content-picPP2.float-none {
        max-width: 80%;
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .content-picPP2.float-end {
        max-width: 63%;
        margin: 0 0 23px 27px;
        float: right !important;
    }
    .content-picPP2.float-start {
        max-width: 63%;
        margin: 0 35px 23px 0;
        float: left !important;
    }
}


.price-blockPP2 {
    margin-top: var(--margin30);
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
}
@media (min-width: 768px) {
    .price-blockPP2 {
        flex-direction: row;
        justify-content: space-between;
        column-gap: 100px;
    }
}
@media (min-width: 992px) {
    .price-blockPP2 {
        column-gap: 170px;
    }
}
@media (min-width: 1200px) {
    .price-blockPP2 {
        column-gap: 200px;
    }
}
.pricePP2 {
    padding: 34px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.price-titlePP2,
.price-numberPP2 {
    font-size: 2.25rem;
    font-weight: 600;
}
@media (min-width: 450px) {
    .price-titlePP2,
    .price-numberPP2 {
        font-size: 2.54rem;
    }
}

.phone-button-boxPP2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.articlesPP2 {
    background: linear-gradient(black, black), url(media/hero-bg_jRSK1.jpg)   no-repeat;
    background-size: cover;
    background-blend-mode: saturation;
}
.articles-listPP2 .col {
    padding: 27px 0;
}

.articles-itemPP2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    height: 100%;
    margin: 0 auto;
    padding: var(--margin30) var(--margin20);

    background-color: #000000ad;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -27px 27px 0px inset, rgba(0, 0, 0, 0.15) 0px -34px 27px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 35px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 2px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 14px 8px, rgba(0, 0, 0, 0.09) 0px 32px 14px;

    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}
.articles-itemPP2:hover {
    background-color: #000000eb;
}

.articles-picPP2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 320px;
    margin-bottom: 27px;
}
.articles-picPP2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

        
.articles-contentPP2 {
    color: var(--white);
    text-align: center;
}
@media (min-width: 768px) {
    .articles-contentPP2 {
        text-align: center;
    }
}
.articles-titlePP2 {
    font-size: 1.4rem;
}
.articles-textPP2 {
    margin-top: var(--margin30);
    margin-bottom: 17px;
}
.read-morePP2 {
    color: #006F5F;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .read-morePP2 {
        text-align: center;
    }
}

.page-contentPP2 {
    margin-bottom: var(--margin40-50);
}
.page-titelPP2 {
    text-align: center; 
}

.pape-ratePP2 {
    text-align: center;
    margin-bottom: var(--margin30);
    font-size: 1.25rem;
}
.page-picPP2 {
    display: flex;
    justify-content: center;
    border-radius: 25px;
    overflow: hidden;
}

.page-picPP2 img{
    width: 100%;
    object-fit: contain;
    height: 473px;
}

@media (min-width: 768px) {
    .pape-ratePP2 {
      text-align: center;  
    }
     .page-titelPP2 {
       text-align: center; 
    }
    .page-picPP2 { 
        width: 90%;
        margin: 0 auto;
    }
}

.aboutPP2 {
    background-color: #e5e5e5;
}
.about-textPP2 {
    width: 80%;
    margin: 0 auto;
}

.servicesPP2 {
    color: var(--white);
    background-color: #040807;
}
.services-titlePP2 {
    font-size: 1.4rem;
}
.services-listPP2 .col {
    padding: 27px;
}

.services-itemPP2 {
    height: 100%;
    padding: var(--margin30) 4px;
    box-shadow: 0px 0px 12px 0px rgba(255, 255, 255, 0.39);

    transition: var(--transition);
    border-radius: 25px;
    overflow: hidden;
}
@media (min-width: 500px) {
    .services-itemPP2 {
        padding: var(--margin30) 17px;
    }
}
@media (min-width: 768px) {
    .services-itemPP2 {
        padding: var(--margin30) var(--margin20);
    }
}
.services-itemPP2:hover {
    box-shadow: 0px 0px 12px 4px rgba(240, 205, 50, 0.39)
}


.services-contentPP2 {
    text-align: center;
}

@media (min-width: 768px) {
    .services-contentPP2 {
        text-align: center;
    }
}

.services-titlePP2 {
    display: block;
    margin-bottom: 27px;
}
.services-textPP2 {
    margin-top: var(--margin30);
    margin-bottom: 27px;
}

.services-picPP2 {
    width: 250px;
    height: 200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
}

.services-picPP2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 25px;
}

.servicesPP2 .read-morePP2 {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .servicesPP2 .read-morePP2 {
        text-align: center;
    }
}
.servicesPP2 .read-morePP2:hover {
    color: var(--hover);
}

.gallery-gridPP2 {
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    grid-gap: 20px;
}
.gallery-itemPP2 {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}
@media (max-width: 767px) {
    .gallery-itemPP2 {
        height: 250px;
    }
}
.gallery-linkPP2 {
    cursor: zoom-in;
}

@media (min-width: 768px) {
    .gallery-gridPP2 {
        
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 250px;
        grid-auto-flow: dense;
        
    }
    .gallery-itemPP2 {
        grid-column: unset;
        grid-row: unset;
    }
    .gallery-itemPP2:nth-child(3n-2) {
        grid-column: span 2;
        grid-row: span 2;
    }
}
.gallery-itemPP2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-itemPP2:hover img {
    transform: scale(1.1);
}




.teamPP2 {
    background-color: #0F3460;
    color: var(--white);
}
.teamPP2 .row,
.teamPP2 .col{
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
}

.team-itemPP2 {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    color: var(--white);
    transition: var(--transition);
}
@media (max-width: 767px) {
    .team-itemPP2.rever {
        flex-direction: column-reverse;
    }
    .team-dataPP2 h4 {
        margin-bottom: 12px;
    }      
}
@media (min-width: 768px) {
    .team-itemPP2 {
        height: 680px;
        flex-direction: column;
        background-color: var(--white);
        color: var(--black);
        transition: var(--transition);
    }
    .team-dataPP2,
    .team-avatarPP2 {
        height: calc(100%/2);
    }
}
.team-itemPP2:hover {
    color: rgb(206, 150, 20);
}
.team-avatarPP2 {
    width: 90%;
    height: 280px;
    transition: var(--transition);
    margin: 0 auto;
}
@media (min-width: 500px) {
    .team-avatarPP2 {
        width: 70%;
        height: 378px;
    }
}

@media (min-width: 768px) {
    .team-avatarPP2 {
        width: 100%;
    }
    .team-itemPP2:hover {
        background-color: #006F5F;
        color: var(--white);
    }
    .team-itemPP2:hover .team-avatarPP2{
        transform: scale(1.05);
    }
}
.team-avatarPP2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-dataPP2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 35px 17px;
}
@media (min-width: 768px) {
    .team-dataPP2 {
        padding: 0 17px;
    }
}


.partnersPP2 {
    background-color: #e5e5e5;
}

.partners__titelPP2 {
    margin-bottom: 54px;
}

.partnersPP2 .row {
    flex-direction: column;
}

@media (min-width: 576px) {
    .partnersPP2 .row {
        flex-direction: row;
    }
}

.partners__picPP2 {
    padding: 23px;
    width: 60%;
    margin: 0 auto;
}

.partners__picPP2 img {
    width: 100%;
}

@media (min-width: 576px) {
    .partners__picPP2 {
        width: 100%;
    }
}

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

@media (min-width: 992px) {
    .partners__picPP2 {
        padding: 17px 22px;
    }
}

.blogPP2 {
    background: #141414; color: #fff;
}

.accordion {
    padding: 0 17px;   
}
@media (min-width: 768px) and (max-width: 1199px) {
    .accordion {
        width: 80%;
        margin: 0 auto;
    }
}
.blogPP2 .row {
    flex-direction: column;
}

@media (min-width: 1200px) {
    .blogPP2 .row {
        flex-direction: row;
    }
    
    .blog__titelPP2 {
        width: 70%;  
    } 
}

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

.accordion-header {
    color: inherit;
    border-bottom: 2px solid currentColor;
    transition: var(--transition);
}
.accordion-header:hover,
.accordion-header:focus {
    border-bottom: 2px solid currentColor;
}
.accordion-item:not(:last-child) {
    margin-bottom: 34px;
}

.accordion-button {
    padding: 17px 23px;
    font-style: normal;
    font-weight: 600;
    color: inherit;
    border: none;

    background-color: transparent;
}
.accordion-button:not(.collapsed) {
    color: rgb(206, 150, 20);
    font-weight: 600;
    border-bottom: 2px solid currentColor;
    background-color: transparent;
    box-shadow: none;
}
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed {
    background-color: transparent;
    box-shadow: none;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: none !important;
}
.accordion-button:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.accordion-body {
    padding: 27px 27px 27px;
}

.blog-picPP2 {
    width: 90%;
    height: 100%;
    padding: 100px 0 27px 0;
    
}
@media (min-width: 560px) and (max-width: 1199px) {
    .blog-picPP2 {
        display: none;
    }
}
.blog-picPP2 img {
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}


.comments-listPP2 {
    display: flex;
    flex-direction: column;
    gap: var(--margin20);
    margin-bottom: 0;
    padding-left: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.comments-itemPP2 {
    flex-direction: column;
    padding: 27px 23px;
    gap: var(--margin20);
}
@media (min-width: 768px) {
    .comments-listPP2 {
        flex-direction: row;
    }
    .comments-itemPP2 {
        flex-direction: row;
    }
}
.comments-descPP2 {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 35px 40px;
    background-color: #e5e5e5;;
}
@media (min-width: 992px) {
    .comments-descPP2 {
        padding: 27px 35px;
    }
}
.comment-starPP2 {
    font-size: 1.25rem;
    margin-bottom: 23px;
}
@media (min-width: 1200px) {
    .comments-descPP2 {
        padding: 27px 35px 84px;
    }
    .comments-descPP2 h4 {
        font-size: 2.25rem;
    }
    .comment-textPP2 {
        font-size: 1.25rem;
    }
    .comment-starPP2 {
        font-size: 1.75rem;
    }
}

.comments-decorPP2 {
    position: absolute;
    top: -24px;
    left: 32px;
    width: 94px;
    height: 94px;

    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(206, 150, 20);
}
.comments-decorPP2 span {
    color: var(--white);
    font-size: 3rem;
    font-weight: 600;   
}

@media (min-width: 992px)  {
    .comments-decorPP2 {
        width: 114px;
        height: 114px;
    }
    .comments-decorPP2 span {
        font-size: 6rem;
    }
}
.comments-picPP2 {
    flex: 1;
    width: 100%;
}
.comments-picPP2 img {
    height: 100%;
    object-fit: cover;
}

.section-formPP2 {
    background-color: #0F3460;
    color: var(--white);
}
.section-formPP2 .col-md-5,
.section-formPP2 .col-md-7 {
    padding-right: 20px;
    padding-left: 20px;
}

.section-form__textPP2 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 44px;
}

.section-form__descPP2 {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .section-form__textPP2{
        align-items: flex-start;
    }
    .section-form__descPP2{
        width: 80%;
        text-align: left;
    }
}
.formPP2 label {
    color: var(--white);
}

.formPP2 .input-btn--holder--part,
.formPP2 .textarea-btn--holder--part,
.form-inputPP2,
.form-textareaPP2 {
    width: 100%;
    padding: 12px 12px;
    margin-bottom: 17px;

    color: var(--white);
    background-color: transparent;
    border: 2px solid white;
}

.formPP2 .input-btn--holder--part::placeholder,
.formPP2 .textarea-btn--holder--part::placeholder,
.form-inputPP2::placeholder,
.form-textareaPP2::placeholder {
    color: rgba(245, 244, 244, 0.819);
}

.formPP2 .textarea-btn--holder--part {
    height: 6em;
    margin-bottom: 4px;
}

.formPP2 .input-btn--holder--part:focus-visible,
.formPP2 .textarea-btn--holder--part:focus-visible {
    outline: 0px;
}

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

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

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

.agreement-privacy-linkPP2 {
    margin-left: 2px;
    color: inherit;
    font-weight: 600;
    transition: var(--transition);
}

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

.section-formPP2 .phonePP2 {
    background-color: #006F5F;
    color: var(--white);
    transition: var(--transition);
}
.section-formPP2 .phonePP2:hover {
    color: var(--hover);
}



.footerPP2 {
    padding-top: 72px;
    padding-bottom: 0;
    color: var(--white);
    background-color: #040807;
}

.footer__textPP2 {
    display: none;
    text-align: center;
    margin-bottom: 74px
}

@media screen and (min-width: 768px) {
    .footer__textPP2 {
        text-align: center;
    }
}

.footer__titelPP2{
    margin-bottom: 17px;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-containerPP2{
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
}
@media (min-width: 768px) {
    .footer-containerPP2.align-items-md-start {
        justify-content: space-between;
    }
}

@media screen and (min-width: 992px) {
    .footer__boxPP2 {
        width: 40%;
    }
}

.footer__contactPP2 {
    display: flex;
    flex-direction: column;
}


.footer__contact-itemPP2{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    row-gap: 4px;

    text-align: center;
}

.footer__contact-itemPP2 {
    margin-bottom: var(--margin20);
}

@media (min-width: 768px) {
    .footer-containerPP2.align-items-md-start .footer__contact-itemPP2 {
        flex-direction: row;
        justify-content: flex-start;
        column-gap: 14px;
        align-items: center;
    }

    .footer-containerPP2.align-items-md-center .footer__contact-itemPP2{
        flex-direction: column;
    }
}

.footer__contact-iconPP2{
    display: none;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    fill: var(--white);
}

@media screen and (min-width: 768px) {
    .footer__contact-iconPP2{
        display: flex;
    }
}

.footer__contact-iconPP2 i {
    font-size: 24px;
}

.footer__contact-textPP2 {
    padding: 4px 0;
    text-align: center;
}

.footer__contact-descPP2 {
    margin-bottom: 0;
    word-break: break-all;
}

@media screen and (min-width: 768px) {
    .footer-containerPP2.align-items-md-start .footer__contact-textPP2 {
        text-align: start;
    }
}

.footer__logoPP2 {
    display: none;
}

@media screen and (min-width: 992px) {
    .footer-containerPP2.align-items-md-start .footer__logoPP2 {
        display: flex;
        flex-direction: column;
        width: 40%;
    }
}

.footer__privacyPP2 {
    padding-top: 17px;
    font-size: 13px;
    border-top: 2px solid #ffffffe0;
}

.privacy__listPP2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

@media screen and (min-width: 992px) {
    .privacy__listPP2 {
        flex-direction: row;
        justify-content: space-between;
    }
}

.privacy__itemPP2 {
    margin-bottom: var(--margin20);
    text-align: center;
}

@media (min-width: 768px) {
    .privacy__itemPP2 {
        text-align: center;
    }
}
.privacy__linkPP2:hover {
    color: var(--color-accent);
}

.contacts-itemPP2 {
    text-align: center;
    margin-bottom: 12px;
}
@media (min-width: 768px) {
    .contacts-itemPP2 {
        text-align: start;
    }
}

.contacts-mapPP2{
    width: 100%;
    height: 345px;
    border: 0;
}


@media (max-width: 1399px){
    .first-screen-title {
        font-size: 60px;
        max-width: 460px;
    }
}

@media (max-width: 1199px){
    .first-screen-img {
        max-width: 230px;
    }
    .first-screen-title {
        font-size: 44px;
        max-width: 354px;
    }
    .first-screen-img {
        max-width: 200px;
    }
    .contact-header{
        display: none;
    }
    .header-inner-content{
        flex-basis: 78%;
    }
    .nav-menu {
        flex-basis: 100%;
    }
    .nav-menu ul{
        width: 100%;
    }
    .contact-block-inner{
        flex-direction: column !important;
    }
    .contact-block-title{
        text-align: center;
        margin-bottom: 35px;
    }
    .contact-info-wrapper{
        margin-bottom: 35px;
    }
}



@media (max-width: 991px){
    .first-screen-inner{
        flex-direction: column !important;
    }
    .first-screen-title {
        max-width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }
    .feature-text{
        font-size: 16px;
    }
    .nav-menu{
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0, .7);
        align-items: flex-start;
        padding-top: 40px;
        z-index: 9;
        transform: translate(-100%);
        transition: all .2s ease-in-out;
    }
    .nav-menu-active{
        transform: translate(0);
        transition: all .2s ease-in-out;
    }
    .hidden{
        overflow: hidden;
    }
    .nav-menu ul{
        flex-direction: column;
    }
    .nav-menu li{
        border-bottom: 2px solid #fff;
        width: 100%;
       
    }
    .nav-menu .nav-menu-link{
        display: block;
        padding-left: 27px;
        color: #fff;
        font-size: 16px;
    }
    .header-inner-content {
        flex-basis: auto;
    }
    .burger{
        display: flex;
    }
    .close{
        display: block;
        position: absolute;
        top: 23px;
        right: 23px;
        width: 27px;
        height: 27px;
        background-image: url(../img/close.png);
        background-size: cover;
    }
    .feature-wrapper.flex-column .feature-img{
        width: auto;
        height: 220px
    }
    .about-us-inner{
        flex-direction: column !important;
    }
    .about-us-images-wrapper{
        width: 100%;
        margin-right: 0;
    }
}
@media(max-width: 767px){
    .feature-wrapper.flex-row .feature{
        justify-content: flex-start;
    }
    .feature-content{
        padding: 23px 0px;
    }
    .feature-wrapper.flex-column .feature-img {
        width: auto;
        height: 154px;
    }
}
@media(max-width: 576px){
    .first-screen-title {
        font-size: 32px;
    }
    .feature{
        flex-direction: column !important;
    }
    .feature:nth-child(even){
        flex-direction: column-reverse !important;
    }
    .contact-info-item {
        flex-basis: 100%;
    }
    .contact-block-form form{
        width: 100%;
    }
    .text-field_floating .text-field__label{
        font-size: 13px;
    }
    .feature-wrapper.flex-row .feature {
        flex-basis: 100%;
    }
    .about-us-img{
        border-radius: 12px;
    }
}


.privacy-padding-block, .about-padding-block{
    padding: 35px 0; 
    overflow-x: hidden;
}



.comments-list-direction{
    direction: initial;
}





@media (max-width: 420px){

    .page-picPP2 img{
      height: auto;
    }
  
  }






        



