/** Styles for the header section */
.header {
    background-color: #004aad;
    color: #ffffff;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}
.header__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 12px 96px 96px;
}
.header__logo::selection {
    background-color: #38b6ff;
    color: #ffffff;
}
.logo {
    display: flex;
    height: 100pt;
    gap: 24px;
    align-items: center;
}
.logo__img-wrapper {
    height: 100%;
}
.logo__img {
    display: block;
    height: 100%;
}
.logo__title {
    font-family: "Jura", sans-serif;
    font-weight: 800;
    font-size: 62pt;
}
.header__text {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.header__paragraph {
    font-family: "Jura", sans-serif;
    font-weight: 800;
    font-size: 24pt;
}
.header__paragraph::selection {
    background-color: #38b6ff;
    color: #ffffff;
}
.header__links {
    display: flex;
    gap: 48px;
}
.header__link {
    padding: 12px 24px;
    min-width: 240px;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
    font-family: "Jura", sans-serif;
    font-weight: bold;
    font-size: 14pt;
    background-color: #38b6ff;
    transition: background-color 0.5s ease, transform 0.5s ease;
}
.header__link:hover {
    background-color: #2fa5e6;
    transform: scale(1.1);
}

.header__img {
    display: block;
    min-width: 40%;
    position: relative;
}
.header__img img {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}



.info {
    display: flex;
    flex-direction: column;
    color: #004aad;
}

.info__content-item {
    display: flex;
    flex-direction: row;
    padding: 48px;
}

.info__img-wrapper {
    display: block;
    width: 40%;
    min-width: 40%;
    flex-basis: 40%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.info__img {
    display: block;
    width: 100%;
}

.info__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding: 48px 96px;
}
.info__paragraph-link { 
    padding: 12px 24px;
    min-width: 240px;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
    font-family: "Jura", sans-serif;
    font-weight: bold;
    font-size: 14pt;
    color: #ffffff;
    background-color: #38b6ff;
    transition: background-color 0.5s ease, transform 0.5s ease;
}
.info__paragraph-link:hover {
    background-color: #2fa5e6;
    transform: scale(1.1);
}
.info__content-item._left-side .info__text {
    text-align: center;
    padding: 48px 0 48px 96px;
}
.info__content-item._right-side .info__text {
    text-align: center;
    padding: 48px 96px 48px 0; 
}
.info__title {
    padding-bottom: 12px;
    padding-top: 48px;
    padding-left: 48px;
    font-family: "Jura", sans-serif;
    font-weight: 800;
    font-size: 62pt;
}

.info__paragraph {
    font-family: "Jura", sans-serif;
    font-weight: 800;
    font-size: 18pt;
}

.footer {
    background-color: #004aad;
    height: 100vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 48px 96px;
}
.footer__title {
    font-family: "Jura", sans-serif;
    font-weight: 800;
    font-size: 62pt;
    margin-bottom: 48px;
}
.footer__title::selection {
    background-color: #38b6ff;
    color: #ffffff;
}
.footer__content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 50%;
}
.footer__info {
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.footer__info._1 .footer__info-title{
    margin-bottom: 6px;
}
.footer__info-title {
    font-family: "Jura", sans-serif;
    font-weight: 800;
    font-size: 16pt;
    margin-bottom: 24px;
}
.footer__info-description {
    font-family: "Jura", sans-serif;
    font-weight: 400;
    font-size: 16pt;
}
.footer__socials {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer__social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}
.footer__social-icon {
    display: inline-block;
    width: 40pt;
}
.footer__social-link._youtube .footer__social-icon {
    width: 50pt;
}
.footer__social-link:hover {
    transform: scale(1.1);
}


@media (max-width: 1325px) {
    .logo__title {
        font-size: 48pt;
    }
    .header__paragraph {
        font-size: 18pt;
    }
}
@media (max-width: 1130px) {
    .logo__title {
        font-size: 36pt;
    }
    .header__paragraph {
        font-size: 12pt;
    }
    .logo__img-wrapper {
        height: 80pt;
    }
    .header__link {
        min-width: 180px;
        padding: 8px 16px;
        font-size: 12pt;
    }
    .header__img img {
        left: 0;
    }
}
@media (max-width: 930px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .header__img {
        
        overflow: hidden;
        width: 100%;
        flex-grow: 1;
        margin-top: 24px;
    }
    .header__content {
        padding: 12px;
        width: 100vw;
        align-items: center;
    }
    .header__text {
        margin: 24px 0;
    }
    .header__img img{
        height: auto;
        width: 100%;
        top:-230px;
    }
}
@media (max-width: 500px) {
    .logo__title {
        font-size: 20pt;
    }
    
    .header__paragraph {
        font-size: 10pt;
    }
    .header__links {
        flex-direction: column;
        gap: 12px;
    }
    .header__link {
        min-width: 140px;
        padding: 6px 12px;
        font-size: 10pt;
    }
    .header__img img {
        top: -100px;
    }
}



@media (max-width: 1325px) {
    .info__title {
        font-size: 48pt;
    }
    .info__paragraph {
        font-size: 16pt;
    }
    .info__paragraph-link {
        font-size: 16pt;
    }
}
@media (max-width: 1130px) {
    .info__title {
        font-size: 36pt;
    }
    .info__paragraph {
        font-size: 12pt;
    }
    .info__paragraph-link {
        font-size: 12pt;
    }
}
@media (max-width: 930px) {
    .info__title {
        text-align: center;
        padding-left: 0;
        padding-bottom: 0;
    }
    .info__content-item {
        flex-direction: column-reverse;
        align-items: center;
    }
    .info__content-item._right-side {
        flex-direction: column;
    }
    .info__img-wrapper {
        width: 70%;
        position: relative;
    }
    .info__text {
        gap: 24px;
        padding: 12px;
        align-items: center;
        margin-bottom: 24px;
        width: 100%;
    }
    .info__content-item._left-side .info__text {
        text-align: center;
        padding: 12px;
    }
    .info__content-item._right-side .info__text {
        text-align: center;
        padding: 12px; 
    }
}

@media (max-width: 500px) {
    .info__title {
        font-size: 20pt;
    }
    .info__paragraph {
        font-size: 10pt;
    }
    .info__paragraph-link {
        font-size: 10pt;
    }
    .info__img {
        bottom: unset;
        top: 0px;
    }
}

@media (max-width: 1325px) {
    .footer__title {
        font-size: 48pt;
    }
}

@media (max-width: 930px) {
    .footer {
        height: auto;
        min-height: 100vh;
        padding: 24px;
        justify-content: space-between;
    }
    .footer__title {
        font-size: 36pt;
        text-align: center;
    }
    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .footer__info {
        margin: 0;
        flex-basis: 100%;
        align-items: center;
        text-align: center;
    }
    .footer__socials {
        justify-content: center;
        margin-top: 10px;
    }
    .footer__info-title {
        font-size: 14pt;
        margin: 0;
    }
    .footer__info-description {
        font-size: 14pt;
    }
}   

@media (500px) {
    .footer__title {
        font-size: 24pt;
    }
    .footer__info-title {
        font-size: 12pt;
    }
    .footer__info-description {
        font-size: 12pt;
    }
    .footer__socials {
        justify-content: center;
        margin-top: 8px;
    }
}