*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --orange: #FF7900;
    --dark: #1E2329;
    --white: #fff;
}

hr{
    color: var(--white);
}

body{
    background-color: var(--dark);
    font-family: Sahel, sans-serif;
}

.navbar{
    background-color: var(--dark);
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 100;
}

.logo{
    width: 200px;
    height: 60px;
    margin-right: 20px;
    border-radius: 10px;
}

.logo img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.navlinks{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.navlinks li{
    margin: 0px 30px;
}

.navlinks li p, .navlinks li a{
    color: var(--white);
    text-decoration: none;
    margin-top: 20px;
    cursor: pointer;
    padding-bottom: 2px;
}

.navlinks li p:hover{
    font-weight: bold;
}

.navbar .btn{
    background-color: var(--orange);
    color: var(--white);
    margin-left: 20px;
}

.navbar .btn:hover{
    transform: scale(1.1);
    color: var(--white);
}

.btn-close{
    color: var(--white);
}

#navbar-mobile{
    display: none;
    padding-top: 20px;
    position: unset;
}

@media screen and (max-width: 1220px) {
    #navbar-desktop{
        display: none
    }

    #navbar-mobile{
        display: block;
    }
}

@media screen and (max-width: 550px) {
    .logo{
        display: none;
    }

    #navbar-mobile{
        padding-top: 30px;
    }
}

.nav-item{
    border-top: 1px solid #fff;
}

.nav-item:last-child{
    border-bottom: 1px solid #fff;;
}

.act{
    border-bottom: 4px solid var(--orange);
    border-radius: 4px;
    position: relative;
}

.active{
    font-weight: bold;
}

.poster{
    width: 100%;
}

.poster img{
    width: 100%;
    margin-top: 100px;
}

@media screen and (max-width: 1220px) {
    .poster img{
        margin-top: 0;
    }
}

.journalini{
    margin-top: 80px;
}

.journalini h1{
    color: var(--white);
    text-align: center;
    font-size: 60px;
    font-weight: bold;
}

.journalini span{
    color: var(--orange);
}

.journalini p{
    color: var(--white);
    margin: 20px 100px;
    text-align: justify;
}

.journalini .btn{
    background-color: var(--orange);
    color: var(--white);
    height: 38px;
    margin-top: 5px;
    margin-right: 25px;
}

.journalini .container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.journalini center{
    display: flex;
}

.journalini h3{
    color: var(--white);
    margin: 10px;
}

@media screen and (max-width: 768px){
    .journalini .container{
        display: block;
    }

    .journalini center{
        display: block;
    }

    .journalini h3{
        font-size: 40px;
    }

    .journalini p{
        margin: 20px 50px;
    }
}


.cards-title{
    color: var(--white);
    text-align: center;
    margin-top: 120px;
    font-size: 60px;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .cards-title{
        font-size: 50px;
    }
}

@media screen and (max-width: 450px) {
    .cards-title{
        font-size: 40px;
    }
}

.cards-title span{
    color: var(--orange);
}

.card-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 50px;
}

.card{
    margin: 50px;
    position: unset;
}

.cards{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.cards .card{
    width: 400px;
    background-color: #1c1b29;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.18);
}

.cards .card .container{
    position: relative;
    clip-path: polygon(0 0,100% 0, 100% 85%, 0 100%);
}

.cards .card .container img{
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
}

.cards .card .container:after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
    opacity: 0.7;
}

.card1>.container:after{
    background-image: linear-gradient(
        135deg,
        #0100ec,
        #fb36f4
    );
}

.card2>.container:after{
    background-image: linear-gradient(
        135deg,
        #2bdce3,
        #42ffdb
    );
}

.card3>.container:after{
    background-image: linear-gradient(
        135deg,
        #ffab1d,
        #f8501c
    );
}

.details{
    padding: 20px 10px;
}

.details>h3{
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0 15px 0;
}

.details>p{
    color: #a0a0a0;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
}

.plyr{
    width: 70%;
    height: 35%;
}

button.plyr__control.plyr__control--overlaid{
    background: var(--orange);
}

button.plyr__control.plyr__control--overlaid:hover{
    background: var(--orange);
}
.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true]{
    background: var(--orange);
}

.plyr--full-ui input[type=range]{
    color: var(--orange);
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before{
    background: var(--orange);
}

.contact-us{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 120px;
}

.contact-us form{
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-right: 20px;
}

@media screen and (max-width: 1100px) {
    .contact-us form{
        width: 80%;
    }

    .plyr{
        width: 98%;
    }
}


.contacts{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contacts li{
    direction: ltr;
}

.social{
    display: flex;
    flex-direction: column;
}

.social img{
    width: 40px;
    height: 40px;
    margin: 5px;
}

@media screen and (max-width: 1000px){
    .contacts{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social img{
        width: 100px;
        height: 100px;
        margin: 20px;
    }

    .emails{
        width: 50%;
    }

    .tel{
        width: 50%;
    }
}

footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    background-color: var(--orange);
    margin-top: 100px;
    border-radius: 10px 10px 0px 0px;
    padding: 10px;
}

.stats{
    margin: 5px;
}

.stats p {
    color: var(--white);
    font-size: 17px;
    margin: 7px;
}

