/*=========================== Google fonts =============================*/
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*======================== Web fonts ===========================*/
@font-face {
    font-family: "gotham";
    src: url(../webfonts/gotham.ttf);
    font-display: swap;
}

@font-face {
    font-family: "adlery-pro";
    src: url(../webfonts/adlery-pro.ttf);
    font-display: swap;
}


/*========================== Basic css ============================*/
html {
    font-size: 62.5%;
}

:root {
    scroll-behavior: unset;

    /* fonts */
    --montserrat: "Montserrat", sans-serif;
    --fira-sans: "Fira Sans", sans-serif;
    --libre-franklin: "Libre Franklin", sans-serif;
    --gotham: "gotham";
    --adlery-pro: "adlery-pro";

    /* color */
    --white: #FFF;
    --black: #000;
    --blue: #316cbd;
    --dark: #403d3d;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* body */
body {
    font-family: var(--gotham);
    font-size: 1.6rem;
    font-weight: 400;
    background: var(--white);
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--montserrat);
}

/* backt to top */
.scrolltop_btn {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scrolltop_btn img {
    width: 4rem;
}

.scrolltop_btn.show {
    opacity: 1;
    visibility: visible;
}

.scrolltop_btn:hover img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(93%) saturate(6449%) hue-rotate(316deg) brightness(110%) contrast(102%);
}

/* title */
.title_xl {
    font-family: var(--montserrat);
    font-size: 3.7rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
}

.title_lg {
    font-family: var(--montserrat);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
}

/* button */
.button {
    font-family: var(--fira-sans);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blue);
    display: inline-block;
    padding: 0.85rem 4.2rem;
    border-radius: 1rem;
}

.button:hover {
    background: #FFDE59;
    color: var(--blue);
}


/*====================== header_section start ========================*/
.header_section {
    width: 100%;
    display: block;
    background: var(--white);
    padding: 2rem 0rem;
    position: sticky;
    top: 0;
    transition: 0.2s all ease;
    z-index: 1024;
}

.header_sticky {
    background: var(--white);
    box-shadow: 0.2rem 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    max-width: 23.2rem;
}

.navbar-nav {
    gap: 6rem;
}

.navbar-nav li a {
    font-family: var(--montserrat);
    font-size: 1.66rem;
    font-weight: 700;
    color: var(--blue);
}

.navbar-nav li a:hover {
    color: #FFDE59;
}

.navbar-nav li a.active {
    color: #FFDE59!important;
}

/* navbar-toggler */
.navbar-toggler {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none!important;
    padding: 0rem;
    transition: 0.2s all ease;
    margin-right: -0.5rem;
}

.navbar-toggler img {
    width: 4rem;
}

.navbar-toggler:hover {
    opacity: 0.85;
}


/* offcanvas menu */
.offcanvas-start {
    width: 100%!important;
    background: var(--white);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.offcanvas-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0rem;
}

.offcanvas-header img {
    max-width: 15rem;
}

.offcanvas-body .navbar-nav {
    gap: 0rem;
}

.close_btn {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0rem;
    transition: 0.2s all ease;
}

.close_btn:hover {
    opacity: 0.85;
}

.close_btn img {
    max-width: 3.2rem;
}

.offcanvas-body .navbar-nav a {
    width: 100%;
    display: block;
    padding: 1.8rem 0rem;
    border-bottom: 1px solid #A8BDD5;
    transition: 0.2s all ease;
}

.offcanvas-body .navbar-nav a:hover {
    padding-left: 1.5rem;
}


/*================= hero_section start ===================*/
.hero_section {
    position: relative;
}

.hero_section img {
    width: 100%;
    height: 67rem;
    object-fit: cover;
}

.hero_content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.hero_text {
    max-width: 56rem;
    width: 100%;
    margin-left: auto;
    padding-top: 6rem;
}

.hero_text p {
    font-family: var(--adlery-pro);
    font-size: 3.7rem;
    font-weight: 400;
    color: var(--blue);
}

/*==================== pillars_section ======================*/
.pillars_section {
    background: #FAFAFA;
    padding: 4.5rem 0rem 6.5rem;
}

.pillars_wrapper {
    padding-top: 3.5rem;
}

.pillars_wrapper .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

.pillars_card {
    background: var(--white);
    padding: 5rem 3rem;
    text-align: center;
    border-radius: 3.5rem;
    height: 100%;
    transition: 0.25s all ease;
}

.pillars_card:hover {
    box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.085);
}

.pillars_icon {
    min-height: 8.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pillars_icon img {
    max-width: 9rem;
}

.pillars_icon .icon1 {
    max-width: 8.32rem;
}

.pillars_icon .icon2 {
    max-width: 8.95rem;
}

.pillars_icon .icon3 {
    max-width: 8rem;
}

.pillars_icon .icon4 {
    max-width: 6.1rem;
}

.pillars_text h4 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0rem 3rem;
}

.pillars_text p {
    font-family: var(--gotham);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--dark);
}


/*=================== passions_section start =====================*/
.passions_section {
    background-image: url(/img/passions-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4.5rem 0rem;
    position: relative;
}

.passions_section::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgb(64, 61, 61);
    position: absolute;
    inset: 0;
    opacity: 0.7;
}

.passions_section .container {
    position: relative;
    z-index: 9;
}

.passions_title h3 {
    color: var(--white);
    text-align: center;
}

.passions_text {
    max-width: 100.5rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 5.5rem 0rem;
}

.passions_text p {
    font-size: 1.86rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin-bottom: 2.6rem;
}

.passions_text p:last-child {
    margin-bottom: 0rem;
}

/*=================== destination_section start =================*/
.destination_section {
    background: #FAFAFA;
    padding: 4.5rem 0rem;
}

.destination_section2 {
    padding-top: 5.5rem;
}

.destination_wrapper {
    padding-top: 4.5rem;
}

.destination_gallery {
    overflow: hidden;
    border-radius: 1.5rem;
}

.destination_item img {
    width: 100%;
    border-radius: 1.5rem;
    transition: 0.25s all ease;
}

.destination_item:hover img {
    transform: scale(1.1);
}

.destination_item p {
    font-family: var(--fira-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 0.8rem;
    padding-left: 1.2rem;
}

.destination_wrapper .row {
    --bs-gutter-x: 4.5rem;
    --bs-gutter-y: 4rem;
}

.destination_banner img {
    width: 100%;
}

/*==================== footer_section start ======================*/
.footer_section {
    background: #302E2E;
    padding: 4rem 0rem 1.6rem;
}

.footer_logo img {
    max-width: 21.7rem;
}

.footer_text p {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin: 1.8rem 0rem 2.5rem;
}

.footer_text h4 {
    font-family: var(--libre-franklin);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-style: italic;
    margin-bottom: 2.4rem;
}

.footer_text h4 span {
    color: var(--blue);
}

.footer_links ul li {
    font-family: var(--libre-franklin);
    font-size: 1.86rem;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0.4rem 0rem;
    transition: 0.2s all ease;
}

.footer_links ul li a {
    font-family: var(--libre-franklin);
    font-size: 1.86rem;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    transition: 0.2s all ease;
}

.footer_links ul li a:hover {
    opacity: 0.85;
}

.footer_links span {
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--blue);
    border-radius: 50%;
}

.footer_links span img {
    width: 2.2rem;
}

.footer_links {
    max-width: 21.2rem;
    width: 100%;
    margin: 0 auto;
    padding-top: 3rem;
}

.copyright_text {
    padding-top: 4rem;
    text-align: center;
}

.copyright_text p {
    font-size: 1.34rem;
    font-weight: 400;
    color: var(--white);
}