:root {
    --white: #fff;
    --black: #323232;
    --green: #30413F;
    --orange: #E2963C;
    --gray: #F4F4F4;
    --dark-gray: #646464;
    --light-gray: #ededed;
    --gray-border: #969696;
    --pagination: #DDDDDD;
    --pagination-slider: #275A53;
}

body {
    font-family: 'PT Serif';
    background: var(--light-gray);
    font-size: 16px;
    color: var(--dark-gray);
}

/* * {
    outline: 1px solid red;
} */

.pagewrap {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--white);
}

.pagewrap.full {
    height: 100vh;
    background: url(../images/site.jpg) no-repeat center center;
    background-size: cover;
}

.video {
    position: relative;
}

.video img {
    height: 800px;
    object-fit: cover;
}

.title-box {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 4rem;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 65%);
}

.title-box h2 {
    font-size: 50px;
    line-height: 80px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
}

.intro {
    background-color: var(--green);
    color: var(--white);
    padding: 4rem 0;
}

.intro h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--orange);
}

.intro p {
    color: var(--white);
    line-height: 32px;
}

.slider {
    overflow: hidden;
}

.swiper {
    padding-bottom: 90px;
}

.swiper-slide img {
    width: 100%;
    height: 295px;
    object-fit: cover;
}

.swiper-tools {
    position: absolute;
    right: 2rem;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: relative;
    width: 150px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pagination);
}

.swiper-scrollbar-drag {
    background: var(--pagination-slider); 
}

.features {
    background-color: var(--gray);
    color: var(--black);
    padding: 4rem 0;
    margin-bottom: 32px;
}

.features h2 {
    font-size: 16px;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 50px;
}

.features p {
    font-size: 20px;
}

.terrace {
    background-color: var(--gray);
    color: var(--black);
    padding: 4rem 0;
    margin-bottom: 32px;
    font-size: 20px;
}

.invite-form {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
}

.amenities {
    background-color: var(--gray);
    color: var(--black);
    padding: 4rem 0;
    margin-bottom: 32px;
}

.amenities h2 {
    font-size: 16px;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 50px;
}

.amenities p {
    font-size: 20px;
}

.line-wrap {
    position: relative;
}

.line-wrap .with-line {
    position: relative;
}

.line-wrap .with-line::before {
    content: '';
    display: block;
    width: 1px;
    height: 125px;
    background-color: var(--gray-border);
    position: absolute;
    left: -25%;
}

.gallery {
    margin-bottom: 32px;
}

.footer {
    background-color: var(--gray);
    color: var(--white);
    padding: 3rem 0;
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
    padding: 1rem 4rem;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

@media screen and (max-width: 768px) {

    .title-box {
        padding: 2rem 1rem;
    }

    .title-box h2 {
        font-size: 30px;
        line-height: 60px;
    }
}