* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: "Inter", sans-serif;
}

.wrapper {
    margin: 0 auto;
    max-width: 1440px;
    padding: 35px 0px;
}

.container {
    margin: 0 auto;
    padding: 0px 30px;
    max-width: 1220px;
}

.logo-muk {
    width: 100%;
    max-width: 200px;
}

.logo-aws {
    width: 100%;
    max-width: 65px;
}

.header {
    margin-bottom: 30px;
}

.header-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logos {
    gap: 0px 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.lang-switcher {
    user-select: none;
    position: relative;
}

.lang-switcher-current {
    padding: 12px;
    gap: 0px 8px;
    cursor: pointer;
    border-radius: 6px;
    align-items: center;
    display: inline-flex;
    border: 1px solid #f6f2f2;
}

.lang-switcher-current:hover {
    background-color: #fdfdfd;
}

.lang-switcher-current img {
    transition: all 0.2s linear;
}

.lang-switcher-current span {
    font-size: 14px;
    color: #0084FF;
}

.lang-switcher-options {
    position: absolute;
    top: 90%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    z-index: 9999;
    overflow: hidden;
    border-radius: 6px;
    background-color: #ffffff;
    transition: all 0.2s linear;
    border: 1px solid #f6f2f2;
}

.lang-switcher.lang-switcher-active .lang-switcher-current img {
    transform: rotate(180deg);
}

.lang-switcher.lang-switcher-active .lang-switcher-options {
    top: calc(100% + 10px);
    visibility: visible;
    opacity: 1;
}

.lang-switcher-option {
    color: black;
    display: block;
    font-size: 14px;
    padding: 5px 15px;
    text-decoration: none;
}

.lang-swticher-option:first-child {
    padding-top: 10px;
}

.lang-switcher-option:last-child {
    padding-bottom: 10px;
}

.lang-switcher-option:hover {
    background-color: #efefef;
}

.copyright {
    font-size: 14px;
    color: #2D2D2D;
    font-weight: 300;
}

/* Content styles */

.content {
    gap: 0px 40px;
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: calc(60% - 20px) calc(40% - 20px);
}

.content-intro {
    margin-bottom: 15px;
}

.content-title {
    font-size: 34px;
    font-weight: 800;
    color: #2D2D2D;
    margin-bottom: 4px;
}

.content-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #2D2D2D;
    margin: 10px 0px;
}

/* Content styles end */

/* Form styles start */

.form-main-wrapper {
    padding: 45px 25px;
    background-size: cover;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    background-repeat: no-repeat;
    background-image: url('../images/form-bg.png');
}

.form-wrapper {
    border-radius: 12px;
    padding: 24px 16px 32px;
    border: 2px solid white;
}

.form-wrapper-top {
    gap: 8px 0px;
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
}

.form-wrapper-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-wrapper-subtitle {
    color: white;
    font-size: 18px;
    font-weight: 300;
}

.form {
    display: flex;
    flex-direction: column;
}

.form-inputs {
    gap: 6px 0px;
    display: flex;
    margin-bottom: 16px;
    flex-direction: column;
}

.form-input,
.form-select {
    font-size: 16px;
    padding: 18px 32px;
    border-radius: 8px;
    outline-color: #0084FF;
    border: 2px solid #F6F2F2;
    box-shadow: 0px 5px 5px 0px #0000000A inset;
}

.form-input::placeholder {
    color: #a6a2a2;
}

.form-select {
    color: #a6a2a2;
    padding-left: 28px;
}

.form-select:valid {
    color: black;
}

.form-checkbox {
    gap: 0px 8px;
    display: flex;
    cursor: pointer;
    user-select: none;
    align-items: center;
}

.form-checkbox .form-checkbox-elem {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    background-color: white;
    transition: all 0.2s ease-in-out;
}

.form-checkbox .form-checkbox-elem::after {
    content: '';
    width: 15px;
    height: 10px;
    transform: scale(0);
    display: inline-block;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
    background-image: url('../icons/checkmark.svg');
}

.form-checkbox .form-checkbox-label,
.form-checkbox .form-checkbox-label a {
    font-size: 14px;
    color: white;
}

.form-checkbox input[type="checkbox"]:checked~.form-checkbox-elem::after {
    transform: scale(1);
}

.form-checkbox input[type="checkbox"]:checked~.form-checkbox-elem {
    border-color: #0084FF;
    background-color: #0084FF;
}

.form .form-button {
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Form styles end */


/* Utility classes start */
.sr-only {
    position: absolute;
    width: 1px;
    border: 0;
    padding: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.button {
    border: none;
    cursor: pointer;
    padding: 8px 30px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s linear;
    background-color: #0084FF;
}

.button-full {
    display: block;
}

.button-uppercased {
    text-transform: uppercase;
}

.button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0084FF;
    background-color: #0084FF0A;
}

.button-link .button-label {
    color: #0084FF;
}

.button-link .button-label {
    font-size: 18px;
    color: #0084FF;
}


.button-lg {
    padding: 20px 30px;
}

.button-md {
    padding: 12px 15px;
}

.button-sm {
    padding: 8px;
}

.button:hover {
    background-color: #0072dd;
}

.button:active {
    background-color: #0065c4;
}

.button-link:hover {
    background-color: #0084FF;
}

.button-link:hover .button-label {
    color: white;
}

.button-label {
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.highlighted-text {
    color: #0084FF;
}

.page-links {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.page-links-ua {
    grid-template-columns: repeat(2, 1fr);
}

.page-links .button .button-label {
    font-size: 14px;
}

/* Utility classes end */


/* Promo styles start */
.promo {
    margin-top: 12px;
}

.promo-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-subtitle {
    font-size: 16px;
}

.promo-items-container {
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #0084FF;
}

.promo-items-container-list {
    padding-left: 18px;
}

.promo-items-container-item {
    font-weight: 300;
}

.promo-items-container-item::marker {
    color: #0084FF;
}

.promo-items-container-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

/* Promo styles end */


/* Highlight block styles start */

.highlight {
    margin-bottom: 24px;
}

.highlight-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-subtitle {
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.highlight-box {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #0084FF;
}

.highlight-box-filled {
    background-color: #0084FF;
}

.highlight-box-question-img {
    background-size: 70px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/src/images/question-mark.png');
}

.highlight-earth-img {
    background-size: 200px;
    background-position: center 0px;
    background-repeat: no-repeat;
    background-image: url('/src/images/earth.png');
}

.highlight-box-text,
.highlight-text {
    font-size: 16px;
    color: #2D2D2D;
}

.highlight-box-filled .highlight-box-list-item {
    color: white;
}

.highlight-texts {
    gap: 24px 0px;
    display: flex;
    margin: 10px 0px;
    flex-direction: column;
}

.highlight-quote {
    max-width: 85%;
    font-size: 20px;
    margin: 0 auto;
    font-weight: 300;
    color: #2D2D2D;
    text-align: center;
    position: relative;
}

.highlight-quote-mt {
    margin-top: 24px;
}

.highlight-quote-mb {
    margin-bottom: 25px;
}

.highlight-quote::before {
    content: "“";
    width: 30px;
    font-size: 24px;
    font-weight: 800;
    color: #0084FF;
    position: absolute;
    left: -30px;
    display: inline-block;
    transform: translateY(-10px);
}

.highlight-quote::after {
    content: '”';
    width: 30px;
    font-size: 24px;
    font-weight: 800;
    color: #0084FF;
    position: absolute;
    right: -30px;
    display: inline-block;
    transform: translateY(20px);
}

.highlight-author-wrapper {
    display: flex;
    margin: 12px 0px;
    justify-content: center;
}

.highlight-quote-author {
    margin: 0 auto;
    font-size: 16px;
    color: #2D2D2D;
    padding: 5px 30px;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #0084FF;
}

.highlight-box-list {
    padding-left: 20px;
}

.highlight-box-list-item {
    color: #2D2D2D;
    font-weight: 300;
}

.highlight-box-list-item:not(:last-child) {
    margin-bottom: 8px;
}

.highlight-box-list-item::marker {
    color: #0084FF;
}

.highlight-box-filled .highlight-box-list-item::marker {
    color: white;
}

.hightlight-hint {
    margin-top: 10px;
    display: inline-block;
}

/* Highlight block styles end */


/* Footer styles start */

.footer {
    padding-top: 16px;
}

.footer-row {
    display: flex;
    justify-content: center;
}

/* Footer styles end */


/* Grid positioning start */

.content-intro {
    grid-row: 1/2;
    grid-column: 1/2;
}

.highlight-first {
    grid-row: 2/3;
    grid-column: 1/2;
}

.highlight-second {
    grid-row: 3/4;
    grid-column: 1/2;
}

.highlight-third {
    grid-row: 4/5;
    grid-column: 1/2;
}

.form-main-wrapper {
    grid-row: 1 / 4;
    grid-column: 2/3;
    align-self: start;
}

.promo {
    grid-row: 4/5;
    grid-column: 2/3;
    align-items: start;
}

/* Grid positioning end */

@media (max-width: 992px) {
    .container {
        padding: 0px 15px;
    }

    .content {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(7, auto);
    }

    .content-subtitle {
        font-size: 16px;
    }

    .highlight-title {
        font-size: 16px;
    }

    .highlight-quote {
        font-size: 16px;
    }

    .promo {
        margin-top: -20px;
    }

    .button-link .button-label {
        font-size: 16px;
    }

    .page-links {
        grid-template-columns: 2fr 2fr;
    }
}

@media (max-width: 768px) {
    .highlight-earth-img {
        background-size: 170px;
        background-position: center 70px;
    }

    .form-wrapper-title {
        font-size: 18px;
    }

    .form-wrapper-subtitle {
        font-size: 16px;
    }

    .content {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .content-intro {
        grid-column: 1/1;
    }

    .highlight-first {
        grid-column: 1/1;
        grid-row: 2/3;
    }

    .highlight-second {
        grid-row: 3/4;
    }

    .highlight-third {
        grid-row: 5/6;
        margin-top: 24px;
    }

    .form-main-wrapper {
        grid-row: 4/5;
        grid-column: 1/1;
        margin: 0 -15px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .promo {
        margin-top: 0;
        grid-column: 1/1;
        grid-row: 6/7;
    }

    .page-links {
        margin-top: 30px;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575px) {
    .header-row {
        gap: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-links {
        grid-template-columns: 1fr;
    }

    .lang-switcher {
        width: 100%;
    }

    .lang-switcher-options {
        border-color: #4E464680;
    }

    .lang-switcher-current {
        font-size: 16px;
    }

    .lang-switcher-option {
        font-size: 16px;
        padding: 10px 15px;
    }
}