/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --v20: min(20px, 2.17vh);
  --v26: min(26px, 2.82vh);
  --v32: min(32px, 3.48vh);
  --v38: min(38px, 3.5vh);
  --v50: min(50px, 5.43vh);
  --v65: min(57px, 6.19vh);
  --color-orange: #EE6F1F;
  --section-vertical: min(38px, 3.5vh);
  --section-horizontal: min(38px, 3.5vh);
}

html, body {
    height: 100%;
    color: #141414;
    line-height: 1.3;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    font-size: min(18px, 1.95vh);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Main Container */
.page-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
}

/* Left Column */
.left-column {
    width: 57.292vw; /* 1100/1920*100 */
    height: 100%;
    padding: var(--v65); /* 65px = 3.385vw */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logos-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-emda img,
.logo-kf img {
    height: auto;
}

.logo-emda img {
    width: auto;
    height: 5.4vh;
}

.logo-kf img {
    width: auto;
    height: 45px;
}

.gif-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: calc(2 * var(--v65));
}

.gif-wrapper img {
    max-width: 100%;
    height: auto;
}
.gif-wrapper img.mobile, .mobile {
    display: none;
}

.coming-soon-text {
    font-size: min(50px, 5.43vh);
    color: var(--color-orange);
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

/* Right Column */
.right-column {
    width: 42.708vw; /* 820/1920*100 */
    height: 100%;
    padding: var(--v65) 0 var(--v65) 0; /* 65px = 3.385vw */
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--color-orange);
}

/* Right Column Sections */
.section {
    padding: 0 calc(2 * var(--section-horizontal)) 0 var(--section-horizontal);
}

.section-top {
    padding-top: 0;
    padding-bottom: var(--section-vertical); /* 50px */
    border-bottom: 1px solid var(--color-orange);
}

.section-middle {
    padding-top: var(--section-vertical); /* 50px */
    padding-bottom: var(--section-vertical); /* 50px */
    border-bottom: 1px solid var(--color-orange);
    flex: 1;
}

.section-bottom {
    padding-top: var(--section-vertical); /*50px */
    padding-bottom: 0;
}

/* Top Section Content */
.right-text {
    font-size: var(--v26);
    margin-bottom: 0.5em;
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.ceo-signature {
    color: var(--color-orange);
    font-weight: 400;
    margin-top: 1.5em;
}

/* Middle Section Content */
.section-title {
    font-size: var(--v32);
    color: var(--color-orange);
    margin-bottom: 1em;
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(30px, 5vw);
}

.service-item {
    display: flex;
    flex-direction: column;
}

.service-icon {
    margin-bottom: 10px; /* 20px */
    min-height: min(74px, 8.5vh);
}

.service-icon img {
    max-height: min(74px, 8.5vh);
    width: 36px;
}
.service-item:nth-of-type(2) .service-icon img {
    max-height: none;
    width: 42px;
}
.service-item:nth-of-type(3) .service-icon img {
    max-height: none;
    width: 36px;
}

.service-text {

}

/* Bottom Section Content */
.contact-title {
    font-size: var(--v32);
    color: var(--color-orange);
    margin-bottom: var(--v20);
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.contact-details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-separator {
    color: #141414;
}

@media (max-aspect-ratio: 1.75) and (min-width: 768px) {
    :root {
      --v20: min(20px, 1.04vw);
      --v26: min(26px, 1.35vw);
      --v32: min(32px, 1.66vw);
      --v38: min(38px, 3.5vh);
      --v50: min(50px, 2.6vw);
      --v65: min(65px, 6vh);
      --section-vertical: min(50px, 5.5vh);
    }
    .left-column, .right-column {
        padding-top: var(--section-vertical);
        padding-bottom: var(--section-vertical);
    }

}

@media (max-width: 767px) {
    :root {
      --v20: 18px; /*min(20px, 1.04vw);*/
      --v26: 20px; /*min(26px, 1.35vw);*/
      --v32: 25px; /*min(32px, 1.66vw);*/
      --v38: min(38px, 3.5vh);
      --v50: min(50px, 2.6vw);
      --v65: min(65px, 6vh);
      --section-vertical: 45px;
    }

    .page-wrapper {
        display: flex;
        flex-direction: column;
    }
    .logos-wrapper {
        margin-bottom: 50px;
    }
    .logos-wrapper img {
        height: 28px;
    }
    .logos-wrapper .logo-emda img {
        height: 35px;
    }

    .gif-wrapper img.desktop, .desktop {
        display: none;
    }
    .gif-wrapper img.mobile, .mobile {
        display: block;
    }

    .left-column {
        width: 100%;
        height: auto;
        padding: 40px 21px 60px;
        border-bottom: 1px solid var(--color-orange);
    }
    .coming-soon-text {
        font-size: var(--v32);
        margin-top: 35px;
    }
    .gif-wrapper {
        padding: 0;
    }
    .gif-wrapper img {
        width: 90vw;
    }
    .right-column {
        width: 100%;
        height: auto;
        padding-bottom: 0;
        border-left: none;
    }
    .section {
        padding: var(--section-vertical) 21px;
    }
    .section-top {
        padding-top: 0;
    }
    .ceo-signature {
        font-size: var(--v20);
    }
    .services-grid {
        grid-template-columns: none;
    }
    .service-item {
        flex-direction: row;
        align-items: center;
    }
    .service-icon {
        margin: 0 20px 0 0;
        display: flex;
        align-content: center;
        min-width: 70px;
        justify-content: center;
    }
    .service-icon img {
        max-width: 38px;
        max-height: none;
    }
    .service-text {
        font-size: var(--v20);
    }
    .service-item:nth-of-type(2) .service-icon img {
        max-width: 45px;
        max-height: none;
    }
    .service-item:nth-of-type(3) .service-icon img {
        max-height: none;
    }
    .contact-details {
        flex-direction: column;
        align-items: baseline;
        font-size: var(--v20);
    }
    .contact-details span {
        display: flex;
    }
    .contact-details .contact-separator {
        display: none;
    }
    .contact-title {
        margin-bottom: calc(0.5 * var(--section-vertical));
    }
}