.greek-list {
	list-style-type: "🇬🇷   ";
	list-style-position: inside;
	padding-inline-start: 3ch;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-list {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; /* To keep the border-radius */
}

/* Style for the question (the clickable term) */
.faq-list dt {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    position: relative; /* For the +/- icon */
    
    /* Prevents text selection on double-click */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.faq-list dt:hover {
    background-color: #f1f1f1;
}

/* The +/- icon */
.faq-list dt::after {
    content: '+';
    font-family: monospace;
    font-size: 1.5em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* The "minus" icon when active */
.faq-list dt.active::after {
    content: '−';
}

/* Style for the answer (the hidden description) */
.faq-list dd {
    padding: 20px;
    margin: 0; 
    background-color: #fff;
    border-bottom: 1px solid #eee;
    
    /* Hide the answer by default */
    display: none; 
}

/* Remove border from the last item for a cleaner look */
.faq-list dt:last-of-type,
.faq-list dd:last-of-type {
    border-bottom: none;
}

/* Styling for content inside the answers */
.faq-list dd p {
    margin-top: 0;
}

.faq-list dd ol {
    padding-left: 20px;
}

.faq-list dd a {
    color: #007bff;
    text-decoration: none;
}

.faq-list dd a:hover {
    text-decoration: underline;
}

.m-0 {
    margin: 0 !important
}

.mb-1 {
    margin-bottom: 1rem !important
}

.mt-2 {
    margin-top: 2rem !important
}

.mb-2 {
    margin-bottom: 2rem !important
}

.p-1 {
    padding: 1rem !important
}

.pt-1 {
    padding-top: 1rem !important
}

.pt-2,
.py-2 {
    padding-top: 2rem !important
}

.pb-2,
.py-2 {
    padding-bottom: 2rem !important
}

.pb-3 {
    padding-bottom: 3rem !important
}

.mx-auto {
    margin-right: auto !important
}

.mx-auto {
    margin-left: auto !important
}

@media (min-width: 576px) {

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 3rem !important
    }

    .py-sm-3 {
        padding-bottom: 3rem !important
    }
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-2 {
        margin-bottom: 2rem !important
    }

    .mb-lg-4 {
        margin-bottom: 4rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-3 {
        padding-top: 3rem !important
    }

    .pt-lg-4 {
        padding-top: 4rem !important
    }

    .pb-lg-4 {
        padding-bottom: 4rem !important
    }
}

@media (min-width: 1200px) {
    .mb-xl-3 {
        margin-bottom: 3rem !important
    }

    .mb-xl-4 {
        margin-bottom: 4rem !important
    }

    .pt-xl-4 {
        padding-top: 4rem !important
    }

    .pl-xl-4 {
        padding-left: 4rem !important
    }

    .pt-xl-5 {
        padding-top: 5rem !important
    }

    .pt-xl-6 {
        padding-top: 6rem !important
    }
}

@media (min-width: 1440px) {
    .pt-xxl-7 {
        padding-top: 7rem !important
    }
}

.d-flex,
.site-wrapper {
    display: flex !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.justify-content-center {
    justify-content: center !important
}

.align-items-center {
    align-items: center !important
}

.position-relative {
    position: relative !important
}

.text-center {
    text-align: center !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #1A5FAD !important
}

a.text-primary:hover,
a.text-primary:focus {
    color: #103a6a !important
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.bg-cover>img {
    display: none
}

.text-white h1,
.text-white h2,
.text-white h6 {
    color: #fff !important
}

.bg-orange-100-16 {
    background-color: rgba(244, 156, 48, 0.16)
}

.bg-black {
    background-color: #000
}

.overlay-black {
    position: relative;
    z-index: 0
}

.overlay-black::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8)
}

.mh-400 {
    min-height: 400px
}

@media (min-width: 992px) {
    .mh-lg-530 {
        min-height: 530px
    }
}

.pseudo-before-gradient-black98:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 265px;
    background: linear-gradient(rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1
}

.pseudo-before-gradient-black98xl:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1
}

.pseudo-after-gradient-orange:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 118px;
    background: linear-gradient(rgba(254, 239, 221, 0) 0%, #feefdd 100%);
    z-index: -1
}

.pseudo-after-gradient-white:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 118px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 100%);
    z-index: -1
}

.z-index-1 {
    z-index: 1
}

.mw-840 {
    max-width: 840px
}

@media (min-width: 992px) {
    .mh-lg-500 {
        min-height: 500px
    }
}

@media (min-width: 1200px) {
    .mh-xl-700 {
        min-height: 700px
    }
}

.gap-1 {
    gap: 1rem
}

@media (min-width: 1200px) {
    .gap-xl-2 {
        gap: 2rem
    }
}

.mw-222 {
    min-width: 222px !important
}

.h-100 {
    height: 100%
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.block-width-65 {
    max-width: 650px
}

.bg-white {
    background-color: #fff !important
}

.img-object-cover img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

@font-face {
    font-family: 'PT Sans';
    src: url("../fonts/PTSans-Bold.woff2") format("woff2"), url("../fonts/PTSans-Bold.woff") format("woff"), url("../fonts/PTSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'PT Sans';
    src: url("../fonts/PTSans-Regular.woff2") format("woff2"), url("../fonts/PTSans-Regular.woff") format("woff"), url("../fonts/PTSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'icomoon';
    src: url("../fonts/icomoon.eot?fllyct");
    src: url("../fonts/icomoon.eot?fllyct#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?fllyct") format("truetype"), url("../fonts/icomoon.woff?fllyct") format("woff"), url("../fonts/icomoon.svg?fllyct#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-facebook:before {
    content: "\e900"
}

.icon-instagram:before {
    content: "\e901"
}

.icon-play:before {
    content: "\e902"
}

.icon-location:before {
    content: "\e903"
}

.icon-mail:before {
    content: "\e904"
}

:root {
    --blue: #1A5FAD;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #F49C30;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #1A5FAD;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #F2F2F2;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1440px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

figure,
footer,
header,
main,
section {
    display: block
}

body {
    margin: 0;
    font-family: "PT Sans", Arial, Helvetica, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    min-width: 320px;
    overflow-x: hidden
}

h1,
h2,
h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ul ul {
    margin-bottom: 0
}

a {
    color: #1A5FAD;
    text-decoration: none;
    background-color: transparent
}

a:hover {
    color: #103a6a;
    text-decoration: underline
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

button {
    border-radius: 0
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color
}

input,
button,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button {
    text-transform: none
}

button,
[type="button"],
[type="submit"] {
    -webkit-appearance: button
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type="date"] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

.site-wrapper {
    margin: 0 auto;
    min-height: 100%;
    min-width: 320px;
    position: relative;
    align-items: stretch;
    flex-direction: column;
    overflow: hidden
}

.site-content {
    flex-grow: 1
}

@media screen and (min-width: 0\0) {
    .site-content {
        flex-grow: 0
    }
}

.site-header,
.site-content,
.site-footer {
    flex-shrink: 0
}

img {
    max-width: 100%;
    height: auto
}

a {
    transition: all .2s ease-in-out
}

h1,
h2,
h6,
.h1,
.h2,
.h6 {
    margin-bottom: .5rem;
    font-weight: 700;
    line-height: 1.2
}

h1,
.h1 {
    font-size: 3.75rem
}

@media (max-width: 1200px) {

    h1,
    .h1 {
        font-size: calc(1.5rem + 3vw)
    }
}

h2,
.h2 {
    font-size: 2.5rem
}

@media (max-width: 1200px) {

    h2,
    .h2 {
        font-size: calc(1.375rem + 1.5vw)
    }
}

h6,
.h6 {
    font-size: 1rem
}

.heading-primary {
    color: #1A5FAD;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    font-weight: 600
}

@media (min-width: 992px) {
    .heading-primary {
        margin-bottom: 1.5rem
    }
}

.text-primary {
    color: #1A5FAD
}

.text-primary a:not(.btn) {
    text-decoration: underline
}

.font-size-18 {
    font-size: 1.125rem
}

@media (min-width: 992px) {
    .font-size-lg {
        font-size: 1.25rem
    }
}

@media (min-width: 1200px) {
    .font-size-xl {
        font-size: 1.5rem
    }
}

@media (min-width: 1200px) and (max-width: 1200px) {
    .font-size-xl {
        font-size: calc(1.275rem + .3vw)
    }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1310px
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: "PT Sans", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none
    }
}

@media (min-width: 992px) {
    .form-control {
        padding: 0.9375rem 1.3125rem;
        height: 56px
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #5f9fe7;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(26, 95, 173, 0.25)
}

.form-control::-moz-placeholder {
    color: #96979f;
    opacity: 1
}

.form-control::placeholder {
    color: #96979f;
    opacity: 1
}

.form-control:focus {
    box-shadow: none
}

.form-control:disabled {
    background-color: #e2e2e2;
    opacity: 1
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0
}

textarea.form-control {
    height: 134px;
    min-height: 134px;
    overflow: hidden;
    resize: none
}

.form-group {
    margin-bottom: 1rem
}

@media (min-width: 992px) {
    .form-group {
        margin-bottom: 18px
    }
}

@media (min-width: 1200px) {
    .form-group {
        margin-bottom: 20px
    }
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.form-row>[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input:disabled~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.messages {
    display: none
}

.has-error .form-control {
    border-color: #dc3545
}

.thank-you-message {
    text-align: center;
    font-size: 1rem;
    color: #212529;
    line-height: 1.7
}

.thank-you-message a {
    color: #1A5FAD;
    white-space: nowrap
}

.thank-you-message a:hover,
.thank-you-message a:focus {
    color: #212529;
    text-decoration: none
}

.thank-you-heading {
    font-size: 1.125rem
}

.btn {
    min-width: 266px;
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .75rem .75rem;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(26, 95, 173, 0.25)
}

.btn:disabled {
    opacity: .65
}

@media (min-width: 1200px) {
    .btn {
        padding: 0.875rem;
        font-size: 1.125rem
    }
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #F49C30;
    border-color: #F49C30
}

.btn-primary {
    color: #fff;
    background-color: #1A5FAD;
    border-color: #1A5FAD
}

.btn-primary:hover {
    color: #fff;
    background-color: #154d8c;
    border-color: #134781
}

.btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(60, 119, 185, 0.5)
}

.btn-primary:disabled {
    color: #fff;
    background-color: #1A5FAD;
    border-color: #1A5FAD
}

.btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #134781;
    border-color: #124176
}

.btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(60, 119, 185, 0.5)
}

.play-button {
    font-size: 1.625rem;
    color: #fff;
    line-height: 1;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    padding: 0;
    border: 0;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out
}

@media (max-width: 1200px) {
    .play-button {
        font-size: calc(1.2875rem + .45vw)
    }
}

.play-button:focus {
    outline: none
}

.play-button i {
    position: relative;
    left: 1px
}

.play-button:hover,
.play-button:focus {
    background-color: #fff;
    color: #000;
    scale: 1.1;
    text-decoration: none
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: .15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1
    }
}

.list-icon ul,
ul.list-icon {
    list-style: none;
    padding: 0;
    margin: 0
}

.list-icon ul li,
ul.list-icon li {
    position: relative;
    font-size: 1rem;
    padding-left: 34px;
    margin-bottom: 16px
}

@media (min-width: 768px) {

    .list-icon ul li,
    ul.list-icon li {
        margin-bottom: 24px
    }
}

@media (min-width: 992px) {

    .list-icon ul li,
    ul.list-icon li {
        margin-bottom: 44px;
        font-size: 1.25rem
    }
}

@media (min-width: 1200px) {

    .list-icon ul li,
    ul.list-icon li {
        margin-bottom: 54px;
        font-size: 1.5rem;
        padding-left: 60px
    }
}

@media (min-width: 1200px) and (max-width: 1200px) {

    .list-icon ul li,
    ul.list-icon li {
        font-size: calc(1.275rem + .3vw)
    }
}

.list-icon ul li a,
ul.list-icon li a {
    color: #fff;
    text-decoration: none
}

.list-icon ul li i,
ul.list-icon li i {
    font-size: 1.75rem;
    position: absolute;
    left: 0;
    top: 4px
}

@media (max-width: 1200px) {

    .list-icon ul li i,
    ul.list-icon li i {
        font-size: calc(1.3rem + .6vw)
    }
}

.list-column ul,
ul.list-column {
    list-style: none;
    padding: 0;
    margin: 0
}

.list-column ul li,
ul.list-column li {
    display: inline-block
}

.list-column ul li a,
ul.list-column li a {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.35) 100%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.5rem;
    color: #1A5FAD;
    font-weight: 700
}

@media (max-width: 1200px) {

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: calc(1.275rem + .3vw)
    }
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: rgba(26, 95, 173, 0.5)
}

.myEatSwiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2
}

.myEatSwiper .swiper-wrapper,
.myEatSwiper .swiper-slide {
    height: 100% !important
}

.myLiveMusicSwiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2
}

.myLiveMusicSwiper .swiper-wrapper,
.myLiveMusicSwiper .swiper-slide {
    height: 100% !important
}

.myShopSwiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2
}

.myShopSwiper .swiper-wrapper,
.myShopSwiper .swiper-slide {
    height: 100% !important
}

.myDrinkSwiper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2
}

.myDrinkSwiper .swiper-wrapper,
.myDrinkSwiper .swiper-slide {
    height: 100% !important
}

.site-footer .section-title h2 {
    color: #1A5FAD
}

.site-footer .section-title .h6 {
    font-size: 1.125rem;
    color: #F49C30;
    font-family: "Oswald", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    position: relative
}

.site-footer .section-title .h6::before {
    position: absolute;
    content: '';
    background-color: #F49C30;
    height: 2px;
    width: 46px;
    bottom: 0;
    left: 0
}

.site-footer__top {
    padding-bottom: 16px
}

@media (min-width: 768px) {
    .site-footer__top {
        padding-bottom: 10px
    }
}

@media (min-width: 992px) {
    .site-footer__top {
        padding-bottom: 57px
    }
}

.site-footer__top .form {
    background-color: #fff;
    box-shadow: 0px 3px 46px rgba(0, 0, 0, 0.1);
    padding: 30px
}

@media (max-width: 575.98px) {
    .site-footer__top .form {
        padding: 20px
    }
}

@media (min-width: 992px) {
    .site-footer__top .form {
        margin-top: -196px
    }
}

@media (min-width: 1200px) {
    .site-footer__top .form {
        padding: 40px
    }
}

.site-footer__top .form-footer .btn {
    text-transform: uppercase
}

@media (max-width: 575.98px) {
    .site-footer__top .form-footer .btn {
        width: 100%;
        min-width: auto
    }
}

.site-footer__top .list-icon a:hover,
.site-footer__top .list-icon a:focus {
    color: #1A5FAD
}

.site-footer__bottom {
    color: #F2F2F2;
    font-family: "Work Sans", sans-serif;
    letter-spacing: 0.18px
}

.site-footer__bottom .mail {
    display: inline-block;
    margin: 4px 0 24px
}

.site-footer__bottom .mail a {
    color: #F2F2F2;
    text-decoration: none
}

.site-footer__bottom .mail a:hover {
    color: #1A5FAD;
    color: #F49C30
}

.site-footer__bottom .copyright {
    font-size: .875rem;
    letter-spacing: 0.14px;
    margin-top: 24px;
    display: block
}

@media (min-width: 992px) {
    .site-footer__bottom .copyright {
        margin-top: 34px
    }
}

@media (min-width: 1200px) {
    .site-footer__bottom .copyright {
        margin-top: 44px
    }
}

.social a {
    transition: .2s ease-in-out
}

.social a:hover,
.social a:focus {
    scale: 1.1;
    opacity: .5;
    text-decoration: none
}
