/* 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;
}

body,html{
    direction: rtl;
}

/* 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;
    }
}

/* End Contanier */

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;
}

/* Start Mage Menu */

.menu-icon{
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    /* position: fixed; */
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon{
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    display: none;
}

.menu-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.menu-items ul {
    list-style: none;
    padding: 0;
    margin: 20% 0 0 0;
    text-align: center;
}

.menu-items ul li {
    margin-bottom: 20px;
}

.menu-items ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.menu-items ul li a:hover {
    color: #00bcd4;
}

.close-icon{
    color: white;
}

/* End Mage Menu */

/* End Global Rules */

.header{
    z-index: 50;
}

.header .contanier .header-bottom .nav-bar ul li a::before{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    right: 0;
    background-color: var(--main-yellow-color);
    bottom: -1px;
    transition: var(--main-transition);
}

form label{
    border-left: 0 !important;
    padding-right: 5px;
    border-right: 5px solid var(--main-blue-color);
}

form input{
    border-left: 0 !important;
    border-right: 5px solid var(--main-blue-color) !important;
}

form textarea{
    border-left: 0 !important;
    border-right: 5px solid var(--main-blue-color) !important;
}

.event .contanier .curent-event .main-event .place{
    padding-right: 20px !important;
    padding-bottom: 20px;
}

.other-event .contanier .curent-event .main-event .place{
    padding-right: 20px !important;
}

.content .contanier .title{
    border-left: none;
    border-right: 12px solid var(--main-blue-color) ;
    padding-right: 10px;
}

.content .contanier .box-of-description .description{
    border-left: none;
    border-right: 12px solid var(--main-blue-color);
    padding-right: 10px;
}

.toggle {
    left: 15px;
    right: auto;
}

.all-boxes .box .content .fa-heart{
    left: 10px;
    right: auto;
}

.place-container>h1{
    padding-right: 5px;
    border-right: 5px solid var(--main-yellow-color);
    border-left: none;
}

.info .contanier p{
    padding-right: 5px;
    border-left: none;
    border-right: 7px solid var(--main-blue-color);
}

.top .special-heading+p {
    letter-spacing: 0;
}
.fixed {
    position: fixed;
    top: 130px;
    right: 675px;
    background: white;
    z-index: 90;
    margin-left: 100px;
    margin-top: 40px;
}

/* .map {
    border-left: 4px solid var(--main-blue-color);
    width: 50%;
    position: relative;
    height: 450px;
    border-right: 0;
} */

.photo .image img {
    width: 50%;
    height: 450px;
    border-right: 4px solid var(--main-blue-color);
    border-left: 0;
}

.about-jo .contanier .bottom-section{
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .about-jo .contanier .bottom-section{
        flex-direction: column;
    }
}

.content .slider{
    box-shadow: -4px 0 4px #a9a8a8a6;
}

.content .hotels .contanier .text .info{
    flex-direction: row;
}

.content .slider .slid ul li.active::before{
    border-radius: 0 8px 8px 0;
    right: auto;
    left: 0;
}

.services .contanier .serv-box .box .bottom{
    flex-direction: row-reverse;
}

.app .image {
    right: 150px;
}

.landing-page .contanier .center .search i{
    position: absolute;
    z-index: 2;
    right: 30px;
    font-size: 18px;
}

.landing-page .contanier .center .search input{
    width: 700px;
    padding: 18px;
    border-radius: 50px;
    position: relative;
    padding-right: 55px;
    border: none;
}

.header .contanier .header-top .lang{
    margin-left: 7px;
}

.drop a .lang{
    margin-left: 7px;
    margin-right: auto;
}

/*********************************************************************************************/