:root {
  --hero-padding-top: 200px;
  --hero-gap: 50px;
}

.hero__content {
    padding: 0 max(0px, calc((100vw - var(--width)) / 2));
    position: relative;
    z-index: 2;
}
.hero__wrapper {
    position: relative;
}

.hero__inner {
    position: relative;
}

.hero__multimedia {
    display: flex
;
}

.hero__multimedia {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
}

.hero__multimedia img, .hero__multimedia video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__header p {
    padding-left: 15px;
    border-left: 2px solid white;
    font-size: var(--font-size-h1);
    color: white;
}
.hero__header p strong em {
    background: var(--s-color);
    padding: 0 10px;
    color: var(--color);
    font-style: normal;
}
.hero__text {
    max-width: 500px;
    color: white;
    font-size: var(--font-size-normal);
}

.hero__content-inner {
    display: flex;
    flex-direction: column;
    gap: var(--hero-gap);
    padding-left: var(--padding);
    justify-content: center;
    padding-right: var(--padding);
    padding-top: var(--hero-padding-top);
    padding-bottom: var(--hero-padding-top);
    position: relative;
    box-sizing: border-box;
}


.hero__background_filler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0;
    z-index: -1;
}

.hero__background_filler > div:nth-child(1) {
    width: 60%;
    background: rgba(28, 96, 78, 0.90);
    backdrop-filter: blur(4.400000095367432px);
}
.hero__background_filler > div:nth-child(2) {
    width: 100px;
    flex: none;
    background: rgba(28, 96, 78, 0.80);
    backdrop-filter: blur(4.400000095367432px);
}
.hero__background_filler > div:nth-child(3) {
    width: 100px;
    background: rgba(28, 96, 78, 0.70);
    flex: none;
    backdrop-filter: blur(4.400000095367432px);
}
.hero__background_filler > div:nth-child(4) {
    width: 100px;
    flex: none;
    background: rgba(28, 96, 78, 0.60);
    backdrop-filter: blur(4.400000095367432px);
}

@media screen and (max-width: 1600px){
    :root {
        --hero-padding-top: 150px;
        --hero-gap: 40px;
    }
}
@media screen and (max-width: 1200px){
    :root {
        --hero-padding-top: 100px;
        --hero-gap: 30px;
    }
}
@media screen and (max-width: 786px){
    :root {
        --hero-padding-top: 70px;
        --hero-gap: 20px;
    }
    .hero__header {
        /* padding-left: 10px; */
    }
}


.hero__services {
    padding: 0 max(0px, calc((100vw - 1920px) / 2));   
    background-color: #2E765E;
        border-top: 2px solid white;
}

.services__grid {
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr;

}
.service {
    padding: 30px;
    background: var(--color);
    display: flex
;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}
h3.service__header {
    font-size: var(--font-size-h6);
    color: white;
    font-weight: 500;
    margin: 0;
}
.service__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-small);
    font-weight: 400;
}
.service__text strong {
    color: white;
    font-weight: 400;
}
a.service__link {
    padding: 10px;
    display: block;
    border: 1px solid white;
    width: fit-content;
    display: flex
;
    gap: 10px;
    align-items: center;
    color: white;
    text-decoration: none;
    opacity: 0.7;
}
.service__content-wrapper {
    display: flex
;
    gap: 10px;
    flex-direction: column;
}

.service:not(:nth-child(3n)) {
    border-right: 2px solid white;
}

@media screen and (max-width: 1200px){
    .service {
        padding: 30px 20px;
    }
    .service__content-wrapper > svg {
        width: 25px;
        height: auto;
    }
}
@media screen and (max-width: 786px){
    .services__grid {
        grid-template-columns: 1fr;
    }
    .service:not(:nth-child(3n)) {
        border-right: none;
    }
    .service {
        border-bottom: 2px solid white;
        align-items: start;
    }
}
.site-popup-form {
    width: 100%;
}