*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
    font-family: Helvetica Neue, sans-serif;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 180px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
header img{
    width: 13%;
}
header select{
    outline: none;
    background-color: transparent;
    color: white;
    padding: 6px 10px 6px 30px;
    font-size: 15px;
    margin-right: 20px;
    border-radius: 2px;
}
header select:focus{
    outline: 1px solid white;
}
header .selectmenu{
    position: relative;
}
header .selectmenu .fa-globe{
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
}
header a{
    padding: 8px 15px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    background-color: #e20813;
    color: white;
    border-radius: 5px;
}
header a:hover{
    color: white;
    text-decoration: none;
}
/* **************************************************************************** */
.Fsec{
    min-height: 100vh;
    background-image: url(background.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 8px solid #222;
}
.Fsec::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background: linear-gradient(to bottom,#000,transparent);
}
.Fsec::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background: linear-gradient(to top,#000,transparent);
}
.Fsec div{
    text-align: center;
    z-index: 2;
}
.Fsec h2 {
    font-size: 45px;
    margin-top: 80px;
    color: white;
    line-height: 74.5px;
    font-weight: bold;
    letter-spacing: 0;
}
.Fsec h3{
    font-size: 25px;
    color: white;
    margin: 12px 0 16px;
}
.Fsec p{
    font-size: 20px;
    margin: 16px 0px;
    color: white;
    font-weight: 500;
}
.Fsec form{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.Fsec form input[type="email"]{
    padding: 10px 30px;
    width: 40%;
    outline: none;
    border: 1px solid gray;
    font-size: 20px;
    margin-right: 10px;
    border-radius: 5px;
}
.Fsec form input[type="eamil"]::placeholder{
    color: #4c4c5d;
    font-size: 20px;
    text-indent: 10px;
}
.Fsec form button{
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    background-color: #e20813;
    color: white;
    border-radius: 5px;
    font-size: 25px;
}
/* *****************second section**************** */
.videoSec{
    color: white;
    border-bottom: 8px solid #222;
    padding: 40px 180px;
    text-align: left;
}
.videoSec .secp{
    margin-top: 50px;
}
.elemento2{
    padding-right: 90px;
}
.elemento3{
    width: 550px;
    height: 600px;
    margin-right: 60px;
}
.videoSec h3{
    font-size: 43px;
    font-weight: 600;
}
.videoSec p{
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
}
.videoSec .videoSecDiv{
    position: relative;
}
.videoSec .videoSecDiv img{
    width: 600px;
}
.videoSecDiv img{
    padding-right: 30px;
}

/* *********************** Third Section ************ */
.imgSec{
    color: white;
    border-bottom: 8px solid #222;
    padding: 40px 180px;
}
.imgSec h3{
    font-size: 43px;
    font-weight: 600;
}
.imgSec p{
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
}
.imgSec img{
    width: 600px;
}
.secp1{
    margin-top: 60px;
}
.lastimg{
    padding-right: 60px;
}

/* *************last style ********** */
.lastSec{
    padding: 50px 150px;
    border-bottom: 8px solid #222;
}
.lastSec h3{
    text-align: center;
    color: white;
    font-size:45px;
    margin: 50px 0px;
    font-weight: 900;
}
.list{
    width: 95%;
    margin: auto;
}
.accordion{
    background-color: #303030;
    color: white;
    cursor: pointer;
    padding: 13px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 30px;
    transition: 0.4s;
    border-bottom: 1px solid black;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion::after{
    content: '+';
    color: white;
    float: right;
    font-size: 40px;
    margin-left: 5px;
}
.active::after{
    content: '-';
}
.panel{
    background-color: #303030;
    font-size: 20px;
    padding: 0 20px;
    max-height: 0;
    color: white;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/****************** footer *****************/
footer{
    padding: 30px 100px;
}
footer a{
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
}
footer a:hover{
    color: rgba(255, 255, 255, 0.7);
}
footer ul li{
    margin-top: 10px;
    list-style: none;
}
footer select{
    outline: none;
    background-color: transparent;
    color: white;
    padding: 6px 10px 6px 30px;
    font-size: 15px;
    margin-right: 20px;
    border-radius: 2px;
}
footer select:focus{
    outline: 1px solid white;
}
footer p{
    color: #303030;
    margin-top: 10px;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
    font-family: Helvetica Neue, sans-serif;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 180px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
header img{
    width: 13%;
}
header select{
    outline: none;
    background-color: transparent;
    color: white;
    padding: 6px 10px 6px 30px;
    font-size: 15px;
    margin-right: 20px;
    border-radius: 2px;
}
header select:focus{
    outline: 1px solid white;
}
header .selectmenu{
    position: relative;
}
header .selectmenu .fa-globe{
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
}
header a{
    padding: 8px 15px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    background-color: #e20813;
    color: white;
    border-radius: 5px;
}
header a:hover{
    color: white;
    text-decoration: none;
}
/* **************************************************************************** */
.Fsec{
    min-height: 100vh;
    background-image: url(background.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 8px solid #222;
}
.Fsec::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background: linear-gradient(to bottom,#000,transparent);
}
.Fsec::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    background: linear-gradient(to top,#000,transparent);
}
.Fsec div{
    text-align: center;
    z-index: 2;
}
.Fsec h2 {
    font-size: 45px;
    margin-top: 80px;
    color: white;
    line-height: 74.5px;
    font-weight: bold;
    letter-spacing: 0;
}
.Fsec h3{
    font-size: 25px;
    color: white;
    margin: 12px 0 16px;
}
.Fsec p{
    font-size: 20px;
    margin: 16px 0px;
    color: white;
    font-weight: 500;
}
.Fsec form{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.Fsec form input[type="email"]{
    padding: 10px 30px;
    width: 40%;
    outline: none;
    border: 1px solid gray;
    font-size: 20px;
    margin-right: 10px;
    border-radius: 5px;
}
.Fsec form input[type="eamil"]::placeholder{
    color: #4c4c5d;
    font-size: 20px;
    text-indent: 10px;
}
.Fsec form button{
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    background-color: #e20813;
    color: white;
    border-radius: 5px;
    font-size: 25px;
}
/* *****************second section**************** */
.videoSec{
    color: white;
    border-bottom: 8px solid #222;
    padding: 40px 180px;
    text-align: left;
}
.videoSec .secp{
    margin-top: 50px;
}
.videoSec h3{
    font-size: 43px;
    font-weight: 600;
}
.videoSec p{
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
}
.videoSec .videoSecDiv{
    position: relative;
}
.videoSec .videoSecDiv img{
    width: 600px;
}

/* *********************** Third Section ************ */
.imgSec{
    color: white;
    border-bottom: 8px solid #222;
    padding: 40px 180px;
}
.imgSec h3{
    font-size: 43px;
    font-weight: 600;
}
.imgSec p{
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
}
.imgSec img{
    width: 600px;
}
.secp1{
    margin-top: 60px;
}
.lastimg{
    padding-right: 60px;
}

/* *************last style ********** */
.lastSec{
    padding: 50px 150px;
    border-bottom: 8px solid #222;
}
.lastSec h3{
    text-align: center;
    color: white;
    font-size:45px;
    margin: 50px 0px;
    font-weight: 900;
}
.list{
    width: 95%;
    margin: auto;
}
.accordion{
    background-color: #303030;
    color: white;
    cursor: pointer;
    padding: 13px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 30px;
    transition: 0.4s;
    border-bottom: 1px solid black;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion::after{
    content: '+';
    color: white;
    float: right;
    font-size: 40px;
    margin-left: 5px;
}
.active::after{
    content: '-';
}
.panel{
    background-color: #303030;
    font-size: 20px;
    padding: 0 20px;
    max-height: 0;
    color: white;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
/****************** footer *****************/
footer{
    padding: 30px 100px;
}
footer a{
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
}
footer a:hover{
    color: rgba(255, 255, 255, 0.7);
}
footer ul li{
    margin-top: 10px;
    list-style: none;
}
footer select{
    outline: none;
    background-color: transparent;
    color: white;
    padding: 6px 10px 6px 30px;
    font-size: 15px;
    margin-right: 20px;
    border-radius: 2px;
}
footer select:focus{
    outline: 1px solid white;
}
footer p{
    color: #303030;
    margin-top: 10px;
}

