/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family:  DroidKufi-Regular, "PT Serif", Times, "Times New Roman", Georgia, serif;
    font-weight: 700;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: bold;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header-contact {
    background: url(../img/seablue.gif) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: #1DA1F2;
    background: #1DA1F2;
}

.twitter:hover {
    /* تغيير الألوان لتويتر */
    border-color: #1DA1F2 !important;
    background: #1DA1F2  !important;
}

.facebook:hover {
    /* تغيير الألوان لفيسبوك */
    border-color: #000  !important;
    background: #000  !important;
}

.youtube:hover {
    /* تغيير الألوان ليوتيوب */
    border-color: #FF0000  !important;
    background: #FF0000  !important;
}

.linkedin-in:hover {
    /* تغيير الألوان للينكدإن */
    border-color: #0A66C2  !important;
    background: #0A66C2  !important;
}

.instgram:hover {
    /* تغيير الألوان لإنستغرام */
    border-color: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* :: 5.0 Hero Slides Area */
.hero-area,
.hero-post-slides {
    position: relative;
    z-index: 1; }

.single-hero-post {
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 3;
    overflow: hidden; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-hero-post {
        height: 690px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-hero-post {
        height: 600px; } }
@media only screen and (max-width: 767px) {
    .single-hero-post {
        height: 650px; } }
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .single-hero-post {
        height: 500px; } }
.single-hero-post .slide-img {
    position: absolute;
    width: 100%;
    height: auto;
    /*z-index: -10;*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
.single-hero-post .hero-slides-content {
    position: relative;
    z-index: 1;
    margin-top: 132px; }
@media only screen and (max-width: 767px) {
    .single-hero-post .hero-slides-content {
        margin-top: 112px; } }
.single-hero-post .hero-slides-content h2 {
    font-size: 45px;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-hero-post .hero-slides-content h2 {
        font-size: 36px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-hero-post .hero-slides-content h2 {
        font-size: 30px; } }
@media only screen and (max-width: 767px) {
    .single-hero-post .hero-slides-content h2 {
        font-size: 24px; } }
.single-hero-post .hero-slides-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 50px; }
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-hero-post .hero-slides-content p {
        font-size: 18px; } }
@media only screen and (max-width: 767px) {
    .single-hero-post .hero-slides-content p {
        font-size: 16px; } }
@media only screen and (max-width: 767px) {
    .single-hero-post .hero-slides-content a {
        min-width: 125px;
        padding: 0 10px; } }

.hero-post-slides .owl-item.center .single-hero-post .slide-img {
    -webkit-animation: slide 24s linear infinite;
    animation: slide 24s linear infinite; }

@-webkit-keyframes slide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3); }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1); } }
@keyframes slide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3); }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1); } }

/* :: 3.6.0 Miscellaneous */
.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat; }

.bg-white {
    background-color: #ffffff !important; }

.bg-dark {
    background-color: #103741 !important; }

.bg-transparent {
    background-color: transparent !important; }

.font-bold {
    font-weight: 700; }

.font-light {
    font-weight: 300; }

.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover; }
.bg-overlay::after {
    background-color: rgba(17, 17, 17, 0.5);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ""; }

.bg-fixed {
    background-attachment: fixed !important; }

.bg-gray {
    background-color: #eceeef; }




.ftco-section {
    padding: 7em 0;
    position: relative; }

.ftco-no-pt {
    padding-top: 0; }

.ftco-no-pb {
    padding-bottom: 0; }

.ftco-bg-dark {
    background: #3c312e; }

.ftco-footer {
    font-size: 14px;
    background: #232323;
    padding: 6em 0; }
.ftco-footer .ftco-footer-widget {
    width: 100%;
    display: block; }
.ftco-footer .ftco-footer-widget h2 {
    font-weight: normal;
    color: #fff;
    margin-bottom: 40px;
    font-size: 22px;
    font-weight: 500; }
.ftco-footer .ftco-footer-widget .logo {
    color: #fd5f00; }
.ftco-footer .ftco-footer-widget .logo span {
    color: #fda638; }
.ftco-footer .ftco-footer-widget ul li a span {
    color: #fff; }
.ftco-footer .ftco-footer-widget .btn-primary {
    background: #fff !important;
    border: 2px solid #fff !important; }
.ftco-footer .ftco-footer-widget .btn-primary:hover {
    background: #fff;
    border: 2px solid #fff !important; }
.ftco-footer p {
    color: rgba(255, 255, 255, 0.7); }
.ftco-footer a {
    color: rgba(255, 255, 255, 0.7); }
.ftco-footer a:hover {
    color: #fff; }
.ftco-footer .ftco-heading-2 {
    font-size: 17px;
    font-weight: 400;
    color: #000000; }
.ftco-footer .categories li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.ftco-footer .categories li a span {
    color: rgba(255, 255, 255, 0.5) !important; }
.ftco-footer .subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0; }
.ftco-footer .subscribe-form .form-group input {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 16px; }
.ftco-footer .subscribe-form .form-group input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.7) !important; }
.ftco-footer .subscribe-form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.7) !important; }
.ftco-footer .subscribe-form .form-group input:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(255, 255, 255, 0.7) !important; }
.ftco-footer .subscribe-form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.7) !important; }
.ftco-footer .subscribe-form .form-group .submit {
    color: #fff !important;
    font-size: 16px;
    background: #5d50c6 !important;
    border: none !important;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
.ftco-footer .subscribe-form .form-group .submit:hover {
    cursor: pointer;
    background: #fd5f00 !important; }
.ftco-footer .subscribe-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8); }
.ftco-footer .block-21 .text .heading {
    font-weight: 400;
    font-size: 16px; }
.ftco-footer .block-21 .text .heading a {
    color: rgba(255, 255, 255, 0.9); }
.ftco-footer .block-21 .text .heading a:hover, .ftco-footer .block-21 .text .heading a:active, .ftco-footer .block-21 .text .heading a:focus {
    color: #fd5f00; }
.ftco-footer .block-21 .text .meta > div {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px; }
.ftco-footer .block-21 .text .meta > div a {
    color: gray; }

.ftco-footer-social li {
    list-style: none;
    margin: 0 10px 0 0;
    display: inline-block; }
.ftco-footer-social li a {
    height: 40px;
    width: 40px;
    display: block;
    float: left;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative; }
.ftco-footer-social li a span {
    position: absolute;
    font-size: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.ftco-footer-social li a:hover {
    color: #fff; }

.footer-small-nav > li {
    display: inline-block; }
.footer-small-nav > li a {
    margin: 0 10px 10px 0; }
.footer-small-nav > li a:hover, .footer-small-nav > li a:focus {
    color: #fd5f00; }

.media .ftco-icon {
    width: 100px; }
.media .ftco-icon span {
    color: #fd5f00; }

#map {
    width: 100%; }
@media (max-width: 767.98px) {
    #map {
        height: 300px; } }

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(253, 95, 0, 0.4); }
    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(253, 95, 0, 0); }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(253, 95, 0, 0); } }

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(253, 95, 0, 0.4);
        -webkit-box-shadow: 0 0 0 0 rgba(253, 95, 0, 0.4);
        box-shadow: 0 0 0 0 rgba(253, 95, 0, 0.4); }
    70% {
        -moz-box-shadow: 0 0 0 30px rgba(253, 95, 0, 0);
        -webkit-box-shadow: 0 0 0 30px rgba(253, 95, 0, 0);
        box-shadow: 0 0 0 30px rgba(253, 95, 0, 0); }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(253, 95, 0, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(253, 95, 0, 0);
        box-shadow: 0 0 0 0 rgba(253, 95, 0, 0); } }

.heading-section .subheading {
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.9);
    position: relative; }

.heading-section h2 {
    font-size: 44px;
    font-weight: 600; }
@media (max-width: 767.98px) {
    .heading-section h2 {
        font-size: 28px; } }

.heading-section.heading-section-white .subheading {
    color: rgba(255, 255, 255, 0.7); }

.heading-section.heading-section-white h2 {
    font-size: 40px;
    color: #fff; }

.heading-section.heading-section-white p {
    color: rgba(255, 255, 255, 0.9); }

.heading-section.heading-section-black h2 {
    color: #000000; }

.hotel-img,
.img,
.blog-img,
.user-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }

.testimony-section {
    position: relative; }
.testimony-section .owl-carousel {
    margin: 0; }
.testimony-section .owl-carousel .owl-stage-outer {
    padding-top: 4em;
    padding-bottom: 2em;
    position: relative; }
.testimony-section .owl-nav {
    position: absolute;
    top: 100%;
    width: 100%; }
.testimony-section .owl-nav .owl-prev,
.testimony-section .owl-nav .owl-next {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -10px;
    outline: none !important;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0; }
.testimony-section .owl-nav .owl-prev span:before,
.testimony-section .owl-nav .owl-next span:before {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.2);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; }
.testimony-section .owl-nav .owl-prev:hover span:before, .testimony-section .owl-nav .owl-prev:focus span:before,
.testimony-section .owl-nav .owl-next:hover span:before,
.testimony-section .owl-nav .owl-next:focus span:before {
    color: #000000; }
.testimony-section .owl-nav .owl-prev {
    left: 50%;
    margin-left: -80px; }
.testimony-section .owl-nav .owl-next {
    right: 50%;
    margin-right: -80px; }
.testimony-section:hover .owl-nav .owl-prev,
.testimony-section:hover .owl-nav .owl-next {
    opacity: 1; }
.testimony-section:hover .owl-nav .owl-prev {
    left: 50%;
    margin-left: -80px; }
.testimony-section:hover .owl-nav .owl-next {
    right: 50%;
    margin-right: -80px; }
.testimony-section .owl-dots {
    text-align: center; }
.testimony-section .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2); }
.testimony-section .owl-dots .owl-dot.active {
    background: #fd5f00; }
.testimony-section .owl-item {
    opacity: .1 !important;
    margin-top: 20px; }
.testimony-section .owl-item.center {
    padding-bottom: 30px;
    margin-top: 0;
    opacity: 1 !important; }
.testimony-section .owl-item.center p {
    font-size: 18px; }

.testimony-wrap {
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(0, 0, 0, 0.8); }
.testimony-wrap .user-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative; }
.testimony-wrap .text {
    width: calc(100% - 120px);
    position: relative; }
.testimony-wrap .quote {
    position: absolute;
    top: -40px;
    left: 0;
    opacity: .1; }
.testimony-wrap .quote i {
    font-size: 100px;
    color: #5d50c6; }
.testimony-wrap .name {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    color: #000000; }
.testimony-wrap .position {
    font-size: 14px;
    color: #fd5f00; }

@media (max-width: 767.98px) {
    .about-image {
        height: 400px;
        margin-bottom: 30px; } }

.image-popup {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in; }

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1; }

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8; }

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0; }

.video {
    width: 100%;
    position: relative; }

.icon-video {
    width: 80px;
    height: 80px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 34px -8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 34px -8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 34px -8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%; }
.icon-video span {
    font-size: 30px;
    color: #fd5f00; }

#section-counter {
    position: relative;
    z-index: 0; }
#section-counter:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: -1;
    opacity: .8;
    background: #0d1128;
    background: #0d1128;
    background: -moz-linear-gradient(45deg, #0d1128 0%, #fd6100 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #0d1128), color-stop(100%, #fd6100));
    background: -webkit-linear-gradient(45deg, #0d1128 0%, #fd6100 100%);
    background: -o-linear-gradient(45deg, #0d1128 0%, #fd6100 100%);
    background: -ms-linear-gradient(45deg, #0d1128 0%, #fd6100 100%);
    background: linear-gradient(45deg, #0d1128 0%, #fd6100 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d1128', endColorstr='#fd6100', GradientType=1 ); }

.ftco-counter {
    overflow-x: hidden;
    position: relative; }
@media (max-width: 1199.98px) {
    .ftco-counter {
        background-position: top center !important; } }
.ftco-counter .img-video {
    width: 100%;
    display: block; }
@media (max-width: 767.98px) {
    .ftco-counter .img-video {
        height: 300px; } }
.ftco-counter .icon span {
    font-size: 50px;
    color: #000000;
    line-height: 1; }
.ftco-counter .block-18 {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px; }
.ftco-counter .text strong.number {
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    display: block; }
.ftco-counter .text span {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8); }
@media (max-width: 767.98px) {
    .ftco-counter .counter-wrap {
        margin-bottom: 20px; } }

.ftco-consult {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative; }
@media (max-width: 991.98px) {
    .ftco-consult {
        background-position: top center !important; } }
.ftco-consult .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .7;
    background: #fd6100;
    background: -moz-linear-gradient(45deg, #fd6100 0%, #0d1128 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #fd6100), color-stop(100%, #0d1128));
    background: -webkit-linear-gradient(45deg, #fd6100 0%, #0d1128 100%);
    background: -o-linear-gradient(45deg, #fd6100 0%, #0d1128 100%);
    background: -ms-linear-gradient(45deg, #fd6100 0%, #0d1128 100%);
    background: linear-gradient(45deg, #fd6100 0%, #0d1128 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd6100', endColorstr='#0d1128', GradientType=1 ); }

.appointment-form .form-group {
    position: relative;
    width: 100%;
    display: block; }
.appointment-form .form-group .icon {
    position: absolute;
    top: 50% !important;
    right: 0;
    font-size: 16px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
.appointment-form .form-group .icon span {
    color: white !important; }
.appointment-form .form-group .select-wrap, .appointment-form .form-group .input-wrap {
    position: relative; }
.appointment-form .form-group .select-wrap select, .appointment-form .form-group .input-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
.appointment-form .form-group .btn {
    width: 100%;
    display: block !important; }

.appointment-form .form-control {
    border: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    height: 58px !important;
    padding-left: 0;
    padding-right: 0;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
.appointment-form .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.9); }
.appointment-form .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.9); }
.appointment-form .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.9); }
.appointment-form .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.9); }
.appointment-form .form-control:focus, .appointment-form .form-control:active {
    border-color: #fff; }

.appointment-form textarea.form-control {
    height: inherit !important; }

.block-23 ul {
    padding: 0; }
.block-23 ul li, .block-23 ul li > a {
    display: table;
    line-height: 1.5;
    margin-bottom: 15px; }
.block-23 ul li span {
    color: rgba(255, 255, 255, 0.7); }
.block-23 ul li .icon, .block-23 ul li .text {
    display: table-cell;
    vertical-align: top; }
.block-23 ul li .icon {
    width: 40px;
    font-size: 18px;
    padding-top: 2px;
    color: white; }

.contact-section .contact-info p a {
    color: #1a1a1a; }

.contact-section .box {
    width: 100%;
    display: block; }
.contact-section .box h3 {
    font-size: 24px;
    font-weight: 500; }

.block-9 .form-control {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px; }

.block-21 .blog-img {
    display: block;
    height: 80px;
    width: 80px; }

.block-21 .text {
    width: calc(100% - 100px); }
.block-21 .text .heading {
    font-size: 18px;
    font-weight: 400; }
.block-21 .text .heading a {
    color: #000000; }
.block-21 .text .heading a:hover, .block-21 .text .heading a:active, .block-21 .text .heading a:focus {
    color: #fd5f00; }
.block-21 .text .meta > div {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px; }
.block-21 .text .meta > div a {
    color: gray; }

/* Blog*/
.post-info {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    letter-spacing: .1em; }
.post-info > div {
    display: inline-block; }
.post-info > div .seperator {
    display: inline-block;
    margin: 0 10px;
    opacity: .5; }

.tagcloud a {
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 7px;
    margin-right: 4px;
    border-radius: 4px;
    color: #000000;
    border: 1px solid #ccc;
    font-size: 11px; }
.tagcloud a:hover {
    border: 1px solid #000; }

.comment-form-wrap {
    clear: both; }

.comment-list {
    padding: 0;
    margin: 0; }
.comment-list .children {
    padding: 50px 0 0 40px;
    margin: 0;
    float: left;
    width: 100%; }
.comment-list li {
    padding: 0;
    margin: 0 0 30px 0;
    float: left;
    width: 100%;
    clear: both;
    list-style: none; }
.comment-list li .vcard {
    width: 80px;
    float: left; }
.comment-list li .vcard img {
    width: 50px;
    border-radius: 50%; }
.comment-list li .comment-body {
    float: right;
    width: calc(100% - 80px); }
.comment-list li .comment-body h3 {
    font-size: 18px;
    font-weight: 500; }
.comment-list li .comment-body .meta {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .1em;
    color: #ccc; }
.comment-list li .comment-body .reply {
    padding: 5px 10px;
    background: #e6e6e6;
    color: #000000;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .1em;
    font-weight: 400;
    border-radius: 4px; }
.comment-list li .comment-body .reply:hover {
    color: #fff;
    background: black; }

.search-form {
    background: #fafafa;
    padding: 10px; }
.search-form .form-group {
    position: relative;
    margin-bottom: 0; }
.search-form .form-group input {
    padding-right: 50px;
    font-size: 14px; }
.search-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.subs-wrap {
    background: #fd5f00 !important;
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.7); }
.subs-wrap h3 {
    color: #fff;
    font-size: 30px !important; }

.subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0; }
.subscribe-form .form-group input {
    background: transparent !important;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 16px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0; }
.subscribe-form .form-group input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.7) !important; }
.subscribe-form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.7) !important; }
.subscribe-form .form-group input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.7) !important; }
.subscribe-form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.7) !important; }
.subscribe-form .form-group .form-control {
    border: 1px solid rgba(255, 255, 255, 0.4); }
.subscribe-form .form-group .submit {
    color: #000000 !important;
    display: block;
    width: 100%;
    height: 52px;
    font-size: 16px;
    background: #fff !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0; }
.subscribe-form .form-group .submit:hover {
    cursor: pointer; }

.subscribe-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8); }

@media (max-width: 991.98px) {
    .sidebar {
        margin-top: 5em; } }

.sidebar-box {
    margin-bottom: 30px;
    padding: 0 25px 25px;
    font-size: 15px;
    width: 100%; }
.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 20px; }

.categories, .sidelink {
    padding: 0; }
.categories li, .sidelink li {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    list-style: none; }
.categories li:last-child, .sidelink li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0; }
.categories li a, .sidelink li a {
    display: block; }
.categories li a span, .sidelink li a span {
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc; }
.categories li.active a, .sidelink li.active a {
    color: #000000;
    font-style: italic; }

#ftco-loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1000; }

#ftco-loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }

#ftco-loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1; }

#ftco-loader .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }

#ftco-loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round; }

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg); } }

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg); } }

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0; }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px; }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px; } }

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0; }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px; }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px; } }


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

.rounded {
    border-radius: 2px !important;
}
.pt-3 {
    padding-top: 1rem !important;
}


/*** Service fahd ***/
.service-item-fahd {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item-fahd:hover {
    background: #a49383;
}

.service-item-fahd * {
    transition: .5s;
}

.service-item-fahd:hover * {
    color: var(--light) !important;
}

.rounded {
    border-radius: 2px !important;
}
.pt-3 {
    padding-top: 1rem !important;
}

.ftco-section {
    position: relative; 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}





/* :: 18.0 Team Member Area CSS */
.single-team-member {
    position: relative;
    z-index: 1; }
.single-team-member .team-member-thumb {
    margin-bottom: 40px; }
.single-team-member .team-member-thumb img {
    width: 100%; }
.single-team-member .team-member-info {
    text-align: center; }
.single-team-member .team-member-info .section-heading {
    margin-bottom: 40px; }
.single-team-member .team-member-info .address h6 {
    margin-bottom: 15px;
    font-size: 14px; }
.single-team-member .team-member-info .address h6:last-of-type {
    margin-bottom: 0; }
.single-team-member .team-member-info .address h6 img {
    margin-right: 10px; }

/* :: 19.0 Listings Area CSS */
.listings-content-wrapper {
    overflow-x: hidden; }

.listings-top-meta {
    position: relative;
    z-index: 100; }
.listings-top-meta .nice-select {
    float: right;
    height: 34px;
    line-height: 34px;
    position: relative;
    z-index: 100; }
.listings-top-meta .nice-select .list {
    position: absolute;
    z-index: 500; }
.listings-top-meta .nice-select .option {
    min-height: 34px;
    line-height: 34px; }
.listings-top-meta span {
    color: #323232;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px; }
@media only screen and (max-width: 767px) {
    .listings-top-meta span {
        font-size: 11px; } }
.listings-top-meta .grid_view a {
    color: #323232;
    line-height: 1;
    font-size: 18px; }
.listings-top-meta .grid_view a.active {
    color: #947054; }
.listings-top-meta .list_view a {
    color: #323232;
    line-height: 1;
    font-size: 18px; }
.listings-top-meta .list_view a.active {
    color: #947054; }

.single-listings-sliders {
    position: relative;
    z-index: 1; }
.single-listings-sliders .owl-prev,
.single-listings-sliders .owl-next {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 50%;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
    left: -19px;
    opacity: 0;
    visibility: hidden;
    margin-top: -19px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    background-color: #947054;
    font-size: 13px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.15); }
.single-listings-sliders .owl-prev:hover,
.single-listings-sliders .owl-next:hover {
    background-color: #000000; }
.single-listings-sliders .owl-next {
    left: auto;
    right: -19px; }
.single-listings-sliders:hover .owl-prev, .single-listings-sliders:hover .owl-next {
    opacity: 1;
    visibility: visible; }

.listings-content {
    margin-top: 70px; }
.listings-content .list-price p {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
    color: #947054; }
.listings-content h5 {
    font-size: 30px;
    margin-bottom: 10px; }
@media only screen and (max-width: 767px) {
    .listings-content h5 {
        font-size: 20px; } }
.listings-content .location {
    margin-bottom: 40px; }
.listings-content .location img {
    margin-right: 15px; }
.listings-content p {
    margin-bottom: 40px; }
.listings-content .property-meta-data div {
    margin-right: 15px; }
.listings-content .property-meta-data span {
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
    color: #838383; }
.listings-content .property-meta-data img {
    margin-right: 10px;
    display: inline-block !important;
    width: auto !important; }
@media only screen and (max-width: 767px) {
    .listings-content .property-meta-data img {
        margin-right: 0; } }
.listings-content .listings-core-features {
    padding: 70px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.listings-content .listings-core-features li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333%;
    flex: 0 0 33.3333333%;
    min-width: 33.3333333%;
    color: #323232;
    font-size: 15px;
    margin-bottom: 25px; }
@media only screen and (max-width: 767px) {
    .listings-content .listings-core-features li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        min-width: 100%; } }
.listings-content .listings-core-features li i {
    width: 27px;
    height: 27px;
    background-color: #947054;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 27px;
    font-size: 12px;
    margin-left: 10px; }
.listings-content .listings-btn-groups a:first-child {
    margin-bottom: 15px; }
.listings-content .listings-btn-groups .south-btn {
    min-width: 285px;
    width: 285px;
    display: block; }

.contact-realtor-wrapper {
    background-color: #f5f5f5;
    margin-top: 80px;
    position: relative;
    z-index: 1; }
.contact-realtor-wrapper .realtor-info > img {
    width: 100%; }
.contact-realtor-wrapper .realtor---info {
    padding: 40px 45px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-realtor-wrapper .realtor---info {
        padding: 40px 30px; } }
@media only screen and (max-width: 767px) {
    .contact-realtor-wrapper .realtor---info {
        padding: 40px 30px; } }
.contact-realtor-wrapper .realtor---info h2 {
    font-size: 24px;
    text-transform: uppercase; }
.contact-realtor-wrapper .realtor---info p {
    font-style: italic;
    color: #947054; }
.contact-realtor-wrapper .realtor---info h6 {
    font-size: 14px; }
.contact-realtor-wrapper .realtor---info h6 img {
    margin-right: 15px; }
.contact-realtor-wrapper .realtor--contact-form {
    padding: 0 45px 40px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-realtor-wrapper .realtor--contact-form {
        padding: 0 30px 40px; } }
@media only screen and (max-width: 767px) {
    .contact-realtor-wrapper .realtor--contact-form {
        padding: 0 30px 40px; } }
.contact-realtor-wrapper .realtor--contact-form .form-group {
    margin-bottom: 15px; }
.contact-realtor-wrapper .realtor--contact-form .form-control {
    border: 1px solid #e1dddd;
    height: 45px;
    background-color: #ffffff;
    border-radius: 0;
    font-style: italic;
    font-size: 12px;
    margin-bottom: 15px; }
.contact-realtor-wrapper .realtor--contact-form textarea.form-control {
    height: 100px;
    padding: 15px; }

.listings-maps {
    position: relative;
    z-index: 1; }
.listings-maps #googleMap {
    width: 100%;
    height: 540px; }





/* :: 15.0 Portfolio Area CSS */

.alazea-portfolio-filter {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
}

.alazea-portfolio-filter .btn {
    transition-duration: 300ms;
    padding: 0;
    font-size: 20px;
    color: #333;
    font-weight: 500;
    background-color: transparent;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .alazea-portfolio-filter .btn {
        font-size: 16px;
        padding: 0 5px;
    }
}

.alazea-portfolio-filter .btn:hover,
.alazea-portfolio-filter .btn:focus {
    color: #ff0000;
    box-shadow: none;
}

.alazea-portfolio {
    margin-right: -10px;
    margin-left: -10px;
}

.alazea-portfolio .col-12 {
    padding-left: 10px;
    padding-right: 10px;
}

.single_portfolio_item {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    overflow: hidden;
    height: 400px;
    transition-duration: 500ms;
}

@media (max-width: 1199px) {
    .single_portfolio_item {
        height: 290px;
    }
}

@media (max-width: 767px) {
    .single_portfolio_item {
        height: 300px;
    }
}

.single_portfolio_item .portfolio-thumbnail {
    transition-duration: 500ms;
    width: calc(100% - 20px);
    position: absolute;
    height: 100%;
    top: 0;
    left: 10px;
    right: 10px;
    background-repeat: no-repeat;
}

.single_portfolio_item .portfolio-hover-overlay {
    width: calc(100% - 20px);
    height: 100%;
    top: 0;
    left: 10px;
    right: 10px;
    transition-duration: 500ms;
    background-color: rgba(10, 10, 10, 0.4);
    position: absolute;
    z-index: 10;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.single_portfolio_item:hover {
    transform: translateY(-15px);
}

.single_portfolio_item:hover .portfolio-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: 0;
    text-align: center;
    padding-right: 0;
    top: 40px;
    width: 36px;
    height: 36px;
    background-color: #ff0000;
    line-height: 36px;
}

.mfp-bottom-bar {
    margin-top: 0;
    top: auto;
    bottom: 55px;
    left: 0;
    width: 100%;
    cursor: auto;
    background-color: transparent;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mfp-bottom-bar .mfp-title,
.mfp-bottom-bar .mfp-counter {
    line-height: normal;
    color: #fff;
    padding-right: 0;
    background-color: #ff0000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}
