.page-breadcrumbs {
    font-size: 15px;
    color: var(--gold-color);
    margin-bottom: 30px;
}

.page-title {
    font-size: 130px;
    margin-bottom: 40px;
}

.page-subtitle {
    font-size: 18px;
    line-height: 30px;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 30px;
}

.first-block {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100vh - 100px);
    padding-bottom: 100px;
}

.text-col {
    display: flex;
    flex-direction: column;
    width: 60%;
    padding-right: 30px;
}

.image-col {
    display: flex;
    width: 40%;
    overflow: hidden;
}

.image-col > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fill-btn {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 14px;
    transition: .3s ease background-color, .3s ease border-color;
    cursor: pointer;
    border: 1px solid black;
    text-align: center;
}

.fill-btn:hover {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
}

.clear-btn {
    background-color: transparent;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 14px;
    transition: .3s ease background-color, .3s ease color;
    cursor: pointer;
    border: 1px solid black;
    text-align: center;
}

.clear-btn:hover {
    background-color: black;
    color: white;
}

.image-col {
    background-color: #F3EFE6;
    width: auto;
    height: 600px;
    aspect-ratio: 3 / 4;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin-left: auto;
}

.second-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 0;
}

.home-small-title {
    font-size: 60px;
    font-weight: 500;
    font-family: "Cormorant Garamond", serif;
    color: var(--text-color);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 20px;
}

.h-list {
    display: flex;
    gap: 10px;
}

.class-block {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
}

.class-block > img {
    width: 100%;
    aspect-ratio: 5 / 3;
    margin-bottom: 15px;
    object-fit: cover;
}

.class-block > .yt-video {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    margin-bottom: 20px;
}

.class-block > .yt-video > iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.class-title {
    font-size: 38px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.class-subtitle {
    font-size: 16px;
    line-height: 22px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.class-subtitle > * {
    margin: 0;
}

.class-cta {
    position: relative;
    color: var(--gold-color);
    width: fit-content;
}

.class-cta::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--gold-color);
    transition: .3s ease width;
}

.class-cta:hover::after {
    width: 100%;
}

.third-block {
    background-color: #F3EFE6;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.third-block .padded {
    display: flex;
    align-items: center;
}

.block-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 80px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 25px;
}

.block-title > span {
    color: var(--gold-color);
    font-style: italic;
}

.block-subtitle {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.7;
}

.top-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold-color);
    margin-bottom: 5px;
}

.fourth-block {
    display: flex;
    flex-direction: column;
    padding: 150px 0;
}

.fourth-block .block-title {
    font-size: 60px;
    text-align: left;
    margin-bottom: 0;
}

.fourth-block .block-subtitle {
    font-size: 16px;
    text-align: left;
    margin-bottom: 0;
}

.fourth-block .bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.fourth-block .block-cta {
    position: relative;
    font-size: 14px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.fourth-block .block-cta::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
}

.fourth-block .block-cta:hover {
    color: var(--gold-color);
}

.fourth-block .block-cta:hover::after {
    background-color: var(--gold-color);
}

.fifth-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-bg-color);
    color: white;
    width: 100%;
}

.fifth-block .padded {
    padding-top: 150px;
    padding-bottom: 150px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.fifth-block > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.fifth-block .clear-btn {
    width: fit-content;
    border-color: white;
    color: white;
}

.fifth-block .clear-btn:hover {
    background-color: white;
    color: black;
}

.sixth-block {
    padding: 150px 0;
    display: flex;
    width: 100%;
}

.sixth-block .block-title {
    text-align: left;
    font-size: 60px;
    line-height: 65px;
}

.sixth-block .block-subtitle {
    text-align: left;
    margin-bottom: 40px;
}

.sixth-block > .left-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 300px);
    padding-right: 30px;
}

.sixth-block > .right-area {
    display: flex;
    align-items: center;
    width: 300px;
}

.sixth-block img {
    width: 300px;
    height: auto;
}

.sixth-block .top-label {
    margin-bottom: 15px;
}

.sixth-block a {
    width: fit-content;
}

@media screen and (max-height: 850px) {
    .image-col {
        height: 500px;
    }
}

@media screen and (max-height: 750px) {
    .image-col {
        height: 400px;
    }
}

@media screen and (max-width: 1200px) {
    .page-title {
        line-height: 100px;
    }

    .first-block {
        padding-bottom: 130px;
    }

    .second-block {
        padding: 60px 0;
    }

    .class-cta {
        font-size: 14px;
    }

    .home-small-title {
        font-size: 50px;
    }

    .h-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .class-block {
        width: calc((100% - 10px) / 2);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 950px) {
    .first-block {
        flex-direction: column;
        height: fit-content;
        padding-top: 40px;
    }

    .first-block > .text-col {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 50px 0;
    }

    .page-title {
        font-size: 100px;
        line-height: 80px;
    }

    .page-subtitle {
        font-size: 16px;
        line-height: 26px;
        width: 100%;
        max-width: 700px;
    }

    .main-buttons {
        max-width: 350px;
        width: 100%;
        flex-direction: column;
    }

    .main-buttons > a {
        width: 100%;
    }

    .image-col {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 30px 0 0 0;
    }

    .home-small-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .h-list {
        justify-content: center;
    }

    .class-block {
        width: 100%;
        max-width: 450px;
        margin-bottom: 40px;
        text-align: center;
    }

    .class-cta {
        margin: 0 auto;
        font-size: 16px;
    }

    .block-title {
        font-size: 65px;
        line-height: 60px;
        text-align: center;
        width: fit-content;
    }

    .block-subtitle {
        font-size: 16px;
        line-height: 26px;
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .third-block {
        height: 450px;
    }

    .top-label {
        text-align: center;
    }

    .fourth-block {
        align-items: center;
        padding: 80px 0;
    }

    .fourth-block .block-title {
        margin-bottom: 20px;
    }

    .fourth-block .bottom-row {
        flex-direction: column;
    }

    .fourth-block .block-subtitle {
        text-align: center;
    }

    .fifth-block .padded {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .sixth-block {
        padding: 80px 0;
        flex-direction: column;
    }

    .sixth-block .left-area,
    .sixth-block .right-area{
        width: 100%;
        padding: 0;
    }

    .sixth-block .left-area {
        margin-bottom: 50px;
        text-align: center;
        align-items: center;
    }

    .sixth-block .left-area > * {
        width: fit-content;
        text-align: center;
    }

    .sixth-block .right-area {
        justify-content: center;
    }

    .sixth-block img {
        max-width: 250px;
        width: 100%;
    }

    .sixth-block .block-title {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 15px;
    }

    .sixth-block .fill-btn {
        width: 100%;
        max-width: 300px;
    }

    .fourth-block .block-title {
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .page-breadcrumbs {
        font-size: 14px;
    }

    .page-title {
        font-size: 80px;
        line-height: 60px;
    }

    .image-col {
        margin-top: 15px;
    }
}

@media screen and (max-width: 400px) {
    .first-block {
        padding-top: 20px;
    }

    .page-title {
        font-size: 65px;
        line-height: 50px;
    }

    .first-block .main-buttons {
        gap: 10px;
    }

    .image-col {
        margin-top: 10px;
    }

    .home-small-title {
        font-size: 45px;
    }

    .fill-btn, .clear-btn {
        font-size: 12px;
    }
}