*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #080808;
    color: #fff;
}
#header{
    width: 100%;
    max-width=1920px;
    height: 100vh;
    min-height: 50%;
    background-image: url(images/background.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.portrait-mobile {
    display:none;
}
.container {
    padding: 10px 10%;
}

.description {
    max-width: 1000px;
    padding:0 30px 30px 30px;
    position: relative;
    margin: auto;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 0 0 100%;
    min-height: 100px;
    background-color: white;
    color: #434343;
    padding-right: 10%;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 0 0 100%;
    min-height: 100px;
    background-color: #434343;
    color: #ffffff;
    padding-right: 10%;
}

.logo {
    width: 250px;
    height: 49px;
    margin-left: 10%;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
}
.footer .logo {
    width: 250px;
}

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

nav ul li a{
    color: #434343;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
    nav ul li a::after {
        content: '';
        width: 0;
        height: 3px;
        background: #d71920;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    }
nav ul li a:hover::after{
    width: 100%;
}

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

    .footer ul li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        position: relative;
    }

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

        .footer ul li a:hover::after {
            width: 100%;
        }
.header-text {
    margin-top: 20%;
    font-size: 30px;
    vertical-align: bottom;
    height: 100%;
    padding-left: 10%;
}
.header-text h1{
    font-size: 48px;
    margin-top: 20px;
}
.header-text h1 span {
    color: #d71920;
}
.header-text p{
    color:#d71920;
}
/* -----------about--------------- */
#about{
    padding: 80px 0;
    color: #434343;
    background-color:white;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
    max-width:400px;
    border-radius: 15px;
}
.about-col-2{
    flex-basis: 60%;
}
.about-col-2 span {
    color:#d71920;
}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: #434343;
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.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: #d71920;
    font-size: 18px;
}
.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

/* ----------------releases------------- */
#releasesTitle {
    padding: 80px 0;
    color: #ffffff;
    align-content: center;
    text-align: center;
}
.sub-title2 {
    font-size: 60px;
    font-weight: 600;
    color: #ffffff;
}

#releases {
    /*padding: 30px 0;*/
    display:flex;
    justify-content: center;
    margin-bottom:150px;
}
.container-mmprrr {
    background-image: url("images/MMPRRR/bg-mprrr.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: flex-end;
}
.container-sos {
    background-image: url("images/SoS/sos-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: flex-end;
}
.container-dg {
    background-image: url(images/DG/dg-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
    background-color:black;
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: flex-end;
}

.releases-logo {
    width: 500px;
}

.releases-box {
    background-color: rgba(0,0,0,0.6);
    color: white;
    max-width: 50%;
    min-width: 620px;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.releases-box p{
    padding-right:30px;
    padding-top:20px;
}

.releases-role {
    font-size:24px;
    text-align:left;
}

.releases-box ul{
    padding-left: 30px;
}

.releases-box a{
    text-decoration:underline;
    text-decoration-color:#d71920;
    color:#ffffff;
    font-size:24px;
}

/* -------portfolio----------- */

#portfolioTitle {
    padding: 80px 0;
    color: #ffffff;
    align-content: center;
    text-align: center;
}
#portfolio {
    padding: 50px 0;
    color: #434343;
    background-color: white;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6), #ff004f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
   transition: height 0.5s;
}
.layer h3{
    font-weight: 500;
    margin-bottom: 20px;
}
.layer a{
    margin-top: 20px;
    color: #ff004f;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}
.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
}
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}
.btn:hover{
    background: #ff004f;
}





.ytEmbed {
    width:560px;
    height:315px;
}












* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


















/* ---------contact-------- */
#contactTitle {
    padding: 80px 0;
    color: #ffffff;
    align-content: center;
    text-align: center;
}
.contact-main {
    max-width: 1000px;
    position: relative;
    margin: auto;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom:100px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #ff004f;
    transform: translateY(-5px);
}
.btn.btn2{
    display: inline-block;
    background: #ff004f;
}



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 .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
    
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}
.copyright i{
    color: #ff004f;
}
.copyright a{
    color: #ff004f;
    text-decoration: none;
}
/* -----------------css for small screens--------- */
nav .fas{
    display: none;
}

@media only screen and (max-width: 960px){
    #header {
        background-image: url(images/phone-background.webp);
        background-size: 445px;
        background-position: top+50px right;
        background-repeat: no-repeat;
        /*background-image: url(images/phone-background.webp);
        background-position:top+50px right;
        background-size:clamp(50%,100%,500px);
        background-repeat:no-repeat;*/
        background-color: black;
        width: 100%;
        height: 800px;
    }
    .header-text {
        display:block;
        flex-direction: column;
        justify-content:center;
        font-size: 16px;
        width:100%;
        padding:0 10% 0 10%;
        margin-top:30px;
    }
    .header-text h1{
        font-size: 36px;
    }
    .portrait-mobile {
        display: flex;
        width:100%;
        max-width:400px;

    }
    /*.logo {
        padding-right: 20vw;
        padding-left: 20vw;
        margin-left: 10%;
        margin-top: 20px;
        margin-bottom: 20px;
        align-self: center;
        width: 40vh;
        padding: 2vw 20vw 2vw 20vw;
        min-width: 250px;
    }*/
    .logo {
        width: 220px;
        height: auto;
        margin-left: 10%;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right:20px;
    }

    .footer{
        text-align:center;
        justify-content:center;
    }

        .footer ul {
            text-align: center;
            margin-bottom: 50px;
        }


        .footer ul li {
            display: inline-block;
            list-style: none;
            width:100%;
        }

            .footer ul li a {
                color: #ffffff;
                text-decoration: none;
                font-size: 18px;
                position: relative;
            }

    /*.footer .logo {
        width: 40vh;
        padding:2vw 20vw 2vw 20vw;
    }*/

    nav{
        align-content:center;
        justify-content:center;
    }

        nav .fas {
            display: block;
            font-size: 25px;
            padding-bottom:50px;
            position:absolute;
            right:40px;
            top:40px;
        }


    nav ul{
        background:#d71920;
        position: fixed;
        color:white;
        top: 0;
        right: -100%;
        width: 100%;
        height: inherit;
        padding-top: 100px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li a{
        color:white;
    }
    nav ul li{
        display: block;
        margin: 25px;
        text-align:center;
    }



    nav ul .fas{
        position: absolute;
        right:0px;
        top: 0px;
        left: 25px;
        cursor: pointer;
    }
    .sub-title{
        font-size: 40px;
    }
    .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;
    }
    .copyright{
        font-size: 14px;
    }

    .releases-box {
        background-color: rgba(0,0,0,0.6);
        color: white;
        max-width: 100%;
        min-width: 400px;
        padding-right: 30px;
        padding-left: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
        text-align: center;
    }
    .releases-box p{
        text-align:left;
    }

    .releases-logo {
        width: 80%;
    }

    .container-sos {
        background-size: auto 100%;
    }

    .container-dg {
        background-size: auto 100%;
    }


    .contact-form {
        padding-left: 30px;
        padding-right: 30px;
    }

    .ytEmbed {
        width:320px;
        height:180px;
    }

    .releases-logo{
        align-content:center;
    }

    .releases-box {
       width:100%;
        max-width: 100%;
        min-width: 0px;
        padding:30px;
        align-content:center;
    }

}
#msg{
    color: #61b752;
    margin-top: -40px;
    display: block;
}