@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-color: #819067;
    --complementary-color: #9A8836;
    --secondary-color-1: #FFFADD;
    --secondary-color-2: #FFF8D2;
    --secondary-color-3: #FFF5BC;
    --text-color-2: #363845;
    --text-color-3: #4C5061;
    --transition-time: 300ms;
}

body {
    font-family: 'SVN-Gilroy';
    background-image: url(../img/bg.png);
}

@media (min-width: 1222px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1222px;
    }
}

.site-container {
    width: 100%;
    padding: 0 100px
}

#site-header {
    height: 115px;
}

#header-menu li {
    margin: 0 27px
}

#header-menu a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-color-3);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 15px;
}


#header-menu a span {
    width: 47px;
    text-align: center;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    height: 22px;
    line-height: 22px;
    border: 1px solid var(--text-color-3);
    font-weight: 600;
    margin-left: 10px;
    margin-top: 5px;
}

#header-menu li.active a {
    color: var(--main-color);
}

#header-menu li.active a:after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--main-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

#header-menu li.active a span {
    border: 1px solid var(--main-color);
}

#header-button {
    padding: 0;
    width: 250px;
    height: 48px;
    font-size: 24px;
    font-weight: 500;
    border: 2px solid var(--main-color);
    background-color: transparent;
    color: var(--main-color);
    text-decoration: none;
    text-align: center;
    border-radius: 48px;
    background-color: #fff;
    transition: all var(--transition-time);
}

#header-button svg {
    margin-left: 5px;
    transition: all var(--transition-time);
}

#header-button svg path {
    fill: var(--main-color)
}

#header-button:hover {
    background-color: var(--main-color);
    color: var(--secondary-color-1);
}

#header-button:hover svg path {
    fill: var(--secondary-color-1)
}

#hero {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    overflow: hidden;
    padding-bottom: 30px;
}

#hero p {
    font-weight: 500;
    font-size: 24px;
    color: var(--text-color-2);
    line-height: 32px;
}

#hero .bottom-bg,
#about .about-bg {
    width: 100%;
    height: auto;
}

#about {
    padding-top: 66px;
}

#about .about-bg {
    bottom: -130px;
}

#about h2 {
    font-family: "Cormorant SC", serif;
    color: var(--main-color);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

#about p {
    margin: 0 auto;
    font-size: 24px;
    font-weight: 500;
}

#vision {
    margin-top: -160px;
    position: relative;
    z-index: 9;
}

.tape-title {
    font-family: "Cormorant SC", serif;
    background-image: url(../img/title_bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    font-size: 48px;
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
    height: 157px;
    line-height: 157px;
    width: 415px;
    margin: 0 auto;
}

#vision p {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

#explore {
    padding-top: 60px;
}