/* :: 1.0 Import Web Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: #212529;
    background-color: #ffffff;
    font-family: "Open Sans", serif;
}

a {
    color: #ce1212;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, #ce1212, transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #37373f;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#ce1212 50%, color-mix(in srgb, #ce1212, transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, #ce1212, transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: #212529;
    background-color: #ffffff;
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 105px;
    max-width: 105px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #37373f;
    font-family: "Open Sans", serif;
}

.header .logo span {
    color: #ce1212;
    font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: #ffffff;
    background: #ce1212;
    font-size: 14px;
    padding: 8px 16px;
    margin: 2px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: #ffffff;
    background: color-mix(in srgb, #ce1212, transparent 15%);
}

@media (max-width: 768px) {
    .header .btn-getstarted,
	.header .btn-getstarted:focus {
		padding: 8px 16px;
		margin: 0px;
	}
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .getstarted {
        order: 2;
        margin: 0 5px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

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

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #1a1a1a;
        font-size: 15px;
        padding: 0 2px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

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

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #ce1212;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: color-mix(in srgb, #1a1a1a 80%, black 50%);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: #ffffff;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

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

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: #1a1a1a;
    }

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

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: #ce1212;
    }

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

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #1a1a1a;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: #ffffff;
        border: 1px solid color-mix(in srgb, #212529, transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #1a1a1a;
        padding: 10px 20px;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, #ce1212, transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: #ce1212;
        color: #ffffff;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: #ce1212;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: #ce1212;
        color: #ffffff;
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: #ffffff;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #ffffff;
    background-color: #1f1f24;
    font-size: 14px;
    padding: 40px 0;
    position: relative;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, #ffffff, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, #ffffff, transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #ce1212;
    border-color: #ce1212;
}

.footer .navigation-links a {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, #ffffff, transparent 50%);
    margin-right: 10px;
	margin-bottom: 10px;
    transition: 0.3s;
}

.footer .navigation-links a:hover {
    color: #ce1212;
    border-color: #ce1212;
}

.footer .copyright {
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, #ffffff, transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: #ffffff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid #ce1212;
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #ce1212;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, #ce1212, transparent 20%);
    color: #ffffff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    background-color: color-mix(in srgb, #212529, transparent 96%);
    color: #212529;
    background-color: #ffffff;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Open Sans", serif;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, #212529, transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: #212529;
    background-color: #ffffff;
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 56px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: color-mix(in srgb, #212529, transparent 50%);
    display: inline-block;
    text-transform: uppercase;
    font-family: "Open Sans", serif;
}

.section-title p {
    color: #37373f;
    margin: 10px 0 0 0;
    font-size: 48px;
    font-weight: 500;
}

.section-title p .description-title {
    color: #ce1212;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 60vh;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
}

.hero p {
    color: color-mix(in srgb, #212529, transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}

.hero .btn-get-started {
    color: #ffffff;
    background: #ce1212;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
    color: #ffffff;
    background: color-mix(in srgb, #ce1212, transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .hero-img img {
    border-radius: 25px;
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #212529;
    font-weight: 500;
}

.hero .btn-watch-video i {
    color: #ce1212;
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: #ce1212;
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, #ce1212, transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, #212529, #ffffff 50%);
}

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

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    font-size: 20px;
    color: #ce1212;
}

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

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.about .more-btn,
.about .more-btn:focus {
    color: #ffffff;
    background: #ce1212;
    font-size: 14px;
    padding: 10px 28px 12px 28px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

.about .more-btn:hover,
.about .more-btn:focus:hover {
    color: #ffffff;
    background: color-mix(in srgb, #ce1212, transparent 15%);
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/
.service h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.service .fst-italic {
    color: color-mix(in srgb, #212529, #ffffff 50%);
}

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

.service .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.service .content ul i {
    font-size: 20px;
    color: #ce1212;
}

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

.service .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.service .more-btn,
.service .more-btn:focus {
    color: #ffffff;
    background: #ce1212;
    font-size: 14px;
    padding: 10px 28px 12px 28px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

.service .more-btn:hover,
.service .more-btn:focus:hover {
    color: #ffffff;
    background: color-mix(in srgb, #ce1212, transparent 15%);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .icon-box {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, #212529, transparent 90%);
}

.why-us .icon-box i {
    color: #ce1212;
    font-size: 32px;
    margin-bottom: 30px;
    background: color-mix(in srgb, #ce1212, transparent 95%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    transition: 0.3s;
}

.why-us .icon-box h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 30px 0;
    font-family: "Open Sans", serif;
}

.why-us .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, #212529, transparent 30%);
}

.why-us .icon-box:hover i {
    color: #ffffff;
    background: #ce1212;
}

/*--------------------------------------------------------------
# Services Intros Section
--------------------------------------------------------------*/
.services .services-box {
    color: #ffffff;
    background: #ce1212;
    padding: 30px;
}

.services .services-box h3 {
    color: #ffffff;
    font-family: "Open Sans", serif;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.services .services-box p {
    margin-bottom: 30px;
}

.services .services-box .more-btn {
    display: inline-block;
    background: color-mix(in srgb, #ffffff, transparent 85%);
    padding: 8px 40px 10px 40px;
    color: #ffffff;
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
}

.services .services-box .more-btn i {
    font-size: 14px;
}

.services .services-box .more-btn:hover {
    color: #ce1212;
    background: #ffffff;
}

.services .icon-box {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, #212529, transparent 90%);
}

.services .icon-box i {
    color: #ce1212;
    font-size: 26px;
    margin-bottom: 30px;
    background: color-mix(in srgb, #ce1212, transparent 95%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 30px 0;
    font-family: "Open Sans", serif;
}

.services .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, #212529, transparent 30%);
}

.services .icon-box:hover i {
    color: #ffffff;
    background: #ce1212;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
    padding: 80px 0;
	background-color: #ce1212;
}

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

.stats .stats-item {
    padding: 30px;
    width: 100%;
}

.stats .stats-item span {
    font-size: 48px;
    display: block;
    color: #ffffff;
    font-weight: 700;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
    border-left: 3px solid #ce1212;
    padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
    border-radius: 50%;
    border: 4px solid #ffffff;
    margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, #212529, transparent 40%);
    margin: 0 0 10px 0;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, #ce1212, transparent 50%);
    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;
}

.testimonials .swiper-wrapper {
    height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, #212529, transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ce1212;
}

/*--------------------------------------------------------------
# Book a service Section
--------------------------------------------------------------*/
.book-a-service .reservation-img {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.book-a-service .reservation-form-bg {
    background: color-mix(in srgb, #212529, transparent 97%);
}

.book-a-service .reservation-form {
    padding: 30px;
}

@media (max-width: 575px) {
    .book-a-service .reservation-form {
        padding: 20px;
    }
}

.book-a-service .reservation-form input[type="text"],
.book-a-service .reservation-form input[type="email"],
.book-a-service .reservation-form input[type="tel"],
.book-a-service .reservation-form input[type="date"],
.book-a-service .reservation-form input[type="time"],
.book-a-service .reservation-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: #212529;
    background-color: color-mix(in srgb, #ffffff, transparent 20%);
    border-color: color-mix(in srgb, #212529, transparent 80%);
}

.book-a-service .reservation-form input[type="text"]:focus,
.book-a-service .reservation-form input[type="email"]:focus,
.book-a-service .reservation-form input[type="tel"]:focus,
.book-a-service .reservation-form input[type="date"]:focus,
.book-a-service .reservation-form input[type="time"]:focus,
.book-a-service .reservation-form textarea:focus {
    border-color: #ce1212;
}

.book-a-service .reservation-form input[type="text"]::placeholder,
.book-a-service .reservation-form input[type="email"]::placeholder,
.book-a-service .reservation-form input[type="tel"]::placeholder,
.book-a-service .reservation-form input[type="date"]::placeholder,
.book-a-service .reservation-form input[type="time"]::placeholder,
.book-a-service .reservation-form textarea::placeholder {
    color: color-mix(in srgb, #212529, transparent 70%);
}

.book-a-service .reservation-form button[type="submit"] {
    color: #ffffff;
    background: #ce1212;
    border: 0;
    padding: 14px 60px;
    transition: 0.4s;
    border-radius: 4px;
}

.book-a-service .reservation-form button[type="submit"]:hover {
    background: color-mix(in srgb, #ce1212, transparent 20%);
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .quote-img {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.quote ul i {
    font-size: 20px;
    color: #ce1212;
}

.quote .quote-form-bg {
    background: color-mix(in srgb, #212529, transparent 97%);
}

.quote .quote-form {
    padding: 30px;
}

@media (max-width: 575px) {
    .quote .quote-form {
        padding: 20px;
    }
}

.quote .quote-form input[type="text"],
.quote .quote-form input[type="email"],
.quote .quote-form input[type="tel"],
.quote .quote-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: #212529;
    background-color: color-mix(in srgb, #ffffff, transparent 20%);
    border-color: color-mix(in srgb, #212529, transparent 80%);
}

.quote .quote-form input[type="text"]:focus,
.quote .quote-form input[type="email"]:focus,
.quote .quote-form input[type="tel"]:focus,
.quote .quote-form textarea:focus {
    border-color: #ce1212;
}

.quote .quote-form input[type="text"]::placeholder,
.quote .quote-form input[type="email"]::placeholder,
.quote .quote-form input[type="tel"]::placeholder,
.quote .quote-form textarea::placeholder {
    color: color-mix(in srgb, #212529, transparent 70%);
}

.quote .quote-form button[type="submit"] {
    color: #ffffff;
    background: #ce1212;
    border: 0;
    padding: 14px 60px;
    transition: 0.4s;
    border-radius: 4px;
}

.quote .quote-form button[type="submit"]:hover {
    background: color-mix(in srgb, #ce1212, transparent 20%);
}

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

.gallery .swiper-wrapper {
    height: auto;
}

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

.gallery .swiper-pagination .swiper-pagination-bullet {
    background-color: color-mix(in srgb, #212529, transparent 85%);
    border: 0;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ce1212;
    opacity: 1;
}

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

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

    .gallery .swiper-slide-active {
        background: #ffffff;
        border: 6px solid #ce1212;
        padding: 4px;
        z-index: 1;
        transform: scale(1.2);
        transition: none;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
}

.contact .info-item .icon {
    color: #ffffff;
    background-color: #ce1212;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    margin-right: 15px;
}

.contact .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    font-family: "Open Sans", serif;
    color: color-mix(in srgb, #212529, transparent 30%);
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item .social-links a {
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    margin: 4px 6px 0 0;
    transition: 0.3s;
    color: color-mix(in srgb, #212529, transparent 50%);
}

.contact .info-item .social-links a:hover {
    color: #ce1212;
}

.contact .contact-form {
    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 30px;
}

@media (max-width: 575px) {
    .contact .contact-form {
        padding: 20px;
    }
}

.contact .contact-form input[type="text"],
.contact .contact-form input[type="email"],
.contact .contact-form input[type="tel"],
.contact .contact-form textarea {
    color: #212529;
    background-color: color-mix(in srgb, #ffffff, transparent 50%);
    border-color: color-mix(in srgb, #212529, transparent 80%);
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
}

.contact .contact-form input[type="text"]:focus,
.contact .contact-form input[type="email"]:focus,
.contact .contact-form input[type="tel"]:focus,
.contact .contact-form textarea:focus {
    border-color: #ce1212;
}

.contact .contact-form input[type="text"]::placeholder,
.contact .contact-form input[type="email"]::placeholder,
.contact .contact-form input[type="tel"]::placeholder,
.contact .contact-form textarea::placeholder {
    color: color-mix(in srgb, #212529, transparent 70%);
}

.contact .contact-form button[type="submit"] {
    color: #ffffff;
    background: #ce1212;
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .contact-form button[type="submit"]:hover {
    background: color-mix(in srgb, #ce1212, transparent 20%);
}

/*--------------------------------------------------------------
# 404 Section Section
--------------------------------------------------------------*/
.404 .btn-getstarted,
.404 .btn-getstarted:focus {
    color: #ffffff;
    background: #ce1212;
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

.404 .btn-getstarted:hover,
.404 .btn-getstarted:focus:hover {
    color: #ffffff;
    background: color-mix(in srgb, #ce1212, transparent 15%);
}
