html{
    box-sizing: border-box;
}

*, *::after, *::before{
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

html,
body{
    height: 100%;
    
}


ul{
    list-style-type: none;
}

a{
    text-decoration: none ;
    color: inherit;
}

a:hover {
    color: #d72323;
}

body {
    background-color: #080808;
    font-family: 'Maven Pro', sans-serif;
    font-size: 16 px;
    font-weight: 400;
    margin: 0;
}

.intro {
    max-height: 100vh;
    overflow: hidden;
}

.intro:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.83);

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    z-index: 1;
}

.video__media {
    width: 100%;
    height: auto;
    
    position: absolute;
    top: 0;
    left: 0;
}

.wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
    
}


.header {

 
}

.container {
    
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
}

.header__inner {
    padding-top: 40px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__burger-btn{
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 4;
    cursor: pointer;
}

.header__burger-btn span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    left: 5px;
    transition: background-color .5s, opacity .5s, transform .5s;
    will-change: transform;
}

.header__burger-btn span:nth-child(1){
    transform: translateY(-10px);

}

.header__burger-btn span:nth-child(2){
    transform: translateY(0);

}

.header__burger-btn span:nth-child(3){
    transform: translateY(10px);

}

.header.open .header__burger-btn span:nth-child(1){
    transform: translateY(0) rotate(45deg);

}

.header.open .header__burger-btn span:nth-child(2){
    opacity: 0;

}

.header.open .header__burger-btn span:nth-child(3){
    transform: translateY(0) rotate(-45deg);

}

.menu__list {
    display: flex;
    gap: 35px;
    
}

.menu__list-link {
    color: #fff; 
    
}

.logo__img {
    width:300px;
}

.logo__img:hover {
    opacity: 0.4;
}

.footer{
    
    padding: 10px 0 30px;
}
.social__icons{
    max-width: 85px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    
}
.facebook {
    width:24px;
    
}
.facebook:hover{
    opacity: 0.5;
}

.instagram{
    width:24px;
}

.instagram:hover{
    opacity: 0.5;
}

.whatsapp{
    
    height: 24px;
    
}
.whatsapp:hover{
    opacity: 0.5;
    
}

.copyright{
    color: #fff;
    text-align: center;

}
.main{
    flex-grow: 1;
}

.top{
    color: #fff;
    text-align: center;
    font-size: 25px;
    padding-top: 0px;
    padding-bottom: 40px;

}

.top1{
    color: #fff;
    text-align: left;
    font-size: 25px;
    padding-top: 0px;
    padding-bottom: 40px;
    margin-right:20px;

}

.title{

    
    padding-bottom: 40px;
    
    
    
}

.content-red{
    font-size: 35px;
    color: #d72323;
}

.showreel__link{
    
    background-color: #d72323;
    padding: 15px;
    max-width: 150px;
    display: inline-block;
    font-size: 20px;
    width: 100%;
}
.showreel__link:hover{
    background-color: #000;
}

.video__title-item{
    color: #fff;
    font-size: 55px;
    
}

.quote {


    color: #fff;
    font-size: 25px;
    text-align: center;
    padding: 20px;

}

.portfolio__video{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;

}
.get_a_quote__title-item{
    color: #d72323;
    font-size: 55px;
    text-align: center;
    padding: 20px;
}

.contact__wrapper{
    width: 750px;
    margin: 0 auto;
    color: #fff;
}

input{
    width: 360px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 30px;
}
input:first-of-type{
    margin-right: 23px;
}

.red{
    color: #d72323;
}

.form__inputs{
    display: flex;
}
textarea{
    width: 100%;
    height: 165px;
    font-size: 20px;
}
input, textarea{
    margin-top: 5px;
}

.button__block{
    display: flex;
    justify-content: flex-end;
}
input[type=submit]{
    width: 165px;
    height: 50px;
    background: #d72323;
    color: #fff;
    border: 0;
    margin-right: 0;
    margin-top: 20px;
}

input[type=submit]:hover{
    background: #000;
    color: #d72323;
    border-color: #d72323;
    border: 1px;
    cursor: pointer;
}