*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'sans-serif';
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #fff;
}

/* header */
#header{
    position: sticky;
    top: 0;
    background-color: #000000;
    z-index: 999;
}

nav, .container{
    padding: 10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    width: 160px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

/* home */
#home{
    width: 100%;
}

#home .container{
    display: flex;
    flex-wrap: wrap;
    min-width: 100%;
    padding-right: 2%;
}

.home-text{
    margin: 20% 0 16%;
    font-size: 30px;
    flex: 1 1 60%;
}

.home-text h1{
    font-size: 60px;
    color: #ff004f;
}

.home-text .quote{
    padding: 4em 0;
    font-size: 18px;
}

.home-text .quote #darkness{
    color: #cccccc;
}

.home-text .quote #beauty{
    color: #e5ffe5;
}

.home-text .quote #kirk{
    color: #e0e0e0;
}

.home-text p{
    word-break: normal;
    white-space: normal;
}

.home-image{
    min-width: 300px;
    flex: 1 1 36%;
    margin-left: 2%;
}

.home-image img{
    width: 100%;
}

/* about */
#about{
    padding: 80px 0;
    color: #ababab;

}

.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}

.about-col-1{
    margin-right: 4%;
    flex: 1 5 34%;
    max-width: 66%;
}

.about-col-1 img{
    width: 100%;
}

.about-col-1 #vail{
    margin: 50px 0 12%;
}

.about-col-2{
    flex: 1 2 62%;
}

span.avoidwrap{
    display: inline-block;
}

.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

.sub-title span{
    color: #ff004f;
}

.introduction .quote, #teaching .testimonials{
    margin: 10px 0 30px;
}

.introduction p, .tab-contents p{
    margin: 12px 0;
}

.tab-titles{
    display: flex;
    margin: 40px 0 30px;
}

.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after{
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span{
    color: #b54769;
    font-size: 14px;
}

.tab-contents{
    display: none;
}

.tab-contents.active-tab{
    display: block;
}

.tab-contents a{
    color: #79A6FF;
}

iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 40px;
}

/* scores */
#scores{
    padding: 30px 0;
    margin: 0 0 100px;
}

#scores ul{
    margin: 0 30px;
}

#scores ul a{
    color: #79A6FF;
}

/* shows */
#shows{
    padding: 50px 0;
}

#shows br{
    user-select: none;
}

#shows hr{
    height: 2px;
    color: #ff004f;
    background-color: #ff004f;
    border: none;
    opacity: 40%;
    margin: 10px 0;
}

#shows p{
    margin: 0 6px;
}

.graycolor{
    color: #cccccc;
}

.lightredcolor{
    color: #FF9AB8;
}

.bluecolor{
    color: #79A6FF;
}

/* contact */
#contact .row{
    flex-wrap: wrap;
}

.contact-left{
    flex: 1 1 34%;
    margin-bottom: 5%;
    margin-right: 6%;
}

.contact-right{
    flex: 1 1 60%;
    flex-basis: 60%;
}

.contact-left p{
    margin-top: 30px;
}

.contact-left p i{
    color: #ff004f;
    font-size: 25px;
    margin-right: 0.5em;
}

.social-icons{
    margin-top: 36px;
}

.social-icons a{
    text-decoration: none;
    font-size: 36px;
    margin-right: 16px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover{
    color: #ff004f;
    transform: translateY(-5px);
}

.contact-right form{
    width: 100%;
}

form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}

form textarea{
    resize: none;
}

form button{
    display: block;
    margin: 20px auto 50px;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 60px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background: #ff004f;
    cursor: pointer;
}

#msg{
    color: #61b752;
    margin: -30px auto 0;
    display: table;
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}

/* css for small screens */
nav .fas{
    display: none;
}

@media only screen and (max-width: 876px){
    .home-text{
        flex: 1 0 100%;
        margin-top: 50%;
        font-size: 16px;
    }

    .home-text h1{
        font-size: 30px;

    }

    .home-image{
        flex: 1 1 100%;
    }

    nav .fas{
        display: block;
        font-size: 25px;
    }

    nav ul{
        background: #ff004f;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }

    nav ul li{
        display: block;
        margin: 25px;
    }

    nav ul .fas{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }

    /* about */
    .sub-title{
        font-size: 40px;
    }

    #vail, #portrait{
        display: none;
    }

    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }

    .about-col-1{
        margin-bottom: 30px;
    }

    .about-col-2{
        font-size: 14px;
    }

    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }

    /* contact */
    .contact-left, .contact-right{
        flex-basis: 100%;
    }

    .contact-right form{
        margin-top: 40px;
    }

    .copyright{
        font-size: 14px;
    }
}