
html{
    scroll-behavior: smooth;
}
body{
    direction: rtl;

}
a{
    outline: none !important;
    text-decoration: none ;
}
.hr-sections{
    height: 3px;
    background: #f82249;
    width: 85%;
    margin: 2rem auto 0;
}
/*-------------*/
/*---Scroll-----*/
/*-------------*/
::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-track{
    background: #0a112c;
}

::-webkit-scrollbar-thumb{
    background: #f82249;
    border-radius: 50px;
}
/*-------------*/
/*---Btn Up-----*/
/*-------------*/
.btnUpTop{
    position: fixed;
    right: -50px;
    bottom: -50px;
    z-index: 99999;
    background: #f82249;
    color: #fff;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0;
    transition: all 0.4s;
    animation: btntopicon 1.8s  ease-in-out infinite alternate-reverse both;
}
.btnUpTop i{
    font-size: 18px;
}
@keyframes btntopicon {
    0%{
        transform: translateY(-7px);
    }
    100%{
        transform: translateY(7px);
    }
}
.btnUpTop:hover{
    background: #030611;
}
.btnUpTop.show{
    bottom: 20px;
    right: 20px;
}


/*--------------*/
/*--modalLogin---*/
/*--------------*/
#modalLogin {
    padding: 0;
}
#modalLogin .modal-dialog{
    max-width: 600px;
    transform: translate(0, 10%);
}
#modalLogin .modal-content{
    border-radius: 0;
    background: transparent !important;
}
#modalLogin .modal-body{
    padding: 1rem;
    background: #fff;
    overflow-y: auto;
    max-height: 650px;
}
#modalLogin .modal-header{
    padding: 0 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#modalLogin .close{
    opacity: 0.9;
    color: #000;
    transition: 0.3s;
    padding: 0;
    margin: 0;
    font-size: 20px;
    cursor: pointer;
    text-shadow: 0 1px 0 #000;
}
#modalLogin .close:hover{
    opacity: 1;
}
#form-modalLogin{
    padding: 1rem;
}
#btnlogingoogle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border: 1px solid #f82249;
    width: 80%;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    color: #080f2b;
    font-size: 18px;
    font-weight: 600;
}
#form-modalLogin h2{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #080f2b;
}
#input-modalLogin, #select-modalLogin{
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: #060c22;
    background-color: color-mix(in srgb, #fff, transparent 50%);
    border-color: color-mix(in srgb, #060c22, transparent 80%);
    margin-bottom: 1.5rem;
    height: 40px;
    text-align: right;
}
#select-modalLogin{
    padding: 5px 15px;
    width: 70%;
}
#select-modalLogin:last-child{
    width: 30%;
    padding: 0;
}
#input-modalLogin:focus, #select-modalLogin:focus{
    border-color: #f82249;
}
#btn-modalLogin{
    color: #fff;
    background: #f82249;
    border: 0;
    padding: 10px 45px;
    transition: 0.4s;
    border-radius: 1px;
}
#btn-modalLogin:hover{
    background: color-mix(in srgb, #f82249, transparent 20%);
}

#modalLogin #nav-tab{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    text-align: center;
}

#modalLogin #btn-tab{
    /* padding: 10px 100px; */
    color: #080f2b;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid #fff;
    transition: 0.5s;
    margin: 0;
    width: 50%;
}
#modalLogin #btn-tab.active{
    /* background: #f82249; */
    border-bottom: 2px solid #f82249;
}

/*--------------*/
/*----Navbar------*/
/*--------------*/
#nav{
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 2px 2px 20px #00000017;
}
/* #nav::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #0e1b4d;
    transition: all 0.3s ease-in-out 0s;
} */
#nav .container{
    max-width: 1350px;
}
 #logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}
#nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #140407c5;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    padding: 6px 10px;
}
#nav-item:hover{
    color: #f82249;
}
#nav-item::before{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #f82249;
    transition: all 0.3s ease-in-out 0s;
}
#nav-item:hover::before{
    width: 100%;
}
#dropdown-Properties .dropdown-menu{
    border: 0;
    padding: 0;
    top: 135%;
    min-width: 12rem;
    border-radius: 0;
}
#nav-item-drop{
    color: rgba(0, 0, 0, .4);
    font-size: 12px;
    margin-bottom: 10px;
    padding: 0.25rem;
    font-weight: 400;
    border: none;
    /* padding: 10px 1.3rem; */
    width: 100%;
    border-radius: 0;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    padding: 6px 10px;
    transition: 0.4s;
}
#nav-item-drop:hover{
    color: #000;
}
/* #nav-item-drop::before{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #f82249;
    transition: all 0.3s ease-in-out 0s;
}
#nav-item-drop:hover::before{
    width: 100%;
} */
#book-nav{
    color: #fff;
    padding: 10px 22px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border-top-right-radius: 0;
    border: none;
    border-bottom: 2px solid #060c22;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    line-height: 1;
    font-size: 13px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #060c22;
    border-color: #060c22;
}

#btn-toggler{
    background: transparent !important;
    border: none;
    border-radius: 0;
    color: #030611;
    font-size: 14px;
    /* display: flex; */
    border: 1px solid #f82249;
    align-items: center;
}
#btn-toggler:active{
    color: #f82249;
}
#btn-toggler i{
    font-size: 24px;
}



/*-----------------*/
/*---Modal Video---*/
/*-----------------*/
/* #modalvideo {
    background: #060c22cb;
}
#modalvideo .modal-dialog{
    max-width: 90vw;
    margin: 0.5rem auto;
}
#modalvideo .modal-content{
    background: transparent !important;
}
#modalvideo .modal-header{
    padding: 0.5rem 1rem;
    border: none;
    align-items: center;
}
#modalvideo h5{
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
#modalvideo .close{
    opacity: 0.9;
    color: #fff;
    transition: 0.3s;
    padding: 0;
    margin: 0;
    font-size: 20px;
    cursor: pointer;
    text-shadow: 0 1px 0 #f82249;
}
#modalvideo .close:hover{
    opacity: 1;
    color: #f82249;
}
#modalvideo .modal-body {
    padding: 1.5rem 0.5rem;
}
#modalvideo iframe{
    width: 100%;
    height: 80vh;
    margin: auto;
} */


/*--------------*/
/*--modalAqar---*/
/*--------------*/
#modalAqar {
    padding: 0;
}
#modalAqar .modal-dialog{
    max-width: 1000px;
    transform: translate(0, 10%);
}
#modalAqar .modal-content{
    border-radius: 0;
    background: transparent !important;
}
#modalAqar .modal-body{
    padding: 1rem;
    background: #fff;
    overflow-y: auto;
    max-height: 650px;
}
#modalAqar .modal-header{
    padding: 0 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#modalAqar .close{
    opacity: 0.9;
    color: #000;
    transition: 0.3s;
    padding: 0;
    margin: 0;
    font-size: 20px;
    cursor: pointer;
    text-shadow: 0 1px 0 #000;
}
#modalAqar .close:hover{
    opacity: 1;
}
#form-modalAqar{
    padding: 1rem;
}
#btnlogingoogle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border: 1px solid #f82249;
    width: 80%;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    color: #080f2b;
    font-size: 13px;
    font-weight: 600;
}
#form-modalAqar h2{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #080f2b;
}
#input-modalAqar{
    position: relative;
    padding-left: 60px;
}
#input-location-formAqar i{
    position: absolute;
    top: 25%;
    color: #060c22;
    left: 35px;
}
#input-modalAqar, #select-modalAqar{
    font-size: 14px;
    padding: 10px 15px;
    font-weight: 600;
    box-shadow: none;
    border-radius: 0;
    color: #060c22;
    background-color: color-mix(in srgb, #fff, transparent 50%);
    border-color: color-mix(in srgb, #060c22, transparent 80%);
    margin-bottom: 1.5rem;
    height: 50px;
    border-radius: 8px;
    background: #edf0ff;
}
#input-modalAqar{
    position: relative;
    padding-left: 60px;
}
#select-modalAqar{
    padding: 5px 15px;
}
#select-modalAqar option{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #0e1b4d;
    min-height: 30px;
}
#select-modalAqar option:hover{
    background-color: #137310;
}
#input-modalAqar:focus, #select-modalAqar:focus{
    border-color: #f82249;
}
#btn-modalAqar{
    color: #fff;
    background: #f82249;
    border: 0;
    padding: 10px 45px;
    transition: 0.4s;
    border-radius: 1px;
}
#btn-modalAqar:hover{
    background: color-mix(in srgb, #f82249, transparent 20%);
}

#modalAqar #nav-tab{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    text-align: center;
}

#modalAqar #btn-tab{
    /* padding: 10px 100px; */
    color: #080f2b;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid #fff;
    transition: 0.5s;
    margin: 0;
    width: 50%;
}
#modalAqar #btn-tab.active{
    /* background: #f82249; */
    border-bottom: 2px solid #f82249;
}
/*------------*/
/*----Home----*/
/*------------*/
#home {
    height: 100vh;
    background: url(../img/analog-landscape-city-with-buildings.jpg) center center/cover no-repeat fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}
#home:before {
    content: "";
    background: #060c224d;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#home *{
    z-index: 1;
}
#home h2{
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
}
/* @media (min-width:768px) {
    #home h2{
        max-width: 50%;
    } 
} */
#home h2 span{
    margin-bottom: 2rem;
    color: #f82249;
}
#home p{
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 2rem;
}
/* #home .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#f82249 50%, rgba(101, 111, 150, 0.15) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}
#home .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#home .play-btn:hover::after {
    border-left: 15px solid #f82249;
    transform: scale(20);
}
#home .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation: pulsate-btn 2s;
    animation-iteration-count: infinite;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, #f82249, transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
#home .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}
@keyframes  pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
} */

#home-btn{
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    animation-delay: 0.8s;
    border: none;
    text-decoration: none;
    background: #f82249;
}
#home-btn:hover{
    background: #f74162;
    color: #fff;
    outline: none;
    text-decoration: none;
}

/*------------------*/
/*---Download App---*/
/*------------------*/
#downApp {
    background-color: #f6f7fd;
    overflow: clip;
    padding: 60px 0 0 0;
    scroll-margin-top: 60px;
}
#downApp .container{
    max-width: 1400px;
}
#downApp h2{
    color: #0e1b4d;
    font-family: "Raleway", sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
#downApp p{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #060c22;
    font-family: "Raleway", sans-serif;
    margin-bottom: 1rem;
}
#downApp p a{
    color: #f82249;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    margin-bottom: 1rem;
    text-decoration: underline 1px solid #f82249;
}
.downloadapplecation-img img{
    max-width: 100%;
}

/*--------------------*/
/*--typeofproperties--*/
/*--------------------*/
#typeofproperties{
    overflow: clip;
    padding: 60px 0 0;
    scroll-margin-top: 60px;
}
#typeofproperties .container{
    max-width: 1400px;
    padding: 0;
}
#typeofproperties a{
    text-decoration: none !important;
}
#title-typeofproperties{
    color: #0e1b4d;
    font-family: "Raleway", sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 7px;
    margin-bottom: 1.5rem;
    text-align: right;
}
#card-typeofpropert{
    border: none;
    border-radius: 10px;
}

#topimgcard-typeofpropert{
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    max-height: 200px;
    height: 100%;
    box-shadow: 0px 5px 30px #0a112c5e;
}
#topimgcard-typeofpropert::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(1turn, #060c22ec, #f822491f 200px);
    z-index: 9;
}
#topimgcard-typeofpropert img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s;
}
#card-typeofpropert:hover img{
    transform: scale(1.05);
}
#cardbody-typeofpropert{
    position: relative;
    padding: 3rem 0;
}
#cardbody-typeofpropert .dinamic-typeofpropert {
    position: absolute;
    top: -44%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 75%;
    width: 100%;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0px 5px 30px #0a112c5e;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    border-radius: 10px;
    transition: 0.2s;
}
#cardbody-typeofpropert .dinamic-typeofpropert h2{
    font-size: 25px;
    font-weight: 600;
    color: #0a112c;
    text-transform: uppercase;
}
#card-typeofpropert:hover .dinamic-typeofpropert{
    top: -55%;
}

/* -------------------- */
/* ---search-compound----*/
/* ------------------ */
#search-compound{
    background-color: #fff;
    overflow: clip;
    padding: 60px 0 40px 0;
    scroll-margin-top: 60px;
    text-align: right;
}
#search-compound a{
    text-decoration: none !important;
}
#search-compound .container{
    max-width: 1400px;
}
#title-search-compound{
    color: #0e1b4d;
    font-family: "Raleway", sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 7px;
    margin-bottom: 1.5rem;
}
#search-compound #compound{
    margin-bottom: 2rem;
    transition: 0.3s;
}
#search-compound #compound:hover{
    box-shadow: 0px 3px 6px #39269433 !important;
}
#search-compound #compound #image{
    overflow: hidden;
    border-top-right-radius: 8px;
    position: relative;
}
#search-compound #compound #image img{
    transition: 0.3s;
    width: 100%;
}
#search-compound #compound #image span{
    position: absolute;
    right: 0;
    color: white;
    background-color: #39269470;
    border-radius: 8px 0px 0px 8px;
    padding: 10px 21px;
}
#search-compound #content{
    padding: 8px 1rem;
    text-align: right;
}
#search-compound .stars-heart{
    padding: 0 20px;
    margin-top: 0.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    z-index: 9;
}
#icon-star{
    color: #ffc31d;
}
#search-compound i.heart {
    cursor: pointer;
    color: #f82249;
}
#search-compound #content h3{
    letter-spacing: 0px;
    color: #313033;
    margin-bottom: 10px;
    min-height: 66px;
    max-height: 66px;
    font-size: 20px;
}
#search-compound #content p.details{
    color: #313033;
    font-size: 12px;
}
#search-compound #details{
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-compound .box{
    margin: 0.245rem;
}
#search-compound .box h4{
    color: #313033;
    font-size: 12px;
}
#search-compound .box p{
    color: #000820;
}
#search-compound #details .box p img{
    width: 25px;
    height: 25px;
}
#search-compound p.price{
    color: #392694;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}






/*--------------*/
/*----propertiess----*/
/*--------------*/
#propertiess{
    background-color: #f6f7fd;
    /* overflow: clip; */
    padding: 60px 0 40px 0;
    scroll-margin-top: 60px;
    text-align: right;
}
#propertiess .container{
    max-width: 1400px;
}
#propertiess a{
    text-decoration: none !important;
}
#propertiess .section-header {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}
#propertiess .section-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 5px;
    background: #f82249;
    bottom: 0;
    left: calc(50% - 25px);
}
#propertiess #h2-propertiess{
    font-size: 36px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}
#propertiess #p-propertiess{
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #9195a2;
}
#propertiess #nav-tab{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    text-align: center;
}
#propertiess #btn-tab{
    color: rgba(0, 0, 0, .4);
    font-size: 12px;
    margin-bottom: 10px;
    padding: 0.25rem;
    font-weight: 400;
    border: none;
    width: 100%;
    border-radius: 0;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    padding: 6px 10px;
    transition: 0.4s;
}
#propertiess #btn-tab:hover{
    color: #000;
}
#propertiess #btn-tab.active{
    color: #000;
    background-color: transparent !important;
}

#propertiess #compound{
    margin-bottom: 2rem;
    transition: 0.3s;
}
#propertiess #compound:hover{
    box-shadow: 0px 3px 6px #39269433 !important;
}
#propertiess #compound #image{
    overflow: hidden;
    border-top-right-radius: 8px;
    position: relative;
}
#propertiess #compound #image img{
    transition: 0.3s;
    width: 100%;
}
#propertiess #compound #image span{
    position: absolute;
    right: 0;
    color: white;
    background-color: #39269470;
    border-radius: 8px 0px 0px 8px;
    padding: 10px 21px;
}
#propertiess #content{
    padding: 8px 1rem;
    text-align: right;
}
#propertiess .stars-heart{
    padding: 0 20px;
    margin-top: 0.5rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    z-index: 9;
}
#propertiess i.heart {
    cursor: pointer;
    color: #f82249;
}
#propertiess #content h3{
    letter-spacing: 0px;
    color: #313033;
    margin-bottom: 10px;
    min-height: 66px;
    max-height: 66px;
    font-size: 20px;
}
#propertiess #content p.details{
    color: #313033;
    font-size: 12px;
}
#propertiess #details{
    display: flex;
    align-items: center;
    justify-content: center;
}

#propertiess .box{
    margin: 0.245rem;
}
#propertiess .box h4{
    color: #313033;
    font-size: 12px;
}
#propertiess .box p{
    color: #000820;
}
#propertiess #details .box p img{
    width: 25px;
    height: 25px;
}
#propertiess p.price{
    color: #392694;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

#btn-propertiesswhatsapp{
    font-size: 12px;
    font-weight: 600;
    padding: 0.6rem 0.5rem;
    border-radius: 7px;
    color: #23262a;
    background-color: #e8f7e8;
    border: 1px solid #137310;
    margin: 20px;
    margin-top: 0.2rem;
}
#btn-propertiesswhatsapp:focus,
#btn-propertiessemail:focus{
    box-shadow: none;
}
#btn-propertiessemail{
    font-size: 10px;
    font-weight: 600;
    padding: 0.6rem 0.5rem;
    border-radius: 7px;
    color: #23262a;
    background-color: #f7e8eb;
    border: 1px solid #731020;
    margin: 5px 5px 20px;
    margin-top: 0.2rem;
    /* display: flex;
    align-items: center; */
}
#btn-propertiessemail i{
    color: #f82249;
    font-size: 18px;
}
#btn-propertiesswhatsapp svg{
    fill: #137310;
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    min-height: 1.5rem;
}

#btns-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
}
#btns-block h2{
    font-size: 16px;
    font-weight: 600;
    color: #08102c;
}
#btns-block ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

/*----------------*/
/*--Search with contry--*/
/*----------------*/
.searchwith-contry{
    overflow: clip;
    padding: 60px 0 40px 0;
    scroll-margin-top: 60px;
    font-family: "Raleway", sans-serif;
    background-color: #f6f7fd;
    text-align: right;
}
.searchwith-contry .container{
    max-width: 1400px;
    padding: 0;
}
#title-searchwithContry{
    font-size: 36px;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
#cardSearchwith-contry{
    position: relative;
    overflow: hidden;
    border: 0;
}
#topimgSearchwith-contry{
    position: relative;
    overflow: hidden;
}
#topimgSearchwith-contry img{
    width: 100%;
    /* height: 500px; */
}
#dinamic-searchwith-contry {
    position: absolute;
    top: 88%;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(1turn, #060c22, #060c22 200px);
    z-index: 9;
    box-shadow: 0px -5px 20px 29px #060c22;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}
#searchwith-contry .mySwiper-searchwithContry {
    padding: 1rem;
    box-shadow: 2px 5px 18px #e7eaff;
    background: #fff;
}

#btns-swip-searchwith-contry{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 300px;
    width: 100%;
    min-height: 60px;
    margin: auto;
}
#btns-swip-searchwith-contry .swiper-button-prev{
    top: 75%;
    right: 30%;
    background: #060c22;
    width: 35px;
    height: 35px;
    border-radius: 5px;
}
#btns-swip-searchwith-contry .swiper-button-next{
    top: 75%;
    left: 30%;
    background: #060c22;
    width: 35px;
    height: 35px;
    border-radius: 5px;
}
#btns-swip-searchwith-contry .swiper-button-prev::after,
#btns-swip-searchwith-contry .swiper-button-next::after{
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}







#about-us{
    background-color: #f6f7fd;
    overflow: clip;
    padding: 60px 0 40px 0;
    scroll-margin-top: 60px;
    font-family: "Raleway", sans-serif;
    text-align: right;
}
#about-us .container{
    max-width: 1300px;
    padding: 0;
}
#about-us h2{
    font-size: 25px;
    font-weight: 700;
    color: #080f2b;
    margin-bottom: 1rem;
    position: relative;
}
#about-us h2::before{
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #f82249;
    top: 110%;
    right: 0;
}
#about-us p{
    font-size: 15px;
    font-weight: 500;
    color: #080f2b;
    margin-bottom: 1rem;
}
#about-us ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
#about-us ul li{
    font-size: 15px;
    font-weight: 500;
    color: #080f2b;
    margin-bottom: 0.2rem;
}
#about-us ul li i{
    margin-left: 0.75rem;
    color: #f82249;
    font-size: 20px;
}
#btn-aboutus{
    color: #fff;
    padding: 16px 22px;
    margin: 0 0 0 15px;
    border: none;
    transition: all ease-in-out 0.3s;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    font-size: 13px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    gap: 0.75rem;
    background: #060c22;
    margin-top: 2rem;
}
#about-us img{
    width: 100%;
}









/*-------------------*/
/*------My Aqar------*/
/*-------------------*/
.myAqar {
    background: #2c255e;
    overflow: clip;
    padding: 60px 0 40px 0;
    scroll-margin-top: 60px;
    font-family: "Raleway", sans-serif;
    text-align: right;
}
.myAqar .container{
    max-width: 1400px;
}
.myAqar h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    position: relative;
}

.myAqar .myAqar-btn {
    display: inline-block;
    color: #0a112c;
    background-color: #f1f1f1;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 14.5px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;    
    border: 0;
    text-decoration: none;
}



/*-----------------*/
/*-----Contact-----*/
/*-----------------*/
#contact{
    color: #2f3138;
    background:#ffffff;
    padding: 60px 0;
    scroll-margin-top: 60px;
    overflow: clip;
}
#contact .container{
    max-width: 1400px;
}
#contact .section-title{
    margin: 1rem auto 2rem;
}
#contact .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}
#contact .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #f82249;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
#contact .section-title p {
    margin-bottom: 0;
    text-align: center;
}
#contact .info-item {
    padding: 20px 0 30px 0;
    box-shadow: 0px 0px 20px color-mix(in srgb, #2f3138, transparent 90%);
    margin-bottom: 0.5rem;
}

.contact .info-item i {
    color: #f82249;
    width: 56px;
    height: 56px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, #f82249, transparent 40%);
}
.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    color: #0e1b4d;
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}
.contact .form-contact {
    height: 100%;
    padding: 20px;
    box-shadow: 0px 0px 20px color-mix(in srgb, #060c22, transparent 90%);
}
.contact .form-contact #input-contact{
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: #060c22;
    background-color: color-mix(in srgb, #fff, transparent 50%);
    border-color: color-mix(in srgb, #060c22, transparent 80%);
    margin-bottom: 1.5rem;
    height: 50px;
}
.contact .form-contact #textarea-contact {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: #060c22;
    background-color: color-mix(in srgb, #fff, transparent 50%);
    border-color: color-mix(in srgb, #060c22, transparent 80%);
    margin-bottom: 1.5rem;
}
.contact .form-contact #input-contact:focus,
.contact .form-contact #textarea-contact:focus {
    border-color: #f82249;
}
.contact #btn-contact{
    color: #fff;
    background: #f82249;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}
.contact #btn-contact:hover{
    background: color-mix(in srgb, #f82249, transparent 20%);
}

/*---------------*/
/*----Footer----*/
/*---------------*/
.footer {
    color: #fff;
    background-color: #000820;
    font-size: 14px;
    padding: 60px 0 0;
    scroll-margin-top: 60px;
    overflow: clip;
    text-align: right;
    position: relative;
}
.footer .container{
    max-width: 1400px;
}
.footer .footer-top {
    background-color: color-mix(in srgb, #000820, white 5%);
    padding-top: 50px;
}
.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}
.footer .footer-about .logo span {
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
}
.footer .footer-contact p {
    margin-bottom: 5px;
}
.footer .footer-about p {
    font-size: 14px;
}
.footer .footer-links {
    margin-bottom: 30px;
}
.footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.footer h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #f82249;
    bottom: 0;
    right: 0;
}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.footer .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-links ul a {
    color: color-mix(in srgb, #fff, transparent 30%);
    display: inline-block;
    line-height: 1;
    transition: 0.3s;
}
.footer .footer-links ul a:hover {
    color: #f82249;
}

/*-----CopyRight-----*/
.footer .copyright {
    padding: 30px 0;
}
.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}
.footer .credits a{
    color: #f82249;
    font-size: 15px;
    font-weight: 600;
}
.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: color-mix(in srgb, #fff, transparent 90%);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
.footer .social-links a:hover {
    background: #f82249;
    text-decoration: none;
}

/*-----Home End-----*/

/*-----------------------*/
/*-----Aqar-Item-Page----*/
/*-----------------------*/
#aqaritemPage{
    padding: 150px 0 0;
    scroll-margin-top: 60px;
    /* overflow: clip; */
    /* text-align: right; */
}
#aqaritemPage .container{
    max-width: 1400px;
}
#aqaritemPage .carousel-item img{
    min-height: 600px;
}
#aqaritemPage .carousel-indicators{
    position: relative;
    bottom: auto;
    margin: 1rem auto auto;
    align-items: center;
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
}
#aqaritemPage .carousel-indicators li{
    width: 140px;
    height: 70px;
    margin-bottom: 6px;
    opacity: 1;
}
#aqaritemPage .carousel-indicators li.active{
    width: 200px;
}
#aqaritemPage .carousel-indicators li img{
    width: 100%;
    height: 100%;
    opacity: 0.5;
}
#aqaritemPage .carousel-indicators li.active img{
    opacity: 1;
}
#aqaritemPage #carouselbtn-prev,
#aqaritemPage #carouselbtn-next{
    font-size: 30px;
    color: #060c22;
    width: 40px;
    height: 40px;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}
#aqaritemPage #carouselbtn-prev:hover,
#aqaritemPage #carouselbtn-next:hover{
    opacity: 1;
}
#col-details-aqaritemPage h3{
    font-size: 25px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #08102c;
}
#col-details-aqaritemPage p.price{
    font-size: 17px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #08102c;
}
#col-details-aqaritemPage p.price span{
    font-size: 17px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #f82249;
    margin-right: 1rem;
    position: relative;
}
#col-details-aqaritemPage p.price span::before{
    content: "/";
    position: absolute;
    top: -6px;
    right: -13px;
    color: #060c22;
    font-size: 22px;
}
#col-details-aqaritemPage #details-facilities{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#col-details-aqaritemPage .box h4{
    color: #313033;
    font-size: 12px;
}
#col-details-aqaritemPage .box p{
    color: #313033;
    font-size: 13px;
    font-weight: 500;
}

#col-details-aqaritemPage #details-facilities svg{
    fill: #f82249;
}
#col-details-aqaritemPage h2{
    color: #313033;
    font-size: 12px;
}
#col-details-aqaritemPage p.sm-dis{
    color: #313033;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
}
#col-details-aqaritemPage ul{
    list-style: none;
    float: right;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}
#col-details-aqaritemPage ul li {
    font-size: 15.5px;
    font-weight: 400;
    color: #000;
    font-family: "Raleway", sans-serif;
    float: right;
    position: relative;
    width: 70%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    text-align: right;
}
#col-details-aqaritemPage .title-facilities{
    font-size: 16px;
    font-weight: 600;
    color: #0a112c;
    width: 150px;
    margin: 0 1rem 0 0.5rem;
}
#col-details-aqaritemPage .number{
    font-size: 16px;
    font-weight: 400;
    color: #030611;
    margin: 0 0.5rem;
}
#aqaritemPage #sm-feature h2{
    font-size: 25px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #08102c;
}
#aqaritemPage #sm-feature p{
    font-size: 16px;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #08102c;
}
#aqaritemPage #mabLocation h2{
    font-size: 25px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #08102c;
}
#aqaritemPage #mabLocation iframe{
    max-width: 650px;
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
}
#aqaritemPage #mabLocation-dis h2{
    font-size: 25px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    color: #08102c;
}
#aqaritemPage #mabLocation-dis p{
    font-size: 18px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
    color: #08102c;
}

/* ------------------------- */
/* -------articles--------- */
/* ------------------------- */
#articles{
    padding: 70px 0;
    scroll-margin-top: 70px;
    overflow: clip;
}
#articles h2{
    font-size: 25px;
    font-weight: 600;
    color: #060c22;
    font-family: "Raleway", sans-serif;
    text-align: right;
}
#articles #box{
    overflow: hidden;
    border-radius: 8px;
    background-color: white;
    transition: 0.3s;
    border: 1px solid #ccc;
    text-align: right;
    margin-bottom: 25px;
}
#articles #box:hover{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#articles #box #image{
    overflow: hidden;
}
#articles #box #image img{
    transition: 2s;
    width: 100%;
    max-width: 100%;
    height: 17rem;
}
#articles #box #image img:hover{
    transform: scale(1.1);
}
#articles #box #text{
    padding: 20px;
    position: relative;
    padding-bottom: 0;
}
#articles #box #text h2{
    color: #000000;
    font-size: 25px;
    margin-bottom: 20px;
}
#articles #box #text p.article{
    color: #858585;
}
#articles #box #text a#read{
    color: white;
    background-color: #606060;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 10px;
    display: block;
    width: fit-content;
    margin-right: auto;
}
#articles #box #text #time{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#articles #box #text #time p{
    color: #606060;
    font-size: 13px;
    margin-bottom: 10px;
}

/* ------------------------- */
/* -------article-details--------- */
/* ------------------------- */
#article-details{
    padding: 130px 0;
}
#article-details .container{
    max-width: 1350px;
}
#article-details #box{
    text-align: right;
}
#article-details #box img{
    max-width: 100%;
    margin-bottom: 20px;
}
#article-details #box h2{
    color: #f82249;
    font-family: "Raleway", sans-serif;
}
#article-details #box p{
    font-size: 17px;
    font-weight: 400;
    color: #030611;
}
#article-details .search-form form {
    background: #fff;
    border: 1px solid rgba(27, 47, 69, 0.2);
    padding: 3px 10px;
    position: relative;
    border-radius: 6px;
}

#article-details #input-blog {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

#article-details #input-blog:focus {
    box-shadow: none;
}

#article-details #btn-blogSearch {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #060c22;
    color: #fff;
    transition: 0.3s;
    border-radius: 6px 0 0 6px;
    line-height: 0;
}

#article-details #btn-blogSearch:focus {
    box-shadow: none;
}

#article-details #btn-blogSearch i {
    line-height: 0;
}

#article-details .sidebar-item {
    margin-top: 40px;
    text-align: right;
}

/* ------------------------ */
/* -------best-places---------- */
/* ------------------------ */
#best-places{
    padding: 70px 0;
}
#BP-hero{
    position: relative;
    background: url(../img/aqar6.jpg) center center / cover no-repeat;
    height: 31.5rem;
    margin-bottom: 25px;
}
#BP-hero::before{
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(128, 128, 128, 0) 50%, rgba(0, 0, 0, .45) 100%);
    pointer-events: none;
    left: 0;
    bottom: 0;
}
#BP-hero #text{
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 15px;
    align-items: flex-start;
    right: 15px;
    z-index: 2;
}
#BP-hero #text h2{
    color: white;
    margin-bottom: 15px;
}
#BP-hero #text p{
    margin: 0;
    color: white;
    font-size: 12px;
    display: flex;
    gap: 15px;
}
#BP-hero #text p span{
    color: white;
    background-color: rgb(26, 178, 26);
}
#best-places p.details-h{
    color: #606060;
    font-size: 18px;
    text-align: right;
}
#best-places p.details{
    color: #606060;
    font-size: 16px;
    text-align: right;
}
#best-places #box{
    text-align: right;
    margin-bottom: 20px;
}
#best-places #box h3{
    margin-bottom: 15px;
}
#best-places #box #image{
    overflow: hidden;
}
#best-places #box img{
    width: 100%;
    max-width: 100%;
    transition: 2s;
    height: 350px;
    margin-bottom: 5px;
}
#best-places #box img:hover{
    transform: scale(1.1);
}










/*-----------------*/
/*---MediaQuiry----*/
/*-----------------*/
@media (max-width:1025px) {
    #btns-hid{
        display: none;
    }
}

@media (max-width:992px) {
    #btn-toggler{
        display: flex;
    }
}
@media (max-width:768px) {
    #home h2{
        font-size: 40px;
    }
    
}
@media (max-width:450px) {
    #aqaritemPage .carousel-indicators li{
        width: 0;
        height: 0;
    }
    #aqaritemPage .carousel-indicators li.active{
        width: 20px;
        height: 0;
    }
    #aqaritemPage .carousel-item img{
        min-height: 350px;
    }
    #col-details-aqaritemPage ul li {
        width: 100%;
    }
}


