﻿body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: #f1f5f9;
    height: 100vh;
    line-height: 1.8;
    font-size: 18px;
}



/* Globals */

p {
    font-size: 18px;
}

@media (max-width: 769px) {
    p {
        text-align: center;
    }
}

a {
    font-weight: 700;
    color: #000000;
    transition: all 0.5s;
    text-decoration: none;
}

    a:hover {
        font-weight: 700;
        color: #00aea5;
        text-decoration: none;
    }

/* Structure */



@media (max-width: 991px) {
    .mobile-hide {
        display:none;
    }
}

.mobile-show {
    display: none;
}

@media (max-width: 1199px) {
    .mobile-show {
        display: block;
    }
}

.page-outer {
    position: relative;
    top: 0px;
}

@media (max-width: 991px) {
    .page-outer {
        position: relative;
        top: 0px;
    }
}

@media (max-width: 425px) {
    .page-outer {
        position: relative;
        top: 0px;
    }
}

.hero-image {
    height: 900px;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .hero-image {
        height: 750px;
    }
}

@media (max-width: 425px) {
    .hero-image {
        height: 750px;
    }
}

.text-area {
    position: relative;
    top: -530px;
    z-index: 20;
}
@media (max-width: 425px) {
    .text-area {
        position: relative;
        top: -500px;
        z-index: 20;
    }
}

.content-area {
    background: rgba(255, 255, 255, 1);
    padding: 80px 60px;
    border-radius: 8px;
}

/* Nav */

.main-logo {
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}

.main-logo.fade-out {
    opacity: 0;
}

.main-logo.fade-in {
    opacity: 1;
}


.logo-area {
    position: fixed;
    background-color: transparent;
    transition: background-color 0.6s ease-in-out, backdrop-filter 0.6s ease-in-out;

    width: 100%;
    text-align: center;
    z-index: 1032;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding-left: 20px;
    padding-right: 20px;
}

.logo-area.scroll {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #00aea5;
}



    .logo-area img {
        height: 120px;
        width: auto;
        margin-top: 17px;
        margin-bottom: 0;
    }

@media (max-width: 1199px) {
    .logo-area img {
        height: 120px;
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    .logo-area {
        height: 160px;
    }
}

@media (max-width: 425px) {
    .logo-area img {
        height: 100px;
        width: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        
    }
    .logo-area {
        height: 147px;
    }
    
}

.nav-icon {
    height: 22px !important;
    margin: 0px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    position: inherit !important;
}

.logo-area .contact-number {
    color: #ffffff;
    text-align:left;
    transition: color 0.6s ease-in-out;
}
.logo-area.scroll .contact-number {
    color: #242B5A;
    text-align:left;
}

.logo-right {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 15px;
    height: 83%;
    display: flex;
    align-items: center;
}

    .logo-right img {
        height: 190px;
        margin-top: 30px;
    }

@media (max-width: 1100px) {
    .logo-right img {
        height: 156px;
    }
}

@media (max-width: 991px) {
    .logo-right img {
        height: 152px;
        position: absolute;
        right: 15px;
        top: 128px;
    }
}

@media (max-width: 375px) {
    .logo-right img {
        height: 120px;
        position: absolute;
        right: 15px;
        top: 128px;
    }
}

.logo-left {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 15px;
    height: 83%;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .logo-left {
        position: absolute;
        left: 0px;
        top: 0px;
        padding: 15px;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    } 
}

.logo-container {
    position: relative;
    width: 165px;
    height: 152px;
    margin-right: 10px;
}
@media (max-width: 992px) {
    .logo-container {
        height: 123px;
    }
}

@media (max-width: 425px) {
    .logo-container {
        position: relative;
        width: 165px;
        height: 124px;
        margin-right: 10px;
    }
}

.btn-morton {
    color: #fff;
    background-color: #00aea5;
    border-color: #00aea5;
    text-align: left;
    line-height: 1.2;
    padding: 13px 16px;
    border-radius: 7px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
}

    .btn-morton:hover {
        font-weight: 700;
        color: #fff;
        background-color: #242b5a;
        border-color: #242b5a;
        text-decoration: none;
    }

    .btn-morton:focus, .btn-morton:active {
        font-weight: 700;
        color: #fff;
        background-color: #242B5A;
        border-color: #242B5A;
        text-decoration: none;
        outline: 0
    }

.btn-morton-sm {
    color: #fff;
    background-color: #00aea5;
    border-color: #00aea5;
    text-align: left;
    line-height: 1.2;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    
}

.btn-morton-sm:hover {
    background-color: #242b5a;
    border-color: #242b5a;
    text-decoration: none;
}

.btn-morton-sm:focus, .btn-morton-sm:active {
    color: #fff;
    background-color: #242B5A;
    border-color: #242B5A;
    text-decoration: none;
    outline: 0
}

@media (max-width: 768px) {
    .btn-morton {
        font-size: 14px;
        padding: 8px 15px;
    }
}



.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    padding-right: 33px;
    font-size: 15px;
}

@media (max-width: 992px) {
    .dropdown-item {
        text-align: center;
    }
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #00aea5;
    text-decoration: none;
    background-color: transparent;
    font-weight: 400;
}

.navbar-light .navbar-nav.scrollnav .nav-link:hover {
    color: #00aea5;
}

.nav-panel {
    top: 141px;
    z-index: 1032;
}

.nav-panel {
    padding-bottom: 20px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 4px;
    font-family: ff-scala-sans-pro, sans-serif;
    padding-right: 16px !important;
}

@media (max-width: 1076px) {
    .navbar-nav .nav-link {
        font-size: 13px;
        letter-spacing: 2px;
    }
}

@media (max-width: 1199px) {
    .navbar-nav .nav-link {
        color: #505952 !important;
        font-size: 14px;
        letter-spacing: 3px;
    }
    .offcanvas-body {
        padding: 30px;
    }
}

.navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
    color: #5dfff7
}
.active>.nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .show>.nav-link {
    color: #5dfff7
}

.navbar-nav.scrollnav .nav-link {
    color: #505952;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 4px;
    font-family: ff-scala-sans-pro, sans-serif;
}



.navbar-nav.scrollnav .nav-link.active {
    color: #42BFE6;
}

button:focus {
    outline: 0px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none;
    background: #00aea5;
    color: white;
    height: 48px;
    width: 44px;
    padding: 7px;
    border-radius: 7px;
}

.navbar-toggler {
    text-decoration: none;
    background: #00aea5;
    color: white;
    height: 48px;
    width: 44px;
    padding: 7px;
    border-radius: 7px;
}

.mobile {
    display: none;
}

@media (max-width: 1199px) {

    .navbar-nav {
        position: relative;
        z-index: 2;
    }

    .logo-area {
        padding: 10px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .navbar-collapse {
        position: fixed;
        top: 0px;
        left: 0;
        width: 80%;
        height: 100%;
        z-index: 100;
        background: white;
        padding: 24px 30px;
        box-shadow: -4px 0px 12px 8px #333;
    }

        .navbar-collapse.collapsing {
            left: -100%;
            transition: height 0s ease;
        }

        .navbar-collapse.show {
            left: 0;
            transition: left 300ms ease-in-out;
        }

    .navbar-toggler.collapsed ~ .navbar-collapse {
        left: 0px;
        transition: left 500ms ease-in-out;
    }
}

.navigation {
    width: 100%;
}

    .navigation ul {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

        .navigation ul li {
            margin: 0 10px;
            list-style: none;
        }

    .navigation a {
        color: black;
        font-weight: bold;
        font-size: 1.5rem;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 1rem 0;
    margin: 8px 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px;
    border-radius: 8px;
    background: #fff
}

@media (max-width: 991px) {
    .dropdown-menu {
        margin: 0px 0 0;
        background: #e2e2e2;
        margin-bottom: 10px;
        width: 100%;
    }
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #242B5A;
    border-color: #242B5A;
}


/* Homepage */

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (h / w * 100) */
}

    .video-container iframe {
        position: absolute;
        top: -16px;
        left: 0;
        width: 100%;
        height: 100%;
    }


@media (max-width: 991px) {

.video-container iframe {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 179%;
    height: 200%;
}
    }

@media (max-width: 768px) {

    .video-container iframe {
        position: absolute;
        top: -50%;
        left: -60%;
        width: 250%;
        height: 200%;
    }
}

@media (max-width: 586px) {

    .video-container iframe {
        position: absolute;
        top: -50%;
        left: -60%;
        width: 250%;
        height: 200%;
    }
}

@media (max-width: 425px) {

    .video-container iframe {
        position: absolute;
        top: -50%;
        left: -114%;
        width: 400%;
        height: 350%;
    }
}

.tint-area {
    position: absolute;
    background: linear-gradient(
            rgba(0, 0, 0, 0.5) 0%,     /* top */
            rgba(0, 0, 0, 0.3) 20%,    /* fade down */
            rgba(0, 0, 0, 0.0) 50%,    /* clear middle */
            rgba(0, 0, 0, 0.3) 80%,    /* fade up */
            rgba(0, 0, 0, 0.5) 100%    /* bottom */
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tint-area-tour {
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, /* top */ rgba(0, 0, 0, 0.1) 20%, /* fade down */ rgba(0, 0, 0, 0.3) 50%, /* clear middle */ rgba(0, 0, 0, 0.5) 80%, /* fade up */ rgba(0, 0, 0, 0.8) 100% /* bottom */);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 992px) {
    .tint-area {
        background: linear-gradient(
                rgba(0, 0, 0, 0.5) 0%,     /* top */
                rgba(0, 0, 0, 0.5) 20%,    /* fade down */
                rgba(0, 0, 0, 0.5) 50%,    /* clear middle */
                rgba(0, 0, 0, 0.5) 80%,    /* fade up */
                rgba(0, 0, 0, 0.5) 100%    /* bottom */
        );
    }
}

@media (max-width: 486px) {
    .tint-area {
        background: linear-gradient(
                rgba(0, 0, 0, 0.6) 0%,     /* top */
                rgba(0, 0, 0, 0.6) 20%,    /* fade down */
                rgba(0, 0, 0, 0.6) 50%,    /* clear middle */
                rgba(0, 0, 0, 0.6) 80%,    /* fade up */
                rgba(0, 0, 0, 0.6) 100%    /* bottom */
        );
    }
}

.top-heading {
    font-weight: 300;
    color: white;
    margin-bottom: 30px;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .top-heading {
        text-align: center;
    }
}

@media (max-width: 425px) {
    .top-heading {
        width:100%;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px;
    }
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.primary-title {
    font-family: "Gloock", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 80px;
    padding-top: 10px;
}

@media (max-width: 992px) {
    .primary-title {
        text-align: center;
    }
}

    .primary-title h1 {
        line-height: 1;
        font-size: 4rem;
        margin-bottom: 40px;
    }

@media (max-width: 768px) {
    .primary-title h1 {
        line-height: 1;
        font-size: 3rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 524px) {
    .primary-title h1 {
        line-height: 1;
        font-size: 3rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 425px) {
    .primary-title h1 {
        line-height: 1;
        font-size: 3rem;
    }
}

h2 {
    font-family: "Gloock", serif;
    font-size: 2.4rem;
    margin-bottom: 22px;
    color: #242b5a;
}
@media (max-width: 769px) {
    h2 {
        text-align: center;
    }
}
    /*.primary-title:before {
        content: "";
        position: absolute;
        left: 15px;
         bottom: 0; 
        height: 1px;
        width: 100px;
        border-bottom: 5px solid white;
        top: -10px;
    }*/

 

    @media (max-width: 375px) {
        .primary-title {
            color: white;
            font-size: 34px;
            line-height: 1.2;
            margin-bottom: 50px;
            padding-top: 10px;
        }
    }

    .video-cover {
    display: none;
}

@media (max-width: 768px) {
    .video-cover {
        background: rgba(0,0,0,0.4);
        position: absolute;
        width: 100%;
        height: 100vh;
        display: block;
    }
}

.intro {
    color: #505952;
    font-size: 30px;
    line-height: 1.4;
}

p.intro-praragraph {
    font-size: 18px;
    margin-top: 50px;
    margin-bottom: 20px
}

.services-homepage {
    background: #f7f9f9;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    display: flex;
    line-height: 1.3;
    align-items: center;
}

    .services-homepage img {
        width: 45px;
        margin-right: 10px;
    }

.feature {
    border: 15px solid #c3af88;
    box-shadow: 10px 10px 20px rgb(0 0 0 / 30%);
    position: relative;
    left: 76px;
}

@media (max-width: 992px) {
    .feature {
        border: 15px solid #c3af88;
        box-shadow: 10px 10px 20px rgb(0 0 0 / 30%);
        position: relative;
        left: 0px;
    }
}

@media (max-width: 766px) {
    .content-area {
        background: rgba(255, 255, 255, 1);
        padding: 64px 30px;
    }
}

.featured-title {
    position: absolute;
    width: 100%;
    background: rgba(255,255,255,0.8);
    bottom: 0px;
    padding: 10px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.feature-image {
    position: relative
}

.secondary-title {
    font-family: "Gloock", serif;
    color: #505952;
    font-size: 35px;
    line-height: 1.2;
    padding-top: 0;
}

.featured-text {
    padding: 20px;
}

    .featured-text p {
        margin: 0px;
    }



.testimonial {
    float: left;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
}

.testimonial-quote {
    font-family: "Gloock", serif;
    color: #505952;
    font-size: 32px;
    line-height: 1.5;
    padding-top: 0;
}

.white-outer {
    background: white;
    padding: 100px 40px;
    position: relative;
}

@media (max-width: 500px) {
    .white-outer {
        padding: 100px 25px;
    }
}

    .white-outer h2 {
        font-size: 48px;
        margin-bottom: 60px;
        color: #505952
    }
    

@media (max-width: 425px) {
    .white-outer h2 {
        font-size: 40px;
    }
}

    .white-outer h3 {
        font-size: 28px;
        margin-bottom: 0;
        color: #505952;
        font-family: "Gloock", serif;
        margin-top: 21px;
    }

.white-outer h4 {
    font-size: 33px;
    color: #00aea5;
    font-family: "Gloock", serif;
    margin-bottom: 50px;
    line-height: 1.1;
    text-align: center;
}

.smaller-experience {
    margin: 25px;
}

.grey-outer h3 {
    font-size: 33px;
    color: #00aea5;
    font-family: "Gloock", serif;
    margin-bottom: 50px;
    line-height: 1.1;
    text-align: center;
}

.experience-image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.blog-image {
    height: 300px;
    width: 100%;
    background-size: cover;
}

.blog-bg {
    background: #f7f9f9;
    height: 100%;
    border-radius: 10px;
    overflow:hidden;
}

.blog-inner {
    padding: 20px;
    margin-bottom: 5px;
    height:100%;
}

@media (max-width: 767px) {
    .blog-inner {
        text-align: center;
    }
}

.member-logo-outer {
    /* margin-top: 60px; */
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: stretch;
    width: 100%;
}

.member-logo {
    padding: 0px;
    text-align: center;
    width: auto;
    background: white;
    align-items: center;
    align-content: center;
    display: flex;
    justify-content: center;
}

footer {
    width: 100%;
    background: #505952;
    position: relative;
    bottom: 312px;
    width: 100%;
    z-index: 200;
}

.footer-top {
    background: #f7f9f9;
    padding: 10px 20px;
    font-weight: bold;
}

.f-left {
    text-align: left
}

.f-right {
    text-align: right
}

@media (max-width: 768px) {
    .f-left {
        text-align: center
    }

    .f-right {
        text-align: center
    }

    .testimonial-quote {
        font-family: "Gloock", serif;
        color: #505952;
        font-size: 24px;
        line-height: 1.5;
        padding-top: 0;
    }
}

.footer-bottom {
    width: 100%;
    padding: 39px 20px;
    background: white;
    color: black;
    position: relative;
    top: -500px;
    font-size: 15px;
}

.footer-bottom p {
   font-size: 15px;
}

.footer-logo {
    position: absolute;
    top: -30px;
    width: 200px;
    left: 0;
    right: 0;
    margin: auto;
}

.footer-small {
    font-size: 14px;
    color: black;
}

.footer-final-line {
    color: #c3af88;
    font-weight: 900;
    margin-top: 20px;
    display: block;
}

.margin-top {
    margin-top: 0px;
    display: block
}

@media (max-width: 990px) {


    .smaller-experience {
        margin: 0px;
        margin-top: 50px;
    }

    .margin-top {
        margin-top: 100px;
        display: block
    }

    .member-logo {
        text-align: center;
        width: 110px;
        align-items: center;
        align-content: center;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        position: relative;
        top: inherit;
        width: 200px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

/* Text Page */

.intro-text {
    color: #c3af88;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.service-logo {
    width: 120px;
    text-align: center;
    font-size: 18px;
}

    .service-logo img {
        margin-bottom: 10px;
    }

.strapline {
    font-family: ff-scala-sans-pro, sans-serif;
    display: block;
    font-size: 27px;
    font-weight: 500;
}

.testimonial-inner {
    background: #f1f5f9;
    border-radius: 7px;
    padding: 30px;
    height: 100%;
    font-size: 16px;
    line-height: 1.6;
}

.name {
    font-family: ff-scala-sans-pro, sans-serif;
    font-weight: 600;
    color: #c3af88;
}

.tint {
    position: absolute;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    height: 44vh;
    width: 100%;
    bottom: 0px;
}

@media (max-width: 768px) {
    .tint {
        position: absolute;
        background: rgba(0,0,0,0.3);
        z-index: 1;
        height: 100vh;
        width: 100%;
        bottom: 0px;
    }
}

.tour-button {
    width: 100%;
    position: absolute;
    top: -80px;
    text-align: left;
    border-radius: 0px 0px 5px 5px;
}

.internary-outer {
    background: #f7f9f9;
    margin-bottom: 25px;
}

.internary-inner {
    padding: 25px 20px;
    display: flex;
    align-items: center;
}

.i-number {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    background: #c3af88;
    /* display: flex; */
    /* justify-content: center; */
    align-items: center;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    font-size: 24px;
    /* flex-direction: column; */
    line-height: 1;
    padding: 10px;
    line-height: 0.7;
    text-align: center;
}

.i-description {
    font-size: 18px;
    line-height: 1.3;
    width: 80%;
}

    .i-description p {
        margin-bottom: 0px;
    }

.i-section {
    display: flex;
    width: 100%;
}

.i-right {
    position: relative;
    right: 0px;
    width: 50%;
}

.i-left {
    position: relative;
    right: 0px;
    width: 50%;
}

.i-course {
    background: #c3af88;
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.i-restaurant {
    background: #505952;
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.i-hotel {
    background: #ded3be;
    padding: 10px 20px;
    color: #505952;
    font-weight: 700;
    font-size: 16px;
}

.umbraco-forms-label {
    font-weight: 900;
    color: #505952
}

.form-group {
    margin-bottom: 15px;
    margin-top: 15px;
}

.radiobuttonlist {
    height: auto;
    border: none;
    padding: 0px;
}

.form-check-label {
    position: relative;
    left: 8px;
}

.experience-title {
    background: #505952;
    font-size: 28px;
    font-family: "Gloock", serif;
    color: white;
    font-weight: 100;
    line-height: 1.2;
    padding: 24px;
}

#collapseOne .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 0px;
}

#accordionExample .card-header {
    padding: 0px;
    margin-bottom: 0;
    background-color: #505952;
    /* border-bottom: 1px solid rgba(0,0,0,.125); */
    border-radius: 5px 5px 0px 0px !important;
}

#accordionExample .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0px;
    border-radius: 5px;
}

#accordionExample .card-footer-a {
    padding: 0px;
    margin-bottom: 0;
    background-color: #505952;
    /* border-bottom: 1px solid rgba(0,0,0,.125); */
    height: 8px;
    margin-top: 20px;
}

#accordionExample .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

#accordionExample .btn-block {
    display: block;
    width: 100%;
    color: white;
    line-height: 1.1;
    padding: 10px 12px;
    font-size: 15px;
    padding-bottom: 8px;
}

    #accordionExample .btn-block:hover, #accordionExample .btn-block:focus, #accordionExample .btn-block:active {
        display: block;
        width: 100%;
        color: #c3af88;
        line-height: 1.1;
        padding: 10px 12px;
        font-size: 15px;
        padding-bottom: 8px;
        text-decoration: none;
    }

#accordionExample .col-md-12, #accordionExample .col-sm-10 {
    padding: 0px;
}

#collapseOne .card-body {
    padding-top: 20px;
}

    #collapseOne .card-body p {
        font-size: 14px;
        margin-bottom: 0px;
    }


#collapseOne .umbraco-forms-container {
    font-size: 14px;
}

#collapseOne .form-control {
    font-size: 14px
}

    #collapseOne .form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.0rem rgb(0 123 255 / 25%);
    }

#collapseOne .btn-morton {
    font-size: 14px;
}


/* Format */

.format-content .small-heading {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    color: #242B5A;
    margin-bottom: 5px;
    display: block;
}

.format-content .large-heading {
    font-family: "Gloock", serif;
    font-weight: 800;
    font-style: normal;
    color: #00aea5;
    font-size: 43px;
    line-height: 1.1;
    margin-bottom: 50px;
    padding-top: 0px;
    display: block;
}

.quicklink p {
    font-family: "Gloock", serif;
    font-size: 26px;
    font-weight: 400;
    text-align: left;
    margin-top: 10px;
    color: #fff;
    margin-bottom: 0px;
    position: absolute;
    top: 0px;
    line-height: 1;
    padding: 5px 15px;
    white-space: pre-line;
    word-spacing: 100vw;
    z-index: 1;
}

@media (max-width: 425px) {
    .quicklink p {
        font-size: 18px;
    }
}

.quicklink-image {
    /*-webkit-mask-image: url(/images/tutor-mask.svg);*/
    /*mask-image: url(/images/tutor-mask.svg);*/
    /*-webkit-mask-repeat: no-repeat;*/
    /*mask-repeat: no-repeat;*/
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}


.tours {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.tours-image {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.tours-image img {
    transition: transform 0.6s ease; /* smooth zoom */
    transform-origin: center center;
}

.tours-image:hover img {
    transform: scale(1.08); /* slightly enlarge */
}

.tour-details {
    position: absolute;
    bottom: 0px;
    background: transparent;
    width: calc(100% - 30px);
    margin: 15px;
    box-sizing: border-box;
    padding: 10px 0;
    border-radius: 0px;
    z-index: 2;
    color: white;
    border-top: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: normal;
}

.tour-details-featured {
    position: absolute;
    top: 0px;
    width: auto;
    margin: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    z-index: 2;
}

@media (max-width: 768px) {
    .tour-details-featured {
        font-size:14px;
    }
}

.tour-title {
    font-family: 'roca', serif;
    font-size: 20px;
    display: block;
    line-height: 1.2;
    font-weight: bold;
    color: #42BFE6;
}
/*.modal-backdrop {
    display: none;
}*/

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0px;
    overflow: hidden;
}

.modal-content {
    overflow: hidden;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.5);
}

.modal-backdrop {
    z-index: 1040; /* Adjust the value to be lower than the element you want on top */
}

.grey-outer h2 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #42BFE6;
    font-family: "roca", sans-serif;
    font-weight: 800;
    text-align: center;
}

.blog-inner h3 {
    font-size: 24px;
    color: #00aea5;
    font-family: "Gloock", serif;
    font-weight: 800;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .blog-inner h3 {
        text-align: center;
    }
}

span.intro-paragraph {
    font-size: 28px;
    font-family: "Gloock", serif;
    font-weight: 800;
    font-style: normal;
    color: #00aea5;
    margin-bottom: 50px;
    line-height: 1.3;
    display: block;
    border-bottom: 1px solid;
    padding-bottom: 30px;
}
span.sub-heading  {
    font-weight: 800;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 16px;
}

/* Forms */

.form-control {
    width: 100%;
    height: 100%;
    padding: 14px;
}

span.large-heading-contact {
    font-size: 24px;
    font-family: "roca", sans-serif;
    font-weight: 400;
    color: #42BFE6;
    display:block;
}

.nav-image {
    position: absolute;
    left: 0;
    bottom: 0px;
    webkit-mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,    /* fully transparent at very top */
            rgba(0,0,0,1) 30%    /* fully visible after 30% */
    );
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,1) 30%
    );
    mask-repeat: no-repeat;
    mask-size: cover;
    z-index: -1;
}

.hidden {
    display: none;
}

#navbar-hamburger img, #navbar-close img {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 8px;
    right: inherit;
    margin-top: 0;
    left: 9px;
}

#navbar-close img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 11px;
    right: inherit;
    margin-top: 0;
    left: 13px;
}

.tour-title-new {
    font-family: "Gloock", serif;
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    color: #fff;
    margin-bottom: 0px;
    position: absolute;
    top: 30px;
    line-height: 1.2;
    padding: 5px 15px;
    z-index: 2;
}

@media (max-width: 992px) {
    .tour-title-new {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .tour-title-new {
        font-size: 6vw;
    }
}

.tour-title-new-sm {
    font-family: "Gloock", serif;
    font-size: 2vw;
    font-weight: 400;
    text-align: left;
    margin-top: 10px;
    color: #fff;
    margin-bottom: 0px;
    position: absolute;
    top: 3px;
    line-height: 1.2;
    padding: 5px 15px;
    z-index: 2;
    width: 70%;
}

@media (max-width: 1120px) {
    .tour-title-new-sm {
        font-size: 2vw;
        width: 80%;
    }
}

@media (max-width: 991px) {
    .tour-title-new-sm {
        font-size: 2.5vw;
        width: 70%;
    }
}

@media (max-width: 767px) {
    .tour-title-new-sm {
        font-size: 6vw;
        width: 50%;
    }
}

.tripadvisor {
    width: 100%;
}

@media (max-width: 991px) {
    .tripadvisor {
        width: 100%;
    }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px;
    font-size: 18px;
    text-align: left;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    padding-top: 20px;
    font-weight: 700;
    background: transparent;
}

.accordion-header {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #707070;
    border-radius:0;
}

.accordion-body {
    padding: 0;
}

.accordion-button:not(.collapsed) {
    color: #00aea5;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-item {
    background-color: transparent;
    border-top:0;
    border-left:0;
    border-right:0;
    border-bottom:1px solid #00aea5;
    border-radius:0;
}

.accordion-item:last-of-type {
    border-radius:0;
}

.feature-outer {
    text-align: center;
    width: 100%;
}

h3.feature-title {
    font-family: "Gloock", serif;
    color: #00aea5;
    font-size: 26px;
}

@media (max-width: 1399px) {
    h3.feature-title {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    h3.feature-title {
        font-size: 26px;
    }
}

.feature-icon {
    background: #00aea5;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    margin-bottom: 20px;
}

.intro-side-image {
    width: 100%;
    height: auto;
    border-radius: 100%;
    overflow: hidden;
}
.tour-mobile-show {
    display: none;
}
@media (max-width: 767px) {
    .tour-mobile-hide {
        display: none;
    }
    .tour-mobile-show {
        display: block;
    }
}

.tour-intro {
    position: absolute;
    color: white;
    width: calc(100% - 30px);
    left: 15px;
    font-weight: 300;
    z-index: 2;
    line-height: 1.3;
    top: 65px;
    font-family: 'Inter', sans-serif;
    font-size: 21px;
}

@media (max-width: 992px) {
    .tour-intro {
        font-size: 18px;
        top: 113%;
        font-weight: 300;
    }
}

.grey-outer {
    padding-left: 20px;
    padding-right: 20px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 30px;
}



.carousel-item {
    color:black;
    text-align: center;
}

.carousel-caption {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #212529;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
}
.carousel {
    position: relative;
    min-height: 400px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .carousel-inner {
        min-height: 600px;
    }
    .carousel {
        min-height: 600px;
    }
}

.testimonial-image {
    border-radius:50%;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.3);
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    border-radius:50%;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #00aea5;
}

.breadcrumb {
    display: flex;
    justify-content: start;
}

@media (max-width: 992px) {
    .breadcrumb {
        display: flex;
        justify-content: center;
    }
}

.team-outer {
    background: #f1f5f9;
    border-radius: 7px;
    padding: 30px;
    
}

.team-outer h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-details {
    display: flex;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 20px;
}

.success-story h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.success-story {
    font-size: 18px;
    line-height: 1.6;
}

.success-story ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.success-story ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.5rem;
}

.success-story ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('/images/i-rating.svg');
    background-size: cover;
    background-repeat: no-repeat;
}


.success-story-right {
    background: #25b1a333;
    border-radius: 7px;
    padding: 30px;
    
}

.success-story-percentage {
    color: #00aea5;
    font-size: 50px;
    display: block;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Gloock", serif;
}

.itinerary-outer {
    background: #f1f5f9;
    border-radius: 7px;
    overflow: hidden;
}
.itinerary-inner {
    padding: 30px;
}
.itineray-day {
    background: #00aea5;
    color: white;
    padding: 10px;
    width: 50px;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    flex: 0 0 50px;
    font-family: "Gloock", serif;
}
.itineray-title {
    line-height: 1.3;
    font-size: 20px;
    font-weight: 700;
}

.itineray-title-outer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: start;
}

.itinerary-inner h4 {
    font-size: 16px;
    color: #00aea5;
    font-weight: 700;
    margin-top: 30px;
}

.itinerary-inner ul {
    font-size: 16px;
    margin-bottom: 30px;
    
}

.booking-feature-icon {
    padding: 10px;
    background: #25b1a31a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.tag-filter {
    text-align: center;
}

@media (max-width: 992px) {
    .tag-filter {
        text-align: center;
    }
}

.tag {
    background: #949494;
    color: white;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 7px;
}