@import url("roboto-fonts.css");
html{
    width: 100%;
    min-height: 100vh;
    font-family: "Roboto",Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: rgb(32, 32, 32);
}
.main-nav{
    background-color: rgba(0, 0, 0, 0.74);
    border-bottom: 2px solid gainsboro;
    font-family: "Roboto";
    position: fixed;
    z-index: 3;
    width: 100%;
}
.main-banner{
    background-image: url("../img/main-banner.jpg");
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.main-banner::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top right,rgba(0, 0, 0, 0.832) 20%, rgba(54, 3, 3, 0.689));
    z-index: 1;
}
.main-title-container{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: white;
}
.main-title-container .main-title{
    font-family: "Roboto";
    font-weight: 500;
    font-size: 50px;
}
.simbol-container img{
    margin: 5px;
}
.main-title{
    border-bottom: 4px solid red;
}
.modal-content.modal-content-play-video{
    height: 339px;
    background-color: transparent;
}
.modal-content .modal-header{
    border: none;
}
.modal-content .close{
    color: gainsboro;
}
.btn-wellcome{
    border-radius: 0;
}
.btn-wellcome:focus{
    box-shadow: none;
    font-family: "Roboto";
}
.sub-title{
    font-family: "Roboto";
    font-weight: 200;
    padding-top: 10px;
}
.img-fase-container,.agenda-col{
    justify-content: space-evenly;
    background-image: radial-gradient(rgba(10, 15, 65, 0.832) 20%, rgba(91, 4, 4, 0.756));
    font-family: "Roboto";
}
.sub-title-fase,.title-agenda{
    text-align: center;
    border-bottom: 2px solid rgb(152, 5, 5);
    max-width: max-content;
    margin: 20px auto;
    padding: 10px 40px;
    font-family: "Roboto";
}
.text-description-fase,.list-fase-movies{
    font-family: "Roboto";
    font-weight: 200;
    color: gainsboro;
    text-align: justify;
}
.simbol-img-container{
    text-align: center;
}
.simbol-img-container img{
    margin: 10px;
}
.agenda-col{
    color: white;
    font-family: "Roboto";
    text-align: center;
    height: 120px;
    font-size: 33px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid gainsboro;
}
.main-footer{
    margin-top: 20px;
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.289);
    color: white;
}
@media all and (max-width:1200px) {
    .agenda-col {
        font-size: 28px;
    }
}
@media all and (max-width:992px) {
    .agenda-col {
        font-size: 25px;
    }
}
@media all and (max-width:890px){
    .main-title-container{
        width: 90%;
    }
}
@media all and (max-width:768px) {
    .agenda-col {
        font-size: 20px;
    }
}
@media all and (max-width:575px) {
    .simbol-img-container {
        padding: 70px 0;
    }
    .fase-title{
        margin-top: 30px;
    }
}