@font-face {
    font-family: 'Cygre';
    src: url('../fonts/Cygre-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cygre Book';
    src: url('../fonts/Cygre-Book.ttf');
    font-weight: 350;
}

a {
    text-decoration: none;
}

.header{
    background-color: #fff;
    padding: 67px 0 53px 0;
}

.header__logo{
    margin: 0 auto;
    width: 321px;
}

.banner{
    position: relative;
    width: 100%;
    aspect-ratio: 1920/1121;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner__title{
    font-family: 'Cygre Book';
    font-weight: 350;
    font-size: 42px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.banner__button{
    padding: 12px 24px;
    border: 1px solid #FFFFFF;
    font-family: 'Cygre Book';
    font-weight: 350;
    font-size: 21px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: 0.3s;
}

.footer{
    padding: 40px 70px 70px 70px;
    display: flex;
    justify-content: space-between;
}

.footer__left{
    display: flex;
    gap: 165px;
}

.footer__col{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col-title{
    font-family: 'Cygre';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
}

.footer__col-link{
    font-family: 'Cygre';
    font-weight: 400;
    font-size: 17px;
    line-height: 100%;
    color: #000000;
    transition: 0.3s;
}

.footer__col-link:hover {
    opacity: 0.5;
}

.footer__right{
    display: flex;
    flex-direction: column;
    gap: 34px;
    align-items: flex-end;
    width: 32%;
}

.footer__logo{
    width: 100%;
    max-width: 611px;
}

.footer__description{
    font-family: 'Cygre';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
}

.banner__button:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 1100px) {
    .footer__left {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .header{
        padding: 72px 0 28px 0;

    }
    .header__logo{
        width: 224px;
    }
    .banner{
        height: 558px;
        gap: 6px;
    }
    .banner__title{
        margin-top: 40px;
        font-size: 24px;
        line-height: 100%;
    }
    .banner__button{
        padding: 8px 11px;
        font-size: 14px;
    }
    .footer{
        padding: 30px 0;
        flex-direction: column;
        gap: 39px;
        align-items: center;
    }
    .footer__left{
        flex-direction: column;
        gap: 17px;
    }
    .footer__col{
        gap: 5px;
        align-items: center;
    }
    .footer__col-title{
        font-size: 13px;
    }
    .footer__col-link{
        font-size: 12px;
    }
    .footer__logo{
        width: 224px;
    }
    .footer__description{
        font-size: 15px;
    }
    .footer__right{
        width: 100%;
        align-items: center;
    }
    .banner__bg img {
        object-fit: cover;
        object-position: -45px center;
    }
}