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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--clr-white);
    color: var(--clr-primary);
    font-family: var(--ff-body);
    /* font-size: var(--fs-19); */
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
    width: 100%;
}

.section-tag {
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--clr-primary);
    text-align: center;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 600;
    font-size: 40px;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

.sub-title {
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 600;
    font-size: 27px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--clr-primary);
}

.section-title.light,
.section-description.light {
    color: var(--clr-secondary);
}

.section-title.white,
.section-description.white {
    color: var(--clr-white);
}

.section-description {
    font-family: var(--ff-body);
    font-size: 19px;
    color: var(--clr-primary);
    margin: auto;
    line-height: 1.4;
    font-weight: 400;
}

a.btn-with-background {
    width: 100%;
    max-width: 375px;
    color: var(--clr-primary);
    text-align: center;
    font-family: 'config-mono-vf';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    border: 2px solid var(--clr-primary);
    background: var(--clr-secondary);
    transition: .3s ease-in-out;
}

a.btn-with-background:hover {
    background: var(--clr-primary);
    color: var(--clr-secondary);
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    height: 45px;
    padding: 0 22.5px;
    border: 2px solid var(--clr-primary);
    border-radius: 50px;
    background: transparent;
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--clr-primary);
    transition: .35s ease;
}

.btn-outline-primary:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 45px;
    padding: 0 24.5px;
    border: 2px solid var(--clr-secondary);
    border-radius: 50px;
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--clr-secondary);
    transition: .35s ease;
}

.btn-outline-light:hover {
    background: var(--clr-secondary);
    color: var(--clr-primary);
}


/*=========================
    HEADER


.site-header {
    position: relative;
}

.header-container {
    padding: 0 20px;
}

.top-bar {
    background: #373254;
    color: #fefefe;
}

.top-bar-inner .top-bar-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 0;
    gap: 5px;
}

a.find-tour-btn {
    display: none;
}

.top-bar-inner span.divider {
    font-size: 14px;
}

.top-bar a {
    color: #fefefe;
    font-size: 14px;
    font-family: "PT Sans", sans-serif;
}

.top-bar a:hover {
    color: #FAEFE3;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 59px;
    padding-right: 11.2px;
}

.site-logo img {
    width: 261px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 22.4px;
}

.main-nav a {
    color: #373254;
    font-size: 19.2px;
    font-weight: 500;
    transition: .3s;
    line-height: 1;
    font-family: "Varela Round", sans-serif;
}

.main-nav a:hover {
    color: #21405B;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #373254;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-overlay {
    display: none;
}
=========================*/

/*==========================================
    HERO SECTION
==========================================*/

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height, 0px));
    min-height: calc(100dvh - var(--header-height, 0px));
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background-image: url("../images/hero_banner.webp");
    background-size: cover;
    background-position: center bottom;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .20),
            rgba(0, 0, 0, .30));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 697px;
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 193px;
}

.hero-subtitle {
    display: block;
    margin-bottom: 0;
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 600;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--clr-secondary);
}

.hero-title-image img {
    width: 100%;
    height: 221px;
    object-fit: contain;
}

.hero-btn {
    margin-top: -20px;
}

a.hero-btn.btn-with-background {
    max-width: 260px;
    min-height: auto;
    padding: 12px 24px;
}

.hero-btn .hero-btn-text {
    display: block;
    line-height: 1.25;
}



/*==========================================
PARTNER OFFER
==========================================*/
.partner-offer-section {
    padding-top: 111px;
    padding-bottom: 141px;
    background: var(--clr-white);
}

.partner-offer-content {
    text-align: center;
}

.partner-offer-content .section-title {
    max-width: 736px;
    margin: 0 auto;
    margin-bottom: 55px !important;
}

.partner-offer-content .section-description {
    max-width: 684px;
    margin: 0 auto;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 100px;
}

.partner-logo:first-child {
    width: 190px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 146px;
}

.partner-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.partner-divider {
    display: block;
    width: 1px;
    height: 137px;
    background: #DAE2DB;
    margin: 0 28px;
}

.adventure-offer-section {
    background: var(--clr-primary);
    padding: 46px 30px 68px 30px;
    border-radius: 15px;
    max-width: 916px !important;
    margin: 0 auto;
}

.adventure-offer-section .adventure-offer-title {
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 600;
    font-size: 27px;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--clr-secondary);
    max-width: 740px;
    margin: 0 auto 36px auto;
}

.adventure-offer-section .adventure-offer-description {
    max-width: 658px !important;
    margin-bottom: 24px;
}

.adventure-offer-section .adventure-offer-description:last-of-type {
    margin-bottom: 44px;
}

.adventure-offer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.adventure-offer-actions .btn-outline-light {
    height: auto;
    min-height: 45px;
    padding: 9px 24.5px;
    line-height: 1.25;
    text-align: center;
}

.adventure-offer-terms {
    display: inline-block;
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--clr-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: .35s ease;
}

.adventure-offer-terms:hover {
    opacity: .75;
}

.btn span:last-child::before {
    content: "•";
    margin: 0 17px;
}


/*==========================================
ABOUT SCOTLAND
==========================================*/
.about-scotland-section {
    background: var(--clr-white);
}

.about-scotland-banner .mobile-banner {
    display: none;
}

.about-scotland-banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 742px;
    padding: 117px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-scotland-banner .container {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-scotland-content {
    max-width: 619px;
    background: #FAEFE3;
    padding: 35px 49px 43px 45px;
    border-radius: 15px;
}

.about-scotland-content .section-title {
    margin-bottom: 34px;
    text-align: left;
    line-height: 1.2;
}

.about-scotland-content-list .sub-title {
    margin-bottom: 8px;
}

.about-scotland-content .section-description {
    text-align: left;
    font-weight: 500;
    padding-bottom: 49px !important;
}

.about-scotland-content .about-scotland-content-list:last-child .section-description {
    padding: 0 !important;
}


/*==========================================
SCOTLAND HIGHLIGHTS
==========================================*/
.scotland-highlights-section {
    padding: 121px 0 150px;
    background: var(--clr-primary);
}

.scotland-highlights-main-content {
    max-width: 469px;
    padding-bottom: 60px !important;
}

.scotland-highlights-main-content .section-title {
    margin-bottom: 52px !important;
}

.scotland-highlights-main-content .section-description {
    font-weight: 500;
}

.tour-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -40px;
    padding-bottom: 173px;
}

article.tour-card {
    width: 100%;
    max-width: 33.33%;
    padding: 0 40px;
}

article.tour-card:nth-child(2) {
    border-left: 1px solid var(--clr-secondary);
    border-right: 1px solid var(--clr-secondary);
}

.tour-card-image {
    margin-bottom: 30px;
    text-align: center;
}

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

.tour-card-title {
    margin-bottom: 22px;
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 600;
    font-size: 27px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--clr-secondary);
}

.tour-card-description {
    text-align: left;
    max-width: 334px;
    margin: 0 !important;
    font-weight: 500;
}

.scotland-highlights-section .section-heading .section-title {
    margin: 0 !important;
}

.scotland-highlights-section .section-heading {
    max-width: 744px;
    text-align: center;
    margin: 0 auto;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -40px;
    justify-content: center;
    row-gap: 60px;
    padding-top: 173px;
}

.feature-grid .slick-track,
.testimonial-grid .slick-track {
    display: flex;
}

.feature-item {
    text-align: center;
    width: 100%;
    max-width: 33.33%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 55px;
}

.feature-item-content {
    width: 100% !important;
    max-width: 382px;
    margin: 0 auto;
}

.feature-item-content p.section-description.light {
    font-weight: 500 !important;
}

.feature-item img,
.feature-item-icon {
    height: 65px;
    width: auto;
    margin: 0 auto;
}

.feature-item h4 {
    margin-bottom: 18px;
    font-family: var(--ff-heading);
    font-variation-settings: 'wght' 600;
    font-size: 27px;
    text-transform: uppercase;
    color: var(--clr-secondary);
    line-height: 1.3;
}



/*==========================================
SCOTLAND EXPERIENCE
==========================================*/

.scotland-experience-section {
    padding: 108px 0 152px;
    background: var(--clr-white);
}

.experience-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 27px;
}

.experience-content {
    width: 49%;
    padding-right: 80px;
    padding-bottom: 80px;
}

.experience-content h2.section-title {
    text-align: left;
    margin-bottom: 48px;
}

.experience-content p.section-description {
    text-align: left;
    padding-bottom: 20px;
    font-weight: 500;
    max-width: 479px;
    margin: 0 !important;
}

.experience-content p:last-child {
    padding: 0 !important;
}

.experience-gallery {
    width: 51%;
    display: flex;
    gap: 27px;
    align-items: flex-end;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.gallery-item--1 {
    height: 344px;
    width: 100% !important;
    max-width: 364px !important;
}

.gallery-item--2 {
    width: 100% !important;
    height: 215px;
    max-width: 227px !important;
}

.experience-gallery-secondary {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 27px;
}

.gallery-item--3 {
    height: 379px;
}

.gallery-item--4 {
    height: 300px !important;
    width: 100% !important;
    max-width: 405px !important;
}




/*==========================================
    Testimonials Section
    ==========================================*/
.testimonial-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 0 -14px;
    flex-wrap: wrap;
}

section.testimonial-section {
    padding-bottom: 169px;
}

.testimonial-content .section-title {
    max-width: 592px;
    margin-bottom: 50px !important;
}

.testimonial-grid article.testimonial-card {
    width: calc(33.33% - 28px);
    margin: 0 14px;
    background: #21405B;
    border-radius: 15px;
    padding: 23px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-grid article.testimonial-card .section-description {
    font-weight: 500;
    letter-spacing: -0.19px;
}

h4.testimonial-author {
    color: #FAEFE3;
    font-family: 'config-mono-vf';
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding-top: 50px;
}

.testimonial-grid article.testimonial-card span.testimonial-quote {
    margin-bottom: 30px !important;
    display: block;
    line-height: 0;
}


/*==========================================
PARTNER CTA
==========================================*/
.partner-cta-section {
    background: #fff;
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
    border-radius: 15px !important;
}

.partner-cta-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 735px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-color: lightgray;
    background-blend-mode: multiply;
    border-radius: 15px;
}

.partner-cta-banner .container {
    position: relative;
    z-index: 2;
}

.partner-cta-content {
    max-width: 548px !important;
    margin: 0 auto;
    text-align: center;
}

.partner-cta-content .section-title {
    margin-bottom: 30px;
}

.partner-cta-content .section-description {
    margin: 0 auto 40px;
}

.partner-cta-content .btn-outline-light {
    padding: 0 17.5px;
}


/*==========================================
WHERE WE TOUR
==========================================*/

.where-tour-section {
    padding: 155px 0 157px;
    background: var(--clr-white);
}

.where-tour-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.where-tour-content {
    width: 49%;
    padding-right: 100px;
}

.where-tour-content .section-title {
    text-align: left;
    margin-bottom: 45px;
}

.where-tour-content .section-description {
    text-align: left;
    max-width: 484px;
    margin: 0 !important;
    font-weight: 500;
    padding-bottom: 20px;
}


.where-tour-text:last-child {
    margin-bottom: 0;
}

.where-tour-section .btn-outline-primary,
section.where-tour-section-2 a.btn.btn-outline-primary {
    font-family: 'Montserrat' !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    margin-top: 25px;
    font-size: 19px;
}

.where-tour-content .btn span:last-child::before,
section.where-tour-section-2 a.btn.btn-outline-primary span:last-child::before {
    content: "•";
    margin: 0 12px;
}

.where-tour-image {
    width: 51%;
    margin: 0;
}

.where-tour-image img {
    display: block;
    width: 100%;
    border-radius: 15px;
    max-width: 618px;
    margin-left: auto;
}

section.where-tour-section-2 {
    padding-bottom: 192px;
}

section.where-tour-section-2 .where-tour-content {
    padding-right: 0 !important;
    padding-left: 123px;
}

section.where-tour-section-2 .where-tour-image img {
    margin-right: auto;
}

section.where-tour-section-2 .where-tour-content img {
    width: 143px;
    margin-left: -27px;
    padding-bottom: 20px;
}



/*==========================================
CONTACT CTA
==========================================*/

.contact-cta-section {
    padding: 197px 0 183px;
    background: var(--clr-secondary);
}

.contact-cta-content .btn-outline-primary {
    padding: 0 52px;
}

.contact-cta-content {
    max-width: 659px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content .section-title {
    margin-bottom: 50px;
}




/*==========================================
FOOTER


.site-footer {
    padding: 70px 60px;
    background: #333333;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-left {
    width: 58.33333%;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-address {
    margin-bottom: 30px;
}

.footer-address p {
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--clr-white);
}

.footer-contact-list {
    display: flex;
}

.footer-contact-list .footer-contact {
    width: 25%;
    border-right: 1px dotted #666;
    margin-right: 30px;
    padding-right: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--clr-white);
}

.footer-contact p a {
    color: var(--clr-white);
}

.footer-contact p a:hover,
.footer-menu a:hover,
.main-nav a:hover {
    color: #00a6ca;
}

.footer-social-list a:hover {
    -webkit-filter: brightness(170%);
    filter: brightness(170%);
}

.footer-contact span {
    font-weight: 600;
}

.footer-menu a {
    font-size: 14px;
    color: var(--clr-white);
    text-decoration: none;
    transition: .3s;
}

.footer-payment-list {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 75%;
}

.footer-payment-list li {
    list-style: none;
}

.footer-payment-list li img {
    aspect-ratio: 1;
    object-fit: contain;
}

.footer-payment-list li:first-child img {
    width: 135px !important;
    height: 45px;
}

.footer-payment-list li:nth-child(2) img {
    width: 96px;
    height: 45px;
}

.footer-payment-list li:nth-child(3) img {
    height: 37px;
    width: 69px;
}

.footer-payment-list li:nth-child(4) img {
    width: 52px;
    height: 52px;
}


.footer-payment-list li:nth-child(5) img {
    width: 63px;
    height: 52px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 41.66667%;
}

.footer-social {
    margin-bottom: 55px;
    text-align: right;
}

.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
}

.footer-social-list li {
    list-style: none;
}

.footer-social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    transition: 0.2s ease;
}

.footer-social-text {
    display: block;
    font-size: 14px;
    color: #ffffff;
}

.footer-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-menu li {
    list-style: none;
}

.footer-menu li+li {
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.footer-menu a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    line-height: 1.4;
    font-family: 'Montserrat';
}

==========================================*/

/*==========================================
HELP BUTTON


.help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 45px;
    padding: 0 23px;
    border-radius: 999px;
    background: #773878;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 500;
    transition: all .3s ease;
    position: fixed;
    right: 30px;
    z-index: 99999;
    bottom: 30px;
}

.help-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.help-btn-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.help-btn:hover {
    background: #8d4690;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(119, 56, 120, .35);
}
        ==========================================*/