:root {
    --color-primary: #003D2D;
    --color-secondary: #BEEB29;
    --color-accent: #F0EEF0;
    --color-background: #E7E5E7;
    --color-borders-primary: #A4A4A4;
    --color-borders-secondary: #22262E;
    --color-borders-menu-icon: #BEEB29;
    --color-borders-menu-popup-icon: #22262E;
    --color-icon-primary: #22262E;
    --color-icon-secondary: #F0EEF0;
    --color-icon-accent: #5C6069;
    --color-icon-background: #F0EEF0;
    --color-icon-background-hover: #A4A4A4;
    --color-icon-border: #A4A4A4;
    --color-icon-hover-primary: #46484b;
    --color-icon-hover-secondary: #b4b3b4;
    /* --color-icon-hover-accent-bright:blue; */
    --color-icon-hover-accent-dark: #000;
    --color-btn-hover-primary: #b9dd42;
    --color-btn-hover-secondary: #005e45;
    --color-background-pictures: #b9b9b9;
    --color-background-send-message: #E7E5E7;
    --color-popup-send-message: #F0EEF0;
    --color-border-send-message: #A4A4A4;


    --color-headings: #22262E;
    --color-bodytext: #000000;
    --color-headings-secondary: #BEEB29;
    --color-bodytext-secondary: #FFFFFF;
    --color-btn-text-primary: #22262E;
    --color-btn-text-secondry: #F0EEF0;
    --color-text-placeholder: #A4A4A4;
    --color-text-menu-primary: #F0EEF0;
    --color-text-menu-secondary: #22262E;
    --color-text-menu-secondary-hover: #46484b;
    --color-text-menu-accent: #BEEB29;
    --color-text-menu-popup-accent: #005e45;
    --color-footer-bodytext: #F0EEF0;
    --color-footer-legal-links: #22262E;


    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
}

*, *::after, *::before {
    box-sizing: border-box;
}

/* Typography */

html {
    font-size: 62.5%;
}
body {
    font-family: Alexandria, Arial, Helvetica, sans-serif;
    font-size: 1.7rem;
    line-height: 2.2;
    color: var(--color-bodytext);
    background: var(--color-background);
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    color: var(--color-headings);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-light);
}

h3 {
    font-size: 3.3rem;
    margin-bottom: 4.5rem;
}

h4 {
    font-size: 2.3rem;
    margin-bottom: 0;
}

h5 {
    font-size: 2rem;
    margin-bottom: 0;
}

p {
    margin-top: 0;
}

/* Links */

a {
    text-decoration: none;
}

/* Badges */

.badge {
    border-radius: 20px;
    border: 1px solid;
    font-weight: var(--font-weight-light);
    padding: 0.5rem 2rem;
    white-space: nowrap;
}

.badge--primary {
    border-color: var(--color-borders-primary);
    color: var(--color-headings);
}

.badge--secondary {
    border-color: var(--color-borders-secondary);
    color: var(--color-headings);
}

/* Lists */

.list {
    list-style: none;
    padding-left: 0;
}

.list--home {
    color: var(--color-bodytext);
}

.list--menu {
    color: var(--color-bodytext-secondary);
}

.list--inline .list__item {
    display: inline-block;
    margin-right: 5rem;
}

/* Icons */

.icon-social {
    width: 100%;
    height: 100%;
}

.icon-social-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-left: 1.1rem;
}

.icon-social-container:hover > .icon--primary {
    fill: var(--color-icon-hover-primary);
    cursor: pointer;
    transition: fill 0.3s ease-in;
}

.icon-social-container:hover > .icon--secondary {
    fill: var(--color-icon-hover-secondary);
    cursor: pointer;
    transition: fill 0.3s ease-in;
}

.icon-email {
    width: 19.5px;
    height: 12.2px;
}

.icon-phone {
    width: 16.5px;
    height: 16.5px;
}

.icon-chevron-blog {
    height: 17px;
    width: 18px;
    padding-left: 2px;
}

.icon-chevron-dropdown {
    height: 19px;
    width: 10.5px;
}

.icon-arrow {
    width: 15px;
    height: 14.5px;
}

.icon-arrow--right {
    rotate: 180deg;
}

.icon-arrow-container {
    background:var(--color-icon-background);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-arrow-container:hover {
    background: var(--color-icon-background-hover);
    cursor: pointer;
    transition: background 0.3s ease-in;
}

.icon--primary {
    fill: var(--color-icon-primary);
}

.icon--secondary {
    fill: var(--color-icon-secondary);
}
.icon--accent {
    fill: var(--color-icon-accent);
}

.icon-chevron-container {
    background:transparent;
    width: 36px;
    height: 36px;
    outline-style: solid;
    outline-offset: -1px;
    outline-width: 1.5px;
    outline-color: var(--color-icon-border);
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-chevron-container:hover {
    cursor: pointer;
}

.icon-chevron-container:hover > .icon--accent {
    fill: var(--color-icon-hover-accent-dark);
    transition: fill 0.3s ease-in;
}

/* Buttons */

.btn {
    border-radius: 40px;
    border: 0;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: var(--font-weight-regular);
    padding: 1.1rem 4.5rem;
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-secondary);
    color: var(--color-btn-text-primary);
}

.btn--primary:hover {
    background: var(--color-btn-hover-primary);
}

.btn--secondary {
    background: var(--color-primary);
    color: var(--color-btn-text-secondry);
}

.btn--secondary:hover {
    background: var(--color-btn-hover-secondary);
}

.btn--accent {
    background: #22262E;
    color: #F0EEF0;
}

.btn--accent:hover {
    background: #3b4049;
}

.btn--block {
    display: inline-block;
    line-height: 1.15;
    width: 100%;
}

.btn--menu {
    white-space: normal;
}

/* Inputs */

.input {
    border-radius: 20px;
    border: 1px solid var(--color-borders-primary);
    color: var(--color-bodytext);
    font-size: 1.8rem;
    font-weight: var(--font-weight-light);
    outline: 0;
    padding: 1.25rem 2.3rem;
}

::placeholder {
    color: var(--color-text-placeholder);
}

/* Cards Services */

.card-services {
    border-radius: 20px;
    border: solid 1px var(--color-borders-primary);
    overflow: hidden;
}

.card-services__illustration {
    padding: 2rem 2rem 1rem;
}

.card-services__body {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.card-services--primary {
    background: var(--color-accent);
}

.service__name {
    color: var(--color-headings);
    font-weight: var(--font-weight-medium);
    margin: 0;
    line-height: 1;
}

.service__short-description {
    color: var(--color-headings);
    font-weight: var(--font-weight-light);
    margin: .7rem 0 0;
    line-height: 1.1;
}

.service__description {
    color: var(--color-bodytext);
    font-size: 1.7rem;
    font-weight: var(--font-weight-light);
    margin: 4rem 0 0;
    line-height: 1.5;
}

/* Cards Testimonials */

.card-testimonials--primary {
    background: var(--color-accent);
}

.card-testimonials__body {
    display: flex;
    position: relative;
    flex-direction: column;
    border-radius: 20px 20px 0 20px;
    border: solid 1px var(--color-borders-primary);
    border-bottom: none;
    height: 300px;
    min-height: 300px;
    padding: 0 2rem 2rem;
    overflow: hidden;
}

.card-testimonials__body::after {
    content: "";
    position: absolute;
    background: var(--color-accent);
    width: 100%;
    height: 29px;
    bottom: 0;
}

.card-testimonials__body--primary,
.testimonials__name--primary {
    background: var(--color-accent);
}

.card-testimonials__header {
    display: flex;
    align-items: end;
}

.testimonials__quote {
    height: 50px;
    width: 66px;
    margin: 4rem auto;
    opacity: .2;
    rotate: 180deg;
}

.testimonials__comment {
    color: var(--color-bodytext);
    font-size: 1.7rem;
    font-weight: var(--font-weight-light);
    line-height: 1.4;
    text-align: center;
}

.testimonials__comment::before {
    content: open-quote;
    opacity: 0;
}

.testimonials__comment::after {
    content: close-quote;
}

blockquote {
    margin: 0;
}

.testimonials__profile-picture {
    display: flex;
    position: relative;
    align-items: end;
    min-width: 80px;
    height: 80px;
}

.testimonials__profile-picture::before {
    content: "";
    position: absolute;
    border: solid 1px var(--color-borders-primary);
    border-right: none;
    border-top: none;
    left: 0.6px;
    top: -98.9px;
    height: 100px;
    width: 20px;
    border-left: none;
    border-radius: 20px 0 0 20px;
  }

.testimonials__picture {
    display: flex;
    background: var(--color-accent);
    /* background: #dbdbdb; */
    justify-content: center;
    border-radius: 15px;
    outline: solid 1px var(--color-borders-primary);
    width: 68px;
    height: 68px;
    margin-bottom: 1px;
    overflow: hidden;
}

.testimonials__picture img {
    display: flex;
    align-self: flex-end;
    width: auto;
    height: 80%;
}

.testimonials__picture::before {
    content: "";
    position: absolute;
    border: solid 1px var(--color-borders-primary);
    border-left: none;
    border-bottom: none;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
    border-top-right-radius: 20px;
    box-shadow: 0 -20px 0 0 var(--color-accent);
}

.testimonials__picture::after {
    content: "";
    position: absolute;
    border: solid 1px var(--color-borders-primary);
    border-right: none;
    border-top: none;
    right: -19.07px;
    bottom: 0.2px;
    height: 20px;
    width: 20px;
    border-bottom-left-radius: 20px;
}  

.testimonials__name {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
    border-radius: 0 0 20px 20px;
    border: solid 1px var(--color-borders-primary);
    border-top: none;
    border-left: none;
    width: 100%;
    height: 80px;
    max-height: 80px;
    padding: 2rem;
    overflow: hidden;
}

/* Grids */

.grid {
    display: grid;
}

/* Collapsibles */

.collapsible__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collapsible__heading {
    margin-top: 0;
    font-weight: var(--font-weight-medium);
}

.collapsible__heading--faqs {
    font-size: 1.8rem;
}

.collapsible__heading--footer {
    font-size: 2.1rem;
}

.collapsible__chevron {
    transform: rotate(-270deg) translateY(5px);
    transition: transform 0.3s;
}

.collapsible__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.collapsible--expanded .collapsible__chevron {
    transform: rotate(-90deg) translateY(-5px);
}

.collapsible--expanded .collapsible__content {
    max-height: 100vh;
    opacity: 1;
}

.collapsible__menu-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.collapsible__menu-content.active {
    max-height: calc(100vh - 80px);
    opacity: 1;
}


/* Blocks */

.block {
    padding: 3.2rem 2rem;
}

.block--dark {
    background: var(--color-primary);
}

.block--light {
    background: var(--color-secondary);
}

.block--dark .block__heading {
    color: var(--color-headings-secondary);
} 

.block--dark .hero__tagline {
    color: var(--color-bodytext-secondary);
}

.block__header {
    text-align: center;
}

.container {
    /* max-width: 1140px; */
    max-width: 1200px;
    margin: 0 auto;
}

.block__heading {
    display: flex;
    justify-content: center;
}

.heading {
    display: flex;
    border: solid 1px var(--color-borders-primary);
    border-radius: 40px;
    margin-bottom: 0;
    padding: 0 2rem;
    text-align: center;
    white-space: nowrap;
}

.heading--dark {
    border: solid 1px var(--color-borders-secondary);
}

/* Navigation Bar */

.nav {
    background: var(--color-primary);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    z-index: 50;
}

.nav.active {
    position: fixed;
}

.nav__visible {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2rem;
}

.nav__visible > a {
    display: flex;
    align-self: center;
}

.nav__logo {
    height: 30px;
}

.menu-popup {
    display: none;
}

.menu-icon-desktop {
    display: none;
}

.menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 40px;
    height: 40px;
    border: solid 1px var(--color-borders-menu-icon);
    border-radius: 50%;
    transition: background 0.3s;
    cursor: pointer;
}

.menu-icon:hover {
    background: var(--color-borders-menu-icon);
}

.hamburger-bar {
    width: 20px;
    height: 2px;
    margin: 3px 0;
}

.hamburger-bar--short {
    width: 11px;
}

.hamburger-bar--long-one  {
    transition: all 0.3s;
}

.hamburger-bar--long-two  {
    transition: all 0.3s;
}

.hamburger-bar--primary {
    background: var(--color-secondary);
}

.menu-icon:hover .hamburger-bar--primary {
    background: var(--color-primary);
    transition: background 0.3s;
}

.hamburger-bar--secondary {
    background: var(--color-primary);
}

.menu-block--primary {
    background: var(--color-primary);
}

.menu-block__hidden {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
}

.list__item {
    padding: 0 2rem;
    font-weight: var(--font-weight-medium);
}

.list__item--languages {
    font-size: 1.7rem;
    line-height: 0;
}

.list__item--pages {
    margin-top: 3rem;
    font-size: 2.5rem;
}

.list__item > a,
.cta__message span > a,
.list-legal__item > a {
    color: var(--color-text-menu-primary);
    transition: color 0.3s;
}

.list__item--pages .list__item > a {
    display: block;
}

.list__item--pages .list__item:hover > a {
    color: var(--color-text-menu-accent);
}

.list__item--disabled {
    opacity: .4;
    transition: opacity 0.3s;
}

.list__item--disabled:hover {
    opacity: 1;
}

.languages {
    display: flex;
    align-items: center;
    margin: 0;
}

.languages-slash {
    color: var(--color-text-menu-primary);
    font-size: 1.7rem;
    font-weight: var(--font-weight-medium);
    padding: 1.6rem 0;
    margin-bottom: 0;
}

.call-to-action {
    margin-top: 7rem;
    padding: 0 2rem;
}

.cta__message {
    font-size: 1.9rem;
    font-weight: var(--font-weight-light);
    text-align: center;
    color: var(--color-text-menu-primary);
    margin: 1rem 1rem 10rem;
}

.cta__message span {
    font-weight: var(--font-weight-regular);
}

.menu-footer {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary);
    padding: 0 2rem;
    border-top: solid 1px rgba(240, 238, 240, .5);
    height: 40px;
    width: 100%;
    bottom: 0;
}

.list-legal__item {
    text-decoration: underline;
    padding-right: 1.5rem;
    font-weight: var(--font-weight-light);
    font-size: 1.2rem;
    color: var(--color-text-menu-primary);
}

.list__legal-links {
    display: flex;
    margin: 0;
}

.social-network {
    display: flex;
}

.menu-icon.active {
    background: var(--color-borders-menu-icon);
    transition: background 0.3s;
}

.menu-icon.active:hover {
    background: var(--color-text-menu-primary);
    border: solid 1px var(--color-text-menu-primary);
}

.menu-icon.active .hamburger-bar--primary {
    background: var(--color-primary);
}

.menu-icon.active .hamburger-bar--short {
    width: 0px;
    opacity: 0;
}

.menu-icon.active .hamburger-bar--long-one {
    position: absolute;
    transform: rotate(-45deg);
    margin: 0;
}

.menu-icon.active .hamburger-bar--long-two {
    position: absolute;
    transform: rotate(45deg);
    margin: 0;
}

.menu-icon.active .menu-hamburger {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

/* Hero Section */

.hero__content {
    order: 2;
}

.hero__title {
    font-weight: var(--font-weight-regular);
    width: 100%;
    margin-bottom: 2rem;
}

@media screen and (min-width: 400px) {
    .hero__title {
        width: 70%;
    }
}

.hero__tagline {
    font-size: 2rem;
    font-weight: var(--font-weight-extralight);
    line-height: 1.6;
    margin-bottom: 5rem;
}

.hero__btn {
    margin-bottom: 1rem;
}

.hero__content .btn {
    font-size: 2rem;
    padding: 1.2rem 3rem;
}

.hero__image {
    align-self: center;
    justify-self: center;
    width: 85%;
    margin: 2rem 0 7rem;
}

/* About Section */

.about__title {
    font-size: 5rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.1;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about__title-grey {
    opacity: .5;
}

.about__text {
    font-weight: var(--font-weight-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4rem;
}

.about__btn {
    display: block;
    justify-self: center;
}

.about__container {
    /* max-width: 1040px; */
}

/* Services Section */

.services__section {
    margin-top: 7rem;
}

.services__long-title {
    font-weight: var(--font-weight-regular);
    margin-bottom: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services__grid {
    background: var(--color-secondary);
    gap: 2rem;
    padding: 0 2rem 2rem;
}

.card-services__image {
    aspect-ratio: 5 / 3;
    width: 100%;
    border-radius: 15px;
}

/* Testimonials Section */

.testimonials__block {
    margin-top: 3.5rem;
}

.testimonials__header {
    display: flex;
    justify-content: space-between;
}

.testimonials__title-block {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 60%;
}

.testimonial__headings {
    display: flex;
    justify-self: left;
}

.testimonials__long-title {
    font-weight: var(--font-weight-regular);
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 2.8rem;
    line-height: 1.2;
    width: 200px;
}

.testimonials__btn {
    justify-self: center;
    align-self: flex-start;
    line-height: 1.223;
    white-space: unset;
}

.testimonials__arrows {
    display: none;
    flex-direction: row;
    align-self: flex-end;
    transform: translateY(-2px);
}

.icon-arrow__right {
    margin-left: 12px;
}

.testimonials__carrousel-mobile {
    display: flex;
    position: relative;
    overflow: hidden;
    padding-left: 2rem;
    width: 100%;
    height: 400px;
    margin-top: 5rem;
    touch-action: pan-y;
}

.testimonials__carrousel {
    display: none;
}

.testimonials__carrousel::after {
    content: '';
    display: flex;
    position: absolute;
    background: linear-gradient(to right, rgba(231, 229, 231, 1) 50%, rgba(231, 229, 231, 0));
    height: 100%;
    width: 0px;
    left: 0;
    top: 0;
}

.testimonials__carrousel-track-mobile {
    display: flex;
    transition: transform 0.3s ease-out;
    /* position: absolute;
    left: 0;
    top: 0;
    padding-left: 2rem; */
    /* pointer-events: none; */
    will-change: transform;
}

.testimonials__carrousel-track {
    display: flex;
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

.testimonials__size {
    width: 293px;
    min-width: 293px;
    margin-right: 2rem;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    flex: 0 0 auto;
}

.testimonials__size:last-child {
    margin-right: 0;
}

.testimonial__send-comment {
    display: flex;
    position: fixed;
    max-width: 100vw;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transition: all .15s;
}

.testimonial__send-comment.active {
    display: flex;
    opacity: 1;
    z-index: 1000;
}

.send-comment__background {
    background: var(--color-background-send-message);
    opacity: 1;
    width: 100%;
    height: 100vh;
    z-index: 400;
}

.send-comment__popup {
    position: absolute;
    align-self: center;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    z-index: 500;
}

.send-comment__content {
    padding: 2rem;
}

.send-comment__name {
    background: var(--color-popup-send-message);
    border: solid 1px var(--color-border-send-message);
    border-radius: 20px;
    width: 100%;
    height: 50px;
}

input,
textarea {
    color: #22262E;
    font-size: 1.6rem;
    font-weight:  var(--font-weight-light);
    line-height: 1.5;
}

input[type='text'],
input[type='email'],
textarea[id='message'] {
    border: solid 1px var(--color-border-send-message);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 1rem 2.2rem;
    width: 100%;
    transition: border 0.15s;
}

input[type='text']:focus,
input[type='email']:focus,
textarea[id='message']:focus {
    border: 1px solid #22262E;
    outline: 0;
}

input::placeholder,
textarea::placeholder {
    color: #A4A4A4;
    font-size: 1.5rem;
    opacity: .8;
    font-weight: var(--font-weight-light);
}

.form-group {
    margin-bottom: 2rem;
}

.btn__send-comment {
    display: flex;
    line-height: 1.22;
    margin-top: 4rem;
    white-space: unset;
    justify-self: right;
}

.send-comment__text {
    font-weight: var(--font-weight-light);
    line-height: 1.8;
    margin-bottom: 8rem;
    text-align: center;
    width: 85%;
    justify-self: center;
}

.send-comment__title {
    font-weight: var(--font-weight-regular);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    justify-self: center;
}

.send-comment__chevron {
    margin-bottom: 3rem;
    transform: rotate(180deg);
}

.carousel-section {
    padding: 0;
    display: flex;
    justify-content: center;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease-out;
    will-change: transform;
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 2rem;
}

/* FAQs Section */

.faqs__container {
    margin-top: 3rem;
}

.faqs__long-title {
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}

.faq__heading {
    margin-top: 0;
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
    padding-right: 2rem;
}

.faq__chevron {
    display: flex;
    margin: 0 1rem;
    transform: rotate(90deg);
}

.faq-item {
    border: 1px solid var(--color-borders-primary);
    border-radius: 20px;
    margin: 0rem 0 1.5rem;
    overflow: hidden;
}

.faq-question {
    background: var(--color-background);
    padding: 1.9rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-answer {
    max-height: 0;
    padding: 0 6.5rem 0 2rem;
    font-weight: var(--font-weight-light);
    line-height: 1.4;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer.open {
    max-height: 100vh; /* Adjust based on content */
    padding: 2rem 6.5rem 2rem 2rem;
}

.faq-answer__bold {
    font-weight: var(--font-weight-regular);
}

.faq-arrow {
    transition: transform 0.3s;
}

.faq-arrow.open {
    transform: rotate(180deg);
}

.faqs__btn {
    display: block;
    justify-self: center;
    margin-top: 5rem;
}

/* Footer Section */

.footer__block {
     margin-top: 6.5rem;
}

.footer__container {
    background: var(--color-accent);
    padding: 2rem;
    border-radius: 35px;
}

.footer__nav-block {
    background: var(--color-background);
    border-radius: 25px;
    padding: 4rem;
    overflow: hidden;
}

.footer__menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 2.1rem;
}

.footer__chevron-icon {
    padding-left: 4rem;
    transform: translateX(.7rem);
}

.footer__chevron {
    display: flex;
    margin: 0 1rem;
    transform: rotate(90deg);
    padding: 0.3px;
    transition: transform 0.3s ease-out;  
}

.footer__menu-title {
    font-size: 2.1rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
}

.footer__menu-items {
     margin: 0 0 1rem 0;
}

.footer-list__item {
    font-size: 1.7rem;
    font-weight: var(--font-weight-light);
    line-height: 1.2;
    padding: 1.1rem 0;
}

.footer-list__item > a {
    color: var(--color-bodytext);
}

.footer__collapsible-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-out; 
}

.footer__collapsible--expanded .footer__chevron {
    transform: rotate(270deg);
}

.footer__collapsible--expanded .footer__collapsible-content {
    opacity: 1;
    max-height: 100vh;
}

.footer__collapsible--expanded .footer__menu-items {
    margin: 0 0 4rem 0;
}

.footer__contact-info {
    margin-top: 2.4rem;
    margin-bottom: 3.4rem;
}

.footer__phone-block > a,
.footer__email-block > a {
    color: var(--color-bodytext);
}

.footer__phone-block,
.footer__email-block {
    display: flex;
    align-items: center;
}

.footer__contact-phone {
    font-size: 1.6rem;
    font-weight: var(--font-weight-light);
    line-height: 1.1;
    padding: 1.1rem 0 1.1rem 1.8rem;
}

.footer__contact-email {
    font-size: 4vw;
    font-weight: var(--font-weight-light);
    line-height: 1.1;
    padding: 1.1rem 0 1.1rem 1.8rem;
}

@media screen and (min-width: 400px) {
    .footer__contact-email {
        font-size: 1.6rem;
    }
}

.footer__cta {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer__contact-text {
    font-size: 1.6rem;
    font-weight: var(--font-weight-light);
    line-height: 1.1;
    margin-bottom: 1.3rem;
}

.footer__btn {
    line-height: 1.223;
    white-space: unset;
    text-align: center;
}

.footer__logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-primary);
    border-radius: 25px;
    padding: 5.5rem 4rem;
    margin-top: 2rem;
    overflow: hidden;
}

.footer_logo {
    width: 80%;
    max-width: 250px;
}

.footer__logo-description {
    color: var(--color-footer-bodytext);
    font-size: 1.4rem;
    font-weight: var(--font-weight-light);
    line-height: 1.5;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 0;
    width: 85%;
    max-width: 260px;
}

.footer__closing-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
}

.footer__legal-text {
    color: var(--color-footer-legal-links);
    font-size: 1.2rem;
    font-weight: var(--font-weight-light);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0;
}

.footer__legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__legal-links {
    font-size: 1.1rem;
    font-weight: var(--font-weight-light);
    line-height: 1.3;

}

.footer__legal-links > a {
    color: var(--color-footer-legal-links);
    margin: 0 .5rem;
    text-decoration: underline;
}









/* *********************** */
/* *********************** */
/* ***** MEDIA QUERY ***** */
/* *********************** */
/* *********************** */

@media screen and (min-width: 768px) {

    /* Blocks */

    .block {
        padding: 3.2rem 4rem;
    }

    /* Grids */

    .grid--cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cards Services */
    
    .card-services__illustration {
        padding: 3rem 3rem 1.2rem;
    }

    .card-services__body {
        padding: 0 3rem;
        margin-bottom: 4rem;
    }

    /* Navigation Bar */

    .nav.active {
        position: fixed;
    }

    .call-to-action {
        max-width: 400px;
        margin: 7rem auto 0;
    }

    /* Hero Section */

    .block__section  .grid--cols-2 {
        grid-template-columns: 1fr;
    }

    .hero__content {
        display: inline-block;
        margin: 0 auto;
        width: 80%;
        text-align: center;
        align-self: center;
    }

    .hero__title {
        width: 100%;
        line-height: 1.08;
    }

    .hero__tagline {
        width: 100%;
        font-size: 2.5rem;
        line-height: 1.4;
    }

    .hero__content .btn--block {
        display: inline-block;
        width: 350px;
    }

    .hero__image {
        margin: 3rem 0 9rem;
        align-self: center;
        justify-self: center;
        width: 80%;
    }

        /* About Section */

    .services__section {
        margin-top: 8rem;
        padding: 0 4rem;
    }

    .services__block {
        border-radius: 38px;
        overflow: hidden;
    }

    .services__grid {
        gap: 3rem;
        padding: 0 3rem 3rem;
    }

    .about__title {
        font-size: 7rem;
        margin-top: 3rem;
        line-height: 1;
    }

    .about__text {
        line-height: 1.9;
    }

    /* Testimonials Section */

    .testimonials__block {
        margin-top: 2rem;
    }

    .testimonials__carrousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .testimonials__carrousel-track-mobile {
        padding-left: 4rem;
    }

    .testimonials__carrousel::after {
        width: 3.5rem;
    }

    /* FAQs Section */

    .faqs__btn {
        margin-top: 6rem;
    }

    /* Footer Section */

    .footer__block {
        margin-top: 7.5rem;
    }

    .footer__container {
        padding: 2.5rem 2.5rem 1.5rem;
    }

    .footer__nav-block {
        display: flex;
        justify-content: space-between;
    }

    .footer__menu {
        width: 50%;
    }

    .footer__contact-block {
        width: 50%;
    }

    .footer__collapsible-content {
        opacity: 1;
        max-height: 100vh;
    }

    .footer__chevron-icon {
        display: none;
    }

    .footer__logo-block {
        margin-top: 2.5rem;
    }

    .footer_logo {
        max-width: 250px;
    }

    .footer__logo-description {
        max-width: 260px;
    }

    .footer__closing-block {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 2rem;
    }

    .footer__legal {
        flex-direction: row;
        align-items: center;
        margin-bottom: 0;
    }

    .footer__legal-links {
        margin-left: 2rem;
        transform: translateY(-.03rem);
    }

    .footer__legal-links > a {
        margin: 0 .25rem;
    }

    .footer__legal-links::before {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -.95rem;
        content: '';
        background: var(--color-footer-legal-links);
        width: 1px;
        height: 80%;
    }

}



@media screen and (min-width: 1024px) {

    /* Typography */

    body {
        font-size: 1.9rem;
    }

    h1 {
        font-size: 5rem;
        margin-bottom: 3.7rem;
    }
    
    h3 {
        font-size: 5rem;
        margin-bottom: 5.4rem;
    }
    
    h4 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    h5 {
        font-size: 2.2rem;
        margin-bottom: 0;
    }
    
    /* Lists */

    .list--menu {
        color: var(--color-headings);
    }

    /* Icons */

    .icon-email {
        width: 21px;
        height: 13.5px;
    }

    .icon-phone {
        width: 18px;
        height: 18.5px;
    }

    .icon-chevron-dropdown {
        height: 24px;
        width: 14px;
    }

    /* Buttons */

    .btn {
        font-size: 1.5rem;
    }

    /* Inputs */

    .input {
        font-size: 1.5rem;
    }

    /* Cards Services */

    .service__description {
        font-size: 1.9rem;
        line-height: 1.4;
        margin: 5rem 0 0;
    }

    .card-services__illustration {
        padding: 4rem 4rem 1.6rem;
    }

    .card-services__body {
        padding: 0 4rem;
        margin-bottom: 5rem;
    }

    /* Cards Testimonials */

    .card-testimonials__body {
        height: 350px;
        min-height: 350px;
    }

    .card-testimonials__body::after {
        height: 30px;
    }

    .testimonials__comment {
        font-size: 1.9rem;
    }

    .testimonials__profile-picture {
        min-width: 94px;
        height: 94px;
    }

    .testimonials__picture {
        width: 80px;
        height: 80px;
    }

    .testimonials__picture::before {
        content: "";
        position: absolute;
        border: solid 1px var(--color-borders-primary);
        border-left: none;
        border-bottom: none;
        right: 0;
        top: 0;
        height: 74px;
        width: 74px;
    }

    .testimonials__name {
        height: 94px;
        max-height: 94px;
        font-size: 2.5rem;
    }

    /* Blocks */

    .block {
        padding: 3.2rem 6rem;
    }

    /* Grids */

    .grid--cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Navigation Bar */

    .nav.active {
        position: absolute;
    }

    .menu-icon {
        display: none;
    }

    .menu-icon-desktop {
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        width: 40px;
        height: 40px;
        border: solid 1px var(--color-borders-menu-icon);
        border-radius: 50%;
        transition: background 0.3s;
        cursor: pointer;
    }

    .menu-icon-desktop:hover {
    background: var(--color-borders-menu-icon);
    }

    .menu-icon-desktop:hover .hamburger-bar--primary {
    background: var(--color-primary);
    transition: background 0.3s;
    }

    .menu-block__hidden {
        display: none;
    }

    .menu-icon-popup {
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        width: 40px;
        height: 40px;
        border: solid 1px var(--color-borders-menu-popup-icon);
        border-radius: 50%;
        transition: all 0.3s;
        cursor: pointer;
    }

    .menu-icon-popup:hover {
        background: var(--color-text-menu-popup-accent);
        border: solid 1px var(--color-text-menu-popup-accent);
    }

    .menu-icon-popup .hamburger-bar--short {
        width: 0px;
        opacity: 0;
    }

    .menu-icon-popup .hamburger-bar--long-one {
        position: absolute;
        transform: rotate(-45deg);
        margin: 0;
    }

    .menu-icon-popup .hamburger-bar--long-two {
        position: absolute;
        transform: rotate(45deg);
        margin: 0;
    }

    .menu-icon-popup .menu-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .menu-icon-popup .hamburger-bar--primary {
        background: var(--color-borders-menu-popup-icon);
    }

    .menu-icon-popup:hover .hamburger-bar--primary {
        background: var(--color-text-menu-accent);
    }

    .menu-popup {
        background: var(--color-secondary);
        display: flex;
        flex-direction: column;
        position: fixed;
        opacity: 0;
        top: 1rem;
        right: 1rem;
        height: 490px;
        width: 395px;
        border-radius: 20px;
        overflow: hidden;
        z-index: -1;
        transition: all 0.3s;
    }

    .menu-popup.active {
        display: flex;
        max-height: 490px;
        opacity: 1;
        z-index: 100;
    }

    .menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-top: 1rem;
        padding-right: 1rem;
    }

    .list__item--languages {
        margin: 0;
    }

    .languages-slash {
        color: var(--color-text-menu-secondary);
        padding: 0 0;
    }

    .list__item > a,
    .cta__message span > a,
    .list-legal__item > a {
        color: var(--color-text-menu-secondary);
        transition: color 0.3s;
    }

    .list__item--pages .list__item > a {
        display: inline-block;
    }

    .list__item--pages .list__item:hover > a {
        color: #22262E;
    }

    .list__item--pages .list__item > a:hover {
        color: var(--color-text-menu-secondary-hover);
    }

    .list__item--pages .list__item {
        padding: 0 6rem;
        line-height: 1.8;
    }

    .list__item--pages {
        margin: 4rem 0 4.5rem;
    }

    .call-to-action {
        margin-top: 0;
        padding: 0 6rem;
    }

    .menu-footer {
        display: flex;
        position: absolute;
        background: var(--color-secondary);
        bottom: 0;
        border-top: solid 1px rgba(34, 38, 46, .5);
    }

    .cta__message {
        color: var(--color-text-menu-secondary);
        margin-top: 0;
        margin-bottom: 0;
    }

    .list-legal__item {
        color: var(--color-text-menu-secondary);
    }

    /* Hero Section */

    .block__section  .grid--cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__content {
        order: -2;
        display: unset;
        width: 100%;
        text-align: left;
        align-self: center;
    }

    .hero__title {
        width: 85%;
    }

    .hero__tagline {
        width: 85%;
        margin-bottom: 6rem;
    }

    .hero__content .btn {
        font-size: 2.5rem;
    }

    .hero__content .btn--block {
        width: 65%;
    }

    .hero__btn {
        margin-bottom: 4rem;
    }

    .hero__image {
        margin: 0;
        align-self: center;
        width: 100%;
    }

    /* About Section */

    .about__title {
        font-size: 8rem;
        margin-top: 8rem;
        margin-bottom: 3rem;
        line-height: 1;
    }

    .about__text {
        line-height: 2;
        margin-bottom: 4.5rem;
    }

    /* Services Section */

    .services__section {
        margin-top: 11rem;
        padding: 0 6rem;
    }

    .services__long-title {
        margin-top: 0;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .services__block {
        border-radius: 50px;
        overflow: hidden;
    }

    .services__grid {
        gap: 5rem;
        padding: 0 5rem 5rem;
    }

    .services__block .block {
        padding: 5rem 2rem 7rem;
    }

    .services__long-title {
        line-height: 2;
    }

    /* Testimonials Section */

    .testimonials__block {
        margin-top: 6rem;
    }

    .testimonials__header {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .testimonials__block {

        padding: 3.2rem 6rem;
    }

    .testimonials__title-block {
        width: 100%;
    }

    .testimonials__block .block {
        margin: 0;
        padding: 0;
    }

    .testimonials__block .container {
        display: flex;
        flex-direction: row;
    }

    .testimonials__long-title {
        width: 300px;
        line-height: 1.1;
        margin-top: 2rem;
        margin-bottom: 5.4rem;
    }

    .testimonials__arrows {
        display: flex;
        align-self: unset;
        align-items: flex-end;
        padding-bottom: 0.1rem;
    }

    .testimonials__carrousel-mobile {
        display: none;
    }

    .testimonials__carrousel {
        display: flex;
        position: relative;
        overflow: hidden;
        padding-left: 2rem;
        margin-top: 3rem; 
    }

    .testimonials__carrousel::after {
        width: 8rem;
    }

    .testimonials__size {
        width: 334px;
        min-width: 334px;
        margin-left: 5rem;
        margin-right: 0;
    }

    .send-comment__title {
        margin-bottom: 3rem;
    }

    .send-comment__content {
        display: flex;
        padding: 3rem 6rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .send-comment__form-block {
        margin-left: 10rem;
        margin-top: 6.5rem;
        width: 100%;
    }

    .send-comment__chevron {
        margin-bottom: 6rem;
    }

    /* FAQs Section */

    .faqs__container {
        margin-top: 6rem;
    }

    .faqs__long-title {
        line-height: 1.1;
        margin-top: 2rem;
        margin-bottom: 5.4rem;
    }

    .faq-item {
        margin: 0rem 0 2rem;
    }

    .faq-question {
        padding: 3rem 4.5rem;
    }

    .faq__heading {
        padding-right: 5rem;
    }

    .faq-answer {
        padding: 0 9rem 0 4.5rem;
        line-height: 1.4;
    }

    .faq-answer.open {
        max-height: 200px; /* Adjust based on content */
        padding: 4.5rem 9rem 4.5rem 4.5rem;
    }

    /* Footer Section */

    .footer__block {
        margin-top: 9rem;
    }

    .footer__container {
        display: flex;
        flex-direction: column;
        padding: 3rem 3rem 2rem;
    }

    .footer__content-block {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .footer__nav-block {
        width: 100%;
        margin-left: 3rem;
        padding: 5rem;
    }

    .footer__menu-title {
        font-size: 2.5rem;
    }

    .footer-list__item {
        font-size: 2.0rem;
    }

    .footer__contact-phone {
        font-size: 1.8rem;
    }

    .footer__contact-email {
        font-size: 1.8rem;
    }

    .footer__contact-text {
        font-size: 1.9rem;
    }

    .footer__logo-block {
        margin-top: 0rem;
        min-width: 370px;
        justify-content: center;
    }

    .footer_logo {
        transform: translateY(-.2rem);
    }

    .footer__logo-description {
        max-width: 200px;
    }

    .footer__closing-block {
        margin-top: 2rem;
    }

    .footer__legal-text {
        font-size: 1.4rem;
    }

    .footer__legal-links {
        font-size: 1.2rem;
    }
}




@media screen and (min-width: 1190px) {
    .about__title {
        font-size: 9rem;
    }
}