/* 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 Header */

/* .header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
    background-color: white;
} */

.header .contanier{
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

@media (max-width: 768px){
}

.header .contanier .header-top{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-bottom: 1px solid;
}


.drop {
    align-items: center;
    justify-content: center;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: row;
    background-color: var(--main-blue-color);
    padding: 0px 20px;
    border-radius: 8px;
    width: 90px;
}
.drop .dropMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    padding: 0 20px;
    position: absolute;
    top: calc(100% + 10px);
    background-color: var(--main-yellow-color);
    border-radius: 8px;
    font-weight: 500;
    width: 90px;
}
.drop a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.drop a .lang {
    width: 20px;
    -o-object-fit: contain;
    object-fit: contain;
}
.drop a .drop-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7px;
    transform: translateX(-5px);
    transition: 0.2s;
    height: 7px;
    margin-left: 11px;
}

.drop.active .dropMenu {
    display: flex;
}
.drop.active .drop-icon {
    transform: translateX(-5px) rotate(-90deg);
}

.header .contanier .header-top .lang{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 7px;
}

.header .contanier .header-top .lang i{
    font-size: 25px;
    color: var(--main-yellow-color);
}

.header .contanier .header-top .lang span{
    font-size: 20px;
}

.header .contanier .header-top .get-app{
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .contanier .header-top .get-app span{
    font-weight: bold;
}

.header .contanier .header-top .get-app i{
    color: var(--main-yellow-color);
}

.header .contanier .header-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .contanier .header-bottom .logo{
    width: 100px;
    height: 100px;
}

.header .contanier .header-bottom .logo img{
    width: 100px;
    height: 100px;
}

.header .contanier .header-bottom .nav-bar ul{
    display: flex;
    align-items: center;
    gap: 25px;
}


@media (max-width: 768px){
    .header .contanier .header-bottom .nav-bar{
        display: none;
    }
}

.header .contanier .header-bottom .nav-bar ul li a{
    color: black;
    position: relative;
    font-weight: bold;
    transition: var(--main-transition);
}

.header .contanier .header-bottom .nav-bar ul li a::before{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    background-color: var(--main-yellow-color);
    bottom: -1px;
    transition: var(--main-transition);
}

.header .contanier .header-bottom .nav-bar ul li a:hover::before{
    width: 100%;
}


.header .contanier .header-bottom .nav-bar ul li a.active{
    color: var(--main-yellow-color);
}

.header .contanier .header-bottom .nav-bar ul li a.active::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background-color: var(--main-yellow-color);
    bottom: -1px;
    transition: var(--main-transition);
}


.header .contanier .icons{
    display: flex;
    align-items: center;
    gap: 25px;
}

.header .contanier .icons .notifications{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .contanier .icons .notifications i{
    font-size: 25px;
    color: var(--main-yellow-color);
}

.header .contanier .icons .user-profile{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-yellow-color);
    border-radius: 50%;
}

.header .contanier .icons .user-profile i{
    font-size: 25px;
    border-radius: 50%;
}

.header .bar-icon{
    display: none;
}

@media (max-width: 768px){
    .header .bar-icon{
        display: block;
    }
}

/* End Header */

/*********************************************************************************************/

.location{
    width: 100%;
}

.location iframe{
    width: 100%;
}

/*********************************************************************************************/


/* start landing bage */
.landingBage {
    padding: 0;
    right: 0;
    height: 50vh;
    width: 100%;
    background-image: url(../Image/travelTips.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 30px 0 ;
}
.landingBage .container{
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    color: white;
}
.landingBage .container h1{
    font-weight: 800;
    font-size: 50px;
    text-align: center;
}
.landingBage .container h4{
    text-align: center;
    font-size: 40px;
}
.landingBage::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 45%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* end landing bage */
/* start travel tips */
.travelTips{
width: 100%;
background-color: var(--main-yellow-color);
padding: 30px 0;
}

    
.container.advices {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color:var(--main-blue-color);

}
@media(max-width:767px){
    .container.advices{
        max-width: 400px;
    }
}
.advice {
    position: relative;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
}

.advice .title {
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
}

.advice .content {
    display: none;
    padding: 15px;
    border-radius: 10px;
    background-color: #eee;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;

}
.advice .content ul{
    list-style-type:disc;
    padding: 15px;
    margin: 0;
}
.advice .content ul li{
    margin-bottom: 5px;
}
.toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #000000;
}

.toggle::before {
    content: "+";
}

.toggle.open::before {
    content: "-";
}

/* end travel tips */

/*********************************************************************************************/


/* End Footer */

/*********************************************************************************************/

/* Start Animation */

@keyframes left-move{
    50% {
        left: 0;
        width: 12px;
        height: 12px;
    }
    100%{
        border-radius: 0;
        left: 0;
        width: 50%;
        height: 100%;
    }
}

@keyframes right-move {
    50%{
        right: 0;
        width: 12px;
        height: 12px;
    }
    100%{
        border-radius: 0;
        right: 0;
        width: 50%;
        height: 100%;
    }
}

/* End Animation */