@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #034c80;
    --secondary: #009245;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

p {
    font-family: "Roboto", sans-serif;
}

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

/* Preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    margin: auto;
    overflow: hidden;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1111;
}

#preloader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toprow {
    background: var(--primary);
    padding: 0.75rem 0;
}

.toprow p {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}

.toprow p strong {
    font-weight: 500;
}

.toprow p a {
    font-weight: 200;
    color: var(--white);
    transition: 0.3s ease-in-out;
    text-decoration: underline !important;
}

.toprow p a:hover {
    color: var(--secondary);
}

/* about-sec */
.about-sec {
    padding: 10rem 0;
    background: url(../images/about-bg.png) center/cover no-repeat;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    margin-bottom: 5rem;
    align-items: center;
}

.about-content .secheading {
    grid-column: 1 / 6;
    grid-row: 1;
}

.about-content figure {
    grid-column: 3 / -1;
    grid-row: 1;
    margin: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.about-content .words span {
    line-height: 1.25;
    display: inline-block;
    vertical-align: top;
    margin-right: 0.8125rem;
    overflow: hidden;
}

.about-content .words span em {
    font-style: normal;
    display: block;
    position: relative;
    z-index: 1;
}

.secheading {
    font-size: 5.625rem;
    font-family: "Playfair Display", serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.secheading .sub-heading {
    display: block;
    color: var(--secondary);
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}

.infoBox {
    text-align: center;
}

.infoBox img {
    margin-bottom: 1rem;
}

.infoBox .content {
    padding: 0 1.5rem;
    min-height: 244px;
}

.about-sec .col-md-3:not(:first-child, :last-child) .content {
    border-right: 1px solid #000;
}

.infoBox h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6875rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1rem;
}

.infoBox p {
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    color: #454545;
    line-height: 1.533;
    text-align: center;
}

/* destinationSec */
.destinationSec {
    position: relative;
    padding: 0 0 4rem;
}

.destinationSec::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: #fff5e5;
}

.destinationSec .secheading {
    writing-mode: vertical-rl;
    transform: scale(-1);
    line-height: 1;
    /* margin: 0 2rem; */
    font-size: 7.8125rem;
}

.destinationCard {
    margin-top: 5rem;
}

.destinationCard .imgWrap {
    position: relative;
    display: block;
    border: 1px solid #cccccc;
    border-radius: 22px;
    overflow: hidden;
    background-color: var(--primary);
    transition: 0.3s ease-in-out;
}

.swiper-slide-active .destinationCard .imgWrap {
    transform: scaleY(1.15);
    transform-origin: left bottom;
    transition-delay: 0.15s;
}

.swiper-slide-active .destinationCard .imgWrap img {
    object-fit: cover;
}

.destinationCard .imgWrap span.title {
    font-family: "Roboto", sans-serif;
    color: var(--primary);
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    padding: 0.25em 1em;
    border-radius: 9px;
    background: var(--white);
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: scale(0);
    transform-origin: right;
    transition: 0.3s ease-in-out;
}

.destinationCard .content {
    padding: 1rem;
}

.destinationCard .content h3 {
    font-size: 2.625rem;
    font-family: "Playfair Display", serif;
    color: #003154;
    font-weight: 700;
    line-height: 1;
}

.destinationCard ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 0;
    justify-content: space-between;
}

.destinationCard ul li a {
    color: #454545;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.destinationCard ul li a i {
    color: var(--primary);
    font-size: 1.125rem;
}

.destinationCard:hover .imgWrap span.title,
.swiper-slide-active .destinationCard .imgWrap span.title {
    transform: scale(1);
}

/* .destinationCard .imgWrap */

.destinationSec .btn-group {
    justify-content: center;
    width: 100%;
    gap: 1rem;
    margin-top: 3rem;
}

.destinationSec .swiper-button-next,
.destinationSec .swiper-button-prev {
    border-radius: 50%;
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: inline-grid;
    place-items: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 3px 3px 24px rgb(149 149 149 / 43%);
    bottom: auto;
    margin: auto;
    top: 10px;
    color: #000;
}

.destinationSec .swiper-button-next {
    right: 24rem;
}

.destinationSec .swiper-button-next::after {
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 2.3rem;
}

.destinationSec .swiper-button-prev::after {
    content: "\f177";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 2.3rem;
}

.destinationSec .swiper-button-prev {
    left: auto;
    right: 29rem;
}

.destinationSlider {
    padding-top: 2rem;
}

.destinationSec .swiper-button-next:hover,
.destinationSec .swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--white);
    transition: 0.3s ease-in-out;
}

/* reviewSec */
.reviewSec {
    padding: 8rem 0;
    background: #f05f26 url(../images/client-bg.png) center/cover no-repeat;
}

.reviewSec figure {
    margin-bottom: 7rem;
}

.reviewSec .swiper-button-next,
.reviewSec .swiper-button-prev {
    color: var(--primary);
}

.reviewSec .swiper-button-next {
    top: 44rem;
    left: 4.5rem;
    background: var(--white);
    padding: 1.8rem;
}

.reviewSec .swiper-button-prev {
    top: 44rem;
    left: 0;
    background: var(--white);
    padding: 1.8rem;
}

.reviewSec .swiper-button-next::after {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 2.3rem;
}

.reviewSec .swiper-button-prev::after {
    content: "\f104";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 2.3rem;
}

.reviewSec .swiper-button-next:hover,
.reviewSec .swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--white);
    transition: 0.3s ease-in-out;
}

.reviewSec .secheading {
    color: var(--white);
    margin-bottom: 2rem;
}

.reviewSec .secheading span {
    color: var(--white);
    display: flex;
    font-weight: 400;
    align-items: center;
    gap: 1rem;
}

.reviewSec p {
    font-family: "Roboto", sans-serif;
    color: var(--white);
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
    line-height: 2.067;
}

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

.userInfo h3 {
    font-size: 1.375rem;
    font-family: "Montserrat";
    color: var(--white);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
}

/* Begin: Social Media */
.socialIo {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.socialIo li a {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.socialIo li .fb {
    background: #4b69b0;
}

.socialIo li .insta {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%);
}

.socialIo li .ytube {
    background: #e83f3a;
}

.socialIo li .whatsapp {
    background: #25D366;
}

.socialIo li .linkedin {
    background: #0678b6;
}

.socialIo li a:hover {
    transform: scale(1.5);
}

/* END: Social Media */

footer {
    padding: 6rem 0 35rem;
    background: url(../images/footer-bg.png) bottom/cover no-repeat;
}

footer .links li a {
    font-size: 1rem;
    display: inline-block;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: #7a7a7a;
    line-height: 1.313;
    margin-bottom: 0.125rem;
}

footer .contactInfo li a:hover,
footer .links li a:hover {
    color: var(--primary);
}

footer .contactInfo li a {
    font-size: 1rem;
    display: inline-block;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: #7a7a7a;
    line-height: 1.313;
    margin-bottom: 1.5rem;
}

footer .contactInfo li a span {
    display: block;
}

.copyRight {
    border-top: 1px solid #d7d7d7;
    padding: 1.5rem 0;
    margin-top: 4rem;
    align-items: center;
    justify-content: flex-end;
}

.copyRight p {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    color: #7a7a7a;
    line-height: 1;
    margin: 0;
}

.copyRight ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.copyRight ul li a {
    font-size: 14px;
    display: inline-block;
    padding: 0 1rem;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    color: #7a7a7a;
    line-height: 1;
}

.copyRight ul li a:hover {
    color: var(--primary);
}

.copyRight ul li+li {
    border-left: 1px solid #7a7a7a;
}

/* Inner Pages Css Start */

/* About Css Start */

.innerBanner .overlay {
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgb(3 76 128 / 50%);
}

.subHeading {
    color: var(--white);
    font-size: 3.75rem;
    font-style: italic;
    margin-top: 7rem;
}

.abtInner {
    padding: 0;
}

.comeawaySec {
    margin: 8rem 0 3rem 0;
}

.comeawaySec p {
    padding-bottom: 1rem;
}

.comeawaySec .subHeading {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

.gallerySec .subHeading {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

.comeawaySec h2 span {
    display: block;
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

.awayParagraph {
    margin: 5rem 0 3rem 0;
}

.sharons {
    padding-left: 2.5rem;
}

/* About Css End */

/* Business Travel Css Start */

.businessSec {
    margin: 1rem 0 3rem 0;
}

.businessBox {
    text-align: center;
    border: 2px solid #e1e1e1;
}

.businessBox h3 {
    font-size: 2rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 0;
    font-weight: 400;
}

.businessBox h4 {
    font-size: 1.5rem;
    font-family: "Roboto";
    color: var(--primary);
    border-bottom: 1px solid #e1e1e1;
    padding: 0.5rem 0;
    font-weight: 500;
}

.businessBox ul li {
    font-size: 1.375rem;
    color: #9b9b9b;
    padding: 12px 0px;
}

.businessBox ul li+li {
    border-top: 1px solid #e1e1e1;
}

.businessBox ul {
    margin: 0px 1.875rem 1.5625rem 1.875rem;
}

.businessSec .btn {
    padding: 1.4rem 3.0625rem;
    margin-bottom: 1.2rem;
}

.businessBox .btn.right-side>em {
    right: -0.4375rem;
    left: 0.5625rem;
}

.businessBox .btn:hover.right-side>em {
    right: 0.3515625rem;
}

.businessBox .btn.btn-orange:before {
    background: #f05f26;
}

.businessContent {
    height: 575px;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #e1e1e1;
}

::-webkit-scrollbar-thumb {
    background: #9d9d9d;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(0 0 0 / 0.8);
}

/* Business Travel Css End */

/* Gallery Css Start */

.gallerySec {
    margin: 1.5rem 0 3rem 0;
}

.galleryImg figure {
    position: relative;
    overflow: hidden;
    border-radius: 0.9375rem;
    margin-bottom: 1.5rem;
}

.galleryImg figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.galleryImg figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.galleryImg:hover figure::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

.galleryImg:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Gallery Css End */

/* Contact Css Start */

.ContactSec h2 span {
    font-size: 1.75rem;
    display: block;
    color: #000;
    font-weight: 500;
    font-family: "Roboto";
}

section.ContactSec h2 {
    line-height: 1.4;
}

.cntctForm .secHeading {
    text-align: center;
    margin: 0 0 3.5rem;
}

.cntctForm input {
    border: 1px solid #e1e1e1;
    width: 100%;
    height: 60px;
    padding: 0 1.2rem;
    margin: 0 0 2rem;
    background-color: #f6f6f6;
    border-radius: 5px;
}

.cntctForm textarea {
    border: 1px solid #e1e1e1;
    width: 100%;
    height: 150px;
    padding: 1.5rem 1.2rem;
    margin: 0 0 2rem;
    resize: none;
    background-color: #f6f6f6;
    border-radius: 5px;
}

.cntctForm label {
    color: #000;
    font-weight: 500;
    font-size: 1.0625rem;
}

.cntctInfo {
    margin-top: 6rem;
}

.cntctLst i {
    color: #39424b;
    font-size: 2rem;
    margin: 0 0 1rem;
}

.cntctLst h4 {
    margin: 0;
    font-size: 0.9375rem;
    color: #7a7a7a;
    font-weight: 400;
    font-family: "Roboto";
}

.cntctLst a {
    font-size: 1.25rem;
    color: #828282;
    font-weight: 500;
}

.cntctLst p {
    font-size: 1.25rem;
    color: #828282;
    font-weight: 500;
}

.cntctForm .btn.right-side>em {
    right: -0.4375rem;
    left: 0.5625rem;
}

.cntctForm .btn:hover.right-side>em {
    right: 0.3515625rem;
}

.cntctForm .btn {
    font-size: 1.125rem;
    padding: 1.5rem 4.0625rem;
}

.mapSec {
    margin-top: 5rem;
}

/* Contact Css End */

/* Menu Css Start */

.menu-toggler {
    display: inline-flex;
    align-items: center;
    outline: 0;
    background-color: transparent;
    border: 0;
    padding: 4px 0;
    z-index: 2222;
    position: absolute;
    left: 90%;
    top: 20%;
    transform: translate(-90%, -20%);
}

.menu-toggler .navbar-icon {
    height: 30px;
    width: 53px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.menu-toggler .navbar-icon span {
    height: 2px;
    width: 52px;
    background-color: #fff;
    display: flex;
    position: relative;
    transition: all ease 0.5s;
}

.menu-toggler.active span {
    background-color: var(--white);
}

.menu-toggler .navbar-icon>span:nth-child(2) {
    margin: 10px 0;
    width: 38px;
    margin-left: auto;
    display: table;
}

.menu-toggler.active .navbar-icon>span:not(:nth-child(2)) {
    position: absolute;
}

.menu-toggler.active .navbar-icon>span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggler.active .navbar-icon>span:nth-child(3) {
    transform: rotate(-45deg);
}

.menu-toggler.active .navbar-icon>span:nth-child(2) {
    opacity: 0;
}

header .logo {
    display: table;
    margin: 0 auto;
    width: 14rem;
}

/*overlay nav*/

.navigation-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1111;
}

.navigation-menu .navigation-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.navigation-menu .navigation-bg.one {
    width: 4px;
    background-color: var(--black);
}

.navigation-menu .navigation-bg.two {
    width: 0;
    background: var(--primary) url(../images/manuLogo.png) center/contain no-repeat;
}

.navigation-menu .navigation-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navigation-menu .nav-inner {
    position: relative;
    text-align: left;
    /* margin-left: 7rem; */
}

.navigation-menu .nav-inner .nav-link {
    font-size: 3.5rem;
    line-height: 1.4;
    text-transform: capitalize;
    font-family: "Playfair Display";
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.navigation-menu .nav-inner .nav-link i {
    padding-left: 1rem;
    transform: translateX(-10px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.list-inline li+li {
    padding-top: 2rem;
}

.navigation-menu .nav-inner .nav-link:hover,
.navigation-menu .nav-inner .nav-link:active {
    transform: scale(1.1);
}

.navigation-menu .nav-inner .nav-link:hover i,
.navigation-menu .nav-inner .nav-link:active i,
.navigation-menu .nav-inner li.active .nav-link i {
    transform: translateX(0);
    opacity: 1;
}

.hero-content {
    text-align: center;
    background-color: transparent;
    color: var(--white);
}

.about-content .secheading {
    font-size: 4.5rem;
    margin-bottom: -2rem;
}

.about-sec.abtMain p {
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    color: #454545;
    line-height: 1.7;
    /* text-align: center; */
}

/* Menu Css End */
.privacySec {
    color: #000;
}

.privacySec h4 {
    padding-top: 10px;
}

.privacySec h2 {
    padding-top: 20px;
}

.privacySec p {
    padding-top: 15px;
    padding-bottom: 15px;
}

.privacySec ul li {
    padding: 10px;
}

.privacySec ul {
    list-style: unset;
    color: #828282;
    font-weight: 500;
}

ul.Signature {
    display: flex;
    flex: wrap;
    flex-wrap: wrap;
}

ul.Signature li {
    width: 50%;
    font-size: 1rem;
    line-height: 2.5;
    font-weight: 500;
}

.comeawaySec i {
    display: inline-block;
    margin-right: 8px;
}

.modal-header button {
    color: #fff;
    border: none;
    background: transparent;
    font-size: 2rem;
}

.modal-content {
    background: #022640cf;
}

.modal-body p {
    color: #fff;
}

.modal-header h2 {
    font-size: 2rem;
    color: #fff;
}

.modal-header {
    padding: 0.7rem 1rem;
}

.portfolioContent figure {
    margin: 1.5rem 0 2rem 0;
}

.portfolioContent {
    margin-top: 2rem;
}

.supplierBox figure img {
    max-height: 150px;
}

.supplierBox figure {
    text-align: center;
    border: 1px solid rgb(225, 225, 225);
    padding: 18px 0;
    min-height: 190px;
    display: grid;
    place-items: center;
    background-color: rgb(254, 254, 254);
    box-shadow: 0px 0px 59px 0px rgb(224 224 224 / 96%);
}

.supplierBox h3 {
    font-size: 25px;
    color: #102047;
    font-family: "Roboto";
}

.supplierSec .row {
    border-bottom: 2px solid #d7d7d7;
    padding: 45px 0 30px 0;
}

.supplierSec .row:not(:first-child) {
    display: none;
}

.supplierSec.active .row {
    display: flex;
}

.supplierSec.active .btn.right-side.btn-green {
    display: none;
}

.lastSec {
    border-bottom: unset !important;
}

.contact-whatsapp {
    position: fixed;
    z-index: 3;
    bottom: 100px;
    left: 25px;
    width: 200px;
    animation: scrollDownAnimation .5s ease infinite alternate;
    -webkit-animation: scrollDownAnimation .5s ease infinite alternate;
}

.contact-whatsapp img {
    width: 100%;
}

@keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-moz-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 1rem;
}