<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">: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: #2e323a;
    --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 &gt; .icon--primary {
    fill: var(--color-icon-hover-primary);
    cursor: pointer;
    transition: fill 0.3s ease-in;
}

.icon-social-container:hover &gt; .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 &gt; .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: #22262E;
    color: var(--color-btn-text-secondry);
}

.btn--secondary:hover {
    background: var(--color-btn-hover-secondary);
}

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

/* 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-accent);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    z-index: 50;
}

.nav.active {
    position: fixed;
    top: 0;
}

.nav__visible {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2rem;
}

.nav__visible &gt; 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 #22262E;
    border-radius: 50%;
    transition: background 0.3s;
    cursor: pointer;
}

.menu-icon:hover {
    background: #BEEB29;
}

.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: #22262E;
}

.menu-icon:hover .hamburger-bar--primary {
    background :#22262E;
    transition: background 0.3s;
}

.hamburger-bar--secondary {
    background: var(--color-primary);
}

.menu-block--primary {
    background: var(--color-accent);
}

.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 &gt; a,
.cta__message span &gt; a,
.list-legal__item &gt; a {
    color: var(--color-text-menu-secondary);
    transition: color 0.3s;
}

.list__item--pages .list__item &gt; a {
    display: block;
}

.list__item--pages .list__item:hover &gt; 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-secondary);
    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-secondary);
    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-accent);
    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-secondary);
}

.list__legal-links {
    display: flex;
    margin: 0;
}

.social-network {
    display: flex;
}

.menu-icon.active {
    background: #BEEB29;
    border: solid 1px #BEEB29;
    transition: background 0.3s;
}

.menu-icon.active:hover {
    background: #22262E;
    border: solid 1px #22262E;
}

.menu-icon.active .hamburger-bar--primary {
    background: #22262E;
}

.menu-icon.active:hover .hamburger-bar--primary {
    background: #F0EEF0;
}

.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;
}

.menu__desktop {
    display: none;
}

/* Blog Section */

.blog__block {
    margin-top: 2rem;
}

.blog__long-title {
    font-size: 3.3rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
    margin-top: 1.2rem;
    margin-bottom: 7.5rem;
}

.blog__card {
    background: #F0EEF0;
    border-radius: 40px;
    padding: 1.7rem 1.7rem 3rem;
    overflow: hidden;
}

.card__image {
    background: grey;
    height: 330px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__heading {
    margin-top: 2.5rem;
}

.card__title {
    color: #22262E;
    font-size: 2.2rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
}

.card__text {
    color: #22262E;
    font-size: 1.4rem;
    font-weight: var(--font-weight-light);
    line-height: 1.5;
    margin-top: 1.2rem;
}

.card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 5rem;
}

.card__author {
    color: #000;
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.card__stats {
    display: flex;
    color: #22262E;
    font-size: 1.4rem;
    font-weight: var(--font-weight-extralight);
    line-height: 1.1;
}

@media screen and (max-width: 370px) {
    .card__stats {
        flex-direction: column;
    }
}

.stats--primary {
    margin-bottom: 0;
}
.stats--secondary {
    margin-bottom: 0;
    margin-right: 2.5rem;
}

.stats__desktop {
    display: none;
}

.blog__chevron {
    width: 100%;
    max-width: 36px;
}

.grid__blog {
    gap: 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 &gt; 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 &gt; a,
.footer__email-block &gt; 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 &gt; 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-3 {
        grid-template-columns: repeat(2, 1fr);
        
    }

    .grid--cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid__main {
        grid-column: 1 / span 2;
    }

    /* Navigation Bar */

    .nav.active {
        position: fixed;
    }

    .call-to-action {
        max-width: 400px;
        margin: 7rem auto 0;
    }

    /* Blog Section */

    .grid__main {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 2rem;
    }


    .grid__general {
        padding: 2rem;
    }

    .grid__main .card__heading {
        margin-top: .5rem;
    }

    .grid__general .card__image {
        max-height: 200px;
    }

    .grid__main .card__image {
        height: 100%;
        width: 340px;
        min-width: 340px;
    }

    .grid__main .card__content {
        margin-left: 4rem;
    }

    .card__footer {
        margin-bottom: .5rem;
    }

    .grid__blog {
        gap: 2rem;
    }

    /* 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 &gt; 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;
    }

    /* Blocks */

    .block {
        padding: 3.2rem 6rem;
    }

    /* Grids */

    .grid--cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid--cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid__main {
        grid-column: 1 / span 3;
    }

    /* Navigation Bar */

    .nav {
        position: absolute;
        flex-wrap: unset;
        padding: 0 2rem;
        height: 70px;
        top: 0;
    }

    .nav__visible {
        padding: 0;
        width: unset;
    }

    .nav.active {
        position: absolute;
    }

    .menu-icon {
        display: none;
    }

    .menu__desktop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav__desktop-right {
        display: flex;
    }

    .list__menu-desktop {
        display: flex;
        margin: 0 auto;
    }

    .menu-block__hidden {
        display: none;
    }

    .btn--menu {
        line-height: 1;
        text-align: center;
        align-self: center;
        padding: 1.1rem 2.5rem;
        white-space: nowrap;
    }

    .list__item--pages {
        font-size: 1.7rem;
    }

    .list__item--pages .list__item {
        font-weight: var(--font-weight-regular);
        padding: 0 3rem;
    }

    .list__item--languages {
        font-size: 1.4rem;
        margin-right: 2rem;
    }

    .list__item--languages .list__item {
        font-weight: var(--font-weight-light);
        padding: 0 1rem;
    }

    /* Blog Section */

    .blog__block {
        margin-top: 12rem;
    }

    .blog__long-title {
        font-size: 5rem;
        margin-top: 2.5rem;
        margin-bottom: 10rem;
    }

    .blog__card {
        padding: 2.2rem;
    }

    .grid__main .card__image-block {
        width: 40%;
    }

    .grid__general .card__image {
        max-height: 170px;
    }

    .grid__main .card__image {
        width: 100%;
    }

    .grid__main .card__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 60%;
        margin-left: 5rem;
    }

    .grid__main .card__heading {
        margin-top: 0;
    }

    .card__title {
        font-size: 2.5rem;
    }

    .card__text {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .card__footer {
        margin-bottom: 0;
    }

    .grid__general .card__footer {
        margin-top: 4.5rem;
    }

    .stats__mobile {
        display: none;
    }

    .stats__desktop {
        display: flex;
    }

    /* 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 query for desktop nav bar */
@media screen and (min-width: 1100px) {
    .list__item--pages .list__item {
        font-weight: var(--font-weight-regular);
        padding: 0 5rem;
    }
}</pre></body></html>