/* ***************************** */
/* HEADER SECTION */
/* ***************************** */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);

    height: 9.6rem;
    padding: 0 4.8rem;

    position: relative;
}

.logo {
    height: 4.8rem;   
}

.dateshow {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "apparat", sans-serif;
    font-weight: 400;
}

/* ***************************** */
/* NAVIGATION */
/* ***************************** */

.main-nav-list {
    list-style: none;
    display: flex;
    gap: 4.8rem;
    align-items: center;
}
.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 1.8rem;
    transition: all .3s;
}

.main-nav-link:hover,
.main-nav-link:active {
    color: var(--secondary-shade-2);
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem 1rem;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 9px;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
    background-color: var(--secondary-shade-3);
}

/* MOBILE */
.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}

.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(255, 255, 255, 0.973);
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0,0,0,.03);
}

.sticky .section-hero {
    margin-top: 9.6rem;
}

/* ***************************** */
/* HERO SECTIOIN */
/* ***************************** */

.section-hero {
    padding: 4.8rem 0 9.6rem 0;
    background-color: #f4ec35;
}

.hero {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;

    display: grid;
    align-items: center;
    grid-gap: 9.6rem;
    grid-template-columns: repeat(2, 1fr);
}

.hero-description {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 4.2rem;
    letter-spacing: .75px;
    color: #333;
}

.hero-description span {
    color: #bf2d1d;
    font-weight: 700;
}

.hero-img {
    width: 100%;
}

/* ***************************** */
/* INFO SECTIOIN */
/* ***************************** */

.section-info {
    padding: 9.6rem 0;   
}

/* State */
.states {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.6rem;
}

.state {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.4rem;
    letter-spacing: .5px;
}

.state::before {
    content: '';
    display: inline-block;
    background: #555;
    width: 2.2rem;
    height: 2.2rem;
    color: #fff;
    border-radius: .7rem;
    font-size: 1.6rem;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.state--open.state::before {
    content: '\25EF';
    background-color: var(--open-color)
}

.state--stop.state::before {
    content: '\2715';
    background-color: var(--stop-color)
}

/* Schedule */
.schedule-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.6;
}

.schedule-note {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
}

.schedule-timetable {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.2rem;
    row-gap: 1.2rem;
    list-style: none;
    margin-bottom: 3.2rem;
}

.schedule-timetable li {
    display: flex;
    gap: .6rem;
    align-items: center;
}

.schedule-timetable li span {
    font-size: 1.8rem;
    font-weight: 600;
}

.schedule-timetable li:before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: .5em;
    background: #333;
    transform: rotate(45deg);
    vertical-align: 2px;
}

.schedule-timetable li:nth-last-child(2):before,
.schedule-timetable li:nth-last-child(3):before,
.schedule-timetable li:last-child:before {
    transform: rotate(0);
}

.schedule-timetable li {
    border-bottom: 1px solid #555;
    padding: .4rem;
    font-size: 1.6rem;
}

.schedule-timetable li:last-child {
    border-bottom: none;
    line-height: 1.2;
}

/* .schedule-timetable li:last-child,
.schedule-timetable li:nth-last-child(2),
.schedule-timetable li:nth-last-child(3) {
    font-size: 1.8rem;
    color: var(--secondary-shade-2);

} */


/* Fees */
.per-person {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.class-fees {
    font-size: 4.4rem;
    margin-bottom: 3.2rem;
}

.class-fees span {
    font-size: 2rem;
}

.class-place {
    font-size: 2rem;
    margin-bottom: 1.6rem;
}

.apply-deadline {
    font-size: 2rem;
    margin-bottom: 3.2rem;
}

.addnote {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 3.2rem;
}

/* ***************************** */
/* FEATURE SECTIOIN */
/* ***************************** */

.section-features {
    padding: 9.6rem 0;
}

.feature-description {
    font-size: 1.8rem;
    line-height: 1.8;
}

.feature-img-sample-box {
    position: relative;
}

.feature-img-sample-box::before,
.feature-img-sample-box::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;

}

.feature-img-sample-box::before {
    z-index: -1;
    width: 45%;
    padding-bottom: 45%;
    background-color: var(--primary-tint-2);
}

.feature-img-sample-box::after {
    z-index: -2;
    width: 55%;
    padding-bottom: 55%;
    background-color: var(--primary-tint);
    
}

.feature-sample-img {
    width: 100%;
}

.feature-img-scene-box {
    /* background-color: var(--primary-tint); */

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
}

.feature-scene-img-01,
.feature-scene-img-02 {
    box-shadow: 0 0 0 5px var(--primary-tint-2);
}

.feature-scene-img-01 {
    width: 100%;
    grid-row: 1 / 6;
    grid-column: 1 / 5;
    object-fit: cover;
    justify-self: center;
    align-self: center;
}

.feature-scene-img-02 {
    width: 100%;
    grid-row: 4 / 7;
    grid-column: 4 / 7
}


/* ***************************** */
/* FOOTER SECTIOIN */
/* ***************************** */

.footer {
    padding: 9.6rem 0;
    border-top: 1px solid #eee;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: block;
    height: 4.8rem;
    margin-bottom: 1.2rem;
}

.contacts {
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 2.4rem;
}

.address {
    margin-bottom: 1.2rem;
}

.footer-link:link,
.footer-link:visited {
    text-decoration: none;
    font-size: 1.4rem;
    color: #333;
    transition: all .4s;
}

.footer-link:hover,
.footer-link:active {
    color: var(--secondary-shade-2);

}
.copyright {
    font-size: 1.2rem;
    color: #767676;
    line-height: 1.4;
    margin-top: auto;
}