*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

img {
    
}

ul{
    list-style: none;
}
a{
    text-decoration: none;
}

.container {
    padding: 0 100px;
    overflow: hidden;
}

.navbar {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 30px 0;
}
.logo{
    width: 50px;
    cursor: pointer;
    filter: invert(90%);
}
.menu{
    width: 26px;
    cursor: pointer;
    display: none;
}
nav{
    flex: 1;
}
nav ul{
    text-align: right;
}
nav ul li{
display: inline-block;
margin-right: 20px;

}
nav ul a{
    color:#111;
    font-size: 14px;
    display: inline-block;
    transition:all .3s ease;
    cursor: pointer;
}
nav ul a:hover{
    color:#ff5ea2;
    transform: translateY(-5px);
}

.showcase {
    display: flex;
    align-items: center;
}

.showcase-left {
    flex-basis: 40%;
    position: relative;
    animation: slideInLeft .4s linear;
}

.showcase-left h2{
    font-size: 52px;
    color: #111;
    font-weight: 500;
}
.showcase-left h3{
    font-size: 20px;
    color: #707070;
    font-weight: 100;
    margin-top: 20px;
    margin-bottom: 10px;
}
.showcase-left p{
    color: #707070;
    margin-bottom: 15px;
    font-weight: 100;
}
.showcase-left h4{
    font-size: 19px;
    margin: 25px 0;
}
.showcase-left .btn {
    width: 140px;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 6px;
    background-color: #1F1C18;


    color: #fff;
    transition: width .5s;
}
.arrow{
    width: 35px;
    display: none;
}
.showcase-left .btn:hover .arrow{
    display: block;
}
.showcase-left .btn:hover {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.showcase-left::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 57%;
    left: -40px;
    top: 8px ;
    background: #c31432;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #240b36, #c31432);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #240b36, #c31432); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    


}
.showcase-right{
    flex-basis: 60%;
    position: relative;
    display: flex;
    align-items: center;
    animation: slideInRight .4s linear;
}
.showcase-right .controller {
    width: 90%;
    z-index: 2;
    cursor: pointer;
    transition: .2s linear;
}
.showcase-right .controller:hover{
    transform: scale(1.1);
}
.showcase-right .box-color {
    position: absolute;
    height: 100%;
    width: 80%;
    transform: translateX(150px);
    background: #c31432;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #240b36, #c31432);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #240b36, #c31432); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    

    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 8px 0 0 8px;
}
.add{
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.add img{
    width: 35px;
    margin-bottom: 5px;
}
.add p{
    font-size: 13px;
}

/* SECTION 2 */

.section-2 {
    background: #EEEEEE;
    padding: 60px 0;
    margin: 90px 0;
}
.section-2 iframe {
     max-width: 550px;
     height: 350px;
     display:block ;
     margin: auto;
     /* border: 1px solid #111; */
     border-radius: 6px;
}
.section-2 h2,
.section-2 h3{
    text-align: center;
}
.section-2 h3{
    font-size: 19px;
    
    line-height: 1.5em;
    width: 60%;
    text-align: center;
    margin: auto;
    margin-bottom: 60px;
}

/* SECTION 3 */

.section-3 .text {
    text-align: center;
}
.grid h4 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 300;
}
.grid p {
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}
.section-3 img{
    width: 95%;
    cursor: pointer;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    position: relative;
    animation: fadeInOut .9s ease;
}
.grid img {
    position: relative;
    z-index: 1;
}

.image-pad{
    
    position: absolute;
    width: 110px;
    height: 110px;
    top: 190px;
    left: 100px;
    /* background: linear-gradient(#54a4ff, #57ffc7); */
    border-radius: 50%;
    background: rgb(212, 28, 28);
    z-index: -1;
    opacity: 0.5;
}

.img1-a,
.img2,
.img3,
.img4,
.img5,
.img6{
    cursor: pointer;
    transition: all .2s linear;
}
.img1-a:hover,
.img2:hover,
.img3:hover,
.img4:hover,
.img5:hover,
.img6:hover{
    transform: translateY(-40px) scale(1.5);
}

.img1-a{
    animation: slideInLeft .2s linear;
    /* transition: transform .3s linear; */
    cursor: pointer;
    transition: all .2s linear;
}
.img1-a:hover{
    transform: translateY(-40px) scale(1.5);
    /* animation: slideInLeft .2s linear; */
    /* animation: hoverRotate .2s linear; */
}
.img2{
    animation: slideInLeft .3s linear ;
}
.img3{
    animation: slideInLeft .4s linear;
}
.img4{
    animation: slideInRight .5s linear;
}
.img5{
    animation: slideInRight .6s linear;
}
.img6{
    animation: slideInRight .7s linear;
}

/* .img1-a:hover{
    transform: rotate(-90deg);
} */


/* SECTION 4 */
.section-4 {
    background: #EEEEEE;
    padding: 40px 150px;
}
.grid-2{
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19em,1fr)); */
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
}
.section-4 img{
    width: 45%;
    margin: auto;
    transition: .2s linear;
    cursor: pointer;
}
.section-4 img:hover{
    transform: translateX(30px) scale(1.1);
}
.text-right{
    margin-left: 80px;
}
.text-right h6{
    color:#c31432;
    font-size: 12px;
    letter-spacing: .2em;
}
.text-right h2{
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 300;
}
.text-right p{
    color: black;
    font-weight: 300;





    font-size: 15px;
    line-height: 1.5;
}

/* FOOTER */

.footer{
    background: #c31432;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #240b36, #c31432);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #240b36, #c31432); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


    padding: 40px 40px 60px 20px;
}
.footer-col{
    display: flex;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr) */
}
.image{
    flex: 1;
}
.footer img{
    width:80px ;
}
.footer-col ul{
    margin-right: 40px;
    margin-bottom: 20px;
}
.footer-col ul a{
    color: #fff;
    line-height: 1.9;
    font-size: 13px;
}
.logo-text{
    color: #fff;
    margin-top: 170px;
}
.logo-text img{
    width: 105px;
    /* filter: grayscale(100%) invert(88%); */
}
.sony{
    /* filter: invert(100%) sepia(100%) opacity(0.6); */
}
.logo-text p{
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* UTILITIES */

h2{
    font-size: 52px;
    color: #240b36;
    font-weight: 500;
}
h3{
    font-size: 20px;
    color: #707070;
    font-weight: 300;
    margin-top: 14px;
    margin-bottom: 70px;
    line-height: 1.5em;
}

@keyframes slideInLeft{
        0%{
            transform: translateX(-100%);
        }
        100%{
            transform: translateX(10%);
        }

        /* 0%{
            transform: rotate(0deg);
        }
        100%{
            transform: rotate(360deg);
        } */
    }



@keyframes slideInRight{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-10%);
    }

    /* 0%{
        transform: rotate(0deg);
    }
    90%{
        transform: rotate(360deg);
    } */
}

@keyframes slideInTop{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateX(0%);
    }
}
@keyframes slideInBottom{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateX(0%);
    }
}

@keyframes hoverRotate{
     0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    } 
}


/* MEDIA QUERIES */

@media (max-width: 700px){
    nav ul{
        position: absolute;
        right: 0;
        z-index: 5;
        top: 75px;
        width: 100%;
        background: #c31432;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #240b36, #c31432);  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #240b36, #c31432); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }
    nav ul li{
        margin-bottom: 10px;
        display: block;
    }
    nav ul li a{
        color: #fff;
    }
    nav li a:hover{
        color: #707070;
        transform: translateX(-10px);
    }
    .menu {
        display: block;
    }
    #menuList{
        overflow: hidden;
        transition: .5s;
    }
.container {
        padding: 0 50px;
    }
    .showcase {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    
    .showcase-left {
        animation: slideInBottom .4s linear;
        margin-top: 50px;
        flex-basis: 100%;
        margin-left: 90px;
    }
    
    .showcase-left h2{
        font-size: 35px;
   
    }
    .showcase-left h3{
        font-size: 15px;
       
    }
    .showcase-left p{
        font-size: 14px;
    }
   
    .showcase-right{
        margin-top: 50px;
        flex-basis: 100%;
        animation: slideInTop .4s linear;
    }
    .showcase-right .controller {
        width: 80%;
        z-index: 2;
    }
    .showcase-right .box-color {
        
        transform: translateX(70px);
        
    }
    .add p{
        font-size: 12px;
    }

    
    .section-2 iframe {
         width: 100%;
         max-width: 400px;
         min-width: 250px;
         max-height: 200px;
         display:block ;
         margin: auto;
         border: 1px solid #111;
         border-radius: 6px;
    }
    .section-2 h2{
        font-size: 30px;
    }
    .section-2 h3{
        font-size: 17px;
        width: 100%;  
    }
    .text h2{
        font-size: 36px;
    }
    .text h3{
        font-size: 18px;
        width: 100%;  
    }
    
    
    .grid h4 {
        text-align: center;
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: 300;
    }
    .grid p {
        font-size: 15px;
    }

    .grid-2{
        flex-direction: column;
    }

    .section-4 {
        background: #EEEEEE;
        padding: 20px;
    }
  
    .section-4 img{
        width: 90%;
        margin: 30px auto;
    }
    .section-4 .container{
        width: 100%;
        padding: 0 30px;
    }

    .text-right{
        width: 100%;
        text-align: left;
        margin: auto;
    }
    .text-right h6{
        font-size: 10px;
    }
    .text-right h2{
        font-size: 26px;
    }
    .text-right p{
        
        font-size: 15px;
        
    }

    .footer-col{
        flex-direction: column;
    }
    .logo-text{
       display: none;
    }
    .image {
        margin-bottom: 30px;
    }
}