@charset "UTF-8";
/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Mixins
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

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

*:before,
*:after {
    box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
    display: block;
}

template {
    display: none;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
    max-width: 100%;
}

img,
iframe {
    border: 0 none;
}

img {
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

b,
strong {
    font-weight: bold;
}

address {
    font-style: normal;
}

svg:not(:root) {
    overflow: hidden;
}

a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
    cursor: pointer;
}

a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
    appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
    appearance: none;
}

textarea {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

button,
select {
    text-transform: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

nav ul,
nav ol {
    list-style: none outside none;
}

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
body {
    min-width: 320px;
    background: #FAFAFC;
    color: #000;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover,
a[href^=tel] {
    text-decoration: none;
}

/*
 * Fix for flexbox last row alignment.

 * To use, insert 'spacer' items after the content within the flexbox. Each element should have the
 * same class as a real item, in addition to the 'spacer' class. E.g.
 *
 *   <% loop $Children %>
 *	   <div class="dropdown__item">
 *			 ...
 *		 </div>
 *	 <% end_loop %>
 *	 <div class="dropdown__item spacer"></div>
 *	 <div class="dropdown__item spacer"></div>
 *
 * The number of spacer items should be equivelant to the maximum number of columns -1.
 */
.spacer {
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
/*  Clear  */
.clear:after {
    content: "";
    display: block;
    clear: both;
}

/*  Notext  */
.notext {
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
}

/*  Hidden  */
[hidden],
.hidden {
    display: none !important;
}

/*  Alignleft  */
.alignleft {
    float: left;
}

/*  Alignright  */
.alignright {
    float: right;
}

/*  Disabled  */
[disabled],
.disabled {
    cursor: default;
}

/*  Grid  */
.cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.col {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.col--1of2 {
    max-width: 49%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
}

.col--1of3 {
    max-width: 35%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
}

.col--2of3 {
    max-width: 61%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 61%;
    flex: 0 0 61%;
}

/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hidden-sm {
        display: none !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .hidden-md {
        display: none !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1201px) {
    .hidden-lg {
        display: none !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

.rounded-img {
    border-radius: 50%;
    overflow: hidden;
    width: 180px;
    height: 180px;
}

.rounded-img img {
    width: 100%;
}

/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
    padding-top: 147px;
}

@media (max-width: 1023px) {
    .wrapper {
        padding-top: 127px;
    }
}

@media (max-width: 767px) {
    .wrapper {
        overflow: hidden;
        padding-top: 116px;
    }
}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
    margin: auto;
}

.shell--fluid {
    max-width: none;
}

/* ------------------------------------------------------------ *\
	Container
\* ------------------------------------------------------------ */
.container {
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 100;
}

.header .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header .header__inner .header-menu {
    font-size: 0;
}

/* Tablet */
@media (max-width: 1023px) {
    .header .header__inner .logo {
        margin: 0 auto 0 0px;
    }
}

/* Mobile */
@media (max-width: 1023px) {
    .header .header__inner {
        padding: 23px 10px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .header .btn {
        background-color: transparent;
        color: #000;
        width: 100%;
        max-width: 113px;
        padding: 6px 5px;
    }

    .header .btn-small {
        font-size: 0;
        display: inline-block;
    }
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .header .btn {
            padding-top: 8px;
        }
    }
}

/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
    background-color: #000;
    color: #fff;
}

.footer .footer__inner {
    padding: 82px 0 0;
}

.footer .footer__head {
    border-bottom: 1px solid #000;
    padding-bottom: 27px;
}

.footer h6 {
    text-transform: uppercase;
}

.footer .footer__body {
    padding: 36px 0 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .footer__aside {
    width: 36.5%;
    padding-top: 2px;
}

.footer .footer__logo a {
    text-decoration: none;
    margin-left: 12px;
}

.footer .footer__logo a:first-child {
    margin-left: 0;
}

.footer .footer__logo .logo__atas {
    filter: grayscale(1);
}

.footer .footer__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.footer .list-logos {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-between;
}

@media (max-width: 1023px) {
    .footer .list-logos {
        flex-direction: row;
        max-width: fit-content;
        gap: 20px;
        margin: auto;
    }
}

.footer .list-contacts {
    margin-bottom: 32px;
}

.footer .socials {
    margin-bottom: 31px;
}

.footer .footer__foot {
    border-top: 1px solid #000;
    padding: 28px 5px;
}

.footer .footer__navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 56px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .footer .footer__inner {
        padding: 30px 0 0;
    }

    .footer .list-logos,
    .footer .footer__navs {
        padding-right: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .footer .footer__navs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-right: 0;
    }

    .footer h6 {
        border-bottom: 1px solid #000;
        width: 100%;
        padding-bottom: 9px;
        margin-bottom: 5px;
    }

    .footer .footer__inner {
        padding: 20px 5px 0;
    }

    .footer .footer__head {
        padding-bottom: 9px;
    }

    .footer .footer__body {
        padding: 21px 0 0;
    }

    .footer .footer__aside {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid #000;
        padding-bottom: 4px;
        margin-bottom: 21px;
    }

    .footer .list-contacts {
        margin-bottom: 19px;
    }

    .footer .footer__logo {
        margin: -14px 7px 10px 0;
        text-align: right;
    }

    .footer .footer__logo img {
        height: auto;
        max-width: 120px;
        max-height: 60px;
        vertical-align: bottom;
    }

    .footer .friends {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .footer .footer__content {
        width: 100%;
    }

    .footer .list-logos {
        margin-top: 3px;
        border-top: 1px solid #000;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer .footer__foot {
        text-align: center;
        padding: 25px 19px;
    }
}

/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */
.btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #000;
    padding: 9px 21px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 20px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    border: 2px solid #000;
}

/* Button Block */
.btn--block {
    display: block;
    padding-left: 0;
    padding-right: 0;
}

.btn-scroll {
    width: 26px;
    height: 26px;
    border: 4px solid #000;
    border-color: transparent #000 #000 transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 45deg;
    -ms-transform-origin: 45deg;
    transform-origin: 45deg;
    display: inline-block;
}

.btn-arrow-right {
    width: 48px;
    height: 48px;
    text-decoration: none;
    border-radius: 50%;
    border: 3px solid #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.btn-arrow-right:hover {
    background-color: #fff;
}

.btn-arrow--black {
    border-color: #000;
    width: 40px;
    height: 40px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.btn--form {
    border: none;
    width: 100%;
    max-width: 180px;
    text-align: center;
    padding: 13px 0;
}

.btn--green {
    border: 2px solid #000;
    -webkit-transition: background 0.3s, opacity 0.3s;
    -o-transition: background 0.3s, opacity 0.3s;
    transition: background 0.3s, opacity 0.3s;
    opacity: 0.3;
}

.btn--green:hover {
    opacity: 1;
}

.btn--green-2 {
    border: 2px solid #000;
    -webkit-transition: background 0.3s, opacity 0.3s;
    -o-transition: background 0.3s, opacity 0.3s;
    transition: background 0.3s, opacity 0.3s;
    opacity: 1;
}

.btn--green-2:hover {
    opacity: 0.3;
}

/* ------------------------------------------------------------ *\
	Btn Ico
\* ------------------------------------------------------------ */
.btn--ico {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn--ico .btn__ico {
    width: 10px;
    height: 10px;
    border: 2px solid Currentcolor;
    border-width: 0 2px 2px 0;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: -5px -5px 0 14px;
}

.btn--size1 {
    width: 100%;
    max-width: 195px;
    text-align: center;
}

.btn--size2 {
    max-width: 116px;
    width: 100%;
    padding: 7px 5px;
}

.btn--size3 {
    max-width: 180px;
    width: 100%;
    padding: 8px 5px;
}

.btn--size4 {
    max-width: 210px;
    width: 100%;
    padding: 13px 10px;
    border-radius: 26px;
}

/* Mobile */
@media (max-width: 767px) {
    .btn {
        padding: 10px 5px;
    }

    .btn--form {
        max-width: 180px;
        padding: 13px 0;
    }
}

/* ------------------------------------------------------------ *\
	Btn Activities
\* ------------------------------------------------------------ */
.btn-activities {
    padding: 15px 10px;
    width: 100%;
    max-width: 251px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    display: inline-block;
    border-radius: 27px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.btn-activities:hover {
    opacity: 0.6;
}

.btn-activities .btn__ico {
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 15px;
}

/* ------------------------------------------------------------ *\
	Btn Quote
\* ------------------------------------------------------------ */
.btn--quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-right: 36px;
}

.btn--quote .btn__quotenumber {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 6px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ------------------------------------------------------------ *\
	Btn Outline
\* ------------------------------------------------------------ */
.btn--outline {
    width: 100%;
    max-width: 172px;
    padding: 12px 10px;
    border: 2px solid #000;
    background: rgba(0, 0, 0, 0);
    color: #000;
    border-radius: 24px;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.btn--outline:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .btn {
            padding: 10px 5px 7px 5px;
        }

        .btn--form {
            padding-top: 13px !important;
        }

        @media (max-width: 767px) {
            .btn {
                padding: 10px 5px 8px 5px;
            }
        }
    }
}

.btn.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* ------------------------------------------------------------ *\
	Form Elements
\* ------------------------------------------------------------ */
input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder,
input::placeholder {
    color: inherit;
    opacity: 1;
}

textarea::-webkit-input-placeholder,
textarea:-ms-input-placeholder,
textarea::-ms-input-placeholder,
textarea::placeholder {
    color: inherit;
    opacity: 1;
}

input {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    -webkit-appearance: none;
}

input:-webkit-autofill {
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
}

select::-ms-expand {
    display: none;
}

.field {
    border: 2px solid #000;
    width: 100%;
    padding: 14px 18px 12px;
}

.select {
    border: 4px solid #000;
    border-radius: 27px;
    position: relative;
}

.select svg {
    position: absolute;
    width: 15px;
    height: 9px;
    top: 54%;
    right: 12px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.select .label {
    color: #000;
    border: none;
    padding: 0px 10px;
    width: 100%;
}

.select.select--black {
    background-color: #000;
    background-color: #000;
    color: #fff;
}

.select.select--black svg {
    fill: #fff;
}

textarea {
    display: block;
    height: 162px;
    resize: none;
}

.select-holder {
    position: relative;
}

.select-holder:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    border-width: 0 1px 1px 0;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-85%) rotate(45deg);
}

/* ------------------------------------------------------------ *\
	Radio
\* ------------------------------------------------------------ */
.radios-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 2px solid #000;
}

.radio {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 40%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.radio+.radio {
    border-left: 2px solid #000;
}

.radio input {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    opacity: 0;
}

.radio label {
    padding: 14px 6px 12px;
    width: 100%;
    position: relative;
    text-transform: capitalize;
    text-align: center;
    z-index: 11;
    pointer-events: none;
}

.radio input:checked~label {
    color: #fff;
    background-color: #000;
}

/* Mobile */
@media (max-width: 767px) {
    .field {
        padding: 15px 9px;
    }
}

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */
.form .form__row {
    text-align: left;
}

.form .form__label {
    text-align: left;
    margin-bottom: 11px;
    display: inline-block;
}

.form .form__controls {
    width: 100%;
}

.form .form__actions {
    padding: 64px 0 0;
}

.form .form--images .form__actions {
    padding: 72px 0 0;
}

.form--size1 {
    width: 100%;
    max-width: 405px;
}

.form--black .selectric .label {
    color: #fff;
}

.form--black .select {
    background-color: #000;
}

.form--black .select svg {
    fill: #fff;
    pointer-events: none;
}

.form__dropdown {
    margin-top: 30px;
    text-align: left;
}

.form__dropdown .form__btn-dropdown {
    border: 2px solid #2396AF;
    text-align: left;
    padding: 10px 12px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    background-color: #EEF6FF;
}

.form__dropdown .form__btn-dropdown svg {
    margin-right: 6px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.form__dropdown .form__btn-dropdown.expanded svg {
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}

.form__dropdown .form__body {
    border: 2px solid #2396AF;
    border-top: none;
    display: none;
    background-color: #EEF6FF;
}

.form__dropdown.loading {
    pointer-events: none;
}

.form__dropdown.loading .form__btn-dropdown,
.form__dropdown.loading .form__body {
    opacity: 0.2;
}

/* ------------------------------------------------------------ *\
	Form Enquire
\* ------------------------------------------------------------ */
.form--enquire {
    max-width: 570px;
    margin: 0 auto;
}

.form--enquire h6 {
    text-align: left;
}

.form--enquire .form__label {
    margin: 30px 0 0;
}

.form--enquire .form__controls {
    margin-top: 8px;
}

.form--enquire .form__group.recaptcha {
    margin-top: 16px;
}

.form--enquire .form__actions {
    padding: 30px 0 0;
}

/* Tablet Portrait */
@media (max-width: 1023px) and (min-width: 767px) and (max-width: 1023px) {
    .form--enquire .col--1of2:first-child {
        max-width: 33%;
    }

    .form--enquire .col--1of2:last-child {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        width: 100%;
        max-width: 100%;
        margin-left: 20px;
        padding-top: 5px;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {
    .form--enquire .col--1of2:first-child {
        max-width: 33%;
    }

    .form--enquire .col--1of2:last-child {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        width: 100%;
        max-width: 100%;
        margin-left: 20px;
        padding-top: 5px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .form .cols {
        display: block;
    }

    .form .col--1of2,
    .form .col--1of3,
    .form .col--2of3 {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .form--enquire .form__label {
        margin-top: 33px;
    }

    .form .form__actions {
        padding: 36px 0 0;
    }
}

/* ------------------------------------------------------------ *\
	Form Select
\* ------------------------------------------------------------ */
.form--select {
    width: 100%;
}

.form--select .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form--select .form__label {
    margin-bottom: 0;
    margin-right: 24px;
}

.form--select .label {
    text-align: center;
    text-align-last: center;
    padding: 0 10px;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    margin: 0;
}

.form--select .selectric {
    padding: 4px 0;
}

.form--select select:focus {
    background-color: #000;
    color: #fff;
}

.form--select select:focus~svg {
    fill: #fff;
}

@media (max-width: 480px) {
    .form--select .form__label {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .form--select select {
        padding: 10px 10px;
    }
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .form--select .label {
            padding-top: 2px;
        }
    }
}

.form--select div.select.alert {
    animation: flash linear 0.5s 2.5;
    border-color: #f44336;
}

div.select.select--black.alert {
    animation: flash-shadow linear 0.5s 2.5;
    box-shadow: inset 0 0 0 4px #f44336;
}

@keyframes flash {
    0% {
        border-color: black;
    }

    30% {
        border-color: #f44336;
    }

    70% {
        border-color: #f44336;
    }

    100% {
        border-color: black;
    }
}

@keyframes flash-shadow {
    0% {
        box-shadow: inset 0 0 0 4px black;
    }

    30% {
        box-shadow: inset 0 0 0 4px #f44336;
    }

    70% {
        box-shadow: inset 0 0 0 4px #f44336;
    }

    100% {
        box-shadow: inset 0 0 0 4px black;
    }
}

/* ------------------------------------------------------------ *\
	List
\* ------------------------------------------------------------ */
[class^=list-] {
    list-style: none outside none;
}

/* ------------------------------------------------------------ *\
	List Services
\* ------------------------------------------------------------ */
.list-services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-services a {
    text-decoration: none;
    display: block;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.list-services a:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.list-services li {
    width: 25%;
}

.list-services h6 {
    margin-bottom: 13px;
}

/* Mobile */
@media (max-width: 767px) {
    .list-services {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .list-services li {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .list-services li+li {
        margin-top: 8px;
    }

    .list-services a {
        padding: 11px 3px 10px;
        border: 1px solid #000;
        border-radius: 18px;
    }

    .list-services h6 br,
    .list-services p {
        display: none;
    }

    .list-services h6 {
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------ *\
	List Works
\* ------------------------------------------------------------ */
.list-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.list-works li {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.list-works div {
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.list-works h6 {
    margin-bottom: 15px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .list-works {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
/* ------------------------------------------------------------ *\
	List Rate
\* ------------------------------------------------------------ */
.list-rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-rate li {
    margin: 0 2px;
}

/* ------------------------------------------------------------ *\
	Multi-column Content Blocks
\* ------------------------------------------------------------ */
.list-column-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.list-column-content.two-column li {
    width: 48%;
}

.list-column-content.three-column li {
    width: 32%;
}

.list-column-content h6 {
    margin-bottom: 30px;
}

.list-column-content p {
    max-width: 338px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 767px) {
    .list-column-content {
        display: block;
    }

    .list-column-content li {
        width: 65%;
        margin: 0 auto;
    }

    .list-column-content li+li {
        margin-top: 33px;
    }

    .list-column-content.three-column li {
        width: 70%;
    }

    .list-column-content h6 {
        margin-bottom: 0px;
        height: 63px;
        padding-bottom: 10px;
    }
}

/* ------------------------------------------------------------ *\
	List Contacts
\* ------------------------------------------------------------ */
.list-contacts a {
    text-decoration: none;
}

.list-contacts li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
}

.list-contacts li+li {
    margin-top: 17px;
}

.list-contacts h6,
.list-contacts p {
    margin-bottom: 0;
}

.list-contacts h6 {
    min-width: 70px;
}

.list-contacts p {
    margin-left: 12px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .list-contacts li {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .list-contacts {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-right: 13px;
        width: 100%;
    }

    .list-contacts li {
        width: 43%;
        margin-bottom: 16px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .list-contacts li+li {
        margin-top: 0;
    }

    .list-contacts h6 {
        border-bottom: 1px solid #000;
        width: 100%;
        padding-bottom: 9px;
        margin-bottom: 5px;
    }

    .list-contacts p {
        margin-left: 0;
    }
}

/* ------------------------------------------------------------ *\
	List Logos
\* ------------------------------------------------------------ */
.list-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .list-logos {
        margin-left: auto;
    }

    .list-logos li+li {
        margin-top: 21px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .list-logos {
        padding: 22px 0;
    }

    .list-logos li+li {
        margin-left: 12px;
    }
}

/* ------------------------------------------------------------ *\
	List Specification
\* ------------------------------------------------------------ */
.list-specification {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-specification li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #000;
    border-radius: 50%;
}

.list-specification li+li {
    margin-left: 4px;
}

.list-specification li:nth-child(3) {
    margin-left: 31px;
}

.list--big li {
    width: 36px;
    height: 36px;
}

.list--big i {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.list--big li+li {
    margin-left: 6px;
}

.list--big li:nth-child(3) {
    margin-left: 50px;
}

@media (max-width: 767px) {
    .list--big li:nth-child(3) {
        margin-left: auto;
    }
}

/* ------------------------------------------------------------ *\
	List Filters
\* ------------------------------------------------------------ */
.list-filters {
    width: 100%;
    text-align: center;
}

.list-filters li {
    display: inline-block;
    margin: 0 9px;
}

/* Mobile */
@media (max-width: 767px) {
    .list-filters li {
        width: 100%;
    }

    .list-filters li+li {
        margin-top: 15px;
    }
}

/* ------------------------------------------------------------ *\
	List Details
\* ------------------------------------------------------------ */
.list-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.list-details h6 {
    margin: 4px 0;
}

/* Mobile */
@media (max-width: 767px) {
    .list-details {
        text-align: left;
        padding-left: 0 !important;
    }

    .list-details h6 {
        margin-top: 20px;
    }
}

/* ------------------------------------------------------------ *\
	List Expect
\* ------------------------------------------------------------ */
.list-underline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-underline h6 {
    margin-bottom: 8px;
}

.list-underline li {
    border-top: 1px solid #000;
    margin-top: 16px;
    padding-top: 16px;
    width: 100%;
}

@media (min-width: 767px) {
    .list-underline li {
        width: 30%;
    }

    .list-underline li:nth-child(1),
    .list-underline li:nth-child(2),
    .list-underline li:nth-child(3) {
        border: none;
        padding-top: 0;
        margin-top: 0;
    }
}

@media (max-width: 766px) {
    .list-underline li:nth-child(1) {
        border: none;
        padding-top: 0;
        margin-top: 0;
    }
}

.list-underline--2 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.list-underline--2 li:not(.class) {
    margin-top: 19px;
    padding-top: 26px;
    border-top: 1px solid #000;
}

@media (min-width: 767px) {
    .list-underline--2 li:not(.class) {
        width: 49%;
    }
}

@media (min-width: 767px) {

    .list-underline--2 li:nth-child(1),
    .list-underline--2 li:nth-child(2) {
        border: none;
        padding-top: 0;
        margin-top: 0;
    }
}

@media (max-width: 766px) {
    .list-underline--2 li:nth-child(1) {
        border: none;
        padding-top: 0;
        margin-top: 0;
    }
}

/* ------------------------------------------------------------ *\
	List Activities
\* ------------------------------------------------------------ */
.list-activities {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 1030px;
    margin: 0 auto;
}

.list-activities h6 {
    margin-bottom: 24px;
}

/* Mobile */
@media (max-width: 767px) {
    .list-activities {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-activities li {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .list-activities li+li {
        margin-top: 10px;
    }

    .list-activities li h6 {
        width: 70%;
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */
.logo {
    font-size: 0;
}

.logo img {
    height: 81px;
}

/* Mobile */
@media (max-width: 767px) {
    .logo img {
        height: 51px;
    }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
    padding-left: 18px;
}

.nav>ul>li {
    display: inline-block;
    margin: 0 0px;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.nav>ul>li>a {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    display: inline-block;
}

.nav>ul>li svg path {
    fill: currentColor;
}

@media (min-width: 1023px) {
    .nav .link {
        height: 100%;
        padding: 36px 0;
    }

    .nav>ul>li>a {
        padding: 30px 15px;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .nav {
        padding: 0;
    }

    .nav ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/* Mobile */
@media (max-width: 1023px) {
    .nav {
        display: none;
    }

    .nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .nav>ul>li {
        text-align: center;
        padding: 0;
    }

    .nav>ul>li+li {
        margin-top: 27px;
    }
}

/* ------------------------------------------------------------ *\
	Nav Footer
\* ------------------------------------------------------------ */
.nav-footer .nav__head {
    min-height: 35px;
}

.nav-footer .nav__body {
    list-style-type: none;
}

.nav-footer a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
}

.nav-footer a:hover {
    border-color: currentColor;
}

.nav-footer li+li {
    margin-top: 10px;
}

.nav-footer--big {
    width: 44%;
}

.nav-footer--big .nav__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav-footer--big .nav__body ul {
    list-style-type: none;
}

/* Mobile */
@media (max-width: 767px) {
    .nav-footer {
        width: 45%;
    }

    .nav-footer li+li {
        margin-top: 7px;
    }

    .nav-footer h6 {
        padding-bottom: 12px;
        margin-bottom: 2px;
    }

    .nav-footer--big {
        margin-top: 27px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .nav-footer--big .nav__head {
        width: 100%;
        margin-bottom: 7px;
    }

    .nav-footer--big .nav__body {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

    .nav-footer--big .nav__body a {
        margin-left: 0;
    }

    .nav-footer--big .nav__body ul {
        width: 44%;
    }
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */
.green-bg {
    background-color: #f4fffc;
}

.section+.section {
    border-top: 1px solid #000;
}

.section .section__inner {
    text-align: center;
    padding: 105px 0 120px;
}

.section .section__head {
    margin-bottom: 47px;
}

.section .section__head.section__head--pushed {
    width: 80%;
    margin: auto;
    margin-bottom: 47px;
}

.section .section__body {
    margin-bottom: 55px;
    min-height: 1px;
}

.section .slider {
    margin-bottom: 63px;
}

/*Section Black*/
.section--black {
    background-color: #000;
    color: #fff;
}

.section--black .section__body {
    margin-bottom: 70px;
}

.section--black .section__inner {
    padding: 75px 0 77px;
}

/*Section Slider*/
.section--slider .section__body h6 {
    margin-bottom: 0;
}

.section--slider+.section--slider {
    border-top: 1px solid #000;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .section .section__inner {
        padding: 70px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section .section__inner {
        padding: 51px 0 73px;
    }

    .section .section__head {
        margin-bottom: 30px;
    }

    .section .section__gutter {
        padding-bottom: 25px;
    }

    .section .section__body {
        margin-bottom: 42px;
    }

    .section--black .section__head {
        margin-bottom: 41px;
    }

    .section--black .section__inner {
        padding: 43px 0;
    }

    .section--black .section__body {
        margin-bottom: 50px;
    }

    .section .slider {
        margin-bottom: 26px;
    }

    .section--slider+.section--slider .section__inner {
        padding-top: 56px;
        padding-bottom: 47px;
    }
}

/* ------------------------------------------------------------ *\
	Section Articles
\* ------------------------------------------------------------ */
.section-articles {
    border-top: 1px solid #000;
}

.section-articles .section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section-articles .article {
    max-width: 487px;
}

@media (min-width: 767px) {
    .section-articles .section__col {
        padding: 100px 37px;
        width: 50%;
    }

    .section-articles .section__col:nth-child(2n+0) {
        border-left: 1px solid #000;
    }

    .section-articles .section__col:nth-child(2n+0) .article {
        margin-left: auto;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .section-articles .section__col {
        padding: 30px 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-articles .article {
        max-width: 100%;
    }

    .section-articles .shell {
        padding: 0;
    }

    .section-articles .section__col+.section__col {
        margin-top: 46px;
        border-top: 1px solid #000000;
    }
}

/* ------------------------------------------------------------ *\
	Multi-column Content Blocks
\* ------------------------------------------------------------ */
.section--column-content .section__inner {
    padding: 135px 0 85px;
}

.section--column-content .section__head {
    margin-bottom: 79px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .section--column-content .section__inner {
        padding: 50px 0;
    }

    .section--column-content .section__body {
        margin-bottom: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section--column-content .section__inner {
        padding: 59px 0;
    }

    .section--column-content .section__head {
        margin-bottom: 38px;
    }
}

/* ------------------------------------------------------------ *\
	Section Enquire
\* ------------------------------------------------------------ */
.section--enquire .section__inner {
    padding: 135px 0 12px;
}

.section--enquire .section__head {
    margin-bottom: 61px;
}

.section--enquire .section__head h3 {
    margin-bottom: 10px;
}

.section--enquire .section__head p {
    max-width: 484px;
    margin: 0 auto;
}

.section--custom-padding {
    padding-bottom: 26px;
}

.section--custom-padding .section__body {
    margin-bottom: 0;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .section--enquire .section__inner {
        padding: 60px 0 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section--enquire .section__inner {
        padding: 56px 0 37px;
    }

    .section--enquire .section__head {
        margin-bottom: 83px;
    }

    .section--enquire .section__head h3 {
        margin-bottom: 15px;
    }

    .section--enquire .section__head span {
        margin-bottom: 20px;
        display: inline-block;
    }

    .section--enquire .section__head p {
        max-width: 78%;
    }

    .section--enquire .section__body {
        padding: 0 10px;
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------ *\
	Section Slider Testimonials
\* ------------------------------------------------------------ */
.section--slider-testimonials {
    border-top: 1px solid #000;
}

.section--slider-testimonials .section__inner {
    padding: 120px 0 32px;
    border-top: 1px solid #000;
}

.section--slider-testimonials .section__head {
    margin-bottom: 58px;
}

/* Mobile */
@media (max-width: 767px) {
    .section--slider-testimonials {
        margin-top: 40px;
    }

    .section--slider-testimonials .section__inner {
        padding: 55px 0 33px;
    }

    .section--slider-testimonials .section__head {
        margin-bottom: 52px;
    }
}

/* ------------------------------------------------------------ *\
	Section Packages
\* ------------------------------------------------------------ */
.section-packages {
    border-top: 1px solid #000;
    margin-top: 62px;
}

.section-packages .shell {
    padding: 0;
}

.section-packages .section__head {
    text-align: center;
    padding: 81px 10px 0;
    margin-bottom: 78px;
}

.section-packages--vertical {
    margin-top: 49px;
    border-bottom: 1px solid #000;
}

.section-details+.section-packages {
    margin-top: 0px;
}

.section-packages .section__view-all {
    text-align: center;
    margin-top: 13px;
    border: 1px solid #000;
    border-width: 1px 0 1px 0;
    padding: 69px 0 67px;
}

/* Mobile */
@media (max-width: 767px) {
    .section-packages .section__head {
        padding: 30px 10px 0;
        margin-bottom: 30px;
    }

    .section-packages .section__view-all {
        padding: 30px 0;
    }
}

/* ------------------------------------------------------------ *\
	Section Activities
\* ------------------------------------------------------------ */
.section--activities .section__inner {
    padding: 93px 0 90px;
}

.section--activities .section__head {
    margin-bottom: 32px;
}

.section--activities .section__head h4 {
    margin-bottom: 4px;
}

.section--activities .section__body {
    margin-bottom: 0;
}

.section--activities .btn-activities {
    margin-bottom: 27px;
}

/* ------------------------------------------------------------ *\
	Section Offer
\* ------------------------------------------------------------ */
.section-details {
    padding: 28px 0 0;
}

/* ------------------------------------------------------------ *\
	Section Posts
\* ------------------------------------------------------------ */
.section-posts {
    border-top: 1px solid #000;
    padding: 75px 0;
    position: relative;
}

.section-posts .section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-posts .section__aside {
    width: 28.4%;
    padding: 48px 0 0 40px;
}

.section-posts .section__aside h3 {
    margin-bottom: 22px;
}

.section-posts .section__aside p {
    margin-left: 7px;
}

.section-posts .section__aside i {
    margin-left: 41px;
    vertical-align: top;
}

.section-posts .section__content {
    width: 70%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.post-overview+.section-posts {
    margin-top: 0px;
    border-top: none;
    padding-top: 40px;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .section-posts .section__aside {
        padding: 0;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .section-posts .section__inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .section-posts .section__aside {
        padding: 0;
    }

    .section-posts .section__content {
        position: relative;
        width: 60%;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .section-posts .section__content .posts-scroll {
        left: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-posts {
        padding: 30px 0;
    }

    .section-posts .section__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .section-posts .section__aside {
        width: 100%;
        text-align: center;
    }

    .section-posts .section__content {
        width: 100%;
        margin-top: 20px;
        position: static;
    }
}

/* ------------------------------------------------------------ *\
	Section Articles Big
\* ------------------------------------------------------------ */
.section-articles-big {
    border-top: 1px solid #000;
    margin-top: 38px;
    padding: 105px 0;
    text-align: center;
}

.section-articles-big+.section-articles-big {
    margin-top: 10px;
}

.section-articles-big .article--big {
    max-width: 588px;
    margin: 0 auto;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .section-articles-big {
        padding: 70px 0;
        margin-top: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-articles-big {
        padding: 30px 0;
    }
}

/* ------------------------------------------------------------ *\
	Image With Text Block
\* ------------------------------------------------------------ */
.image-with-text {
    display: flex;
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    margin-bottom: 20px;
}

.image-with-text .section__media {
    background-size: cover;
    background-position: center;
    width: 50%;
}

.image-with-text .section__media img {
    width: 100%;
}

.image-with-text .section__head {
    max-width: 50%;
}

.image-with-text .image-text-slider {
    margin: 0 -40px;
    margin-bottom: 40px;
}

.image-with-text .section__content {
    padding: 90px 120px;
    width: 50%;
}

.image-with-text .text-slide {
    padding: 40px;
}

.image-with-text .text-slide .text-slide__img--container {
    height: 75px;
}

.image-with-text .text-slide .text-slide__img {
    margin-left: auto;
    max-height: 75px;
    width: auto;
}

.image-with-text .text-slide .h3 {
    margin-top: auto;
    width: 50%;
    text-align: left;
    margin-bottom: 15px;
}

.image-with-text .text-slide .p1 {
    text-align: left;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .image-with-text .section__head {
        max-width: unset;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .image-with-text {
        flex-direction: column;
    }

    .image-with-text .section__media {
        height: 70vw;
        width: 100%;
    }

    .image-with-text .section__content {
        width: 100%;
    }

    .image-with-text .section__head {
        text-align: center;
        max-width: 50%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .image-with-text .section__content {
        padding: 120px 55px;
    }

    .image-with-text .section__head {
        max-width: unset;
    }

    .image-with-text .btn {
        display: block;
        max-width: fit-content;
        margin: auto;
    }
}

/* ------------------------------------------------------------ *\
	Section Posts News
\* ------------------------------------------------------------ */
.section-posts-news {
    margin-top: 18px;
    padding-bottom: 100px;
    border-bottom: 1px solid #E8E9ED;
}

.section-posts-news .section__filters {
    border-top: 1px solid #E9E9E9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 41px 0 37px;
    margin-top: 10px;
}

.section-posts-news .section__head {
    text-align: center;
    margin-bottom: 21px;
}

.section-posts-news .section__posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section-posts-news .section__posts .post {
    width: 30.5%;
    margin-bottom: 56px;
}

.section-posts-news .section__actions {
    text-align: center;
    margin-top: 42px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .section-posts-news {
        padding-bottom: 50px;
    }

    .section-posts-news .section__posts {
        padding: 0;
    }

    .section-posts-news .section__posts .post {
        width: 32%;
        margin-bottom: 20px;
    }

    .section-posts-news .section__actions {
        margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-posts-news .section__posts .post {
        width: 100%;
    }
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
.slider {
    padding: 43px 0px 0;
    margin: 0 auto;
}

.slider .slick-slide a {
    text-decoration: none;
    display: block;
}

.slider .slick-arrow {
    position: absolute;
    top: 31%;
    left: -95px;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border: none;
    font-size: 0;
    overflow: visible;
}

.slider .slick-arrow:after {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    content: "";
    border-color: transparent transparent #000 #000;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.slider .slick-arrow:hover:after {
    opacity: 0.5;
}

.slider .slick-next {
    left: auto;
    right: -76px;
}

.slider .slick-next:after {
    border-color: #000 #000 transparent transparent;
}

.slider .slider__slide {
    text-align: center;
}

.slider .slider__slide-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
}

.slider .slider__slide-image img {
    width: 100%;
    height: auto;
}

.slider.slider--testimonial {
    padding: 43px 0px;
}

.slider.slider--testimonial .slick-arrow {
    width: 19px;
    height: 18px;
    background-image: url(../images/Arrow-gray@2x.png);
    background-size: 100% 100%;
    left: -60px;
    top: 46%;
}

.slider.slider--testimonial .slick-arrow:after {
    display: none;
}

@media (max-width: 767px) {
    .slider.slider--testimonial .slick-arrow {
        bottom: -20px;
        top: auto !important;
    }
}

.slider.slider--testimonial .slick-next {
    left: auto;
    right: -60px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.slider .slick-arrow.slick-disabled {
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .slider {
        padding: 43px 20px 0;
        margin: 0 auto;
    }

    .slider .slick-next:after {
        position: static;
        display: block;
    }

    .slider .slick-arrow {
        left: -25px;
    }

    .slider .slick-arrow:after {
        display: none;
    }

    .slider .slick-next {
        left: auto;
        right: -18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .slider {
        padding: 0;
    }

    .slider .slider__slide-image {
        width: 236px;
        height: 236px;
    }

    .slider .slick-arrow {
        background-image: url(../images/Arrow-gray@2x.png);
        top: auto;
        bottom: 5px;
        z-index: 10;
        border-radius: 50%;
        border: 3px solid rgba(0, 0, 0, 0.7);
        width: 40px;
        height: 40px;
        background-size: 50% 50%;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .slider .slick-arrow:after {
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .slider .slick-prev {
        left: 15px;
    }

    .slider .slick-next {
        right: 15px;
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    .slider .slider__slide-image {
        margin-bottom: 26px;
    }

    .slider .slick-arrow.slick-disabled {
        opacity: 0;
    }

    .slider .slick-dots {
        margin-top: -1px;
        opacity: 0.6;
    }

    .slider.slider--testimonial {
        padding: 0 60px;
    }

    .slider.slider--testimonial .slick-arrow {
        top: 25%;
        border-radius: 50%;
        border: 3px solid rgba(0, 0, 0, 0.7);
        width: 40px;
        height: 40px;
        background-size: 50% 50%;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .slider.slider--testimonial .slick-prev {
        left: -45px;
    }

    .slider.slider--testimonial .slick-next {
        right: -45px;
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
        transform: scaleX(-1);
    }
}

/* ------------------------------------------------------------ *\
	Widgets
\* ------------------------------------------------------------ */
.widgets {
    list-style: none outside none;
}

/* ------------------------------------------------------------ *\
	Widget
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
    Accomodation
\* ------------------------------------------------------------ */
.accomodation {
    display: none;
}

.accomodation .accomodation__head {
    text-align: left;
    padding-top: 30px;
}

.accomodation-radios {
    display: flex;
    justify-content: space-between;
}

.accomodation-radios .accomodation__radio {
    width: 32%;
    text-align: left;
    margin-top: 12px;
}

.accomodation-radios .accomodation__img {
    position: relative;
}

.accomodation-radios .accomodation__img input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 10;
    opacity: 1;
    background-color: transparent;
    box-shadow: none;
    opacity: 0;
    cursor: pointer;
}

.accomodation-radios .accomodation__img input:checked~.accomodation-ico {
    opacity: 1;
}

.accomodation-radios .accomodation__img img {
    width: 100%;
}

.accomodation-radios .accomodation-ico {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
}

.accomodation-radios .accomodation-ico::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accomodation-radios .accomodation-ico::after {
    content: "";
    display: block;
    width: 50px;
    height: 25px;
    border: 2px solid #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -75%) rotate(135deg);
    border-width: 6px 6px 0 0;
}

.accomodation-radios label {
    padding-top: 9px;
    display: inline-block;
}

@media (max-width: 767px) {
    .accomodation-radios {
        flex-direction: column;
    }

    .accomodation-radios .accomodation__radio {
        width: 100%;
        text-align: center;
    }

    .accomodation-radios .accomodation__img {
        margin: 0 auto;
    }
}

/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */
.article h6 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.article--small {
    max-width: 600px;
    display: inline-block;
}

.article .article__title {
    text-align: center;
    margin-bottom: 55px;
}

.article .article__media {
    margin-bottom: 60px;
}

.article .article__media img {
    width: 100%;
}

.article .article__content h6 {
    margin-bottom: 15px;
    display: block;
}

.article .article__content p {
    margin-bottom: 0;
}

.article .article__content p+p {
    margin-top: 10px;
}

.article .article__content .btn-arrow-right {
    margin-top: 20px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {

    .article .article__title,
    .article .article__media {
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .article .h7 {
        margin-bottom: 10px;
    }

    .article .article__media img {
        width: 100%;
        max-width: 100%;
    }

    .article .article__content .h7 {
        margin-bottom: 10px;
    }

    .article .article__content .btn-arrow-right {
        margin-top: 27px;
        margin-left: 0px;
    }
}

/* ------------------------------------------------------------ *\
  Videos
\* ------------------------------------------------------------ */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* ------------------------------------------------------------ *\
	Articles
\* ------------------------------------------------------------ */
.articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.articles .article {
    text-align: left;
    max-width: 487px;
}

.articles .article p+span {
    margin-top: 70px;
}

.articles .article+.article {
    margin-left: 21px;
}

/* Mobile */
@media (max-width: 767px) {
    .articles {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .articles .article {
        width: 100%;
        height: unset !important;
    }

    .articles .article .article__media {
        margin-bottom: 20px;
    }

    .articles .article p+span {
        margin-top: 20px;
    }

    .articles .article+.article {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* ------------------------------------------------------------ *\
	Article Big
\* ------------------------------------------------------------ */
.article--big {
    text-align: left;
}

.article--big .article__head {
    margin-bottom: 55px;
    text-align: center;
}

.article--big .article__body p {
    margin-bottom: 0;
}

.article--big .article__body p+p {
    margin-top: 10px;
}

.article--big .article__media {
    margin-bottom: 60px;
}

/* Mobile */
@media (max-width: 767px) {
    .article--big .article__head {
        margin-bottom: 30px;
    }

    .article--big .article__media {
        margin-bottom: 30px;
    }
}

/* ------------------------------------------------------------ *\
  Checkboxes
\* ------------------------------------------------------------ */
.checkboxes+.checkboxes .checkboxes__head {
    padding-top: 9px;
}

.checkboxes+.checkboxes:last-child {
    padding-bottom: 17px;
}

.checkboxes .checkboxes__head {
    padding: 17px 30px 16px;
    border-bottom: 1px solid #fff;
}

.checkboxes .checkboxes__head h6 {
    margin-bottom: 0;
}

.checkboxes .checkboxes__body {
    padding: 19px 4px 0 28px;
    display: grid;
}

.checkboxes .checkboxes__title {
    padding: 16px 30px 0;
}

.checkboxes .checkboxes__title+.checkboxes__body {
    padding-top: 10px;
}

.checkboxes .checkboxes__title .h7 {
    margin-bottom: 0;
}

.checkbox {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 17px 0;
}

.checkbox input {
    width: 18px;
    height: 18px;
    opacity: 0;
    cursor: pointer;
}

.checkbox label {
    padding-left: 15px;
}

.checkbox label a {
    text-decoration: none;
}

.checkbox label strong {
    margin-bottom: 2px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: block;
}

.checkbox label span {
    display: block;
}

.checkbox label:before {
    content: "×";
    width: 18px;
    height: 18px;
    position: absolute;
    pointer-events: none;
    left: 0;
    border-radius: 50%;
    z-index: 1;
    text-align: center;
    color: #FFF;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .checkboxes .checkboxes__head {
        padding: 10px 30px;
    }

    .checkboxes .checkboxes__title {
        padding: 16px 15px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .checkboxes .checkboxes__head h6 {
        text-align: center;
    }

    .checkboxes .checkboxes__title .h7,
    .checkboxes .checkboxes__head strong {
        text-align: center;
    }
}

/* ------------------------------------------------------------ *\
	Copyright
\* ------------------------------------------------------------ */
.copyright a {
    text-decoration: none;
}

/* Mobile */
@media (max-width: 767px) {
    .copyright {
        text-align: center;
        display: inline-block;
    }
}

/* ------------------------------------------------------------ *\
	DatePicker
\* ------------------------------------------------------------ */
.daterangepicker {
    border: 2px solid #000;
    width: 100%;
    max-width: 422px;
    -webkit-transform: translateX(-144px);
    -ms-transform: translateX(-144px);
    transform: translateX(-144px);
    margin-top: 0;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.daterangepicker.show-calendar .drp-buttons,
.daterangepicker:before,
.daterangepicker.opensright:after {
    display: none;
}

.daterangepicker .drp-calendar.left {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.daterangepicker .calendar-table th {
    padding: 25px 10px 26px;
}

.daterangepicker .calendar-table th:hover {
    background-color: transparent;
}

.daterangepicker.ltr .drp-calendar.left .calendar-table {
    padding-right: 0;
}

.daterangepicker .calendar-table thead tr+tr th {
    padding: 0;
    border-bottom: 1px solid #000;
    padding: 7px 0;
}

.daterangepicker .calendar-table thead tr:first-child th {
    border-bottom: 1px solid #000;
}

.daterangepicker .calendar-table td {
    padding: 18px 10px;
}

.daterangepicker td.start-date {
    border-radius: 8px 0 0 8px;
}

.daterangepicker td.start-date:hover {
    border-radius: 8px 0 0 8px;
}

.daterangepicker td.end-date {
    border-radius: 0 8px 8px 0;
}

.daterangepicker td.end-date:hover {
    border-radius: 0 8px 8px 0;
}

.daterangepicker td.end-date.start-date {
    border-radius: 8px;
}

.daterangepicker td.end-date.start-date:hover {
    border-radius: 8px;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    padding: 5px;
    border-width: 0 1px 1px 0;
}

.daterangepicker .drp-calendar.right {
    position: absolute;
    top: 0;
    right: 13px;
    padding: 0;
}

.daterangepicker .drp-calendar.right thead tr+tr {
    display: none;
}

.daterangepicker .drp-calendar.right thead tr:first-child th:nth-child(1),
.daterangepicker .drp-calendar.right thead tr:first-child th:nth-child(2) {
    display: none;
}

.daterangepicker .drp-calendar.right tbody {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {
    .daterangepicker {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .daterangepicker.show-calendar .ranges {
        margin-top: 0;
    }

    .daterangepicker .calendar-table td {
        padding: 6px;
    }
}

/* ------------------------------------------------------------ *\
	Details
\* ------------------------------------------------------------ */
@media (max-width: 1024px) {
    div.details div.details__aside.details__aside.details__aside figure {
        width: 80vw;
        margin-right: 25px;
    }
}

.details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.details .details__aside {
    width: 32%;
    padding-top: 10px;
    margin-bottom: 25px;
}

.details .details__aside .slick-list {
    overflow: visible;
}

.details .details__aside figure {
    border-radius: 20px;
}

.details .details__aside figure img {
    width: 100%;
}

.details .details__aside figure.video {
    position: relative;
}

.details .details__aside figure.video::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    background: url(../images/video-thumbnail.svg), rgba(0, 0, 0, 0.5);
    background-size: cover;
    pointer-events: none;
    border-radius: 20px;
}

.details .details__aside figure.video.active::after {
    display: none;
}

.details .details__aside figure.video.active img {
    visibility: hidden;
}

.details .details__aside figure.video.active iframe {
    display: block;
}

.details .details__aside figure.video iframe {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    object-fit: cover;
}

.details .details__aside figure.video img {
    position: relative;
    z-index: 5;
    cursor: pointer;
}

.details .details__content {
    width: 57.5%;
}

.details .details__title {
    margin-bottom: 40px;
}

.details .details__title.details__title--mobile {
    margin-bottom: 25px;
    margin-top: -8px;
    display: none;
}

@media (max-width: 767px) {
    .details .details__title.details__title--mobile {
        display: block;
    }
}

.details .details__title.details__title--mobile h3 {
    text-align: left;
}

@media (max-width: 767px) {
    .details .details__title {
        display: none;
    }
}

.details .details__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.details .filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 35%;
}

.details .filter .select .label {
    margin: 0;
    padding: 0px 16px;
}

.details .filter .select svg {
    right: 10px;
}

.details .list-specification {
    margin-left: 96px;
    padding-top: 2px;
    margin-bottom: 0;
}

.details .list-details {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-top: 30px;
    width: 85%;
    padding: 16px 27px 11px 0;
}

.details .details__info {
    padding-top: 53px;
}

.details .details__info p {
    margin-bottom: 10px;
}

.details .details__actions {
    margin-top: 40px;
}

@media (max-width: 640px) {

    .details .details__actions .btn--add-to-quote,
    .details .details__actions .btn--instant-book {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .details .details__actions .btn--instant-book {
        margin-top: 20px;
    }
}

.details .details__actions .btn--add-to-quote.disabled {
    pointer-events: initial;
}

.details.details--article {
    padding: 60px 0 47px;
}

.details.details--article .details__aside {
    padding: 10px 0;
}

.details.details--article .details__content {
    padding: 16px 0;
}

.details.details--article .list-underline {
    width: 84%;
}

.details.details--article .list-underline--2 {
    width: 100%;
}

.details-holder {
    margin-top: 29px;
    border-top: 1px solid #000;
}

.details-holder+.details-holder {
    margin-top: 0px;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .details .details__aside {
        width: 34%;
    }

    .details .details__content {
        width: 64%;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .details .details__aside,
    .details .details__content {
        width: 100%;
    }

    .details .details__aside figure {
        width: 100%;
    }

    .details .details__content {
        text-align: center;
    }

    .details .details__details {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .details.details--article {
        padding: 40px 0;
    }

    .details.details--article .details__aside {
        display: block;
        text-align: center;
        padding: 0;
        margin-bottom: 20px;
    }

    .details.details--article .details__content ul {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .details .details__aside {
        margin-bottom: 25px;
    }

    .details .details__details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .details .filter {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .details .filter label {
        width: auto;
    }

    .details .list-specification {
        width: 100%;
        margin: 20px 0 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .details .list-details {
        width: 100%;
        padding: 10px 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .details .details__info {
        padding-top: 30px;
        text-align: left;
    }

    .details.details--article {
        padding: 30px 0;
    }
}

/* ------------------------------------------------------------ *\
	DropDonw
\* ------------------------------------------------------------ */
.hasdropdown .dropdown {
    z-index: 999;
}

.hasdropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.hasdropdown .hasdropdown__ico {
    display: inline-block;
    margin-right: 12px;
}

@media (min-width: 1023px) {
    .dropdown {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        top: 100%;
        left: 98px;
        right: 98px;
        background-color: #fff;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 43px 20px 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s;
        -webkit-box-shadow: 7px 7px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 7px 7px 6px rgba(0, 0, 0, 0.1);
    }
}

.dropdown .dropdown__item {
    width: 18%;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.dropdown .dropdown__item a {
    display: block;
    text-decoration: none;
}

.dropdown .dropdown__item figure {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
}

.dropdown .dropdown__item h6 {
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 1023px) {
    .hasdropdown {
        position: relative;
    }

    .hasdropdown>a {
        padding: 0 40px;
    }

    .hasdropdown .hasdropdown__ico {
        position: absolute;
        top: 3px;
        margin-left: -21px;
        pointer-events: none;
    }

    .hasdropdown .hasdropdown__ico svg {
        width: 14px;
        height: 9px;
    }

    .dropdown {
        left: 20px;
        right: 20px;
        text-align: center;
        margin: 14px 0;
        border-top: 1px solid #000;
        padding: 16px 0 31px;
        border-bottom: 1px solid #000;
        margin-bottom: 0px;
    }

    .dropdown figure {
        display: none;
    }

    .dropdown .dropdown__item {
        width: 100%;
        margin-bottom: 0;
    }

    .dropdown .dropdown__item+.dropdown__item {
        margin-top: 12px;
    }

    .dropdown .dropdown__item h6 {
        text-transform: capitalize;
        color: inherit;
    }

    .dropdown a {
        width: 100%;
    }
}

/* ------------------------------------------------------------ *\
	Featured
\* ------------------------------------------------------------ */
.featured {
    margin-top: 19px;
}

.featured .featured__slide {
    padding: 61px 149px 52px;
    background-size: cover !important;
    background-position: center;
}

.featured .featured__slide h2 {
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2392156863);
}

.featured .featured__date {
    padding-left: 2px;
}

.featured .slick-arrow {
    background-color: transparent;
    border: none;
    font-size: 0;
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 42.4%;
    left: 49px;
    z-index: 2;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.featured .slick-arrow:hover {
    opacity: 0.7;
}

.featured .slick-arrow:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    width: 23px;
    height: 19px;
    background-image: url(../images/arrow-right-white.png);
}

.featured .slick-prev:after {
    -webkit-transform: translate(-50%, -50%) scaleX(-1);
    -ms-transform: translate(-50%, -50%) scaleX(-1);
    transform: translate(-50%, -50%) scaleX(-1);
}

.featured .slick-next {
    left: auto;
    right: 49px;
}

.featured .slick-dots {
    position: absolute;
    top: auto;
    bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    left: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    list-style-type: none;
}

.featured .slick-dots li {
    width: 6px;
    height: 6px;
    background-color: #fff;
    opacity: 0.5;
    border-radius: 50%;
    margin: 0 9px;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    -o-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.featured .slick-dots li * {
    display: none;
}

.featured .slick-dots li.slick-active {
    width: 10px;
    height: 10px;
    opacity: 1;
}

.featured .btn--outline {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2392156863), inset 0 0 30px rgba(255, 255, 255, 0.2392156863);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.2392156863);
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .featured .featured__slide {
        padding: 30px 120px;
    }

    .featured .slick-arrow {
        left: 30px;
    }

    .featured .slick-next {
        right: 30px;
        left: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .featured .featured__slide {
        padding: 30px 20px 50px;
    }

    .featured .slick-dots {
        bottom: 20px;
    }

    .featured .featured__slide .btn {
        padding: 5px 5px;
    }
}

/* ------------------------------------------------------------ *\
	Filtera
\* ------------------------------------------------------------ */
.filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter label {
    text-transform: uppercase;
    margin-right: 15px;
    white-space: nowrap;
}

.filter .select {
    width: 100%;
    border: none;
}

.filter .selectric {
    padding: 2px 0;
}

.filter .select .label {
    color: #fff;
    text-align-last: left;
    text-align: left;
}

.filter option {
    background-color: #000;
}

.filter .select svg {
    right: 7px;
    pointer-events: none;
}

.filter .size2 {
    width: 170px;
}

.filter .size3,
.filter .size4 {
    width: 184px;
}

.filter.filter--posts .select .label {
    padding: 0 8px;
}

.filter.filter--slider {
    display: inline-block;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .filter .size2 {
        width: 150px;
    }

    .filter .size3 {
        width: 115px;
    }

    .filter .size4 {
        width: 193px;
    }

    .filter .select svg {
        top: 49%;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .filter .size2,
    .filter .size3,
    .filter .size4 {
        width: 100%;
    }

    .filter.filter--posts {
        width: 100%;
    }

    .filter label {
        width: 40%;
        text-align: left;
    }
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .filter .select .label {
            padding-top: 2px;
        }
    }
}

/* ------------------------------------------------------------ *\
	Friends
\* ------------------------------------------------------------ */
.friends {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 3px;
}

.friends h6,
.friends p {
    margin-bottom: 0;
}

.friends div {
    margin-left: 22px;
    margin-top: 0px;
}

.friends a {
    text-decoration: none;
    display: block;
}

.friends a+a {
    margin-top: 13px;
}

.home__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero__image_holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .hero__image_holder {
        margin-top: -70px;
    }
}

@media (max-width: 1023px) {
    .hero__image_holder {
        margin-top: -50px;
    }
}

.home__intro_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    margin: auto;
    gap: 20px;
    min-height: 600px;
}

.home__intro_hero {
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    height: 80%;
    margin: auto;
}

.home__intro_hero .intro__hero_image {
    height: 572px;
    width: 100%;
    object-fit: cover;
}

.hero_float_item {
    position: relative;
    border-radius: 255px;
    transform: rotate(-45deg);
}

.hero_float_items {
    position: absolute;
}

.hero__float_item_1 {
    height: 251px;
    width: 142px;
    background: #8888FC;
    left: -168.23px;
    top: 319.28px;
}

.hero__float_item_2 {
    height: 152px;
    width: 87px;
    background: rgba(144, 222, 238, 0.9);
    left: -48.23px;
    top: 130.72px;
}

.hero__float_item_3 {
    height: 152px;
    width: 87px;
    background: #16324F;
    right: 206px;
    z-index: -1;
    top: 200.72px;
}

.hero__float_item_4 {
    height: 194px;
    width: 79px;
    background: #8888FC;
    right: 80px;
    z-index: -1;
    top: 240.72px;
}

.hero__float_item_5 {
    height: 88px;
    width: 72px;
    background: #e653a2;
    right: -49px;
    top: -269.28px;
}

.hero__float_item_6 {
    height: 255px;
    width: 138px;
    background: rgba(32, 220, 178, 0.7411764706);
    right: -239px;
    top: -159.28px;
}

/* ------------------------------------------------------------ *\
  Intro
\* ------------------------------------------------------------ */
.intro {
    position: relative;
    padding-bottom: 61px;
    margin-bottom: -1px;
}

.intro .shell {
    max-width: 1013px;
}

.intro .intro__inner {
    padding: 67px 0;
}

.intro .intro__content {
    max-width: 580px;
    margin-bottom: 43px;
}

.intro .intro__content h2 {
    margin-bottom: 30px;
}

.intro .list-services {
    margin-bottom: 70px;
}

.intro .intro__actions {
    text-align: center;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .home__intro_hero {
        height: 95%;
        margin: auto;
    }

    .home__intro_hero .intro__hero_image {
        height: 600px;
    }

    .home__intro {
        grid-template-columns: 1fr;
    }

    .home__intro_content {
        min-height: 440px;
    }

    .hero__float_item_1 {
        display: none;
    }

    .hero__float_item_2 {
        left: -48.23px;
        top: 290.72px;
    }

    .hero__float_item_3 {
        display: none;
    }

    .hero__float_item_4 {
        right: 150px;
        top: 220.72px;
    }

    .hero__float_item_5 {
        right: -149px;
        top: -329.28px;
    }

    .hero__float_item_6 {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero__float_item_4 {
        right: 120px;
        top: 160.72px;
    }
}

/* ------------------------------------------------------------ *\
  Intro Innerpages
\* ------------------------------------------------------------ */
.intro-innerpages {
    padding: 68px 0;
}

.intro-innerpages .intro__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.intro-innerpages h1 {
    margin-bottom: 74px;
}

.intro-innerpages.intro-innerpages--lesspadding {
    padding: 42px 0;
}

.intro-innerpages.intro-innerpages--lesspadding h1 {
    margin-bottom: 0;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .intro-innerpages {
        padding: 30px 0;
    }

    .intro-innerpages h1 {
        margin-bottom: 40px;
    }

    .intro-innerpages.intro-innerpages--lesspadding {
        padding: 30px 0;
    }

    .intro-innerpages.intro-innerpages--lesspadding h1 {
        margin-bottom: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .intro-innerpages.intro-innerpages--lesspadding {
        padding: 20px 0;
    }
}

/* ------------------------------------------------------------ *\
  Intro Filters
\* ------------------------------------------------------------ */
.intro-innerpages.intro--filters {
    padding-bottom: 0;
}

.intro-innerpages.intro--filters h1 {
    margin-bottom: 65px;
}

.intro-innerpages.intro--filters .form--select {
    margin-bottom: 73px;
}

/* Mobile */
@media (max-width: 767px) {
    .intro-innerpages.intro--filters {
        padding-top: 40px;
    }

    .intro-innerpages.intro--filters h1 {
        margin-bottom: 20px;
    }

    .intro-innerpages.intro--filters .form--select {
        margin-bottom: 30px;
    }
}

/* ------------------------------------------------------------ *\
  Link
\* ------------------------------------------------------------ */
.link-more p {
    display: inline;
    text-decoration: none;
    margin-bottom: 0;
    margin-right: 2px;
}

/* ------------------------------------------------------------ *\
  Locations
\* ------------------------------------------------------------ */
.locations {
    margin-top: -22px;
}

.locations .locations__row {
    border-top: 1px solid #000;
}

.locations .locations__row:last-child {
    border-bottom: 1px solid #000;
}

.locations .locations__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.locations .location {
    width: 33.3%;
}

.locations .location+.location {
    border-left: 1px solid #000;
}

@media (min-width: 767px) {
    .locations .location figure {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        -o-transition: transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

.location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 73px 10px;
    text-decoration: none;
}

.location figure {
    border-radius: 50%;
    overflow: hidden;
    width: 180px;
    height: 180px;
    margin-bottom: 13px;
    overflow: hidden;
}

.location .h7 {
    margin-bottom: 5px;
}

.location span {
    text-transform: uppercase;
    margin-bottom: 1px;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .location {
        padding: 50px 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .locations .locations__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .locations .shell {
        padding: 0;
    }

    .locations .location {
        width: 100%;
    }

    .locations .location+.location {
        border: 0;
        border-top: 1px solid #E8E9ED;
    }

    .location figure {
        width: 240px;
        height: 240px;
    }

    .location figure img {
        width: 100%;
    }
}

/* ------------------------------------------------------------ *\
  Location Big
\* ------------------------------------------------------------ */
.location-big {
    padding: 30px 0;
    margin-bottom: 174px;
}

.location-big .location__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.location-big .location__media {
    width: 40.5%;
}

.location-big .location__media figure {
    width: 492px;
    height: 492px;
}

.location-big .location__content {
    width: 49%;
}

.location-big .location__content h3 {
    margin-right: -4px;
    margin-bottom: 70px;
}

.location-big .location__content h6 {
    margin: 30px 0 15px;
}

.location-big .location__content p {
    margin-bottom: 0;
}

.location-big .location__content p+p {
    margin-top: 10px;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .location-big {
        margin-bottom: 0;
        padding: 80px 0;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .location-big {
        padding: 30px 0;
    }

    .location-big .location__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .location-big .location__content {
        width: 100%;
    }

    .location-big .location__media {
        width: 100%;
        margin-bottom: 30px;
    }

    .location-big .location__media figure {
        margin: 0 auto;
    }

    .location-big .location__content h3 {
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .location-big .location__media {
        width: 100%;
    }

    .location-big .location__media figure {
        width: 100%;
        position: relative;
        padding-top: 100%;
        height: auto;
    }

    .location-big .location__media img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
    }
}

/* ------------------------------------------------------------ *\
  Location Activities
\* ------------------------------------------------------------ */
.location-activities {
    background-color: #000;
    color: #fff;
    padding: 83px 0 72px;
    text-align: center;
}

.location-activities .location__title {
    margin-bottom: 35px;
}

/* ------------------------------------------------------------ *\
  Mobile Menu
\* ------------------------------------------------------------ */
@media (min-width: 1023px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    pointer-events: none;
}

.mobile-menu.expanded {
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu .mobile__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f4fffc;
    padding: 23px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* Tablet */
}

.mobile-menu .mobile__head .header-menu {
    font-size: 0;
}

@media (min-width: 767px) and (max-width: 1023px) {
    .mobile-menu .mobile__head .logo {
        margin: 0 auto 0 25px;
    }
}

.mobile-menu .btn {
    background-color: #fff;
    color: #000;
    width: 100%;
    max-width: 113px;
    padding: 6px 5px;
}

.mobile-menu .btn-small {
    font-size: 0;
    display: inline-block;
}

.mobile-menu .mobile__body {
    background-color: #000;
    color: #fff;
    height: calc(100vh - 74px);
}

.mobile-menu .mobile__body .mobile__body-inner {
    height: 100%;
    overflow-y: scroll;
    padding: 53px 15px;
}

.mobile-menu .mobile__body .nav {
    display: block;
}

.mobile-menu .mobile__body .socials {
    border-top: 1px solid #000;
    margin-top: 32px;
    text-align: center;
    padding: 21px 0;
}

.mobile-menu .mobile__body .socials ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mobile-menu .mobile__body .mobile__copyright {
    border-top: 1px solid #000;
    padding: 25px 20px;
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .mobile-menu .btn {
            padding-top: 8px;
        }
    }
}

/* ------------------------------------------------------------ *\
  Packages
\* ------------------------------------------------------------ */
.packages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.packages .package {
    border-bottom: 1px solid #000;
    width: 50%;
}

.packages .packages__actions {
    width: 100%;
    text-align: center;
    padding-top: 43px;
}

@media (min-width: 1024px) {
    .packages:not(.packages--vertical) .package:nth-child(odd) .package__inner {
        margin-left: auto;
    }

    .packages:not(.packages--vertical) .package:nth-child(even) .package__inner {
        border-left: 1px solid #000;
        padding: 75px 0 81px 30px;
    }
}

.package:not(.package--vertical) .package__inner {
    padding: 75px 30px 81px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 610px;
}

.package:not(.package--vertical) .package__aside {
    width: 36.5%;
}

.package:not(.package--vertical) .package__aside figure {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
}

.package .package__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.package .package__content h6 {
    margin-bottom: 10px;
}

.package .package__content .list-specification {
    margin-bottom: 21px;
}

.package .package__content p {
    margin-bottom: 32px;
}

.package .package__actions .btn.disabled {
    pointer-events: initial;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .package .package__inner {
        padding: 50px 10px;
    }

    .packages:not(.packages--vertical) .package:nth-child(even) .package__inner {
        border-left: 1px solid #000;
    }

    .package:not(.package--vertical) .package__inner {
        padding: 50px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 610px;
    }

    .package:not(.package--vertical) .package__aside {
        width: 36.5%;
        margin-right: 10px;
    }

    .package:not(.package--vertical) .package__aside figure {
        width: 100%;
        height: auto;
        padding-top: 100%;
        position: relative;
    }

    .package:not(.package--vertical) .package__aside img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
}

/* Tablet Portrait */
@media (min-width: 767px) and (max-width: 1023px) {
    .package .package__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 10px;
    }

    .package:not(.package--vertical) .package__aside {
        width: 100%;
        padding: 0 50px;
        margin-bottom: 20px;
    }

    .package .package__aside figure {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .package .package__aside {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .packages .package {
        width: 100%;
    }

    .packages .package .package__inner {
        margin: 0 auto;
    }

    .packages:not(.packages--vertical) .package:nth-child(even) .package__inner {
        border: none;
    }

    .packages .package__actions .btn {
        max-width: 100%;
    }

    .packages .package__actions .btn+.btn {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 374px) {
    .package .package__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .package:not(.package--vertical) .package__aside {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0px;
    }

    .package .list-specification {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .package .package__content {
        text-align: center;
    }
}

/* ------------------------------------------------------------ *\
  Package Vertical
\* ------------------------------------------------------------ */
.packages--vertical {
    padding: 114px 10px 69px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.packages--vertical.packages--less-padding {
    padding: 0 12px 0 7px;
}

.packages--vertical .package {
    width: 23.5%;
    border: none;
    margin-bottom: 20px;
}

.packages--vertical .package:nth-child(even) .package__inner {
    border: none;
    padding: 0;
}

.package--vertical .package__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
}

.package--vertical .package__aside {
    width: 100%;
}

.package--vertical .package__aside figure {
    border-radius: 0;
    width: 100%;
    height: auto;
}

.package--vertical .package__content {
    padding: 27px 7px 27px 17px;
}

.package--vertical .package__content .list-specification {
    margin-bottom: 18px;
}

.package--vertical .package__actions {
    margin-left: -4px;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .packages--vertical .package {
        width: calc(33.333% - 1.5rem);
    }

    .packages--vertical .package img {
        width: 100%;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .package--vertical .package__content {
        padding: 0;
    }

    .package--vertical .package__content p {
        margin-bottom: 10px;
    }

    .package--vertical .package__actions .btn {
        max-width: 100%;
    }

    .package--vertical .package__actions .btn+.btn {
        margin-top: 10px;
        margin-left: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .packages--vertical {
        padding: 60px 10px;
    }

    .packages--vertical .package {
        width: 80vw;
        padding: 2rem;
        box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.05);
        margin-right: 2rem;
    }

    .package--vertical .package__actions {
        margin: 0;
        margin-top: 10px;
    }
}

@media (max-width: 374px) {
    #product-list.packages--vertical .package {
        width: 100%;
        margin-right: 0;
    }

    #product-list.packages--vertical .package:nth-child(odd) {
        margin-right: 0;
    }
}

/* ------------------------------------------------------------ *\
  Post
\* ------------------------------------------------------------ */
.post {
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.post .post__content {
    padding: 25px 25px 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 200px;
    text-align: left;
}

.post h6 {
    margin-bottom: 7px;
}

.post .post__media {
    overflow: hidden;
    padding-bottom: 66.67%;
    position: relative;
    background-color: #16324F;
}

.post .post__media img {
    width: 100%;
    position: absolute;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.post .post__published {
    margin-top: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.post .post__published i {
    margin-right: 10px;
}

/* ------------------------------------------------------------ *\
  Posts
\* ------------------------------------------------------------ */
@media (min-width: 767px) {
    .posts-scroll {
        overflow-x: scroll;
        position: absolute;
        left: calc(50% - 258px);
        right: 0;
    }

    .posts {
        width: 3000px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.posts .post {
    max-width: 360px;
}

.posts .post+.post {
    margin-left: 50px;
}

.posts .posts__scroll {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

/* Small Desktop */
@media (max-width: 1200px) {
    .posts-scroll {
        left: 34%;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .posts .post {
        max-width: 320px;
    }

    .posts .post+.post {
        margin-left: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .posts-scroll {
        position: static;
    }

    .posts .post {
        max-width: unset;
        margin: 0 10px;
    }

    .posts .post+.post {
        margin-left: 10px;
    }
}

/* ------------------------------------------------------------ *\
  Post Overview
\* ------------------------------------------------------------ */
.post-overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 34px 0;
}

.post-overview .post__shell {
    max-width: 640px;
}

.post-overview .post__published {
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 22px;
}

.post-overview .post__title {
    text-align: center;
    margin-bottom: 50px;
}

.post-overview p {
    margin-bottom: 0;
}

.post-overview p+p {
    margin-top: 68px;
}

.post-overview .post__media {
    margin: 66px auto 80px;
}

@media (min-width: 1024px) {
    .post-overview .special-margin {
        margin-top: 48px;
        margin-bottom: 0;
    }
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .post-overview p+p {
        margin-top: 30px;
    }

    .post-overview .post__media {
        margin: 30px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .post-overview {
        padding: 22px 10px;
    }

    .post-overview .post__title {
        margin-bottom: 30px;
    }

    .post-overview p+p {
        margin-top: 20px;
    }
}

/* ------------------------------------------------------------ *\
  Post Slider
\* ------------------------------------------------------------ */
.post-slider {
    max-width: 800px;
    margin-top: 44px;
    position: relative;
    margin-bottom: 79px;
    width: 100%;
}

.post-slider .slick-arrow {
    position: absolute;
    bottom: 39px;
    width: 23px;
    height: 19px;
    background-image: url(../images/arrow-right-white.png);
    border: none;
    font-size: 0;
    background-color: transparent;
    z-index: 2;
}

.post-slider .slick-prev {
    right: 15%;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.post-slider .slick-next {
    right: 5%;
}

.post-slider .slick-dots {
    position: absolute;
    list-style-type: none;
    bottom: 36px;
    right: 9.7%;
}

.post-slider .slick-dots button {
    background-color: transparent;
    border: none;
    color: #fff;
}

.post-slider .slick-dots li {
    display: none;
}

.post-slider .slick-dots li.slick-active {
    display: block;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .post-slider {
        margin: 30px auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .post-slider .slick-arrow {
        bottom: 20px;
    }

    .post-slider .slick-next {
        right: 20px;
    }

    .post-slider .slick-dots {
        bottom: 20px;
        right: 50px;
    }

    .post-slider .slick-prev {
        right: 85px;
    }
}

/* ------------------------------------------------------------ *\
  Post Autor
\* ------------------------------------------------------------ */
.post-autor {
    border: 1px solid #000;
    border-width: 1px 0 1px 0;
    padding: 62px 0 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 91px;
    width: 100%;
}

.post-autor .post__aside {
    text-align: center;
}

.post-autor .post__aside figure {
    width: 69px;
    height: 69px;
    margin: 0 auto 14px;
}

.post-autor .post__aside a {
    text-decoration: none;
}

.post-autor .post__aside h6 {
    margin-bottom: 0px;
    text-transform: uppercase;
}

.post-autor .post__content {
    max-width: 568px;
    margin-left: 93px;
    padding-top: 4px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .post-autor {
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-top: 30px;
    }

    .post-autor .post__content {
        margin-left: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .post-autor {
        padding: 30px 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .post-autor .post__aside {
        margin-right: 20px;
    }
}

/* ------------------------------------------------------------ *\
  Quantity
\* ------------------------------------------------------------ */
.quantity {
    position: relative;
}

.quantity .quantity__text {
    content: "";
    left: 47%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    pointer-events: none;
}

.quantity .field {
    padding-right: 54%;
    text-align: right;
}

.quantity .field:focus {
    color: #000;
}

.quantity .field:focus~.quantity__text {
    color: #000;
}

.quantity .plus,
.quantity .minus {
    position: absolute;
    top: 50%;
    background-color: transparent;
    border: none;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 6px;
    padding: 5px;
    color: #4a4a4a;
}

.quantity .plus {
    left: auto;
    right: 7px;
}

/* Mobile */
@media (max-width: 767px) {
    .quantity .field {
        padding-right: 57%;
    }

    .quantity .quantity__text {
        left: 52%;
        -webkit-transform: translate(-45%, -53%);
        -ms-transform: translate(-45%, -53%);
        transform: translate(-45%, -53%);
        display: inline-block;
    }
}

/* ------------------------------------------------------------ *\
	Selectric
\* ------------------------------------------------------------ */
.selectric {
    border: none;
    background-color: transparent;
}

.selectric .button {
    display: none;
}

.selectric .selectric-scroll li {
    background-color: #fff;
    color: #000;
}

.selectric-items {
    background-color: #fff;
    border: none;
}

.selectric-items ul {
    border-radius: 15px;
    border: 4px solid #000;
    overflow: hidden;
}

.selectric-items ul li {
    width: 100%;
    margin: 0;
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
.slider {
    padding: 43px 0px 0;
    margin: 0 auto;
}

.slider .slick-slide a {
    text-decoration: none;
    display: block;
}

.slider .slick-arrow {
    position: absolute;
    top: 31%;
    left: -95px;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border: none;
    font-size: 0;
    overflow: visible;
}

.slider .slick-arrow:after {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    content: "";
    border-color: transparent transparent #000 #000;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.slider .slick-arrow:hover:after {
    opacity: 0.5;
}

.slider .slick-next {
    left: auto;
    right: -76px;
}

.slider .slick-next:after {
    border-color: #000 #000 transparent transparent;
}

.slider .slider__slide {
    text-align: center;
}

.slider .slider__slide-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
}

.slider .slider__slide-image img {
    width: 100%;
    height: auto;
}

.slider.slider--testimonial {
    padding: 43px 0px;
}

.slider.slider--testimonial .slick-arrow {
    width: 19px;
    height: 18px;
    background-image: url(../images/Arrow-gray@2x.png);
    background-size: 100% 100%;
    left: -60px;
    top: 46%;
}

.slider.slider--testimonial .slick-arrow:after {
    display: none;
}

@media (max-width: 767px) {
    .slider.slider--testimonial .slick-arrow {
        bottom: -20px;
        top: auto !important;
    }
}

.slider.slider--testimonial .slick-next {
    left: auto;
    right: -60px;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.slider .slick-arrow.slick-disabled {
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .slider {
        padding: 43px 20px 0;
        margin: 0 auto;
    }

    .slider .slick-next:after {
        position: static;
        display: block;
    }

    .slider .slick-arrow {
        left: -25px;
    }

    .slider .slick-arrow:after {
        display: none;
    }

    .slider .slick-next {
        left: auto;
        right: -18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .slider {
        padding: 0;
    }

    .slider .slider__slide-image {
        width: 236px;
        height: 236px;
    }

    .slider .slick-arrow {
        background-image: url(../images/Arrow-gray@2x.png);
        top: auto;
        bottom: 5px;
        z-index: 10;
        border-radius: 50%;
        border: 3px solid rgba(0, 0, 0, 0.7);
        width: 40px;
        height: 40px;
        background-size: 50% 50%;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .slider .slick-arrow:after {
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .slider .slick-prev {
        left: 15px;
    }

    .slider .slick-next {
        right: 15px;
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    .slider .slider__slide-image {
        margin-bottom: 26px;
    }

    .slider .slick-arrow.slick-disabled {
        opacity: 0;
    }

    .slider .slick-dots {
        margin-top: -1px;
        opacity: 0.6;
    }

    .slider.slider--testimonial {
        padding: 0 60px;
    }

    .slider.slider--testimonial .slick-arrow {
        top: 25%;
        border-radius: 50%;
        border: 3px solid rgba(0, 0, 0, 0.7);
        width: 40px;
        height: 40px;
        background-size: 50% 50%;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .slider.slider--testimonial .slick-prev {
        left: -45px;
    }

    .slider.slider--testimonial .slick-next {
        right: -45px;
        -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
        transform: scaleX(-1);
    }
}

/* ------------------------------------------------------------ *\
	Testimonial
\* ------------------------------------------------------------ */
.testionial .testimonial__inner {
    max-width: 210px;
    margin: 0 auto;
}

.testionial .testimonial__head:after {
    display: block;
    width: 39px;
    height: 1px;
    margin: 20px auto 20px;
    content: "";
}

.testionial .testimonial__head h6 {
    margin-bottom: 13px;
}

.testionial .testimonial__head p {
    text-transform: uppercase;
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials {
    padding-left: 1px;
}

.socials ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.socials a {
    display: inline-block;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.socials a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.socials li+li {
    margin-left: 20px;
}

/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */
.breadcrumbs {
    position: absolute;
    left: 0;
    top: 28px;
    width: 100%;
}

.breadcrumbs a {
    text-decoration: none;
    text-transform: uppercase;
    color: inherit;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs li+li:before {
    content: "//";
    display: inline-block;
    vertical-align: middle;
}

.breadcrumbs.breadcrumbs--static {
    position: static;
    padding-top: 29px;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .breadcrumbs {
        top: 0px;
    }
}

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

h1,
.h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 54px;
}

h1.h1-purple,
.h1.h1-purple {
    color: #8888FC;
}

.headline {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #16324F;
}

.side-label {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.side-label.side-label--white {
    color: white;
}

.text-label {
    font: 600 13px/24px "Poppins", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.text-label.text-label--aqua {
    color: #20DCB2;
}

.text-label.text-label--dark {
    color: #4a4a4a;
}

.text-label.text-label--dark-blue {
    color: #16324F;
}

.text-label.text-label--teal {
    color: #2396AF;
}

.header-span {
    font: 600 9px/24px "Poppins", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #16324F;
}

.phone-callout {
    font: 600 28px/28px "Poppins", sans-serif;
    color: white;
}

h2,
.h2 {
    font: 500 26px/36px "Poppins", sans-serif;
}

h2.h2--purple,
.h2.h2--purple {
    color: #8888FC;
}

h2.h2--testimonial,
.h2.h2--testimonial {
    font: 700 30px/38px "Poppins", sans-serif;
    color: #8888FC;
}

h2.h2--white,
.h2.h2--white {
    color: white;
}

h2.h2--profile,
.h2.h2--profile {
    font: 500 30px/36px "Poppins", sans-serif;
    color: #8888FC;
}

h3,
.h3 {
    font: 500 20px/28px "Poppins", sans-serif;
}

h3.h3--white,
.h3.h3--white {
    color: white;
}

h3.h3--aqua,
.h3.h3--aqua {
    color: #20DCB2;
}

h3.h3--bold,
.h3.h3--bold {
    font-weight: 600;
}

h3.h3--purple,
.h3.h3--purple {
    color: #8888FC;
}

h3.h3--dark,
.h3.h3--dark {
    color: #16324F;
}

p,
.p1 {
    font: 400 17px/28px "Poppins", sans-serif;
    color: #4a4a4a;
}

p.p1--blue,
.p1.p1--blue {
    color: #16324F;
}

p.p1--whiteish,
.p1.p1--whiteish {
    color: #EEF6FF;
}

p.p1--white,
.p1.p1--white {
    color: white;
}

p.p1--semibold,
.p1.p1--semibold {
    font-weight: 500;
}

.p2 {
    font: 400 14px/24px "Poppins", sans-serif;
    color: #16324F;
}

.p2.p2--reduced-lh {
    line-height: 14px;
}

.p2.p2--semibold {
    font-weight: 500;
}

.p2.p2--white {
    color: white;
}

.p3 {
    font: 400 15px/28px "Poppins", sans-serif;
    color: #16324F;
}

.p4 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.p4.p4--white {
    color: white;
}

.p4.p4--blue {
    color: #16324F;
}

.profile-text {
    font: 700 16px/28px "Poppins", sans-serif;
    color: #16324F;
}

.card__header {
    font: 500 24px/32px "Poppins", sans-serif;
    color: #16324F;
    text-align: left;
}

.card__header.card__header--smaller {
    font-size: 22px;
}

.cta-info {
    color: #16324F;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.form-header {
    font: 500 15px/24px "Poppins", sans-serif;
    color: #EEF6FF;
}

#MemberLoginForm_LoginForm fieldset {
    border: none;
}

#MemberLoginForm_LoginForm fieldset .field {
    border: none;
    padding: 14px 0;
}

#MemberLoginForm_LoginForm fieldset .field.text label {
    text-align: left;
    color: #000;
}

#MemberLoginForm_LoginForm fieldset .field.text input {
    border: 2px solid #000;
    width: 100%;
    padding: 14px 18px 12px;
}

#MemberLoginForm_LoginForm fieldset .field.checkbox {
    flex-wrap: nowrap;
    width: 100%;
}

#MemberLoginForm_LoginForm fieldset .field.checkbox input {
    opacity: unset;
    margin: 0;
    -webkit-appearance: checkbox;
}

#MemberLoginForm_LoginForm fieldset .field.checkbox label {
    color: inherit;
}

#MemberLoginForm_LoginForm fieldset .field.checkbox label::before {
    content: unset;
}

#MemberLoginForm_LoginForm .btn-toolbar {
    text-align: center;
}

#MemberLoginForm_LoginForm .btn-toolbar input[type=submit] {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #000;
    padding: 9px 21px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 20px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    border: 2px solid #000;
}

#MemberLoginForm_LoginForm .btn-toolbar #ForgotPassword {
    padding-top: 16px;
}

#MemberLoginForm_LoginForm .message.bad {
    color: red;
}

/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Home
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Icons
\* ------------------------------------------------------------ */
.list-specification li {
    background: none;
}

.ico-sun,
.ico-moon,
.ico-price {
    background-size: contain;
    width: 20px;
    height: 20px;
}

.ico-burger,
.ico-cross {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/icons/rebuild/burger.svg) center no-repeat;
}

.ico-cross {
    background-image: url(../images/icons/cross.svg);
}

.ico--black .ico-sun,
.ico--darkgray .ico-sun {
    opacity: 1;
}

.ico-sun {
    opacity: 0.15;
}

.ico--black .ico-moon,
.ico--darkgray .ico-moon {
    opacity: 1;
}

.ico-moon {
    opacity: 0.15;
}

.ico--black .ico-price,
.ico--darkgray .ico-price {
    opacity: 1;
}

.ico-price {
    opacity: 0.15;
}

.ico-arrow-down {
    background-image: url(../images/sprite.png);
    background-position: 46.0784313725% 40.7407407407%;
    background-size: 1300% 1000%;
    width: 17px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0px;
}

.ico-arrow-right {
    background-image: url(../images/sprite.png);
    background-position: 100% 61.3861386139%;
    background-size: 1163.1578947368% 631.5789473684%;
    width: 19px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0px;
}

.ico-arrow {
    background-image: url(../images/sprite.png);
    background-position: 85.6435643564% 80.7339449541%;
    background-size: 1163.1578947368% 1090.9090909091%;
    width: 19px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0px;
}

.ico-clock {
    background-image: url(../images/sprite.png);
    background-position: 37.6811594203% 64.1509433962%;
    background-size: 1578.5714285714% 857.1428571429%;
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0px;
}

.ico-down-black {
    background-image: url(../images/sprite.png);
    background-position: 93.7799043062% 77.8761061947%;
    background-size: 1841.6666666667% 1714.2857142857%;
    width: 12px;
    height: 7px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 2/1),
(min-resolution: 192dpi) {
    .ico-arrow-down {
        background-image: url(../images/sprite.@2x.png);
        background-position: 84.5965770171% 81.4814814815%;
        background-size: 1339.3939393939% 1000%;
        width: 16.5px;
        height: 12px;
        display: inline-block;
        vertical-align: middle;
        font-size: 0px;
    }

    .ico-arrow-right {
        background-image: url(../images/sprite.@2x.png);
        background-position: 100% 61.0837438424%;
        background-size: 1163.1578947368% 648.6486486486%;
        width: 19px;
        height: 18.5px;
        display: inline-block;
        vertical-align: middle;
        font-size: 0px;
    }

    .ico-arrow {
        background-image: url(../images/sprite.@2x.png);
        background-position: 95.5555555556% 80.3652968037%;
        background-size: 1194.5945945946% 1142.8571428571%;
        width: 18.5px;
        height: 10.5px;
        display: inline-block;
        vertical-align: middle;
        font-size: 0px;
    }

    .ico-clock {
        background-image: url(../images/sprite.@2x.png);
        background-position: 45.4106280193% 41.5094339623%;
        background-size: 1578.5714285714% 857.1428571429%;
        width: 14px;
        height: 14px;
        display: inline-block;
        vertical-align: middle;
        font-size: 0px;
    }

    .ico-down-black {
        background-image: url(../images/sprite.@2x.png);
        background-position: 72.2488038278% 97.3451327434%;
        background-size: 1841.6666666667% 1714.2857142857%;
        width: 12px;
        height: 7px;
        display: inline-block;
        vertical-align: middle;
        font-size: 0px;
    }
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer .footer__inner {
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer .footer__head {
    padding-bottom: 0;
    border-bottom: none;
}

.footer .footer__foot {
    border-top: none;
}

/* Mobile */
@media (max-width: 767px) {
    .footer h6 {
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer .footer__inner {
        padding-top: 30px;
    }

    .footer .footer__body {
        line-height: inherit;
    }

    .footer .footer__aside {
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer .list-logos {
        border-top: none;
    }
}

/* ------------------------------------------------------------ *\
  Button
\* ------------------------------------------------------------ */
.btn {
    line-height: 30px;
    padding: 7px 20px;
    border-width: 3px;
    border-radius: 8px;
    background: none;
}

.btn:hover {
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
}

.btn--green-2,
.btn--black {
    border: 3px solid #000;
}

.btn--green-2:hover,
.btn--black:hover {
    opacity: 1;
}

.btn-arrow-right:hover {
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------------ *\
  Btn Quote
\* ------------------------------------------------------------ */
.btn--get-a-quote {
    border-width: 2px;
    background-color: transparent;
}

.btn--quote {
    padding-right: 50px;
}

.btn--quote .btn__quotenumber {
    right: 12px;
    width: 26px;
    height: 26px;
}

@media (max-width: 1023px) {
    .btn.btn--get-a-quote {
        padding: 6px 10px;
        line-height: 16px;
        max-width: 125px;
    }

    .btn--quote .btn__quotenumber {
        right: 10px;
        width: 18px;
        height: 18px;
    }
}

/* ------------------------------------------------------------ *\
	Form Elements
\* ------------------------------------------------------------ */
.field {
    padding: 10px 18px;
    border-width: 1px;
    border-radius: 3px;
    line-height: inherit;
}

.select svg {
    top: 50%;
}

.radios-holder {
    border-width: 1px;
    border-radius: 3px;
}

/* ------------------------------------------------------------ *\
  Radio
\* ------------------------------------------------------------ */
.radio label {
    padding: 10px 6px;
}

.radio+.radio {
    border-left-width: 1px;
}

/* ------------------------------------------------------------ *\
  Form
\* ------------------------------------------------------------ */
.form__dropdown .form__btn-dropdown {
    padding: 10px 18px;
    border-width: 1px;
    border-radius: 3px;
}

.form__dropdown .form__btn-dropdown.expanded {
    border-radius: 3px 3px 0 0;
}

.form__dropdown .form__btn-dropdown svg {
    width: 18px;
    height: 9px;
    margin-right: 0;
}

.form__dropdown .form__body {
    border-width: 1px;
    border-top: none;
    border-radius: 0 0 3px 3px;
}

/* ------------------------------------------------------------ *\
  List Services
\* ------------------------------------------------------------ */
@media (min-width: 768px) {
    .list-services {
        margin-top: 60px;
    }
}

/* ------------------------------------------------------------ *\
	List Logos
\* ------------------------------------------------------------ */
/* Mobile */
@media (max-width: 767px) {
    .list-logos {
        padding: 27px 0 0;
    }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav>ul>li>a {
    line-height: 15px;
}

/* ------------------------------------------------------------ *\
  Checkboxes
\* ------------------------------------------------------------ */
.checkboxes .checkboxes__head {
    padding: 20px 18px 0;
    border-bottom: none;
}

.checkboxes .checkboxes__body {
    padding: 20px 18px 0 18px;
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox label {
    padding-left: 10px;
    line-height: 18px;
}

/* ------------------------------------------------------------ *\
  DatePicker
\* ------------------------------------------------------------ */
.daterangepicker {
    border-width: 1px;
    border-radius: 3px;
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

.daterangepicker .calendar-table {
    border: none;
    background-color: transparent;
}

.daterangepicker .calendar-table thead tr+tr th {
    border-width: 1px 0;
}

.daterangepicker .calendar-table thead tr:first-child th {
    padding: 20px 10px;
    border: none;
}

.daterangepicker .calendar-table td {
    padding: 15px 10px;
}

/* ------------------------------------------------------------ *\
	DropDonw
\* ------------------------------------------------------------ */
@media (min-width: 1023px) {
    .hasdropdown .hasdropdown__ico {
        margin-left: -10px;
    }
}

/* ------------------------------------------------------------ *\
  Intro
\* ------------------------------------------------------------ */
.intro {
    min-height: 100vh;
    max-height: 1080px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.intro .intro__inner {
    padding-top: 220px;
}

.intro .intro__content h2 {
    margin-bottom: 0.4em;
}

.intro .intro__actions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
}

.intro .intro__actions .btn-scroll {
    border-width: 3px;
    border-color: transparent #fff #fff transparent;
}

.intro-innerpages.intro-innerpages--lesspadding {
    padding: 48px 0 0 0;
}

/* Mobile */
@media (max-width: 767px) {
    .intro .intro__inner {
        padding-top: 120px;
    }
}

/* ------------------------------------------------------------ *\
  Mobile Menu
\* ------------------------------------------------------------ */
.mobile-menu .mobile__body .mobile__body-inner {
    padding: 27px 15px;
}

/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */
.breadcrumbs li+li:before {
    content: "|";
    padding: 0 2px;
    vertical-align: unset;
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */
.section+.section {
    border: none;
}

/*Section Black*/
.section--black {
    background-color: transparent;
    color: inherit;
}

.section--black.section-articles-big {
    margin-bottom: 75px;
}

.section--black.section-articles-big .section__inner {
    padding: 75px 0 0;
}

/*Section Slider*/
.section--slider .select.select--black {
    width: 195px;
    border: 3px solid #000;
    border-radius: 8px;
}

.section--slider .select.select--black .selectric {
    padding: 3px 0;
}

.section--slider .select.select--black .selectric .label {
    padding: 0 35px 0 10px;
    margin-left: 0;
    text-align: center;
    text-align-last: center;
}

.section--slider .select.select--black svg {
    right: 15px;
}

.section--slider .select.select--black:hover {
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------------ *\
  Section Articles
\* ------------------------------------------------------------ */
.section-articles {
    padding: 75px 0;
    border: none;
}

.section-articles .section__inner {
    padding: 0;
}

.section-articles .section__head {
    padding-top: 75px;
}

.section-articles .shell {
    padding: 0 10px;
}

.section-articles .section__inner {
    justify-content: center;
}

.section-articles .section__col {
    width: auto;
    padding: 0;
    border: none !important;
}

.section-articles .section__col+.section__col {
    margin-left: 21px;
}

.section-articles .section__col .article {
    margin: 0 !important;
}

.section-articles .section__col .article .article__title {
    margin-bottom: 20px;
    text-align: left;
}

@media (min-width: 768px) {
    .section-articles .section__inner {
        flex-wrap: nowrap;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-articles .section__col+.section__col {
        margin-left: 0;
        margin-top: 20px;
    }
}

/* ------------------------------------------------------------ *\
	Section Articles Big
\* ------------------------------------------------------------ */
.section-articles-big {
    border-top: none;
    margin-top: 0;
    padding-top: 75px;
    padding-bottom: 75px;
}

/* ------------------------------------------------------------ *\
	Section Slider Testimonials
\* ------------------------------------------------------------ */
.section--slider-testimonials {
    border: none;
}

.section--slider-testimonials .section__inner {
    padding: 75px 0;
}

.section--slider-testimonials .section__inner {
    border: none;
}

/* Mobile */
@media (max-width: 767px) {
    .section--slider-testimonials {
        margin-top: 0;
    }
}

/* ------------------------------------------------------------ *\
	Section Packages
\* ------------------------------------------------------------ */
.section-packages {
    border: none;
}

.section-packages .section__head {
    margin-bottom: 40px;
}

.section-packages--vertical {
    border: none;
}

.section-packages .section__view-all {
    border: none;
    margin-top: 0;
}

/* ------------------------------------------------------------ *\
  Section Posts
\* ------------------------------------------------------------ */
.section-posts {
    padding: 80px 0;
    border: none;
}

.section-posts .section__aside {
    padding: 0;
}

.section-posts .section__aside p>* {
    vertical-align: middle;
}

/* ------------------------------------------------------------ *\
  Image With Text Block
\* ------------------------------------------------------------ */
/* Mobile */
/* ------------------------------------------------------------ *\
  Section Posts News
\* ------------------------------------------------------------ */
.section-posts-news {
    margin-top: 40px;
}

/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */
.article .article__media {
    margin-bottom: 0;
}

.article .article__media.solo-article img {
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

.article h6 {
    margin-top: 20px;
    color: #8888FC;
}

.article--big .article__head {
    margin-bottom: 40px;
}

.article--small h6 {
    margin-bottom: 15px !important;
}

/* ------------------------------------------------------------ *\
	Articles
\* ------------------------------------------------------------ */
.articles .article,
.section-articles .article {
    max-width: 487px;
    background: white;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

.articles .article .article__content,
.section-articles .article .article__content {
    margin-top: 20px;
    height: 100%;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
}

.articles .article .article__content.no-image,
.section-articles .article .article__content.no-image {
    padding-top: 60px;
}

/* Mobile */
@media (max-width: 1023px) {

    .articles .article__content,
    .section-articles .article__content {
        padding-left: 40px !important;
        padding-right: 40px !important;
        padding-bottom: 40px !important;
    }

    .articles .article__content.no-image,
    .section-articles .article__content.no-image {
        padding-top: 40px !important;
    }
}

/* ------------------------------------------------------------ *\
  Locations
\* ------------------------------------------------------------ */
.locations {
    margin-top: 50px;
}

.locations .locations__row {
    border: none;
}

.locations .locations__row:last-child {
    border: none;
}

.locations .location+.location {
    border: none;
}

/* ------------------------------------------------------------ *\
  Location Big
\* ------------------------------------------------------------ */
.location-big .location__content h3 {
    margin-bottom: 0;
}

.location-big .location__content h6 {
    margin-top: 20px;
}

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
.rounded-img {
    border: 5px solid #fff;
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
.slider {
    padding: 43px 0px 0;
}

.slider .slider__slides .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url(../images/icons/rebuild/slider-arrow.svg) center no-repeat;
    top: 50%;
    margin-top: -20px;
}

.slider .slider__slides .slick-arrow.slick-prev {
    left: 35%;
    transform: scaleX(-1);
}

.slider .slider__slides .slick-arrow.slick-next {
    right: 35%;
    transform: scaleX(1);
}

.slider .slider__slides .slick-arrow:after {
    display: none;
}

.slider .slider__slide-image {
    border: 5px solid #000;
    width: 175px;
    height: 175px;
}

.slider .slider__slide-image:hover {
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

.slider.slider--testimonial {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.slider .slick-list {
    padding: 40px 0;
    margin: -40px 0;
}

.slider.slider--location .slick-arrow {
    margin-top: -46px;
}

/* Mobile */
@media (max-width: 767px) {
    .slider {
        padding: 0 !important;
    }

    .slider .slider__slides .slick-arrow.slick-prev {
        left: 15px;
    }

    .slider .slider__slides .slick-arrow.slick-next {
        right: 15px;
    }

    .slider .slider__slide-image {
        width: 240px;
        height: 240px;
    }

    .slider.slider--location .slick-arrow {
        top: auto;
    }
}

/* ------------------------------------------------------------ *\
	Testimonial
\* ------------------------------------------------------------ */
.testionial .testimonial__inner {
    position: relative;
    max-width: none;
    padding: 25px 20px 20px;
    border: 3px solid #000;
    border-radius: 8px;
    margin: 0 15px;
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 767px) {
    .testionial .testimonial__inner {
        margin: 0 20px;
        height: auto !important;
    }
}

/* ------------------------------------------------------------ *\
  Packages
\* ------------------------------------------------------------ */
.packages .package {
    border: none;
    margin-bottom: 40px;
}

.packages .package .package__content p {
    margin-bottom: 25px;
}

.packages .package .package__content .package__actions .btn {
    padding: 4px 10px;
}

.packages.packages--vertical {
    padding-top: 40px;
}

@media (min-width: 1024px) {
    .packages.packages--vertical .package {
        border-radius: 5px;
        padding: 20px;
        margin-bottom: 20px;
        position: relative;
    }

    .packages.packages--vertical .package .package__content {
        padding: 0;
    }

    .packages.packages--vertical .package .package__content p {
        margin-bottom: 75px;
    }

    .packages.packages--vertical .package .package__content .package__actions {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        display: flex;
        gap: 8px;
        justify-content: space-between;
        margin: 0;
    }
}

.packages:not(.packages--vertical) .package .package__inner {
    max-width: 620px;
    padding: 20px !important;
    border: none !important;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .packages:not(.packages--vertical) .package:nth-child(odd) .package__inner {
        margin-right: 0;
    }

    .packages:not(.packages--vertical) .package:nth-child(even) .package__inner {
        margin-left: 0;
    }
}

.packages:not(.packages--vertical) .package .package__aside {
    margin-right: 20px;
}

@media (min-width: 1024px) {
    .packages:not(.packages--vertical) .package .package__aside {
        width: 180px;
    }
}

.packages:not(.packages--vertical) .package .package__content {
    width: 100%;
}

/* Map marker icon fix */
#Map_Icon {
    margin-bottom: -4px;
}

/* ------------------------------------------------------------ *\
	Details
\* ------------------------------------------------------------ */
.details .details__aside figure {
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    .details .details__aside figure+figure {
        margin-top: 40px;
    }
}

.details .details__details .list-details {
    border-bottom: none;
    padding-bottom: 0;
}

.details .details__info {
    padding-top: 40px;
}

.details-holder {
    border: none;
}

/* ------------------------------------------------------------ *\
	Selectric
\* ------------------------------------------------------------ */
.selectric-items {
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.selectric-items ul {
    border-radius: 0;
    border: none;
}

.selectric-items ul li {
    padding-left: 16px;
}

.select.select--black {
    border-radius: 5px;
}

/* ------------------------------------------------------------ *\
	Featured
\* ------------------------------------------------------------ */
.featured {
    color: #fff;
}

.featured .featured__slide {
    position: relative;
}

.featured .featured__slide h2 {
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.2392156863);
}

.featured .featured__slide .btn.btn--outline {
    border-color: #fff;
    color: #fff;
    text-shadow: none;
}

/* ------------------------------------------------------------ *\
  Post
\* ------------------------------------------------------------ */
.post {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

.post h6 {
    margin-bottom: 10px;
}

/* ------------------------------------------------------------ *\
  Posts
\* ------------------------------------------------------------ */
@media (min-width: 767px) {
    .posts-scroll {
        margin-left: -40px;
    }

    .posts {
        padding: 20px 0;
    }

    .posts .post+.post {
        margin-left: 20px;
    }

    .posts .post:first-child {
        margin-left: 40px;
    }

    .posts .post:last-child {
        margin-right: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .posts-scroll .slick-list {
        overflow: visible;
    }
}

/* ------------------------------------------------------------ *\
  Post Autor
\* ------------------------------------------------------------ */
.post-autor {
    border: none;
    margin-top: 0;
}

/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */
@font-face {
    font-family: "SFUI";
    src: url("../fonts/SFUI-Light.woff2") format("woff2"), url("../fonts/SFUI-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "SFUI";
    src: url("../fonts/SFUI-Regular.woff2") format("woff2"), url("../fonts/SFUI-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "SFUI";
    src: url("../fonts/SFUI-SemiBold.woff2") format("woff2"), url("../fonts/SFUI-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "SFUI";
    src: url("../fonts/SFUI-Bold.woff2") format("woff2"), url("../fonts/SFUI-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "SFUI";
    src: url("../fonts/SFUI-Heavy.woff2") format("woff2"), url("../fonts/SFUI-Heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "silverstripe";
    src: url("../fonts/silverstripe.eot");
    src: url("../fonts/silverstripe.eot?#iefix") format("embedded-opentype"), url("../fonts/silverstripe.woff") format("woff"), url("../fonts/silverstripe.ttf") format("truetype"), url("../fonts/silverstripe.svg#silverstripe") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^=font-icon-]:before,
[class*=" font-icon-"]:before,
[class^=font-icon-]:after,
[class*=" font-icon-"]:after {
    font-family: "silverstripe" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
html {
    font-size: 10px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    line-height: 1.63;
    font-weight: 400;
    font-style: normal;
    color: #4a4a4a;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h7 {
    font-weight: 700;
    color: #16324F;
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 6rem;
    line-height: 1;
}

@media (max-width: 767px) {

    h1,
    h2,
    h3,
    h4,
    h5 {
        font-size: 4.5rem;
    }
}

h6 {
    font-size: 2.4rem;
    line-height: 1.2;
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
.header {
    color: #4a4a4a;
    background-color: #f4fffc;
    z-index: 10000;
}

.header .header__inner {
    background-color: #f4fffc;
}

.header .shell {
    max-width: 1440px;
}

.quote-image {
    position: relative;
}

.quote-image .quote__quotenumber {
    position: absolute;
    top: 10%;
    right: 0;
}

/* Mobile */
@media (max-width: 1023px) {
    .mobile-btn {
        text-decoration: none;
        padding: 6px 30px;
        padding-right: 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-btn svg {
        height: 30px;
        width: 30px;
    }
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
    background-color: #fff;
    border-color: #e8e9ed;
    color: #4a4a4a;
}

.footer img {
    border-radius: 0;
}

.footer .footer-logo {
    align-self: center;
}

@media (min-width: 1024px) {
    .footer .footer-logo {
        align-self: flex-start;
        margin-right: 20px;
    }
}

.footer .footer__top {
    background-color: #20DCB2;
}

.footer .footer__bottom {
    background-color: #EEF6FF;
    padding: 40px 0;
}

.footer .footer__bottom .shell {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1024px) {
    .footer .footer__bottom .shell {
        flex-direction: row;
    }
}

.footer .footer__inner {
    display: flex;
    gap: 30px;
}

@media (max-width: 1023px) {
    .footer .footer__inner {
        flex-direction: column;
    }
}

.footer .footer__contacts {
    display: grid;
    gap: 15px;
    flex-grow: 1;
    margin-top: 0;
}

@media (max-width: 1023px) {
    .footer .footer__contacts {
        text-align: center;
        margin-top: 40px;
    }
}

.footer .nav-footer__container {
    display: flex;
    gap: 30px;
}

@media (max-width: 1023px) {
    .footer .nav-footer__container {
        justify-content: center;
    }
}

@media (min-width: 767px) {
    .footer .nav-footer {
        min-width: 215px;
    }
}

.footer .nav-footer .label:not(:first-of-type) {
    margin-top: 30px;
}

.footer .footer__head {
    font-size: 1.8rem;
}

.footer h6 {
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0.05em;
    color: #4a4a4a;
}

.footer .footer__body {
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: #4a4a4a;
}

/* Mobile */
@media (max-width: 767px) {
    .footer .footer__body {
        font-size: 1.3rem;
    }
}

/* ------------------------------------------------------------ *\
  Button
\* ------------------------------------------------------------ */
.btn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-width: 2px;
    border-color: #20DCB2;
    color: #16324F;
    border-radius: 35px;
    transition: all 200ms ease-in-out;
}

.btn:hover {
    border-color: #fff;
    color: #fff;
    background-color: #20DCB2;
}

.btn.btn--add-to-quote,
.btn.btn--instant-book {
    border-color: #fff;
    color: #fff;
    background-color: #20DCB2;
}

.btn.btn--add-to-quote:hover,
.btn.btn--instant-book:hover {
    border-color: #20DCB2;
    color: #16324F;
    background-color: transparent;
}

.btn.btn--instant-book {
    padding: 8px 20px;
}

.btn--card {
    width: 100%;
}

.btn.btn--red {
    border-color: rgba(204, 6, 113, 0.2);
    background-color: #CC0671;
    color: white;
}

.btn.btn--red:hover {
    background-color: white;
    color: #CC0671;
}

.btn--green-2,
.btn--black {
    background-color: #20DCB2;
    border-color: #20DCB2;
    color: #fff;
    box-shadow: 0px 2px 40px -10px rgba(2, 176, 160, 0.2);
}

.btn-arrow-right {
    background-color: #20DCB2;
}

.btn-arrow-right svg path {
    fill: #fff;
}

.btn-arrow-right:hover {
    background-color: #20DCB2;
}

.btn-arrow--black {
    border-color: #fff;
}

/* ------------------------------------------------------------ *\
  Btn Quote
\* ------------------------------------------------------------ */
.btn--get-a-quote {
    background-color: white;
    border-color: #20DCB2;
}

.btn--get-a-quote:hover {
    border-color: white;
    background-color: #20DCB2;
}

.btn--get-a-quote:hover .btn__quotenumber {
    background-color: white;
    color: #20DCB2;
}

.btn--get-a-quote.btn--mobile-quote {
    background: none;
    border: none;
    width: fit-content;
    flex-direction: column;
    padding: 6px 30px;
    padding-right: 0;
}

.btn--get-a-quote.btn--mobile-quote:hover {
    box-shadow: none;
}

.btn--quote .btn__quotenumber {
    background-color: #20DCB2;
    color: white;
    transition: background-color, color 200ms ease-in-out;
}

@media (max-width: 1023px) {
    .btn.btn--get-a-quote {
        max-width: 130px;
    }
}

/* ------------------------------------------------------------ *\
	Form Elements
\* ------------------------------------------------------------ */
.field {
    border-color: #2396AF;
    font-size: 1.4rem;
    color: #484E60;
    background-color: #EEF6FF;
}

.field::placeholder {
    color: #484E60;
}

.radios-holder {
    border-color: #e8e9ed;
}

textarea {
    height: 152px;
}

/* ------------------------------------------------------------ *\
  Radio
\* ------------------------------------------------------------ */
.radio label {
    font-size: 1.4rem;
}

.radio+.radio {
    border-color: #e8e9ed;
}

.radio input:checked~label {
    background-color: #e8e9ed;
    color: #4a4a4a;
}

/* ------------------------------------------------------------ *\
  Form
\* ------------------------------------------------------------ */
.form__dropdown .form__btn-dropdown {
    border-bottom-color: #e8e9ed;
}

/* ------------------------------------------------------------ *\
	Form Enquire
\* ------------------------------------------------------------ */
.form--enquire .form-header {
    text-align: left;
}

/* ------------------------------------------------------------ *\
  List Services
\* ------------------------------------------------------------ */
.list-services h6 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: inherit;
}

/* ------------------------------------------------------------ *\
  List Works
\* ------------------------------------------------------------ */
.list-works {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    row-gap: 60px;
    column-gap: 20px;
}

@media (min-width: 1024px) {
    .list-works {
        column-gap: 60px;
    }
}

.list-works .list-bubble {
    height: 148px;
    width: 148px;
    background-color: #16324F;
    border-radius: 200px;
    outline: 5px solid rgba(22, 50, 79, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.list-works .list-bubble img {
    border-radius: 0;
}

.list-works .list-bubble span {
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 48px;
    color: #20DCB2;
}

@media (min-width: 1024px) {
    .list-works .list-bubble {
        height: 176px;
        width: 183px;
    }
}

/* ------------------------------------------------------------ *\
  List Details
\* ------------------------------------------------------------ */
.list-details h6 {
    font-size: 1.6rem;
}

/* ------------------------------------------------------------ *\
  List Expect
\* ------------------------------------------------------------ */
.list-underline li {
    border-color: #e8e9ed;
}

.list-underline li p {
    color: #4a4a4a;
    font-weight: 700;
}

.list-underline--2 li:not(.class) {
    border-color: #e8e9ed;
}

.list-underline--2 li:not(.class) p {
    color: #4a4a4a;
    font-weight: 400;
}

.list-underline--2 li:not(.class) h6 {
    font-size: 1.6rem;
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
    margin-right: auto;
}

.nav>ul>li.current,
.nav>ul>li:hover {
    color: #20DCB2;
}

/* Mobile */
@media (max-width: 1023px) {
    .nav>ul>li>a {
        font-size: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
  Checkboxes
\* ------------------------------------------------------------ */
.checkbox label {
    color: #4a4a4a;
    font-size: 1.4rem;
}

.checkbox label strong {
    font-weight: 400;
}

.checkbox label span {
    color: #4a4a4a;
}

.checkbox label:before {
    font-size: 1.9rem;
    line-height: 18px;
    font-weight: 600;
    background-color: #CC0671;
    transition: all 200ms ease-in-out;
    border: 1px solid #CC0671;
}

.checkbox input:hover~label:before {
    background-color: white;
    color: #CC0671;
}

/* ------------------------------------------------------------ *\
	Copyright
\* ------------------------------------------------------------ */
.copyright {
    font-size: 1.4rem;
    color: #4a4a4a;
}

/* Mobile */
@media (max-width: 767px) {
    .copyright {
        font-size: 1.3rem;
        display: block;
    }
}

/* ------------------------------------------------------------ *\
  DatePicker
\* ------------------------------------------------------------ */
.daterangepicker {
    border-color: #e8e9ed;
    color: #4a4a4a;
}

.daterangepicker .calendar-table thead tr+tr th {
    border-color: #e8e9ed;
    font-size: 1.5rem;
    font-weight: 400;
}

.daterangepicker .calendar-table thead tr:first-child th {
    font-size: 1.7rem;
}

.daterangepicker .calendar-table td {
    font-size: 1.7rem;
}

.daterangepicker .calendar-table td.off {
    color: #e8e9ed;
}

.daterangepicker .calendar-table td.in-range {
    background-color: #e8e9ed;
}

.daterangepicker .calendar-table td.active,
.daterangepicker .calendar-table td:hover {
    background-color: #4a4a4a;
    color: #fff;
}

.daterangepicker .calendar-table td:hover {
    background-color: #20DCB2;
}

/* ------------------------------------------------------------ *\
	DropDonw
\* ------------------------------------------------------------ */
.dropdown .dropdown__item {
    color: #4a4a4a;
}

.dropdown .dropdown__item h6 {
    font-size: 1.3rem;
    font-weight: 600;
}

.dropdown .dropdown__item:hover h6 {
    color: #20DCB2;
}

/* Mobile */
@media (max-width: 1023px) {
    .hasdropdown .hasdropdown__ico {
        top: 1px;
    }

    .dropdown {
        border-color: #e8e9ed;
    }

    .dropdown .dropdown__item h6 {
        font-size: 1.4rem;
        font-weight: 600;
    }
}

/* ------------------------------------------------------------ *\
  Intro
\* ------------------------------------------------------------ */
.intro {
    font-size: 1.6rem;
    font-weight: 600;
}

.intro .intro__content {
    max-width: 700px;
}

.intro .intro__content h2 {
    font-size: 7.5rem;
    line-height: 0.95;
    color: inherit;
}

.intro .intro__content p {
    max-width: 520px;
}

.intro-innerpages--lesspadding {
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 767px) {
    .intro .intro__content h2 {
        font-size: 50px;
    }
}

/* ------------------------------------------------------------ *\
  Mobile Menu
\* ------------------------------------------------------------ */
.mobile-menu .btn-small svg path {
    fill: #4a4a4a;
}

.mobile-menu .socials svg path {
    fill: #4a4a4a;
}

.mobile-menu .mobile__body {
    background-color: #FAFAFC;
    color: #4a4a4a;
}

.mobile-menu .mobile__body .socials {
    border-color: #e8e9ed;
}

.mobile-menu .mobile__body .mobile__copyright {
    border-color: #e8e9ed;
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials svg path {
    fill: white;
}

@media (max-width: 1023px) {
    .socials ul {
        justify-content: center;
    }
}

/* ------------------------------------------------------------ *\
	Breadcrumbs
\* ------------------------------------------------------------ */
.breadcrumbs {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

.breadcrumbs li {
    color: #6b7278;
}

.breadcrumbs li+li:before {
    color: #6b7278;
}

.breadcrumbs li.current {
    color: #4a4a4a;
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */
/*Section Black*/
.section--black {
    background-color: #FAFAFC;
}

.section--purple {
    background-color: #8888FC;
}

/*Section Slider*/
.section--slider .section__head {
    margin: 90px 0;
    position: relative;
    z-index: 1000;
}

@media (min-width: 1024px) {
    .section--slider .section__head {
        margin-top: 0;
        margin-bottom: 60px;
    }
}

.section--slider.text-slider {
    background-color: #f4fffc;
}

.section--slider.text-slider .section__head {
    max-width: 570px;
    margin: auto;
    margin-top: 60px;
}

.section--slider.text-slider .section__head .content {
    margin-top: 30px;
}

.section--slider.text-slider .text-slide {
    padding: 40px;
}

.section--slider.text-slider .text-slide .text-slide__img {
    margin-left: auto;
    height: 75px;
    width: auto;
}

.section--slider.text-slider .text-slide .h3 {
    margin-top: auto;
    width: 55%;
    text-align: left;
    margin-bottom: 15px;
}

.section--slider.text-slider .text-slide .p1 {
    text-align: left;
}

.section--slider.news-block {
    background-color: #f4fffc;
}

.section--slider.news-block .section__head {
    margin: 60px 0;
}

.section--slider.news-block .slider {
    margin-bottom: 65px;
}

.section--slider.news-block .post {
    margin: 0 7.5px;
}

.section--slider.milestones {
    background-color: #16324F;
    overflow: hidden;
}

.section--slider.milestones .shell {
    overflow: visible;
    position: relative;
}

.section--slider.milestones .section__inner {
    position: relative;
    z-index: 10;
}

.section--slider.milestones .milestone-float-items {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: -25px;
    z-index: 1;
}

.section--slider.milestones .milestone-float-items .milestone__float-item {
    position: absolute;
    border-radius: 9999px;
    transform: rotate(-45deg);
}

.section--slider.milestones .milestone-float-items .milestone__float-item.float-item-1 {
    height: 2171px;
    width: 2296px;
    background-color: #2396AF;
    top: -1900px;
    left: -1100px;
    opacity: 0.1;
}

@media (min-width: 1200px) {
    .section--slider.milestones .milestone-float-items .milestone__float-item.float-item-1 {
        left: -700px;
        top: -1750px;
    }
}

.section--slider.milestones .milestone-float-items .milestone__float-item.float-item-2 {
    height: 1601px;
    width: 1382px;
    background-color: #8888FC;
    top: -900px;
    left: -50px;
    opacity: 0.1;
}

@media (min-width: 1200px) {
    .section--slider.milestones .milestone-float-items .milestone__float-item.float-item-2 {
        left: 300px;
        top: -800px;
    }
}

.section--slider.milestones .section__head {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
}

.section--slider.milestones .section__head .content {
    margin-top: 30px;
    margin-bottom: 60px;
}

.section--slider.milestones .milestone-slide {
    margin: 0 30px;
}

.section--slider.milestones .milestone-slide .milestone-slide__img {
    border-radius: 9999px;
    aspect-ratio: 1;
    object-fit: cover;
    position: absolute;
    width: 100%;
    transition: 0.3s ease;
}

.section--slider.milestones .milestone-slide .milestone__img-container {
    margin-bottom: 15px;
    padding: 0 15px;
    padding-bottom: 100%;
    position: relative;
    width: calc(100% - 30px);
}

.section--slider.milestones .milestone-slide .h3 {
    margin-bottom: 10px;
}

.section--slider.milestones .milestone-slide a:hover .milestone-slide__img {
    transition: 0.3s ease;
    transform: scale(1.1);
}

.section--slider.destinations {
    background-color: #16324F;
    overflow: hidden;
}

.section--slider.destinations .shell {
    overflow: visible;
    position: relative;
}

.section--slider.destinations .section__inner {
    position: relative;
    z-index: 10;
}

.section--slider.destinations .destination-float-items {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: -25px;
    z-index: 1;
}

.section--slider.destinations .destination-float-items .destination__float-item {
    position: absolute;
    border-radius: 9999px;
    transform: rotate(-45deg);
}

.section--slider.destinations .destination-float-items .destination__float-item.float-item-1 {
    height: 2171px;
    width: 2296px;
    background-color: #2396AF;
    top: -1900px;
    left: -1100px;
    opacity: 0.1;
}

@media (min-width: 1200px) {
    .section--slider.destinations .destination-float-items .destination__float-item.float-item-1 {
        left: -700px;
        top: -1750px;
    }
}

.section--slider.destinations .destination-float-items .destination__float-item.float-item-2 {
    height: 1601px;
    width: 1382px;
    background-color: #8888FC;
    top: -900px;
    left: -50px;
    opacity: 0.1;
}

@media (min-width: 1200px) {
    .section--slider.destinations .destination-float-items .destination__float-item.float-item-2 {
        left: 300px;
        top: -800px;
    }
}

.section--slider.destinations .section__head {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section--slider.destinations .section__head .content {
    margin-top: 30px;
    margin-bottom: 60px;
}

.section--slider.destinations .destination-slide {
    margin: 0 30px;
}

.section--slider.destinations .destination-slide .destination-slide__img {
    border-radius: 9999px;
    aspect-ratio: 1;
    object-fit: cover;
    position: absolute;
    width: 100%;
    transition: 0.3s ease;
}

.section--slider.destinations .destination-slide .destination__img-container {
    margin-bottom: 15px;
    padding: 0 15px;
    padding-bottom: 100%;
    position: relative;
    width: calc(100% - 30px);
}

.section--slider.destinations .destination-slide a:hover .destination-slide__img {
    transition: 0.3s ease;
    transform: scale(1.1);
}

.section--slider.destinations .destination-slide .h3 {
    margin-bottom: 10px;
}

.section--slider.destinations .slick-dots {
    opacity: 0;
    pointer-events: none;
}

.section--slider.profile-slider {
    background-color: #FAFAFC;
}

.section--slider.profile-slider .section__head {
    max-width: 570px;
    margin: auto;
    margin-top: 60px;
}

.section--slider.profile-slider .section__head .content {
    margin-top: 30px;
}

.section--slider.profile-slider .profile-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .section--slider.profile-slider .profile-slide {
        margin: 0 60px;
    }
}

.section--slider.profile-slider .profile-slide .profile-slide__img {
    height: 210px;
    width: 210px;
    object-fit: contain;
}

.section--slider.profile-slider .profile-slide .profile-slide__section {
    margin-bottom: 20px;
}

.section--slider.profile-slider .profile-slide .profile-slide__section * {
    margin: 10px 0;
}

.section--slider.activities-slider {
    background-color: #f4fffc;
    overflow: hidden;
}

.section--slider.activities-slider .section__body {
    margin-bottom: 0;
}

.section--slider.activities-slider .shell {
    position: relative;
}

.section--slider.activities-slider .shell .section__inner {
    position: relative;
    z-index: 10;
}

.section--slider.activities-slider .activities_float_items {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: -25px;
}

.section--slider.activities-slider .activities__float-item {
    position: absolute;
    border-radius: 255px;
    transform: rotate(-45deg);
}

.section--slider.activities-slider .activities__float-item.float-item-1 {
    background-color: #8888FC;
    height: 122px;
    width: 70px;
    bottom: 280px;
    left: 35%;
}

@media (min-width: 767px) {
    .section--slider.activities-slider .activities__float-item.float-item-1 {
        top: 45%;
        bottom: unset;
        left: unset;
    }
}

.section--slider.activities-slider .activities__float-item.float-item-2 {
    background-color: #20DCB2;
    width: 240px;
    height: 418px;
    top: 40%;
    left: -220px;
}

@media (min-width: 767px) {
    .section--slider.activities-slider .activities__float-item.float-item-2 {
        left: -320px;
        top: 75px;
    }
}

.section--slider.activities-slider .activities__float-item.float-item-3 {
    background-color: #CC0671;
    width: 70px;
    height: 89px;
    left: 15px;
    top: 52%;
    mix-blend-mode: darken;
}

@media (min-width: 767px) {
    .section--slider.activities-slider .activities__float-item.float-item-3 {
        left: -110px;
        top: 200px;
    }
}

.section--slider.activities-slider .activities__float-item.float-item-4 {
    background-color: white;
    height: 256px;
    width: 172px;
    z-index: 1;
    left: calc(50% - 90px);
}

@media (max-width: 1023px) {
    .section--slider.activities-slider .activities__float-item.float-item-4 {
        top: 50px;
    }
}

.section--slider.activities-slider .activities__float-item.float-item-5 {
    background-color: #8888FC;
    height: 122px;
    width: 70px;
    top: 240px;
    z-index: 1;
    right: 0;
}

@media (min-width: 767px) {
    .section--slider.activities-slider .activities__float-item.float-item-5 {
        top: 300px;
    }
}

@media (min-width: 1024px) {
    .section--slider.activities-slider .activities__float-item.float-item-5 {
        top: 220px;
    }
}

.section--slider.activities-slider .activities__float-item.float-item-6 {
    background-color: #20DCB2;
    width: 240px;
    height: 418px;
    right: -320px;
    top: 75px;
}

.section--slider.activities-slider .activities__float-item.float-item-7 {
    background-color: #CC0671;
    width: 70px;
    height: 89px;
    right: -100px;
    top: 280px;
    mix-blend-mode: darken;
}

.section--slider .select.select--black {
    background-color: #20DCB2;
    border-color: transparent;
}

.section--slider .select.select--black:hover {
    background: #20DCB2 linear-gradient(to right, #43e695, #32bdb0 100%);
    border-color: #fff;
}

.section--slider .select.select--black .selectric .label {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.section--slider .select.select--black svg path {
    fill: #fff;
}

/* ------------------------------------------------------------ *\
  Section Articles
\* ------------------------------------------------------------ */
.section-articles .section__col {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 7px 40px rgba(0, 0, 0, 0.2);
}

.section--column-content {
    background-color: #FAFAFC;
}

/* ------------------------------------------------------------ *\
  Section Enquire
\* ------------------------------------------------------------ */
.section--enquire {
    background: linear-gradient(180deg, #8888FC 0%, #16324F 39.51%);
    overflow: hidden;
}

.section--enquire .shell {
    overflow: visible;
    position: relative;
    padding-bottom: 120px;
}

@media (max-width: 1199px) {
    .section--enquire .shell {
        margin-top: 120px;
    }
}

.section--enquire .section__inner {
    position: relative;
    z-index: 10;
}

.section--enquire .enquiry_float_items {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: -25px;
    z-index: 1;
}

.section--enquire .enquiry_float_items .enquiry__float-item {
    position: absolute;
    border-radius: 9999px;
    transform: rotate(-45deg);
}

.section--enquire .enquiry_float_items .enquiry__float-item.float-item-1 {
    height: 1314px;
    width: 1522px;
    background-color: #20DCB2;
    opacity: 0.2 !important;
    right: -160%;
    bottom: -77%;
}

@media (min-width: 768px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-1 {
        right: -45%;
    }
}

@media (min-width: 1200px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-1 {
        right: -25%;
        bottom: -71%;
    }
}

.section--enquire .enquiry_float_items .enquiry__float-item.float-item-2 {
    height: 853px;
    width: 902px;
    background-color: #16324F;
    right: -130%;
    bottom: -45%;
}

@media (min-width: 768px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-2 {
        right: -55%;
        bottom: -46%;
    }
}

@media (min-width: 1200px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-2 {
        right: -34%;
        bottom: -43%;
    }
}

.section--enquire .enquiry_float_items .enquiry__float-item.float-item-3 {
    height: 977px;
    width: 780px;
    background-color: #2396AF;
    left: -58%;
    bottom: -54%;
}

@media (min-width: 768px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-3 {
        left: unset;
        right: -14%;
    }
}

@media (min-width: 1200px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-3 {
        bottom: -52%;
    }
}

.section--enquire .enquiry_float_items .enquiry__float-item.float-item-4 {
    height: 334px;
    width: 260px;
    border-radius: 255px;
    background-color: #16324F;
    top: 350px;
    right: -110px;
}

@media (min-width: 768px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-4 {
        top: 400px;
        right: 6%;
    }
}

@media (min-width: 1200px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-4 {
        top: 450px;
        right: 15%;
    }
}

.section--enquire .enquiry_float_items .enquiry__float-item.float-item-5 {
    height: 399px;
    width: 273px;
    border-radius: 255px;
    background-color: #20DCB2;
    top: -230px;
    left: -235px;
}

@media (min-width: 1200px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-5 {
        left: -180px;
        top: 0;
    }
}

.section--enquire .enquiry_float_items .enquiry__float-item.float-item-6 {
    height: 1493px;
    width: 562px;
    border-radius: 255px;
    background-color: #8888FC;
    top: -1350px;
    left: -400px;
    opacity: 0.9 !important;
}

@media (min-width: 1200px) {
    .section--enquire .enquiry_float_items .enquiry__float-item.float-item-6 {
        height: 747px;
        width: 281px;
        top: -530px;
        left: -200px;
    }
}

.section--enquire .section__head h3 {
    margin-bottom: 20px;
}

/* ------------------------------------------------------------ *\
  Section Slider Testimonials
\* ------------------------------------------------------------ */
.section--slider-testimonials {
    background-color: #FAFAFC;
}

/* ------------------------------------------------------------ *\
  Section Activities
\* ------------------------------------------------------------ */
.section--activities .section__head h4 {
    margin-bottom: 20px;
}

/* ------------------------------------------------------------ *\
  Section Posts
\* ------------------------------------------------------------ */
.section-posts {
    background-color: #FAFAFC;
}

/* ------------------------------------------------------------ *\
  Section How It Works
\* ------------------------------------------------------------ */
.section-works {
    overflow: hidden;
}

.section-works .shell {
    position: relative;
}

.section-works .section__inner {
    position: relative;
    z-index: 10;
}

.section-works .section__inner .section__head .h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-works .section__inner .section__head .h2 {
        margin: 10px auto;
        width: 80%;
    }

    .section-works .section__inner .section__head .p4 {
        width: 90%;
        margin: auto;
    }
}

.section-works .works-float-items {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: -25px;
    z-index: 1;
}

.section-works .works__float-item {
    position: absolute;
    border-radius: 9999px;
    transform: rotate(-45deg);
}

.section-works .works__float-item.float-item-1 {
    background-color: #16324F;
    height: 2296px;
    width: 2171px;
    top: -2010px;
    left: -1150px;
    opacity: 0.1 !important;
}

@media (min-width: 1024px) {
    .section-works .works__float-item.float-item-1 {
        top: -1950px;
        left: -650px;
    }
}

.section-works .works__float-item.float-item-2 {
    background-color: #65CEE3;
    width: 1382px;
    height: 1601px;
    top: -1000px;
    left: -50px;
    opacity: 0.1 !important;
}

@media (min-width: 768px) {
    .section-works .works__float-item.float-item-2 {
        top: -1300px;
    }
}

@media (min-width: 1024px) {
    .section-works .works__float-item.float-item-2 {
        left: 200px;
        top: -950px;
    }
}

/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */
.article .article__media {
    margin-bottom: 40px !important;
    border-radius: 20px;
}

.article .article__media:not(.solo-article) img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.article--big .article__head h5 {
    font-size: 4rem;
    font-weight: 300;
    color: #8888FC;
}

/* ------------------------------------------------------------ *\
	Articles
\* ------------------------------------------------------------ */
.articles,
.section-articles {
    background: #f4fffc;
}

.articles .article .article__media::after,
.section-articles .article .article__media::after {
    margin-top: 50px;
}

/* ------------------------------------------------------------ *\
  Locations
\* ------------------------------------------------------------ */
.locations .location:hover .h7 {
    color: #20DCB2;
}

/* ------------------------------------------------------------ *\
  Location Big
\* ------------------------------------------------------------ */
.location-big .location__content h1 {
    margin-bottom: 20px;
}

.location-activities {
    background-color: #FAFAFC;
}

.location-activities h6 {
    font-size: 1.8rem;
}

/* ------------------------------------------------------------ *\
  Quantity
\* ------------------------------------------------------------ */
.quantity .quantity__text {
    font-size: 1.4rem;
    color: #4a4a4a;
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
.slider .slider__slides .slick-arrow {
    top: unset;
    bottom: -10px;
}

.slider .slick-dots-container {
    width: 10rem;
    overflow: hidden;
    display: block;
    padding: 0;
    margin: 0.625rem auto;
    position: relative;
    margin-top: 70px;
}

.slider .slick-dots {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.slider .slick-dots button {
    border: none;
    width: 14px;
    height: 14px;
    background-color: #8888FC;
    opacity: 0.3;
    text-indent: -9999px;
    border-radius: 100%;
    transition: all 200ms ease-in-out;
    margin: auto;
}

.slider .slick-dots li {
    margin: 0 10px;
    height: 18px;
    width: 18px;
    display: none;
    /* only displaying the active bullets and the 2 bullets next to it */
    /* displaying the last three bullets when slick-active class isn't applied to any li before them  */
    /* hiding the last three bullets if slick-active exist before them */
    /* specific conditions to always display the last three bullets */
}

.slider .slick-dots li.slick-active,
.slider .slick-dots li.slick-active+li,
.slider .slick-dots li.slick-active+li+li {
    display: flex;
}

.slider .slick-dots li:nth-last-child(1),
.slider .slick-dots li:nth-last-child(2),
.slider .slick-dots li:nth-last-child(3) {
    display: flex;
}

.slider .slick-dots li.slick-active~li:nth-last-child(1),
.slider .slick-dots li.slick-active~li:nth-last-child(2),
.slider .slick-dots li.slick-active~li:nth-last-child(3) {
    display: none;
}

.slider .slick-dots li.slick-active+li+li:nth-last-child(3),
.slider .slick-dots li.slick-active+li+li:nth-last-child(2),
.slider .slick-dots li.slick-active+li+li:nth-last-child(1),
.slider .slick-dots li.slick-active+li:nth-last-child(3),
.slider .slick-dots li.slick-active+li:nth-last-child(2),
.slider .slick-dots li.slick-active+li:nth-last-child(1) {
    display: flex;
}

.slider .slick-dots .slick-active button {
    opacity: 1;
    width: 18px;
    height: 18px;
}

.slider .slick-arrow.slick-disabled {
    opacity: 0.5;
}

.slider .slider__slide-image {
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    padding: 0.75rem !important;
}

.slider .slider__slide-image::before {
    background-color: #484f5f !important;
}

.slider .slider__slide-image img {
    display: block;
}

.slider .slider__slide {
    color: #4a4a4a;
    font-weight: 600;
}

.slider .slider__slide a p {
    text-transform: uppercase;
    max-width: 130px;
    margin: 0 auto;
}

/* ------------------------------------------------------------ *\
	Testimonial
\* ------------------------------------------------------------ */
.testionial .testimonial__inner {
    background-color: white;
    border: none;
    border-radius: 90px;
    padding: 60px;
}

.testionial .testimonial__head {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

.testionial .testimonial__head:after {
    display: none;
}

.testionial .testimonial__head h6 {
    margin-bottom: 20px;
    color: inherit;
}

.testionial .list-rate svg path {
    fill: #20DCB2;
}

.collections__card__element {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 0px;
}

.collections__cards_content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.collections__cards_content .info {
    margin: 20px 0;
    max-width: 300px;
}

.collections__card__element_mobile {
    display: none;
}

.collections__card_slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.collections__card_slider_right {
    padding: 50px;
    background: url(../images/icons/arrow-right.svg) no-repeat center center;
}

.collections__card_slider_left {
    padding: 50px;
    background: url(../images/icons/arrow-left.svg) no-repeat center center;
}

.collections__cards {
    position: relative;
    min-height: 550px;
    min-width: 315px;
    margin: 15px;
}

.collections__cards .collections__card {
    background: white;
    width: 315px;
    height: 542px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(22, 50, 79, 0.5);
}

.collections__cards .collections__card.collections__card_left {
    position: absolute;
    left: -28px;
    top: -6px;
    transform: rotate(357deg);
    z-index: 10;
}

.collections__cards .collections__card.collections__card_middle {
    position: absolute;
    z-index: 15;
}

.collections__cards .collections__card.collections__card_right {
    position: absolute;
    left: 34px;
    top: -4px;
    transform: rotate(3deg);
    z-index: 13;
}

.collections__cards .collections__card.collections__card_hidden {
    z-index: 1;
    display: none;
}

.collections__cards .collections__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.collections__cards .collections__card .collections__card_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
    height: 100%;
}

.collections__cards .collections__card .collections__card_overlay.card_overlay_green {
    background: linear-gradient(182.98deg, rgba(46, 86, 82, 0.3) 21.83%, rgba(4, 197, 165, 0) 39.54%, rgba(32, 220, 178, 0.96) 73.35%);
}

.collections__cards .collections__card .collections__card_overlay.card_overlay_dark_green {
    background: linear-gradient(182.98deg, rgba(46, 86, 82, 0.3) 21.83%, rgba(44, 84, 80, 0) 39.54%, #02B0A0 73.35%);
}

.collections__cards .collections__card .collections__card_content {
    position: absolute;
    width: 100%;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    padding: 30px;
}

.collections__cards .collections__card .collections-label {
    transform: rotate(90deg);
    display: inline-block;
    right: -30px;
    position: absolute;
    top: 70px;
}

@media (max-width: 1180px) {
    .collections__card_slider {
        margin: 25px;
    }

    .collections__card {
        min-height: 520px;
        min-width: 285px;
    }

    .collections__card__element {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
}

@media (max-width: 570px) {
    .collections__card_slider {
        margin-bottom: 0px;
    }

    .collections__card_slider_right {
        display: none;
    }

    .collections__card_slider_left {
        display: none;
    }

    .collections__card__element_mobile {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        align-content: center;
    }

    .collections__card__element_mobile .collections__card_slider_right {
        display: block;
    }

    .collections__card__element_mobile .collections__card_slider_left {
        display: block;
    }
}

/* ------------------------------------------------------------ *\
  Packages
\* ------------------------------------------------------------ */
.packages {
    display: grid;
    gap: 25px;
}

@media (min-width: 768px) {
    .packages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages {
        grid-template-columns: repeat(3, 1fr);
    }
}

.packages .package {
    width: 100%;
    margin: 0 !important;
}

@media (min-width: 768px) {
    .packages .packages__actions {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .packages .packages__actions {
        grid-column: span 3;
    }
}

.packages.packages--vertical .package {
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 0;
}

.packages.packages--vertical .package .package__inner {
    padding: 30px 25px;
    background-image: url(../images/card-overlay.svg);
    background-position: top right;
    background-repeat: no-repeat;
}

.packages.packages--vertical .package .package__image {
    border-radius: 20px 20px 0 0;
}

/* Map marker icon fix */
#Map_Icon path {
    fill: #44c9bd;
}

.packages--slick {
    display: flex;
    gap: unset;
}

.packages--slick .package {
    width: 85vw;
}

@media (min-width: 767px) {
    .packages--slick .package {
        width: 33vw;
    }
}

@media (min-width: 1024px) {
    .packages--slick .package {
        width: 23.5%;
    }
}

.small-card {
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 0;
    margin: 0 15px;
    min-height: 464px;
    position: relative;
    background-color: #FAFAFC;
}

.small-card .small-card__inner {
    padding: 30px 25px;
    background-image: url(../images/card-overlay.svg);
    background-position: top right;
    background-repeat: no-repeat;
}

.small-card .small-card__aside {
    background-color: #16324F;
    min-height: 210px;
    display: flex !important;
    border-radius: 20px 20px 0 0;
    justify-content: center;
}

.small-card .small-card__image {
    border-radius: 20px 20px 0 0;
    max-height: 210px;
    object-fit: cover;
    width: 100%;
}

.small-card .small-card__actions {
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
}

.small-card .small-card__actions .btn {
    max-width: fit-content;
}

.small-card .small-card__content {
    display: flex;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.small-card .small-card__content h6 {
    margin-bottom: 10px;
}

.small-card .small-card__content .list-specification {
    margin-bottom: 21px;
}

.small-card .small-card__content p {
    margin-bottom: 32px;
}

/* ------------------------------------------------------------ *\
	Details
\* ------------------------------------------------------------ */
.details .details__aside h5 {
    font-size: 3rem;
}

.details .details__aside img {
    border-radius: 20px;
}

.details .details__details .list-details {
    border-color: #e8e9ed;
}

img {
    border-radius: 20px;
}

/* ------------------------------------------------------------ *\
	Selectric
\* ------------------------------------------------------------ */
.selectric .selectric-scroll li {
    background-color: #fff;
    color: #4a4a4a;
}

.selectric-items {
    background-color: #fff;
}

.selectric-items ul li {
    font-size: 1.4rem;
    font-weight: 600;
}

.select.select--black {
    background-color: #e8e9ed;
}

.select.select--black .label {
    color: #4a4a4a;
    font-size: 1.4rem;
}

.select.select--black path {
    fill: #4a4a4a;
}

/* ------------------------------------------------------------ *\
	Featured
\* ------------------------------------------------------------ */
.featured .featured__slide h2 {
    color: inherit;
}

.featured .featured__slide .btn {
    background-color: #20DCB2;
}

/* Tablet Portrait */
@media (max-width: 1023px) {
    .featured .featured__slide h2 {
        font-size: 4.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .featured .featured__slide h2 {
        font-size: 3rem;
    }
}

/* ------------------------------------------------------------ *\
  Post
\* ------------------------------------------------------------ */
.post {
    box-shadow: 0px 4px 20px 0px rgba(22, 50, 79, 0.1019607843);
}

.post .post__content {
    min-height: 225px;
    height: unset;
}

.post .post__content * {
    margin: 5px 0;
}

/* ------------------------------------------------------------ *\
  Post Overview
\* ------------------------------------------------------------ */
/* Mobile */
@media (max-width: 767px) {
    .post-overview {
        padding: 22px 24px;
    }

    .post-overview .post__shell {
        max-width: 375px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .post-overview .post__title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .post-overview p+p {
        margin-top: 20px;
    }
}

/* ------------------------------------------------------------ *\
  Post Autor
\* ------------------------------------------------------------ */
.post-autor .post__aside {
    font-size: 1.4rem;
}

.post-autor .post__aside h6 {
    margin-bottom: 3px;
    font-size: 1.6rem;
    letter-spacing: 0.05rem;
}

/* Mobile */
@media (max-width: 767px) {
    .post-autor {
        padding: 30px 16px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .post-autor .post__aside {
        margin-top: 10px;
        margin-right: 20px;
    }
}

.squared-img,
.slider .slider__slide-image {
    padding: 2.5rem;
    position: relative;
}

.squared-img img,
.slider .slider__slide-image img {
    border-radius: 20px;
}

.squared-img::before,
.slider .slider__slide-image::before,
.squared-img::after,
.slider .slider__slide-image::after {
    content: "";
    position: absolute;
    display: block;
    width: 40%;
    padding-bottom: 40%;
    z-index: -5;
}

.squared-img::before,
.slider .slider__slide-image::before {
    top: 0;
    right: 0;
    background-color: #52d0b3;
    border-top-right-radius: 20px;
}

.squared-img::after,
.slider .slider__slide-image::after {
    bottom: 0;
    left: 0;
    background-color: #484f5f;
    border-bottom-left-radius: 20px;
}

.squared-img.secondary,
.slider .secondary.slider__slide-image {
    padding: 0.75rem;
}

.squared-img.secondary::before,
.slider .secondary.slider__slide-image::before {
    background-color: #484f5f;
}

.font-icon-external-link:after {
    content: "@";
    margin: 0 0 0 10px;
    vertical-align: bottom;
}

.categories__wrapper {
    display: grid;
    grid-gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .categories__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.categories__item {
    width: 100%;
}

.categories__item:hover h6 {
    color: #52d0b3;
}

@media (min-width: 768px) {
    .category-big {
        margin-bottom: 120px;
    }
}

.category-big .location__media figure {
    padding: 2rem;
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .category-big .location__media figure {
        padding: 1rem;
    }
}

.category-big .location__media img {
    position: relative;
    transform: none;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
}

@media (max-width: 767px) {
    .category-big .location__content {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .category-big .location__content h3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .activities-category-slider .section__body {
        margin-bottom: 0;
    }
}

.activities-category-slider .activities-slider-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

@media (min-width: 768px) {
    .activities-category-slider .activities-slider-content {
        flex-direction: row;
    }
}

.activities-category-slider .activities-slider-content>article {
    width: 100%;
    margin-bottom: 3rem;
    max-width: none;
    text-align: left;
    color: #16324F;
    padding: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .activities-category-slider .activities-slider-content>article {
        width: 60%;
        margin: 0;
        padding: 4rem;
    }
}

.activities-category-slider .activities-slider-content>article::before,
.activities-category-slider .activities-slider-content>article::after {
    content: "";
    display: block;
    position: absolute;
    width: 4rem;
    height: 4rem;
    pointer-events: none;
}

@media (min-width: 768px) {

    .activities-category-slider .activities-slider-content>article::before,
    .activities-category-slider .activities-slider-content>article::after {
        width: 8rem;
        height: 8rem;
    }
}

.activities-category-slider .activities-slider-content>article::before {
    top: 0;
    left: 0;
    border-top: 1px solid #16324F;
    border-left: 1px solid #16324F;
    border-top-left-radius: 20px;
}

.activities-category-slider .activities-slider-content>article::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #16324F;
    border-right: 1px solid #16324F;
    border-bottom-right-radius: 20px;
}

.activities-category-slider .activities-slider-content>article h3 {
    margin-bottom: 15px;
}

.activities-category-slider .activities-slider-content>.btn {
    width: 100%;
    align-self: center;
    max-width: none;
}

@media (min-width: 768px) {
    .activities-category-slider .activities-slider-content>.btn {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .experiences .section__inner {
        padding-bottom: 0;
    }
}

.experiences .section__head {
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .experiences .section__head {
        margin-bottom: 120px;
    }
}

@media (min-width: 768px) {
    .experiences .experiences__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .experiences .experiences__list {
        display: grid;
		grid-gap: 4rem;
		grid-template-columns: repeat(3, 1fr);
    }
}

.experiences .experiences__list .slick-arrow {
    display: none !important;
}

.experiences .experiences__list .slick-list {
    overflow: visible;
}

.experiences .experiences__list .package {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 25px 5px rgba(0, 0, 0, 0.05);
    margin-right: 25px;
    border-radius: 20px;
    padding: 0;
	width:75vw;
}

@media (min-width: 768px) {
    .experiences .experiences__list .package {
        width: 100%;
    }
}

.experiences .experiences__list .package .package__inner {
    display: flex;
    padding: 30px 25px;
    background-image: url(../images/card-overlay.svg);
    background-position: top right;
    background-repeat: no-repeat;
    height: 100%;
}

.experiences .experiences__list .package .package__image {
    border-radius: 20px 20px 0 0;
}

.experiences .experiences__list .package .list-specification li {
    width: 3rem;
    height: 3rem;
}

.experiences .experiences__list .package .list-specification li i {
    width: 3rem;
    height: 3rem;
}

.experiences .experiences__list .package .package__content {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.experiences .experiences__list .package .package__content h6 {
    text-align: left;
    margin-bottom: 15px;
}

.experiences .experiences__list .package .package__content p {
    margin-bottom: 20px;
    text-align: left;
}

.experiences .experiences__list .package .package__actions {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
	gap: 10px;
}

.experiences .experiences__list .package .package__actions .btn {
    max-width: none;
    margin: 0;
}

@media (max-width: 767px) {
    .experiences .experiences__list .package .package__actions .btn {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 500px) {
    .experiences .experiences__list .package .package__actions .btn {
        width: 100%;
    }

    .experiences .experiences__list .package .package__actions .btn:not(:first-child) {
        margin-top: 1rem;
    }
}

@media (max-width: 500px) {
    .experiences .experiences__list .package .package__actions {
        flex-direction: column;
    }
}

#related-activities .package__actions {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

#related-activities .package__actions .btn {
    width: 45%;
    max-width: none;
    margin: 0;
}

@media (max-width: 767px) {
    #related-activities .package__actions .btn {
        width: calc(50% - 2rem);
    }
}

.activity-page__tag {
    margin-top: 10px;
    display: inline-block;
}

.activity-page__tag .tag__container {
    padding: 8px 20px;
    margin-bottom: unset;
}

.tag__container {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 10px;
    border-radius: 28px;
}

.tag__container .tag__title {
    font: 500 12px/18px "Poppins", sans-serif;
    letter-spacing: 0.05em;
}

.tag__holder {
    text-align: left;
}

.customers {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    background: #f4fffc;
}

.customers .text-label {
    text-align: center;
}

.customers img {
    border-radius: 0;
}

.customers .customers__list .customer {
    display: flex !important;
    padding: 2rem 0;
}

.customers .customers__list .customers__item {
    max-width: 100px;
    margin: auto 3rem;
    height: 40px;
    object-fit: contain;
}

.banner--element {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    min-height: 295px;
}

@media (min-width: 768px) {
    .banner--element {
        min-height: 450px;
    }
}

@media (min-width: 1024px) {
    .banner--element {
        min-height: 790px;
    }
}

.featured-collections {
    background-color: #20DCB2;
    overflow: hidden;
}

.featured-collections .shell {
    max-width: 1345px;
    overflow: visible;
    position: relative;
}

.featured-collections .section__inner {
    position: relative;
    z-index: 10;
}

.featured-collections .featured_float_items {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-left: -25px;
    z-index: 1;
}

.featured-collections .featured_float_items .featured-float-item {
    position: absolute;
    transform: rotate(45deg);
    border-radius: 9999px;
}

.featured-collections .featured_float_items .featured-float-item.float-item-1 {
    height: 1402px;
    width: 1625px;
    background-color: #04C5A5;
    bottom: -1000px;
    right: -1100px;
}

@media (min-width: 768px) {
    .featured-collections .featured_float_items .featured-float-item.float-item-1 {
        bottom: -1100px;
    }
}

@media (min-width: 1440px) {
    .featured-collections .featured_float_items .featured-float-item.float-item-1 {
        right: -900px;
    }
}

.featured-collections .featured_float_items .featured-float-item.float-item-2 {
    height: 853px;
    width: 902px;
    background-color: #16324F;
    bottom: -700px;
    right: -600px;
}

@media (min-width: 1440px) {
    .featured-collections .featured_float_items .featured-float-item.float-item-2 {
        bottom: -600px;
    }
}

.featured-collections .featured_float_items .featured-float-item.float-item-3 {
    height: 780px;
    width: 997px;
    background-color: #2396AF;
    bottom: -750px;
    left: -400px;
}

@media (min-width: 768px) {
    .featured-collections .featured_float_items .featured-float-item.float-item-3 {
        left: unset;
        right: -300px;
        bottom: -800px;
    }
}

@media (min-width: 1440px) {
    .featured-collections .featured_float_items .featured-float-item.float-item-3 {
        bottom: -750px;
    }
}

.featured-collections .collection-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    max-width: 420px;
}

@media (min-width: 768px) {
    .featured-collections .collection-container {
        max-width: 645px;
        gap: 5px;
    }
}

@media (min-width: 1024px) {
    .featured-collections .collection-container:not(.four-wide) {
        max-width: 970px;
    }
}

@media (min-width: 1440px) {
    .featured-collections .collection-container.four-wide {
        max-width: 1295px;
    }
}

.featured-collections .collection-card {
    height: 430px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 40px 0px rgba(22, 50, 79, 0.3019607843);
    border-radius: 20px;
    text-decoration: none !important;
}

.featured-collections .collection-card .collection-card__img {
    margin-top: 25px;
    border-radius: 0;
}

@media (min-width: 768px) {
    .featured-collections .collection-card {
        width: 320px;
        height: 519px;
    }
}

.featured-collections .collection-card:before {
    content: "";
    background: radial-gradient(227.84% 58.19% at 50.12% 16.18%, rgba(31, 39, 57, 0.2) 56.2%, rgba(31, 39, 57, 0.9) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 20px;
}

.featured-collections .collection-card:hover .collection-card__img {
    top: -10px;
}

.featured-collections .collection-card:hover .collection-card__content {
    top: -90px;
}

.featured-collections .collection-card:hover .hover-only {
    opacity: 1;
    visibility: visible;
}

.featured-collections .collection-card__img {
    transition: all 200ms ease-in-out;
    position: relative;
    z-index: 10;
    top: 0;
    width: 78px;
}

.featured-collections .collection-card__content {
    margin-top: auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-gap: 10px;
    top: 0;
    transition: all 200ms ease-in-out;
}

@media (max-width: 768px) {
    .featured-collections .collection-card__content h2 {
        width: 60%;
        margin: 0 auto;
    }
}

.featured-collections .collection-card__content .hover-only {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 200ms ease-in-out;
}

/*# sourceMappingURL=bundle.css.map */
