* {
    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;
}

/*************************************************************************
About Us
*************************************************************************/

.about-us-header {
    margin-top: 112px;
    padding: 0 72px;
}

.about-us-header-overlay {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 72px;
    background-image: radial-gradient(circle at bottom left, rgba(0, 0, 0, 80%), rgba(0, 0, 0, 0%));
    width: calc(100% - 144px);
    height: 80vh;
    border-radius: 16px;
}

.about-us-header-img {
    width: 100%;
    object-fit: cover;
    height: 80vh;
    border-radius: 16px;
}

.about-us-header-content {
    width: 85%;
    margin: -38vh auto 0;
}

.about-us-header-first-content {
    padding: 0 58px;
    margin-bottom: 38px;
}

.about-us-header-nch-stamp {
    margin-bottom: 12px;
}

.about-us-header-nch-stamp p {
    background-color: #FAFAFA;
    display: inline-block;
    color: #212121;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: bold;
}

.about-us-header-first-content h1 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 64px;
    color: #FAFAFA;
}

.about-us-header-second-content {
    background-color: #FAFAFA;
    padding: 52px 62px;
    border-radius: 20px;
}

.about-us-header-second-content h2 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 34px;
    margin-bottom: 28px;
}

/* .about-us-header-second-content-text {
    display: flex;
    justify-content: space-between;
} */

.about-us-header-second-content-text p {
    font-size: 22px;
    line-height: 34px;
}

.about-us-header-second-content-text p span {
    color: #00ABC7;
}

@media screen and (max-width: 1180px) {
    .about-us-header {
        padding: 0 42px;
    }

    .about-us-header-overlay {
        left: 42px;
        width: calc(100% - 84px);
    }

    .about-us-header-content {
        width: 92%;
    }

    .about-us-header-first-content {
        padding: 0 28px;
    }

    .about-us-header-second-content {
        padding: 52px 36px;
    }
}

@media screen and (max-width: 1040px) {
    .about-us-header {
        margin-top: 98px;
    }

    .about-us-header-first-content h1 {
        font-size: 64px;
    }

    .about-us-header-second-content h2 {
        font-size: 34px;
        margin-bottom: 52px;
    }

    .about-us-header-second-content-text p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media screen and (max-width: 720px) {
    .about-us-header-first-content h1 {
        font-size: 48px;
    }

    .about-us-header {
        padding: 0 22px;
    }

    .about-us-header-overlay {
        left: 22px;
        width: calc(100% - 44px);
    }

    .about-us-header-second-content-text {
        display: block;
    }

    .about-us-header-second-content-text p {
        width: 100%;
    }

    .about-us-header-second-content-text p:first-child {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 490px) {
    .about-us-header-first-content {
        padding: 0 18px;
    }

    .about-us-header-second-content {
        padding: 42px 26px;
    }

    .about-us-header-first-content h1 {
        font-size: 44px;
        line-height: 54px;
    }

    .about-us-header-second-content h2 {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .about-us-header-second-content-text p {
        font-size: 18px;
    }
}

/*****************************************************************
About Us Body
******************************************************************/

.about-us-partners {
    text-align: center;
    margin-bottom: 140px;
}

.about-us-partners h3 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 44px;
    margin-top: 62px;
    margin-bottom: 62px;
}

.about-us-partners-imgs {
    display: flex;
    justify-content: space-around;
	align-items: center;
    flex-wrap: wrap;
    background-color: #212121;
    padding: 42px;
    border-radius: 12px;
}

.about-us-body {
    margin-top: 88px;
    padding: 0px 72px;
}

.about-us-find-us {
    display: flex;
    align-items: center;
}

.about-us-find-us-image-container {
    min-width: 704px;
    height: 594px;
}

/* .about-us-find-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
} */

.map {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #343434;
}

@media screen and (max-width: 1220px) {
    .about-us-find-us-image-container {
        min-width: 504px;
        height: 494px;
    }
}

.about-us-find-us-text {
    padding-left: 76px;
}

.about-us-find-us-text h3 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 44px;
    margin-bottom: 62px;
}

.about-us-find-us-text p {
    font-size: 24px;
    line-height: 34px;
}

.about-us-team {
    margin-top: 128px;
    text-align: center;
}

.about-us-team h3 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 44px;
    margin-bottom: 62px;
}

.about-us-team-img {
    width: 90%;
    height: 510px;
    object-fit: cover;
    border-radius: 20px;
}

.about-us-team p {
    font-size: 24px;
    margin: 62px auto 0;
    color: #5B5B5B;
    line-height: 34px;
    width: 90%;   
}

.about-us-contact {
    margin-top: 148px;
}

.about-us-contact-container {
    display: flex;
    border-radius: 20px;
    box-shadow: 0 0 34px 10px rgba(182, 182, 182, 25%);
    padding: 60px 20px;
}

.about-us-contact-image-container {
    flex: 1;
}

.about-us-contact-img {
    width: 100%;
    margin-top: 70px;
}

.about-us-contact-links-container {
    flex: 2;
    margin-left: 88px;
}

.about-us-contact-links-container h3 {
    font-family: Vogie-Black, "Inter", sans-serif;
    font-size: 44px;
    margin-bottom: 62px;
}

.about-us-contact-links {
    display: flex;
}

.about-us-contact-phone {
    flex: 1;
}

.about-us-contact-others {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-us-contact-phone-header,
.about-us-contact-others-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.about-us-contact-phone-header h4,
.about-us-contact-others-header h4 {
    font-size: 16px;
    font-weight: normal;
    margin-left: 8px;
}

.about-us-contact-phone-header.no-email-icon h4,
.about-us-contact-others-header.no-email-icon h4 {
    margin-left: 0px;
}

.about-us-contact-others-header.nth-2-child {
    margin-top: 38px;
}

.about-us-contact-phone p {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-us-contact-phone p a {
    color: inherit;
}

.about-us-contact-others p {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-us-contact-others p a {
    color: inherit;
}

.about-us-contact-others p.nth-2-child {
    font-size: 20px;
}

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

.about-us-contact-others p.nth-2-child.flex {
    display: flex;
    align-items: center;
}

.about-us-contact-others p.nth-2-child svg {
    margin-right: 6px;
}

@media screen and (max-width: 1180px) {
    .about-us-body {
        padding: 0px 42px;
    }
}

@media screen and (max-width: 1040px) {
    .about-us-find-us-text h3,
    .about-us-team h3,
    .about-us-contact-links-container h3,
    .about-us-partners h3  {
        font-size: 34px;
    }

    .about-us-team-img {
        width: 100%;
        height: 480px;
    }

    .about-us-find-us-text p,
    .about-us-team p,
    .about-us-contact-phone p,
    .about-us-contact-others p  {
        font-size: 20px;
        line-height: 28px;
    }
}

@media screen and (max-width: 980px) {
    .about-us-find-us-image-container {
        min-width: 444px;
        height: 420px;
    }

    .about-us-find-us-text {
        padding-left: 46px;
    }

    .about-us-team-img {
        height: 420px;
    }
}

@media screen and (max-width: 980px) {
    .about-us-body {
        margin-top: 96px;
    }

    .about-us-find-us {
        display: block;
    }

    .about-us-find-us-text {
        margin-top: 36px;
        padding-left: 0;
    }
    
    .about-us-find-us-text h3 {
        text-align: center;
        margin-bottom: 22px;
    }
    
    .about-us-find-us-text p {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .about-us-team {
        margin-top: 160px;
    }

    .about-us-contact {
        margin-top: 180px;
    }

    .about-us-contact-links-container {
        flex: 1;
        margin-left: 68px;
    }

    .about-us-contact-links {
        display: block;
    }

    .about-us-contact-others-header.nth-2-child {
        margin-top: 26px;
    }

    .about-us-contact-phone {
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 720px) {
    .about-us-body {
        padding: 0px 22px;
    }

    .about-us-team-img {
        width: 100%;
        height: 280px;
    }

    .about-us-contact-container {
        display: flex;
        flex-direction: column-reverse;
        box-shadow: 0 0 34px 10px rgba(182, 182, 182, 25%);
        padding: 60px 20px;
    }
}

@media screen and (max-width: 490px) {
    .about-us-header-first-content h1 {
        font-size: 44px;
        line-height: 54px;
    }

    .about-us-find-us-text h3,
    .about-us-team h3,
    .about-us-contact-links-container h3,
    .about-us-partners h3   {
        font-size: 22px;
    }

    .about-us-team h3 {
        margin-bottom: 28px;
    }

    .about-us-find-us-text p,
    .about-us-team p,
    .about-us-contact-phone p,
    .about-us-contact-others p {
        font-size: 18px;
    }

    .about-us-find-us-text p {
        width: 100%;
    }

    .about-us-team p {
        width: 100%;
        margin-top: 28px;
    }

    .about-us-find-us-image-container {
        min-width: 100%;
        height: 214px;
    }    

    .about-us-team-img {
        width: 100%;
        height: 214px;
    }

    .about-us-contact-links-container {
        text-align: center;
        margin-left: 0;
    }

    .about-us-contact-phone-header,
    .about-us-contact-others-header {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

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

footer {
    margin-top: 124px;
    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%;
    }
}