/* Start Global Rules */

*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root{
    --main-yellow-color:#FFCF49;
    --main-blue-color:#1F2A3E;
    --main-transition:0.5s;
    --p-color:#ccc;
    --padding-top:50px;
    --padding-bottom:50px;
}

/* End Variables */


html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto', sans-serif;
}

/* Start Contanier */

.contanier{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px){
    .contanier{
        width: 750px;
    }
}

@media (min-width: 992px){
    .contanier{
        width: 970px;
    }
}

@media (min-width: 1200px){
    .contanier{
        width: 1170px;
    }
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    width: 50px;
    height: 50px;
}

.main-title{
    margin: 0 auto 80px;
    border: 2px solid black;
    padding: 10px 20px;
    width: fit-content;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: var(--main-transition);
}

@media (max-width: 768px){
    .main-title{
        font-size: 20px;
    }
}

.main-title a{
    color: black;
}

.main-title:hover{
    color: white;
    border: 2px solid white;
    transition-delay: 0.5s;
}


.main-title:hover a{
    color: white;
    transition-delay: 0.5s;
}

.main-title::before{
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    left:-30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title::after{
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    right:-30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title:hover::before {
    z-index: -1;
    animation-name: left-move;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.main-title:hover::after {
    z-index: -1;
    animation-name: right-move;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

/* End Contanier */

/* End Global Rules */

/*********************************************************************************************/

/* Start Event */

.event{
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}

.event .contanier{
    flex-wrap: wrap;
    justify-content: center;
}

.event .contanier .curent-event{
    height: auto;
    background-color: white;
    border-top-right-radius: 30px;
    box-shadow: 0px 0px 0px 2px #00000047;
    width: 400px;
}


@media (max-width: 768px){
    .event .contanier .curent-event{
        width: 300px;
        display: block !important;
    }
}

.event .contanier .curent-event .main-event{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event .contanier .curent-event .main-event .image{
    width: 400px;
    height: 300px;
    border-top-right-radius: 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #00000014;
}

@media (max-width: 768px){
    .event .contanier .curent-event .main-event .image{
        width: 300px;
        height: 250px;
    }
}

.event .contanier .curent-event .main-event .image img{
    width: 400px;
    height:299px;
    border-top-right-radius: 30px;
}

@media (max-width: 768px){
    .event .contanier .curent-event .main-event .image img{
        width: 300px;
        height: 249px;
    }
}

.event .contanier .curent-event .main-event .event-info{
    padding-left: 20px;
    padding-right: 20px;
}

.event .contanier .curent-event .main-event .event-info .title{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}

.event .contanier .curent-event .main-event .event-info .type-more{
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    align-items: center;
}

.event .contanier .curent-event .main-event .event-info .type-more .more{
    width: 150px;
    height: 50px;
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 15px 24px 15px;
    transition: var(--main-transition);
}

.event .contanier .curent-event .main-event .event-info .type-more .more a{
    color: white;
    font-weight: bold;
}

.event .contanier .curent-event .main-event .event-info .type-more .more:hover{
    border: 2px solid var(--main-blue-color);
    background-color: white;
}

.event .contanier .curent-event .main-event .event-info .type-more .more:hover a{
    color: var(--main-blue-color);
}

.event .contanier .curent-event .main-event .place{
    padding-left: 20px;
    padding-bottom: 20px;
}

.event .contanier .curent-event .main-event .place i{
    font-size: 20px;
} 

.event .contanier .curent-event .main-event .place span{
    padding-left: 10px;
    font-size: 20px;
    font-weight: bold;
}

.event .contanier .content{
    width: 550px;
}

.event .contanier .content #countdown{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
}

.event .contanier .content #countdown .counter{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 150px;
    width: 80px;
    border-radius: 17px;
    border: 2px solid var(--main-blue-color);
    position: relative;
}

.event .contanier .content #countdown .counter label{
    width: 100%;
    text-align: center;
}

.event .contanier .content #countdown .counter label::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--main-yellow-color);
    left: 0;
    top: 75px;
}

.event .contanier .content .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event .contanier .content .text .title{
    font-size: 25px;
    font-weight: bold;
}

.event .contanier .content .text p{
    text-align: center;
    line-height: 1.3;
}

.event .contanier .content .text .more{
    width: 150px;
    height: 50px;
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 15px 24px 15px;
    transition: var(--main-transition);
}

.event .contanier .content .text .more:hover{
    background-color: white;
    border: 1px solid var(--main-blue-color);
    transition: var(--main-transition);
}

.event .contanier .content .text .more a{
    color: white;
    font-weight: bold;
}

.event .contanier .content .text .more:hover a{
    color: var(--main-blue-color);
}

/* End Event */

/*********************************************************************************************/ 

/* Start Curent Event */

.landing-event{
    background-image: url(../Image/Event.png);
    width: 100%;
    height: 500px;
    position: relative;
}

@media (max-width: 768px){
    .landing-event{
        width: 100%;
        height: 200px;
        position: relative;
        background-size: 100% 100%;
        background-repeat: repeat;
    }
}

.landing-event::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 30%);
    width: 100%;
    height: 100%;
}

.content{
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}

@media (max-width: 768px){
    .content .contanier {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.content .contanier .title{
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 30px;
    border-left: 12px solid var(--main-blue-color);
    padding-left: 10px;
}

@media (max-width: 768px){
    .content .contanier .title{
        font-size: 50px;
    }
}

/* .content .contanier .box-of-description{
    width: 350px;
    box-shadow: 0px 0px 5px #ccc;
    padding: 0;
} */

.content .contanier .box-of-description .description{
    font-size: 54px;
    font-weight: bold;
    border-left: 12px solid var(--main-blue-color);
    padding-left: 10px;
}

@media (max-width: 768px){
    .content .contanier .box-of-description .description{
        font-size: 35px;
    }
}

.content .contanier .box-of-description p{
    padding: 0 15px;
    margin-top: 15px;
    font-size: 25px;
}

.content .contanier .box-of-description .details{
    padding: 25px 0;
}

.content .contanier .box-of-description .details ul{
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px){
    .content .contanier .box-of-description .details ul{
        justify-content: center;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
        margin-left: 0;
        padding-left: 0;
    }
}

.content .contanier .box-of-description .details ul li{
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    background-color: var(--p-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: var(--main-transition);
    cursor: pointer;
}

.content .contanier .box-of-description .details ul li:hover{
    background-color: var(--main-yellow-color);
}

.content .contanier .box-of-description .details ul i{
    font-size: 27px;
    color: var(--main-blue-color);
}

.content .contanier .box-of-description .details ul span{
    font-weight: bold;
}

.content .contanier .box-of-description .details ul a{
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.other-event .contanier .curent-event{
    height: 500px;
    background-color: white;
    border-top-right-radius: 30px;
    box-shadow: 0px 0px 0px 2px #00000047;
    width: 400px;
}


@media (max-width: 768px){
    .other-event .contanier .curent-event{
        width: 300px;
        display: block !important;
    }
}

.other-event .contanier .curent-event .main-event{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.other-event .contanier .curent-event .main-event .image{
    width: 400px;
    height: 300px;
    border-top-right-radius: 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #00000014;
}

@media (max-width: 768px){
    .other-event .contanier .curent-event .main-event .image{
        width: 300px;
        height: 250px;
    }
}

.other-event .contanier .curent-event .main-event .image img{
    width: 400px;
    height:299px;
    border-top-right-radius: 30px;
}

@media (max-width: 768px){
    .other-event .contanier .curent-event .main-event .image img{
        width: 300px;
        height: 249px;
    }
}

.other-event{
    background-color: #eee;
    padding: 20px;
}

.other-event .contanier{
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px){
    .other-event .contanier{
        flex-direction: column;
    }
}

.other-event .more-event{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
}

.other-event .more-event a{
    width: 150px;
    height: 50px;
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 15px 24px 15px;
    transition: var(--main-transition);
    color: white;
}


.other-event .more-event a:hover{
    background-color: white;
    color: var(--main-blue-color);
    border: 1px solid var(--main-blue-color);
}

.other-event .contanier .curent-event .main-event .event-info{
    padding: 0 20px;
}

.other-event .contanier .curent-event .main-event .event-info .title{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}

.other-event .contanier .curent-event .main-event .event-info .type-more{
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    align-items: center;
}

.other-event .contanier .curent-event .main-event .event-info .type-more .more{
    width: 150px;
    height: 50px;
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 15px 24px 15px;
    transition: var(--main-transition);
}

.other-event .contanier .curent-event .main-event .event-info .type-more .more a{
    color: white;
    font-weight: bold;
}

.other-event .contanier .curent-event .main-event .event-info .type-more .more:hover{
    border: 2px solid var(--main-blue-color);
    background-color: white;
}

.other-event .contanier .curent-event .main-event .event-info .type-more .more:hover a{
    color: var(--main-blue-color);
}

.other-event .contanier .curent-event .main-event .place{
    padding-left: 20px;
}

.other-event .contanier .curent-event .main-event .place i{
    font-size: 20px;
} 

.other-event .contanier .curent-event .main-event .place span{
    padding-left: 10px;
    font-size: 20px;
    font-weight: bold;
}

.other-event .contanier .content #countdown{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
}

.other-event .contanier .content #countdown .counter{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 150px;
    width: 80px;
    border-radius: 17px;
    border: 2px solid var(--main-blue-color);
    position: relative;
}

.other-event .contanier .content #countdown .counter label{
    width: 100%;
    text-align: center;
}

.other-event .contanier .content #countdown .counter label::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--main-yellow-color);
    left: 0;
    top: 75px;
}

.other-event .contanier .content .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.other-event .contanier .content .text .title{
    font-size: 25px;
    font-weight: bold;
}

.other-event .contanier .content .text p{
    text-align: center;
    line-height: 1.3;
}

.other-event .contanier .content .text .more{
    width: 150px;
    height: 50px;
    background-color: var(--main-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 15px 24px 15px;
    transition: var(--main-transition);
}

.other-event .contanier .content .text .more:hover{
    background-color: white;
    border: 1px solid var(--main-blue-color);
    transition: var(--main-transition);
}

.other-event .contanier .content .text .more a{
    color: white;
    font-weight: bold;
}

.other-event .contanier .content .text .more:hover a{
    color: var(--main-blue-color);
}




/* End Curent Event */


