/* 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;
    }
}

/* 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 */

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 40;
    width: 100%;
    height: 100%;
    background-color: var(--main-blue-color);
    animation: hide 400ms ease 2500ms forwards;
}

.loader img:nth-child(2) {
    width: 280px;
    margin-left: 25px;
    transform: translateY(-20px);
}

@keyframes hide {
    100% {
        top: 100%;
    }
}

.loaderLogo {
    opacity: 0;
    animation: loader 1.5s linear 0s infinite forwards;
}

.loaderLogo img {
    width: 280px;
    height: 280px;
}

@keyframes loader {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.goTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 10px;
    z-index: 5;
}

@media (max-width: 768px){
    .goTop{
        right: 15px;
    }
}

.goTop span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #2b313b;
    box-shadow: 0px 0px 10px var(--main-blue-color);
    cursor: pointer;
    transition: 0.2s;
}

.goTop span:hover {
    background-color: #1F2A3E;
}

.goTop span:hover i {
    color: #fff;
}

.goTop span i {
    color: #fff;
    font-size: 1.5em;
}


/* End Global Rules */

/*********************************************************************************************/

/* Start Header */

.header {
    position: relative;
    z-index: 5;
    box-shadow: 0px 0px 5px #a9a8a8a6;
}

.fix {
    position: fixed;
    background-color: white;
    width: 100%;
    z-index: 200;
    transition: 0.5s;
}


.header .contanier {
    display: flex;
    flex-direction: column;
    padding-top: 0;
}


.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;
    z-index: 50;
}

.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;
    margin-right: 7px;
}

.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 .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 .header-bottom span.left{
    display: flex;
    align-items: baseline;
}




.header .contanier .user-profile {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-yellow-color);
    border-radius: 50%;
    color: black;
}

.header .contanier .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 */


/* Start Landing Page */

.landing-page {
    position: relative;
    background-image: url(../Image/Petrahome.png);
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-size: 100% 100vh;
    /* top: 145px;
    margin-bottom: 145px; */
}

@media (max-width: 768px) {
    .landing-page {
        min-height: 60vh;
    }
}

.landing-page::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing-page .text {
    background-color: rgb(31 42 62 / 70%);
    width: 800px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: white;
    position: relative;
    top: 70px;
}


@media (max-width: 768px) {
    .landing-page .text {
        width: 100%;
        top: 0;
    }
}

.landing-page .text .title {
    font-size: 70px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .landing-page .text .title {
        font-size: 50px;
    }
}

.landing-page .text p {
    width: 550px;
    font-size: 18px;
    line-height: 1.3;
    color: #ccc;
}

@media (max-width: 768px) {
    .landing-page .text p {
        width: 100%;
    }
}

.landing-page .text a {
    text-align: end;
    color: var(--main-yellow-color);
}

@media (max-width: 768px) {
    .landing-page .text a {
        text-align: start;
    }
}

.landing-page .contanier {
    position: relative;
    top: 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    .landing-page .contanier {
        display: none;
    }
}

.landing-page .contanier .center {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.landing-page .contanier .center .icons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
}

@media (max-width: 768px) {
    .icons{
        display: flex;
        align-items: baseline;
    }
}


.landing-page .contanier .center .icons i {
    gap: 10px;
    width: 50px;
    height: 50px;
    font-size: 25px;
    color: white;
    font-weight: bold;
    background-color: rgb(31 42 62 / 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.landing-page .contanier .center .search {
    width: 800px;
    border-radius: 50px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 30px;
        display: none !important;

}
.landing-page .contanier .center .search:focus{
    outline: none;
}




.landing-page .contanier .center .search i {
    position: absolute;
    z-index: 2;
    left: 54px;
    font-size: 18px;
}

.landing-page .contanier .center .search input {
    width: 700px;
    padding: 18px;
    border-radius: 50px;
    position: relative;
    padding-left: 55px;
    border: none;
}

.landing-page .contanier .center .search input:focus{
    outline: 0;
}

.landing-page .contanier .slider {
    width: 130px;
    height: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.landing-page .contanier .slider div {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50%;
}

.landing-page .contanier .slider div.active {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 1px solid white;
    border-radius: 50%;
}

.landing-page .chat {
    position: absolute;
    right: 10px;
    bottom: 20px;
    color: var(--main-yellow-color);
    font-size: 35px;
    padding-right: 15px;
    margin-right: auto;
}

@media (max-width: 768px) {
    .landing-page .chat {
        bottom: 0;
        top: 400px;
        z-index: 50;
    }
}


/* End Landing Page */

/*********************************************************************************************/

/* Start Top Destinations */

.top-destinations {
    padding-bottom: var(--padding-bottom);
    padding-top: var(--padding-top);
}

.top-destinations .contanier {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-destinations .contanier .destinations {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 768px) {
    .top-destinations .contanier .destinations {
        justify-content: center;
    }
}

.top-destinations .contanier .destinations .box {
    width: 300px;
    height: 350px;
    background-color: white;
    border-radius: 0 70px 0 70px;
    position: relative;
    box-shadow: 0px 0px 6px black;
}

.top-destinations .contanier .destinations .box .image {
    position: relative;
    width: 100%;
    height: 244px;
    border-radius: 0 70px 0 70px;
}

.top-destinations .contanier .destinations .box .image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    border-radius: 0 70px 0 0;
}

.top-destinations .contanier .destinations .box .image img {
    width: 100%;
    height: 244px;
    border-radius: 0 70px 0 0;
}

.top-destinations .contanier .destinations .box .top {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 25px;
    padding-right: 42px;
    color: white;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
}

.top-destinations .contanier .destinations .box .top .title {
    font-size: 30px;
    font-weight: bold;
}

.top-destinations .contanier .destinations .box .top i {
    font-size: 33px;
    cursor: pointer;
    transition: var(--main-transition);
}

.clicked {
    color: red;
}

.top-destinations .contanier .destinations .box .center {
    position: absolute;
    top: 130px;
    right: 14px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.top-destinations .contanier .destinations .box .center i{
    color: black;
}

.top-destinations .contanier .destinations .box .bottom {
    padding-left: 25px;
    padding-right: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.top-destinations .contanier .destinations .bottom p {
    width: 250px;
}

.top-destinations .contanier .destinations .bottom .rate {
    position: relative;
    right: -30px;
    bottom: -30px;
    display: flex;
}

.top-destinations .contanier .destinations .bottom .rate i {
    color: var(--main-yellow-color);
}

/* End Top Destinations */

/*********************************************************************************************/

/* Start Governorates */

.governorates {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    position: relative;
}

.governorates .governorates-back {
    background-image: url(../Image/Governorates\ Back.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
    position: absolute;
    z-index: -1;
    top: 111px;
}

@media (max-width: 768px) {
    .governorates .governorates-back {
        height: 100%;
        top: 212px;
    }
}

.governorates .contanier {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.governorates .contanier .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .governorates .contanier .content {
        flex-direction: column;
    }
}

.governorates .contanier .content .text .title {
    font-size: 50px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .governorates .contanier .content .text {
        text-align: center;
    }
}

.governorates .contanier .content .text p {
    font-size: 25px;
}


/* End Governorates */

/*********************************************************************************************/

/* Start Event */

.event {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}

.event .contanier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.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 {
        display: none;
    }
}

.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;
}

.event .contanier .curent-event .main-event .image img {
    width: 400px;
    height: 299px;
    border-top-right-radius: 30px;
}

.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 #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;
}

@media (max-width: 768px) {
    .event .contanier .content {
        width: 100%;
    }
}

.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;
}

@media (max-width: 768px) {
    .event .contanier .content .text .title{
        text-align: center;
    }
}

.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 App */

.app {
    padding: 50px 0 0 50px;
    background-color: var(--main-yellow-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

@media (max-width: 768px) {
    .app {
        padding: 30px;
    }
}

.app .image {
    position: relative;
    width: 350px;
    height: 400px;
    top: 50px;
    left: 150px;
}

@media (max-width: 768px) {
    .app .image {
        display: none;
    }
}


.app .image img {
    width: 350px;
    height: 400px;
}

.app .content {
    position: relative;
    width: 650px;
    background-color: #D9D9D9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start
}

.app .content .title {
    font-size: 25px;
    font-weight: bold;
}

.app .content .list ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.app .content .list ul li {
    display: flex;
    gap: 15px;
}

.app .content .download {
    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);
}

.app .content .download:hover {
    background-color: white;
    border: 2px solid var(--main-blue-color);
}

.app .content .download a {
    color: white;
    font-weight: bold;
}

.app .content .download:hover a {
    color: var(--main-blue-color);
}

/* End App */

/*********************************************************************************************/

/* Start Services */

.services {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}


.services .contanier {
    /* height: 287px; */
    display: flex;
    /* width: 100%; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 44px;
}

.services .contanier .serv-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 768px) {
    .services .contanier .serv-box {
        justify-content: center;
    }
}

.services .contanier .serv-box .box {
    width: 350px;
    height: 287px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #eeee;
    border-radius: 45px 45px 45px 0;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 32%);
    cursor: pointer;
}

.services .contanier .serv-box .box:hover {
    transform: translate(0, -14px);
    transition: var(--main-transition);
}

.services .contanier .serv-box .box .icon {
    padding-top: 50px;
}

.services .contanier .serv-box .box .icon i {
    font-size: 60px;
    color: var(--main-yellow-color);
}

.services .contanier .serv-box .box .title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 21px;
    padding-top: 37px;
    padding-bottom: 25px;
}

.services .contanier .serv-box .box .bottom {
    width: 100%;
    height: 66px;
    background-image: url(../Image/Group\ 197.png);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px;
    background-size: 124%;
    border-bottom-right-radius: 45px;
}

.services .contanier .box .bottom .number {
    font-size: 25px;
    font-weight: bold;
}

.services .contanier .serv-box .box .bottom .details {
    padding-right: 15px;
    position: relative;
    right: 15px;
}

.services .contanier .serv-box .box .bottom .details a {
    font-size: 22px;
    font-weight: bold;
    color: var(--main-blue-color);
    transition: var(--main-transition);
}

.services .contanier .serv-box .box .bottom .details a:hover {
    color: #edc041;
}

/* End Services */

/*********************************************************************************************/

/* Start Community Chat */

.community-chat {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}

.community-chat .contanier .one {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
}


@media (max-width: 768px) {
    .community-chat .contanier .one {
        flex-direction: column;
        text-align: center;
    }
}

.community-chat .contanier .one .image {
    width: 300px;
    height: 300px;
}

.community-chat .contanier .one .image img {
    width: 300px;
    height: 300px;
}

.community-chat .contanier .one p {
    width: 400px;
    font-size: 22px;
    font-weight: bold;
}

.community-chat .contanier .two {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row-reverse;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .community-chat .contanier .two {
        flex-direction: column;
        text-align: center;
    }
}

.community-chat .contanier .two .image {
    width: 300px;
    height: 300px;
}

.community-chat .contanier .two .image img {
    width: 300px;
    height: 300px;
}

.community-chat .contanier .two p {
    width: 400px;
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .community-chat .contanier .two p{
        width: 300px;
    }
}

.community-chat .contanier .three {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

.community-chat .contanier .three .join-now {
    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);
}

.community-chat .contanier .three .join-now a {
    color: white;
    font-weight: bold;
}

.community-chat .contanier .three .join-now:hover {
    border: 2px solid var(--main-blue-color);
    background-color: white;
}

.community-chat .contanier .three .join-now:hover a {
    color: var(--main-blue-color);
}

/* End Community Chat */

/*********************************************************************************************/

/* Start Footer */

.footer {
    padding-top: var(--padding-top);
    background-color: var(--main-blue-color);
    color: white;
    position: relative;
}


.footer .contanier {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer .contanier {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }
}

.footer .contanier .name-info {
    width: 500px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer .contanier .name-info {
        width: 300px;
        flex-direction: column;
    }
}

.footer .contanier .name-info .logo img {
    width: 200px;
    height: 200px;
}

.footer .contanier .name-info .info {
    font-size: 15px;
    line-height: 1.3;
}

.footer .contanier .services {
    width: 300px;
}

.footer .contanier .rigth-side {
    display: flex;
}

@media (max-width: 768px) {
    .footer .contanier .rigth-side {
        flex-direction: column;
    }
}

.footer .contanier .services .title {
    font-size: 25px;
    font-weight: bold;
}

.footer .contanier .services ul {
    padding: 0;
}

.footer .contanier .services ul li {
    margin-bottom: 5px;
    transition: var(--main-transition);
}

.footer .contanier .services ul li:hover {
    transform: translate(5px, 0px);
}

.footer .contanier .services ul li:hover i {
    color: var(--main-yellow-color);
}

.footer .contanier .services ul li:hover a {
    color: var(--main-yellow-color);
}

.footer .contanier .services ul li a {
    color: white;
}

.footer .contanier .services .footer .contanier .top-destinations {
    width: 300px;
}

@media (max-width: 768px) {
    .footer .contanier .top-destinations {
        padding: 0;
    }
}

.footer .contanier .top-destinations .title {
    font-size: 25px;
    font-weight: bold;
}

.footer .contanier .top-destinations ul {
    padding: 0;
}

.footer .contanier .top-destinations ul li {
    margin-bottom: 5px;
    transition: var(--main-transition);
}

.footer .contanier .top-destinations ul li:hover {
    transform: translate(5px, 0px);
}

.footer .contanier .top-destinations ul li:hover i {
    color: var(--main-yellow-color);
}

.footer .contanier .top-destinations ul li:hover a {
    color: var(--main-yellow-color);
}


.footer .contanier .top-destinations ul li a {
    color: white;
}


/* 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 */


/* Start Scroll */

.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* End Scroll */

/* Start Learn More */

.about-jo {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-top);
    background-color: #e7e7e785;
}

.about-jo .contanier .title {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-jo .contanier .bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 768px) {
    .about-jo .contanier .bottom-section{
        flex-direction: column;
    }
}

.about-jo .contanier .bottom-section p {
    line-height: 1.5;
    font-weight: bold;
    font-size: 17px;
    width: 600px;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .about-jo .contanier .bottom-section p{
        width: 300px;
    }
}

.about-jo .contanier .bottom-section .logo {
    width: 400px;
    height: 500px;
}

.about-jo .contanier .bottom-section .logo img {
    width: 400px;
    height: 400px;
}

/* End Learn More */

/* Start Contact */

.landing-page-contact {
    position: relative;
    background-image: url(../Image/Destination\ 2.jpg);
    background-repeat: no-repeat;
    width: 100%;
    min-height: 50vh;
    background-position: center;
    background-size: 100% 50vh;
}

@media (max-width: 768px) {
    .landing-page-contact {
        z-index: 0;
    }
}

.landing-page-contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing-page-contact .contanier {
    width: 100%;
    height: 50vh;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page-contact .contanier .title {
    font-size: 70px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

@media (max-width: 768px) {
    .landing-page-contact .contanier .title {
        font-size: 50px;
    }
}

.contact {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-top);
    position: relative;
    background-color: #e7e7e785;
}

.contact .contanier {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .contact .contanier {
        flex-direction: column;
    }
}

.contact .contanier .left {
    display: flex;
    flex-direction: column;
}

.contact .contanier .left .cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact .contanier .left .info {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.contact .contanier .left .info i {
    color: white;
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.contact .contanier .left .info a {
    color: black;
}

.contact .contanier .left .location-map {
    width: 550px;
    height: 350px;
    border-radius: 10px;
}


.contact .contanier .left .location-map iframe {
    width: 550px;
    height: 350px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact .contanier .left .location-map {
        width: 350px;
    }

    .contact .contanier .left .location-map iframe {
        width: 350px;
    }
}

.contact .right form {
    display: flex;
    flex-direction: column;
    width: 450px;
    gap: 10px;
    color: white;
}

@media (max-width: 768px) {
    .contact .right form {
        width: 350px;
    }
}

.contact .right form label {
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    font-size: 27px;
    border-left: 5px solid var(--main-blue-color);
    padding-left: 5px;
}


.contact .right form input {
    padding: 7px;
    background-color: rgb(31 42 62 / 50%);
    border: 0;
    position: relative;
    color: white;
}

.contact .right form input:focus {
    outline: none;
}

.contact .right form input:not(:last-child) {
    border-left: 5px solid var(--main-blue-color);
}


.contact .right form textarea {
    max-width: 450px;
    border-left: 5px solid var(--main-blue-color);
    border: 0;
    border-left: 5px solid var(--main-blue-color);
    position: relative;
    background-color: rgb(31 42 62 / 50%);
    color: white;
    padding: 7px;
}

.contact .right form textarea:focus {
    outline: none;
}


.contact .right form input[type="submit"] {
    width: 180px;
    border-radius: 6px;
    background-color: var(--main-blue-color);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
}

/* End Contact */


.change {
    background-color: var(--main-blue-color);
    width: fit-content;
    padding: 10px 30px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    margin-bottom: 20px;
}


/* Start scrolled */

.js-scroll {
    opacity: 0;
}

.js-scroll.scrolled {
    opacity: 1;
}

.scrolled.fade-left {
    animation: fadeleft 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-right {
    animation: faderight 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-top {
    animation: fadetop 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-btm {
    animation: fadebtm 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-top {
    animation: fadetop 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-btm {
    animation: fadebtm 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fadeleft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes faderight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadetop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadebtm {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* End scrolled */

/* Start btmAni */

.btmAni20002 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1s forwards;
}

.btmAni25002 {
    opacity: 0;
    transform: translateY(200px);
    animation: btmAni 800ms cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s forwards;
}


@keyframes btmAni {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End btmAni */


.favorite-container{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
/* ######################################################################## */
       /* community-chat */
#messages{
    position: relative;
    left:0;
    top:0;
    width:100%;
    height:calc( 100% - 50px );

    overflow-y:auto;
    padding:65px 10px;
    box-sizing: border-box;
}
#sendMsg{
    position: fixed;
    left:0;
    bottom:0;
    width: 100%;
    height:50px;
    background:#AAA;
}
#msgTxt{
    width:calc(100% - 100px);
    height:100%;
    padding-left:10px;
    box-sizing: border-box;
}
#msgTxt:focus{
    outline: 0;
}
#msgBtn{
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background-color: var(--p-color);
    outline: 0;
    border: 1px solid #907878;
    text-transform: uppercase;
    font-size: 20px;
}
.outer{
    width:100%;
    margin-top:10px;
    display:flex;
    
}
#inner{
    padding:10px;
    box-sizing: border-box;
    border-radius:10px;
}
.me{
    background:var(--main-yellow-color);
    color:#fff;
}
.notMe{
    background:var(--main-blue-color);
    color:white;
}
#dltMsg{
font-size: small;
    padding: 2px;
    margin: 0;
}


.favorite-container img{
    width: 100%;
    height: 50%;
}
