/************************************* top-bar css start *************************************/
/*====================================
    top-bar css css
====================================*/
.top-bar {
    position: relative;
}
.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: var(--gradient-color);
    background-size: 200% 100%;
    background-position: 100%;
    z-index: -1;
}

/* top-bar-swipe css */
.top-bar .top-bar-swipe:hover .top-bar-slide,
.top-bar .top-bar-swipe:focus-within .top-bar-slide {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}
.top-bar .top-bar-swipe .top-bar-slide1 {
    -webkit-animation: slide1 50s linear infinite;
    animation: slide1 50s linear infinite;
    -webkit-animation-delay: -50s;
    animation-delay: -50s;
}
.top-bar .top-bar-swipe .top-bar-slide2 {
    -webkit-animation: slide2 50s linear infinite;
    animation: slide2 50s linear infinite;
    -webkit-animation-delay: -25s;
    animation-delay: -25s;
}
@-webkit-keyframes slide1 {
    0% {
        transform: translateX(100%);
    } 100% {
        transform: translateX(-100%);
    }
}
@-moz-keyframes slide1 {
    0% {
        transform: translateX(100%);
    } 100% {
        transform: translateX(-100%);
    }
}
@keyframes slide1 {
    0% {
        transform: translateX(100%);
    } 100% {
        transform: translateX(-100%);
    }
}
@-webkit-keyframes slide2 {
    0% {
        transform: translateX(0%);
    } 100% {
        transform: translateX(-200%);
    }
}
@-moz-keyframes slide2 {
    0% {
        transform: translateX(0%);
    } 100% {
        transform: translateX(-200%);
    }
}
@keyframes slide2 {
    0% {
        transform: translateX(0%);
    } 100% {
        transform: translateX(-200%);
    }
}
.top-bar .top-bar-swipe .top-bar-slide .top-bar-element {
    margin: 0px 0px 0px 15px;
}
/************************************* top-bar css end *************************************/

/************************************* header css start *************************************/
/*====================================
    header-logo css
====================================*/
.header-theme-logo a.theme-logo img {
    max-width: 100px;
}
@media (min-width: 1200px) {
    .header-theme-logo a.theme-logo img {
        max-width: 148px;
    }
}
/************************************* header css end *************************************/

/************************************* home-slider css start *************************************/
/*====================================
    slider-image css
====================================*/
.slider-content .home-slider .slider-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    opacity: 0.4;
}

/*====================================
    slider-content css
====================================*/
/* slider-content transition css */
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-text-info span.sub-title,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-text-info h2,
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-text-info a {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-text-info span.sub-title {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-text-info h2 {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-duration: 1.0s;
    animation-duration: 1.0s;
}
.slider-content .home-slider.swiper .swiper-slide.swiper-slide-active .slider-image .slider-text-info a {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

/* slider-content-text css */
.slider-content .home-slider .slider-image .slider-text-info span.sub-title {
    font-size: 18px;
}
.slider-content .home-slider .slider-image .slider-text-info h2 {
    font-size: 30px;
}
@media (min-width: 576px) {
    .slider-content .home-slider .slider-image .slider-text-info span.sub-title {
        font-size: 20px;
    }
    .slider-content .home-slider .slider-image .slider-text-info h2 {
        font-size: 60px;
    }
}
@media (min-width: 768px) {
    .slider-content .home-slider .slider-image .slider-text-info h2 {
        font-size: 80px;
    }
}
@media (min-width: 1200px) {
    .slider-content .home-slider .slider-image .slider-text-info span.sub-title {
        font-size: 24px;
    }
    .slider-content .home-slider .slider-image .slider-text-info h2 {
        font-size: 100px;
    }
}
@media (min-width: 1400px) {
    .slider-content .home-slider .slider-image .slider-text-info span.sub-title {
        font-size: 24px;
    }
    .slider-content .home-slider .slider-image .slider-text-info h2 {
        font-size: 120px;
    }
}

/*====================================
    slider-navigation css
====================================*/
.slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button {
    color: var(--primary-font-color);
    font-size: 20px;
    height: 45px;
    width: 45px;
    background-color: var(--extra-font-color-light);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
    transition: color 0.3s ease-in-out,background-color 0.3s ease-in-out,opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
}
.slider-content:hover .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button {
    opacity: 1;
    visibility: visible;
}
.slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-prev-homeslider {
    left: 15px;
}
.slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-next-homeslider {
    right: 15px;
}
.slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button:hover {
    color: var(--extra-font-color-light);
    background-color: var(--primary-font-color);
}
@media (min-width: 1200px) {
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button {
        height: 60px;
        width: 60px;
    }
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-prev-homeslider {
        left: 30px;
    }
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-next-homeslider {
        right: 30px;
    }
}
@media (min-width: 1600px) {
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-prev-homeslider {
        left: 80px;
    }
    .slider-content .home-slider.swiper .swiper-buttons .swiper-buttons-wrap button.swiper-next-homeslider {
        right: 80px;
    }
}

/*====================================
    slider-dot css
====================================*/
.slider-content .home-slider.swiper .swiper-dots {
    bottom: 15px;
}
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination {
    width: unset;
    margin: -5px 0px 0px -5px;
}
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span {
    width: 12px;
    height: 12px;
    background-color: transparent;
    margin: 5px 0px 0px 5px;
    opacity: 1;
    border: 1px solid var(--primary-font-color);
}
.slider-content .home-slider.swiper .swiper-dots .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--primary-font-color);
    border-color: var(--primary-font-color);
}
@media (min-width: 576px) {
    .slider-content .home-slider.swiper .swiper-dots {
        bottom: 30px;
    }
}
/************************************* home-slider css end *************************************/

/************************************* service css start *************************************/
/*====================================
    service css
====================================*/
.service .service-area .service-box .service-content {
    position: relative;
}
.service .service-area .service-box .service-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 2px;
    background-color: var(--primary-font-color);
    transform: scaleX(0);
    z-index: 1;
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}
.service .service-area .service-box .service-content:hover::after {
    transform: scaleX(-1);
}
@media (min-width: 576px) {
    .service .service-area .service-box:nth-child(even) .service-content {
        margin: 30px 0px 0px;
    }
}
@media (min-width: 1200px) {
    .service .service-area .service-box:nth-child(even) .service-content {
        margin: 60px 0px 0px;
    }
}

/* service text css */
.service .service-area .service-box .service-content span.service-icon {
    font-size: 48px;
}
.service .service-area .service-box .service-content .service-text h2 {
    font-size: 18px;
}
/************************************* service css end *************************************/

/************************************* brand-logo css start *************************************/
/*====================================
    brand-logo css
====================================*/
.brand-logo .brand-slider a.brand-img span {
    max-width: 147px;
}
.brand-logo .brand-slider a.brand-img span img {
    opacity: 0.5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: opacity 0.5s ease-in-out,filter 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out,filter 0.5s ease-in-out;
}
.brand-logo .brand-slider a.brand-img:hover span img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
/************************************* brand-logo css end *************************************/

/************************************* testimonial-contact css start *************************************/
/*====================================
    testimonial css
====================================*/
.testimonial-contact .testi-info .testi-slider.owl-carousel .owl-stage-outer {
    overflow: unset;
}
.testimonial-contact .testi-info .testi-slider.owl-carousel.owl-drag .owl-item {
    opacity: 0.5;
}
.testimonial-contact .testi-info .testi-slider.owl-carousel.owl-drag .owl-item.active {
    opacity: 1;
}

/* testimonial testi-content css */
.testimonial-contact .testi-info .testi-slider .testi-content .testi-img img {
    width: 90px;
}
.testimonial-contact .testi-info .testi-slider .testi-content .testi-text {
    margin: -32px 0px 0px;
}
.testimonial-contact .testi-info .testi-slider .testi-content .testi-text span.testi-icon {
    font-size: 64px;
}
.testimonial-contact .testi-info .testi-slider .testi-content .testi-text .testi-profile span.testi-author {
    font-size: 18px;
}

/*====================================
    contact css
====================================*/
.testimonial-contact .contact-us {
    position: relative;
}
.testimonial-contact .contact-us::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: var(--gradient-color);
    background-size: 200% 100%;
    background-position: 100%;
    z-index: -1;
}
/************************************* testimonial-contact css end *************************************/

/************************************* package css start *************************************/
/*====================================
    package css
====================================*/
.package .package-content .package-info {
    position: relative;
}
.package .package-content .package-info::after {
    content: "";
    position: absolute;
    left: auto;
    bottom: -30px;
    border: 15px solid var(--body-bgcolor);
    border-color: var(--body-bgcolor) transparent transparent transparent;
}
.package .package-content .package-info .package-text h2.package-tt {
    font-size: 18px;
}
.package .package-content .package-info .package-plan h2.package-price {
    font-size: 24px;
}
.package .package-content .package-info .package-plan .package-view-mode button::before {
    content: "/";
    color: var(--body-font-color);
    margin: 0px 5px;
}
.package .package-content .package-info .package-plan .package-view-mode button:first-child::before {
    display: none;
}
/************************************* package css end *************************************/

/************************************* footer css start *************************************/
/*====================================
    footer-logo css
====================================*/
.footer-area .footer-info .footer-logo-copyright .footer-theme-logo a.theme-logo img {
    max-width: 100px;
}
@media (min-width: 1200px) {
    .footer-area .footer-info .footer-logo-copyright .footer-theme-logo a.theme-logo img {
        max-width: 148px;
    }
}

/*====================================
    footer-contact css
====================================*/
.footer-area .footer-contact h2.ft-title {
    font-size: 18px;
}
/************************************* footer css end *************************************/