* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #FAFAFA;
    width: 100%;
    max-width: 2100px;
    margin: 0 auto;
    color: #343434;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 28px 32px;
    z-index: 4;
    background-color: #FAFAFA;
}

.nav-bar .nav-normal-logo {
    visibility: hidden;
}

.nav-bar .nav-bigger-logo {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.5);
    transform-origin: center left;
}

@media screen and (max-width: 550px) { .nav-bar .nav-bigger-logo { transform: scale(1); } }

.nav-bar-links ul li {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    vertical-align: middle;
}

.nav-bar-links ul li a {
    padding: 4px 6px;
    color: #343434;
    text-decoration: none;
}

.nav-bar-link-active::before {
    content: "";
    height: 2px;
    width: 50%;
    background-color: #00ABC7;
    border-radius: 2px;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-bar-link-active.nav-bar-link-active {
    color: #00ABC7;
    font-weight: bold;
}

.nav-bar-links ul li:last-child { margin-right: 0; }

.nav-bar-link-responsive-flag.nav-bar-link-responsive-flag { display: none; }

.nav-bar-lang-btn {
    background-color: transparent;
    border: 0;
    color: #343434;
    padding: 4px 12px;
    border-radius: 30px;
    cursor: pointer;
}

.nav-bar-lang-btn-active {
    background-color: #00ABC7;
    color: #F4F4F4;
}

@media screen and (max-width: 878px) {
    .nav-bar-links ul li {
        display: none;
    }

    .nav-bar-link-responsive-flag.nav-bar-link-responsive-flag {
        display: inline-block;
    }
}

@media screen and (max-width: 490px) {
    .nav-bar {
        padding: 18px 16px;
    }
}

.side-nav-bar {
    position: fixed;
    background-color: #FAFAFA;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.side-nav-bar.side-nav-bar-hidden {
    transform: scaleX(0);
}

.nav-bar-close p {
    background-color: #212121;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    color: #D7272E;
}

.side-nav-bar ul {
    height: 100%;
    list-style-type: none;
}

.side-nav-bar ul li {
    width: 80%;
    margin: 48px auto;
    cursor: pointer;
    padding: 12px;
}

.side-nav-bar ul li a {
    font-size: 34px;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.side-nav-bar ul li:hover a {
    transform: translateX(40px);
    transition: transform 350ms ease-in-out;
}

/*************************************************************************
Contact
*************************************************************************/

.contact-us {
    display: flex;
    margin: 128px auto 0px;
    max-width: 1400px;
}

@media screen and (max-width: 1520px) {
    .contact-us {
        display: flex;
        margin: 128px 72px 0px;
    }
}

.contact-us-loc-phone {
    flex: 1.2;
    margin-right: 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 110vh;
}

.contact-us-form { flex: 2; }

.contact-us-form-header {
    margin-bottom: 58px;
}

.contact-us-form-header h1 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 52px;
    line-height: 94px;
    margin-bottom: 24px;
}

.contact-us-form-header p {
    color: #5B5B5B;
    font-size: 24px;
    line-height: 36px;
}

.contact-us-input {
    display: block;
    margin-bottom: 28px;
    width: 100%;
    padding: 24px 12px;
    font-size: 24px;
    background-color: transparent;
    border: 0;
    border-bottom: 3px solid #7A7A7A;
    outline: 0;
}

.contact-us-input:active { outline: 0; }

.contact-us-form-name-container .contact-us-input {
    display: inline-block;
    width: 44%;
}

.contact-us-form-name-container .contact-us-input:first-child { margin-right: 10%; }

.contact-us-input-btn {
    background-color: #D7272E;
    color: #FFFFFF;
    font-size: 22px;
    padding: 12px 0;
    width: 100%;
    border-radius: 68px;
    border: 0;
}

.contact-us-input-btn span { margin-right: 8px; }

.contact-us-form-inputs p {
    text-align: center;
    margin-top: 24px;
    font-size: 16px;
    color: #5B5B5B;
}

.contact-us-location-container-1 { margin-bottom: 32px; }
.contact-us-phone-container { margin-bottom: 32px; }

.contact-us-location-container-1 h2,
.contact-us-phone-container h2,
.socials-containers h2 {
    font-family: Vogie-Black, "Inter", sans-serif;
    color: #5B5B5B;
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-us-phone-container a { text-decoration: none; }

.contact-us-location-container-1 p,
.contact-us-phone-container p {
    color: #00ABC7;
    font-size: 18px;
}

.contact-us-phone-container p { font-size: 24px; }

.about-us-contact-others-socials {
    text-decoration: none;
    color: #00ABC7;
}

.socials-containers p.nth-2-child {
    font-size: 20px;
}

.socials-containers p.nth-2-child.flex {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.socials-containers p.nth-2-child.flex svg {
    margin-right: 6px;
}

.contact-us-icons {
    display: flex;
    justify-content: space-between;
}

.contact-us-icons-icon {
    position: absolute;
    bottom: 18%;
    right: 15%;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 350ms ease-in-out 0ms, transform 350ms ease-in-out 0ms;
}

svg.contact-us-icons-icon:not(:has(.active)) {
    transform: scale(2.5);
}

p.contact-us-icons-icon {
    font-size: 280px;
    color: #00ABC7;
}

svg.contact-us-icons-icon-firstname,
svg.contact-us-icons-icon-lastname,
svg.contact-us-icons-icon-message,
svg.contact-us-icons-icon-phone {
    transform-origin: bottom right;
    transform: scale(3);
    bottom: 18%;
}

p.contact-us-icons-icon.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 200ms ease-in-out 250ms, transform 200ms ease-in-out 250ms;
}

svg.contact-us-icons-icon.active {
    opacity: 1;
    transform: scale(3.4);
    transition: opacity 200ms ease-in-out 250ms, transform 200ms ease-in-out 250ms;
}

svg.contact-us-icons-icon.contact-us-icons-icon-phone.active {
    opacity: 1;
    transform: scale(3);
    transition: opacity 200ms ease-in-out 250ms, transform 200ms ease-in-out 250ms;
}

@media screen and (max-width: 1180px) {
    .contact-us-icons-icon {
        right: 0;
    }
}

@media screen and (max-width: 1020px) {
    .contact-us {
        flex-direction: column-reverse;
    }

    .contact-us-loc-phone {
        flex-direction: row;
    }

    .contact-us-loc-phone {
        margin: 0;
    }

    .contact-us-location {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 80px;
    }

    .contact-us-icons-icon-iconography {
        display: none;
    }

    .contact-us-icons-icon {
        visibility: hidden;
    }
}

@media screen and (max-width: 720px) {
    .contact-us-form-header h1 {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 24px;
    }

    .contact-us-form-header p {
        font-size: 20px;
        line-height: 28px;
    }

    .contact-us-location-container-1 h2,
    .contact-us-phone-container h2 {
        font-size: 24px;
    }

    .contact-us-location-container-1 p {
        font-size: 20px;
        line-height: 28px;
    }

    .contact-us-phone-container p {
        font-size: 28px;
    }
}

@media screen and (max-width: 600px) {
    .contact-us {
        margin: 128px 42px 0px;
    }
}

@media screen and (max-width: 512px) {
    .contact-us {
        margin: 128px 22px 0px;
    }

    .contact-us-form-header h1 {
        font-size: 44px;
        line-height: 54px;
        margin-bottom: 24px;
    }

    .contact-us-form-header p {
        font-size: 18px;
        line-height: 28px;
    }

    .contact-us-form-name-container .contact-us-input {
        display: block;
        width: 100%;
    }

    .contact-us-input {
        margin-bottom: 48px;
        padding: 18px 12px;
    }
}

@media screen and (max-width: 460px) {
    .contact-us-location {
        flex-direction: column;
        align-items: center;
    }
}

/*************************************************************************
Footer
*************************************************************************/

footer {
    margin-top: 94px;
    padding: 0 22px;
    margin-bottom: 38px;
}

.footer {
    color: #F4F4F4;
    background-color: #343434;
    border-radius: 12px;
    padding: 58px 62px 34px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-container-desc {
    flex: 1;
    max-width: 436px;
}

.footer-container-desc p {
    margin-top: 14px;
    font-size: 18px;
    line-height: 30px;
}

.footer-container-links {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.footer-container-links-container-1 p,
.footer-container-links-container-2 p {
    font-size: 22px;
    margin-bottom: 26px;
}

.footer-container-links-container-1 ul,
.footer-container-links-container-2 ul {
    list-style: none;
}

.footer-container-links-container-1 ul li,
.footer-container-links-container-2 ul li {
    margin-bottom: 18px;
}

.footer-container-links-container-1 ul li a,
.footer-container-links-container-2 ul li a {
    font-size: 18px;
    color: #F4F4F4;
    text-decoration: none;
}

.footer-container-links-container-2-header {
    display: flex;
}

.footer-container-links-container-2-header svg {
    margin-top: 4px;
}

.footer-container-links-container-2-header p {
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-container-links-container-2-header p.remove-margin {
    margin-left: 0px;
}

.footer-container-links-container-2-email {
    margin-top: 38px;
}

.footer-container-copyright {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    margin-top: 124px;
}

.footer-container-copyright a {
    color: inherit;
}

@media screen and (max-width: 1100px) {
    .footer-container-links {
        display: block;
        margin-left: 80px;
    }

    .footer-container-desc {
        max-width: 650px;
    }

    .footer-container-links-container-2 {
        margin-top: 80px;
    }

    .footer-container-copyright {
        display: block;
        text-align: center;
        margin-top: 78px;
    }

    .footer-container-copyright p {
        margin-bottom: 18px;
    }

    .footer-container-copyright p:nth-child(2) {
        width: 70%;
        margin: 0 auto 18px;
    }
}

@media screen and (max-width: 490px) {
    footer {
        padding: 0 6px;
    }

    .footer {
        padding: 58px 18px 34px;
    }

    .footer-container {
        display: block;
    }

    .footer-container-links {
        display: flex;
        margin-left: 0px;
    }

    .footer-container-desc {
        max-width: 350px;
        margin-bottom: 72px;
    }

    .footer-container-links-container-2 { margin-top: 0px; }

    .footer-container-desc p {
        font-size: 16px;
        line-height: 30px;
    }

    .footer-container-links {
        display: flex;
        width: 100%;
    }
}