/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Local Font */


:root {
    --white: #fff;
    --black: #000;
    --primary: #005F99;
    --secondary: #333333;

}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Jost", serif;
}

section {
    position: relative;
    padding: 4rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Jost", serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 0.9em 1.96em;
    border-radius: 7px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.heading {}

.subtitle {}

/* !GLOBAL CSS */


/* mouse animation css  */


/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */


/* mouse animation css  */


/* NAV HEADER CSS */

header {
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
    /* margin: 0 auto; */
    /* z-index: 111; */
    /* top: 0; */
    /* width: 100%; */
    padding: 0 0 1rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: #000;
    text-transform: capitalize;
    font-weight: 700;
    padding: 0 0;
    display: inline-block;
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 880px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 8rem;
    width: fit-content;
    left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0 0 1rem 0;
    color: var(--white);
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    text-transform: capitalize;
}

.main-slider p {
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 1rem;
    font-size: 1.125rem;
    width: 81%;
}

ul.rightnav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

ul.rightnav li a i {
    color: #fff;
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.topbar {
    background: RGB(28, 28, 28);
    padding: 10px 0;
    margin-bottom: 10px;
}

ul.toplist {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.footer-main__social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

ul.footer-main__social li a i {
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
}

ul.toplist li a i {
    color: var(--primary);
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    margin-right: 10px;
}

ul.toplist li a {
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
}

figure.bnrsideimgs {
    position: relative;
}

img.img-fluid.bnr2img {
    position: absolute;
    left: 58%;
    bottom: -2rem;
}

.slideOne h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}

figure.bnrsideimgs img {
    border: 20px solid #fff;
    border-radius: 40%;
}

/* !MAIN HERO SLIDER CSS */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */

.contactForm-group :is(input, select, textarea),
.returnsFrom input {
    display: block;
    width: 220px;
    background: transparent;
    padding: 1rem 0;
    border: 1px solid #000;
    color: #000;
    outline: none;
    resize: none;
    /* margin-bottom: 2.25rem; */
    border-radius: 10px;
}


.contactForm-group {
    align-items: center;

}

form.contactForm {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.contactForm-btn button {
    background: #000;
    padding: 14px 24px;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

form.contactForm {
    background: #fff;
    border-radius: 10px;
    padding: 3rem 1rem;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 15%);
}

section.activity-sec {
    padding-top: 0;
    margin-top: -3rem;
}


.subHead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.mainHead {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    text-transform: capitalize;
}


/* abt-sec */
.abtfigurewrap {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.abtfigurewrap figure img {
    border-radius: 130px;
}

.abtfigurewrap figure {
    flex: 1;
}

.about-cntnt p {
    font-size: 1rem;
    color: #505050;
    font-weight: 400;
    line-height: 1.5;
    width: 80%;
}

.about-cntnt h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);

}

ul.abtlist li {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

ul.abtlist li+li {
    margin-top: 10px;
}

ul.abtlist li i {
    margin-right: 10px;
}

ul.abtlist {
    margin: 1rem 0 2rem 0;
}

.cpt {
    position: absolute;
    left: 47%;
}

.cpt h3 {
    font-size: 64px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    left: -41px;
}

.cpt::before {
    position: absolute;
    content: "";
    background: url(../images/abtlgo.webp)center/cover no-repeat;
    width: 195px;
    height: 195px;
    left: -67%;
    top: -71%;
}

/* abt-sec */


/* playvideo */
.playvideo {
    background: #f7f7f7;
}

.discntnt {
    text-align: center;
    margin-bottom: 2rem;
}

.discntnt p {
    font-size: 1rem;
    color: #505050;
    line-height: 1.7;
}

figure.discoverfig {
    position: relative;
}

figure.discoverfig img {
    border-radius: 20px;
}

figure.discoverfig a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 104, 26, 0.8);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    font-size: 1.5rem;
}

/* playvideo */


/* activity-sec */
.activity-section {
    background: #f7f7f7;
}

.acticitywrap {
    background: var(--primary);
    text-align: center;
    padding: 3rem 1rem;
    border-radius: 20px;
    transition: 0.5s ease;
}

.acticitywrap h3 {
    font-size: 1.5rem;
    color: #fff;
}

.acticitywrap p {
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
    width: 82%;
    margin: auto;
}

.acticitywrap figure {
    background: #fff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    margin: auto;
    margin-bottom: 1rem;
    position: relative;
}

.acticitywrap figure::before {
    position: absolute;
    content: "";
    background: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: 8px;
    top: 2px;
}


.acticitywrap figure::after {
    position: absolute;
    content: "";
    background: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    right: 8px;
    bottom: 2px;
}

.acticitywrap:hover {
    background: #000;
}

.acticitywrap:hover figure::before {
    background: var(--primary);
}

.acticitywrap:hover figure::after {
    background: var(--primary);
}


/* activity-sec */


/* owsometour */
.owsome-tour {
    background: url(../images/owsomebg.webp)center/cover no-repeat;
    padding: 7rem 0;
}

.owsometop {
    text-align: center;
    margin-bottom: 3rem;
}

.owsometop p {
    font-size: 1rem;
    color: #505050;
    line-height: 1.7;
}

.owsomecntnt h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.owsomecntnt h4 {
    font-size: 1rem;
    font-weight: 400;
    color: #505050;
    margin: 1rem 0;
}

.owsomecntnt {
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 4px 7px 6px #0000000f;
    padding: 2rem 1rem;
}

.owsome-wrap figure img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 300px;
    object-fit: cover;
}

.owsomecntnt .themeBtn {
    background: #000;
    width: 100%;
    text-align: center;
}

.owsomesSlider {
    padding-bottom: 2rem;
}

a.themeBtn.viewbtn {
    margin: auto;
    display: block;
    width: fit-content;
}

.dot11 {
    position: absolute;
    bottom: 7rem;
    left: 7rem;
}

.circle11 {
    position: absolute;
    right: -6rem;
    bottom: -4rem;
}

/* owsometour */


/* breath */
figure.breathfig {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

figure.breathfig img {
    width: 282px;
    border-radius: 10px;
}

.breath-cntnt p {
    font-size: 1rem;
    color: #505050;
    line-height: 1.7;
}

figure.breathfig2 {
    position: relative;
}

figure.breathfig2 a {
    font-size: 20px;
    color: #505050;
    font-weight: 600;
    text-transform: capitalize;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    position: absolute;
    left: -5rem;
    top: 2rem;
    box-shadow: 0 3px 0 1px #0000000a;
}

figure.breathfig2 a i {
    color: var(--primary);
    font-size: 2rem;
}

figure.breathfig2 img {
    border-radius: 20px;
}

section.Breathtaking-sec {
    padding-bottom: 5rem;
}

/* breath */

/* choose-section */
.choose-section {
    background: #000;
    padding: 11rem 0;
}

.choose-cntnt .subHead {
    color: #fff;
}

.choose-cntnt .mainHead {
    color: #fff;
}

.choose-cntnt p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.7;
}

.choosesub {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: end;
}

.choose1-content h3 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
}

.choose-wrap {
    text-align: center;
}

.choose1-content h4 {
    font-size: 1rem;
    color: #fff;
}

.choose-wrap figure {
    background: #0f2e4b;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.choose-wrap.choosesecond {
    margin-top: 4rem;
}

.choosebg1 {
    position: absolute;
    top: 0;
}

.choosebg2 {
    position: absolute;
    bottom: 0;
    transform: rotate(180deg);
}

.circle22 {
    position: absolute;
    right: -8rem;
    z-index: 1;
}

/* choose-section */

/* holidaytrip */
.holidaycontent a {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.holidaycontent a i {
    margin-left: 10px;
    color: var(--primary);
}

.holidaycontent {
    margin-top: 1rem;
}

section.owsome-tour.holdiaytrip .owsome-wrap figure img {
    height: 386px;
    border-radius: 10px;
}

.blogcontent h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
}

.blogcontent p {
    font-size: 1rem;
    color: #505050;
    line-height: 1.7;
    margin: 1rem 0;
}

.blogcontent {
    margin-top: 1.5rem;
}

.blog-wrap figure img {
    border-radius: 10px;
    width: 100%;
}

.blog-wrap {
    border: 1px solid #ffccb1;
    border-radius: 10px;
    padding: 1.5rem;
}

.owsome-tour.blogsection {
    background: unset;
    padding: 4rem;
}

/* holidaytrip */


/* review-section */
.review-section {
    background: url(../images/reviewpage.webp) center/cover no-repeat;
    padding: 7rem 0;
}

.review-cntnt .mainHead {
    color: #fff;
}

.review-cntnt .subHead {
    color: #fff;
}

.review-cntnt p {
    color: #fff;
    line-height: 1.6;
}

.review-cntnt .themeBtn {
    background: #000;
}

.review-wrap span {
    color: #fff;
    font-size: 5rem;
}

ul.review-star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

ul.review-star li a {
    color: #fff;
}

.review-wrap p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.7;
    width: 59%;
    margin: 1rem auto 2rem;
}

.review-wrap {
    text-align: center;

    position: relative;
}

.review-wrap h4 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: 1rem;
}

.review-wrap::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 630px;
    height: 557px;
    outline-offset: 15px;
    outline: 1px solid var(--primary);
    background-color: var(--primary);
    border-radius: 40% 237px 281px 210px;
    transform: rotate(123deg) scale(0.91);
    z-index: -1;
    left: 2rem;
    top: -1rem;
}

.reviewSlider {
    padding: 7rem 0;
}

.review-imgs img {
    border-radius: 50%;
    border: 6px solid var(--primary);
}

.review11 {
    position: absolute;
    top: 1rem;
    left: 6rem;
}

.review22 {
    position: absolute;
    right: 2rem;
    top: 2rem;
}

.review33 {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
}

.review44 {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
}

img.img-fluid.reveiwbg1 {
    position: absolute;
    top: 15%;
    z-index: -1;
    width: 70%;
    left: 15%;
}

/* review-section */

.themeBtn:hover {
    background: #000;
    color: #fff;
}


.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}


/*  Footer-Sec Css Start */
footer {
    background: url(../images/footer-back.webp) center/cover no-repeat;
    padding: 4rem 0 0;
}

figure.footer-logo p {
    color: #fff;
    margin: 15px 0;
    line-height: 1.7;
}

ul.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.footer-social li a i {
    border: 1px solid #fff;
    height: 45px;
    width: 45px;
    display: grid;
    place-content: center;
    border-radius: 50px;
    color: aliceblue;
    flex-shrink: 0;
}

ul.footer-social li a i:hover {
    color: #ffff;
    background: #005f99;
    transition: 0.5s ease;
    border: 1px solid #005f99;
}

footer h2 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 40px;
    position: relative;
}

ul.useful-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

ul.useful-links li+li {
    margin: 13px 0;
}

ul.insta-Imag {
    display: flex;
    gap: 10px;
}

ul.insta-Imag li+li {
    margin: 5px 0;
}

ul.insta-Imag li figure img {
    border-radius: 7px;
}

footer p {
    color: #fff;
    text-transform: capitalize;
    margin: 10px 0;
    line-height: 2;
}

form.footer-form input {
    height: 46px;
    background: transparent !important;
    margin-bottom: 15px;
    box-shadow: unset !important;
    outline: unset !important;
    border: 1px solid #cda582;
    border-radius: 10px;
}

form.footer-form button {
    font-size: 16px;
    height: 49px;
    width: 50%;
    border-radius: 10px;
    border: unset;
    box-shadow: unset !important;
    outline: unset !important;
    color: #fff;
    font-weight: 700;
    background: rgba(0, 95, 153, 1);
    text-transform: uppercase;
}

.footer-botom p {
    color: rgba(255, 255, 255, 1);
    margin: 0;
}

ul.last-Btn {
    display: flex;
    gap: 1rem;
}

.footer-botom {
    border-top: 1px solid #005f99;
    padding: 1rem 0 10px;
    margin-top: 4rem;
}

ul.last-Btn li a {
    font-size: 16px;
    font-weight: 400;
    color: #ffff;
    text-transform: capitalize;
}

ul.last-Btn li a:hover {
    color: #005f99;
}

.footer-botom p a {
    color: #005f99;
}

ul.useful-links li a:hover {
    color: #005f99;
    transition: 0.5s ease;
    transform: translate(10px);
}

.footer-form input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

footer h2::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 71px;
    background: #fff;
    bottom: -11px;
}

ul.last-Btn li+li {
    border-left: 1px solid var(--primary);
    padding-left: 10px;
}

/*  Footer-Sec Css Start */

/* about-inner css */

.aboutBanner {
    width: 1920px;
    height: 550px;
}

.aboutBanner .slideOne h1 {
    font-size: 48px;
}

.aboutBanner .slideOne .breadcrumb {
    background: transparent;
    padding: 0;
}

.aboutBanner .slideOne .breadcrumb li a {
    font-size: 18px;
    color: var(--white);
}

.aboutBanner .slideOne .breadcrumb li {
    font-size: 18px;
    color: var(--white);
}

/* about-inner css */

/* contact-inner css */

.contactSection .row {
    background: #1f609b;
    padding: 60px 30px 60px 30px;
    border-radius: 10px;
}

.contactForm .discntnt h3 {
    text-transform: capitalize;
}

.locationBox {
    display: flex;
    background: var(--white);
    gap: 25px;
    padding: 30px;
    align-items: center;
    border-radius: 10px;
    height: 100%;
}

.mapIcon a {
    width: 60px;
    height: 60px;
    background: #1f609b;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--white);
}

.locationBox:hover .mapIcon a {
    background: var(--black);
    color: var(white);
}

.mapCntnt h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.mapCntnt p {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.mapCntnt p a {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.contactForm {
    background-color: #f7f7f7;
}

.formInfo input {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #faccaf;
    padding-left: 15px;
    margin-bottom: 26px;
    outline: none;
}

.formInfo textarea {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #faccaf;
    padding-left: 15px;
    padding-top: 15px;
    margin-bottom: 26px;
    margin-bottom: 26px;
    outline: none;
}

.contactAnchor {
    text-align: center;
}

/* contact-inner css */

/* review section start */
.clientSection {
    padding: 14rem 0rem 5rem;
}

.clientWrap {
    margin-top: 11rem;
    position: relative;
    /* background: url(../images/map-bg.webp) no-repeat; */
}

/* .clinetCard{
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
  }
  
  .review{
    border: 2px solid #1CA8CB;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    background: var(--white);
  }
  .review p{
    font-size: 18px;
  font-weight: 600;
    color: var(--black);
  }
  
  .review i{
    color: #FFA944;
  }
  
  .bottom{
    background-color: #1CA8CB;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 48%;
    bottom: -15px;
  }
  
  .clinetCard img {
    margin-top: 1rem;
  }
  
  .clinetCard h4 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .clinetCard:nth-child(2){
    position: absolute;
    top: -5%;
    right: 18%;
  }
  
  .review, .info {
    display: none;
  }
  
  .review, .info {
    transition: opacity 0.3s ease-in-out;
  }
  
  .show {
    display: block;
  } */

.clinetCard {
    width: 100%;
    max-width: 450px;
    text-align: center;
    position: relative;
}

.review {
    border: 2px solid #1ca8cb;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    background: var(--white);
    visibility: hidden;
    /* Start as hidden */
    opacity: 0;
    /* Make it invisible */
    transition: all 300ms ease-in-out;
    /* Smooth opacity transition */
    z-index: 999;
    transform: scale(0.75) rotateY(120deg);
}

.review p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.review i {
    color: #ffa944;
}

.bottom {
    background-color: #1ca8cb;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 48%;
    bottom: -15px;
}

.clinetCard img {
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.clinetCard h4 {
    font-size: 1.5rem;
    margin: 0;
}

.clinetCard:nth-child(2) {
    position: absolute;
    top: -5%;
    right: 18%;
}

.clinetCard:nth-child(3) {
    position: absolute;
    top: -14%;
    right: 30%;
}

.clinetCard:nth-child(4) {
    top: -32%;
    position: absolute;
    left: 12%;
}

.clinetCard:nth-child(5) {
    top: -6%;
    position: absolute;
    left: 16%;
}

.clinetCard:nth-child(6) {
    top: -46%;
    position: absolute;
    left: 26%;
}

.clinetCard img {
    height: 36px;
    width: 36px;
    position: relative;
    z-index: 1;
}

/* Info visibility */
.info {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

.show {
    visibility: visible;
    opacity: 1;
    /* Make the element visible */
}

.review.show {
    transform: scale(1) rotateY(0deg);
}

.clinetCard img.img-small {
    width: 90px;
    height: 90px;
}

/* review section end */