:root {
    --dgray: hsla(0, 0%, 7%, 1);
    --gray: hsla(0, 0%, 13%, 1);
    --lgray: hsla(60, 6%, 87%, 1);
    --accent: hsla(208, 99%, 43%, 1);
    --accent-5: hsla(208, 99%, 43%, .05);
    --accent-15: hsla(208, 99%, 43%, .15);
    --accent2: hsla(209, 100%, 28%, 1);
    --accent2-5: hsla(209, 100%, 28%, .05);
    --accent2-15: hsla(209, 100%, 28%, .15);
    --body: var(--dgray);
    --title: var(--accent);
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-family: 'apparat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--body);
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: white;
    background-position: bottom center;
    background-repeat: no-repeat;
}

img,
video {
    width: 100%;
    object-fit: cover;
}

section {
    position: relative;
    padding: 3.75rem 0;
}

footer {
    margin-bottom: 3.125rem;
}

*:focus,
button:focus,
a:focus {
    outline: 1px dotted var(--lgray) !important;
}

h1,
h2,
h3,
h4,
h5 {
    position: relative;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: .9375rem;
    color: var(--title);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

p+h2,
p+h3,
p+h4,
p+h5,
ul+h2,
ul+h3,
ul+h4,
ul+h5 {
    margin-top: 1.875rem;
}

a {
    color: var(--accent);
    font-weight: 500;
    transition: color .3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--accent2);
}

ol,
ul {
    padding-left: 1.125rem;
    list-style-position: outside;
}

ol {
    list-style: lower-alpha;
}

ul {
    list-style: square;
}

li::marker {
    color: var(--accent);
}

label {
    position: relative;
    display: block;
    margin: 0;
    margin-top: 0.875rem;
}

legend+label {
    margin-top: 0;
}

label+input {
    min-width: 100%;
}

fieldset {
    margin-bottom: 1.875rem;
}

strong {
    font-weight: 700;
}

.btn {
    padding: .4375rem 1.875rem;
    font-family: 'apparat', sans-serif;
    font-weight: 500;
    line-height: 1.875rem;
    border-radius: 3.125rem;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease;
}

.btn.btn-primary {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: white;
}

.btn.btn-secondary {
    background-color: white;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary:active:not(:disabled):not(.disabled),
.btn.btn-primary.active:not(:disabled):not(.disabled),
.btn.btn-primary:hover {
    background-color: var(--body);
    border-color: var(--body);
    color: white;
    box-shadow: none;
}

.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary:active:not(:disabled):not(.disabled),
.btn.btn-secondary:hover {
    background-color: var(--body);
    border-color: var(--body);
    color: white;
    box-shadow: none;
}

.btn.btn-icon {
    position: relative;
    padding: .4375rem 3.1875rem .4375rem 1.875rem;
}

.btn.btn-icon>i {
    position: absolute;
    right: .9375rem;
    top: 50%;
    transform: translateY(-50%);
}

.accent {
    color: var(--accent);
}

.accent2 {
    color: var(--accent2);
}

.section-title h3 {
    margin-bottom: 2rem;
}

section:not(#hero)+section {
    padding-top: 0;
}

/* ::::: Navigation ::::: */
#nav-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    background: var(--accent);
}

#nav {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    height: 3.125rem;
    width: calc(100% + 1.875rem);
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

#nav>* {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    background-color: var(--accent);
    color: white;
}

#nav-desktop,
.nav-submenu {
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 3.125rem;
    right: 0;
    overflow: hidden;
    z-index: 1;
    transform: translateX(-100%);
    transition: transform .3s ease;
    background: white;
}

#nav-desktop.open,
.nav-submenu.open {
    transform: translateX(0);
    background: white;
}

.nav-menu {
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-link,
.nav-dropdown {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .75rem .9375rem;
    background-color: transparent;
    color: var(--accent);
    font-weight: 500;
    border: 0;
    text-decoration: none;
    transition: color .3s ease, background-color .3s ease;
    font-family: 'poppins', sans-serif;
    text-align: left;
}

.nav-link:hover,
.nav-mobile-cta:hover,
.nav-dropdown:hover {
    text-decoration: none;
    color: var(--accent2);
}

.nav-item-active>a,
.nav-item-active>button {
    color: var(--accent);
}

.nav-item-active>a:hover,
.nav-item-active>button:hover {
    color: var(--accent2);
}

.nav-dropdown i {
    display: block;
    margin-left: .5rem;
}

.nav-item {
    position: relative;
}

.nav-submenu .nav-item:not(:first-of-type) {
    border-top: 1px solid var(--lgray);
}

.nav-submenu ul {
    list-style: none;
    padding: 0;
}

.nav-logo {
    height: 3.125rem;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
}

.nav-logo .full-logo {
    display: none;
}

.nav-logo img {
    height: 100%;
    object-fit: contain;
}

.logo-light {
    display: none;
}

.nav-logo-wrap,
.nav-mobile-cta,
.nav-toggler {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-width: 0 1px 0 0;
    color: white;
    font-weight: 200;
    z-index: 10;
}

.nav-toggler-icon {
    display: inline-block;
    position: relative;
    width: 1rem;
    height: 1.5rem
}

.nav-toggler-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    opacity: 1;
    left: 0;
    background: white;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#nav-desktop .nav-toggler-icon span {
    background-color: var(--accent);
}

.nav-toggler-icon span:nth-child(1) {
    top: 5px
}

.nav-toggler-icon span:nth-child(2),
.nav-toggler-icon span:nth-child(3) {
    top: 11px
}

.nav-toggler-icon span:nth-child(4) {
    top: 17px
}

.open>.nav-toggler-icon span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%
}

.open>.nav-toggler-icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.open>.nav-toggler-icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.open>.nav-toggler-icon span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%
}

.nav-mobile-btn {
    background: transparent;
    color: white;
    border: 0;
    text-align: right;
}

.nav-mobile-btn i {
    margin-left: .4375rem;
}

.nav-mobile-cta,
.nav-toggler {
    font-size: 0;
    background: white;
    color: var(--body);
    text-decoration: none;
}

.nav-mobile-cta i {
    font-size: 1rem;
}

.nav-submenu li.nav-item.nav-item-active>.nav-link,
.nav-submenu li.nav-item.nav-item-active>.nav-dropdown {
    background-color: var(--dgray);
    color: white;
}

.nav-item-all .nav-link {
    font-size: .75rem;
    justify-content: flex-end;
    font-weight: 500;
}

.nav-item-contact,
.nav-item-shop {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .4375rem .9375rem;
}

.nav-item-contact .nav-link,
.nav-item-shop .nav-link {
    justify-content: flex-start;
}

#nav-desktop .nav-item-contact .nav-link,
#nav-desktop .nav-item-shop .nav-link {
    background: var(--accent);
    height: 2.5rem;
    border-radius: 20px;
    color: white;
    padding: 0 1.875rem;
    transition: background-color .3s ease;
}

#nav-desktop .nav-item-contact .nav-link:hover {
    background: var(--accent2);
}

#nav-desktop .nav-item-shop .nav-link {
    background: var(--dgray);
}

#nav-desktop .nav-item-shop .nav-link:hover {
    background: var(--accent);
}

#nav-desktop .nav-item-contact .nav-link i,
#nav-desktop .nav-item-shop .nav-link i {
    margin-right: .9375rem;
}

/* ::::: Hero ::::: */
.nav-menu {
    align-items: center;
}

#hero {
    overflow: hidden;
    padding: 0;
    padding: 3rem 0;
}

.hero-slider,
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-img-wrap {
    height: 100%;
}

.hero-slider,
.slick-list,
.slick-track {
    height: 100%;
}

.hero-slide {
    position: relative;
}

.hero-img-wrap .container,
.hero-img-wrap .row,
.hero-img-wrap .row>*,
.hero-content-wrap .container {
    height: 100%;
}

.hero-img-wrap img,
.hero-img img {
    height: 100%;
}

.hero-slider::after,
.hero-img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray);/*--accent*/
    opacity: 50%;
}

.hero-content-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title h1,
.hero-title h2 {
    color: white;
}

.hero-title h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title h2 {
    font-weight: 300;
    margin-bottom: 0;
}

.hero-main {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-sub {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.5rem;
    font-weight: 100;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hero-content-border {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-btn {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ::::: Search bar ::::: */
.hero-search {
    position: relative;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
}

#activities .hero-search {
    border: 1px solid var(--lgray);
    margin-bottom: 2rem;
}

.hero-search-fieldset hr {
    margin: 1.5rem 0 0;
    border-color: var(--lgray);
}

.hero-search .hero-search-toggleable {
    height: 9.375rem;
    overflow: visible;
    transition: height .3s ease, opacity .6s ease;
    margin: 0 0 1.5rem;
    background-color: white;
    position: relative;
    opacity: 1;
}

.hero-search.closed .hero-search-toggleable {
    height: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
}

.hero-search-title {
    background: var(--accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-search-title h4 {
    color: white;
    margin: 0;
    padding: 1rem;
}

.hero-search-advanced {
    border: 0;
    background: var(--accent);
    color: white;
    font-size: 0;
    padding: 1rem;
}

.hero-search-advanced i {
    font-size: 1rem;
    margin: 0;
}

.hero-search-form {
    padding: 1rem;
}

.hero-search-header {
    margin-bottom: 1rem;
}

.hero-search-header label {
    font-weight: 700;
}

.hero-search-group-slider,
.hero-search-category-slider {
    display: flex;
    width: 100%;
}

.hero-search-group-slider .slick-list,
.hero-search-category-slider .slick-list {
    width: 100%;
}

.hero-search-group,
.hero-search-category {
    margin: 0 .5rem;
    padding: 0;
    overflow: hidden;
    min-width: 9.375rem;
}

.hero-search-group .form-check-input,
.hero-search-category .form-check-input {
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    margin: 0;
    z-index: -1;
    left: 0;
    pointer-events: none;
}

.hero-search-group .form-check-label,
.hero-search-category .form-check-label {
    height: 100%;
    margin: 0;
}

.hero-search-group h6,
.hero-search-category h6 {
    margin: 0;
}

.form-search-group-body,
.form-search-category-body {
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.form-check-input:checked+.form-search-group-body,
.form-check-input:checked+.form-search-category-body {
    background: var(--accent);
    color: white;
}


.hero-search-form .slick-list {
    margin: 0 1rem;
}

.hero-search-form .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--accent);
    color: var(--accent);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 3.125rem;
    z-index: 100;
}

.hero-search-form .slick-arrow.button-prev {
    left: 0;
}

.hero-search-form .slick-arrow.button-next {
    right: 0;
}

.hero-search-fields {
    display: flex;
    flex-direction: column;
}

.hero-search-fields .input-group {
    flex-direction: column;
}

.hero-search-fields .input-group .input-wrap {
    margin-bottom: 1rem;
}

.hero-search-fields label.form-check-label {
    padding: 0;
}

.input-wrap select,
.input-wrap input {
    border-radius: 3.125rem;
}

/* ::::: Header ::::: */
header {
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.header-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header-img,
.header-img img {
    height: 100%;
}

.header-img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent);
    opacity: 50%;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-title h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.header-title h2 {
    margin: 0;
    font-weight: 300;
}

.header-title h1,
.header-title h2 {
    color: white;
}

/* ::::: Breadcrumbs ::::: */
#breadcrumbs-wrap {
    padding: 0;
}

#breadcrumbs-wrap .breadcrumb-item+.breadcrumb-item::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 700;
    color: var(--accent);
    font-size: .625rem;
    margin: 0 1rem;
}

#breadcrumbs-wrap .breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--dgray);
    padding: 1rem 0;
}

#breadcrumbs-wrap .breadcrumb-item a {
    color: var(--dgray);
}

#breadcrumbs-wrap .breadcrumb-item a i {
    color: var(--accent);
    margin-right: .5rem;
}

.breadcrumb {
    border-bottom: 1px solid var(--lgray);
    margin-bottom: 2rem;
}

/* ::::: About ::::: */
.about-content {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--lgray);
    border-radius: 1rem;
    overflow: hidden;
}

.about-img {
    flex: 0 0 auto;
    width: 100%;
}

.about-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.about-body {
    flex: 0 0 auto;
    width: 100%;
    padding: 1rem;
}

.about-body h5 {
    color: var(--body);
}

.about-btns {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.about-btns .btn {
    margin-bottom: 1rem;
}

/* ::::: CTA ::::: */
#cta {
    padding-top: 2rem;
}

.cta-wrap {
    background: var(--accent2);
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-body {
    margin: 0 0 1rem 0;
}

.cta-body h3 {
    color: white;
    margin: 0;
}

.cta-wrap .btn.btn-primary {
    background-color: white;
    color: var(--accent);
    border-color: var(--accent2);
}

.cta-wrap .btn.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* ::::: Card ::::: */
.card {
    position: relative;
    border-color: var(--lgray);
    border-radius: 1rem;
    overflow: clip;
    margin-bottom: 1.5rem;
    padding-bottom: 2.875rem;
    height: calc(100% - 1.5rem);
    box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 2px 0px 8px 0 rgba(0, 0, 0, 0.25);
}

.card-img-wrap {
    position: relative;
    padding-top: 62.5%;
}

.card-img-tags {
    position: absolute;
    top: 1rem;
    right: 0;
    z-index: 2;
}

.card-title-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    padding: 0;
    margin: 0;
}

.tag-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    list-style: none;
    padding: 0;
}

.tag-list .tag,
.card-title-tag .tag {
    line-height: 1;
    margin-bottom: .5rem;
    border-radius: 1rem 0 0 1rem;
    color: white;
    padding: .5rem .75rem;
    box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
}

.card-title-tag .tag {
    border-radius: 1rem;
    box-shadow: none;
}

.tag-list .tag.tag-icon {
    padding: 0 .75rem 0 0;
}

.tag-sponsored {
    background-color: var(--bs-warning);
}

.tag-new {
    background-color: var(--bs-success);
}

.tag-promo {
    background-color: var(--bs-danger);
}

.tag-icon .icon {
    display: inline-block;
    background: white;
    height: 2rem;
    width: 2rem;
    border-radius: 2rem;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--accent);
}

.tag-icon .icon i {
    --fa-beat-scale: 1.25;
}

.tag-sponsored.tag-icon .icon {
    color: var(--bs-warning);
    border-color: var(--bs-warning);
}

.tag-new.tag-icon .icon {
    color: var(--bs-success);
    border-color: var(--bs-success);
}

.tag-promo.tag-icon .icon {
    color: var(--bs-danger);
    border-color: var(--bs-danger);
}

.tag-list .tag > a {
    display: flex;
    padding: 0;
    align-items: center;
    color: white;
}

.card-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: 0;
}

.card-img img {
    height: 100%;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 1rem;
    margin: 0;
}

.activity-detail-card .card-title {
    padding: 1rem;
}

.card-title-icon {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 3.125rem;
    background: var(--accent);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
}

.activity-detail-card .card-title-icon {
    transform: none;
    margin-bottom: 1rem;
}

.card-title-info {
    width: 100%;
}

.card-title-info-name h4 {
    margin: 0;
    width: 100%;
    display: block;
    margin: 0;
    /*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
}

.card-title-info-place h5 {
    color: var(--dgray);
    font-size: .75rem;
    font-weight: 500;
    margin: 0;
}

.card-info {
    position: relative;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-info::before {
    content: '';
    display: block;
    background-color: var(--lgray);
    height: 1px;
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
}

.card-info-amount {
    font-size: .875rem;
}

.card-info-amount strong {
    color: var(--accent);
}

.card-info-price {
    text-align: right;
}

.card-info-price .price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 500;
    line-height: 1.2;
}

.card-info-price .price-old {
    font-size: .875rem;
    text-decoration: line-through;
    text-decoration-color: var(--bs-danger);
}

.card-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.875rem;
}

.card-btn .btn {
    border-radius: 0;
    width: 100%;
}

.card-btn .btn i {
    margin-left: 1rem;
}

.card.card-sponsored {
    border-color: var(--bs-warning);
}

.card.card-sponsored .card-title-info-name h4,
.card.card-sponsored .price,
.card.card-sponsored .card-info-amount strong {
    color: var(--bs-warning);
}

.card.card-sponsored .btn {
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}

.card.card-sponsored .btn:hover {
    background-color: var(--dgray);
    border-color: var(--dgray);
}

#news-detail .card.news-article:hover {
    box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0);
    border-color: var(--lgray);
}

/* ::::: Activities ::::: */

.activities-pgn {
    margin-top: 2rem;
}

.activities-btn-more {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.activities-pgn-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn.btn-pg {
    padding: 0.4375rem;
    width: 2.875rem;
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin: 0 .25rem;
}

.activities-pgn>.btn {
    display: none;
}

.activity-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.activity-gallery>.activity-gallery-img {
    position: relative;
    flex: 0 0 auto;
    width: calc(50% - .75rem);
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: clip;
    cursor: zoom-in;
    border: 1px solid var(--lgray);
    box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.activity-gallery>.activity-gallery-img img {
    height: 100%;
}

.activity-gallery>.activity-gallery-img:hover {
    border-color: var(--accent);
    box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, .25);
}

.activity-gallery>.activity-gallery-img:first-of-type {
    width: 100%;
}

.activity-gallery>.activity-gallery-img:nth-of-type(7)::after {
    content: '\2b';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 3.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsla(0, 0%, 7%, .75);
    color: white;
    pointer-events: none;
}

.more-img {
    display: none;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    height: 0;
    width: 0;
}

.activity-shedule,
.activity-share {
    margin-bottom: 2rem;
}

.activity-timetable {
    list-style: none;
    padding: 1rem;
    margin: 0;
    border-radius: 1rem;
    border: 1px solid var(--lgray);
}

.activity-timetable li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: .5rem 0 .25rem;
    border-bottom: 1px solid var(--lgray);
}

.activity-timetable li:last-of-type {
    border: 0;
}

.activity-social ul,
.card-company-social ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.activity-social a,
.card-company-social a {
    display: inline-block;
    width: 2.1875rem;
    height: 2.1875rem;
    background: var(--accent);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 0.9375rem 0 0;
    transition: background-color .3s ease, color .3s ease;

}

.activity-social a:hover,
.card-company-social a:hover {
    background-color: var(--accent2);
}

.company-card {
    padding: 1rem;
}

.company-card .card-icon {
    border-radius: 50%;
    overflow: clip;
    width: 6.25rem;
    height: 6.25rem;
    border: 1px solid var(--lgray);
    margin: 0 auto;
}

.company-card .card-icon img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.card-company-title {
    margin: 1rem 0;
    text-align: center;
}

.card-company-title h5 {
    margin-bottom: .25rem;
}

.card-company-title h6 {
    font-weight: 100;
    font-size: .875rem;
    margin: 0;
}

.card-company-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.card-company-body p:last-of-type {
    margin: 0;
}

/* ::::: Sponsor ::::: */

.sponsors-row:nth-of-type(2) {
    display: none;
}

.sponsor {
    position: relative;
    border: 1px solid var(--lgray);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.sponsor::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.sponsor a {
    position: absolute;
    padding: 1rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sponsor a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ::::: News ::::: */
.news-article-second {
    position: relative;
    padding-bottom: 3.875rem;
    border: 1px solid var(--lgray);
    border-radius: 1rem;
}

.news-article-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: flex-end;
}

.news-article-second+.news-article-second {
    margin-top: 1.5rem;
}

.news-article .card-title {
    padding: 1rem;
}

.news-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* ::::: Tabs ::::: */
.nav-tabs {
    border-color: var(--accent2);
}

.nav-tabs .nav-link {
    font-size: 0;
    background-color: #F0F0F0;
    border-color: var(--lgray);
    border-bottom-color: var(--accent2);
    color: var(--dgray);
    border-radius: 1rem 1rem 0 0;
}

.nav-tabs .nav-link.active {
    border-color: var(--accent2);
    border-bottom-color: white;
}

.nav-tabs .nav-link>i {
    font-size: 1rem;
}

.tab-content {
    padding: 2rem 0;
}

.table .tag {
    font-size: .75rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.table .tag.tag-booked,
.table .tag.tag-full,
.table .tag.tag-paid {
    background-color: var(--bs-success);
}

.table .tag.tag-cancelled,
.table .tag.tag-unpaid {
    background-color: var(--bs-danger);
}

.table .tag.tag-advance {
    background-color: var(--bs-warning);
}

.table .tag.tag-refund {
    background-color: var(--bs-info);
}

.table thead tr {
    background-color: hsla(208, 99%, 43%, .1);
    color: var(--accent);
    font-size: .75rem;
}

.table thead tr:first-of-type {
    background: var(--accent);
    color: white;
}


.table thead tr:first-of-type th {
    text-align: center;
}

.table td {
    font-size: .75rem;
}

/* ::::: Form ::::: */
#data-form {
    margin-top: 2rem;
}

.file-upload {
    position: relative;
}

.file-upload.max {
    cursor: not-allowed;
}

.file-upload input.file-upload-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    opacity: 0;
}

.file-upload input[type="file" i]::-webkit-file-upload-button {
    cursor: pointer;
}

.upload__icon .fa-arrow-up {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -35%);
    font-size: .625rem;
}

.file-upload .file-upload-field {
    position: relative;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--lgray);
    border-radius: 1rem !important;
    padding: 1rem;
    transition: border-color .3s ease;
    width: 100%;
}

.file-upload-icon {
    position: relative;
    font-weight: 500;
}

.file-upload-icon i {
    font-size: 1.875rem;
    transition: font-weight .1s ease;
}

.file-upload-icon::after {
    content: "\f062";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    transition: color .2s ease;
}

.file-upload-succes .file-upload-icon,
.filename.file-valid>i {
    color: var(--bs-success);
}

.file-upload-succes .file-upload-icon::after {
    content: "\f00c";
}

.file-upload-error .file-upload-icon,
.filename.file-error>i {
    color: var(--bs-danger);
}

.file-upload-error .file-upload-icon::after {
    content: "\f00d";
}

.file-upload-filename {
    color: var(--mgray);
    font-size: .75rem;
    margin-top: 0.9375rem;
}

.filenames {
    font-size: .75rem;
    align-self: flex-start;
}

.filename+.filename {
    margin-top: .5rem;
}

.filename>i {
    margin-right: .5rem;
}

.form-control:disabled {
    cursor: not-allowed;
}

.form-gallery {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border: 1px solid var(--lgray);
    border-radius: 1rem;
    padding: 0.75rem 0 0;
    margin-bottom: 1rem;
}

.form-gallery-img {
    position: relative;
    flex: 0 0 auto;
    width: calc(33.333333% - 1.5rem);
    margin: 0 .75rem 1.5rem;
    cursor: zoom-in;
    border-radius: 1rem;
    border: 1px solid var(--lgray);
    overflow: hidden;
}

.form-gallery-img img {
    height: 100%;
}

.gallery-img-delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: white;
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* ::::: Footer ::::: */
footer {
    border-top: 1px solid var(--lgray);
    padding-top: 3rem;
}

.footer-logo {
    width: 100%;
    max-width: 18.75rem;
    margin-bottom: 2rem;
}

.footer-block {
    margin-bottom: 1.5rem;
}

.footer-title h5 {
    margin: 0;
}

.footer-title {
    margin-bottom: 2rem;
}

.footer-block ul {
    list-style-type: none;
    padding: 0;
}

.footer-block a {
    color: var(--dgray);
    transition: padding .3s ease;
}

.footer-block a:hover {
    color: var(--accent2);
    padding-left: .5rem;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-social>a {
    display: inline-block;
    width: 2.1875rem;
    height: 2.1875rem;
    background: var(--accent);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 .9375rem 0 0;
    transition: color .3s ease, background-color .3s ease;
}

.footer-social>a:hover {
    color: white;
    background-color: var(--accent2);
    padding: 0;
}

.footer-bottom {
    background-color: var(--accent);
    color: white;
    padding: .5rem 0;
    margin-top: 1.5rem;
}

.footer-bottom a {
    color: white;
}

/* ::::: Nav pills ::::: */

/* ::::: GDPR ::::: */
#gdpr-cookie-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
    z-index: 1060;
}

#gdpr-cookie-accept {
    width: 100%;
    margin-bottom: .9375rem;
}

#gdpr-cookie-advanced {
    width: 100%;
}

    #gdpr-cookie-advanced:disabled {
        opacity: .33;
        cursor: not-allowed;
    }

#gdpr-cookie-types + p {
    text-align: center;
}

#gdpr-cookie-types h5 {
    margin-top: 30px;
}

#gdpr-cookie-types ul {
    list-style: none;
    padding: 0;
}

.necesarry-label {
    cursor: not-allowed;
}

.cookie-table {
    width: 100%;
    border: 1px solid var(--lgray);
    margin-bottom: 1.875rem;
}

    .cookie-table tr th {
        border: 1px solid var(--lgray);
        background: var(--lgray);
        padding: .4375rem .9375rem;
        color: #333;
    }

    .cookie-table tr td {
        border: 1px solid var(--lgray);
        padding: .4375rem .9375rem;
        border-bottom: 0;
        border-top: 0;
    }

    .cookie-table tr:nth-of-type(2n+1) {
        background: #f6f6f6;
    }

label {
    position: relative;
    display: block;
    margin: 0;
    margin-top: 0.875rem;
}

.form-check-label {
    padding-left: 1.5rem;
}

.form-check-input {
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    margin: 0;
    z-index: -1;
    left: 0;
    pointer-events: none;
}

    .form-check-input:checked + .form-check-sign::before {
        animation: d .5s;
    }

.form-check-sign::before {
    display: block;
    position: absolute;
    left: -.0625rem;
    content: "";
    background-color: hsla(0, 0%, 0%, .84);
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    margin: 0;
    top: .125rem;
    transform: scale3d(2.3, 2.3, 1);
}

.form-check-input:checked + .form-check-sign .check,
.form-check-input:checked + .form-check-sign .radio {
    background: var(--accent);
}

.form-check-sign .check,
.form-check-sign .radio {
    position: relative;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: .0625rem solid rgba(0, 0, 0, .25);
    overflow: hidden;
    z-index: 1;
    border-radius: .1875rem;
    background: white;
}

.form-check-sign .radio {
    border-radius: 50%;
}

.form-check-label span {
    display: block;
    position: absolute;
    left: -.0625rem;
    top: .0625rem;
    transition-duration: .2s;
}

.form-check-input:checked + .form-check-sign .check::before,
.form-check-input:checked + .form-check-sign .radio::before {
    color: #fff;
    box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem -.75rem 0 .6875rem;
    animation: c .3s forwards;
}

.form-check-sign .check::before,
.form-check-sign .radio::before {
    position: absolute;
    content: "";
    transform: rotate(45deg);
    display: block;
    margin-top: -.375rem;
    margin-left: .375rem;
    width: 0;
    color: #fff;
    height: 0;
    box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, inset 0 0 0 0;
}

.form-check-input:focus,
input.form-check-input:focus + .form-check-sign > .check,
input.form-check-input:focus + .form-check-sign > .radio {
    outline: 0;
    border: .0625rem solid var(--accent);
    -webkit-box-shadow: 0 .125rem .25rem -.0625rem rgba(0, 0, 0, .2), 0 .25rem .3125rem 0 rgba(0, 0, 0, .14), 0 .0625rem .625rem 0 rgba(0, 0, 0, .12);
    box-shadow: 0 .125rem .25rem -.0625rem rgba(0, 0, 0, .2), 0 .25rem .3125rem 0 rgba(0, 0, 0, .14), 0 .0625rem .625rem 0 rgba(0, 0, 0, .12);
}

/* ::::: Animations ::::: */
@-moz-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-webkit-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-o-keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

@-moz-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-o-keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes check {
    from {
        stroke-dashoffset: 19.79;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@-webkit-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@-o-keyframes cursor {
    to {
        border-color: transparent;
    }
}

@keyframes cursor {
    to {
        border-color: transparent;
    }
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }

    50% {
        left: 25%;
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

[ripple] {
    position: relative;
    overflow: hidden;
}

[ripple] .ripple--container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

[ripple] .ripple--container span {
    transform: scale(0);
    border-radius: 100%;
    position: absolute;
    opacity: 0.75;
    animation: ripple 1000ms;
    background: hsla(330, 2%, 88%, .5);
}

@keyframes c {
    0% {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, .9375rem .125rem 0 .6875rem
    }

    50% {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem .125rem 0 .6875rem
    }

    to {
        box-shadow: 0 0 0 .625rem, .625rem -.625rem 0 .625rem, 2rem 0 0 1.25rem, 0 2rem 0 1.25rem, -.3125rem .3125rem 0 .625rem, 1.25rem -.75rem 0 .6875rem
    }
}

@keyframes d {
    0% {
        opacity: 0
    }

    50% {
        opacity: .2
    }

    to {
        opacity: 0
    }
}

.animate.fade {
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.animate.fade.fade-left {
    transform: translateX(-1.875rem);
}

.animate.fade.fade-right {
    transform: translateX(1.875rem);
}

.animate.fade.in-view {
    opacity: 1;
    transform: translateX(0);
}



/* ::::: Responsive ::::: */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

    /* ::::: Nav ::::: */
    .nav-mobile-cta {
        font-size: 1rem;
    }

    .nav-mobile-cta i {
        margin-right: .4375rem;
    }

    /* ::::: Hero ::::: */
    #hero,
    header {
        padding: 5rem 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    /* ::::: Hero ::::: */
    #hero,
    header {
        padding: 6rem 0;
    }

    .hero-title {
        margin-bottom: 5rem;
    }

    .hero-title h1,
    .header-title h1 {
        margin-bottom: 0;
    }

    /* ::::: Search bar ::::: */
    .hero-search-advanced {
        font-size: 1rem;
    }

    .hero-search-advanced i {
        margin-right: 0.5rem;
    }

    .hero-search-fields .input-group {
        flex-direction: row;
    }

    .input-location {
        flex: 0 0 auto;
        width: calc(50% - .75rem);
        margin-right: 1.5rem;
    }

    .input-date {
        flex: 0 0 auto;
        width: calc(50% - .75rem);
    }

    .input-keywords {
        flex: 0 0 auto;
        width: 100%;
    }

    /* ::::: About ::::: */
    .about-btns {
        flex-direction: row;
    }

    .about-btns .btn {
        margin: 0 1rem 0 0;
    }

    .about-body {
        padding-bottom: 2rem;
    }

    /* ::::: Tabs ::::: */
    .nav-tabs .nav-link {
        font-size: 1rem;
    }

    .nav-tabs .nav-link>i {
        margin-right: 1rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

    /* ::::: Hero ::::: */
    #hero,
    header {
        padding: 8rem 0;
    }

    .hero-title {
        padding: 0;
    }

    /* ::::: CTA ::::: */
    .cta-body h3 {
        font-size: 1.5rem;
    }

    /* ::::: About ::::: */
    .about-content {
        flex-direction: row;
    }

    .about-img {
        width: 33.333333%;
    }

    .about-body {
        width: 66.666666%;
    }

    /* ::::: Activities ::::: */
    .activity-gallery>.activity-gallery-img {
        width: calc(33.333333% - .75rem);
    }

    /* ::::: Footer ::::: */
    .footer-design {
        text-align: right;
    }

    /* ::::: Forms ::::: */
    .form-gallery-img {
        width: calc(25% - 1.5rem);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .section-title h3 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    section {
        padding: 7.5rem 0;
    }

    footer {
        margin: 0;
    }

    /* ::::: Navigation ::::: */
    #nav-wrapper {
        bottom: auto;
        top: 0;
        border-top: 0;
        transition: background-color .3s ease, box-shadow .3s ease;
        background: white;
    }

    #nav-wrapper.scrolled {
        background-image: none;
        color: var(--dgray);
        box-shadow: 1px 0px 4px 0 rgba(0, 0, 0, 0.25);
    }

    #nav {
        height: 6.25rem;
        flex-wrap: nowrap;
        padding: 0 .9375rem;
        margin: 0;
        border-top: 0;
        transition: height .3s ease;
    }

    .nav-logo {
        height: 100%;
        padding: 0;
        position: relative;
    }

    .nav-logo::after {
        content: '';
        display: block;
        background: var(--accent);
        width: 100%;
        height: 1.5625rem;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.25);
        border-radius: 0 0 1rem 1rem;
        z-index: -1;
    }

    .nav-menu>.nav-item>a,
    .nav-menu>.nav-item>button {
        height: 100%;
    }

    .nav-toggler,
    .nav-mobile-cta,
    .nav-mobile-btn {
        display: none;
    }

    #nav-desktop {
        flex-direction: row;
        position: static;
        overflow: visible;
        background: transparent;
    }

    .nav-menu {
        flex-direction: row;
        width: auto;
    }

    .nav-submenu {
        position: absolute;
        left: 0;
        min-width: 12.5rem;
        top: 4.6875rem;
        bottom: auto;
        right: auto;
        overflow: visible;
        background: white;
    }

    #nav-desktop,
    .nav-submenu {
        transform: translateX(0);
        align-items: initial;
    }

    #nav>* {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        max-width: none;
    }

    #nav .nav-logo-wrap {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        border: 0;
        max-width: 17rem;
        transition: all .3s ease;
        height: calc(100% + 1.5625rem);
        background: var(--accent);
        border-radius: 0 0 1rem 1rem;
    }

    .nav-submenu .nav-dropdown-item .nav-submenu {
        top: 0;
        left: 100%;
    }

    .nav-dropdown-item>.nav-submenu {
        visibility: hidden;
        opacity: 0;
    }

    .nav-submenu.open {
        visibility: visible;
        opacity: 1;
        z-index: 2;
        background: white;
    }

    .nav-item-contact {
        margin: 0 0 0 1.875rem;
    }

    .nav-item-shop {
        margin: 0 0 0 .9375rem;
    }

    #nav-desktop .nav-item-contact .nav-link,
    #nav-desktop .nav-item-shop .nav-link {
        padding: 0 .9375rem;
    }

    #nav-desktop .nav-item-contact .nav-link i,
    #nav-desktop .nav-item-shop .nav-link i {
        display: none;
    }

    .nav-item-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 1.875rem;
    }

    /* ::::: Hero ::::: */
    #hero,
    header {
        margin-top: 6.25rem;
        padding: 8rem 0;
    }

    /* ::::: Search bar ::::: */
    .hero-search-group .form-check-input,
    .hero-search-category .form-check-input {
        opacity: 0;
        height: 0;
        width: 0;
        overflow: hidden;
        position: absolute;
        margin: 0;
        z-index: -1;
        left: 0;
        pointer-events: none;
    }

    .hero-search-group .form-check-label,
    .hero-search-category .form-check-label {
        height: 100%;
        margin: 0;
    }

    .hero-search-group h6,
    .hero-search-category h6 {
        margin: 0;
    }

    .form-search-group-body,
    .form-search-category-body {
        padding: 1rem;
        text-align: center;
    }

    .form-check-input:checked+.form-search-group-body,
    .form-check-input:checked+.form-search-category-body {
        background: var(--accent);
        color: white;
    }

    .hero-search-fields {
        align-items: flex-start;
    }

    .input-location {
        width: 33.333333%;
        margin-right: 0;
    }

    .input-date {
        width: 33.333333%;
    }

    .input-keywords {
        width: 33.333333%;
    }

    .input-wrap select,
    .input-wrap input {
        border-radius: 0;
    }

    .input-location select,
    .input-location input {
        border-radius: 3.125rem 0 0 3.125rem;
    }

    .input-keywords select,
    .input-keywords input {
        border-radius: 0 3.125rem 3.125rem 0;
    }

    #activities .hero-search {
        margin-bottom: 3rem;
    }

    /* ::::: About ::::: */
    .about-title h4 {
        font-size: 1.75rem;
    }

    /* ::::: Nav pills ::::: */
    .nav-link:focus,
    .nav-link:hover {
        color: var(--accent2);
    }

    #nav-desktop {
        margin-left: 3rem;
    }

    .nav-logo-wrap {
        background-color: var(--accent);
    }

    .icon-logo {
        padding: 1rem;
    }

    .nav-item-pill .nav-link>i {
        margin-right: 1rem;
    }

    .nav-item.nav-item-pill {
        background: white;
        transition: background-color .3s ease, border .3s ease;
        margin: 0 .5rem;
        display: block;
        border-radius: 3.125rem;
    }

    .nav-item.nav-item-pill>.nav-link,
    .nav-item.nav-item-pill>.nav-dropdown {
        border-radius: 3.125rem;
        overflow: hidden;
        line-height: 1rem;
        height: 3.125rem;
        border: 1px solid white;
        transition: background-color .3s ease, border .3s ease, color .3s ease;
    }

    .nav-item.nav-item-pill:hover>.nav-link,
    .nav-item.nav-item-pill:hover>.nav-dropdown,
    .nav-item.nav-item-pill>.nav-dropdown:focus,
    .nav-item.nav-item-pill>.nav-dropdown:active {
        color: var(--accent);
        border-color: var(--accent);
        background: var(--accent-15);
    }

    .nav-item.nav-item-pill.active>.nav-link {
        color: white;
        border-color: var(--accent2);
        background: var(--accent2);
    }

    .nav-item.nav-item-pill.active:hover>.nav-link {
        background-color: var(--dgray);
        border-color: var(--dgray);
    }

    .nav-item.nav-item-pill.profileToggle {
        background-color: var(--accent);
    }

    .nav-item.nav-item-pill.langSwitch .nav-dropdown,
    .nav-item.nav-item-pill.profileToggle .nav-dropdown {
        border: 1px solid var(--accent);
        padding: 0;
        border-radius: 3.125rem;
        font-size: 0;
    }

    .nav-item.nav-item-pill.profileToggle:hover>.nav-dropdown,
    .nav-item.nav-item-pill.profileToggle>.nav-dropdown:focus,
    .nav-item.nav-item-pill.profileToggle>.nav-dropdown:active {
        background-color: var(--accent2);
        border-color: var(--accent2);
        color: white;
    }

    .nav-dropdown-toggler {
        border-radius: 3.125rem;
    }

    .profileToggle .nav-dropdown {
        color: white;
    }

    .langSwitch .nav-dropdown i,
    .profileToggle .nav-dropdown i {
        font-size: 1rem;
        transition: border .3s ease, color .3s ease;
    }

    .langSwitch .nav-dropdown .fa-angle-down,
    .profileToggle .nav-dropdown .fa-angle-down {
        display: none;
    }

    .langSwitch .nav-dropdown i:not(.fa-angle-down),
    .profileToggle .nav-dropdown i:not(.fa-angle-down) {
        margin: 0;
        width: 3rem;
        height: 3rem;
        border-radius: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid white;
    }

    .langSwitch .nav-dropdown i:not(.fa-angle-down) {
        border-color: white;
        background: var(--accent);
        color: white;
    }

    .profileToggle .nav-dropdown i:not(.fa-angle-down) {
        border-color: var(--accent);
        background-color: white;
        color: var(--accent);
    }

    .nav-item.nav-item-pill.profileToggle:hover>.nav-dropdown i:not(.fa-angle-down),
    .nav-item.nav-item-pill.profileToggle>.nav-dropdown:focus i:not(.fa-angle-down),
    .nav-item.nav-item-pill.profileToggle>.nav-dropdown:active i:not(.fa-angle-down) {
        border-color: var(--accent2);
        color: var(--accent2);
    }

    .nav-dropdown-toggler .nav-toggler-icon {
        margin-right: 1rem;
    }

    .nav-dropdown-toggler .nav-toggler-icon span,
    .nav-dropdown-toggler:hover .nav-toggler-icon span {
        background-color: var(--accent);
    }

    .nav-item .fa-angle-down {
        margin-left: 1rem;
    }

    .nav-submenu-split {
        display: block;
        max-width: none;
        border-radius: 0 0 .5rem .5rem;
        box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.25);
        overflow: hidden;
    }

    .nav-submenu-left {
        background-color: var(--accent);
    }

    .nav-submenu-left ul,
    .nav-submenu-left ul li a {
        height: 100%;
    }

    .nav-submenu .nav-submenu-left ul .nav-item {
        height: 20%;
        border: 0;
    }

    .nav-submenu .nav-submenu-left ul .nav-item a {
        transition: padding .3s ease, background-color .9s ease;
    }

    .nav-submenu .nav-submenu-left ul .nav-item:hover a {
        color: white;
        background-color: var(--accent2);
        transition: padding .3s ease, background-color .3s ease;
    }

    .nav-submenu-left a {
        color: white;
    }

    .nav-submenu-right {
        flex: 0 0 auto;
        width: 50%;
        padding: 2rem;
    }

    .nav-submenu-right h5 {
        margin: 0 0 1rem;
    }

    .nav-submenu-right .nav-submenu-list+h5 {
        margin-top: 2rem;
    }

    .nav-submenu-right .nav-submenu-list li {
        margin-bottom: .5rem;
    }

    .nav-submenu-right .nav-submenu-list li a {
        color: var(--dgray);
        font-weight: 300;
        transition: padding .3s ease, color .3s ease;
    }

    .nav-submenu-right .nav-submenu-list li a:hover {
        color: var(--accent2);
        padding-left: 1rem;
    }

    .langSwitch .nav-submenu,
    .profileToggle .nav-submenu {
        left: auto;
        right: 0;
        border-radius: 0 0 .5rem .5rem;
        box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.25);
    }

    .nav-submenu .nav-link {
        justify-content: flex-start;
    }

    .nav-header {
        background: var(--accent);
    }

    .nav-header h6 {
        margin: 0;
        padding: .75rem 1rem;
    }

    .nav-submenu .submenu-social {
        display: flex;
        justify-content: flex-start;
    }

    .nav-submenu .submenu-social a {
        display: inline-block;
        width: 2.1875rem;
        height: 2.1875rem;
        background: var(--accent);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin: 0 0.9375rem 0 0;
        transition: background-color .3s ease, color .3s ease;
    }

    .nav-submenu .submenu-social a:hover {
        background-color: var(--accent2);
    }

    /* ::::: Search bar ::::: */
    .input-location,
    .input-date,
    .input-keywords {
        width: 33.5%;
    }

    .input-keywords select,
    .input-keywords input {
        border-radius: 0;
    }

    .hero-search-fields {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-search-fields .input-group {
        flex: 0 0 auto;
        width: 75%;
        flex-wrap: nowrap;
    }

    .hero-search-fields .btn {
        flex: 0 0 auto;
        width: 25%;
        border-radius: 0 3.12rem 3.125rem 0;
    }

    .hero-search-fields .input-group .input-wrap {
        margin: 0;
    }

    .input-wrap select,
    .input-wrap input {
        height: 2.875rem;
    }

    /* ::::: Cards ::::: */
    .card-sponsored:hover .card-img::after {
        display: block;
    }

    .card-sponsored .card-img::after {
        content: '';
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transform: skew(30deg);
        animation: shine 0.75s linear 1;
    }

    /* ::::: Sponsor ::::: */

    .sponsors-row:nth-of-type(2) {
        display: block;
    }

    /* ::::: Activity ::::: */
    .activities-pgn>.btn {
        display: inline-block;
    }

    .activities-pgn {
        display: flex;
        justify-content: center;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

    /* ::::: Navigation ::::: */
    #nav-desktop .nav-item-contact .nav-link,
    #nav-desktop .nav-item-shop .nav-link {
        padding: 0 1.875rem;
    }

    #nav-desktop .nav-item-contact .nav-link i,
    #nav-desktop .nav-item-shop .nav-link i {
        display: inline-block;
    }

    .category-page-info-pages {
        display: inline;
    }

    /* ::::: Nav pills ::::: */
    .nav-logo .icon-logo {
        display: none;
    }

    .nav-logo .full-logo {
        display: block;
    }

    /* ::::: Hero ::::: */
    #hero {
        padding: 10rem 0;
    }

    /* ::::: CTA ::::: */
    .cta-wrap {
        padding: 2rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .cta-body {
        margin: 0 2rem 0 0;
    }

    /* ::::: Cards ::::: */
    .card-title {
        padding: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .card-title-icon {
        transform: none;
        flex: 0 0 auto;
    }

    .card-title-info {
        flex: 0 0 auto;
        width: calc(100% - 3.125rem);
        padding-left: 1rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .news-article .card-title-info {
        padding-left: 0;
        width: 100%;
    }

    .activity-detail-card .card-title-info {
        padding-right: 6rem;
    }

    .activity-detail-card .card-title-icon {
        margin-bottom: 0;
    }

    .company-card {
        padding: 2rem;
    }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    /* ::::: Hero ::::: */
    #hero {
        padding: 13rem 0;
    }

    .hero-title {
        margin-bottom: 6rem;
    }

    .hero-title h1,
    .header-title h1 {
        font-size: 3.75rem;
        line-height: 1.2;
    }

    /* ::::: Nav pills ::::: */
    .nav-item.nav-item-pill.langSwitch .nav-dropdown,
    .nav-item.nav-item-pill.profileToggle .nav-dropdown {
        font-size: 1rem;
        padding: 0 0.9375rem 0 0;
    }

    .langSwitch .nav-dropdown i:not(.fa-angle-down),
    .profileToggle .nav-dropdown i:not(.fa-angle-down) {
        margin: 0 0.5rem 0 0;
    }

    .langSwitch .nav-dropdown .fa-angle-down,
    .profileToggle .nav-dropdown .fa-angle-down {
        display: inline;
    }
}
.tab-link{
    position:relative;
    float:right;
    top:-70px;
}
@media (max-width: 768px) {
    .zsiq-float {
        bottom: 50px !important;
    }
}