@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Luxurious+Script&display=swap');

:root {

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

    --transition: all 300ms linear;

    --margin20: 20px;

    --margin30: 30px;

    --margin40-50: 41px;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    min-width: 320px;
}
body{
    direction: ltr;
    font-family: 'Archivo', 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: 'Luxurious Script',
    sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: initial;
}

h2,
h3,
h4,
h5 {
    font-family: 'Luxurious Script',
    sans-serif;
    font-weight: 700;
    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 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

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

    padding: 15px 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: 55px;
    margin-right: 6px;
    margin-left: 6px;
}

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

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

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

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

.menu-btnPP2 {
    display: inline-block;
    width: 40px;
    height: 40px;
    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: 399px;
        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: 6px;
    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: start;
}

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

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

    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.17;
    color: var(--white);
    transition: var(--transition);
}
@media (min-width: 768px) {
    .header__linkPP2 {
        padding: 30px 10px;
        font-size: 14px;
        line-height: 1.14;
        color: var(--white);
    }
}
.activePP2 {
    font-weight: 700;
}

.dropdownPP2 {
    position: relative;
    display: inline-block;
    color: var(--white);
}
.dropdown-btnPP2 {
    display: block;
    
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.17;
    color: var(--white);
    transition: var(--transition);
    background-color: transparent;
}
@media (max-width: 767px) {
    .dropdown-btnPP2 {
        width: 100%;
        text-align: start;
    }
}
@media (min-width: 768px) {
    .dropdown-btnPP2 {
        padding: 30px 10px;
        font-size: 14px;
        line-height: 1.14;
        color: var(--white);
    }
}
.dropdownPP2:hover .dropdown-btnPP2 {
    color: rgb(206, 150, 20);
    cursor: default;
}
@media (max-width: 767px) {
    .dropdown-contentPP2 {
        text-align: start;
        padding: 20px 0 0 15px;
    }
}
@media (min-width: 768px) {
    .dropdown-contentPP2 {
        display: none;
        position: absolute;
        left: 0;
        background-color: #ffffff;
        min-width: 250px;
        padding: 20px 15px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
}
.dropdownPP2:hover .dropdown-contentPP2 {
    display: block;
}
.dropdown-itemPP2 {
    display: block;
    line-height: 1.17;
    margin-bottom: 18px;
    color: #afa2a2f7;
    transition: var(--transition);
}
@media (min-width: 768px) {
    .dropdown-itemPP2 {
        padding: 10px;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.14;
        color: var(--black);
    }
}


.phone-menuPP2 {
    display: none;
    margin-left: 60px;
    margin-right: 10px;
    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 / 15%), rgb(0 0 0 / 15%), rgb(0 0 0 / 15%)), url(bg/0-seamlessBg-17ZP.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: right;
    }
}

.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 30px;

    font-size: 1.15rem;

    background-color: #070739;
    border-radius: 35px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
@media (min-width: 992px) {
    .phonePP2 {
        font-size: 1.55rem;
    }
}

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

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

.features-iconPP2 {
   margin-bottom: var(--margin30); 
}
.features-iconPP2 svg {
    height: 45px;
    width: 45px;
}
.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: 700;

    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: #011804; color: #fff;
}
.content-titlePP2 {
    margin-bottom: 40px;
    font-size: 2.75rem;
}

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

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

    border-radius: 35px;
    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 20px 25px;
        float: right !important;
    }
    .content-picPP2.float-start {
        max-width: 63%;
        margin: 0 40px 20px 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-reverse;
        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: 35px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


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

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

.articlesPP2 {
    background: linear-gradient(black, black), url(bg/1-seamlessBg-17ZP.jpg)   no-repeat;
    background-size: cover;
    background-blend-mode: saturation;
}
.articles-listPP2 .col {
    padding: 25px 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 -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, 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 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;

    border-radius: 35px;
    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: 30px;
}
.articles-picPP2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}

        
.articles-contentPP2 {
    color: var(--white);
    text-align: center;
}
@media (min-width: 768px) {
    .articles-contentPP2 {
        text-align: start;
    }
}
.articles-titlePP2 {
    font-size: 1.5rem;
}
.articles-textPP2 {
    margin-top: var(--margin30);
    margin-bottom: 15px;
}
.read-morePP2 {
    color: #009A44;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

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

.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: 35px;
    overflow: hidden;
}

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

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

.servicesPP2 {
    color: var(--white);
    background-color: #180707;
}
.services-titlePP2 {
    font-size: 1.5rem;
}
.services-listPP2 .col {
    padding: 25px;
}

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

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


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

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

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

.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: 35px;
}

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

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

.gallery-gridPP2 {
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 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.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-itemPP2:hover img {
    transform: scale(1.1);
}




.teamPP2 {
    background-color: #070739;
    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: 10px;
    }      
}
@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: #009A44;
        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: 40px 15px;
}
@media (min-width: 768px) {
    .team-dataPP2 {
        padding: 0 15px;
    }
}


.partnersPP2 {
    background-color: #e5e5e5;
}

.partners__titelPP2 {
    margin-bottom: 55px;
}

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

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

.partners__picPP2 {
    padding: 20px;
    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 15px;
    }
}

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

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

.accordion {
    padding: 0 15px;   
}
@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-reverse;
    }
    
    .blog__titelPP2 {
        width: 70%;  
    } 
}

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

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

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

    background-color: transparent;
}
.accordion-button:not(.collapsed) {
    color: rgb(206, 150, 20);
    font-weight: 600;
    border-bottom: 1px 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 30px 30px;
}

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


.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: 25px 20px;
    gap: var(--margin20);
}
@media (min-width: 768px) {
    .comments-listPP2 {
        flex-direction: row-reverse;
    }
    .comments-itemPP2 {
        flex-direction: row-reverse;
    }
}
.comments-descPP2 {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 35px 50px;
    background-color: #e5e5e5;;
}
@media (min-width: 992px) {
    .comments-descPP2 {
        padding: 30px 35px;
    }
}
.comment-starPP2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}
@media (min-width: 1200px) {
    .comments-descPP2 {
        padding: 30px 35px 85px;
    }
    .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: 33px;
    width: 95px;
    height: 95px;

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

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

.section-formPP2 {
    background-color: #070739;
    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: 45px;
}

.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-p14210905,
.formPP2 .textarea-p14210905,
.form-inputPP2,
.form-textareaPP2 {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;

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

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

.formPP2 .textarea-p14210905 {
    height: 6em;
    margin-bottom: 6px;
}

.formPP2 .input-p14210905:focus-visible,
.formPP2 .textarea-p14210905: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: 3px;
    color: inherit;
    font-weight: 600;
    transition: var(--transition);
}

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

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



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

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

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

.footer__titelPP2{
    margin-bottom: 18px;
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-containerPP2{
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}
@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: 5px;

    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: 15px;
        align-items: center;
    }

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

.footer__contact-iconPP2{
    display: none;
    width: 35px;
    height: 35px;
    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: 6px 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: 15px;
    font-size: 14px;
    border-top: 1px solid #ffffffe0;
}

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

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

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

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

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

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













        



