@import url('https://fonts.cdnfonts.com/css/sansilk');
@import url(https://db.onlinewebfonts.com/c/38d41072aa88a50711d4d50dd0d50f6b?family=Neue+Machina+Regular);
@import url('https://fonts.cdnfonts.com/css/allrounder-grotesk-test');

/* font-family: 'Sansilk', sans-serif; */

/* font-family: "Neue Machina";
font-family: "Neue Machina Light";
font-family: "Neue Machina Regular";
font-family: "Neue Machina Ultrabold"; */

/* font-family: 'Allrounder Grotesk Test', sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

.header_wrapper {
    width: 90%;
    height: 10vh;
    margin: 0 auto;
    margin-top: 10px;
    /* padding: 10px 0px 0px 0px; */
    border-bottom: 1px solid black;
}

.header {
    width: 100%;
    height: 100%;
    display: flex;
}

.header_left_side {
    width: 30%;
}

.header_middle_side {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 20px; */
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.header_right_side {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_right_side a {
    color: black;
    text-decoration: none;
    font-family: "Neue Machina Regular";
}

.lower_header_wrapper {
    padding: 20px 0px 20px 0px;
}

.lower_header {
    width: 90%;
    margin: 0 auto;
}

.lower_header ul {
    display: flex;
    justify-content: space-around;
}

.lower_header ul li {
    display: inline-block;
}

.lower_header ul li a {
    color: black;
    text-decoration: none;
    font-family: "Neue Machina Regular";
}

/* PREVIEW STYLES */

.home {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
}

.home-content {
    position: relative;
    color: #fff;
    width: 30%;
    padding-left: 100px;
}

.home-content h1 {
    margin-bottom: 40px;
    font-family: "Neue Machina Light";
}

.home-content p {
    font-family: 'Allrounder Grotesk Test', sans-serif;
}

.bold_text {
    font-family: "Neue Machina Ultrabold";
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ACCRODION STYLES */

.container {
    margin: 0 auto;
    padding: 4rem;
    width: 55rem;
}

.accordion .accordion-item {
    border-bottom: 1px solid black;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid black;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #8B8B8B;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: black;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: black;
    border: 1px solid black;
}

.accordion button .accordion-title {
    font-family: "Neue Machina Regular";
    padding: 1em 1.5em 1em 0;
}

.accordion-content p {
    font-family: 'Allrounder Grotesk Test', sans-serif;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: black;
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

/* ANIMATED TEXT STYLE */

.anim_text {
    height: 50px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: black;
}

.anim_text p {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    animation: text 20s infinite linear;
    padding-left: 100%;
    white-space: nowrap;
    font-family: "Neue Machina Regular";
}

@keyframes text {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-160%, 0);
    }
}

/* ITUNES SECTION WRAPPER */

.itunes_section_wrapper {
    padding: 100px 0px 100px 0px;
}

.itunes_section {
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.itunes_left {
    width: 50%;
}

.itunes_title h1 {
    font-size: 4vw;
    font-family: "Neue Machina Light";
    margin-bottom: 20px;
}

.itunes_moto p {
    font-family: "Neue Machina Regular";
    margin-bottom: 40px;
}

.itunes_desc {
    width:60%;
}

.itunes_desc p {
    font-family: 'Allrounder Grotesk Test', sans-serif;
}

.itunes_right {
    width: 50%;
}

/* ALSO ON YOUTUBE STYLES */

.al_yo_wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0px 60px 0px;
}

.al_yo_title h2 {
    font-size: 3vw;
    font-family: "Neue Machina Regular";
    margin-bottom: 40px;
}

.al_yo_cont_wrapper {
    /* border: 1px dotted red; */
}

.al_yo_cont {
    display: flex;
}

.al_yo_cont_left {
    width: 50%;
}

.al_yo_cont_left_title h2 {
    font-size: 1.8vw;
    font-family: "Neue Machina Regular";
    margin-bottom: 20px;
}

.al_yo_cont_desc {
    width: 70%;
}

.al_yo_cont_desc p {
    font-family: 'Allrounder Grotesk Test', sans-serif;
    margin-bottom: 20px;
}

.al_yo_cont_link a {
    color: black;
    font-family: 'Allrounder Grotesk Test', sans-serif;
}

.al_yo_cont_right {
    width: 50%;
}

.al_yo_vid_cover iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* COLLAB SECTION */

.collab_section_wrapper {
    margin-bottom: 100px;
}

.collab_title {
    text-align: center;
    margin-bottom: 30px;
}

.collab_title h2 {
    font-family: "Neue Machina Regular";
}

.collab_section {
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.collab_left {
    width: 50%;
}

.collab_right {
    width: 50%;
}

.collab_image img {
    width: 100%;
    display: block;
}

.collab_cont {
    height: 250px;
    padding-left: 20px;
    padding-bottom: 20px;
    background: #CDCDCD;
    border-top: 1px solid black;
}

.collab_cont_left {
    border-right: 0.5px solid black;
}

.collab_cont_right {
    border-left: 0.5px solid black;
}

.collab_title_sep {
    margin-bottom: 20px;
    padding-top: 20px;
}

.collab_title_sep h3 {
    font-size: 1.5vw;
    font-family: "Neue Machina Regular";
}

.collab_desc {
    width: 70%;
}

.collab_desc p {
    font-family: 'Allrounder Grotesk Test', sans-serif;
}

/* CONTACT SECTION WRAPPER */

.contact_section_wrapper {
    margin-bottom: 100px;
}

.contact_section {
    width: 90%;
    margin: 0 auto;
}

.contact_title {
    text-align: center;
    margin-bottom: 20px;
}

.contact_title h2 {
    font-family: "Neue Machina Regular";
}

.contact_section {
    display: flex;
}

.contact_section p {
    font-family: "Neue Machina Regular";
}

.contact_sec_left {
    width: 50%;
    text-align: center;
    border-right: 0.5px solid black;
}

.contact_sec_right {
    width: 50%;
    text-align: center;
    border-left: 0.5px solid black;
}

/* FOOTER SECTION */

.upper_footer_wrapper {
    background: #D9D9D9;
    padding-top: 60px;
}

.upper_footer {
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.footer_links_cover {
    width: 80%;
    margin: 0 auto;
}

.upper_footer_left {
    width: 50%;
}

.footer_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid black;
}

.footer_link a {
    color: black;
    font-family: "Neue Machina Regular";
}

.upper_footer_right {
    width: 50%;
}

.form_title {
    margin-bottom: 50px;
}

.form_title h2 {
    font-family: "Neue Machina Regular";
}

form {
    margin-bottom: 40px;
}

form input {
    width: 60%;
    height: 40px;
    border: none;
    background: none;
    border-bottom: 1px solid black;
}

form button {
    width: 60%;
    height: 40px;
    cursor: pointer;
    background: none;
    border: 1px solid black;
    transition: all 0.3s ease 0s;
}

form button:hover {
    background: black;
    color: white;
}

.form_info {
    width: 60%;
}

.form_info p {
    color: #8B8B8B;
    font-size: 0.8vw;
    font-family: "Neue Machina Regular";
}

.lower_footer_wrapper {
    padding-top: 40px;
    background: #D9D9D9;
}

.lower_footer {
    width: 90%;
    margin: 0 auto;
    display: flex;
}

.lower_footer_left {
    width: 50%;
}

.lower_footer_left a {
    color: #8B8B8B;
    font-size: 0.8vw;
    font-family: 'Allrounder Grotesk Test', sans-serif;
}

.lower_footer_left p {
    color: #8B8B8B;
    font-size: 0.8vw;
    font-family: 'Allrounder Grotesk Test', sans-serif;
}

.long_footer_text {
    width: 70%;
}

.lower_footer_right {
    width: 50%;
}

.lower_footer_right p {
    font-family: "Neue Machina Regular";
    margin-bottom: 60px;
    text-decoration: underline;
}

.lower_footer_right .media_icons ul li {
    display: inline-block;
}

.lower_footer_right .media_icons ul li:not(:last-child) {
    margin-right: 15px;
}

.lower_footer_right .media_icons ul li a {
    text-decoration: none;
}

/* 'Allrounder Grotesk Test', sans-serif */

.contact_mail a {
    color: black;
    font-family: 'Allrounder Grotesk Test', sans-serif;
    /* border: 1px dotted red; */
}

/* RESPONSIVENESS STYLES */

@media screen and (max-width: 900px) {
    .header_middle_side img {
        width: 95%;
    }

    .lower_header ul li a {
        font-size: 3vw;
    }

    .home-content {
        padding-left: 0px;
        width: 90%;
        text-align: center;
        margin: 0 auto;
        background: #0000003b;
        padding: 20px;
        border-radius: 20px;
    }

    /* itunes section */

    .itunes_section {
        flex-direction: column-reverse;
    }

    .itunes_left {
        width: 100%;
        text-align: center;
    }

    .itunes_desc {
        width: 100%;
    }

    .itunes_right {
        width: 100%;
        margin-bottom: 20px;
    }

    /* ALSO ON YOUTUBE */

    .al_yo_title {
        text-align: center;
    }

    .al_yo_title h2 {
        font-size: 4.5vw;
    }

    .al_yo_cont {
        flex-direction: column-reverse;
    }

    .al_yo_cont_left {
        width: 100%;
        text-align: center;
    }

    .al_yo_cont_left_title h2 {
        font-size: 3vw;
        margin-top: 20px;
    }

    .al_yo_cont_right {
        width: 100%;
    }

    .al_yo_cont_desc {
        width: 100%;
    }

    /* COLLAB SECTION */

    .collab_section {
        flex-direction: column;
    }

    .collab_left {
        width: 100%;
    }

    .collab_cont_left {
        border-right: none;
    }

    .collab_right {
        width: 100%;
    }

    .collab_cont_right {
        border-left: none;
    }

    .contact_section {
        flex-direction: column;
    }

    .contact_sec_left {
        width: 100%;
        /* border: none; */
        border-right: none;
        border-bottom: 1px solid black;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact_sec_right {
        width: 100%;
        border: none;
    }

    .collab_title_sep h3 {
        font-size: 4.5vw;
    }

    /* FOOTER */

    .upper_footer {
        flex-direction: column;
    }

    .upper_footer_left {
        display: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .form_info {
        width: 100%;
    }

    form input {
        width: 80%;
    }

    .upper_footer_right {
        width: 100%;
        text-align: center;
    }

    .form_info p {
        font-size: 2vw;
    }

    .lower_footer {
        flex-direction: column;
    }

    .lower_footer_left {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .long_footer_text {
        width: 100%;
    }

    .lower_footer_left a {
        font-size: 2vw;
    }

    .lower_footer_left p {
        font-size: 2vw;
    }

    .lower_footer_right {
        width: 100%;
        text-align: center;
    }
}