@charset "utf-8";
/* CSS Document */

/*********************** General ************************/
html {
    font-family: 'Roboto', sans-serif;
    -ms-text-size-adjust: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    font-size: 15px;
}

.center {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

@-webkit-keyframes scrollDown {
    0% {
        -webkit-transform: translate(-12px, 0px);
        transform: translate(-12px, 0px);
        opacity: 0;
    }

    75% {
        -webkit-transform: translate(-12px, 45px);
        transform: translate(-12px, 45px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(-12px, 45px);
        transform: translate(-12px, 45px);
        opacity: 0;
    }
}

@keyframes scrollDown {
    0% {
        -webkit-transform: translate(-12px, 0px);
        transform: translate(-12px, 0px);
        opacity: 0;
    }

    75% {
        -webkit-transform:translate(-12px, 45px);
        transform:translate(-12px, 45px);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(-12px, 45px);
        transform: translate(-12px, 45px);
        opacity: 0;
    }
}

/*********************** Colours ************************/
.blue_background { background-color: #1D2C4F; }
.blue_font { color: #1D2C4F; }
.yellow_background { background-color: #EEAA02; }
.yellow_font { color: #EEAA02; }
.white_background { background-color: #FFFFFF; }
.white_font { color: #FFFFFF; }
.black_background { background-color: #000000; }
.black_font { color: #000000; }
.red_font { color: red; }

/*********************** Wrappers ************************/
.wrapper_large {
    position: relative;
    max-width: 70%;
    width: 1100px;
    margin: 0 auto;
    /*z-index: 10;*/
}

.wrapper_small {
    position: relative;
    max-width: 50%;
    width: 850px;
    margin: 0 auto;
    /*z-index: 10;*/
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .wrapper_large {
        max-width: 90%;
    }

    .wrapper_small {
        max-width: 70%;
    }
}

@media (max-width: 950px) {
    .wrapper_small {
        max-width: 90%;
    }
}

/*********************** Headings & Fonts ************************/
h1, .mobile_nav {
    font-family: 'Open Sans', sans-serif;
}

.mobile_nav {
    font-size: 36px;
    margin-top: 25px;
}

.mobile_nav::after {
    color: #000000;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
}

a {
    display: inline-block;
    text-decoration: none;
}

.semi_bold {
    font-weight: 400;
}

.bold {
    font-weight: 600;
}

.extra_bold {
    font-weight: 800;
}

.opening {
    line-height: 1.5;
}

.justified {
    text-align: justify;
}

/*********************** Buttons ************************/
.button_1, input[type="submit"], input[type="reset"], input[type="button"]  {
    border: 2px solid #EEAA02;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 10px 0;
    letter-spacing: 1px;
    opacity: 0.94;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.20);
    transition: 0.1s all ease-in-out;
}

.button_1:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
    opacity: 1;
    box-shadow: 0px 20px 25px 1px rgba(0, 0, 0, 0.21);
    transition: 0.15s all ease-in-out;
    background-color: #EEAA02;
    color: #FFFFFF;
}

.button_1:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	transform: scale(0.96);
	background-position: 500px;
	box-shadow: 0px 8px 30px 1px rgba(0, 0, 0, 0.23);
    transition: 0.1s all ease-in-out;
}

.transform_link, .transform_link_black, .transform_link_blue {
    line-height: 0.5;
}

.transform_link::after {
    content: "";
    display: inline-block;
    width: 100%;
    background-color: #FFFFFF;
    transition: transform 0.2s ease-out;
}

.transform_link_blue::after {
    content: "";
    display: inline-block;
    width: 100%;
    background-color: #1D2C4F;
    transition: transform 0.2s ease-out;
}

.transform_link_black::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 0.5px;
    background-color: #000000;
    transition: transform 0.2s ease-out;
}

.transform_link:hover::after, .transform_link_blue:hover::after, .transform_link_black:hover::after  {
    height: 1px;
    transform: translateY(3px) scaleY(3);
}

/*********************** Navigation ************************/
.navigation_container {
    position: relative;
    width: 100%;
    position: fixed;
    z-index: 998;
    padding-bottom: 10px;
    background-color: transparent;
    transition: background-color .5s ease 0s;
}

.navigation_container.show {
    background-color: #FFFFFF;
    box-shadow: 0px 10px 30px 1px rgba(161, 117, 117, 0.25);
    transition: all .5s ease 0s; }

.navigation_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    width: 35%;
    padding-top: 7px;
}

.navigation li {
    position: relative;
}

.navigation li a.blue_font {
    color: #1D2C4F;
}

.navigation li a.transform_link_blue::after {
    content: "";
    display: inline-block;
    width: 100%;
    background-color: #1D2C4F;
    transition: transform 0.2s ease-out;
}

.extra_margin {
    margin-right: 50px;
}

.front {
    z-index: 999;
}

.dropdown-content {
    position: absolute;
    text-align: center;
    /*clip-path: circle(0% at 50% 0%);*/
    visibility: hidden;
    width: 230px;
    left: 50%;
    margin-left: -115px;
    padding: 10px 20px 20px 20px;
    box-sizing: border-box;
    transition: transform 0.2s ease-out;
}

.dropdown-content a {
    margin: 40px 0;
    display: block;
}

.dropdown-content a:last-child {
    margin-bottom: 0;
}

.all_caps {
    text-transform: uppercase;
}

.navigation .nav_drop:hover .dropdown-content {
    /*clip-path: circle(100%);*/
    visibility: visible;
}

.dropdown-content.show {
    background-color: #FFFFFF; }

.navigation_mobile {
    position: absolute;
    display: block;
    width: 50px;
    left: 50%;
    margin-left: -25px;
    z-index: 999;
}

.logo {
    width: 50px;
    height: 50px;
    display: block;
    justify-content: center;
    margin: 0 auto;
    margin-left: 3px;
    margin-top: 10px;
    transform: rotate(0deg);
    transform: translateZ(0px);
}

.logo.logo_white {
    background-image: url('https://res.cloudinary.com/sea-saffron/image/upload/v1576494139/logo_white_nq3m9v.png');
}

.logo.logo_blue {
    background-image: url('https://res.cloudinary.com/sea-saffron/image/upload/v1576588917/logo_blue_v5uojg.png') !important;
}

.navigation_burger, .navigation_mobile_links {
    display: none;
}

@media (max-width: 950px) {
    .navigation_mobile {
        position: relative;
        display: flex;
        width: 100%;
        justify-content: space-between;
        left: 0;
        margin-left: 0;
    }

    .navigation_group {
        position: fixed;
        margin-top: 0;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        display: block;
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        background-color: #1D2C4F;
        opacity: 0;
        visibility: hidden;
        transition: visibility 0s 0.4s, opacity 0.4s;
        overflow: hidden;
    }

    .navigation_group--is-open {
        opacity: 1;
        visibility: visible;
        transition: visibility 0s, opacity 0.4s;
    }

    .navigation_group--is-open .navigation_mobile_links>li:nth-child(1) a {
        transition: transform 0.2s 0.4s, color 0.2s ease-in-out;
    }

    .navigation_group--is-open .navigation_mobile_links>li:nth-child(2) a {
        transition: transform 0.2s 0.6s, color 0.2s ease-in-out;
    }

    .navigation_group--is-open .navigation_mobile_links>li:nth-child(3) a {
        transition: transform 0.2s 0.8s, color 0.2s ease-in-out;
    }

    .navigation_group--is-open .navigation_mobile_links>li:nth-child(4) a {
        transition: transform 0.2s 1s, color 0.2s ease-in-out;
    }

    .navigation_group--is-open .navigation_mobile_links>li a {
        transform: translateY(0);
    }

    .navigation_group--is-open .navigation_mobile_links>li a:hover {
        color: #FFFFFF;
    }

    .navigation {
        display: none;
    }

    .navigation_mobile_links {
        display: block;
        flex-direction: column;
        align-items: center;
        margin-top: 25vh;
    }

    .navigation_mobile_links>li {
        overflow: hidden;
    }

    .navigation_mobile_links>li a {
        transform: translateY(100%);
        color: #FFFFFF;
        font-weight: 700;
        line-height: 1.0;
        transition: transform 0s 0.4s;
    }

    .navigation_burger {
        position: relative;
        display: flex;
        width: 29.5px;
        height: 19px;
        margin-top: 25px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 999;
    }

    .navigation_burger--is-open .navigation_burger-el {
        transition: transform 0.4s, opacity 0.2s;
    }

    .navigation_burger--is-open .navigation_burger-el--top {
        transform: translateX(0px) rotate(45deg);
    }

    .navigation_burger--is-open .navigation_burger-el--bottom {
        transform: translateY(4px) rotate(-45deg);
    }

    .navigation_burger--is-open .navigation_burger-el--middle {
        opacity: 0;
    }

    .navigation_burger-el {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #FFFFFF;
        transition: transform 0.4s, opacity 0.2s 0.2s;
    }

    .navigation_burger-el.blue_background {
        background-color: #1D2C4F;
    }

    .navigation_burger-el--top {
        transform-origin: left top;
    }

    .navigation_burger-el--bottom {
        transform-origin: left bottom;
    }

    .logo {
        position: relative;
        display: flex;
        float: left;
        width: 49px;
        height: 50px;
        margin: 0;
        left: -5px;
        margin-top: 10px;
        border: 1px solid transparent;
        /*background-image: url('https://res.cloudinary.com/sea-saffron/image/upload/f_auto/v1576494139/logo_white_nq3m9v.png');*/
    }

    .extra_margin {
        margin: 0px;
    }
}

.scroll-lock {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/*********************** Introduction ************************/
.introduction {
    position: relative;
    display: flex;
    height: 65vh;
    width: 100%;
    margin-bottom: 40px;
    background-color: #1D2C4F;

    /* Create the parallax scrolling effect
    background-attachment: fixed;*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.introduction_gallery {
    position: relative;
}

.introduction_cover {
    width: 100%;
    height: 65vh;
    position: absolute;
	opacity: 0.30;
    z-index: 2;
    top: 0px;
}

.introduction_title {
    display: block;
    text-align: center;
    margin-top: 25vh;
    z-index: 10;
}

.introduction_title {
   justify-content: center;
}

.tour_slider_title {
    position: absolute;
    width: calc(100% - 60px);
    text-align: center;
    top: 25vh;
    padding: 0 30px;
    z-index: 10;
}

/*********************** Homepage Slider ************************/
#home_slider {
	position: relative;
	width: 100%;
	height: calc(100vh);
    overflow: hidden !important;
    margin-bottom: 40px;
}

#home_slider .home_slider_cover {
    width: 100%;
    height: 100%;
    position: absolute;
	opacity: 0.30;
    z-index: 3;
    top: 0px;
}

.home_slider_content {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 40vh;
    z-index: 15;
}

.home_slider_logo {
    width: 400px;
    height: 58px;
    margin: 0 auto 30px;
    background-image: url('https://res.cloudinary.com/sea-saffron/image/upload/c_scale,f_auto,q_auto:eco,w_400/v1576792673/large_logo_nrkvux.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 600px) {
    .home_slider_content {
        top: 36vh;
    }

    .home_slider_logo {
        width: 300px;
        height: 43px;
        margin: 0 auto 30px;
        background-image: url('https://res.cloudinary.com/sea-saffron/image/upload/c_scale,f_auto,q_auto:eco,w_300/v1576792673/large_logo_nrkvux.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

.home_slider_heading {
    text-align: center;
    padding: 0 40px;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.home_slider_arrow {
    position: absolute;
    bottom: 16%;
    left: 50%;
    -webkit-transform: translate(-16px, 0px);
    transform: translate(-16px, 0px);
    font-size: 34px;
    -webkit-animation: scrollDown 1.6s infinite;
    animation: scrollDown 1.6s infinite;
    z-index: 15;
}

#bg {
	-moz-transition: opacity 2s ease-in-out;
	-webkit-transition: opacity 2s ease-in-out;
	-ms-transition: opacity 2s ease-in-out;
	transition: opacity 2s ease-in-out;
	height: 100%;
	left: 0;
	opacity: 1;
	top: 0;
	width: 100%;
	z-index: 1;
}

#bg div {
    -moz-transition: opacity 3s ease, visibility 3s;
    -webkit-transition: opacity 3s ease, visibility 3s;
    -ms-transition: opacity 3s ease, visibility 3s;
    transition: opacity 3s ease, visibility 3s;
    background-size: cover;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 110%;
    overflow: hidden !important;
}

#bg div.visible {
    -moz-animation: bg 45s linear infinite;
    -webkit-animation: bg 45s linear infinite;
    -ms-animation: bg 45s linear infinite;
    animation: bg 45s linear infinite;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

#bg div.visible.top {
    z-index: 2;
}

#home_heading, #reviews {
    position: absolute;
    margin-top: -110px;
}

@media screen and (max-width: 1280px) {
    #bg div.visible {
        -moz-animation: bg 29.25s linear infinite;
        -webkit-animation: bg 29.25s linear infinite;
        -ms-animation: bg 29.25s linear infinite;
        animation: bg 29.25s linear infinite;
    }
}

@media screen and (max-width: 736px) {
    #bg div.visible {
        -moz-animation: bg 18s linear infinite;
        -webkit-animation: bg 18s linear infinite;
        -ms-animation: bg 18s linear infinite;
        animation: bg 18s linear infinite;
    }
}

#bg div:only-child {
    -moz-animation-direction: alternate !important;
    -webkit-animation-direction: alternate !important;
    -ms-animation-direction: alternate !important;
    animation-direction: alternate !important;
}

body.is-loading #bg {
    opacity: 0;
}

@-moz-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
}

@-webkit-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
}

@-ms-keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
}

@keyframes bg {
	0% {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-moz-transform: translateX(-25%);
		-webkit-transform: translateX(-25%);
		-ms-transform: translateX(-25%);
		transform: translateX(-25%);
	}
}

@media (max-height: 600px) {
    .home_slider_arrow {
        -webkit-animation: none;
        animation: none;
    }
}

/*********************** Key Features ************************/
.banner {
    width: 100%;
    padding: 30px 0 50px;
    margin-bottom: 70px;
    background-color: rgba(29, 44, 79, 0.05);
}

.features {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px auto 30px;
}

.feature {
    display: block;
    width: 22%;
    height: auto;
}

.award_feature {
    width: 38%;
}

.award_feature:last-of-type {
    margin: 30px auto 0;
}

.award_logo {
    width: 120px;
    height: 120px;
    display: block;
    justify-content: center;
    margin: 10px auto 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 950px) {
    .feature {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .features {
        display: block;
        flex-wrap: wrap;
    }

    .feature {
        width: 100%;
        margin: 30px auto;
    }

    .feature h2, .feature h3, .feature a {
        text-align: center;
    }

    .banner .button_1 {
        display: block;
    }
}

/*********************** Extra Info ************************/
.extra_infos {
    position: relative;
    display: block;
    margin: 10px auto 30px;
}

.extra_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.extra_info h2, .extra_info p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.extra_info p {
    width: 90%;
}

@media (max-width: 600px) {
    .extra_info p {
        width: 86%;
    }
}

/*********************** About ************************/
.about_wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 160px;
    margin-bottom: 130px;
}

.reverse_sides {
    flex-direction: row-reverse;
}

.about_wrapper .column {
    width: 45%;
    margin: 0 1px 25px 0px;
}

.about_image_front {
    width: 100%;
    height: 280px;
    margin-top: 20px;
    z-index: 10;
    background-color: #1D2C4F;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.21);
    background-size: cover;
    background-position: center center;
}

.mobile_image_only {
    display: none;
}
.desktop_image_only {
    display: block;
}

.about_image_back {
    display: block;
    position: absolute;
    left: 0;
    margin-top: -100px;
    width: 30%;
    height: 500px;
    /*z-index: 1;*/
    background-color: #1D2C4F;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.21);
    opacity: 0.4;
    background-size: cover;
    background-position: center center;
}

.about_right {
    left: 100%;
    margin-left: -30%;
}

.about_text {
    width: 100%;
    text-align: left;
    margin-top: -70px;
    line-height: 1.5;
}

.about_text_left {
    margin-top: 70px;
}

@media (max-width: 950px) {
    .about_wrapper {
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .about_image_back {
        display: none;
    }

    .mobile_hide {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .about_wrapper {
        display: block;
        margin: 70px auto;
        margin-top: 30px;
    }

    .about_wrapper .column {
        width: 100%;
    }

    .about_image_front {
        height: 300px;
        margin-top: 0;
    }


    .about_text {
        margin-top: 40px;
    }

    .mobile_image_only {
        display: block;
        height: 240px;
    }
    .desktop_image_only {
        display: none;
    }
}

@media (max-width: 600px) {
    .about_text h1 {
        text-align: center;
    }

    .about_text .button_1 {
        display: block;
        text-align: center;
        margin-top: 30px;
    }
}

/*********************** Reviews ************************/
.reviews_section {
    width: 100%;
    height: 220px;
    padding: 70px 0;
    display: block;
    position: relative;
    margin-bottom: 70px;
    overflow: hidden;
}

.review {
    width: 48%;
    max-height: 100%;
    position: absolute;
}

.quotes {
    font-size: 25px;
}

.PanelAct {
    left: 0;
}

.review p {
    width: 100%;
}

.control {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 50px;
}

.control span {
    background-color: rgba(255,255,255,0.2);
    padding: 6px;
    display: inline-block;
    vertical-align: top;
    margin-left: 7px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.control span:first-child {
    margin-left: 0;
}

.ContActive {
    background-color: #FFFFFF !important;
}

/************************ Review Star Ratings **********************/
.star_ratings {
    unicode-bidi: bidi-override;
    color: #FFFFFF;
    font-size: 30px;
    position: relative;
    display: block;
    padding: 0;
}

.star_ratings .fill_ratings {
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}

.star_ratings .fill_ratings span {
    display: inline-block;
}

.star_ratings .empty_ratings {
    padding: 0;
    display: block;
    z-index: 0;
    opacity: 0.5;
}

@media (min-width: 950px){
    .margin_top {
        margin-top: 120px;
    }
}

.review_count {
    display: flex;
    margin-top: -7px;
    margin-left: -2px;
    margin-bottom: -10px;
}

.review_total {
    margin-left: 20px;
    font-weight: 600;
    color: #000000;
    padding-top: 15px;
}

@media (max-width: 600px) {
    .review_count {
        display: block;
        margin-left: 0px;
        margin-bottom: 0px;
        text-align: center;
    }

    .review_total {
        margin-left: 0px;
        margin: 0 auto;
        text-align: center !important;
    }

    .middle {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .credit_card_middle {
        margin-left: -10px;
    }
}


.container {
	box-sizing: content-box;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 90px;
}
.identity {
    opacity: 0.7;
	margin: 0 !important;
}
figure.testimonial {
    position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 0;
	text-align: left;
    box-shadow: none !important;
    outline: none;
}
figure.testimonial * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
figure.testimonial img {
	max-width: 100%;
	vertical-align: middle;
	height: 90px;
	width: 90px;
	border-radius: 50%;
	margin: 40px 0 0 10px;
}
figure.testimonial blockquote {
	display: block;
	font-weight: 400;
	line-height: 1.3em;
	margin: 0;
	padding: 30px 50px 30px 40px;
	position: relative;
}
figure.testimonial blockquote:before, figure.testimonial blockquote:after {
	content: "\201C";
	position: absolute;
	font-size: 50px;
	font-style: normal;
}
figure.testimonial blockquote:before {
	top: 25px;
	left: 0px;
}
figure.testimonial blockquote:after {
	content: "\201D";
	right: 30px;
	bottom: 0;
}
figure.testimonial .btn {
	top: 100%;
	width: 0;
	height: 0;
	border-left: 0 solid transparent;
	border-right: 25px solid transparent;
	border-top: 25px solid #fff;
	margin: 0;
	position: absolute;
}
figure.testimonial .peopl {
	position: absolute;
	bottom: 45px;
	padding: 0 10px 0 120px;
	margin: 0;
	color: #ffffff;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
}
figure.testimonial .peopl h3 {
	margin: 0;
}
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus, .slick-slide {
	outline: none !important;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}
.slick-track:before, .slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	float: left;
	/*height: 100%;*/
	min-height: 1px;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-btn.slick-hidden {
	display: none;
}

.slick-prev, .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 40%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
    background: transparent;
    display: none !important;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
	opacity: 1;
}
.slick-prev:before, .slick-next:before {
	font-family: "FontAwesome";
	font-size: 40px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-prev {
    left: -40px;
    display: none !important;
}
.slick-prev:before {
    content: "";
    display: none;
}
.slick-next {
    right: -40px;
    display: none !important;
}
.slick-next:before {
    content: "";
    display: none;
}

.slick-dots {
    position: absolute;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    margin: 0 auto;
    padding: 1rem 0;
    list-style-type: none;
    bottom: 80px;
    width: 100%;
  }
  .slick-dots li {
    margin: 0 0.25rem;
  }
  .slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: 1.5px solid white;
    border-radius: 100%;
    background-color: transparent;
    text-indent: -9999px;
    cursor: pointer;
    outline: none;
  }
  .slick-dots li.slick-active button {
    background-color: white;
  }

  .gallery_navigation {
      position: absolute;
      display: flex;
      justify-content: space-between;
      text-align: center;
      top: 42%;
      left: 50%;
      margin-left: -35%;
      z-index: 15;
  }
  .gallery_nav_modal {
        position: absolute;
        display: flex;
        justify-content: space-between;
        text-align: center;
        width: 90%;
        left: 50%;
        top: 50%;
        margin-top: -13px;
        margin-left: -45%;
        z-index: 15;
    }

.gallery_nav_modal h3 {
    margin: 0;
    margin-top: 5px;
}

  .previous, .next {
      font-size: 26px;
      cursor: pointer;
  }

  @media (min-width: 1560px) {
    .gallery_navigation {
        margin-left: -550px;
    }
  }

  @media (max-width: 1200px) {
    .gallery_navigation {
        margin-left: -45%;
    }

    .gallery_nav_modal {
        top: calc(100% - 80px);
    }
  }

  @media (max-width: 730px) {
    .gallery_navigation {
        display: none;
    }
  }

  @media (max-width: 600px) {
    .gallery_nav_modal {
        display: none;
    }
  }


/*********************** Gallery ************************/
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 90px;
}

.gallery_photo {
    display: block;
    width: 31%;
    height: 250px;
    margin: -20px 0px 20px 0px;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.21);
    cursor: pointer;
}

.team_article {
    display: block;
    width: 31%;
}

.team_photo {
    display: block;
    width: 100%;
    height: 250px;
    margin: 0 0px 20px 0px;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.21);
}

.gallery_photo:nth-child(2), .gallery_photo:nth-child(5), .gallery_photo:nth-child(8) {
    margin: 50px 0px 0px 0px;
}

.gallery_photo:hover {
    opacity: 0.8;
}

.overlay_modal {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100vh; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 999; /* Specify a stack order in case you're using a different order for other elements */
  }

.mySlides {
    top: 50%;
    margin: 0 auto;
    margin-top: -250px;
    z-index: 999;
    /*width: 100%;*/
    height: 500px;
    background-size: cover;
    background-position: center center;
}

.close_button {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 100%;
    height: 100vh;
    z-index: 10;
}

.close_button i {
    position: absolute;
    font-size: 25px;
    top: 25px;
    right: 30px;
}

.HomepageGallery {
    display: none;
}

@media (max-width: 950px) {
    .gallery {
        margin-bottom: 20px;
    }

    .gallery_photo {
        width: 45%;
        height: 200px;
        margin: 0px 0px 50px 0px;
    }

    .gallery_photo:nth-child(2), .gallery_photo:nth-child(5), .gallery_photo:nth-child(8) {
        margin: 0px 0px 50px 0px;
    }
}

@media (max-width: 600px) {
    .gallery {
        display: none;
    }

    .gallery_photo {
        width: 80%;
        height: 350px;
        box-shadow: none;
    }

    .gallery_photo:hover {
        opacity: 1;
    }
    .HomepageGallery {
        display: block;
        height: 470px;
        margin-top: 30px;
    }

    .HomepageGallery .slick-slide {
        margin: 0 20px;
    }

    .HomepageGallery .slick-dots {
        position: relative;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
                justify-content: center;
        margin: 0 auto;
        padding: 1rem 0;
        list-style-type: none;
        width: 100%;
        margin-top: 100px;
      }
      .HomepageGallery .slick-dots li {
        margin: 0 0.25rem;
      }
      .HomepageGallery .slick-dots button {
        display: block;
        width: 1rem;
        height: 1rem;
        padding: 0;
        border: 1.5px solid #EEAA02;
        border-radius: 100%;
        background-color: transparent;
        text-indent: -9999px;
        cursor: pointer;
        outline: none;
      }
      .HomepageGallery .slick-dots li.slick-active button {
        background-color: #EEAA02;
      }

}

/*********************** Tours ************************/
.tours {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 70px;
}

#tours {
    position: absolute;
    margin-top: -110px;
}

.single_tour {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.tour_article {
    display: block;
    width: 48%;
    cursor: pointer;
}

.single_tour .tour {
    margin-top: 10px;
}

.tour {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.23);
    transition: transform 0.5s, filter 0.2s ease-in-out;
}

.tour:hover {
    transform: scale(1.02);
    transition: transform 0.5s, filter 0.2s ease-in-out;
}

.full_width {
    margin-top: 0px;
    display: block;
    text-align: center;
}

.full_width_margin {
    margin-top: 20px;
}

.small_margin_top {
    margin-top: 0;
}

.tour_headings {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.tour_headings h2 {
    display: block;
    width: 100%;
}

.tour_headings h3 {
    margin: 0px 30px;
    opacity: 0.7;
}

@media (max-width: 460px) {
    .tour_headings h3 {
        margin: 0px 10px;
    }
}

.tour_headings i {
    margin-right: 10px;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.overlay_content {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.no_title {
    padding-top: 65px !important;
}

.tour:hover .overlay, .tour:focus .overlay {
    height: 100%;
}

.tour_description {
    padding: 10px 50px 20px;
    text-align: left;
}

.banner_margin {
    margin-top: 20px;
}

@media(min-width: 950px) {
    .single_about {
        margin-bottom: 130px;
    }
}

@media(max-width: 950px) {
    .single_tour {
        margin-bottom: 20px;
    }
    .banner_margin {
        margin-top: 70px;
    }
    .full_width {
        margin-bottom: 15px;
    }
}

@media(max-width: 420px) {
    .tour_description {
        padding: 10px 30px 10px;
    }
}

.label_container {
    position: relative;
    width: 100%;
    text-align: center;
}

.label {
    position: absolute;
    height: 28px;
    left: -20px;
    top: 20px;
    padding: 8px 15px 0px 15px;
    border-radius: 5px;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.23);
    z-index: 50;
}

.new_badge {
    position: absolute;
    height: 90px;
    width: 90px;
    right: -20px;
    top: -20px;
    z-index: 50;
}

@media (max-width: 950px) {
    .tours {
        display: block;
    }

    .tour_article, .tour_article:last-child {
        margin: 0 auto;
        width: 70%;
        /*height: 350px;*/
    }

    .tour_article:last-child {
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .tour_article, .tour_article:last-child {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .tour_headings {
        display: block;
        line-height: 1.6;
    }
    .tour_article {
        margin-bottom: 70px;
    }
}

/*********************** Single Tour ************************/
.booking_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.tour_details {
    width: 45%;
    /*margin: 0 1px 25px 0px;*/
}

.tour_details h1 {
    margin-top: 0;
}

.tour_detail_section {
    margin-bottom: 30px;
}
.tour_detail_section:last-child {
    margin-bottom: 0;
}

.tour_detail_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.activity_details {
    color: #1D2C4F;
}

.activity_details:last-child {
    color: #EEAA02 !important;
}

.tour_detail_wrapper h4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0;
}

.tour_detail_wrapper h3 {
    margin-top: 9px;
    text-align: left !important;
}

.tour_detail_wrapper i {
    margin-top: 2px;
}

.tour_detail_text {
    width: 90%;
}

.tour_details i {
    width: 40px;
}

.book_now_banner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    visibility: hidden;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.25);
}

.book_now_banner.show {
    visibility: visible;
}

.book_now_banner .button_1 {
    display: none;
}

.book_now_banner i {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    right: 50%;
    margin-right: -13px;
}

#booking-form {
    position: absolute;
    margin-top: -100px;
}

@media (max-width: 1270px) {
    .tour_detail_text {
        width: 85%;
    }
}

@media (max-width: 950px) {
    .booking_wrapper {
        display: block;
    }

    .tour_details {
        width: 100%;
        margin-bottom: 30px;
    }

    .tour_detail_text {
        width: 90%;
    }

    .book_now_banner {
        width: 100%;
        height: auto;
        padding: 10px 0;
        display: block;
        text-align: center;
        border-radius: 0;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 100;
        box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.25);
    }

    .book_now_banner .button_1 {
        display: block;
        width: 100px;
        margin-left: auto;
        margin-right: auto;
        transition: none;
    }

    .book_now_banner a {
        display: none;
    }
}

@media (max-width: 600px) {
    .tour_details h1, .tour_detail_section h2 {
        text-align: center;
    }

    .book_now_banner .button_1 {
        width: calc(100% - 4px);
        padding: 10px 0;
    }

    .tour_details h3 {
        text-align: center;
    }
}

@media (max-width: 450px) {
    .tour_detail_text {
        width: 85%;
    }
}

/*********************** Booking Form ************************/
.iframe_desktop {
    display: block;
    position: sticky;
    top: 100px;
    width: 45%;
    height: 700px;
    overflow: auto;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.21);
}

.iframe_desktop iframe {
    position: absolute;
    width: 100%;
    height: 98%;
    z-index: 50;
}

.c-page {
    background-color: #FFFFFF !important;
}

.airbnb_iframe {
    position: sticky;
    top: 100px;
    height: 415px;
}

.airbnb-embed-frame {
    height: 750px !important;
    width: 365px !important;
    margin: 0 auto !important;
}

@media (max-width: 950px) {
    .iframe_desktop {
        width: 100%;
        height: 700px;
        z-index: 50;
    }
}

@media (max-width: 600px) {
    .iframe_desktop {
        width: 100%;
        z-index: 50;
    }
}

/************************* Menu *************************/
.food_menu {
    margin-bottom: 90px;
}

.tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

.tab button {
    margin: 10px;
    transition: 0.3s;
}

.tabcontent {
    display: none;
}

/************************* Blog *************************/
.blog_list_margin {
    margin-bottom: 30px;
}

.blog_wrapper {
    width: calc(100% - 250px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog_article {
    display: block;
    width: 47%;
    cursor: pointer;
}

.blog {
    height: 160px;
}

.blog_description {
    padding: 5px 30px 15px;
    text-align: left;
}

.blog_desc_margin {
    margin-bottom: 10px;
}

.blog_headings h3 {
    margin: 0px 30px;
    opacity: 0.7;
}

@media (min-width: 1200px) and (max-width: 1400px){
    .blog_headings h3 {
        margin: 0px 10px;
    }
}

@media (min-width: 950px) and (max-width: 1085px){
    .blog_headings h3 {
        margin: 0px 10px;
    }
}

@media (max-width: 950px) {
    .blog_wrapper {
        width: 100%;
    }
}

.blog_detail_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list_card {
    display: inline-block;
    position: relative;
    width: 47%;
    height: 350px;
    margin: 25px 1px 25px 0px;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.21);
    transition: 0.2s all ease-in-out;
}

.list_card_image {
    position: relative;
    width: 100%;
    height: 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.list_card_content {
    display: block;
    position: relative;
    width: calc(100% - 40px);
    height: 180px;
    padding: 0 20px;
}

.list_card_base_content {
    position: absolute;
    bottom: 20px;
}

.list_card_content h4 {
    padding-right: 15px;
    margin: 0;
    opacity: 0.7;
}

.list_card_content i {
    font-size: 11px;
    padding-right: 8px;
    padding-left: 2px;
}


@media (max-width: 600px) {
    .blog_wrapper, .blog_detail_wrapper {
        display: block;
        justify-content: center;
    }

    .blog_article, .blog_article:last-child, .list_card {
        margin: 0 auto;
        width: 70%;
        display: block;
    }

    .blog, .list_card {
        margin-top: 50px;
    }

    .blog_article:last-child, .list_card:last-child {
        margin-bottom: 50px;
    }
}

@media (max-width: 450px) {
    .blog_article, .blog_article:last-child, .list_card {
        width: 100%;
    }
}



/*********************** Filter System ************************/
.filter {
    width: 200px;
    /*padding: 30px 0;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.23);*/
}

.filter_content {
    position: sticky;
    top: 140px;
    /*padding: 0 25px;*/
    text-align: center;
}

.filter_content h3 {
    margin-top: 30px;
}

.filter_content .button_1 {
    display: block;
    width: 100%;
    margin: 10px auto;
    text-transform: uppercase;
}

.search {
    margin-top: 20px;
}

.search_bar {
    display: flex;
    position: relative;
    height: 37.8px;
    text-align: left;
    color: #1D2C4F;
    border: solid 1.5px #1D2C4F;
    border-radius: 5px;
}

.search_box {
    float: left;
    text-align: left;
    padding-left: 15px;
    width: 100%;
    height: 37.8px;
    border: none;
    border-radius: 5px 5px 5px 5px;
    background-color: transparent;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    color: #1D2C4F;
}

.search_box::placeholder {
    font-weight: 600;
    color: #1D2C4F;
}

@media (max-width: 950px) {
    .search {
        display: flex;
        justify-content: space-between;
        width: 70%;
        margin: 20px auto 0;
    }

    .search_bar {
        width: calc(100% - 80.8px);
    }

    .search .button_1 {
        margin: 0 !important;
        margin-left: 20px !important;
    }
}

@media (max-width: 600px) {
    .search {
        width: 100%;
    }
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }


/*********************** Single Blog ************************/

.blog_content {
    margin-top: 30px;
}

.blog_content h1, .blog_content h2, .blog_content h3, .blog_content h4, .blog_content h5, .blog_content h6 {
    color: #1D2C4F;
}

.blog_content p {
    line-height: 1.5;
}

.blog_content img {
    height: auto;
    margin: 20px auto;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.2);
}

.blog_content ul, .blog_content li {
    list-style-type: circle !important;
    margin-left: 8px;
}

.visual-anchor-class {
    position: absolute;
    margin-top: -100px;
}

.blog_navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.blog_nav_left {
    float: left;
    text-align: left;
}

.blog_nav_right {
    float: right;
    text-align: right;
}

.blog_social {
    position: absolute;
    display: block;
    width: 40px;
    margin-top: 0px;
}

.blog_social a {
    margin: 0 0 15px;
    font-size: 35px;
}

@media(max-width: 950px) {
    .blog_social {
        display: none;
    }

    .filter {
        width: 100%;
    }

    .filter_content {
        position: relative;
        top: 0;
    }

    .category_filter {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .filter_content .button_1 {
        width: auto;
        margin: 10px;
    }
}

@media(max-width: 600px) {
    .blog_content img {
        width: 100%;
        height: auto;
    }
}

/*********************** Pagination ************************/
.pagination_wrapper {
    display: block;
    width: 100%;
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin: 50px auto 0px;
    width: 250px;
}

.page_link {
    border: 2px solid #EEAA02;
    border-radius: 5px;
    padding: 8.5px 14px;
    color: #EEAA02;
    font-weight: 700;
    box-shadow: 0px 8px 30px 1px rgba(0, 0, 0, 0.23);
}

.page_link:hover {
    background-color: #EEAA02;
    color: #FFFFFF;
    font-weight: 1400;
    transition: 0.3s all ease-in-out;
}

.page_item .chosen {
    background-color: #EEAA02;
    color: #FFFFFF;
    font-weight: 1400;
    transition: 0.3s all ease-in-out;
}

.pagination_arrows {
    position: relative;
    width: 34px;
    height: 23px;
    border: solid 2px #EEAA02;
    color: #EEAA02;
    border-radius: 5px;
    font-size: 1.0em !important;
    text-align: center;
    display: inline-block;
    padding-top: 11px;
    padding-bottom: 1.5px;
    cursor: pointer;
    box-shadow: 0px 8px 30px 1px rgba(0, 0, 0, 0.23);
    transition: 0.2s all ease-in-out;
}

.pagination_arrows:hover {
    background-color: #EEAA02;
    color: #FFFFFF;
    transition: 0.3s all ease-in-out;
}

.pagination_arrows:active {
    transform: scale(0.96);
    transition: 0.1s all ease-in-out;
}

.semi_trans {
    opacity: 0.7;
}

.semi_trans:hover {
    background-color: transparent;
    color: #EEAA02;
    opacity: 0.7;
    cursor: auto;
}

/************************* Careers *************************/
#careers {
    position: absolute;
    margin-top: -100px;
}

.careers_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.careers {
    display: block;
    width: 65%;
    margin-bottom: 55px;
}

@media (max-width: 600px) {
    .application_block {
        display: none;
    }
}

.app_instructions {
    margin-top: 60px;
}

.career {
    width: calc(100% - 60px);
    padding: 10px 30px;
    border-radius: 5px;
    margin: 15px 0;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 0.22);
    transition: 0.1s all ease-in-out;
}

.career h2 {
    display: inline-block;
}

.career:hover {
    box-shadow: 0px 15px 32px 1px rgba(0, 0, 0, 0.25);
    transition: 0.1s all ease-in-out;
}

.career_details {
    display: flex;
}

.career_details h3 {
    margin-top: 0px !important;
    margin-right: 50px;
    opacity: 70%;
}

.career_details h3:last-child {
    margin-right: 0;
}

.career_details h4 {
    margin-top: 0px !important;
}

.career_details i {
    margin-right: 10px;
}

@media (max-width: 600px) {
    .careers {
        width: 100%;
    }
}

/************************* FAQs *************************/
.faqs {
    width: 100%;
}

.faqs_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.faqs_wrapper .column {
    width: 48%;
    margin: 0 1px 25px 0px;
}

@media (max-width: 800px) {
    .faqs_wrapper {
        display: block;
    }

    .faqs_wrapper .column {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/*********************** Footer ************************/
.footer {
    padding: 40px 0px;
    width: 100%;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.30);
}

.footer_desktop_container {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.footer_copyright {
    text-align: center;
    margin: 0px auto;
    opacity: 0.7;

}

@media (max-width: 950px) {
    .footer {
        padding: 30px 0px 40px 0px;
    }
    .footer_desktop_container {
        justify-content: center;
    }

    .footer_desktop_container li {
        margin: 10px 20px;
    }
}

/*********************** 404 ************************/
.error_image {
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    padding-top: 150px;
}

.error_image img {
    display: block;
    margin: 50px auto;
    padding: 0 40px;
    width: 50%;
}

@media (max-width: 950px) {
    .error_image {
        height: 50vh;
    }
}