/*accessibility start*/
#accessibility-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: #000;
}
li.contrast.access-element:hover {
    background: transparent;
}
.accessibility-menu ul li.active, 
.accessibility-menu ul li:hover {
    background: #000;
}
li.contrast.access-element a {
    color: #000;
}
li.contrast.access-element:hover a {
    color: #000;
}
/*accessibility end*/

body {
    line-height: initial;
    font-family: "Assistant", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

b, strong {
    font-weight: 700;
}

.color-primary {
    color: #046E56;
}



/* ===== SECTIONS ===== */

.section-welcome {
    color: #fff;
    padding: clamp(50px, 6vw, 50px) 15px clamp(34px, 5vw, 32px);
    background: rgba(1, 160, 122, 1);
}

h1, .h1 {
    font-weight: 800;
    font-size: clamp(36px, 6vw, 66px);
    margin: 0 0 clamp(8px, 2vw, 15px);
    line-height: 1;
}

h2, .h2 {
    font-weight: 800;
    font-size: clamp(20px, 3vw, 28px);
    margin: clamp(40px, 4vw, 24px) 0;
}

/* ===== WELCOME ===== */

.welcome-icon {
    width: clamp(78px, 12vw, 100px);
    height: clamp(78px, 12vw, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(6px, 2vw, 10px);
}

.welcome-icon img {
    max-height: 100%;
    object-position: center;
}

.welcome-text {
    font-size: clamp(18px, 3vw, 22px);
}

.welcome-text__content {
    max-width: clamp(380px, 70vw, 524px);
    padding: 0 clamp(3%, 4vw, 3%);
    margin: 0 auto;
}

.welcome-text hr {
    opacity: 1;
    position: absolute;
    top: 0;
    left: -10px;
    width: 1px;
    bottom: 0;
    margin: 0;
    background: #fff;
    border: none;
}

/* ===== FOOTER ===== */

.footer {
    padding: clamp(14px, 3vw, 22px) 0;
    background: #EDBA6B;
    color: #fff;
}

.footer-logo-1 {
    display: block;
    width: clamp(80px, 20vw, 200px);
}

.footer-logo-1 img {
    width: 100%;
    mix-blend-mode: multiply;
}

.footer-logo-2 {
    width: clamp(180px, 45vw, 292px);
    display: block;
}

.footer-logo-2 img {
    width: 100%;
    mix-blend-mode: multiply;
}
@media (max-width: 460px) {
    .footer-logo-1 {
        width: 40%;
    }
    .footer-logo-2 {
        width: 60%;
    }
}
/* ===== INFO SECTION ===== */

.section-info {
    padding: clamp(44px, 8vw, 56px) 0 clamp(42px, 7vw, 56px);
    background: #EDBA6B;
    color: #fff;
}

.info {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
}

.info-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: clamp(94px, 15vw, 180px);
    margin: 0 auto clamp(6px, 2vw, 8px);
}

.info-icon img {
    max-height: 100%;
}

.info-title {
    font-weight: 800;
    color: #000;
    margin: 0 0 clamp(8px, 2vw, 14px);
    font-size: clamp(20px, 4vw, 30px);
}

.info-arrow {
    width: clamp(12px, 3vw, 20px);
    height: clamp(20px, 4vw, 32px);
    margin: 0 auto;
    background: url(../img/info/arrow.svg) no-repeat center;
    background-size: contain;
}

.info:hover .info-arrow {
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 1s linear infinite;
}

@keyframes move {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(0,12px) scale(.8); }
}

/* ===== MODAL ===== */

.modal-dialog {
    max-width: clamp(520px, 90vw, 788px);
}

.modal-content {
    position: relative;
    border: none;
    border-radius: clamp(12px, 3vw, 18px);
    background: #fff;
    padding: clamp(28px, 5vw, 36px) clamp(24px, 6vw, 60px);
    box-shadow: 10px 10px 70px rgba(0,0,0,.25);
}

.btn-close {
    position: absolute;
    top: clamp(18px, 4vw, 30px);
    right: clamp(16px, 4vw, 25px);
    width: clamp(16px, 4vw, 25px);
    height: clamp(16px, 4vw, 25px);
    background: url(../img/modal/close.svg) no-repeat center;
    background-size: contain;
    border: none;
    opacity: 1;
    transition: .3s;
    z-index: 99;
}
.btn-close:hover {
    background-size: 80%;
    opacity: ;
}

.modal-body {
    padding-left: 10%;
    font-size: clamp(14px, 3vw, 17px);
    color: #000;
}
.modal-img {
    margin-bottom: clamp(14px, 4vw, 22px);
}

.modal-img img {
    max-height: clamp(110px, 30vw, 160px);
    max-width: 100%;
}

.modal-title {
    font-weight: 800;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 15px;
}

.modal-subtitle {
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1;
    font-weight: 700;
    color: #046E56;
    margin-bottom: clamp(14px, 4vw, 22px);
}

.par-title {
    font-weight: 700;
    color: #046E56;
    margin-top: clamp(14px, 4vw, 22px);
}

.modal-btn {
    margin-top: 22px;
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 12px);
    border-radius: clamp(14px, 4vw, 22px);
    background: #046E56;
    color: #fff;
    display: inline-block;
    text-decoration: none;
}
.modal-btn:hover {
        background: rgba(1, 160, 122, 1);
        color: #fff;
}