* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --theme-main: #bf973d;
    --theme-secondary: #000;
}

body {
    overflow-x: hidden;
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'Lato', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Forum", serif !important;
    margin-bottom: 0;
}

ul li {
    list-style-type: none;
    color: #4d4d4d;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

ul {
    margin-bottom: 0 !important;
}

ol,
ul {
    padding-left: 0 !important;
}

a,
button {
    text-decoration: none !important;
    font-family: 'Lato', sans-serif !important;
}

a:hover {
    text-decoration: none !important;
    cursor: pointer;
}

p {
    color: #4d4d4d;
    font-size: 18px !important;
    line-height: 30px;
    font-weight: 400;
/*     margin-bottom: 0 !important; */
    position: relative;
	font-family: 'Lato', sans-serif !important;
}

img {
    max-width: 100%;
}

button:focus {
    outline: none;
    box-shadow: none !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.primary-btn {
    color: #fff;
    background: var(--theme-main);
    font-weight: 600;
    padding: 15px 30px !important;
    font-size: 18px;
    transition: .4s;
    max-width: max-content;
    text-transform: capitalize;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: block;
    letter-spacing: 1px;
    border-radius: 5px;
}

.primary-btn:hover {
    color: #fff;
    background: #272727;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
}

.primary-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: var(--theme-secondary);
    position: relative;
    text-transform: capitalize;
}

.secondary-title {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--theme-main);
    position: relative;
    max-width: max-content;
    letter-spacing: 2px;
}

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

.section-title p {
    width: 70%;
    margin: auto;
}

button.owl-prev {
    position: absolute;
    bottom: -80px;
    left: 45%;
    color: var(--theme-main) !important;
}

button.owl-next {
    position: absolute;
    bottom: -80px;
    left: 50%;
    color: var(--theme-main) !important;
}

button.owl-prev:hover,
button.owl-next:hover {
    background-color: transparent !important;
}

button.owl-prev i,
button.owl-next i {
    border: 2px solid var(--theme-main);
    height: 40px;
    width: 40px;
    line-height: 40px;
    transition: .4s;
    font-size: 20px;
}

button.owl-prev i:hover,
button.owl-next i:hover {
    background-color: var(--theme-main);
    border-color: var(--theme-main);
    transition: .4s;
    color: #fff;
}
.list-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.list-box li {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
}
.list-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 15px;
    width: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 520 520' style='enable-background:new 0 0 512 512' xml:space='preserve' class='hovered-paths'%3E%3Cg%3E%3Cpath d='M239.987 460.841a10 10 0 0 1-7.343-3.213L34.657 243.463A10 10 0 0 1 42 226.675h95.3a10.006 10.006 0 0 1 7.548 3.439l66.168 76.124c7.151-15.286 20.994-40.738 45.286-71.752 35.912-45.85 102.71-113.281 216.994-174.153a10 10 0 0 1 10.85 16.712c-.436.341-44.5 35.041-95.212 98.6-46.672 58.49-108.714 154.13-139.243 277.6a10 10 0 0 1-9.707 7.6z' fill='%2320263a'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25) !important;
}
/*=================Header Start=============*/

header.scrolled {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #000;
}

header.scrolled .top-header {
    display: none;
}

header.scrolled .navbar-hover .navbar-brand {
    width: 100px;
    padding: 0;
}
.home .navbar-hover {
	background: transparent;
}
.navbar-hover {
	background: #000;
}
.top-header {
    background-color: transparent;
    background-image: linear-gradient(225deg, var(--theme-main) 40%, var(--theme-secondary) 30%);
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--theme-main);
}

.top-header .row {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-header-left a {
    color: #fff;
    transition: .5s;
    font-weight: 400;
    font-size: 18px;
}

.top-header-left a i {
    color: var(--theme-main);
    margin-right: 5px;
    font-size: 15px;
}

.top-header-left a:first-child {
    margin-right: 10px;
}

.top-header-right {
    text-align: right;
}

.top-header-right ul {
    display: flex;
    justify-content: end;
    gap: 30px;
}

.top-header-right i {
    color: #fff;
    font-size: 16px;
}

.navbar-hover .navbar-brand {
    width: 160px;
    padding: 0;
}

.navbar-hover .nav-link {
    color: #fff;
    text-transform: capitalize;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 18px;
    font-weight: 400;
}

.navbar-hover .nav-item.active .nav-link {
    padding-bottom: 0;
    color: var(--theme-main);
    font-weight: 700;
}

.navbar-hover .nav-link:hover,
.navbar-hover .nav-link:focus {
    color: var(--theme-main);
}

.navbar-hover ul.dropdown-menu {
    border-radius: 0;
    padding: 0;
}

.navbar-hover ul.dropdown-menu li a {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
}

.navbar-hover ul.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #4f4f4f;
}

.navbar-hover .dropdown-item {
    text-transform: capitalize;
    color: #fff;
}

.navbar-hover .dropdown-menu {
    background: #272727;
}

.navbar-hover .dropdown-item:hover {
    background: var(--theme-main);
    color: #fff;
}

#navbarHover {
    justify-content: center;
}
#navbarHover .navbar-nav {
    gap: 30px;
}
/* <!-- ------------ Mobile Menu Start ---------- --> */
.mobile-menu-icon {
    background-color: var(--theme-secondary) !important;
    padding: 2px 4px !important;
}

.navbar-toggler-icon {
    background-image: url(../images/navigation.png) !important;
    width: 35px !important;
    height: 35px !important;
}

.mobile-menu .nav-item a {
    color: #000;
    max-width: max-content;
}

/* <!-- ------------ Mobile Menu End ---------- --> */
/*=================Header End =============*/
/*================= Body Section Start=============*/
.home-banner {
    position: relative;
    background-image: url('https://duencyitservices.in/wordpress/caviarchauffeurservices/wp-content/uploads/2025/08/pexels-tdcat-70912-new.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 820px;
    margin-top: 50px;
}

.home-banner .row {
    align-items: center;
}

.home-banner:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #000000b6;
}

.banner-row {
    position: absolute;
    width: 88%;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}

.banner-content h1 {
    font-size: 65px;
    font-weight: 300 !important;
    color: #fff;
    text-transform: capitalize;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.banner-content h1 small {
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 20px;
}

.banner-btns {
    display: flex;
    column-gap: 20px;
    padding-top: 20px;
}

.ui-datepicker-trigger {
    display: none;
}

.enquiry-form {
    background: #fff;
    border-radius: 60px 0 0;
    overflow: hidden;
    position: relative;
    width: 80%;
    margin-left: auto;
}

.enquiry-form-title {
    padding: 15px !important;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    width: 100%;
    background: var(--theme-main);
    font-size: 30px;
	margin-bottom: 0 !important;
}

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

.enquiry-form .row {
    row-gap: 0;
	padding: 40px;
}
.enquiry-form-col p {
	width: 100%;
	margin-bottom: 0 !important;
}
.enquiry-form input.form-control,
.enquiry-form .form-select {
    height: 45px !important;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    font-size: 14px;
    font-weight: 500;
    padding-left: 15px;
    background-color: #f7f7f7 !important;
    border-radius: 0;
}

.enquiry-form .form-control::placeholder,
.enquiry-form .form-control:focus,
.enquiry-form .form-control[type="text"],
.enquiry-form .form-control[type="email"],
.enquiry-form select,
.enquiry-form select:focus,
.enquiry-form .form-control {
    color: #7a7a7a;
}

.enquiry-form-col {
    position: relative;
}

.enquiry-form-col i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: var(--theme-main);
}

.enquiry-form-col-textarea i {
    top: 15%;
}

.enquiry-form-col-textarea textarea {
    height: 80px;
}

.enquiry-form .primary-btn {
    width: 100%;
    max-width: 100%;
    border: none;
    margin: auto;
}
.enquiry-form.contact-form .primary-btn {
    width: 100% !important;
    margin-top: 20px !important;
}
.enquiry-form.contact-form {
    width: 100%;
}
.contact-form .row {
    padding: 40px;
	background-color: #bf973d1c;
}
div.enquiry-form.contact-form .form-control, div.enquiry-form.contact-form .form-select {
    background-color: #fff !important;
}
.reservation-form .enquiry-form {
    width: 100% !important;
}
/* --- Banner End --- */
/* <!-- ------- Featured Section Start ---- --> */
.featured {
    position: relative;
    ;
}

.featured .row {
    gap: 0;
    align-items: center;
}

.featured-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0 10px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    border: 1px solid #eaeaeb;
    text-align: center;
    position: relative;
}

.featured-box-bg {
    background: var(--theme-main);
}

.featured-box-bg h2,
.featured-box-bg i {
    color: #fff !important;
}

.featured-box svg {
    width: 50px;
}

.featured-box-content h2 {
    color: var(--theme-secondary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.featured-box-content p {
    text-transform: capitalize;
    font-weight: 500 !important;
    color: var(--theme-secondary);
    font-size: 17px;
    line-height: 30px;
    padding-top: 10px;
}

.featured-box-content span {
    text-transform: capitalize;
    font-weight: 500 !important;
    color: #fff;
}

/* <!-- ------- Featured Section End ---- --> */
/* ------- About Section Satrt --------- */
.about-img {
    position: relative;
    height: 555px;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.about-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-content {
    padding-right: 40px;
}

.about-content .primary-btn {
    margin-top: 40px;
}

.about-content .list-box {
    border-top: 1px solid #00000026;
    padding-top: 20px;
    margin-top: 20px;
}

.about-content .list-box li {
    width: 48%;
}

.about-experience {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
}

.about-experience-box h2 {
    font-size: 45px;
    color: var(--theme-main);
}

/* ------- About Section End --------- */
/* <!-- ------- relocation Section Start ---- --> */
.relocation .row {
    align-items: center;
}

.relocation-img {
    display: flex;
    align-items: center;
    gap: 50px;
}

.relocation-img img {
    height: 615px;
    object-fit: cover;
    width: 95%;
}

.relocation-content {
    box-shadow: 0px 5px 30px 0px rgb(0 0 0/10%);
    padding: 60px;
}

.relocation-box {
    display: flex;
    gap: 20px;
}

.relocation-box h2 {
    font-size: 22px;
    text-transform: capitalize;
}

.relocation-box img {
    width: 50px;
    height: 50px;
}

.relocation-box:not(:last-child) {
    margin-bottom: 20px;
}

.relocation-content .primary-btn {
    margin-top: 40px;
}

/* <!-- ------- relocation Section End ---- --> */
/* ---- large-bg Start ---- */
.large-bg {
    background-image: url(https://duencyitservices.in/wordpress/caviarchauffeurservices/wp-content/uploads/2025/08/pexels-bleri-29580174.jpg);
    background-position: 20% 65%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 100px;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
}

.large-bg-contents {
    padding: 40px;
    background-color: #0000006b;
    border-radius: 15px;
    width: 90%;
    margin: auto;
}
.large-bg-contents .primary-title {
    color: #fff !important;
}
.large-bg .section-title p {
    margin-top: 10px;
    margin-bottom: 20px !important;
	color: #fff;
}

.large-bg-btn {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
}

/* ---- large-bg End ---- */
/* ---- Call to action Start ---- */
.call-to-action {
    background-image: url(../images/large-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    margin-top: 100px;
    background-position: 20% 80%;
}

.call-to-action::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000b9;
}

.call-to-action .secondary-title::before {
    display: none;
}

.call-to-action .section-title p {
    margin-top: 10px;
    margin-bottom: 20px !important;
}

.call-to-action-btn {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
}

/* ---- call to action End ---- */
/* <!-- ------- Top Activities Section Start ---- --> */
.activities-img {
    overflow: hidden;
    height: 610px;
    width: 100%;
    border-radius: 2px;
}

.activities-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    transition: .5s;
}

.activities-img:hover img {
    transform: scale(1.05);
}

.activities-content-col {
    background: #f2f8fb;
}

.activities-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    height: 100%;
}

.activities-content .primary-title {
    font-size: 40px;
    line-height: 50px;
}

/* <!-- ------- Top Activities Section End ---- --> */

/* ---- Service Section start ----- */

.service .service-row {
    row-gap: 30px;
    height: 100%;
}

.service-box {
    border-radius: 10px;
    transition: .4s;
    overflow: hidden;
    position: relative;
    background: #bf983d1a;
}

.service-box .row {
    height: 100%;
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-box svg {
    width: 45px;
}

.service-box:hover a {
    color: var(--theme-main);
}

.service-box .service-box-title {
    color: var(--theme-secondary);
    font-size: 25px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 20px 0;
}

.service-box p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.service-btn {
    display: none !important;
    color: var(--theme-main);
    font-size: 17px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.service-btn svg {
    height: 20px;
    width: 20px;
    fill: var(--theme-main);
}

.service-btn svg path {
    fill: var(--theme-main);
}

/* ----- Service Section End ---- */
/* ---- Our Fleet Section start ----- */
.fleet {
	position: relative;
    margin-bottom: 100px;
}
.fleet-box {
    border: 1px solid #e5e5e5;
    background-color: #f6f6f6;
    padding: 30px;
    border-radius: 5px;
    overflow: hidden;
	display: block;
}
.fleet-box:hover {
	background-color: #fff;
}
.fleet-box-title {
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 600;
	color: var(--theme-secondary);
	    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.fleet-box-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
	color: var(--theme-secondary);
	    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.fleet-box-details {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.fleet-box-details-box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.fleet-box-details-text {
    font-size: 15px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
	color: var(--theme-secondary);
}
.fleet-box-details-icon {
    position: relative;
    background-color: #fff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.fleet-box-details-icon img {
    width: 16px !important;
    margin: auto;
    height: 100%;
}
.fleet-box:hover .fleet-box-details-icon {
	background-color: #f6f6f6;
}
.fleet-box-img {
    width: 90% !important;
    margin: auto;
    height: 190px;
    object-fit: contain;
}
.owl-fleet .owl-prev {
    bottom: -25%;
}
.owl-fleet .owl-next {
    bottom: -25%;
}
/* ---- Our Fleet Section End ----- */
/* <!-- ------- service-process Section Start ---- --> */
.service-process {
    position: relative;
}

.service-process .section-title {
    position: relative;
    z-index: 1;
}

.service-process-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.service-process-content ul {
    display: flex;
    gap: 30px 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-process-content ul li {
    position: relative;
    width: 20%;
    text-align: center;
}

.service-process-content ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    background-image: url(../images/service-process-img.png);
    height: 120px;
    width: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 15%;
    left: 100%;
    filter: brightness(0%) contrast(0%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.service-process-content ul li h2 {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    padding-bottom: 10px;
    padding-top: 30px;
    color: var(--theme-main);
}

.service-process-icon {
    width: 120px;
    height: 120px;
    margin: auto;
    border: 1px solid var(--theme-main);
    border-radius: 100%;
    overflow: hidden;
    padding: 30px;
    display: block;
    position: relative;
}

.service-process-icon img {
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* <!-- ------- service-process Section Start ---- --> */
/* <!-- ------- Why Section Start ---- --> */
.why .row {
    row-gap: 50px;
}

.why-top-right {
    background: var(--theme-main);
    display: flex;
    padding: 40px;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.why-top-right-contact-img img {
    max-width: 60px;
}

.why-top-right-contact-info p {
    color: #fff !important;
}

.why-top-right-contact-info a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.why-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.why-box h3 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}

.why-box svg {
    height: 60px;
    width: 60px;
}

.why-box:hover {
    background: #eee;
}

/* <!-- ------- Why Section End ---- --> */
/* ------ Partners Section Start ----- */
.partners {
    position: relative;
    padding-top: 40px;
    padding-bottom: 100px;
    margin-top: 100px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.owl-partners .items img {
    height: 160px;
    padding: 10px;
    object-fit: contain;
    margin: 30px 0 120px 0;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
}
.owl-partners button.owl-prev {
    bottom: 0 !important;
}
.owl-partners button.owl-next {
    bottom: 0 !important;
}
/* ------ Partners Section End ----- */
/*================= Body Section End=============*/

/*================= Footer Start =============*/
.footer-contents {
    position: relative;
    background-image: url(https://duencyitservices.in/wordpress/caviarchauffeurservices/wp-content/uploads/2025/08/24741.jpg) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    padding-top: 20px;
    background-color: #1b1b23 !important;
    overflow: hidden;
    position: relative;
    z-index: 9;
    clear: both;
}

.footer-contents:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #000000d1;
}

.footer-contents {
    position: relative;
    z-index: 1;
}

.footer-logo a {
    width: 240px;
}

.footer-logo p {
    margin-top: 30px;
}

footer p {
    color: #fff;
}

footer a {
    transition: .4s;
    display: flex;
    max-width: max-content;
    color: #fff;
    font-weight: 400;
}

footer ul a:hover {
    color: var(--theme-main);
}

footer ul li a i {
    margin-right: 10px;
    margin-top: 4px;
    color: #fff;
}

.footer-title {
    text-transform: capitalize;
    font-size: 27px;
    position: relative;
    max-width: max-content;
    font-weight: 700;
    color: #fff;
}

footer ul {
    margin-top: 30px;
}

footer ul li:not(:last-child) {
    margin-bottom: 10px;
}

.quick-links a {
    text-transform: capitalize;
}

.quick-links li {
    position: relative;
    padding-left: 20px;
}

.quick-links li::before {
    content: '\f101';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    font-size: 12px;
}

.footer-social {
    display: flex;
    margin-top: 30px;
}

.footer-social li a {
    height: 45px;
    width: 45px;
    text-align: center;
    display: flex;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background: #fff;
    max-width: unset;
    justify-content: center;
    align-items: center;
    color: var(--theme-main);
}

.footer-social li:not(:last-child) {
    margin-right: 10px;
}

.footer-social li a:hover {
    margin: 0;
    background: var(--theme-main);
}

.footer-social li a:hover i {
    color: #fff !important;
}

.footer-social li i {
    margin: 0;
    transition: .4s;
    color: var(--theme-main);
}

.footer-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
}

.footer-bottom p a {
    padding-left: 5px;
    display: inline-flex;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-bottom p a:hover {
    text-decoration: underline !important;

}

.footer-payments p img {
    width: 300px;
}

.footer-center {
    border-bottom: 1px solid #ffffff8c;
    padding-top: 60px;
    padding-bottom: 50px;
    position: relative;
}

/*================= Footer End =============*/
/*<!-- ----------------- Bottom to Top Scroll Button Start ------------------>*/
#scrollTopBtn {
    position: fixed;
    bottom: 0;
    right: 35px;
    display: none;
    border: none !important;
    background: var(--theme-main);
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    font-size: 20px;
    z-index: 9;
}

#scrollTopBtn.show {
    display: block;
}

/*<!-- ----------------- Bottom to Top Scroll Button End ------------------>*/

/*<!-- ----------------- Whatsapp Chat Start ------------------>*/
.whatsapp-chat {
    position: fixed;
    bottom: 53px;
    right: 20px;
    color: #fff;
    width: 40px;
    z-index: 9;
}

@keyframes shakeWithPause {

    0%,
    10% {
        transform: translateX(0);
    }

    /* Start still */
    15% {
        transform: translateX(-10px);
    }

    /* Shake left */
    20% {
        transform: translateX(10px);
    }

    /* Shake right */
    25% {
        transform: translateX(-10px);
    }

    /* Shake left */
    30% {
        transform: translateX(10px);
    }

    /* Shake right */
    35% {
        transform: translateX(-5px);
    }

    /* Subtle left */
    40% {
        transform: translateX(5px);
    }

    /* Subtle right */
    45%,
    100% {
        transform: translateX(0);
    }

    /* Pause */
}

.shake {
    animation: shakeWithPause 3s ease-in-out infinite;
}

.fix-popup {
    cursor: pointer;
    position: fixed;
    left: 0;
    z-index: 999;
    bottom: 0;
    width: 100%;
    text-align: center;
    display: none;
}

.fix-popup a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background-color: #403570;
    padding: 11px 0;
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}

/*<!-- ----------------- Whatsapp Chat End ------------------>*/
/*===================================Responsive Start==========================*/
@media only screen and (max-width: 1399.5px) {
    .featured {
        width: 90%;
    }

    .featured-box {
        padding: 40px 20px;
    }

    .service-process-content ul li a {
        font-size: 17px;
    }

    .plr-100 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .row {
        margin: 0 !important;
        --bs-gutter: unset !important;
    }

    .footer-contact-contents a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1199.5px) {

    .footer-title {
        font-size: 25px;
    }

    footer .row {
        margin: 0 !important;
    }
}

@media only screen and (min-width: 992px) {
    .navbar-hover .collapse ul li {
        position: relative;
    }

    .navbar-hover .collapse ul li:hover>ul {
        display: block;
    }

    .navbar-hover .collapse ul ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        display: none;
    }

}

@media only screen and (max-width: 991.5px) {

    /* hover dropdown menus */
    .navbar-hover .show>.dropdown-toggle::after {
        transform: rotate(-90deg);
    }
.plr-100 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .pt-100 {
        padding-top: 50px !important;
    }

    .section-title p {
        width: 95%;
    }

    .primary-title {
		line-height: 40px;
        font-size: 30px;
    }

    .banner-content h1 {
        font-size: 55px;
    }

    .row {
        row-gap: 10px;
    }

    .zoo-box .form-group {
        margin-bottom: 10px;
    }

    .banner-content .secondary-title {
        font-size: 12px;
    }

    .banner-content h1 {
        font-size: 50px;
    }

    footer ul {
        margin-top: 35px;
    }

    .news-image {
        width: 60px;
        height: 40px;
    }

    .zoo-box {
        padding: 30px 20px;
    }

    .footer-social li a {
        height: 35px;
        width: 35px;
    }

    .service-process {
        padding-bottom: 60px;
        margin-top: 50px;
    }

    .large-bg {
        margin-top: 50px;
        width: 90%;
    }

    .testimonial img {
        margin-bottom: 40px !important;
    }

    .footer-contact.justify-content-center {
        justify-content: start !important;
    }

    .service-process-content ul {
        gap: 30px 10px;
    }

    .service-process-content ul li {
        width: 48%;
    }

    .enquiry-form-title {
        font-size: 26px;
    }

    .service h2 {
        text-align: center;
    }
}


@media only screen and (max-width: 425px) {
    .fix-popup {
        display: block;
    }

    .top-header-right {
        display: none;
    }

    nav.navbar.navbar-expand-lg.navbar-hover.plr-100 {
        background: #fff;
    }

    .inner-banner {
        padding: 210px 0 90px;
    }

    .privacy-content {
        text-align: center;
    }

    .plr-100 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .inner-banner {
        padding: 210px 0 70px;
    }

    .navbar-hover .navbar-brand {
        width: 180px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .banner-box h2 {
        font-size: 30px;
    }

    .section-title {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .romeval {
        margin-bottom: 10px;
    }

    .enquiry-form {
        display: none;
    }

    .top-header-left {
        text-align: center;
    }

    .top-header-right ul {
        justify-content: center;
    }

    .secondary-title {
        font-size: 14px;
        font-weight: 600;
    }

    .about-img {
        height: auto;
    }

    .home-banner {
        height: 600px;
    }

    .relocation-content {
        padding: 0;
    }

    .banner-content h1 {
        font-size: 45px;
    }

    .why .row {
        row-gap: 30px;
    }

    .activities-content {
        padding: 0;
    }

    .activities-content .primary-title {
        font-size: 29px;
        line-height: 40px;
    }

    .banner-content h1 span {
        font-size: 22px;
    }

    .activities-content {
        padding: 30px 0;
    }

    .featured .row {
        gap: 20px;
    }

    .about-content {
        padding-right: 0;
    }

    .about .row {
        row-gap: 30px;
    }

    .about-img img {
        height: auto;
    }

    .featured {
        margin-top: 30px;
    }

    .enquiry-form form {
        padding: 30px 10px 80px 10px;
    }

    .enquiry-form .primary-btn {
        padding: 17px 60px !important;
    }

    .relocation-img {
        flex-direction: column;
    }

    .footer-social {
        margin-top: 15px;
    }

    .enquiry-form-title {
        font-size: 32px;
        padding: 25px 10px 0;
    }

    .large-bg .section-title p {
        margin-bottom: 20px !important;
    }

    .service-box a {
        font-size: 18px;
    }

    .partners {
        margin-top: 0;
    }

    button.owl-prev {
        left: 35%;
    }

    .owl-partners .items img {
        max-width: max-content;
        margin: 30px auto 100px auto;
    }

    button.owl-prev {
        left: 35%;
    }

    .service-process-content ul {
        flex-direction: column;
    }

    .service-process-content ul li {
        width: 100%;
    }

    .large-bg-btn {
        flex-direction: column;
        row-gap: 15px;
    }

    .footer-center {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-right.text-end {
        text-align: center !important;
    }

    .relocation-content {
        padding: 0;
    }

    .primary-btn {
        min-width: 182px !important;
        margin-bottom: 10px;
    }

    .service h2 {
        font-size: 25px;
        text-align: center;
    }

    .fix-popup {
        display: block;
    }

    .privacy-content h1 {
        text-align: center;
    }

    .privacy-content {
        text-align: center;
    }
	.large-bg-btn {
        flex-direction: column;
    }
	.large-bg-contents {
		width: 100%;
	}
	.large-bg-contents {
		padding: 10px;
	}
	.primary-title {
		font-size: 25px;
		line-height: 30px;
	}
	.large-bg {
		margin-bottom: 50px;
	}
}

@media only screen and (max-width: 320.5px) {
    .banner-content h1 {
        font-size: 24px;
    }

    .banner-btns {
        flex-wrap: wrap;
        row-gap: 10px;
    }
}

/*===================================Responsive End==========================*/


.before-after-gallery .gallery {
    background: white;
}

.before-after-gallery .gallery-cell {
    width: 70%;
    height: 600px;
    background-position: center;
    background-size: cover;
    margin: 0 20px;
}

.before-after-gallery .gallery-cell img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-gallery .flickity-page-dots {
    bottom: -50px;
}

.before-after-gallery .flickity-page-dots .dot {
    background-color: #D9D9D9;
    opacity: 1;
    height: 15px;
    width: 15px;
}

.before-after-gallery .dot.is-selected {
    background-color: black;
}

.before-after-gallery .slider-buttons {
    text-align: center;
    margin-top: 20px;
}

.before-after-gallery .slider-buttons button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
}

.before-after-gallery .slider-buttons button:hover {
    background-color: #444;
}