/* @group Intro
------------------------------------ */
.intro {
    position: relative;
    background-color: var(--dark-blue);
}
.intro .col-content {
    position: relative;
    text-align: center;
    padding: 3rem 2rem 4rem 2rem;
}
.intro .col-content::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -13.7rem;
    left: 0;
    width: 100%;
    height: 14.7rem;
    background-image: url(../../img/layout/fixed-menu/shape-aside-mobile.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
.intro .col-content figcaption h3,
.intro .col-content figcaption p {
    color: var(--beige);
}
.intro .col-content figcaption h3 {
    font-family: var(--playfair-font);
    font-size: 3em;
    line-height: normal;
    font-weight: 700;
    letter-spacing: normal;
    margin-bottom: 2rem;
}
.intro .col-content figcaption p {
    font-size: 1.6em;
    line-height: 1.3em;
    letter-spacing: 0.125em;
    margin: 0 0 3.6rem;
}
.intro .bttn-container {
    text-align: right;
}
.intro .see-more {
    font-family: var(--rubric-font);
    font-size: 1.7em;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--beige);
}
.intro .see-more i {
    color: var(--beige);
    margin-left: 2.1rem;
}
@media only screen
and (min-width : 961px) {
    .intro .row {
        height: 100%;
    }
    .intro .col-content {
        width: 52vh;
        height: 100%;
        padding: 4.47vh 5.5rem 0 3.4vh;
    }
    .intro .col-content::before {
        background-image: url('../../img/layout/fixed-menu/shape-aside-desktop.png');
        left: -26vh;
    }
    .intro .col-content figure {
        overflow: visible;
        height: 75vh;
    }
    .intro .col-content figure img {
        position: relative;
        z-index: 2;
    }
    .intro .col-content figure::after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 1.7vh;
        left: 1.8vh;
        width: 100%;
        height: 100%;
        background-image: url('../../img/layout/frontpage/update/intro-bg.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }
	.intro .col-content figcaption::before {
        content: "";
        display: block;
        position: absolute;
        height: 42.4rem;
        width: 100%;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 81.25%);
        left: 0;
        z-index: -1;
    }
    .intro .col-content figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 3;
        text-align: left;
        padding: 7.4vh 3.5vh;
    }
    .intro .col-content figcaption h3 {
        font-size: 5.8vh;
        margin-bottom: 0.89vh;
        max-width: 40vh;
    }
    .intro .col-content figcaption p {
        font-size: 1.7vh;
        line-height: 1.3em;
        max-width: 40vh;
        margin: 0;
    }
    .intro .col-content .bttn-container {
        position: absolute;
        width: 100%;
        bottom: -14vh;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .intro .col-content .see-more {
        font-size: 1.6vh;
        letter-spacing: 0.16em;
        line-height: normal;
        text-transform: uppercase;
        color: #704933;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 17.9vh;
        height: 17.9vh;
        border-radius: 100%;
        background-color: var(--beige);
    }
    .intro .col-content .see-more i {
        position: absolute;
        top: 50%;
        translate: 0 -50%;
        right: -1.8vh;
        color: var(--beige);
        font-size: 3.3vh;
    }
    /* Hovers */
    .intro .see-more:hover {
        background-color: var(--dark-green);
        color: var(--beige);
        border: .1rem solid var(--beige);
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */