:root {
    --primary-color: #003366;
    --secondary-color: #e63946;
    --accent-color: #ffd700;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --main-font: "Averta";
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Averta';
    font-weight: 700;
}

.hero {
    position: relative;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.hero__logo {
    max-width: 500px;
    margin-bottom: 30px;
    width: 100%;
}

.hero__title {
    font-size: 20.48px;
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
    font-family: 'Averta';
}

.about {
    padding: 50px 0;
    background-color: #F3F9FF;
}

.about__header {
    margin-bottom: 40px;
}

.about__title {
    color: var(--primary-color);
    font-size: 2.5rem !important;
    margin-bottom: 20px;
}

.about__divider {
    height: 4px;
    width: 160px;
    /* background-color: var(--secondary-color); */
    margin: 0 auto 30px;
    background-image: linear-gradient(rgb(242, 212, 91), rgb(255, 189, 89));
}

.about__description {
    font-size: 23px;
    line-height: 1.8;
    margin-bottom: 50px;
    font-family: var(--main-font);
    font-weight: 400;
}

/* Destination Cards */
.destination {
    margin-top: 30px;
}

.destination__card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.destination__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination__image-wrapper {
    overflow: hidden;
    height: 250px;
}

.destination__image {
    width: 100%;
    height:auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination__card:hover .destination__image {
    transform: scale(1.1);
}

.destination__title {
    padding: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
}
#footer .col{
    flex: unset !important
}
.statistics{
    padding: 40px 0;
}
.statistics__number {
    text-align: center;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
    font-family: var(--main-font);
}

.statistics__title{
    font-size: 25px;
    font-weight: 600;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--main-font);
}

.statistics__text{
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto;
    text-align: center;
    font-family: var(--main-font);
    font-weight: 400;
}
.story-wrapper__description{
    font-size: 20px;
    color: var(--primary-color);
    font-family: var(--main-font);
}

/* .values {
    padding: 80px 0;
} */

.values__header {
    text-align: center;
    margin-bottom: 50px;
}

.values__title {
    font-size: 61.42px !important;
    font-weight: bold;
    line-height: 1.6;
    color: var(--primary-color);
    text-align: left;
    margin-top: 30px;
}

.values__divider {
    height: 4px;
    width: 106px;
    background-color: var(--secondary-color);
}

.values__item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 30px; */
}

.values__icon {
    flex-shrink: 0;
    margin-right: 0;
}

.values__icon-img {
    width: auto;
    height: 60px;
}

.values__content {
    flex-grow: 1;
}

.values__item-title {
    color: var(--primary-color);
    font-size: 20.69px !important;
    margin-bottom: 5px;
}

.values__divider-small {
    height: 3px;
    width: 50px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
}

.values__item-description {
    font-size: 18px;
    line-height: 1.6;
    font-family: var(--main-font);
    color: var(--primary-color);
}

.values__gallery {
    margin-top: 50px;
}

.values__gallery-item {
    border-radius: 10px;
}

.values__gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.values__gallery-item:hover .values__gallery-img {
    transform: scale(1.05);
}
.partner-wrapper,
.contact-wrapper{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
}
.partner-wrapper:after,
.activities:after,
.contact-wrapper:after{
    content: "";
    background-color: hsl(210deg 100% 20% / 90%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.partner-wrapper .container,
.activities .container,
.contact-wrapper .container{
    position: relative;
    z-index: 99;
}
.partner-wrapper h2,
.contact-wrapper h2{
    color: #FFFFFF;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
}
.main-partner .img-partner{
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .main-partner .img-partner img{
    max-height: 100px;
    width: auto;
 }

.main-partner .owl-nav{
	position: static;
}


.main-partner .owl-nav [class*=owl-]{
	color: #fff !important;
	font-size: 24px !important;
	background: transparent !important;
	width: 40px;
    height: 40px;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
        -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
        -ms-flex-align: center;
    -webkit-align-items: center;
}


.main-partner .owl-nav [class*=owl-]:hover
 {
	background: rgb(243 112 33 / 50%);
}


.main-partner .owl-nav .owl-prev{
	position: absolute;
	top: 35%;
	left: 0px;
}


.main-partner .owl-nav .owl-next{
	position: absolute;
	top: 35%;
	right: 0px;
}
.tour-intro h2{
    color: #003366;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
}
.tour-intro__description{
    font-size: 20px;
    font-weight: 400;
}
#myTabContent{
    border: 1px solid #d4d4d4;
    border-top: none;
    line-height: 30px;
}
.type-tour > ul{
    display: flex;
    justify-content: center;
}
.type-tour > ul li button{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #003366;
}
.type-tour > ul li button.active{
    color: #BF2233 !important;
}
#myTabContent h2{
    color: #003366;
    font-size: 45px;
    font-weight: 700;
    line-height: 47px;
}
#myTabContent ul{
    padding-left: 0;
    list-style: none;
}
#myTabContent ul li i{
    color: #BF2233 !important;
    margin-right: 10px;;
}
.tour-gallery a{
    position: relative;
    display: inline-block;
}
.tour-gallery a:after{
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none
}
.tour-gallery a:hover:after{
    display: block;
}
.activities{
    padding: 40px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.activities h2{
    color: #ff3a02;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
}
.activities-des{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}
.branch-wrapper{
    padding: 40px 0;
}
.branch-wrapper h2{
    color: #003366;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
}
.box-branch__caption{
    margin-top: 20px;
    text-align: right;
}
.box-branch__caption h4{
    color: #003366;
    font-size: 50px;
    font-weight: 600;
}
.box-branch__caption p{
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}
.contact-wrapper{
    padding: 80px 0;
}
.contact-wrapper h2{
    font-size: 35px;
    text-transform: inherit;
}
.contact-wrapper a{
    padding: 15px 40px;
    border-radius: 5px;
    background-color: #BF2233;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
@media screen and (min-width: 1440px) {
	.container{
        max-width: calc(100% - 350px);
        width: 100%;
    }
}
@media screen and (min-width: 1200px) {
    .container{
        max-width: calc(100% - 250px);
        width: 100%;
    }
    .destination .col-12{
        width: 20%;
    }
    .story-wrapper .container-fluid{
        max-width: calc(100% - 50px);
        margin-right: auto;
        margin-left: 0;
    }
    .values .container-fluid{
        max-width: calc(100% - 50px);
        margin-left: auto;
        margin-right: 0;
    }
    .main-partner .owl-nav .owl-prev{
        left: -38px;
    }
    .main-partner .owl-nav .owl-next{
        right: -38px;
    }
}

@media screen and (max-width: 767px) {
    .partner-wrapper h2, .contact-wrapper h2,
    .activities h2, .branch-wrapper h2, .tour-intro h2,
    .values__title{
        font-size: 25px  !important;
        line-height: 30px;
    }
    .box-branch__caption h4{
        font-size: 20px;
    }
    .box-branch{
        flex-direction: column !important;
    }
    .about__description{
        font-size: 20px;
    }
    .type-tour > ul li button.active,
    #myTabContent{
        border: none;
    }
}