body {
    background-color: #ffffff;
    font-family: Roboto;
    font-size: 20px;
    font-weight: lighter;
    color: #ffffff;
    line-height: 1.4em;
    margin: 0px;
    padding: 0px;
}


/* ---------- banner ---------- */

.banner {
    background-image: url("../images/bg1.jpg");
    background-size: cover;
    height: 80vh;
}

.header {
    height: 70px;
    background-color: #0000007a;
    border-bottom: 1px solid #3bd7e9;
    padding: 15px 50px 15px 50px;
}

.header-container {
    /* display: flex; */
    justify-content: space-between;
}

@media (max-width: 480px) {
    .header {
        padding: 15px 30px 15px 30px;
    }
}

/* ----- navbar container ----- */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-title {
    margin: .5rem;
    padding-top: 5px;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem;
    display: block;
}

.navbar-links li a:hover {
    color: #3bd7e9;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
}

@media (min-width: 1024px) {
    .brand-title {
        margin-left: 50px;
    }

    .navbar-links {
        margin-right: 30px;
    }
}

@media  (max-width: 768px) {
    .toggle-button {
        display: flex;
        margin-top: 28px;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li {
        text-align: center;
    }

    .navbar-links li a {
        padding: .5rem .1rem;
    }

    .navbar-links.active {
        display: flex;
    }

    div.navbar-links {
        padding-right: 30px;
    }
}

/* ----- end navbar container ----- */

/* ----- teaser container ----- */

.teaser {
    text-align: center;
    padding-top: 150px;
    padding-left: 150px;
    padding-right: 150px;
}

.teaser-container {
    display: grid;
    grid-template-areas: 
    "teaset-note"
    "hr"
    "button";
}

.teaser-note p {
    font-size: 45px;
    padding-bottom: 30px;
    color: #ffffff;
    line-height: 1.3em;
}

h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1em;
}

.button1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    border: 2px solid #ffffff;
    background-color: transparent;
    height: 30px;
    padding: 15px 28px;
    margin-top: 30px;
    cursor: pointer;
    text-align: center;
    width: 200px;
}

.btn p {
    font-size: 25px;
    color: #ffffff;
}

.btn a {
    text-decoration: none;
    font-weight: 900;
}

@media (min-width: 1920px) {
    h1 {
        font-size: 85px;
        font-weight: 900;
        line-height: 1em;
    }
}

@media (max-width: 1024px) {
    .teaser {
        text-align: center;
        padding-top: 100px;
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 800px) {
    .teaser {
        text-align: center;
        padding-top: 150px;
        padding-left: 100px;
        padding-right: 100px;
    }

    .teaser-note p {
        font-size: 25px;
        padding-bottom: 30px;
        color: #aaaaaa;
        line-height: 1.3em;
    }

    h1 {
        font-size: 65px;
        font-weight: 900;
        line-height: 1em;
    }
}

@media (max-width: 480px) {
    .teaser {
        padding-left: 30px;
        padding-right: 30px;
    }

    .teaser-note p {
        font-size: px;
    }

    h1 {
        font-size: 50px;
        font-weight: 900;
        line-height: 1em;
    }
}
/* ----- end teaser container ----- */

/* ---------- end banner ---------- */

/* ---------- services ---------- */

.services {
    padding: 60px 150px 60px 150px;
}

.services p {
    color: #000000;
    font-size: 23px;
}

.service-container1 {
    display: grid;
    grid-template-areas: 
    "music"
    "movies";
}

div.music {
    grid-area: music;
    display: flex;
    padding: 30px;
    height: 27vh;
}

div.movies {
    grid-area: movies;
    display: flex;
    padding: 30px;
    height: 27vh;
}

.service-container2 {
    display: grid;
    grid-template-areas: 
    "games"
    "books";
}

div.games {
    grid-area: games;
    display: flex;
    padding: 30px;
    height: 27vh;
}

div.books {
    grid-area: books;
    display: flex;
    padding: 30px;
    height: 27vh;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    color: #3bd7e9;
    padding-bottom: 25px;
}

hr {
    border: 1px solid #3bd7e9;
    margin-bottom: 10px;
}

.icon {
    padding-right: 30px;
}

.icon img {
    width: 90px;
    height: 90px;
}

.title {
    color: #000000;
    font-size: 27px;
    font-weight: 400;
    padding-bottom: 20px;
}

@media (max-width: 1920px) {
    div.music {
        height: 15vh;
    }
    
    div.movies {
        height: 15vh;
    }

    div.games {
        height: 15vh;
    }
    
    div.books {
        height: 15vh;
    }
}

@media (min-width: 1000px) {
    .service-container1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "music movies";
    }
    
    .service-container2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "games books";
    } 
}


@media (max-width: 1024px) {
    .services {
        padding: 60px 100px 60px 100px;
    }

    div.music {
        height: 22vh;
    }
    
    div.movies {
        height: 22vh;
    }

    div.games {
        height: 22vh;
    }
    
    div.books {
        height: 22vh;
    }
}

@media (max-width: 800px) {

    div.music {
        height: 15vh;
    }
    
    div.movies {
        height: 15vh;
    }

    div.games {
        height: 15vh;
    }
    
    div.books {
        height: 15vh;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 60px 30px 60px 30px;
    }

    .services p {
        color: #000000;
        font-size: 18px;
    }

    .icon img {
        width: 65px;
        height: 65px;
    }

    div.music {
        padding: 30px 30px 30px 30px;
        height: 18vh;
    }
    
    div.movies {
        padding: 30px 30px 30px 30px;
        height: 18vh;
    }

    div.games {
        padding: 30px 30px 30px 30px;
        height: 18vh;
    }
    
    div.books {
        padding: 30px 30px 30px 30px;
        height: 18vh;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 60px 30px 60px 30px;
    }

    .services p {
        color: #000000;
        font-size: 18px;
    }

    .icon img {
        width: 65px;
        height: 65px;
    }

    div.music {
        padding: 30px 30px 30px 30px;
        height: 27vh;
    }
    
    div.movies {
        padding: 30px 30px 30px 30px;
        height: 27vh;
    }

    div.games {
        padding: 30px 30px 30px 30px;
        height: 27vh;
    }
    
    div.books {
        padding: 30px 30px 30px 30px;
        height: 27vh;
    }
} 

/* ---------- end services ---------- */


/* ---------- about ---------- */

.about {
    background-image: url("../images/bg2.jpg");
    background-size: cover;
    padding: 60px 150px 60px 150px;
}

.about-container {
    padding-top: 30px;
}

@media (max-width: 1024px) {
    .about {
        padding: 60px 100px 60px 100px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 30px 60px 30px;
    }
}

/* ---------- end about ---------- */


/* ---------- form ---------- */

.form {
    background-color: #191919;
    padding: 60px 150px 60px 150px;
}

.form-container {
    display: grid;
    padding-top: 30px;
    padding-bottom: 20px;
    grid-template-areas: 
    "form-fillup"
    "form-content";
}

.service-title p {
    font-size: 25px;
    color: #c2c2c2;
    padding-bottom: 20px;
}

.form-fillup {
    padding-bottom: 10px;
}

.form-content {
    padding-left: 30px;
}

input[type=text], select, textarea {
    background-color: #e1e1e1;
    width: 100%;
    height: 55px;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 10px;
    resize: vertical;
    font-weight: 200;
    font-size: 18px;
}
  
input[type=submit] {
    background-color: #3bd7e9;
    color: white;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    height: 55px;
}

.cvv-zip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
    grid-template-areas:
    "cvv"
    "zip";
}

div.cvv {
    grid-area: cvv;
}

div.zip {
    grid-area: zip;   
}

@media (max-width: 1024px) {
    .form {
        padding: 60px 100px 60px 100px;
    }
}

@media (min-width: 768px) {
    .cvv-zip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
        grid-template-areas:
        "cvv zip";
    }

    .cvv {
        padding-right: 10px;
    }
}
    
.month-date {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
    grid-template-areas:
    "month"
    "date";
    }
    
    div.month{
        grid-area: month;
    }
    
    div.date {
        grid-area: date;
    }
    
@media (min-width: 768px) {
    .month-date {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
        grid-template-areas:
        "month date";
        }
        
    .month {
        padding-right: 10px;
        }
}

@media (max-width: 425px) {
    .month {
        padding-right: 0px;
    }

    .form {
        padding: 60px 30px 60px 30px;
    }
}

@media (min-width: 1440px) {
    .join-form {
        height: 55vh;
    }
}

@media (min-width: 1024px) {
    .join-form {
        height: 63vh;
    }
}

@media (min-width: 800px) {
    .form-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "form-fillup form-content";
    }
}

@media (max-width: 768px) {
    .form-content {
        padding-top: 20px;
        padding-left: 0px;
    }

    .join-form {
        height: 65vh;
    }
}

@media (max-width: 480px) {
    .form {
        padding-top: 30px;
        padding-right: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .form-content {
        padding-left: 0px;
        padding-top: 20px;
    }

    .join-form {
        height: 70vh;
    }
}

/* ---------- end form ---------- */


/* ---------- footer ---------- */

.footer {
    background-color: #000000;
    padding: 60px 150px 60px 150px;
}

.logo2 {
    text-align: center;
    padding-bottom: 30px;
}

.address {
    text-align: center;
}

.allriche {
    padding-bottom: 10px;
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 100px 60px 100px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 30px 60px 30px;
    }
}

/* ---------- end footer ---------- */
