

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #3fbbc0;
  text-decoration: none;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Amaranth,sans-serif;
}

.color-red {
    color:red!important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3fbbc0;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Loading
--------------------------------------------------------------*/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #00000026;
    
}

    #loading:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #3fbbc0;
        border-top-color: #ecf8f9;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-loading 1s linear infinite;
    }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #f25334;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #5ec6ca;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #3fbbc0;
    color: #fff;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    z-index: 996;
    transition: all 0.5s;
}

    #topbar.topbar-scrolled {
        top: -40px;
    }

    #topbar i {
        padding-right: 6px;
        line-height: 0;
    }
    #topbar a {
        color: #fff;
    }
        #topbar a:hover {
            color: #f25334;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    #header {
        padding: 15px 0;
    }
}

#header.header-scrolled {
    top: 0;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    #header .logo a {
        color: #555555;
    }

    #header .logo img {
        max-height: 40px;
    }

/**
* Contact Button
*/
.appointment-btn {
    margin-left: 25px;
    background: #f25334;
    color: #fff;
    font-family: Amaranth,sans-serif;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

    .appointment-btn:hover {
        background: #65c9cd;
        color: #fff;
    }

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-family: Amaranth,sans-serif;
        font-size: 13px;
        color: #626262;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: uppercase;
        font-weight: 500;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #f25334;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            text-transform: none;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #3fbbc0;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #555555;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(60, 60, 60, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #555555;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #3fbbc0;
        }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #3fbbc0;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }



/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
    --default-color: #ffffff;
    --default-color-rgb: 255, 255, 255;
    --background-color: #000000;
    --background-color-rgb: 0, 0, 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 160px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        z-index: 1;
    }

    .hero:before {
        content: "";
        /*background: rgba(var(--background-color-rgb), 0.2);*/
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h2 {
        color: var(--contrast-color);
        margin: 0;
        font-size: 44px;
        font-weight: 700;
    }

    .hero p {
        color: rgba(var(--default-color-rgb), 0.8);
        margin: 5px 0 0 0;
        font-size: 20px;
    }



@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

.hero .text-banner {
    padding-top: 1.5rem;
    margin: 0 auto;
    bottom: -40px;
    left: 0;
    position: relative;
    vertical-align: middle;
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
    transform: translate(0, -20%);
    font-size: 20px;
    color: #fff;
    text-align: left;
}

    .hero .text-banner .list-unstyled {
        background: rgba(0, 0, 0, .3);
        padding: 1.5em;
    }

    .hero .text-banner li {
        position: relative;
        padding-left: 20px;
    }

    .hero .text-banner .bi-star-fill {
        font-size: 11px;
        color: #e4b349;
        position: absolute;
        left: 0;
        top: 10px;
    }


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        padding-bottom: 20px;
        position: relative;
        color: #20689e;
    }

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #3fbbc0;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services{
    padding:0 0 30px 0;
}
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #3fbbc0;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

    .featured-services .icon i {
        font-size: 48px;
        line-height: 1;
        color: #f25334;
        transition: all 0.3s ease-in-out;
    }

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}


/*--------------------------------------------------------------
# Intro
--------------------------------------------------------------*/
.intro{
    padding: 30px 0 0 0;
}
.intro .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.intro .content ul {
  list-style: none;
  padding: 0;
}

.intro .content ul li {
  padding-bottom: 10px;
}

.intro .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3fbbc0;
}

.intro .content p:last-child {
  margin-bottom: 0;
}

/* About Section - Home Page
------------------------------*/
.about {
    --background-color: #f4f4f4;
}



    .about .content p:last-child {
        margin-bottom: 0;
    }

    .about .play-btn {
        width: 94px;
        height: 94px;
        background: radial-gradient(#ff0d0d 50%, rgb(255 13 13 / 40%) 52%);
        border-radius: 50%;
        display: block;
        position: absolute;
        left: calc(50% - 47px);
        top: calc(50% - 47px);
        overflow: hidden;
    }

        .about .play-btn:before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
            animation: pulsate-btn 2s;
            animation-direction: forwards;
            animation-iteration-count: infinite;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid rgb(255 13 58 / 70%);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .about .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);
        }

        .about .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;
        }

        .about .play-btn:hover:after {
            border-left: 15px solid #e84545;
            transform: scale(20);
        }

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
}

    .gallery .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .gallery .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #3fbbc0;
        }

        .gallery .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #3fbbc0;
        }

    .gallery .swiper-slide-active {
        text-align: center;
    }

@media (min-width: 992px) {
    .gallery .swiper-wrapper {
        padding: 40px 0;
    }

    .gallery .swiper-slide-active {
        border: 6px solid #3fbbc0;
        padding: 4px;
        background: #fff;
        z-index: 1;
        transform: scale(1.2);
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# Tours
--------------------------------------------------------------*/
.tours h1 {
    color: #4660c2;
    text-align: center;
    font-weight: 900;
    font-size: 52px;
    margin: 0 0 10px 0;
}
.tours h2 {
    font-weight: 300;
    color: #f25334;
}
.tours .tips {
    color: #f25334;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0 20px 0;
}
.tours .day {
    color: #777;
    top: 0;
    padding: 3px 10px;
    font-size: 13px;
    margin-right: 6px;
    border: 1px solid #ddd;
    background: #eee;
}
.tours .highlight {
    list-style: none;
    padding: 0;
}
    .tours .highlight li {
        padding-bottom: 10px;
    }
    .tours .highlight i {
        font-size: 20px;
        padding-right: 4px;
        color: #f25334;
    }
.tours .title {
    color: #4660c2;
    font-size: 17px;
    margin-bottom: 10px;
    background: #fff;
}
.tours .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.tours .icon-box i {
    font-size: 48px;
    float: left;
    color: #3fbbc0;
}

.tours .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.tours .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

.tours .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#ff0d0d 50%, rgb(255 13 13 / 40%) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

    .tours .play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgb(255 13 58 / 70%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .tours .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);
    }

    .tours .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;
    }

    .tours .play-btn:hover:after {
        border-left: 15px solid var(--color-primary);
        transform: scale(20);
    }

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Hotels
--------------------------------------------------------------*/
.hotels .table th.th1 {
    background: #4660c2;
    border-color: #4660c2;
    padding: 10px !important;
    text-align: center;
    color: #fff;
}

/*--------------------------------------------------------------
# Hotels
--------------------------------------------------------------*/
.price .table th.th2 {
    background: #f25334;
    border-color: #f25334;
    padding: 10px !important;
    text-align: center;
    color: #fff;
}

/*--------------------------------------------------------------
# Include Exclude
--------------------------------------------------------------*/
.include {
    list-style: none;
    padding: 0;
}

    .include li {
        padding-bottom: 10px;
    }

    .include i {
        font-size: 20px;
        padding-right: 10px;
        color: #48c540;
    }

    .include .conditions {
        display: flex;
        justify-content: center;
        align-items: center;
    }
.exclude {
    list-style: none;
    padding: 0;
}

    .exclude li {
        padding-bottom: 10px;
    }

    .exclude i {
        font-size: 20px;
        padding-right: 10px;
        color: #f25334;
    }



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    --background-color: #f4f4f4;
}

@media(min-width:768px) {
    #contact .control-label {
        text-align: right;
    }

    .contact .php-email-form {
        background: #fff;
    }
}


.contact .php-email-form {
    width: 100%;
    padding: 10px 0 10px 0;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #df1529;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #059652;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #059652;
            border-top-color: #fff;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea,
    .contact .php-email-form select {
        border-radius: 4px;
        box-shadow: none;
        font-size: 14px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type=submit] {
        background: var(--color-primary);
        border: 0;
        padding: 10px 35px;
        color: #fff;
        transition: 0.4s;
        border-radius: 5px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: rgba(13, 66, 255, 0.8);
        }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact .btn-send {
    background: #f25334;
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    cursor: pointer;
}

    .contact .btn-send:hover,
    .contact .btn-send:focus:hover {
        color: #fff;
        background: #3fbbc0;
    }


/* Testimonials Section - Home Page
------------------------------*/


.testimonials .speaker h4 {
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.5;
    font-weight: bold;
}

.testimonials .speaker .company {
    color: #888;
    font-family: 'Open sans';
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 18px;
}


.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #000;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 100px;
        border-radius: 50%;
        border: 6px solid rgba(255, 255, 255, 0.15);
        margin: 0 auto;
    }

    .testimonials .testimonial-item h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #000;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 15px 0;
    }

    .testimonials .testimonial-item .stars {
        margin-bottom: 15px;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 1px;
        }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: rgb(36 35 35 / 60%);
        font-size: 26px;
        line-height: 0;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0 auto 15px auto;
    }

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #c9cbca;
        opacity: 0.5;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #f25334;
        opacity: 1;
    }

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    /*--background-color: #f4f4f4;
    color: var(--default-color);
    background-color: var(--background-color);*/
    font-size: 14px;
    padding-bottom: 50px;
    background: #262e3a;
}

    /*.footer .footer-top {
  padding-top: 50px;
}*/

    .footer .logo-txt {
        letter-spacing: 10px;
        color: #fff !important;
        text-transform: uppercase;
    }

        .footer .logo-txt span {
            color: #ec1c24;
        }

    .footer p {
        font-size: 14px;
        font-family: var(--heading-font);
        color: #666;
    }

    .footer h4 {
        color: #666;
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }