@font-face {
    font-family: "SweetSansPro";
    font-style: normal;
    font-weight: 500;
    src:
        url('./fonts/SweetSansPro-Medium.woff2') format('woff2'),
        url('./fonts/SweetSansPro-Medium.woff') format('woff');
}

@font-face {
    font-family: "MarieVary";
    font-style: normal;
    font-weight: 400;
    src:
        url('./fonts/MarieVary.woff2') format('woff2'),
        url('./fonts/MarieVary.woff') format('woff');
}

@font-face {
    font-family: "Albra";
    font-weight: 500;
    src:
        url('./fonts/AlbraMedium.woff2') format('woff2'),
        url('./fonts/AlbraMedium.woff') format('woff');
}

@font-face {
    font-family: "Albra";
    font-style: normal;
    font-weight: 600;
    src:
        url('./fonts/AlbraSemi.woff2') format('woff2'),
        url('./fonts/AlbraSemi.woff') format('woff');
}
  


:root {
    --black: #000000;
    --white: #ffffff;
    --yellow: rgba(196, 153, 69, 1);  
    
    --font-basic: "SweetSansPro", sans-serif;
    --font-secondary: "Albra", sans-serif;
    --font-heading: "MarieVary", sans-serif;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-basic);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: var(--white);
    background-color: var(--black);
}

body * {
    box-sizing: border-box;
    max-width: 100%;
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    margin: 0;
}
h1 {
    font-size: 80px;
    margin: 30px 0;
}
h2 {
    font-size: 48px;
    line-height: 60px;
    margin: 30px 0;
}
h3 {
    font-size: 36px;
    line-height: 48px;
    margin: 20px 0;
}
h4 {
    margin: 15px 0;
}
h5 {
    margin: 15px 0;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0 !important;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}
.is-focused {
    color: var(--yellow);
}
.has-top-divider {
    border-top: 20px solid var(--yellow);
}
.has-bottom-divider {
    border-bottom: 20px solid var(--yellow);
}

/* LAYOUT */
.wrapper {
    width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}
.wrapper > .inner {
    position: relative;
    z-index: 1;
}


/* BTN */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    height: 40px;
    padding: 10px 20px;
    transition: all .2s ease;
}
.btn span {
    margin-bottom: 1px;
}
.btn--default {
    color: var(--white);
    background-color: var(--black);
    border: 1px solid var(--yellow);
}
.btn--default:hover {
    color: var(--black);
    background-color: var(--yellow);
}
.btn--gold {
    color: var(--black);
    background-color: var(--yellow);
    border: 1px solid var(--white);
}
.btn--gold:hover {
    background-color: var(--white);
}


/* GRID */
.grid--2,
.grid--3,
.grid--4 {
    display: grid;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}


/* SECTION */
.section {
    position: relative;
    z-index: 1;
}
.section.has-borders .wrapper > .inner {
    border-left: 2px solid var(--yellow);
    border-right: 2px solid var(--yellow);
}
.section__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.section__cover img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* HEADING */
.heading {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90px;
    padding: 15px 0;
    color: var(--black);
    background-color: var(--yellow);
    border-top: 20px solid var(--black);
}
.heading__title {
    margin-top: 10px;
    margin-top: 8px;
}
.heading__title {
    position: relative;
    display: inline-flex;
    padding: 0 20px;
    z-index: 1;
}
.heading__title::before,
.heading__title::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--black);
    margin-top: -5px;
    z-index: 1;

}
.heading__title::before {
    left: -10px;
}
.heading__title::after {
    right: -10px;
}


/* ANNOUNCEMENT */
.announcement {
    text-align: center;
}
.announcement .inner {
    padding: 60px 50px;
}
.announcement__title {
    font-family: var(--font-heading);
}


/* HERO */
.hero {}
.hero .wrapper {
    width: 1400px;
}
.hero .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 85vh;
    padding: 80px 0;
}
.hero__logo {
    width: 360px;
    height: auto;
}
.hero__title {
    position: relative;
    font-size: 80px;
    font-family: var(--font-heading);
    padding-top: 20px;
    z-index: 1;
}
.hero__title::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 120px);
    width: 510px;
    max-width: 100%;
    border-top: 3px solid var(--yellow);
    border-bottom: 3px solid var(--yellow);
    z-index: -1;
}


/* ABOUT */
.about {
    text-align: center;
}
.about .inner {
    padding: 80px 50px;
}
.about__content {
    width: 720px;
    margin: 0 auto;
}
.about__subtitle {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    z-index: 1;
}
.about__subtitle:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    height: 2px;
    width: 100px;
    background-color: var(--yellow);
    z-index: 1;
}
.about__title {
    margin-bottom: 28px;
}
.about__text {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-secondary);
    font-weight: 500;
}


/* CTA */
.cta {
    color: var(--black);
    background-color: var(--yellow);
    border-bottom: 20px solid var(--black);
}
.cta .inner {
    padding: 80px 0;
}
.cta .grid--4 {
    gap: 30px;
}
.cta .grid__item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.cta__title {
    font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 20px;
}
.cta__text {
    font-size: 12px;
    line-height: 20px;
    flex-grow: 1;
}
.cta__text:not(:last-child) {
    margin-bottom: 25px;
}

/* MENUS */
.menus {
    text-align: center;
}
@media screen and (min-width: 991px) {
    .menus .grid--2 .grid__item:not(:nth-child(2n + 2)) {
        border-right: 2px solid var(--yellow);
    }
}
.menu {
    text-transform: uppercase;
    padding: 60px 50px;
}
.menu__text .row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu__text .row span:not(:last-child) {
    position: relative;
    padding-right: 20px;
    z-index: 1;
}
.menu__text .row span:not(:last-child):before {
    position: absolute;
    content: "";
    top: 50%;
    right: 8px;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    background-color: var(--white);
    border-radius: 50%;
    z-index: 1;
}
.menu__text:not(:last-child) {
    margin-bottom: 30px;
}
.menus {}


/* BANNER */
.banner {
    text-align: center;
}
.banner .section__cover {
    opacity: 0.4;
}
.banner .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 80px 50px;
}
.banner__content {
    width: 860px;
}
.banner__subtitle:not(:last-child) {
    margin-bottom: 30px;
}
.banner__title:not(:last-child) {
    margin-bottom: 16px;
}
.banner__text {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-secondary);
    font-weight: 500;
}
.banner__text:not(:last-child) {
    margin-bottom: 45px;
}

/* SUBSCRIBE */
@media screen and (min-width: 991px) {
    .subscribe .grid__item:not(:last-child) {
        border-right: 2px solid var(--yellow);
    }
}

.subscribe__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 80px 50px;
}
.subscribe__logo img {
    width: 300px;
    height: auto;
}
.subscribe__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 80px 50px;
}
.subscribe__subtitle {
    position: relative;
    color: var(--yellow);
    padding-bottom: 15px;
    margin-bottom: 15px;
    z-index: 1;
}
.subscribe__subtitle:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    height: 2px;
    width: 100px;
    background-color: var(--yellow);
    z-index: 1;
}
.subscribe__title {
    font-size: 48px;
    line-height: 60px;
    font-family: var(--font-heading);
}
.subscribe__title:not(:last-child) {
    margin-bottom: 20px;
}
.subscribe__text:not(:last-child) {
    margin-bottom: 35px;
}

/* SOCIAL */
.social__head {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    min-height: 100px;
    text-align: center;
    background-color: var(--yellow);
    padding: 25px 0 15px 0;
}
.social__head__title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    gap: 24px;
}
.social__head__title span {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 9px;
}
.social__head__title__link {
    position: relative;
    color: inherit;
    margin: 0;
    z-index: 1;
}
.social__head__title__link:not(:first-child):before {
    position: absolute;
    content: "";
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--black);
    margin-top: -4px;
    z-index: 1;
}
.social__head__title__link:not(:last-child):after {
    position: absolute;
    content: "";
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--black);
    margin-top: -4px;
    z-index: 1;
}
.social__head__title a {
    color: inherit;
    text-decoration: none;
}
.social .inner {
    padding: 40px 50px;
}
.social__image {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    z-index: 1;
}
.social__image img {
    display: block;
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* LINKS */
.links {
    color: var(--black);
    background-color: var(--yellow);
}
.links .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 20px 0;
}
.links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 28px;
    padding: 0 15px;
    list-style: none;
    margin: 0;
}
.links ul li {
    position: relative;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
}
.links ul li:not(:first-child)::before {
    position: absolute;
    content: "";
    left: -16px;
    top: 50%;
    width: 4px;
    height: 4px;
    transform: translateY(-50%);
    background-color: var(--white);
    border-radius: 50%;
    z-index: 1;
}
.links ul li a {
    color: inherit;
    text-decoration: none;
}
.links ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* SIGNATURE */
.signature {
    border-bottom: 2px solid var(--yellow);
}
.signature .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}
.signature img {
    max-width: 100%;
    height: auto;
}

/* CONTACTS */
.contacts .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 30px 50px;
}
.contacts ul {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 18px;
    padding: 0;
    margin: 0;
}
.contacts ul li {
    position: relative;
    color: var(--white);
    z-index: 1;
}
.contacts ul li:not(:first-child)::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--yellow);
    margin-top: 1px;
    border-radius: 50%;
    z-index: 1;
}
.contacts ul li a {
    color: inherit;
    text-decoration: none;
}
.contacts ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.contacts .custom-nr {
    font-size: 18px;
}

/* FOOTER */
.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    padding: 60px 50px 40px 50px;
}
.footer__logo img {
    width: 340px;
    height: auto;
}

@media screen and (max-width: 1199px) {
    .wrapper {
        width: 932px;
    }
    .hero__title {
        font-size: 60px;
        line-height: 1.3;
    }

    h1 {
        font-size: 60px;
        line-height: 1.3;
    }
}
@media screen and (max-width: 991px) {
    .wrapper {
        width: 708px;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 42px;
        line-height: 52px;
    }
    h3 {
        font-size: 26px;
        line-height: 32px;
    }
    .hero__title::before {
        height: calc(100% + 80px);
    }
    .about__text {
        font-size: 16px;
        line-height: 26px;
    }
    .grid--2 {
        grid-template-columns: 1fr;
    }
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
    .cta .grid--4 {
        gap: 60px 30px;
    }
    .cta .inner {
        padding: 60px 0;
    }
    .menus .grid__item:not(:last-child),
    .subscribe .grid__item:not(:last-child) {
        border-bottom: 2px solid var(--yellow);
    }
    .social .inner {
        padding: 20px;
    }
    .about .inner,
    .banner .inner,
    .subscribe__logo,
    .subscribe__content {
        padding: 60px 20px;
    }
    .menu,
    .contacts .inner,
    .announcement .inner,
    .signature .inner {
        padding: 40px 20px;
    }
    .hero .inner {
        min-height: 65vh;
    }
    .footer__logo {
        padding: 40px 20px;
    }
    .footer__logo img {
        width: 240px;
    }
    .subscribe__subtitle {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .wrapper {
        width: 100%;
    }
    h2 {
        font-size: 36px;
        line-height: 42px;
    }
    h3 {
        font-size: 30px;
        line-height: 36px;
    }
    .btn {
        font-size: 15px;
    }
    .menu__text {
        font-size: 16px;
    }
    .banner__text {
        font-size: 16px;
        line-height: 26px;
    }
    .social__head__title {
        flex-direction: column;
        gap: 0;
    }
    .social__head__title h3 {
        margin: 10px 0;
    }
    .social__head__title span {
        font-size: 18px;
        line-height: 26px;
    }
    .social .inner {
        padding: 15px;
    }
    .about .inner,
    .banner .inner,
    .subscribe__logo,
    .subscribe__content {
        padding: 60px 15px;
    }
    .menu,
    .contacts .inner,
    .announcement .inner,
    .signature .inner {
        padding: 40px 15px;
    }
    .about__text {
        font-size: 14px;
        line-height: 26px;
    }
    .social__head__title__link:not(:first-child):before {
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
    .social__head__title__link:not(:last-child):after {
        top: auto;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
}
@media screen and (max-width: 575px) {
    .wrapper {
        padding: 0 15px;
    }
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
    .cta .inner {
        padding: 40px 0;
    }
    .menu__text {
        font-size: 14px;
    }
    .contacts ul li {
        font-size: 14px;
    }
    .contacts ul li:not(:first-child)::before {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 359px) {
    h1 {
        font-size: 30px;
    }
    h3 {
        font-size: 26px;
        line-height: 32px;
    }
    .menu__text {
        font-size: 13px;
    }
}