@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

:root {
    --primary-color: #EFEDE3;
    --secondary--color: #f5c42f;
    --text-color: #82817e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--primary-color);
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
}

h1,
h2,
h3,
p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    border: 0;
    background: var(--secondary--color);
    color: var(--text-color);
    border-radius: 20px;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}

.btn:hover {
    transform: scale(0.98);
}

.primary-text {
    color: var(--primary-color);
}

.secondary-text {
    color: var(--secondary--color);
}

.section {
    position: relative;
    padding: 0 20px;
}

/* Section Top */
.section-top-image {
    min-height: 600px;
    background: url('img/svw.png') no-repeat center center/cover;
}

.section-top {
    min-height: 600px;
}

.section-top h1 {
    font-size: 70px;
    line-height: 1.3;
}

.section-top .content {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 55%;
}

.section-top .play {
    width: 27%;
    position: absolute;
    top: 100px;
    left: 50px;
}

/* Section Stream */
.section-stream {
    min-height: 700px;
}

.section-stream h2 {
    font-size: 35px;
}

.section-stream .content {
    position: absolute;
    width: 50%;
    top: 130px;
    right: 70px;
}

.section-stream .content>div,
.section-grid>div,
.section-info>div,
.section-choice>div {
    background: rgba(255, 255, 255, 0.517);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    text-align: center;
}

.section-grid p {
    color: var(--text-color);
}

.section-grid .dot {
    font-size: 40px;
    padding-left: 2px;
}

.section-gallary {
    display: grid;
    grid-template-columns: repeat(8, minmax(10px, 1fr));
    grid-template-rows: repeat(4, 10vw);
    grid-gap: 16px;
    margin-bottom: 5px;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.img-2 {
    grid-column: 3 / 6;
    grid-row: 1 / 3;
}

.img-3 {
    grid-column: 6 / 7;
    grid-row: 1 / 2;
}

.img-4 {
    grid-column: 7 / 9;
    grid-row: 1 / 2;
}

.img-5 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.img-6 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.img-7 {
    grid-column: 6 / 8;
    grid-row: 2 / 3;
}

.img-8 {
    grid-column: 8 / 9;
    grid-row: 2 / 3;
}

.img-9 {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}

.img-10 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.img-11 {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
}

.img-12 {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
}

.img-13 {
    grid-column: 4 / 5;
    grid-row: 4 / 5;
}

.img-14 {
    grid-column: 5 / 6;
    grid-row: 3 / 4;
}

.img-15 {
    grid-column: 5 / 6;
    grid-row: 4 / 5;
}

.img-16 {
    grid-column: 6 / 9;
    grid-row: 3 / 5;
}

/* Footer */
.footer {
    border-top: var(--text-color) 1px solid;
    padding: 30px;
    margin-top: 20px;
}

.footer ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

/* Mobile */
@media (max-width: 700px) {

    .section-top .content,
    .section-stream .play,
    .section-stream .content,
    .section-info .content,
    .section-choice .content {
        position: static;
        width: 100%;
    }

    .section-info .content>img,
    .section-choice .content>img {
        width: 50%;
    }

    .vid {
        position: static;
        width: 100%;
    }

    .section-top {
        min-height: 200px;
        padding-top: 20px;
    }

    .section-top .content {
        text-align: center;
    }

    .section-top .content h1 {
        font-size: 45px;
    }

    .section-stream {
        min-height: 400px;
    }

    .section-stream .play {
        width: 50%;
        display: block;
        margin: 30px auto;
    }

    .section-grid {
        display: block;
        margin-top: 0;
    }

    .footer ul {
        display: block;
    }
}