/* 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 Content */

.content{
    display: flex;
}

/* End Content */


/* Start Slider */

.content .slider{
    position: relative;
    /* padding: 20px; */
    width: 250px;
    background-color: white;
    display: flex;
    /* max-height: 2200vh; */
    height: auto;
    box-shadow: 4px 4px 4px #a9a8a8a6;
}

@media (max-width: 768px){
    .content .slider{
        display: none;
    }
}


.content .slider .slid{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 140px;
    /* padding: 10px; */
    width: 250px;
}

.content .slider .slid ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px 0;
    position: relative;
}

.content .slider .slid ul li i{
    color: var(--main-blue-color);
}

.content .slider .slid ul li a{
    color: var(--main-blue-color);
    font-weight: bold;
}

.content .slider .slid ul li .active{
    color: var(--main-yellow-color);
}

.content .slider .slid ul li.active::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 45px;
    background-color: var(--main-yellow-color);
    border-radius: 8px 0px 0px 8px;
    right: 0;
}
/* End Slider */

.content .hotels{
    padding: 30px;
}

@media (max-width: 768px){
    .content .hotels{
        padding: 20px 0;
    }
}

.content .hotels .contanier{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content .hotels .contanier .hotel{
    background-color: #eee;
    display: flex;
    border-radius: 7px;
}

@media (max-width: 768px){
    .content .hotels .contanier .hotel{
        flex-direction: column;
        gap: 15px;
    }
}

.content .hotels .contanier .hotel .image{
    width: 350px;
    height: 250px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.content .hotels .contanier .hotel .image img{
    width: 350px;
    height: 250px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.content .hotels .contanier .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

@media (max-width: 768px){
    .content .hotels .contanier .text{
        padding: 10px 20px;
    }
}

.content .hotels .contanier .text .title{
    font-size: 25px;
    font-weight: bold;
}


.content .hotels .contanier .text .info{
    display: flex;
    flex-direction: row-reverse;
}

.content .hotels .contanier .text .info .phone-number{
    background-color: var(--main-yellow-color);
    padding: 5px 20px;
    border-radius: 5px;
    margin: 0 15px;
}

@media (max-width: 768px){
    .content .hotels .contanier .text .info .phone-number{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.content .hotels .contanier .text .info .phone-number a{
    color: white;
    font-weight: bold;
}

@media (max-width: 768px){
    .content .hotels .contanier .text .info .phone-number a{
        font-size: 17px;
        text-align: center;
    }
}

.content .hotels .contanier .text .location{
    background-color: var(--main-yellow-color);
    padding: 5px 20px;
    border-radius: 5px;
    margin: 0 15px;
}

@media (max-width: 768px){
    .content .hotels .contanier .text .location{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.content .hotels .contanier .text .location a{
    color: white;
    font-weight: bold;
}

@media (max-width: 768px){
    .content .hotels .contanier .text .location a{
        font-size: 17px;
        text-align: center;
    }
}


.icons{
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-direction: row-reverse;
}

@media (max-width: 768px){
    .hotel{
        width: 350px;
    }
}

.content .hotels .contanier .text .title{
    border-left: 0;
    border-right: 0 solid var(--main-blue-color);
    padding-right: 0;
}