* {
    padding: 0;
    margin: 0;
    --primary-font: "Work Sans", sans-serif;
    --secondary-font: "Montserrat", sans-serif;
    --bg-primary-color: #432b7d;
    --bg-white: #ffffff;
    --bg-secondary-color: #e4a724;
    --bg-black: #000000;
    --bg-primary-light: #e9e1f9;
    --bg-purple-mid: rgba(67, 43, 125, 64%);
}

body {
    font-family: var(--primary-font);
    overflow-x: hidden;
}

ul,
a {
    list-style-type: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

span {
    margin: 0;
    padding: 0;
}

.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

.text-primary {
    color: var(--bg-secondary-color) !important;
}

.bg-primary {
    background-color: var(--bg-secondary-color) !important;
}

.bg-secondary {
    background-color: var(--bg-primary-color) !important;
}

.text-secondary {
    color: var(--bg-primary-color) !important;
}

.fw-medium {
    font-weight: 500;
}

.border-secondary {
    border-color: var(--bg-primary-color) !important;
}

.cursor-pointer {
    cursor: pointer;
}

/* header css starts here  */

/* staller nav mobile  */
.stellarnav.mobile a {
    color: #fff;
}

.stellarnav.mobile .menu-toggle span.bars span {
    background: #fff;
}

/* staller nav mobile  */

.stellarnav li a {
    font-size: 18px;
    color: var(--bg-white);
    padding-right: 22px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
}

/* dropdown caret css  */
.stellarnav li.has-sub>a::after {
    margin-left: 7px;
    border-left: none;
    border-right: 3px solid var(--bg-white);
    border-bottom: 3px solid var(--bg-white);
    width: 10px;
    height: 10px;
    rotate: 45deg;
    border-top: none;
    transition: all 0.4s;
}

.stellarnav li.has-sub:hover>a::after {
    border-right: 3px solid var(--bg-secondary-color);
    transition: all 0.4s;
    border-bottom: 3px solid var(--bg-secondary-color);
}

.stellarnav li a::before {
    position: absolute;
    width: 5px;
    height: 5px;
    content: "";
    background-color: transparent;
    border-radius: 1px;
    top: 50%;
    left: -10px;
    transition: all 0.5s ease;
    transform: translateY(-50%);
}

.stellarnav li:hover>a,
.stellarnav li.active a {
    color: var(--bg-secondary-color);
}

.stellarnav li.active a {
    font-size: 20px;
    font-weight: 600;
}

.stellarnav li.active a::before,
.stellarnav li:hover a::before {
    background-color: var(--bg-secondary-color) !important;
}

.stellarnav li {
    margin-right: 35px;
    text-transform: capitalize;
}

.stellarnav li:last-child {
    margin-right: 0;
}

.stellarnav li.active {
    color: #fff;
    position: relative;
}

.stellarnav ul li li a {
    font-size: 16px;
}

.stellarnav ul li li a::before {
    display: none;
}

.stellarnav.desktop li.has-sub li a {
    color: var(--bg-black);
    font-size: 16px;
    display: inline-block;
    line-height: 34px;
    padding: 0;
}

.stellarnav.desktop li.has-sub li a:hover {
    color: var(--bg-secondary-color);
}

.stellarnav:not(.mobile)>ul>li.drop-left>ul {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 12px 16px 17px 13px;
    left: 0;
    right: auto;
    margin-top: 4px;
    box-shadow: 0px 0px 1px 0px #0009;
}

.stellarnav.mobile {
    order: 2;
}

.banner {
    background-image: url("../images/home-banner.webp");
    background-size: cover;
    position: relative;
    width: 100%;
    top: 0;
    background-position: center center;
    background-repeat: no-repeat;
}

.header-area {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0 10px;
    background-color: var(--bg-primary-color);
    transition: all 0.3s;
}

.inner-page .fixed-top.header-area,
.fixed-top.header-area {
    border-bottom: 1px solid #fff5;
    transition: all 0.3s;
    padding: 10px 0;
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stellarnav>ul>li>a {
    padding: 0px 0px;
}

.stellarnav {
    width: auto;
}

.phone {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
}

.phone a {
    color: var(--bg-white);
    font-size: 21px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.phone a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0px;
    transition: all 0.3s ease;
}

.phone a:first-child .svg {
    margin-right: 5px;
}

.phone a:last-child .svg {
    margin-left: 25px;
}

.phone a:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0px;
    transition: all 0.5s ease;
}

.phone a:hover {
    color: var(--bg-secondary-color);
}

.phone a:last-child svg {
    margin-right: 10px;
}

.whatsapp {
    order: 1;
    justify-content: center;
    align-items: center;
}

.contact {
    order: 1;
    justify-content: space-between;
}


.whatsapp>a {
    padding-left: 11px;
    position: relative;
}

.contact .whatsapp>a::after {
    content: "";
    position: absolute;
    width: 1px;
    background-color: var(--bg-white);
    height: 48px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.banner {
    background-color: var(--bg-primary-color);
    position: relative;
    top: 0;
    padding-top: 60px;
    padding-bottom: 81px;
}

.main-form {
    padding: 18px 23px 18px 23px;
    background-color: rgba(32, 13, 78, 30%);
    border-radius: 4px;
    position: relative;
    margin-bottom: 47px;
}

.form-to-from {
    max-width: 522px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: auto; */
    margin-right: 15px;
}

.form-to-from .svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
}

.form-1 .form-to-from .form-control {
    padding-left: 55px;
    font-size: 20px;
    border-radius: 7px;
    border: 1px solid transparent;
    height: 63px;
    font-weight: 400;
    padding-right: 38px;
}

.form-1 .form-to-from .form-control::placeholder {
    color: rgba(107, 107, 107, 0.5);
    text-transform: capitalize;
}

.form-1 .form-to-from select.form-control,
.form-1 .form-to-from .form-control.inputValue {
    color: rgba(107, 107, 107, 0.5);
}

/* .form-1 .form-to-from input:first-child {
  margin-right: 10px;
} */

.form-1 .form-button .btn.submit-btn {
    display: flex;
    justify-content: center;
    color: var(--bg-white);
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    height: 100%;
    text-transform: uppercase;
    width: 100%;
}

.form-1 .form-button {
    background-color: var(--bg-secondary-color);
    max-width: 191px;
    width: 100%;
    border-radius: 5px;
}

.form-1 .form-button .svg {
    margin-left: 20px;
}

.main-form .form-1 .form-to-from:first-child {
    position: relative;
}

.main-form .form-1 .form-to-from:first-child::after {
    position: absolute;
    content: "";
    background-image: url("/images/form-link.png");
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 24px;
    right: -29px;
    z-index: 1;
}


/* banner starts here  */
.banner .custom-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.banner-images img {
    box-shadow: 5px 5px 16px 0 rgba(0, 0, 0, 31%);
    border-radius: 18px;
    /* aspect-ratio: 648/462; */
}

.banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(67, 43, 125, 10%);
    margin-top: 0px;
    background-position: 0 bottom;
}

.banner-heading {
    padding-top: 5px;
    position: relative;
    padding-bottom: 40px;
}

.banner-heading span.top-heading {
    display: inline-block;
    font-size: 42px;
    font-weight: 400;
    color: var(--bg-white);
    text-transform: capitalize;
}

.banner-heading h1 span.title {
    color: var(--bg-white);
    font-size: 47px;
    font-weight: 700;
    text-transform: uppercase;
}

.banner-heading h1 span.bottom-heading {
    font-size: 63px;
    color: var(--bg-white);
    font-weight: 200;
    display: block;
}

.banner-heading::after {
    position: absolute;
    content: "";
    width: 300px;
    height: 2px;
    background-color: var(--bg-secondary-color);
    bottom: 0;
}

.company-logos {
    justify-content: space-between;
    align-items: center;
    padding-top: 52.1px;
    justify-content: flex-start;
}

.footer {
    background-color: var(--bg-primary-color);
    padding-top: 65px;
    padding-bottom: 30px;
    position: relative;
}

.cal {
    position: relative;
    max-width: 459px;
    width: 100%;
}

.call-details p {
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--bg-white);
}

/* .cal svg{
    background-color: #C1B9D4;
    border-radius: 4px;
    padding: 10px;
} */
.contact-us {
    border: 1px solid #c1b9d4;
    border-radius: 6px;
    padding: 21px 40px;
}

.cal a {
    font-size: 20px;
    color: var(--bg-white);
    transition: all 0.5s ease;
}

.cal a:hover {
    color: var(--bg-secondary-color);
}

.call-details {
    padding-left: 20px;
}

.cal:first-child:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 66px;
    right: 75px;
    background-color: #c1b9d4;
}

.cal:first-child {
    max-width: 350px;
    width: 100%;
}

.cal:nth-child(2):before {
    position: absolute;
    content: "";
    width: 1px;
    height: 66px;
    right: 68px;
    background-color: #c1b9d4;
}

.call-detail p:first-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
}

.call-detail p:last-child {
    font-size: 16px;
    color: var(--bg-white);
    line-height: 18px;
}

.cal-footer-img {
    /* padding: 9px; */
    width: 66px;
    height: 66px;
    background-color: #c1b9d4;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .call svg{
    background-color: #C1B9D4;
    border-radius: 4px;
    padding: 10px;
} */
.footer-detailing {
    padding-top: 60px;
}

.footer-logo {
    padding-left: 28px;
}

.footer-logo img {
    aspect-ratio: 144/79;
}

.call {
    align-items: start;
}

.call-detail {
    padding-left: 20px;
    max-width: 316px;
    width: 100%;
}

.quick-links span {
    color: var(--bg-secondary-color);
    font-size: 26px;
    font-weight: 600;
}

.quick-links ul li a {
    font-size: 22px;
    color: var(--bg-white);
    position: relative;
    transition: all 0.5s ease;
}

.quick-links ul li a:hover {
    color: var(--bg-secondary-color);
    padding-left: 12px;
}

.quick-links ul li {
    line-height: 41px;
}

.quick-links ul li a.active {
    padding-left: 12px;
    color: var(--bg-secondary-color);
}

.quick-links ul li a:before {
    color: var(--bg-secondary-color);
}

.quick-links ul li a::before {
    position: absolute;
    width: 5px;
    height: 5px;
    content: "";
    background-color: transparent;
    border-radius: 1px;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    transition: all 0.5s ease;
}

.quick-links ul li a:hover::before {
    background-color: var(--bg-secondary-color);
}

.quick-links ul li a.active::before {
    background-color: var(--bg-secondary-color);
}

.social-icon a {
    display: flex;
    align-items: center;
}

.social-icon a span {
    color: var(--bg-secondary-color);
    font-size: 0;
    font-weight: 500;
    text-align: center;
    transition: all 0.4s ease;
    text-transform: capitalize;
    overflow: auto;
}

.social-icon a:hover span {
    /* width: initial; */
    font-size: 18px;
    padding-left: 10px;
    transition: all 0.3s;
}

.footer-icons {
    justify-content: flex-end;
    padding-top: 6px;
}

.social-icon {
    justify-content: space-between;
    margin-right: 25px;
}

.social-icon:last-child {
    margin-right: 0;
}

.social-icon svg {
    fill: var(--bg-white) !important;
    transition: all 0.4s ease;
    width: 30px;
    height: 30px;
}

.copywrite p:first-child {
    font-weight: 600;
    margin-bottom: 20px;
}


.social-icon:hover svg {
    fill: var(--bg-secondary-color) !important;
}

.copywrite {
    padding-top: 40px;
    color: var(--bg-white);
    font-size: 16px;
}

.copywrite p:last-child {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
}

.main-heading {
    text-align: center;
}

.main-heading h2 {
    display: inline-block;
    color: #444444;
    font-size: 34px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-heading h2:before {
    position: absolute;
    content: "";
    background-image: url("/images/left-design.png");
    width: 50px;
    height: 40px;
    top: 50%;
    transform: translate(-100%, -50%);
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
    left: -10px;
}

.company-logos img {
    margin-right: 30px;
    aspect-ratio: auto;
    height: 56px;
    width: auto;
    object-fit: contain;
}

.company-logos img:nth-last-of-type(1) {
    margin-right: 30px;
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 56px;
}

.google-reviews-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.google-reviews-badge .g-icon {
    display: flex;
    align-items: center;
    background: #fff;
}

.g-icon img{
    width: 40px;
    height: 40px;
}

.google-reviews-badge .reviews-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.google-reviews-badge .stars {
    color: #fbbc04;
    font-size: 13px;
    margin-bottom: 2px;
    display: flex;
    gap: 1px;
}

.google-reviews-badge .reviews-stats {
    font-size: 12px;
    color: #3c4043;
    font-family: var(--secondary-font);
    white-space: nowrap;
    line-height: 1;
}

.google-reviews-badge .reviews-stats strong {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
}

.google-reviews-badge .reviews-stats span {
    color: #5f6368;
    margin-left: 5px;
    font-weight: 500;
}


.main-heading h2::after {
    position: absolute;
    content: "";
    background-image: url("/images/right-design.png");
    width: 50px;
    height: 40px;
    right: -10px;
    top: 50%;
    transform: translate(100%, -50%);
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.main-heading h4:before,
.main-heading h3:before {
    position: absolute;
    content: "";
    background-image: url("/images/left-design.png");
    width: 50px;
    height: 40px;
    left: -10px;
    top: 50%;
    transform: translate(-100%, -50%);
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.main-heading h4,
.main-heading h3 {
    position: relative;
}

.main-heading h4:after,
.main-heading h3:after {
    position: absolute;
    content: "";
    background-image: url("/images/right-design.png");
    width: 50px;
    height: 40px;
    right: -10px;
    top: 50%;
    transform: translate(100%, -50%);
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.main-heading span {
    display: block;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    max-width: 573px;
    width: 100%;
    margin: auto;
    /* letter-spacing: 7px; */
    line-height: 21px;
}

.all-inclusives {
    padding-top: 30px;
    padding-bottom: 45px;
}

.moon-star-img {
    background-color: #e4a724;
    padding: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -19px;
    top: 1px;
    outline: 5px solid var(--bg-primary-color);
}

.moon-star {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 22px;
    left: 40px;
    z-index: 1;
}

.moon-star p {
    font-size: 18px;
    padding-left: 10px;
    color: var(--bg-white);
    background-color: var(--bg-primary-color);
    font-weight: 600;
    padding: 6px 22px 7px 34px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    text-transform: capitalize;
}

/* .inclusive-img.position-relative {
	margin-bottom: 10px;
} */
.inclusive-detail {
    border-radius: 13px;
    border: 1px solid #d8d8d8;
    margin-bottom: 33px;
    background-color: var(--bg-white);
    transition: all 0.5s linear;
    border-bottom-left-radius: 29px;
    border-bottom-right-radius: 29px;
    margin-top: 35px;
}

.ranks {
    justify-content: center;
    align-items: center;
    line-height: 2px;
}

/* .ranks svg{
  fill: #D5D5D5;

} */
.dropdown-menu li a {
    color: var(--bg-black);
    font-weight: 400;
}

.main-form .form-1 .form-to-from:first-child>svg {
    top: 50%;
    transform: translateY(-50%);
}

.inclusive-img img {
    border-radius: 13px;
    aspect-ratio: 424/312;
}

.inclusive-further-detail {
    padding: 10px 20px 20px;
}

.month-package p {
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-primary-color);
    text-transform: capitalize;
    line-height: 1.9375rem;
    margin-top: 7px;
    margin-bottom: 13px;
}

.package-price p {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-secondary-color);
    text-align: center;
}

.package-price sub {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--secondary-font);
    left: 0;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}

.package-price a {
    max-width: 140px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
    background-color: var(--bg-primary-color);
    border-radius: 4px;
    padding: 6px 3px;
    transition: all 0.5s ease;
}

.package-price a:hover {
    background-color: var(--bg-secondary-color);
}

.umrah-nights-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.umrah-nights-wrapper .umrah-nights {
    display: flex;
}

.umrah-nights-wrapper .umrah-nights img {
    width: 42px;
    height: 42px;
}

.umrah-nights-wrapper .umrah-nights p {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    margin-left: 3px;
}

.umrah-nights-wrapper .umrah-nights p span {
    display: block;
    text-align: end;
    font-size: 12px;
    font-weight: 700;
    color: #E4A724;
}

.umrah-facility ul {
    display: flex;
    justify-content: space-between;
}


.inclusives::before {
    position: absolute;
    content: "";
    top: 0;
    height: 525px;
    width: 100%;
    background-color: rgba(67, 43, 125, 10%);
}

.continent-swiper .swiper-button-prev,
.continent-swiper .swiper-button-next {
    position: absolute;
    background-color: var(--bg-primary-color);
    width: 34px;
    height: 44px;
    border-radius: 5px;
    transition: all 0.5s linear;
}

.continent-swiper .swiper-button-next {
    right: auto;
    left: 14px;
}

.continent-swiper .swiper-button-next:hover {
    background-color: var(--bg-secondary-color);
}

.continent-swiper .swiper-button-prev {
    left: -40px;
}

.continent-swiper .swiper-button-prev:hover {
    background-color: var(--bg-secondary-color);
}

.btn-cover {
    display: flex;
    justify-content: space-between;
}

/* .continent-swiper .swiper-button-next::after {

} */
/* .continent-swiper .swiper-button-prev::after {
	font-size: 13px;
	color: var(--bg-white);
} */
.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    content: "";
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
    content: "";
}

.customize {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 60px;
    padding-bottom: 160px;
}

/* .customize::before {
  position: absolute;
  content: "";
  background-image: url("/images/pattern-left.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  top: 0;
  left: 0;
  z-index: 0;
  width: 439px;
  height: 445px;
}

.customize::after {
  position: absolute;
  content: "";
  background-image: url("/images/pattern-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  top: 0;
  right: 0;
  z-index: 0;
  width: 439px;
  height: 445px;
} */

.customize .main-heading h2 {
    color: var(--bg-white);
}

.customize .main-heading span {
    color: var(--bg-white);
}

.customize-para {
    padding-top: 45px;
}

.customize-para p {
    font-size: 22px;
    font-weight: 500;
    color: var(--bg-white);
    text-align: center;
    line-height: 24px;
    margin: auto;
    max-width: 520px;
}

.customize-offer p {
    color: var(--bg-white);
    font-size: 24px;
    font-weight: 600;
    line-height: 39px;
    text-align: center;
    max-width: 520px;
    margin: auto;
}

.customize .main-form {
    margin-bottom: 9px;
    margin-top: 10px;
}

/* .main-heading h2, */
.main-heading h4,
.main-heading h3 {
    display: inline-block;
    color: #444444;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
}

/* .main-heading span{
  font-size: 18px;
  font-weight: 400;
} */
.choose-us .main-heading span {
    color: var(--bg-white);
}

.faq {
    padding-top: 20px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.faq-accordian .accordion-button::after {
    background-image: url("/images/plus.png");
    background-position: center;
}

.faq-accordian .accordion-button {
    padding: 20px 23px;
    font-size: 20px;
    font-weight: 500;
    color: #535353;
    line-height: 24px;
    background-color: transparent;
    box-shadow: none;
}

.faq-accordian .accordion-item {
    border-width: 2px 0 2px 0;
    border-color: #ececec;
    border-style: solid;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 24px;
    flex: 0 0 47%;
    margin-right: 27px;
}

.accordion.accordian-scrollbar {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.faq-accordian .accordion-button:not(.collapsed)::after {
    background-image: url("/images/minus.png");
    background-position: center;
    transform: initial;
}

.scrollbar-thumb {
    background: var(--bg-primary-color) !important;
}

.scrollbar-content {
    max-height: 484px;
}

.faq-accordian .accordion-body {
    padding: 20px 23px 26px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #535353;
}

.faq-section-main {
    max-width: 1154px;
    margin: 50px auto 0;
    padding-right: 50px;
    height: 583px;
    overflow-y: scroll;
}

.scrollbar {
    padding-top: 34px;
    padding-bottom: 60px;
}

.choose-us {
    padding-top: 57px;
}

.choose-us .main-heading h3 {
    color: var(--bg-white);
    position: relative;
}

.choose-us .main-heading h3::before {
    background-image: url("/images/purple-left.png");
    position: absolute;
    content: "";
}

.choose-us .main-heading h3::after {
    background-image: url("/images/purple-right.png");
    position: absolute;
    content: "";
}

.choose-us::before {
    position: absolute;
    content: "";
    background-image: url("/images/pattern-left-design.webp");
    background-size: 318px;
    background-repeat: no-repeat;
    background-position: left top;
    top: 0;
    left: 0;
    z-index: -1;
    width: 439px;
    height: 445px;
}

.choose-us::after {
    position: absolute;
    content: "";
    background-image: url("/images/pattern-right-design.webp");
    background-size: 318px;
    background-repeat: no-repeat;
    background-position: right top;
    top: 0;
    right: 0;
    z-index: -1;
    width: 439px;
    height: 445px;
}

.why-choose-us {
    padding-top: 49px;
    padding-bottom: 70px;
}

.choose-us-detail {
    background-color: #f1f0f6;
    border-radius: 21px;
    padding: 32px 25px 29px;
    margin-top: 38px;
    transition: all 0.3s linear;
}

.choose-us-detail:hover {
    transform: translateY(-38px);
    box-shadow: 6px 6px 7px rgba(45, 26, 91, 60%);
}

.choose-us-detail:hover span {
    text-decoration: underline;
}

.choose-us-img {
    text-align: center;
}

.choose-detail {
    text-align: center;
    padding-top: 10px;
}

.choose-detail span {
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.choose-detail p {
    font-size: 16px;
    line-height: 16px;
    margin-top: 5px;
}

.karbala-packages {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.karbala-packages {
    padding-top: 70px;
}

.night-stars {
    justify-content: space-between;
    align-items: center;
}

.karbala-detail {
    margin-bottom: 200px;
    transition: all 0.6s linear;
}

.karbala-detail .night-stars .ranks {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 22px;
    right: 18px;
    background-color: var(--bg-primary-color);
    border-radius: 4px;
    padding: 8px 11px;
}

.karbala-further-detail {
    background-color: #aba0c7;
    border-radius: 4px;
    margin: 0 26px;
    position: absolute;
    z-index: 1111;
    bottom: -74px;
    padding: 18px 17px 10px;
    transition: all 0.5s linear;
}

/* .karbala-detail:hover .karbala-further-detail{
  transform: translateY(-96px);
} */
.days-package p {
    font-size: 22px;
    font-weight: 500;
    color: var(--bg-white);
    line-height: 29px;
}

.karbala-package-price p {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-primary-color);
    text-align: center;
}

.karbala-package-price p sub {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.enquire-detail-buttons {
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    padding: 0 0px;
}

/* .karbala-detail a{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
} */
.enquire-detail-buttons .btn-detail {
    background-color: var(--bg-secondary-color);
    color: var(--bg-white);
    margin-right: 16px;
    /* max-width: 136px;
  width: 100%; */
}

.enquire-detail-buttons .btn-enquire {
    background-color: var(--bg-secondary-color);
    color: var(--bg-white);
    /* max-width: 136px;
  width: 100%; */
}

.cheap-karbala-package {
    margin-top: 62px;
}

.cheap-karbala-package .btn-cover {
    transform: translateY(-94px);
    position: relative;
    z-index: 2;
}

.client-reviews {
    padding-top: 50px;
    padding-bottom: 77px;
}

.review-detail {
    width: 506px;
    background-color: #f6f2ff;
    margin-top: 116px;
    padding: 0 49px;
    margin-bottom: 90px;
    border-radius: 16px;
}

.review-detail {
    width: 506px;
    background-color: #f6f2ff;
    margin-top: 116px;
    padding: 0 49px;
    margin-bottom: 90px;
    border-radius: 16px;
    transition: all 0.4s EASE;
}

/* .review-detail:hover{
  width: 653px;
  transform: translatey(-20%);
} */
.comas {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.client-reviews p {
    text-align: center;
}

.review-img {
    position: absolute;
    bottom: -69px;
    right: 25px;
}

.review-img img {
    border-radius: 13px;
    aspect-ratio: 129/129;
}

.makkah-round-img img,
.scroll-makkah-image img {
    border-radius: 16px;
    aspect-ratio: 424/518;

}

.scroll-makkah-image img {

    aspect-ratio: 536/498;

}

.client-name {
    padding-top: 22px;
}

.client-name p {
    text-align: start;
    font-size: 20px;
    font-weight: 600;
}

.client-name span {
    font-size: 18px;
    font-weight: 300;
}

.review-stars svg {
    width: 15px;
    height: 15px;
}

.review-stars {
    word-spacing: -4px;
}

.client-reviews .custom-container {
    max-width: 1715px;
    width: 100%;
    margin: auto;
}

.client-reviews .swiper-slide,
.swiper-slide {
    justify-content: center;
    display: flex;
}

.client-perception {
    padding-top: 63px;
    padding-bottom: 31px;
}

.client-perception p {
    font-size: 18px;
    line-height: 23px;
}

.client-reviews::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 118px;
    background-color: rgba(212, 204, 230, 70%);
    top: 359px;
}

.client-reviews .btn-cover .swiper-button-prev {
    right: 30px;
}

.makkah-description {
    padding-top: 50px;
}

.makkah-content h1,
.makkah-content h2,
.makkah-content h3,
.makkah-content h4,
.makkah-content h5,
.makkah-content h6 {
    color: var(--bg-primary-color);
    line-height: normal;
    margin: 10px 0;
}

.makkah-content h1 {
    font-size: 34px;
    font-weight: 700;
}

.makkah-content p {
    font-size: 18px;
    font-weight: 400;
}

.makkah-content h2 {
    font-size: 26px;
    font-weight: 500;
    padding: 15px 0;
}

.makkah-content h3 {
    font-size: 26px;
    font-weight: 500;
    padding: 15px 0;
}

.makkah-content h4 {
    font-size: 27px;
    font-weight: 500;
    padding: 15px 0;
}

.makkah-content h5 {
    font-size: 27px;
    font-weight: 500;
    padding: 15px 0;
}

.makkah-content h6 {
    font-size: 27px;
    font-weight: 500;
    padding: 15px 0;
}

.makkah-scroolbar {
    padding-top: 35px;
}

.scrollbar-track-y,
.scrollbar-thumb {
    width: 10px !important;
}

.makkah-scroolbar .scrollbar-track-y {
    left: 0;
    background-color: #c1b8d3;
    border-radius: 9px;
}

.scroll-content {
    margin-left: 25px;
}

.faq-accordian {
    padding-top: 40px;
}

.visa-img {
    text-align: end;
    padding-top: 40px;
}

.visa-img img {
    aspect-ratio: 312/48;
}

.swiper-btns {
    position: relative;
    left: 37px;
}

.viewall .btn-view {
    display: inline-block;
    border: none;

}


.viewall .btn-view a {
    background-color: var(--bg-primary-color);
    border-radius: 6px;
    border: none;
    color: var(--bg-white);
    padding: 8px 38px;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.5s ease;

}

.viewall .btn-view a:hover {
    background-color: var(--bg-secondary-color);
}

.inclusive-detail:hover {
    transform: translateY(-30px);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 16%);
}

/* .inclusives .swiper-slide-active {
  box-shadow: 0 0 16px rgba(0, 0, 0, 16%);
	margin-top: -30px;
  border-bottom-left-radius: 29px;
	border-bottom-right-radius: 29px;
} */
/* .inclusives .swiper-slide-active .inclusive-detail {
  border: none;
} */

.karbala-img img {
    border-radius: 6px !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 38%);
}

.karbala-packages .swiper-slide .karbala-img::after {
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: 6px !important;
    right: 0;
    content: '';
    opacity: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 20%);
    transition: opacity 0.5s;
}

.karbala-packages .swiper-slide:hover .karbala-img::after {
    transition: opacity 0.5s;
    opacity: 1;
}

.inner-page .header-area {
    background-color: var(--bg-primary-color);
    padding: 20px 0;
}

.inner-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.inner-banner-heading {
    padding-top: 128px;
    text-align: center;
    padding-bottom: 128px;
}

.inner-banner-heading h1 {
    font-size: 55px;
    font-weight: 500;
    color: var(--bg-white);
}

.inclusives.inner-inclusive {
    padding: 74px 0 46px;
}

.inclusives.inner-inclusive::before {
    position: absolute;
    content: "";
    height: 577px;
    width: 100%;
    background-color: transparent;
}

.inclusives.inner-inclusive .inclusive-detail {
    border: 1px solid #d8d8d8;
}

.inclusives.star-4 .main-heading {
    padding-top: 74px;
}

.inclusives.star-4::before {
    height: 100%;
}

.contact-us-page {
    padding-top: 75px;
}

.contact-us-page-detail {
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 60px;
}

.contact-with-image {
    max-width: 377px;
    width: 100%;
    border-radius: 12px;
    background-color: #f1f0f6;
    padding: 39px 51px;
}

.contact-with-image:not(:nth-last-of-type(1)) {
    margin-right: 55px;
}

.contact-heading {
    text-align: center;
}

.contact-heading p.contact-title {
    font-size: 24px;
    font-weight: 700;
}

.contact-heading a {
    display: block;
    font-size: 21px;
    font-weight: 500;
    color: var(--bg-black);
    transition: all 0.5s ease;
}

.contact-heading a:hover {
    color: var(--bg-secondary-color);
}

.photo-contact {
    position: absolute;
    left: -48px;
    top: 41px;
}

.contact-heading p {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
}

.get-in-touch-form {
    padding-bottom: 70px;
    padding-top: 25px;
}

.contact-enquiry textarea.form-control {
    height: 115px;
}

.contact-enquiry .form-control {
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: #818181;
    background-color: #f4f2f7;
    border: none;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.return-forms {
    display: none;
}

.form-img {
    position: absolute;
    right: 10px;
    top: 8px;
}

.contact-enquiry .btn-enquiries {
    background-color: #59448d;
    color: var(--bg-white);
    font-size: 19px;
    font-weight: 700;
    transition: all 0.4s ease;
    height: 50px;
}

.contact-enquiry .btn-enquiries:hover {
    background-color: var(--bg-secondary-color);
}

/* .umrah-package-family{
  padding-top: 100px;
  margin-bottom: 30px;
} */
.umrah-package-family {
    padding-top: 60px;
    margin-bottom: 30px;
}

.family-heading p,
.family-heading h1 {
    font-size: 42px;
    font-weight: 700;
    color: #5b5b5b;
}


.family-star {
    word-spacing: -4px;
}

.packages-for-families {
    justify-content: space-between;
    align-items: center;
}

.passing-main {
    padding: 11px 42px;
    background: #F1EBFF;
    border-radius: 5px;
}

.passing-main ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-radius: 5px 5px 5px 0;
}

.passing-main ul li p {
    font-size: 18px;
    font-weight: 500;
    color: #5b5b5b;
    line-height: 1;
    text-transform: capitalize;
}

.passing-main ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.passing-main .passing-img {
    margin-bottom: 11px;
}

.passing-info {
    padding-bottom: 10px;
}

.visa-detail {
    background-color: rgba(258, 246, 253, 50%);
    border-radius: 0 0 5px 5px;
    padding: 29px 33px 23px;
    border: 1px solid rgba(67, 43, 125, 10%);
}

.visa-included {
    padding-left: 55px;
}

.visa-included p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: #4d4d4d;
}

.visa-call p {
    font-size: 16px;
    font-weight: 400;
    color: #717171;
}

.visa-call p span {
    font-weight: 600;
    color: #717171;
}

.visa-call {
    justify-content: end;
    align-items: center;
    margin-top: 30px;
}

.visa-call a {
    max-width: 195px;
    width: 100%;
    background-color: var(--bg-secondary-color);
    border-radius: 10px;
    color: var(--bg-white);
    font-size: 17px;
    text-align: center;
    padding: 5px;
    margin-left: 19px;
    transition: all 0.4s ease;
}

.visa-call a:hover {
    background-color: var(--bg-primary-color);
}

.visa-call a svg {
    margin-right: 3px;
}

.visa-packages {
    background-color: #f1ebff;
    border-radius: 5px;
    padding: 4px 0px 25px;
}

.both-way .form-check-input:checked {
    background-color: #fff;
    /* border-color: #d4d4d4; */
    border: 1px solid #432b7d;
}

.both-way .form-check-input:checked[type="radio"] {
    background-image: url("../images/svg/ellipse.svg");
    background-repeat: no-repeat;
    background-size: 10px;
}

.both-way .form-check label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #5b5b5b;
}

.both-way .form-check p {
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-primary-color);
    text-align: center;
}

.both-way .form-check p sub:first-of-type {
    font-size: 15px;
    font-weight: 300;
    font-family: var(--secondary-font);
}

.both-way .form-check p sub:last-of-type {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.visa-enquire-button {
    max-width: 208px;
    width: 100%;
    margin: auto;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.visa-enquire-button a {
    background-color: var(--bg-primary-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    transition: all 0.4s ease;
}

.visa-enquire-button a:hover {
    background-color: var(--bg-secondary-color);
}

.visa-application {
    padding-bottom: 100px;
}

.button-visa {
    padding-top: 46px;
    max-width: 706px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;

}

.button-visa a:not(:nth-last-of-type(1)) {
    margin-right: 10px;
}

.button-visa a {
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 500;
    max-width: 218px;
    width: 100%;
    border-radius: 4px;
    text-transform: capitalize;
    text-align: center;
    padding: 6px;
}

.button-visa .vissa-call-btn {
    background-color: var(--bg-primary-color);
    transition: all 0.5s ease;
}

.button-visa .vissa-call-btn:hover {
    background-color: var(--bg-secondary-color);
}

.button-visa .vissa-whatsapp-btn {
    background-color: #4EAA38;
    transition: all 0.5s ease;
}

.button-visa .vissa-whatsapp-btn:hover {
    background-color: var(--bg-primary-color)
}

.button-visa .vissa-email-btn {
    background-color: var(--bg-secondary-color);
    transition: all 0.5s ease;
}

.button-visa .vissa-email-btn:hover {
    background-color: #4EAA38;
}

.visa-application.retun-visa-app {
    padding-bottom: 76px;
}

.hoteliing {
    padding: 14px 0 20px;
    background-color: var(--bg-primary-color);
}

.hoteliing .main-form {
    margin-bottom: 15px;
}

.nav-upper {
    padding-top: 17px;

}

.nav-main {
    background-color: #F1EBFF;
    border-radius: 7px;
}

.nav-main ul {
    padding: 26px 18px;
    overflow-x: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-main ul li {
    position: relative;
    flex: 1 0 auto;
}

.nav-main ul li:not(:nth-last-of-type(1)) {
    margin-right: 30px;
}

.hoteliing .form-1 .form-to-from .form-control {
    padding-top: 10px;
    padding-bottom: 10px;
}

.hoteliing .form-1 .form-button .btn.submit-btn {
    justify-content: center;
    padding: 4px 5px -1px 4px;
    max-width: 195px;
    width: 100%;
    margin: auto;
    text-align: center;
}

.nav-main ul li p {
    font-size: 19px;
    font-weight: 600;
    color: var(--bg-primary-color);
    text-transform: uppercase;
}

.nav-main ul li p svg {
    margin-right: 5px;
}

.nav-main ul li::after {
    content: "";
    position: absolute;
    width: 101px;
    height: 25px;
    background-image: url("/images/main-pattern-after.png");
    background-repeat: no-repeat;
    left: 50%;
    translate: -50% 0;
    top: -26px;
    opacity: 0;
    transition: all 0.5s;
}

.nav-main ul li.active p {
    position: relative;
    top: 13px;
}

.nav-main ul li.active::after {
    opacity: 1 !important;
    transition: all 0.5s;
}

.thankyou {
    padding-top: 196px;
    background-size: cover;
    width: 100%;
    padding-bottom: 105px;
}

.thanku-text p {
    font-size: 130px;
    font-weight: 700;
    color: var(--bg-primary-color);
    text-align: center;
    text-transform: uppercase;
}

.thankyou-recieved {
    color: var(--bg-white);
    text-align: center;
}

.thankyou-recieved p:first-child {
    font-size: 42px;
    font-weight: 700;
}

.thankyou-recieved p:last-child {
    font-size: 30px;
    font-weight: 400;
}

.thanku-button {
    max-width: 764px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
}

.thanku-button a {
    max-width: 210px;
    width: 100%;
    background-color: var(--bg-secondary-color);
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    transition: all 0.4s ease;
}

.thanku-button a:hover {
    background-color: var(--bg-primary-color);
}

.accomodation-header {
    background-color: #8677ac;
    padding: 0 30px;
    justify-content: space-between;
    align-items: center;
}

.accomodation-in-makkah {
    padding-top: 34px;
    padding-bottom: 30px;
}

.accom-date {
    color: var(--bg-white);
    text-align: center;
    background-color: #5a468e;
    padding: 5px 10px;
    text-transform: uppercase;
}

.accom-date p:first-of-type {
    font-size: 20px;
    font-weight: 700;
    line-height: 1
}

.accom-date p:last-of-type {
    font-size: 16px;
    font-weight: 300;

}

.accom-head {
    padding-left: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accom-head p {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
}

.accom-class .form-select {
    font-size: 16px;
    font-weight: 400;
    color: var(--bg-white);
    background-color: #8677ac;
    background-position: right 13px center;
    background-size: 16px 12px;
    border: none;
    background-image: url('../images/arrow-select.png');
    background-size: 11px;

}

.accom-class {
    padding-top: 0px;
}

.accom-class .form-select:focus {
    outline: none;
    box-shadow: none;
}

.accom-selection {
    padding-top: 7px;
}

.accom-selection .form-check-input:focus {
    border-color: #86b7fe;
    outline: none;
    box-shadow: none;
}

.accom-selection .form-check label {
    color: var(--bg-white);
    font-size: 16px;
}

.accom-selection .form-check-input[type="checkbox"] {
    border-radius: 0;
    border: 1px solid #fff;
    background-color: transparent;
}

.accom-selection .form-check-input:checked {
    background-color: var(--bg-secondary-color);
}

.hoteling-detail {
    padding-top: 22px;
}

.detail-of-hotel {
    padding: 0 24px 0 20px;
    position: absolute;
    bottom: 12px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.name-hotel p {
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-white);
    border-bottom: 1px solid #96928b;
}

.hotel-rating-star {
    word-spacing: -4px;
}

.hotel-rating-star svg {
    width: 14px;
    height: 14px;
}

.hotel-rating-price {
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.pound-prices p {
    border-bottom: none;
    color: var(--bg-secondary-color);
    font-size: 18px;
    font-weight: 600;
}

.name-hotel {
    max-width: 232px;
    width: 100%;
}

.share-hotel {
    position: absolute;
    right: -10px;
    top: 37px;
}

.select-hotel {
    margin-bottom: 50px;
}


.hotel-selected-buttons {
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}

.select-or-not {
    max-width: 148px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--bg-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    text-transform: capitalize;

}

.select-or-not label {
    font-size: 16px;
}

.select-or-not .form-check-input {
    margin-right: 13px;
    border-color: #717171;
}

.select-or-not .form-check {
    text-align: left;
    margin-bottom: 0;
}

.hotel-detail {
    max-width: 148px;
    width: 100%;
    margin-right: 10px;
    border: none;
}

.hotel-detail a,
.hotel-detail span {
    background-color: var(--bg-secondary-color);
    color: var(--bg-white);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    padding: 5px;
    border-radius: 4px;
    text-transform: capitalize;
}

.hotel-detail a:hover,
.hotel-detail span:hover {
    background-color: var(--bg-primary-color);
}

/* .select-or-not .form-check label {
  color: #717171;
} */

.select-or-not .form-check-input[type="checkbox"] {
    border-radius: 2px;
}

.select-or-not .form-check-input:checked {
    background-color: var(--bg-secondary-color);
    border-color: #717171;
}

.accomodation-in-makkah .hoteling-detail .btn-cover .viewall .btn-view a {
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
    padding: 8px 14px;

}

.accomodation-in-makkah .hoteling-detail .continent-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
}

.accomodation-in-makkah .hoteling-detail .continent-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
}

.continent-swiper .swiper-button-next svg,
.continent-swiper .swiper-button-prev svg {
    width: 11px;
    height: 16px;
}

.selected-detailed-people {
    background-color: rgba(218, 206, 246, 60%);
    border-radius: 10px;
    padding: 10px 10px 14px 10px;
    margin-top: 34px;
}

.short-selected-detail {
    padding: 3px 10px;
}

.short-selected-detail p {
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-primary-color);
}

.date-selected {
    padding: 11px 18px;
    background-color: var(--bg-white);
    border-radius: 7px;
    margin-top: 5px;
}

.date-selected svg {
    margin-right: 18px;
}

.date-selected p {
    font-size: 14px;
    font-weight: 500;
    color: #959595;
}

.flight-plus-hotel {
    margin-top: 20px;
    background-color: rgba(233, 225, 249, 60%);
    border-radius: 10px;
    padding: 13px 15px 20px;
}

.hotell-price p {
    font-size: 16px;
    font-weight: 400;
    color: var(--bg-primary-color);
}

.hotel-reserve-price {
    margin-top: 20px;
}

.hotel-reserve-price .p-rices p.price {
    font-size: 28px;
    font-weight: 600;
    color: var(--bg-primary-color);
}

.hotel-reserve-price .p-rices span {
    font-size: 16px;
    font-weight: 600;
}

.hotel-reserve-price .p-rices sub.per-person {
    font-size: 14px;
    font-weight: 400;
    color: #9C94AF;
    bottom: -2px;
}

.hotel-reserve-price>p:last-child {
    font-size: 17px;
    font-weight: 400;
    color: #8E7FB4;
}

.confirm-edit-buttons {
    font-size: 16px;
    font-weight: 400;
    padding-top: 19px;
}

.confirm-edit-buttons .btn-confirmation {
    background-color: var(--bg-primary-color);
    border-radius: 7px;
    color: var(--bg-white);
    padding: 8px 9px;
    max-width: 134px;
    width: 100%;
    cursor: pointer;

    transition: all 0.3s ease;
}

.confirm-edit-buttons .btn-edition {
    background-color: #AFA9BE;
    border-radius: 7px;
    color: var(--bg-white);
    padding: 8px 9px;
    max-width: 134px;
    width: 100%;
}

/* Price Range  */

.price-range-filter {
    padding: 10px 10px 20px;
    background-color: #F2EDFB;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.filtering p {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-primary-color);
    margin-left: 10px;
}

.range-data p {
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-primary-color);
}

.price-ranging {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 8px 11px;
    margin-top: 10px;
}

.range-data {
    margin-bottom: 13px;
}

.ranges-number {
    justify-content: space-between;
    align-items: center;
}

.price-range-filter .ui-widget-content {
    background: #AFA9BE;
    border-radius: 50px;
}

.price-range-filter .ui-widget-header {
    border: none;
    background: var(--bg-primary-color);
    color: #333;
    font-weight: bold;
}

.price-range-filter .ui-state-default,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid var(--bg-primary-color);
    background: var(--bg-white);
    font-weight: normal;
    color: #454545;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    top: -1px;
}

.price-range-filter .min-max-range {
    display: flex;
    border: none;
    justify-content: space-between;
    align-items: center;
    max-width: 310px;
    width: 100%;
}

.price-range-filter .min-max-range input {
    border: none;
    max-width: 100px;
    background: transparent;
    color: #959595;
    padding: 0 20px;
}

/* Price Range style Ends here  */

.continue-button {
    margin-top: 40px;
}

.continue-button {
    background-color: var(--bg-secondary-color);
    max-width: 176px;
    width: 100%;
    margin: auto;
    margin-top: 51px;
    margin-bottom: 57px;
    border-radius: 4px;
}

.continue-button a,
.continue-button input {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 500;
    padding: 5px;
    transition: all 0.4s ease;
}

.continue-button span:hover {
    background-color: var(--bg-primary-color);
    border-radius: 4px;
}

.accomodation-header.inner-accomodacte {
    margin-top: 34px;
    margin-bottom: 22px;
}

.continue-button.btn-cont {
    margin-top: 0px;
    margin-bottom: 45px;
}

.selecting-your-hotel {
    margin-top: 34px;
    background-color: #FAF8FF;
    border-radius: 10px;
    padding: 29px 0;
    text-align: center;
}

.selecting-your-hotel-heading p {
    font-size: 26px;
    font-weight: 700;
    color: #535353;

}

.hotel-selected-buttons {
    max-width: 424px;
    width: 100%;
    margin: auto;
    padding-top: 20px;
}

.selecting-your-hotel .hotel-selected-buttons .hotel-detail {
    max-width: 200px;
    width: 100%;
    border-radius: 10px;

}

.selecting-your-hotel .hotel-selected-buttons .hotel-detail span,
.selecting-your-hotel .hotel-selected-buttons .hotel-detail a {
    padding: 10px;
    border-radius: 10px;
}


.hotel-selected-buttons .select-or-not {
    max-width: 200px;
    width: 100%;
    border-radius: 10px;
    padding: 9px;
    margin-right: 10px;
}

.accodomation-with-ranges.inner-accom-range {
    padding-bottom: 250px;
}

.accordion-header.filtering .accordion-button:not(.collapsed) {
    color: var(--bg-primary-color);
    background-color: #F2EDFB;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-primary-color);
    padding: 14px;
}

.price-range-filter .accordion-item {
    border: none;
}

.price-range-filter .accordion-item:last-of-type .accordion-button.collapsed {
    background-color: #F2EDFB;
    color: var(--bg-primary-color);
    font-size: 14px;
    font-weight: 700;
}

.price-range-filter .accordion-button:not(.collapsed)::after {
    background-image: url('../images/fiter-down.png');
    background-size: 13px;
    background-position: center;
}

.price-range-filter .accordion-button::after {
    background-image: url('../images/fiter-down.png');
    background-size: 13px;
    background-position: center;
}

.price-range-filter .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: none;
    box-shadow: none;
}

.price-range-filter button:focus:not(:focus-visible) {
    outline: none;
}

.select-type {
    background-color: #8677ac;
    margin-top: 34px;
    padding: 10px 0;
    position: relative;
}

.select-type ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-type ul li p {
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 700;
}

.select-type ul li {
    flex-grow: 1;
    text-align: center;
}

.select-type ul li.active {
    transform: scaleY(2.1);
    transition: all 0.3s;
    background-color: #5a468ead;
    border-radius: 4px;
}

.select-type ul li.active p {
    transform: scaleY(0.5);
}

.vehicles {
    padding-top: 20px;
}

.vehicals-detail {

    border-radius: 7px;
    border: 1px solid #DEDEDE;
    margin: 74px 0 0 0;
    width: 100%;
    padding: 10px;
}

.detail-of-vehicle {
    width: 100%;
}

.vehicals-detail:hover {
    box-shadow: 0 1px 12px 0 #00000020 !important;
}

.car {
    padding-top: 10px;
    text-align: center;
}

.vehicles .btn-cover {
    position: absolute;
    right: 0 !important;
    width: 0;
    left: auto;
    top: 38px;
    bottom: auto;
}

.vehicles .swiper-btns {
    position: relative;
    right: 45px;
    top: -162;
    left: auto;
}

.vehicles .continent-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
    border-radius: 7px;
}

.vehicles .continent-swiper .swiper-button-next svg {
    width: 21px;
    height: 14px;
}

.vehicles .continent-swiper .swiper-button-prev {
    width: 32px;
    height: 32px;
    border-radius: 7px;
}

.vehicles .continent-swiper .swiper-button-prev svg {
    width: 21px;
    height: 14px;
}

.vehicle-name-price {
    justify-content: space-between;
}

.car-name p {
    font-size: 22px;
    font-weight: 600;
    color: #636363;
    text-transform: uppercase;
}

.vehicle-starting-price p:first-child {
    font-size: 14px;
    color: #636363;
}

.vehicle-starting-price p:last-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-secondary-color);
    text-align: end;
}

.accodomation-with-ranges.partial {
    margin-bottom: 60px;
}

.vehicle-detail-type {
    margin-top: 40px;
    justify-content: space-between;
}

.car-name-rupee {
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;

}

.detail-about-vehicle {
    max-width: 436px;
    width: 100%;
}

.name-of-cars p:first-of-type {
    font-size: 18px;
    color: #636363;
}

.name-of-cars p:last-of-type {
    font-size: 26px;
    color: #636363;
    font-weight: 600;
}

.staring-from-price p:first-of-type {
    font-size: 18px;
    color: #636363;
}

.staring-from-price p:last-of-type {
    font-size: 30px;
    color: var(--bg-secondary-color);
    font-weight: 700;
    text-align: end;
}

.capacity {
    justify-content: space-between;
    align-items: end;
    padding-top: 20px;
    padding-bottom: 21px;
    border-bottom: 1px solid #e4e4e4;
}

.capacity-seaters p:first-of-type {
    font-size: 16px;
    font-weight: 700;
    color: #636363;
    margin-bottom: 10px;
}

.capacity-seaters p:nth-last-of-type(2) {
    font-size: 19px;
    color: #636363;

}

.capacity-seaters p:last-of-type {
    font-size: 19px;
    color: #636363;
}

.make-rote a {
    background-color: var(--bg-secondary-color);
    color: var(--bg-white);
    padding: 7px;
    border-radius: 4px;
    transition: all 0.4s ease;
    text-transform: capitalize;
}

.make-rote a:hover {
    background-color: var(--bg-primary-color);
}

.vehicle-note {
    padding-top: 20px;
}

.vehicle-note p {
    font-size: 15px;
    color: #636363;
    text-align: end;
}

.do-you-need-visa {
    background-color: #FAF8FF;
    border-radius: 10px;
    padding: 27px 10px 377px;
    margin-top: 34px;
}

.vissa-question p {
    font-size: 26px;
    font-weight: 700;
    color: #535353;
    text-align: center;
}

.visa-yes-no {
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    width: 100%;
    margin: auto;
    padding-top: 23px;
}

.visa-yes-no .form-check {
    max-width: 202px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #8373AB;
    padding: 8px 10px;
}

.visa-yes-no .form-check:hover,
.visa-yes-no .form-check.active {
    background-color: var(--bg-primary-color);
}

.heading-right .form-check-input[type="radio"],
.visa-yes-no .form-check-input[type="radio"] {
    border-radius: 2px;
    border-color: #717171;
    border: 1px solid #717171;
}

.visa-yes-no .form-check-input:checked {
    background-color: var(--bg-secondary-color);
    border-color: #717171;
}

.form-check-input:checked[type="radio"] {
    background-image: url("../images/tick.png");
    background-size: 9.5px;
}

.visa-yes-no .form-check label {
    color: #717171;
    transition: all 0.4s ease;
}

.visa-yes-no .form-check.active label,
.visa-yes-no .form-check:hover label {
    color: var(--bg-white) !important;
}

.form-check-input:focus {
    border-color: none;
    outline: none;
    box-shadow: none;
}

.visa-saudi-yes {
    background-color: var(--bg-white);
    border-radius: 0 0 10px 10px;
    padding: 15px 19px;
    margin-top: 28px;
}

.apply-online {
    text-align: end;
}

.apply-online a {
    font-size: 18px;
    font-weight: 400;
    color: #717171;
    text-decoration: underline;
    transition: all 0.4s ease;
}

.apply-online a:hover {
    color: var(--bg-secondary-color);
}

.saudia-cross {
    max-width: 242px;
    width: 100%;
}

.saudia-cross p {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 600;
    color: #636363;
}

.saudia-yes-no {
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 10px;
    max-width: 682px;
    width: 100;
    margin-left: 30px;
}

.visa-yes-no.arab {
    padding-top: 0;
}

.do-you-need-visa.saudi-arab {
    padding-bottom: 100px;
}

.some-keep-continue {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.some-keep-continue a,
.some-keep-continue input {
    background-color: var(--bg-secondary-color);
    font-size: 20px;
    font-weight: 500;
    color: var(--bg-white);
    text-transform: capitalize;
    border-radius: 4px;
    padding: 8px;
    transition: all 0.4s ease;
    line-height: initial;
}

.some-keep-continue a:hover,
.some-keep-continue input:hover {
    background-color: var(--bg-primary-color);

}

.ziarats {
    background-color: #FAF8FF;
    border-radius: 0 0 10px 10px;
    padding: 30px 30px 69px;
}

.ziarat-selection {
    border: 1px solid #91919123;
    display: inline-block;
    padding: 7px 10px;
    max-width: 210px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--bg-white)
}

.ziarat-selection label {
    font-size: 20px;
    font-weight: 400;
    color: #717171;

}

.ziarat-selection .form-check-input[type="checkbox"] {
    border-radius: 2px;
    margin-top: 7px;
}

.ziarat-selection .form-check-input:checked {
    background-color: var(--bg-secondary-color);
    border-color: #717171;
}

.some-keep-continue.moving a {
    padding: 8px 20px;
}

.book-tab {
    display: none;
}

.book-tab.active {
    display: block;
}

.book {
    background-color: #FAF8FF;
    border-radius: 0 0 10px 10px;
    padding: 56px 30px 66px;

}

.book-via-contact {
    margin-top: 20px;
}

.book-via-contact p {
    font-size: 18px;
    font-weight: 400;
    color: #646464;
    margin-bottom: 5px;
    /* text-align: center; */
}

.book-via-contact a {
    font-size: 18px;
    font-weight: 500;
    color: var(--bg-white);
    background-color: var(--bg-primary-color);
    padding: 7px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.book-via-contact a:hover {
    background-color: var(--bg-secondary-color);
}

.book-via-img {
    text-align: center;
}

.get-in-touch-form.got-in-enq {
    padding-bottom: 0px;
    padding-top: 30px;
}

.right-now-booking {
    margin-top: 25px;
}

.right-now-booking .form-group label {
    font-size: 17px;
    font-weight: 400;
    color: #818181;
}

.right-now-booking .form-group .form-control {
    padding: .375rem .75rem;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #818181;
    background-color: #f4f2f7;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.right-now-booking .form-group .form-control::placeholder {
    color: rgba(129, 129, 129, 20%) !important;

}

.coode-postal {
    justify-content: space-between;
}

.coode-postal .form-group.first-enquire {
    max-width: 308px;
    width: 100%;
}

.coode-postal .form-group.card-postal {
    max-width: 650px;
    width: 100%;
}

.button-send-detail button {
    background-color: var(--bg-secondary-color);
    max-width: 203px;
    width: 100%;
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.button-send-detail button:hover {
    background-color: var(--bg-primary-color);
    color: var(--bg-white);
}

.add-fare-total {
    margin-bottom: 25px;
    border-radius: 0 0 11px 11px;
    max-width: 682px;
    width: 100%;
    margin-left: 30px;
    display: none;
}

.visa-yes-no .form-check:not(:nth-last-of-type(1)) {
    margin-right: 15px;
}

.ziarat-fare-addition {
    background-color: #FAF8FF;
    border-radius: 0 0 11px 11px;
    max-width: 430px;
    width: 100%;
    margin-left: auto;
    padding: 15px 10px;
    justify-content: center;
    align-items: center;

}

.ziarat-fare-addition p {
    color: var(--bg-primary-color);
    font-size: 33px;
    font-weight: 700;
    margin-right: 20px;
}

.add-total-fare a {
    background-color: var(--bg-secondary-color);
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 10px;
    transition: all 0.3s ease;
}

.add-total-fare a:hover {
    background-color: var(--bg-primary-color);
}


.error-page {
    padding-top: 50px;
    background-size: cover;
    width: 100%;
    padding-bottom: 330px;
}

.image-404 {
    text-align: center;
    padding-top: 35px;
}

.error .thankyou-recieved p {
    font-size: 28px;
    font-weight: 500;
}

.error .thankyou-recieved a {
    color: var(--bg-white);
    text-decoration: underline;
}

.about-property {
    margin-top: 40px;
    height: 300px;
    overflow-y: scroll;
}

.property-detail {
    display: -webkit-box;
    font-size: 18px;
    font-weight: 400;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.property-detail h3 {
    font-size: 28px;
    font-weight: 600;
    color: #5B5B5B;
    text-transform: capitalize;
    line-height: 25px;
    margin-bottom: 15px;
}

.property-detail p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #5B5B5B;
}

.about-property a {
    text-decoration: underline;
    font-style: italic;
    text-transform: uppercase;
    color: #5B5B5B;
    transition: all 0.3s ease;
}

.about-property a:hover {
    color: var(--bg-secondary-color);
}

.package-include {
    padding-top: 37px;
}

.package-include h3 {
    font-size: 24px;
    font-weight: 500;
    color: #717171;
    margin-bottom: 20px;
    display: inline-block;
}

.package-include ul li {
    flex: 0 0 32%;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #575757;
    margin-bottom: 16px;
    padding-left: 25px;
    position: relative;
}

.package-include ul {
    display: flex;
    justify-content: start;
    align-items: baseline;
    flex-wrap: wrap;
    overflow-y: scroll;
    height: 100px;
    margin-bottom: 10px;
}

.package-include ul li::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background-image: url('../images/diamond.png');
    border-radius: 50%;
    left: 0px;
    top: 5px;
    background-repeat: no-repeat;
}

.package-include a {
    font-size: 16px;
    font-weight: 400;
    text-align: end;
    text-decoration: underline;
    color: #575757;
    display: block;
    text-transform: capitalize;
    transition: all 0.2s ease;
}

.package-include a:hover {
    color: var(--bg-secondary-color);
}

.galler-include-main {
    padding-top: 62px;
}

.price-head-gallery p {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: #5B5B5B;
}

.family-pkg-cvr {
    margin-bottom: 12px;
}

.family-pkg-cvr .price-head-gallery {
    display: flex;
    align-items: center;
}

.price-head-gallery .kaabah-icon {
    width: 50px;
    height: 50px;
}

.star-gallery svg {
    width: 20px;
    height: 20px;
}

.family-pkg-cvr .content h2 {
    font-size: 26px;
    font-weight: 600;
    color: #5B5B5B;
    margin-bottom: 9px;
}

.family-pkg-cvr .price-head .content p {
    font-size: 18px;
    font-weight: 400;
    color: #5B5B5B;
    margin-bottom: 20px;
}

.about-hotel-wrapper {
    padding: 20px 20px;
    border: 1px solid #707070;
    border-radius: 12px;

}

.family-pkg-swaper {
    border-radius: 12px;
    overflow: hidden;
}

.galler-include-main .swiper-slide {
    justify-content: flex-start !important;
    height: 100%;
}

.galler-include-main .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
}

.galler-include-main .swiper-slide .slide-img img {
    width: 100%;
}

.flights-details {
    margin-top: 34px;
}

.share-cross {
    align-items: center;
}

.share-cross svg:first-child {
    margin-right: 15px;
}

.deatil {
    background-color: #f8f6fd;
    padding: 27px 21px 27px 15px;
    border-radius: 10px;
}

.flights-details {
    background-color: #f8f6fd;
}

.flight-box:not(:nth-of-type(1)) .deatil {
    display: none;
}


.flight-path {
    max-width: 403px;
    width: 100%;
}

.path-from-to {
    justify-content: space-between;
    align-items: center;
}

.path-from-to p {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #5E5E5E;
}

.path-line {
    width: 400px;
    height: 2px;
    background-color: #e1deeb;
    /* margin-top: 5px; */
}

.path-line span {
    width: 9px;
    height: 9px;
    background-color: #AD9FCE;
    border-radius: 50%;
}

.path-line {
    justify-content: space-between;
    align-items: center;
}

.cirle-purple {
    position: relative;
    top: -1px;
    background-color: var(--bg-white);
}

.airlines-mutile-name {
    position: absolute;
    top: -10px;
    max-width: 200px;
    left: 50%;
    transform: translateX(-50%);
}

.airlines-mutile-name p {
    font-size: 14px;
    font-weight: 500;
    color: #432B7D;
    text-transform: capitalize;
}

.stops-bages {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stops {
    justify-content: space-between;
    align-items: center;
    margin-left: 10px;
}

.bags {
    justify-content: space-between;
    align-items: center;
}

.flight-path-detail {
    justify-content: space-between;
    align-items: center;
    margin: 0 32px;
}

.stops svg {
    margin-right: 10px;
}

.bags svg {
    margin-right: 10px;
}

.flight-detail-select {
    max-width: 155px;
    width: 100%;
    text-align: end;
    margin-left: auto;
}

.flight-detail-select p {
    border-radius: 0;
    border: none;
    color: #432B7D;
    font-size: 14px;
    font-weight: 500;
    padding: 26px 0 0 0;
    cursor: pointer;
}

.economy-flight-equipments {
    padding: 22px 44px;
    background-color: #f7f5ff;
    border-radius: 0 0 10px 10px;
    margin-top: 20px;
    display: none;
}

.saudi-flight-image {
    color: var(--bg-primary-color);
    text-align: center;
}

.saudi-flight-image p {
    margin-bottom: 19px;
    font-size: 16px;
    font-weight: 500;
}

.flight-date-time {
    margin-left: 40px;
    position: relative;
}

.flight-time-route {
    align-items: center;
    margin-bottom: 6px;
    color: var(--bg-black);
    position: relative;
}

.flight-time-route span {
    width: 11px;
    height: 1px;
    background-color: var(--bg-black);
    border-radius: 1px;
    margin: 0 10px;
}

.equipment-number {
    color: var(--bg-primary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.equipment-number p:first-child {
    margin-right: 14px;
}

.images-of-pplane {
    position: absolute;
    content: "";
    left: -33px;
    top: -1px;

}

.classes-econ p {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
}

.classes-econ svg {
    margin-right: 10px;

}

.saudi-eq-with-econ {
    justify-content: space-between;
    align-items: end;
}

.connection {
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-top: 1px solid #432B7D16;
    border-bottom: 1px solid #432B7D16;
    margin-bottom: 30px;
}

.connection p:first-child {
    color: #4a279b;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
}

.connection p:last-child {
    color: #eb1b1b;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}

.saudi-flight-image .emir {
    text-align: center;
}

.detail-airport-hotel {
    background-color: #F8F6FD;
    padding: 23px;
    justify-content: space-between;
    align-items: center;
}

.airport-transport-img {
    padding: 10px;
}

.airport-transport-img img {
    width: 165px;
    height: 78px;
}

.detail-airport-hotel .flight-path {
    background-color: var(--bg-white);
    max-width: 700px;
    width: 100%;
    padding: 29px 50px;
    box-shadow: 3px 3px 6px #432B7D16;
    border-radius: 10px;
}

.detail-airport-hotel .flight-path .path-from-to p {
    font-size: 20px;
    font-weight: 500;
    color: #5E5E5E;

}

.detail-airport-hotel .flight-path .path-from-to.hot-air p {
    font-size: 17px;
    font-weight: 400;
    color: #5E5E5E;
    text-transform: capitalize;

}

.detail-airport-hotel .flight-path .path-line {
    width: 600px;
    height: 2px;
    background-color: #e1deeb;
    /* margin-top: 5px; */
}

.stay-in-hotel .accom-date.rat p:first-child::after {
    position: absolute;
    content: "";
    width: 11px;
    height: 2px;
    background-color: var(--bg-white);
    left: -5px;
    top: 25px;

}

.hotel-edit {
    padding: 23px 88px;
    background-color: #F8F6FD;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.hotel-with-edit {
    max-width: 812px;
    width: 100%;
}

.name-stars {
    max-width: 226px;
    width: 100%;
    margin-left: 24px;
}

.name {
    border-bottom: 1px solid #80808050;
}

.name p {
    font-size: 17px;
    font-weight: 600;
    color: #505050;
    padding-bottom: 8px;
}

.name-hotel-star {
    margin-top: 8px;
    word-spacing: -5px;
}

.name-hotel-star svg {
    width: 14px;
    height: 13px;
}

.hotel-edit-share {
    max-width: 416px;
    width: 100%;
    align-items: center;
}

.black-share {
    position: absolute;
    top: 51px;
    right: 11px;
}

.hote-edit-detail {
    max-width: 314px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hote-edit-detail a {
    max-width: 147px;
    width: 100%;
    border-radius: 4px;
    background-color: var(--bg-secondary-color);
    color: var(--bg-white);
    padding: 10px;
    display: block;
    text-align: center;
    transition: all 0.4s ease;
}

.hote-edit-detail a:hover {
    background-color: var(--bg-primary-color);
}

/* .all-types{
  padding-bottom: 125px;
} */
.deatil.ted {
    padding: 15px 21px 78px;

}

.all-types .continue-button {
    margin-top: -17px !important;
    margin-bottom: 135px;
    border-radius: 4px;
}

.accom-head.acc-plane {
    text-transform: uppercase;
}

.accom-head.acc-plane svg {
    margin: 0 25px;

}

.segment-select .accom-class {
    padding-top: 0px;
    padding-right: 31px;
}

.stops-bages.fr-detail {
    margin-top: 0;
    position: relative;
    top: -40px;
}

.selected-bags p {
    font-size: 26px;
    font-weight: 500;
    color: var(--bg-primary-color);
    text-transform: capitalize;
}

.flight-detail-select.type {
    align-items: end;
}

.flight-detail-select.type .pru-share {
    margin-left: 20px;
}

.stops-bags-flights {
    text-align: end;
}

.selected-bags {
    position: relative;
    top: -17px;
}

.prices-of-selection {
    margin-bottom: 20px;
    background-color: var(--bg-white);
    padding: 23px;
    transition: all 0.3s;
    border-radius: 0 0 10px 10px;
}

.prices-of-selection:hover {
    transition: all 0.3s;
    box-shadow: 2px 2px 9px 0 rgba(67, 43, 125, 28%);
}

.form-check.selctionss {
    max-width: 98px;
    margin-left: auto;
    width: 100%;
}

.form-check.selctionss label {
    font-size: 22px;
    font-weight: 500;
    color: var(--bg-primary-color);
    cursor: pointer;
}

.form-check.selctionss .form-check-input:checked {
    background-color: var(--bg-secondary-color);
    border-color: #432B7D45;
}

.form-check.selctionss .form-check-input {
    width: 15px;
    height: 15px;
    margin-top: 9px;
    border: 1px solid #432B7D45;
    border-radius: 2px;
}

.price-or-select p {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-primary-color);
}

.price-or-select {
    line-height: 1.2;
}

.accomodation-header.diff {
    margin-top: 40px;
    margin-bottom: 10px;
}

.accomodation-header.web {
    margin-top: 10px;
}

.galler-include-main .swiper-btns {
    position: static;
}

.galler-include-main .swiper-button-next {
    position: absolute;
    background-color: var(--bg-white);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s linear;
    border-radius: 50%;
    box-shadow: -3px 0 3px #00000016;
    right: 43px;
}

.galler-include-main .btn-cover .svg {
    width: 9px;
    height: 13px;
    fill: #ffad0c;
}

.galler-include-main .swiper-button-prev {
    position: absolute;
    background-color: var(--bg-white);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s linear;
    border-radius: 50%;
    box-shadow: 1px 0 6px #0008;
    left: 43px;
}

.passenger-1 {
    background-color: #8373AB;
    padding: 10px;
}

.passenger-1 svg {
    margin-left: 15px;
}

.passenger-1 p {
    font-size: 18px;
    font-weight: 400;
    color: var(--bg-white);
    text-align: center;
    text-transform: capitalize;
}

.adult-passengers {
    margin-top: 34px;
}

.passenger svg {
    position: static !important;
    transform: none !important;
}

.passenger-2-detail {
    padding-top: 24px;
}

.passenger-title-detail {
    padding-top: 23px;
}

.passenger-title-detail .title .form-select {
    max-width: 200px;
    width: 100%;
    border-radius: 5px;
    background-color: var(--bg-primary-color);
    color: var(--bg-white);
    font-size: 17px;
    background-image: url('../images/arrow-select.png');
    background-size: 11px;
}

.passenger-form {
    padding-top: 15px;
}

.detail-of-passenger-contct .form-control,
.passenger-form .form-control,
.passenger-form .form-select {
    height: 50px;
}

.passenger-form .form-control {
    background-color: #f4f2f7;
    border: none;
    border-radius: 5px;
}

.passenger-form .form-control::placeholder {
    font-size: 17px;
    font-weight: 400;
    color: #818181;
}

.passenger-form .date-of-birth-select .birth-date .form-control {
    background-color: #f4f2f7;
    border-radius: 5px;
    border: none;
}

.passenger-form .form-select {
    background-color: #f4f2f7;
    border-radius: 5px;
    color: #818181;
    border: none;
}

.passenger-submit {
    text-align: end;
}

.passenger-submit a {
    font-size: 19px;
    font-weight: 700;
    color: var(--bg-white);
    background-color: #59448D;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 3px 3px 6px #432B7D43;
    text-transform: capitalize;
}

.cont-head {
    padding-top: 15px;
}

.cont-head p {
    font-size: 24px;
    font-weight: 500;
    color: var(--bg-primary-color);
    text-align: center;
    text-transform: capitalize;
}

.detail-of-passenger-contct {
    border-radius: 10px;
    background-color: #F8F6FD;
    padding: 37px 0;
    margin-bottom: 26px;
    border-radius: 10px;
}

.uk-name select.form-select {
    font-size: 17px;
    font-weight: 400;
    color: var(--bg-white);
    background-color: var(--bg-primary-color);
    padding: 7px;
    height: 50px;
    border-radius: 5px;
    background-image: none;
}

.passen-mail-num {
    justify-content: space-between;
    width: 100%;
}

.detail-of-passenger-contct .form-select,
.detail-of-passenger-contct .passen-name-email .mail-name .form-control {
    background-color: #f4f2f7;
    border-radius: 5px;
    border: none;
    padding: 9px;
}

.pass-continue-booking {
    text-align: end;
}

.pass-continue-booking button {
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 500;
    background-color: var(--bg-secondary-color);
    border-radius: 4px;
    padding: 5px 14px;
    transition: all 0.5s ease;
    border: none;
}

.pass-continue-booking a:hover {
    background-color: var(--bg-primary-color);
}

.all-about {
    padding-top: 36px;
}

.about {
    padding-top: 22px;
    padding-bottom: 22px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: var(--bg-primary-color);
    font-weight: 600;
    margin: 0 0 30px;
}

.page-content h1 {
    font-size: 35px;
    font-weight: 900;
}

.page-content h2 {
    font-size: 28px;
}

.page-content h3 {
    font-size: 26px;
}

.page-content h4 {
    font-size: 25px;
}

.page-content h5 {
    font-size: 24px;
}

.page-content h6 {
    font-size: 22px;
}

.page-content p {
    font-size: 18px;
    color: #373737;
    line-height: 26px;
    font-weight: 400;
    margin: 0 0 20px;
}

.prev-btn-s a {
    display: inline-block;
    padding: 10px 15px;
    border: navy;
    border-radius: 10px;
    font-size: 15px;
    margin-right: 15px;
    color: #fff;
    background-color: #432b7d;
}

.page-content p a,
.page-content a {
    color: var(--bg-secondary-color);
}

.page-content p a strong,
.page-content strong a {
    color: var(--bg-secondary-color);
}

.page-content ol>li,
.page-content ul>li {
    font-size: 18px;
    color: #373737;
    line-height: 26px;
    font-weight: 400;
    margin: 20px 0;
    position: relative;
}

.page-content ol li::marker {
    color: #432b7d;
    font-weight: 700;
}

.page-content ul>li::after {
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--bg-primary-color);
    left: -40px;
    top: 11px;
}

.page-content ul {
    padding-left: 3.5rem;
}

.page-content ul ul li {
    color: #373737;
}

.page-content>strong {
    color: var(--bg-black);
    font-weight: 700;
    font-size: 15px;
}

.page-content ol li {
    font-size: 18px;
}

.page-content blockquote {
    color: var(--bg-white);
    background: #8e7fb1;
    border-left: 10px solid var(--bg-primary-color);
    margin: 20px 10px;
    padding: 10px 10px;
}

.page-content blockquote p {
    color: var(--bg-white);
}

/* Page content ends  */

.heading-term h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--bg-primary-color);
}

.heading-term h4 {
    font-size: 22px;
    font-weight: 600;
    color: #A18BD5;
}

.selecting-route {
    background-color: #f8f6fd;
    padding: 18px 22px;
    margin-top: 24px;
    padding-bottom: 68px;
    display: none;
}

.image-of-car svg {
    margin-right: 7px;
}

.rote-name p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: #393939;
}

.rote-name p:last-child {
    font-size: 15px;
    font-weight: 400;
    color: #393939;
}

.select-route-detail {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 29px 46px 29px 41px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.select-route-detail .path-from-to.rats p {
    font-size: 20px;
    font-weight: 500;
}

.select-route-detail .flight-path {
    max-width: 590px;
    width: 100%;
}

.select-route-detail .path-line {
    width: 590px;
}

.select-route-detail .path-from-to.hot-air p {
    font-size: 17px;
    font-weight: 400;
    text-transform: capitalize;
}

.selected-money p {
    font-size: 32px;
    font-weight: 700;
    color: var(--bg-primary-color);
    text-align: center;

}

.selected-money .selected-money-rup .form-check label {
    border: 1px solid #adadad;
    border-radius: 10px;
    padding: 8px 15px;
    text-align: center;
}

.selected-money .selected-money-rup .form-check.active label {
    background-color: var(--bg-primary-color);
    color: var(--bg-white);
}

.selected-money .selected-money-rup {
    width: 130px;
    margin-bottom: 10px;
}

.selected-money .selected-money-rup .form-check-input {
    width: 15px;
    height: 15px;
    border: 1px solid #717171;
    border-radius: 2px;
}

.selected-money .selected-money-rup .form-check-input:checked {
    background-color: var(--bg-secondary-color);
    border-color: var(--bg-primary-color);
}

.ret-fl .form-check-input:checked {
    background-color: var(--bg-secondary-color);
    border-color: transparent;

}

.search-eng .form-switch .form-check-input,
.customize .form-switch .form-check-input {

    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(67, 43, 125, 1)'/></svg>");

}

.search-eng .form-switch .form-check-input:focus,
.customize .form-switch .form-check-input:focus {

    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(67, 43, 125, 1)'/></svg>");

}

.select2-results__option--selectable {
    padding: 5px 10px !important;
}

.form-to-from.position-relative.return-f {
    max-width: 27%;
}

.search-eng .form-switch .form-check-input:checked,
.customize .form-switch .form-check-input:checked {

    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(255, 255, 255, 1)'/></svg>");

}

.return-f {
    display: none;
}

.return-f .svg {
    transform: scaleX(-1);
    translate: 0px -15px;
    rotate: -2deg;
    z-index: 1;
}

.return-f .select2-container {
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    background-color: #fff;
    border-radius: 7px;
}

.return-f .selection {
    width: 100%;
    font-size: 20px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-weight: 400;
    color: #000 !important;
    padding-left: 45px;
}

.select2-results__option--highlighted {
    background-color: #432b7d !important;
}

.return-f .select2-container--default .select2-selection--single {
    border: none !important;
}

.return-f .select2-container--default .select2-selection--single .select2-selection__arrow {

    top: 20px;
}

.ret-fl .form-check-input:focus {
    border-color: transparent;
}

.selected-money .selected-money-rup .form-check label {
    font-size: 16px;
    font-weight: 400;
    color: #717171;
    text-transform: capitalize;
}

.select-route-detail::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 6px;
    background-color: #F3EFFE;
    right: 220px;
    top: 0;
}

.alarm {
    padding-top: 30px;
}

.alarm p {
    font-size: 14px;
    font-weight: 400;
    color: #CC4E4E;
}

.direction {
    padding-top: 24px;
    padding-left: 39px;
}

.direction .cirle-purple {
    background-color: transparent;
}

.direction .flight-path {
    max-width: 590px;
    width: 100%;
}

.direction .path-line {
    width: 590px;
}

.selecting-route .continue-button {
    background-color: var(--bg-secondary-color);
    max-width: 176px;
    width: 100%;
    margin: auto;
    margin-top: 20px;
    border-radius: 4px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);

}

.selecting-route.continue-button span {

    color: var(--bg-white);
    font-size: 20px;
    font-weight: 500;
    padding: 5px;
    transition: all 0.4s ease;
}

.type-of-meal {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 7px 11px;
    margin-top: 8px;
}

.meal-head p {
    font-size: 17px;
    font-weight: 600;
    color: var(--bg-primary-color);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.which-type {
    flex-wrap: wrap;
}

.which-type .form-check {
    flex: 0 0 50%;
}

.which-type .form-check label {
    font-size: 16px;
    font-weight: 400;
    color: #959595;
}

.which-type .form-check-input:checked {
    background-color: var(--bg-white);
    border-color: var(--bg-secondary-color);
}

.which-type .form-check-input:checked[type="radio"] {
    background-image: url("../images/yellow-circle.png");
    background-size: 8px;
}

.some-stops {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 7px 11px;
    margin-top: 8px;
}

.stop-one-direct {
    justify-content: space-between;
    align-items: center;
}

.stop-one-direct .form-check label {
    font-size: 16px;
    font-weight: 400;
    color: #959595;
}

.stop-one-direct .form-check-input:checked {
    background-color: var(--bg-secondary-color);
    border-color: var(--bg-secondary-color);
    border-radius: 2px;
}

.stop-one-direct .form-check-input[type="radio"] {
    border-radius: 2px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    clip-path: polygon(0 50%, 50% 10%, 100% 50%, 50% 90%);
    background-color: var(--bg-primary-color);
    width: 38px;
    height: 24px;
}

/* .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination-bullets-dynamic {
  width: 200px;
} */
.swiper-pagination-clickable .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):not(.swiper-pagination-bullet-active-next):not(.swiper-pagination-bullet-active-prev) {
    background: #fff;
}

/* .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  width: 24px;
  border-radius: 0;
  transform: scale(1);
  height: 20px;
  background-color: #A299B8;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
} */

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    border-radius: 0;
    transform: scale(1);
    background-color: #A299B8;
    border-top: 10px solid #fff;
    border-bottom: 10px solid #fff;
    border-right: 25px solid #A299B8;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev::before,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next::before {
    border-bottom: 2px solid #A299B8;
    width: 45px;
    content: '';
    position: absolute;
    right: 5px;
    z-index: -1;
    transform: translateY(-2px);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev::before {
    left: 5px;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    border-left: 25px solid #A299B8;
    border-right: none;
}

.higher-galler {
    padding-top: 200px;
}

.modal .modal-dialog {
    transform: none;
    max-width: 841px;
}

.popping-form .form-1 .form-to-from .form-control {
    padding-left: 12px;
    font-size: 16px;
    border-radius: 7px;
    border: 1px solid transparent;
    /* text-transform: capitalize; */
    font-weight: 400;
    background-color: #f2edfb;
}

.popping-form .form-1 .form-to-from .form-control::placeholder {
    color: #818181;
}

.popping-form .form-1 .form-to-from .form-control.inputValue {
    color: #818181;
}

.enquiry-form .form-to-from .svg,
.popping-form .form-to-from .svg {
    left: auto;
    right: 17px;
}

.popping-form .form-1 .form-to-from input:first-child {
    margin-right: 0px;
}

.popping-form .form-1 {
    flex-wrap: wrap;
}

.popping-form .form-1 .form-to-from {
    flex: 0 0 48%;
}

.popping-form .names-popping-form .form-to-from {
    flex: 0 0 33%;
}

.form-to-froms button {
    background-color: #e4a724;
    display: block;
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 600;
}

.form-to-froms button:hover {
    border-color: var(--bg-primary-color);
    background-color: var(--bg-primary-color);
    box-shadow: 0 0 8px 0px rgba(228, 167, 36, 0.8);
    color: #fff;
}

.form-1 .form-to-from {
    flex: 1 1 auto;

}

.form-to-froms {
    flex: 1 1 auto;
}

.modal-header svg {
    text-align: center;
    background-color: var(--bg-white);
}

.modal-header button {
    margin: auto;
    border: none;
    line-height: 0;
}

.modal-header {
    border-bottom: 0;
    padding: 30px 10px 20px;
}

.go-to-top {
    position: fixed;
    /* right: 180px; */
    right: 104px;
    bottom: 114px;
    z-index: 999;
    display: none;
}

.go-to-top .btn {
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: var(--tertiary-color);
}

.go-to-top .btn .box {
    background-color: #6B579B;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.go-to-top.show {
    display: block;
}

.go-to-top svg {
    transform: rotate(-90deg);
}


/* swiper pagination starts here  */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 12px !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    width: 215px !important;
}

/* form validation  */

label.error {
    display: none !important;
}

.form-control.error {
    color: #ff0000 !important;
    border: 1px solid #ff0000 !important;
}

.form-control.error::placeholder {
    color: #ff0000 !important;
}

/* date range picker styling starts here  */

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    border-color: var(--bg-primary-color);
}

.daterangepicker .calendar-table th {
    color: var(--bg-primary-color);
}

.daterangepicker .calendar-table th.month {
    color: #676767;
}

.daterangepicker .calendar-table td {
    color: #343434;
}

.daterangepicker .drp-calendar {
    max-width: 700px;
}

.daterangepicker td.in-range {
    background-color: #432B7D20;
}

.daterangepicker td.start-date.end-date,
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--bg-primary-color);
    color: #fff;
    border-radius: 50%;
}

.applyBtn.btn {
    background-color: var(--bg-primary-color);
    border: none !important;
}

.applyBtn.btn:active {
    background-color: var(--bg-secondary-color);
}

/* passenger fields styling starts here  */


/*count-passenger starts*/

p.guest {
    background: #fff;
    padding: 7px 6px;
    font-size: 14px;
    font-weight: 500;
    color: #6e7b8e;
    border-radius: 3px;
    margin-bottom: 0;

}

.passenger .svg {
    width: 30px;
    height: 30px;
    fill: #432B7D;
    flex: 0 0 10%;
}

.passengerDropSectionBox {
    position: relative;
    min-width: 0;
}

.dropSection {
    position: absolute;
    top: 120%;
    width: 100%;
    background-color: #fff;
    max-width: 310px;
    z-index: 1;
    padding: 20px 17px;
    border: 1px solid rgba(67, 43, 125, 40%);
    border-radius: 5px;
}

.passenger {
    background-color: #fff;
    padding: 10px;
    display: flex;
    border-radius: 10px;
    border: 1px solid rgba(67, 43, 125, 36%);
    align-items: center;
    justify-content: space-between;
}

.passengers .trip-group {

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.passenger span.label {
    font-size: 17px;
    color: #4C4C4C;
    margin-left: 10px;
    margin-right: 8px;
}

.passenger p {
    flex: 0 0 65%;
    line-height: 1;
}

.passenger p>span:last-child {
    font-size: 13px;
    color: #4C4C4C80;
    font-weight: 500;
    margin-left: 10px;
    margin-right: 8px;
}

.passenger span.minus,
.passenger span.plus {
    font-size: 17px;
    width: 17px;
    height: 17px;
    color: #fff;
    background-color: #432B7D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    -webkit-transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    flex: 0 0 auto;
    font-weight: 900;
}

.minus {
    padding-bottom: 3px;
}

.passenger input {
    width: 18px;
    border: none;
    text-align: center;
    padding: 0;
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 600;
    color: #4C4C4C;
    border-radius: 0;
    background-color: #fff;
    pointer-events: none;
}

input[type="number"] {
    -webkit-appearance: textfield !important;
    /* Chrome, Safari, Edge */
    appearance: textfield !important;
    /* Standard */
    -moz-appearance: textfield !important;
}


.form-select:focus,
.form-control:focus {
    box-shadow: none;
}

/* gallery swiper  */

.galler-include-main .swiper-container {
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


.galler-include-main .swiper-container-wrapper {
    display: flex;
    flex-flow: column nowrap;
}

.galler-include-main .swiper-button-next,
.galler-include-main .swiper-button-prev {
    color: #000;
    box-shadow: 0 0 5px 0 #0005;
}

.galler-include-main .swiper-slide {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.galler-include-main .swiper-slide .description,
.galler-include-main .swiper-slide .title {
    display: block;
    opacity: 0;
    transition: 0.5s ease 0.5s;
}

.galler-include-main .swiper-slide-active .description,
.galler-include-main .swiper-slide-active .title {
    opacity: 1;
}

.galler-include-main .swiper-slide-active .title {
    margin-bottom: 0.5rem;
    font-size: 24px;
    color: #000;
    transition: opacity 0.5s ease 0.5s;
}

.galler-include-main .swiper-slide-active .description {
    font-size: 16px;
    color: #777;
    transition: opacity 0.5s ease 0.75s;
}

.galler-include-main .gallery-top {
    position: relative;
    width: 100%;
    height: 318px;
}

.galler-include-main .gallery-thumbs {
    width: 100%;
    height: 485px;
    padding-top: 10px;
    display: none;
}

.galler-include-main .gallery-thumbs .swiper-wrapper {
    flex-direction: row;
}

.galler-include-main .gallery-thumbs .swiper-slide {
    width: 25%;
    flex-flow: row nowrap;
    height: 100%;
    opacity: 0.75;
    cursor: pointer;
}

.galler-include-main .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}


/* tabs css  */
.tab-data {
    display: none;
}

.tab-data.active {
    display: block;
}

/* swiper js  */
.inner-inclusive .swiper-btns {
    position: relative;
    left: -33px;
    top: -28px;
}

.inner-page .all-inclusives {
    padding-bottom: 0;
}

.inclusives.inner-inclusive:nth-of-type(2n+1) {
    background-color: rgba(67, 43, 125, 5%);
}

.btn:active {
    border-color: transparent !important;
}

.contact-map {
    padding: 32px 0 38px;
}

.contact-map iframe {
    width: 100%;
    height: 24.438em;
    border-radius: 12px;
}

/* hotel detail page starts here */
.rating-num span {
    font-size: 80px;
    font-weight: 700;
    color: #5B5B5B;
}

.hotel-content .star-gallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-content .star-gallery svg {
    width: 16px;
    height: 18px;
}

.star-gallery span {
    margin-left: 8px;
}

.rating-detail span {
    font-size: 18px;
    font-weight: 400;
    color: #5B5B5B;
}

/* .hotel-detail, */
.select-or-not {
    color: #636363;
    border: 1px solid #cdcdcd;
}

.hotel-detail a,
.hotel-detail span,
.select-or-not {
    transition: 0.4s;
    padding: 5px 15px;
}

.select-or-not:hover {
    background-color: var(--bg-secondary-color);
    color: #fff;
    transition: 0.4s;
}

.heading-right .share {
    flex: 1 0 auto;
}

.heading-right .form-check {
    background-color: var(--bg-secondary-color);
    color: var(--bg-white);
    width: initial;
    max-width: none;
}

.heading-right .form-check-input {
    border: none !important;
}

.heading-right .form-check-input:checked {
    background-color: var(--bg-white);
    color: var(--bg-secondary-color);
}

.heading-right .form-check-input:checked[type="radio"] {
    background-image: url(/images/tick-yellow.png);
    border: none;
}

.heading-right .form-check {
    border: none;
    padding: 5px 34px 5px 45px;
    border-radius: 5px;
}

.price-head-gallery .content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #5B5B5B;
}

.price-head-gallery .content p a,
.price-head-gallery .content p {
    font-size: 18px;
    font-weight: 400;
    color: #5B5B5B;
}

.price-head-gallery .content p a {
    font-size: 17px;
}

/* Index Search Start */
.input-drop {
    display: none;
    position: absolute;
    width: 100%;

    top: 70px;
}

.input-drop ul {
    padding: 20px 0;
    position: relative;
    z-index: 99;
    background-color: #fff;
    border-radius: 0 5px 5px 5px;
    box-shadow: 0 0px 5px 0px #4d4d4ddb;
    max-height: 400px;
    overflow-y: auto;
}

.input-drop ul li {
    padding: 10px 30px;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.input-drop ul li span:nth-last-child(1) {
    margin-right: 20px;
}

.input-drop ul li svg {
    height: 18px;
    color: #695597;
    opacity: 0;
    transition: all 0.6s;
}

.input-drop ul li:hover {
    border: 1px solid #707070;
    box-shadow: 0 0 5px 0 #555555;
    transition: all 0.3s;
}

.input-drop ul li:hover svg {
    opacity: 1;
    transition: all 0.6s;

}

.input-drop ul li .form-check-input {
    height: 20px;
    width: 20px;
    border: 2px solid #432b7d;
}

.input-drop ul li .form-check {
    width: 100%;
    cursor: pointer;
}

.input-drop ul li .form-check-label {
    width: 95%;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #432b7d;
    border-color: #432b7d;

}

.done-dest {
    text-align: right;
    margin-top: 10px;
    z-index: 17;
    position: relative;
    cursor: pointer;
}

.done-dest span,
.select-dest-done span,
.dur-done span {
    display: inline-block;
    padding: 10px 15px;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    background-color: #e4a724;
    border-radius: 5px;
    cursor: pointer;
}

.dur-done {
    text-align: center;
    margin-top: 15px;
    display: none;
}

/* Index Search Ends */
/* Select Destination Css Starts */
.s-dest {
    background-image: url(../images/bg-dest.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    padding-bottom: 400px;
}

.pagef-tab {
    margin: 30px auto 0 !important;
}

.pagef-tab ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 48%;
    margin: 0 auto;
}

.pagef-tab ul li {
    height: 4px;
    width: 200px;
    background-color: #c4c4c4;
    border-radius: 3px;
}

.pagef-tab ul li.active {
    background-color: #432B7D;

}

.dest-list .dest-selected {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.dest-list .dest-selected p {
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #B2B2B2;
    font-size: 14px;
    color: #707070;
    font-weight: 400;
    line-height: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.dest-list .subdest-selected,
.dest-list .subdest-date-selected {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0 24px;
    flex-wrap: wrap;
}

.dest-list .subdest-date-selected {
    margin: 0;
}

.dest-list .subdest-selected p,
.dest-list .subdest-date-selected p {
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #B2B2B2;
    font-size: 14px;
    color: #707070;
    font-weight: 400;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.dest-list .dest-selected p:not(:nth-of-type(1)),
.subdest-selected p:not(:nth-of-type(1)),
.dest-list .subdest-date-selected p:not(:nth-of-type(1)) {
    margin-left: 5px;
}

.dest-list .dest-selected p span.rem-destList {
    font-size: 15px;
    cursor: pointer;
    display: none;
    margin-left: 10px;
}

.dest-list .dest-selected p:not(:nth-of-type(1)) span.rem-destList {
    display: block;
}

.main-s-dest h3 {
    font-size: 34px;
    font-weight: 600;
    color: #535353;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-align: center;
}

.s-select-main-box,
.s-travel-main {
    padding: 36px 54px 66px 99px;
    background-color: #fff;
    box-shadow: 0 0 5px 0 #432B7D;
    border-radius: 10px;
}

.s-travel-main {
    padding: 32px 81px;
}

.dest-subs-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.sub-dest-list ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 10px 0;
}

.dest-title span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #636363;
}

.sub-dest-list-box {
    flex: 0 0 82%;
    max-width: 82%;
}

.sub-dest-list {
    overflow: hidden;
}

.sub-dest-list-box>span {
    position: absolute;
    top: 49%;
    cursor: pointer;
}

.sub-dest-list-box>span:nth-of-type(1) {
    left: 0;
    right: auto;
    rotate: 90deg;
    z-index: 9;
}

.sub-dest-list-box>span:nth-of-type(2) {
    right: 0;
    left: auto;
    rotate: -90deg;
    z-index: 9;
}

.sub-dest-list ul li {
    min-width: 200px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #919191;
}

.sub-dest-list ul li,
.sub-dest-list ul li label {
    cursor: pointer;

}

.sub-dest-list ul li:not(:nth-last-of-type(1)) {
    margin: 0 23px 0 0;
}

.sub-date .check-sel {
    padding: 10px 29px 10px 10px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #919191;
    cursor: pointer;
}

.sub-date .check-sel label {
    margin-left: 5px;
}

.sub-dest-list ul li.active,
.sub-date .check-sel.active {
    background-color: #432b7d;
    position: relative;

}

.sub-dest-list ul li.active label,
.sub-date .check-sel.active label {
    color: #fff;

}

.sub-dest-list ul li.active .form-check-input:checked,
.sub-date .check-sel.active .form-check-input:checked {
    background-color: #E4A724;
}

.dest-title {
    flex: 0 0 18%;
}

.sub-dest-list label,
.sub-date .check-sel {
    font-size: 16px;
    font-weight: 400;
    color: #717171;
    line-height: 1;
    text-transform: capitalize;
    width: 100%;
}

.check-sel .form-check {
    display: flex;
    align-items: center;
}

.sub-dest-list .form-check-input[type="checkbox"],
.sub-date .check-sel .form-check-input[type="checkbox"] {
    border-radius: 2px;
    flex: 0 0 auto;
}

.sub-date .check-sel .form-check-input[type="checkbox"] {
    margin-top: 2px;
    margin-bottom: 0;
    margin-right: 0;
}

.s-select-main {
    padding: 0 30px;
}

.tour-done {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
}

.tour-done div {
    flex: 0 0 50%;
    cursor: not-allowed;
    pointer-events: none;
}

.select-dest-done {
    text-align: right;
}

.dest-subs {
    position: relative;
    margin-bottom: 10px;

}

.dest-subs:nth-last-of-type(1) {
    margin-bottom: 0;
}

.dest-subs>span {
    position: absolute;
    font-size: 23px;
    color: #E4A724;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: none;
}

.dest-subs:not(:nth-of-type(1))>span {
    display: block;
}

.sub-dest-list li>span {
    display: none;
}

.sub-dest-list li.active>span {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #432b7d;
    color: #432b7d;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    right: 0;
    top: -6px;
    transform: translate(-50%, -50%);
    display: flex;
    align-content: center;
    justify-content: center;
}

.s-select-main>p,
.tour-sequence ul li {
    font-size: 18px;
    font-weight: 500;
    color: #717171;
    line-height: 1;
    margin-bottom: 20px;
}

.tour-sequence ul li:not(:nth-last-of-type(1)) {
    margin-bottom: 15px;
}

.tour-sequence ul li span {
    color: #432B7D;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
}

.dest-list {
    padding: 28px 0 57px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.dest-list .prev-btn-s {
    flex: 0 0 auto;
    margin-bottom: 5px;
}

.subdest-date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 13px 214px 13px 82px;
    box-shadow: 0 0 5px 0 #432B7D5E;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #fff;
}

.subdest-date:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.subdest-date .date-check {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.date-check span {
    margin-left: 10px;
}

.check-sel {
    padding: 10px 29px 10px 10px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.check-sel label {
    cursor: pointer;
}

.date-check span {
    position: relative;
    width: 10px;
    height: 10px;
}

.date-check span img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.check-sel.active+span img {
    rotate: 180deg;
    transform: translate(50%, 50%);
}

.sub-dest-showDate {
    padding: 66px 0 94px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: first baseline;
    opacity: 0.1;
}


.sub-fromdest,
.sub-todest {
    flex: 0 0 35%;
    color: #343434;
}

.sub-fromdest span,
.sub-todest span {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    margin: 5px 0;
    display: block;
}

.sub-fromdest p,
.sub-todest p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.sub-fromdest p:first,
.sub-todest p:first {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.d-sep {
    position: relative;
    flex: 0 0 25%;

}

.d-sep img {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sub-date {
    flex: 0 0 30%;
}

.s-dur-calender {
    flex: 0 0 70%;
    text-align: center;
}

.s-dur-calender .lightpick__month {
    width: 100% !important;
}

.s-dur-calender .lightpick.lightpick--2-columns.lightpick--inlined {
    width: 100% !important;
}

.daterangepicker.opensright::before,
.daterangepicker.opensright::after {
    display: none !important;
}

.c-sub-date {
    height: 1px;
    border: none;

}

.c-sub-date:active,
.c-sub-date:focus {
    border: none;

}

.daterangepicker .calendar-table th {
    font-size: 14px !important;
    padding: 0 !important;
}

.daterangepicker .calendar-table td {
    font-size: 12px !important;
    padding: 0 !important;
}

.daterangepicker .calendar-table th.month {
    font-size: 16px !important;
}

.s-travel-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.s-travel-main .dropSectionFields {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.s-travel-main .pass-title {
    font-size: 26px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 500;
    color: #636363;
}

.s-travel-main .pass-field {
    flex: 0 0 80%;
}

.s-travel-main .dropSectionFields .form-group {
    width: 100%;
}

.s-travel-main .dropSectionFields .form-group:nth-of-type(2) {
    margin: 0 24px;
}

.dest-submit {
    text-align: center;
    margin-top: 24px;

}

.dest-submit label {
    background-color: #e4a724;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    color: #fff;


}

.dest-submit label input {
    border: none;
    background-color: transparent;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.dest-submit label svg {
    margin-left: 5px;
    fill: #fff;

}

/* Select Destination Css Ends */

.client-reviews .swiper-slide-active .review-detail {
    box-shadow: 4px 5px 8px 0 rgba(67, 43, 125, 28%);
}


/* Stars filter dropdown starts here  */
.starfilter {
    min-width: 113px;
    box-shadow: 0 0 4px 0 #0002;
}

.starfilter ul li {
    transition: all 0.4s;
    line-height: 34px;
    cursor: pointer;
}

.starfilter ul>li:hover {
    color: var(--bg-secondary-color);
    transition: all 0.4s;
}

.callback-popup {
    min-width: 363px;
}

/* Btn  */
.btn-gray {
    color: #717171 !important;
    border: 1px solid #8373AB;
}

.select-btn label {
    cursor: pointer;
}

.sidebar-stick {
    top: 118px;
    z-index: 20;
}


/* Inner page enquiry form  */

.enquiry-form {
    max-width: 1040px;
    margin: 20px auto 0;
    padding: 28px;
    background-color: #36265D;
    box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.6);
}

.inner-banner-heading .enquiry-form .form-1 .form-to-from .form-control::placeholder {
    font-size: 17px;
    color: #818181;
}

.inner-banner-heading .enquiry-form .form-1 .form-to-from .form-control {
    height: 58px;
    font-size: 17px;
    border-radius: 5px;
}

.saudi-flight-image img {
    max-width: 150px;
}

.hotel-sum-details {
    margin-top: 40px;
}

.top-tol {
    padding: 5px 10px;
    background-color: #38216e;
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    border-radius: 5px 5px 0 0;
}

.trans-sum-details {
    margin-top: 30px;
}

.trans-sum-main {
    background-color: #f7f5fc;
}

.rout-sr>p {
    color: #432b7d;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    display: inline-block;
}


.ui-widget-header .ui-icon {
    background-image: url("/images/datepicker/ui-icons_444444_256x240.png");
}

input.form-control::-webkit-input-placeholder:after

/* Only for Chrome */
    {
    color: red;
    content: "*";
    opacity: 1
}

.flight-slection-s ul {
    padding: 30px;
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
    box-shadow: inset 0px 0px 10px 0px #d2bfff, 1px 1px 3px 0 #432b7d;
    border-radius: 10px;
}

.flight-slection-s label>span {
    flex: 0 0 25%;
    font-size: 18px;
    font-weight: 600;
    color: #e4a724;
}

.flight-slection-s label {
    pointer-events: none;
}

.flight-slection-s .path-line {
    width: 50%;
    flex: 0 0 50%;
}

.flight-slection-s li {
    padding: 25px 15px;
    box-shadow: inset 0px 0px 5px 1px #8c7cb1;
    border-radius: 5px;
    margin-bottom: 10px;
}

.flight-slection-s li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.dep-deata {
    color: #432b7d;
    font-weight: 400;
}

.flight-slection-s .form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%23432b7d'/></svg>");
    border: 1px solid #432b7d;
}

.flight-slection-s .form-switch .form-check-input:checked:focus {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%23fff'/></svg>");
    border: 1px solid #432b7d;
}

.flight-slection-s li input {
    cursor: pointer;
}


/* Whatsapp Icons  */


/* Whatsapp button animation start */
.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulsewhatssapp;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    bottom: 35px;
    right: auto;
    left: 20px;
    z-index: 999;
}

.btn-whatsapp-pulse:hover {
    color: #fff;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid #49e670;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes pulsewhatssapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.whatsapp-text {
    background-color: #fff;
    box-shadow: 0 0 4px 0px #0004;
    font-size: 13px;
    color: var(--headings_color);
    padding: 4px 12px 5px;
    width: 97px;
    border-radius: 20px;
    top: 0;
    left: 20px;
    right: auto;
    /* transform: translate(-50%, -12px); */
    font-weight: 600;
}

.whatsapp-mobile {
    display: none !important;
}

/* 
.inner-banner-heading .enquiry-form {
  background-color: rgba(255, 255, 255, 40%);
} */

/* BlogStarts Here */

.affordable-umrah-post {
    padding-top: 40.5px;
    padding-bottom: 70px;
}

.blog-main-heading {
    max-width: 1096px;
    width: 100%;
    margin: auto;
}

.blog-main-heading h1 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
}

.blog-main-heading p {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.posts-involved {
    padding-top: 5px;
}

.blog-imges {
    padding-top: 25px;
}

.blog-banners .main-heading {
    max-width: 648px;
    width: 100%;
    padding: 31px 35px 7px;
    top: 10px;
    background-color: var(--bg-white);
    top: -50px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 40px;
    text-align: center;
}

.main-heading h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #444444;
}

.main-heading p {
    font-size: 18px;
    font-weight: 400;
}

.main-heading h2::before {
    position: absolute;
    content: "";
    background-image: url("/assets/images/left-design.png");
    width: 50px;
    height: 40px;
    top: 50%;
    transform: translate(-100%, -50%);
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
    left: 120px;
}

.main-heading h2::after {
    position: absolute;
    content: "";
    background-image: url("/assets/images/right-design.png");
    width: 50px;
    height: 40px;
    right: 120px;
    top: 50%;
    transform: translate(100%, -50%);
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.content {
    background-color: rgba(0, 0, 0, 37%);
    border-radius: 24px;
    position: absolute;
    bottom: 0;
    padding: 30px 25px;
}

.para p {
    font-size: 19px;
    font-weight: 400;
    color: var(--bg-white);
    line-height: 22px;
}

.admin-date span {
    font-size: 16px;
    font-weight: 500;
    color: var(--bg-white);
}

.admin-date {
    max-width: 190px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 9px;
}

.admin-date p {
    font-size: 16px;
    font-weight: 400;
    color: var(--bg-white);

}

.admin-date img {
    margin-right: 6px;
}

.blog-main-post .content {
    background-color: rgba(0, 0, 0, 67%);
    border-radius: 24px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    transition: min-height 0.3s ease, padding 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 0;
}

.blog-main-post>a {
    z-index: 1;
}

.blog-main-post:hover .content {
    min-height: 100%;
    padding: 140px 25px;
}

.blog-main-post:hover .content .para p {
    color: var(--bg-secondary-color);
}

.blog-main-post {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.main-headings {
    max-width: 648px;
    width: 100%;
    margin: auto;
    text-align: center;
}

.main-headings h2 {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    width: fit-content;
    padding: 0 67px;
    white-space: nowrap;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
}

.main-headings p {
    font-size: 18px;
    font-weight: 400;
}

.main-headings h2::before {
    position: absolute;
    content: "";
    background-image: url("../images/left-design.png");
    width: 50px;
    height: 40px;
    top: 0;
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0px;
}

.main-headings h2::after {
    position: absolute;
    content: "";
    background-image: url("../images/right-design.png");
    width: 50px;
    height: 40px;
    right: 0px;
    top: 0;
    background-size: 50px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.latest-posts-blog.no-bg {
    background: none;
    position: relative;
}

.latest-posts-blog.no-bg .latest-data-blog {
    padding-top: 30px;
}

.latest-posts-blog.no-bg .main-headings {
    padding: 26px 30px;
    border-radius: 40px;
    
    background-color: #fff;
    margin: auto;
    margin-top: -65px;
    left: 0;
    right: 0;
    width: fit-content;
}

.latest-posts-blog.no-bg .main-headings h2 {
    padding-bottom: 10px;
    margin: 0 auto 3px;
    width: fit-content;
    padding: 0 67px;
    white-space: nowrap;
    max-width: none;
    position: relative;
    box-sizing: border-box;
}

.latest-posts-blog.no-bg .main-headings p {
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
}

.latest-posts-blog {
    background-color: rgba(0, 0, 0, 3%);
    padding: 60px 0 40px;
}

.latest-data-blog {
    padding-top: 37px;
    padding-bottom: 50px;
}

.blog-main-post.add {
    margin-top: 60px;
}

.paginations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
}

.paginations a {
    font-size: 18px;
    font-weight: 600;
    padding: 0 6px;
}

.paginations a.active {
    color: var(--bg-secondary-color);
}

.detail-heading h4,
.detail-heading h1 {
    font-size: 42px;
    font-weight: 700;
    color: #343434;
    margin: 0 0 15px;
}


.detail-heading p {
    font-size: 18px;
    font-family: var(--monts-font);
    color: #343434;
    padding-bottom: 12px;
}

.detail-page {
    padding-top: 31px;
}


.questions-about-umrah p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    padding-bottom: 16px;
    color: #373737;
}
.questions-about-umrah ul{
    padding-left: 3.5rem;
}
.questions-about-umrah ul>li {
    font-size: 18px;
    color: #373737;
    line-height: 26px;
    font-weight: 400;
    margin: 20px 0;
    position: relative;
}
.questions-about-umrah ul>li::after {
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--bg-primary-color);
    left: -40px;
    top: 11px;
}
.questions-about-umrah p a, .questions-about-umrah a {
    color: var(--bg-secondary-color);
}
.questions-about-umrah img {
    margin-top: 10px;
    padding-bottom: 15px;
}

.questions-about-umrah span {
    font-size: 36px;
    line-height: 42px;
    font-weight: 700;
    color: var(--bg-secondary-color);
    text-align: left;
    display: block;
    padding-top: 6px;
    padding-bottom: 15px;
    max-width: 807px;
    width: 100%;
}


.headingof-detail-blog span {
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-primary-color);
}

.para-cont p {
    font-size: 19px;
    font-weight: 400;
    color: var(--bg-white);

}

.data-detail-section .content-detail {
    background-color: rgba(0, 0, 0, 67%);
    border-radius: 24px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    transition: min-height 0.3s ease, padding 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 30px 25px;
}

.data-detail-section {
    border-radius: 25px;
    margin-bottom: 25px;
}

.data-detail-section a {
    z-index: 9;
}

.data-detail-section:hover .content-detail {
    min-height: 100%;
    padding: 140px 25px;
}

.date-time-data span {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 500;
}

.date-time-data p {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 400;
}

.data-detail-section:hover .para-cont p {
    color: var(--bg-secondary-color);
}

.date-time-data {
    max-width: 190px;
    width: 100%;
    margin-top: 6px;
}

.date-time-data img {
    margin-right: 5px;
}

.data-detail-section.prompt {
    margin-top: 40px;
}

/* Blogs Banner Ends Here */

.select2-container--default .select2-selection--single {
    border: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
}

.select2-container .select2-selection--single {
    height: 63px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.all-extend-detail {
    padding-top: 60px;
}

.latest-detail .headingof-detail-blog {
    line-height: 1.2;
    margin-bottom: 15px;
}

.questions-about-umrah h2 {
    font-size: 28px;
    line-height: 42px;
    font-weight: 700;
    color:var(--bg-primary-color);
    text-align: left;
    display: block;
    padding-top: 6px;
    padding-bottom: 15px;
    max-width: 807px;
    width: 100%;
}

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

.questions-about-umrah h3 {
    color: var(--bg-primary-color);
}

.questions-about-umrah .content-detail img {
    width: 100% !important;
   height: auto !important;
   object-fit: contain;
}
 

/* Custom Pagination Styles - Premium Design */
.paginations {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 50px auto 30px !important;
    width: 100% !important;
    flex-wrap: wrap !important;
}

.paginations a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-width: 45px !important;
    height: 45px !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #222222 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    border: 1px solid #ddd !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
}

.paginations a i {
    font-size: 14px !important;
    color: #ffffff !important;
}

/* Numbers use Yellow for Active/Hover */
.paginations a:not(.prev):not(.next):hover,
.paginations a.active {
    background: var(--bg-secondary-color, #ffc107) !important;
    color: #000000 !important;
    border-color: var(--bg-secondary-color, #ffc107) !important;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4) !important;
}

/* Previous/Next use Primary Color (Dark Blue) */
.paginations a.prev, 
.paginations a.next {
    background: var(--bg-primary-color, #432b7d) !important;
    color: #ffffff !important;
    border-color: var(--bg-primary-color, #432b7d) !important;
    min-width: 60px !important;
}

.paginations a.prev:hover, 
.paginations a.next:hover {
    background: #000000 !important;
  
 
    border-color: #000000 !important;
}

.content-detail table td {
  border: 1px solid black;
  padding: 5px !important;
}

.scroll-content table td {
  border: 1px solid black;
  padding: 3px;
}
.latest-detail {
    position: sticky;
    top: 118px;
    align-self: flex-start;
    padding-bottom: 10px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
 
}
 
.latest-detail::-webkit-scrollbar {
    display: none;
}