a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
body,
caption,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
u,
ul,
var {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

:focus {
    outline: 0
}

ins {
    text-decoration: none
}

del {
    text-decoration: line-through
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

li,
ul {
    float: left;
    display: inline
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 400
}

em,
i {
    font-style: normal
}

button,
select {
    border: none;
    margin: 0;
    padding: 0;
    background: 0 0
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box
}

html::-webkit-scrollbar {
    width: 10px
}

html::-webkit-scrollbar-track {
    background: #666
}

html::-webkit-scrollbar-thumb {
    background-color: #fff;
    border: 3px solid #666
}

html {
    scrollbar-color: #fff #666;
    scrollbar-width: thin
}

body {
    margin: 0;
    color: #222;
    font-size: 15px;
    font-family: Jost, Arial;
    line-height: 20px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

::-moz-selection {
    background: rgba(0, 0, 0, .1)
}

::selection {
    background: rgba(0, 0, 0, .1)
}

a {
    color:#17150f;
    text-decoration: none
}

a:hover {
    color: #c08329;
    text-decoration: none
}

:root {
    --input-background-color: #FFF;
    --input-border-color: #bfbfbf;
    --input-border-color-inline: #FFF;
    --input-border-color-checked: #00A678;
    --input-background-color-checked: #00C18C;
    --input-border-color-inline-checked: #00C18C;
    --input-border-color-disabled: #bfbfbf;
    --input-background-color-disabled: #efefef;
    --input-border-color-inline-disabled: #bfbfbf;
    --input-border-color-hover: #00C18C;
    --input-background-color-hover: #FFF;
    --input-border-color-inline-hover: #bfbfbf;
    --input-border-color-focus: #00A678
}

input,
input[type=checkbox],
input[type=radio],
select,
textarea {
    border: none;
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    padding: 0
}

input:focus,
input[type=checkbox]:focus,
input[type=radio]:focus,
select:focus,
textarea:focus {
    outline: 0
}

button,
input[type=submit] {
    border: none;
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    outline: 0
}

input[type=checkbox],
input[type=radio] {
    width: 18px;
    height: 18px;
    line-height: 18px;
    min-width: 1px !important;
    margin: 1px 10px -1px 0;
    padding: 0
}

input[type=checkbox]::before,
input[type=radio]::before {
    display: block;
    position: absolute;
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: var(--input-background-color);
    transition: background-color .5s, border-color .5s
}

input[type=checkbox]::after,
input[type=radio]::after {
    display: block;
    position: absolute;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: background-color .5s, border-color 250ms
}

input[type=checkbox]::before {
    border-radius: 4px;
    border: solid 1px;
    border-color: var(--input-border-color)
}

input[type=checkbox]::after {
    border: solid;
    border-color: var(--input-border-color-inline);
    border-width: 0 2px 2px 0;
    width: 5px;
    height: 10px;
    left: 7px;
    bottom: 5px
}

input[type=checkbox]:not(:checked)::before {
    border-color: var(--input-border-color)
}

input[type=checkbox]:not(:checked)::after {
    border-color: var(--input-border-color-inline)
}

input[type=checkbox]:checked:not(:disabled)::before {
    border-color: var(--input-border-color-checked);
    background-color: var(--input-background-color-checked)
}

input[type=checkbox]:-moz-read-only::before,
input[type=checkbox]:read-only::before {
    border-color: var(--input-border-color-inline-checked)
}

input[type=checkbox]:disabled::before {
    border-color: var(--input-border-color-disabled);
    background-color: var(--input-background-color-disabled)
}

input[type=checkbox]:disabled::after {
    border-color: var(--input-border-color-inline-disabled)
}

input[type=checkbox]:checked:not(:disabled):focus::before,
input[type=checkbox]:not(:checked):not(:disabled):focus::before {
    border-color: var(--input-border-color-hover)
}

input[type=checkbox]:not(:checked):not(:disabled):hover::before {
    border-color: var(--input-border-color-hover);
    background-color: var(--input-background-color-hover)
}

input[type=checkbox]:not(:checked):not(:disabled):hover:not(:checked)::after {
    border-color: var(--input-border-color-inline-hover)
}

input[type=radio]::before {
    border-radius: 50%;
    border: solid 1px
}

input[type=radio]::after {
    border: solid;
    border-color: var(--input-border-color-inline-checked);
    border-width: 5px;
    border-radius: 50%;
    width: 0;
    height: 0;
    left: 4px;
    bottom: 4px
}

input[type=radio]:not(:checked)::before {
    border-color: var(--input-border-color)
}

input[type=radio]:not(:checked)::after {
    border-color: var(--input-border-color-inline)
}

input[type=radio]:checked:not(:disabled)::before {
    border-color: var(--input-border-color-checked);
    background-color: var(--input-background-color)
}

input[type=checkbox]:-moz-read-only::before,
input[type=radio]:read-only::before {
    border-color: var(--input-border-color-inline-checked)
}

input[type=radio]:disabled::after {
    border-color: var(--input-border-color-inline-disabled)
}

input[type=radio]:checked:not(:disabled):focus::before,
input[type=radio]:not(:checked):not(:disabled):focus::before {
    border-color: var(--input-border-color-hover)
}

input[type=radio]:not(:checked):not(:disabled):hover::before {
    border-color: var(--input-border-color-hover);
    background-color: var(--input-background-color)
}

input[type=radio]:not(:checked):not(:disabled):hover:not(:checked)::after {
    border-color: var(--input-border-color-inline-hover)
}

input,
select,
textarea {
    float: left;
    font-size: 15px;
    font-family: Jost, Arial;
    border-radius: 0
}

button {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 0;
    font-family: Jost, Arial;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px
}

.input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #999;
    transition: ease .3s;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .03)
}

.input:focus {
    border-color: #00c18c;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .06)
}

.select {
    background: #fff url(../images/arrow-select.png) no-repeat right center;
    background-size: auto 5px;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

textarea.input {
    padding-top: 10px !important;
    padding-bottom: 10px !important
}

.button {
    float: none;
    height: 50px;
    display: inline-block;
    padding: 0 50px 0 25px;
    cursor: pointer;
    position: relative;
    color: #fff;
    background-color: #c08329;
    transition: all .25s;
    border-radius: 6px;
    overflow: hidden
}

.button:hover {
    background-color: #c08329;
    letter-spacing: 2px
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -40%;
    left: 50%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #fff);
    transform: skew(-40deg);
    opacity: .1;
    transition: all .25s
}

.button:hover::before {
    left: 30%;
    opacity: .15
}

.button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 24px;
    background: url(../images/arrow-white-right.png) no-repeat right center/auto 20px;
    transition: all .25s
}

.button:hover::after {
    right: 12px
}

a.button {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 50px
}

.prime {
    float: left;
    width: 100%;
    position: relative
}

.prime-inner {
    float: left;
    width: 100%;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 27px rgba(0, 0, 0, .1)
}

.outer {
    margin: 0 auto;
    width: 100%;
    max-width: 1720px;
    min-height: 10px;
    position: relative
}

.wrap,
.wrap-slim {
    margin: 0 auto;
    width: 1440px;
    min-height: 10px;
    position: relative
}

.wrap-slim {
    width: 100%;
    max-width: 860px
}

.tac {
    text-align: center
}

.fl {
    float: left !important
}

.fr {
    float: right !important
}

.fn {
    float: none !important
}

.w100 {
    float: left;
    width: 100% !important
}

.w50 {
    float: left;
    width: 50%
}

.w25 {
    float: left;
    width: 25%
}

.mt30 {
    margin-top: 30px
}

.mt20 {
    margin-top: 20px
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 80px 0;
    z-index: 8000; 
    transition: all .7s
}

.scroll .header {
    padding: 20px 0;
    background-color: #17150f;
}

.header .outer,
.hero-extra .outer {
    padding: 0 30px
}

#logo {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    z-index: 100;
    transition: all .7s;
    text-align: center
}

.scroll #logo {
    top: 0
}

#logo a {
    display: inline-block;
    position: relative
}

#logo img {

    /* filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5)); */
    float: left;
    height: 144px;
    transition: all .7s
    
}

#logo img:hover {
    opacity: .8
}

.scroll #logo img {
    height: 93px;
    margin-top:-16px;
}

.mobile-nav {
    display: none
}

.nav-icon {
    float: left;
    width: 100px;
    height: 60px;
    position: relative;
    background-color: #fff;
    cursor: pointer;
    text-indent: -9999px;
    z-index: 300
}

.nav-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-top: -1px;
    margin-left: -15px;
    background-color: #c08329;
    transition: all .5s;
    z-index: 10
}

.nav-icon span::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: -10px;
    height: 2px;
    background-color: #c08329;
    transition: all .5s
}

.nav-icon span::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: -10px;
    height: 2px;
    background-color: #c08329;
    transition: all .5s
}

.nav-icon-close span {
    background-color: transparent
}

.nav-icon-close span::before {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 0
}

.nav-icon-close span::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0
}

.header-book {
    float: left;
    width: 160px;
    position: relative;
    font-weight: 600;
    font-size: 13px;
    color: #c08329;
    letter-spacing: 1px;
    line-height: 60px;
    background-color: #e3e3e3;
    cursor: pointer;
    transition: all .4s;
    z-index: 100;
    text-align: center
}

.header-book:hover {
    background-color: #c08329;
    color: #fff
}

.header-lang-wrap {
    float: right;
    position: relative;
    height: 60px;
    z-index: 100;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    text-align: center
}

.header-lang-icon {
    float: right;
    width: 80px;
    padding-left: 20px;
    position: relative;
    cursor: pointer;
    z-index: 250;
    background: #c08329 url(../images/icon-world.png) no-repeat 20px center/16px;
    line-height: 60px
}

.header-lang {
    position: absolute;
    top: 60px;
    right: 0;
    width: 80px;
    background-color: #c08329;
    display: none;
    z-index: 300;
    box-shadow: 0 10px 50px rgba(0, 0, 0, .15)
}

.header-lang::before {
    content: "";
    border-bottom: 4px solid transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    height: 0;
    position: absolute;
    width: 0;
    left: 50%;
    top: -4px;
    margin-left: -8px;
    border-bottom-color: #c08329
}

.header-lang ul {
    width: 100%
}

.header-lang li {
    width: 100%
}

.header-lang li a {
    float: left;
    width: 100%;
    color: #fff;
    line-height: 50px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .06)
}

.header-lang li:last-child a {
    box-shadow: none
}

.header-lang li a:hover {
    opacity: .7
}

.header-location {
    float: right;
    position: relative;
    z-index: 100;
    text-align: center
}

.header-location a {
    float: left;
    width: 160px;
    position: relative;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 60px;
    background-color:#d5912d;
    transition: all .4s;
}

.scroll .header-location a {
    background-color: rgba(0, 0, 0, .25)
}

.header-location a:hover {
    background-color: #000
}

.header-location a section {
    display: inline-block;
    padding-left: 28px;
    background: url(../images/icon-pin.png) no-repeat 0 center/20px 24px;
    line-height: 60px
}

#nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 7999;
    text-align: center;
    display: none;
    backdrop-filter: blur(13px)
}

#nav::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    opacity: .85
}

.nav-inner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-top: 120px;
    overflow: hidden;
    overflow-y: auto
}

#nav ul {
    width: 100%;
    padding: 30px;
    position: relative;
    z-index: 100
}

#nav li {
    width: 100%;
    position: relative
}

#nav li:hover {
    z-index: 10
}

#nav li>a {
    float: left;
    width: 100%;
    font-family: Ivy Mode;
    color: #fff;
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 70px;
    position: relative;
    transition: all .3s;
    overflow: hidden
}

#nav li>a:hover {
    color: #c08329
}

#nav li>a.active {
    color: #c08329
}

#nav li>a section {
    display: inline-block;
    position: relative
}

#nav li>a section::after,
#nav li>a section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    width: 0;
    height: 2px;
    background-color: #c08329;
    transition: all 1s
}

#nav li>a section::after {
    left: auto;
    right: -30px
}

#nav li>a.active section::before,
#nav li>a:hover section::before {
    left: -1330px;
    width: 1300px
}

#nav li>a.active section::after,
#nav li>a:hover section::after {
    right: -1330px;
    width: 1300px
}

#nav>ul li span {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 280px;
    padding: 25px 30px;
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08)
}

#nav>ul li span a {
    float: left;
    width: 100%;
    padding: 5px 0;
    position: relative;
    font-weight: 500
}

#nav>ul li span a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #a9a3a1;
    border-radius: 50%;
    opacity: 0;
    transition: all .2s
}

#nav>ul li span a:hover::before {
    left: -9px;
    opacity: 1
}

.nav-opened {
    overflow: hidden
}

.nav-opened .header {
    padding: 40px 0;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .06)
}

.nav-opened #logo {
    top: -10px
}

.nav-opened #logo img {
    height: 80px
}

.book-active .quick-book {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}

.quick-book {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 9999;
    backdrop-filter: blur(13px);
    text-align: center;
    transition: all .3s ease;
    transform: scale(.5);
    opacity: 0;
    visibility: hidden
}

.quick-book::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #c08329;
    opacity: .85
}

.quick-book .page-title {
    padding-top: 3px !important
}

.quick-book::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 23%;
    left: 0;
    right: 0;
    background: url(../images/primebodrumlogoyatay1276x600.svg) no-repeat center bottom/90% auto;
    opacity: .09;
}

body.book-active {
    overflow: hidden
}

body.book-active .quick-book {
    display: block
}

.quick-book-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 300
}

.quick-book-close::before {
    content: "";
    position: absolute;
    right: -85px;
    top: -85px;
    width: 140px;
    height: 140px;
    background-color: #000;
    transform: rotate(45deg)
}

.quick-book-close i {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: url(../images/icon-close.png) no-repeat center/16px;
    cursor: pointer;
    z-index: 300
}

.quick-book-close:hover i {
    background-size: 12px
}

.quick-book-area {
    float: left;
    width: 100%;
    position: relative
}

.quick-book-area .input {
    height: 60px;
    padding: 0 100px 0 30px;
    font-size: 20px;
    line-height: 60px;
    border: 0;
    border-radius: 30px
}

.quick-book-area .input:focus {
    box-shadow: 0 7px 30px rgba(67, 64, 105, .2)
}

.quick-book-area .button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 40px;
    text-indent: -9999px;
    background: #bc9dff url(../images/icon-search.png) no-repeat center/20px;
    border-radius: 20px;
    transition: none
}

.quick-book-area .button:hover {
    background-color: #61d9c0;
    background-size: 18px
}

.quick-book .hero-categories {
    float: left;
    width: 100%;
    margin-top: 89px;
    position: static;
    color: #70778b
}

.quick-book .hero-categories li a {
    color: #3f3359
}

.quick-book .hero-categories li a:hover {
    box-shadow: inset 0 -2px 0 #bc9dff
}

.controls {
    height: 100%
}

.slick-next,
.slick-prev {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    text-indent: -9999px;
    cursor: pointer;
    z-index: 1000;
    transition: all .2s ease;
    background: #fff url(../images/arrow-left.png) no-repeat center/auto 20px;
    border-radius: 50%
}

.slick-prev {
    left: 0
}

.slick-next {
    right: 0;
    background-image: url(../images/arrow-right.png)
}

.slick-next:hover,
.slick-prev:hover {
    background-color: #c08329
}

.slick-prev:hover {
    background-image: url(../images/arrow-white-left.png)
}

.slick-next:hover {
    background-image: url(../images/arrow-white-right.png)
}

ul.slick-dots {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 28px;
    z-index: 1000;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .2))
}

ul.slick-dots li {
    float: none;
    display: inline-block;
    width: 40px;
    height: 4px;
    margin: 0 5px;
    transition: all .3s
}

ul.slick-dots li button {
    float: left;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    text-indent: -9999px;
    opacity: .4
}

ul.slick-dots li button:hover {
    opacity: .6
}

ul.slick-dots li button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff
}

ul.slick-dots li.slick-active button {
    opacity: 1
}

.slider-hero-out {
    float: left;
    width: 100%;
    position: relative;
    z-index: 700
}

.slider-hero-wrap {
    float: left;
    width: 100%;
    position: relative;
    z-index: 700
}

.slider-hero {
    float: left;
    width: 100%;
    position: relative;
    z-index: 700
}

.slider-hero .slick-list {
    overflow: hidden
}

.slider-hero-item {
    float: left;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    position: relative;
    text-align: center;
    overflow: hidden
}

.item-zoom {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 3s;
    transform-origin: center;
    transform: scale(1.5)
}

.item-zoom::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: .33
}

.slick-current .item-zoom {
    transform: scale(1)
}

.slider-hero-video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover
}

.hero-video-mask {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.7;
    z-index: 20
}

.slider-hero-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 326px;
    z-index: 20
}

.slider-hero-title-in {
    display: inline-block;
    width: 100%;
    max-width: 720px
}

.slider-hero-title strong {
    float: left;
    width: 100%;
    margin-top: -3px;
    font-family: Ivy Mode;
    font-size: 70px;
    font-weight: 400;
    color: #fff;
    line-height: 80px;
    letter-spacing: 1px
}

.slider-hero ul.slick-dots {
    right: 0;
    background: 0 0
}

.vertical-out {
    width: 100%;
    height: 100%;
    display: table
}

.vertical-in {
    width: 100%;
    display: table-cell;
    vertical-align: middle
}

.showcase-out {
    float: left;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden
}

.showcase-wrap {
    float: left;
    width: 100%;
    position: relative
}

.slider-showcase {
    float: left;
    width: 160%;
    position: relative;
    overflow: hidden
}

.slider-showcase .slick-list {
    overflow: hidden
}

.slider-showcase-item {
    float: left;
    width: 100%;
    padding-right: 20px;
    position: relative
}

.slider-showcase-item section {
    float: left;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.slider-showcase-item img {
    float: left;
    width: 100%
}

.slider-showcase .slick-next,
.slider-showcase .slick-prev {
    top: auto;
    bottom: 0
}

.slider-showcase .slick-next {
    left: 52px
}

.slider-wide {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden
}

.slider-wide div {
    float: left;
    width: 100%;
    position: relative
}

.slider-full div img,
.slider-wide div a {
    float: left;
    width: 100%
}

.slider-wide div a {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.slider-wide .slick-prev {
    left: 15px
}

.slider-wide .slick-next {
    right: 15px
}

.hero-extra {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 60px
}

.hero-extra .outer {
    height: 100%
}

.hero-promo {
    float: left;
    width: 220px;
    position: relative;
    color: #fff;
    z-index: 1020
}

.hero-promo h5 {
    float: left;
    width: 100%;
    margin: 11px 0 9px 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 2px
}

.hero-promo a {
    float: left;
    width: 100%;
    height: 140px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    letter-spacing: 1px;
    color: #fff
}

.hero-promo a strong {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 20px;
    font-weight: 500;
    border-bottom: 2px solid #fff;
    background-image: linear-gradient(180deg, rgba(62, 87, 59, 0), #c08329);
    transition: all .4s
}

.hero-promo a:hover strong {
    padding-top: 50px
}

.hero-social {
    position: absolute;
    right: 30px;
    top: 10px;
    z-index: 1010
}

.hero-social ul {
    width: 50px
}

.hero-social li {
    padding-bottom: 15px
}

.hero-social li:last-child {
    padding-bottom: 0
}

.hero-social li a {
    float: left;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    transition: all .25s
}

.hero-social li a:hover {
    border-color: #c08329
}

.hero-social li a img {
    float: left;
    height: 50px;
    margin: -1px
}

.hero-book {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 60px;
    text-align: center;
    z-index: 1000
}

.hero-book>h4 {
    float: left;
    width: 100%;
    padding-bottom: 31px;
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 4px;
    color: #f0e9d8
}

.hero-book>h4::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    width: 2px;
    height: 60px;
    margin-left: -1px;
    background-color: #c08329
}

.book-holiday-wrap {
    display: inline-block;
    width: 100%;
    max-width: 840px;
    position: relative;
    z-index: 1000
}

.book-holiday {
    float: left;
    width: 100%;
    padding-right: 180px;
    position: relative
}

.book-holiday section {
    float: left;
    width: 33.33334%;
    height: 80px;
    position: relative;
    background-color: #fff;
    text-align: left;
    box-shadow: inset 1px 0 0 rgba(0, 0, 0, .1)
}

.book-holiday section:first-child {
    box-shadow: none
}

.book-holiday section i {
    float: left;
    width: 100%;
    height: 30px;
    padding-left: 25px;
    padding-top: 12px;
    font-size: 10px;
    color: #999;
    font-weight: 500;
    letter-spacing: 2px
}

.book-holiday section .input {
    width: calc(100% - 10px);
    height: 40px;
    padding: 0 20px;
    margin-left: 5px;
    font-weight: 500;
    line-height: 40px;
    border: 0;
    border-radius: 0;
    box-shadow: none
}

.book-holiday .button {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 80px;
    font-size: 13px;
    line-height: 80px;
    border-radius: 0
}

.mask,
.mask-top {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 700
}

.mask-top {
    top: 0;
    bottom: auto
}

.mask-top>img,
.mask>img {
    float: left;
    width: 100%
}
.footer-book-wrap {
    float: left;
    width: 100%;
    padding-top: 30px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.footer-book-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #17150f;
    opacity: .8
}

.footer-book {
    float: left;
    width: 100%;
    position: relative;
    text-align: center
}

.footer-wrap {
    color: #666
}

.footer-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

.footer-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/bg-footer.png) no-repeat 0 0/auto 100%;
    opacity: .04
}

.footer {
    float: left;
    width: 100%;
    padding: 60px 0;
    position: relative;
    z-index: 10
}

.copyright a:hover,
.footer a:hover {
    text-decoration: underline
}

.footer-block-wrap {
    float: left;
    width: 100%;
    position: relative
}

.footer-block-wrap .inner-20 {
    display: flex;
    align-items: center
}

.footer-block {
    float: left;
    width: 33.33334%;
    padding: 0 20px;
    text-align: center;
    line-height: 30px
}

.footer-logo {
    float: left;
    width: 100%
}

.footer-logo img {
    height: 140px
}

.footer-social {
    float: left;
    width: 100%;
    position: relative;
    text-align: center
}

.footer-social h5 {
    float: left;
    width: 100%;
    padding: 44px 0 26px 0;
    position: relative;
    color: #757575;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 2px
}

.footer-social ul {
    float: none;
    display: inline-block
}

.footer-social li {
    padding-right: 15px
}

.footer-social li:last-child {
    padding-right: 0
}

.footer-social li a {
    float: left;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 50%;
    transition: all .25s
}

.footer-social li a:hover {
    border-color: #c08329
}

.footer-social li a img {
    float: left;
    height: 50px;
    margin: -1px
}

.copyright {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: url(../images/dot-line.png) repeat-x 0 0
}

.copyright .left {
    float: left;
    width: calc(100% - 130px)
}

.copyright .left section {
    float: left;
    width: 100%
}

.copyright .left section:last-child {
    margin-top: 10px;
    color: #999
}

.copyright .left section a {
    display: inline-block
}

.copyright .left section i {
    display: inline-block;
    margin: 0 10px;
    opacity: .2
}

.copyright .right {
    float: right
}

.copyright .right a {
    display: inline-block;
    font-weight: 500
}

.copyright .right a img {
    float: right;
    height: 20px;
    margin-left: 7px
}

.stats {
    float: left;
    width: 100%;
    position: relative;
    z-index: 100;
    color: #999
}

.stats ul {
    width: 100%;
    margin-bottom: -30px;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap
}

.stats li {
    position: relative;
    margin-bottom: 30px;
    flex: 1;
    flex-basis: 25%
}

.stats li strong {
    float: left;
    padding-bottom: 3px;
    font-size: 77px;
    font-weight: 600;
    line-height: 80px;
    color: #0046b8;
    letter-spacing: -1px;
    position: relative;
    background-color: #fff;
    box-shadow: 25px 0 0 #fff, -25px 0 0 #fff
}

.stats li span {
    float: left;
    width: 100%;
    padding-top: 22px;
    margin-top: -19px;
    font-size: 15px;
    box-shadow: inset 0 2px 0 0 #e3e6e8
}

.page-title {
    float: left;
    width: 100%;
    padding: 73px 0 52px 0;
    position: relative;
    font-family: Ivy Mode;
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 60px;
    color: #17150f;
    text-align: center;
    z-index: 30
}

.page-title-slim {
    padding-left: 21%;
    padding-right: 21%
}

.page-title-left {
    text-align: left !important
}

.page-title-white {
    color: #fff
}

.page-title::after {
    content: "";
    position: absolute;
    bottom: 31px;
    left: 50%;
    width: 80px;
    height: 5px;
    margin-left: -40px;
    background: url(../images/waves.png) repeat-x 0 0/auto 100%;
    opacity: .2
}

.page-title-left::after {
    left: -20px;
    margin-left: 0
}

.page-title-white::after {
    opacity: 1
}

.page-title article {
    display: inline-block;
    margin: -4px 0 -1px 0;
    font-size: 30px;
    line-height: 50px
}

.page-title strong {
    font-weight: 600
}

.page-title a {
    display: inline-block;
    position: relative;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    color: #c08329;
    transition: all .3s
}

.page-title a:hover {
    color: #d5912d;
}

.page-title a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #c08329;
    transition: all .3s;
    opacity: 0
}

.page-title a:hover::after {
    width: 100%;
    opacity: 1
}

.text-white {
    color: #fff !important
}

.title-medium {
    float: left;
    width: 100%;
    margin: 44px 0 31px 0;
    position: relative;
    font-family: Ivy Mode;
    font-weight: 500;
    font-size: 37px;
    line-height: 40px;
    color: #c08329;
    text-align: center;
    z-index: 30
}

.page-summary {
    float: left;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    margin: -19px 0 39px 0;
    position: relative;
    font-family: Ivy Mode;
    font-size: 33px;
    letter-spacing: 1px;
    line-height: 50px;
    color: #c08329;
    text-align: center;
    z-index: 30
}

.page-about {
    float: left;
    width: 100%;
    padding: 0 15%;
    margin: -16px 0 36px 0;
    position: relative;
    font-size: 20px;
    color: #000000;
    line-height: 40px;
    z-index: 20;
    text-align: center
}

.page-about-white {
    color: #fff
}

.page-about-left {
    padding: 0 !important;
    text-align: left
}

.page-about a,
.page-about b,
.page-about strong {
    font-weight: 600;
    color: #17150f;
}

.page-about a:hover {
    color: #c08329;
    text-decoration: none
}

.page-hero-text {
    float: left;
    width: 100%;
    position: relative;
    font-family: Ivy Mode;
    font-size: 32px;
    color: #17150f;
    letter-spacing: 1px;
    line-height: 60px;
    z-index: 20
}

.page-photo {
    float: right;
    width: 50%;
    max-width: 500px;
    padding: 0 0 20px 30px
}

.page-photo-wide {
    float: left;
    width: 100%;
    padding-bottom: 50px
}

.page-photo img,
.page-photo-wide img {
    float: left;
    width: 100%
}

.welcome {
    float: left;
    width: 100%;
    position: relative
}

.welcome::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-image: linear-gradient(180deg, #fff, #f0e9d9);
    opacity: .3
}

.welcome::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background: url(../images/bg-prime.png) no-repeat right 25% bottom/auto 55%;
    opacity: .12
}

.welcome-in {
    float: left;
    width: 100%;
    position: relative;
    z-index: 10
}

.welcome-text {
    float: left;
    width: calc(50% - 80px)
}

.welcome-right {
    float: right;
    width: calc(50% - 80px)
}

.hotel-advantages {
    float: left;
    width: 100%;
    position: relative;
    text-align: center
}

.hotel-advantages ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.hotel-advantages li {
    width: 25%;
    margin-bottom: 54px
}

.hotel-advantages li section {
    float: left;
    width: 100%
}

.hotel-advantages li section picture {
    display: inline-block;
    border: 1px solid rgba(189, 179, 53, .2);
    border-radius: 50%
}

.hotel-advantages li section:hover picture {
    border-color: #c08329
}

.hotel-advantages li section picture img {
    float: left;
    width: 80px;
    height: 80px;
    margin: -1px
}

.hotel-advantages li section strong {
    float: left;
    width: 100%;
    margin-top: 26px;
    font-weight: 500;
    font-size: 13px
}

.welcome-right .hotel-advantages ul {
    margin-bottom: -40px
}

.welcome-right .hotel-advantages li {
    width: 50%
}

.bubble-gallery-wrap {
    float: left;
    width: 100%;
    padding-top: 220px;
    position: relative;
    background-image: linear-gradient(180deg, #2b3c28, #4a6132);
    overflow: hidden
}

.bubble-gallery-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/logo-icon.png) no-repeat center bottom/90% auto;
    opacity: .07
}

.bubble-gallery-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 10vh;
    background-color: #fff
}

.slider-gallery-wrap {
    float: left;
    width: 100%;
    position: relative;
    z-index: 700;
    overflow: hidden
}

.slider-gallery {
    float: left;
    width: 100%;
    position: relative;
    z-index: 700
}

.slider-gallery-item {
    float: left;
    width: auto !important;
    position: relative
}

.slider-gallery-item a,
.slider-gallery-item section {
    float: left;
    width: 100%;
    padding: 0 30px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.slider-gallery-item img {
    float: left;
    height: 60vh;
    max-height: 480px;
    transition: all .5s;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%)
}

.slick-center.slider-gallery-item img {
    filter: none;
    -webkit-filter: none
}

.slider-gallery-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    background: #000 url(../images/icon-zoom.png) no-repeat center/24px;
    border-radius: 50%;
    transition: all .5s;
    transform-origin: center;
    transform: scale(.2);
    opacity: 0
}

.slider-gallery-item:hover::after {
    transform: scale(1);
    opacity: 1
}

.geyve-status {
    float: left;
    width: 100%;
    padding: 85px 0 45px 0;
    position: relative;
    text-align: center
}

.geyve-status ul {
    width: 100%;
    position: relative
}

.geyve-status ul::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #000;
    opacity: .1
}

.geyve-status li {
    width: 33.33334%;
    padding: 0 70px;
    margin-bottom: 19px;
    position: relative
}

.geyve-status li section {
    float: left;
    width: 100%;
    background-color: #fff
}

.geyve-status li section strong {
    float: left;
    width: 100%;
    margin-bottom: 11px;
    font-family: Ivy Mode;
    font-size: 41px;
    font-weight: 400;
    color: #c08329;
    line-height: 40px
}

.geyve-status li section span {
    float: left;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    color: #666;
    letter-spacing: 2px
}

.hero-services {
    float: left;
    width: 100%;
    margin-top: 20px;
    position: relative
}

.hero-services ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.hero-services li {
    padding: 0 40px;
    margin-bottom: 80px;
    flex: 1;
    flex-basis: 25%
}

.hero-services li:nth-child(odd) {
    margin-top: 80px
}

.hero-services li a {
    float: left;
    width: 100%;
    position: relative;
    color: #fff
}

.hero-services li a picture {
    float: left;
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    text-align: center
}

.hero-services li a picture::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 60%;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
    opacity: .3;
    transition: all .4s
}

.hero-services li a:hover picture::after {
    top: 0;
    opacity: .6
}

.hero-services li a picture i {
    position: absolute;
    left: -500px;
    right: -500px;
    top: 0;
    bottom: 0
}

.hero-services li a picture i img {
    height: 100%;
    transform-origin: center;
    transition: all 1s
}

.hero-services li a:hover picture i img {
    transform: scale(1.25, 1.25)
}

.hero-services li a section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    padding-left: 40px;
    z-index: 10
}

.hero-services li a section strong {
    float: left;
    position: relative;
    font-family: Ivy Mode;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    transition: all .4s
}

.hero-services li a:hover section strong {
    letter-spacing: 2px
}

.hero-services li a section strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    height: 2px;
    background-color: #c08329
}

.location-info {
    float: left;
    width: calc(50% - 40px)
}

.location-info .link-all a {
    background-color: #fff
}

.home-blog-wrap {
    float: right;
    width: calc(50% - 40px)
}

.home-blog {
    float: left;
    width: 100%;
    position: relative
}

.home-blog ul {
    width: 100%
}

.home-blog li {
    width: 50%;
    padding: 0 30px;
    margin-bottom: 64px
}

.home-blog li:nth-child(odd) {
    margin-top: 40px
}

.home-blog li:first-child {
    width: 100%;
    margin-top: 0
}

.home-blog li:first-child .blog-item picture img {
    margin: -30px 0
}

.home-blog li:first-child .blog-item strong {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0
}

.blog-list {
    float: left;
    width: 100%;
    position: relative
}

.blog-list ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.blog-list li {
    width: 33.33334%;
    padding: 0 30px;
    margin-bottom: 54px
}

.blog-item {
    float: left;
    width: 100%;
    position: relative
}

.blog-item picture {
    float: left;
    width: 100%;
    position: relative;
    z-index: 5;
    overflow: hidden
}

.blog-item img {
    float: left;
    width: 100%;
    transform-origin: center;
    transition: all 1s
}

.blog-item:hover picture img {
    transform: scale(1.4, 1.4)
}

.blog-item span {
    float: left;
    width: 100%;
    margin: 21px 0 7px 0;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px
}

.blog-item strong {
    float: left;
    width: 100%;
    font-family: Ivy Mode;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 30px;
    position: relative
}

.blog-item em {
    float: left;
    padding-right: 25px;
    margin-top: 13px;
    background: url(../images/arrow-right.png) no-repeat right center/auto 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: .5;
    transition: all .3s
}

.blog-item:hover em {
    padding-right: 30px;
    opacity: 1;
    letter-spacing: 2px
}

.available-services .blog-item strong {
    padding: 11px 0 9px 0;
    font-size: 30px
}

.instagram-gallery {
    float: left;
    width: 100%;
    margin-bottom: 40px;
    position: relative
}

.instagram-gallery ul {
    width: 100%;
    margin-bottom: -4px
}

.instagram-gallery li {
    width: 16.66667%;
    padding: 0 2px 4px 2px
}

.instagram-gallery li a {
    float: left;
    width: 100%;
    overflow: hidden
}

.instagram-gallery li a img {
    float: left;
    width: 100%;
    transform-origin: center;
    transition: all 1s
}

.instagram-gallery a:hover img {
    transform: scale(1.2, 1.2)
}

.inner-80 {
    margin: 0 -80px
}

.inner-40 {
    margin: 0 -40px
}

.inner-30 {
    margin: 0 -30px
}

.inner-20 {
    margin: 0 -20px
}

.inner-15 {
    margin: 0 -15px
}

.inner-10 {
    margin: 0 -10px
}

.inner-6 {
    margin: 0 -6px
}

.inner-5 {
    margin: 0 -5px
}

.inner-2 {
    margin: 0 -2px
}

.top-150 {
    padding-top: 150px
}

.top-100 {
    padding-top: 100px
}

.top-50 {
    padding-top: 50px
}

.bottom-150 {
    padding-bottom: 150px
}

.bottom-100 {
    padding-bottom: 100px
}

.bottom-50 {
    padding-bottom: 50px
}

.left-80 {
    padding-left: 80px
}

.right-80 {
    padding-right: 80px
}

.block-gradient {
    float: left;
    width: 100%;
    position: relative;
    background-image: linear-gradient(180deg, #fbfbf3, #fff)
}

.block-grey {
    float: left;
    width: 100%;
    position: relative;
    background-color: #fbfbf3
}

.block-space {
    float: left;
    width: 100%;
    height: 80px
}

.block-border-bottom {
    background: url(../images/dot-line.png) repeat-x 0 bottom
}

.block-circles {
    position: relative
}
.block-circles::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/bg-circles.jpg) no-repeat 0 0/45% auto;
    opacity: 0.65;
}

.link-all {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 100
}

.link-all a {
    display: inline-block;
    height: 50px;
    padding: 0 20px 0 30px;
    position: relative;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 500;
    color: #c08329;
    line-height: 50px;
    border-radius: 25px;
    transition: all .3s
}

.link-all a:hover {
    color: #fff;
    letter-spacing: 2px
}

.link-all a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-color: #c08329;
    border-radius: 25px;
    opacity: .15;
    transition: all .3s
}

.link-all a:hover::before {
    width: 100%;
    opacity: 1
}

.link-all a::after {
    content: "";
    float: right;
    width: 14px;
    height: 50px;
    margin-left: 10px;
    position: relative;
    background: url(../images/arrow-right.png) no-repeat 0 center/100% auto
}

.link-all a:hover::after {
    background-image: url(../images/arrow-white-right.png)
}

.link-all a span {
    position: relative;
    z-index: 10
}

.link-all-dark a {
    background-color: #c08329;
    color: #fff
}

.link-all-dark a:hover {
    background-color: #c08329
}

.link-all-dark a::before {
    display: none
}

.link-all-dark a:hover::before {
    width: calc(100% - 10px);
    opacity: .2
}

.link-all-dark a::after {
    background-image: url(../images/arrow-white-right.png)
}

.grayscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%)
}

.grayscale:hover {
    filter: none;
    -webkit-filter: none
}

.blog-wrap {
    float: left;
    width: 100%;
    position: relative
}

.left-100 {
    padding-left: 100px
}

.blog-title {
    font-family: Jost
}

.blog-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background-image: linear-gradient(-90deg, rgba(206, 201, 200, 0), rgba(206, 201, 200, .3))
}

.blog-content {
    float: left;
    width: 100%
}

.blog-photo {
    float: left;
    width: 100%;
    margin-bottom: 30px
}

.blog-photo img {
    width: 100%
}

.date {
    float: left;
    width: 100%;
    padding-left: 40px;
    margin: 15px 0 30px 0;
    font-weight: 500;
    color: #999;
    position: relative;
    letter-spacing: 1px
}

.date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    margin-top: -1px;
    background-color: #ccc
}

.page-share {
    position: absolute;
    top: 0;
    left: 0
}

.page-share ul {
    width: 50px
}

.page-share li {
    margin-bottom: 15px
}

.page-share li a {
    float: left;
    border: 1px solid #e5e5e5;
    transition: all .25s;
    border-radius: 50%
}

.page-share li a:hover {
    border-color: #000
}

.page-share li a img {
    float: left;
    height: 50px;
    margin: -1px
}

.video-block {
    float: left;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.video-block img {
    float: left;
    width: 100%;
    max-height: 600px
}

.video-block iframe {
    position: absolute;
    top: 0;
    left: 0
}

.video-block a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    transition: all .4s
}

.video-block a:hover {
    background-color: rgba(0, 0, 0, 0)
}

.video-block a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 5%;
    left: 0;
    right: 0;
    background: url(../images/prıme\ bodrum\ logo\ yatay\ gold\ 1276x600.svg) no-repeat right 10% bottom/auto 25%
}

.video-block a section {
    float: left;
    margin-left: 16%;
    font-weight: 500;
    font-size: 17px;
    line-height: 80px;
    letter-spacing: 1px;
    transition: all .4s
}

.video-block a:hover section {
    letter-spacing: 2px
}

.video-block a section::before {
    content: "";
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    background: #c08329 url(../images/icon-play.png) no-repeat center/40px;
    border-radius: 50%;
    transition: all .4s
}

.video-block a:hover section::before {
    background-color: #c08329
}

.fancybox-slide--iframe .fancybox-content {
    width: 800px;
    min-height: 300px;
    max-width: 80%;
    max-height: 80%;
    margin: 0
}

.my-fancy {
    display: none;
    padding: 30px !important;
    border-radius: 8px
}

.my-fancy-wrap {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    overflow: hidden;
    overflow-y: auto
}

.my-fancy-wrap::-webkit-scrollbar {
    width: 5px
}

.my-fancy-wrap::-webkit-scrollbar-track {
    background: #eee
}

.my-fancy-wrap::-webkit-scrollbar-thumb {
    background-color: #555
}

.my-fancy-wrap {
    scrollbar-color: #fff #eee;
    scrollbar-width: thin
}

.fancy-title {
    float: left;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    color: #000
}

.fancy-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 2px;
    margin-top: -1px;
    background-color: #cec9c8
}

.fancy-title strong {
    float: left;
    padding: 0 15px;
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #fff
}

.fancy-form {
    float: left;
    width: 100%
}

.fancy-form .item {
    float: left;
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px
}

.fancy-form .item:last-child {
    margin-bottom: 0
}

.fancy-form .item-2 {
    width: calc(50% - 10px)
}

.fancy-form .item-2 label {
    float: left;
    width: 100%;
    padding: 9px;
    border: 1px solid #999;
    border-radius: 4px;
    font-weight: 600
}

.fancy-form .item a {
    font-weight: 600;
    text-decoration: underline
}

.sub-hero {
    float: left;
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 100;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.sub-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .5
}

.sub-hero::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 2px;
    height: 80px;
    background-color: #c08329
}

.sub-hero-title {
    float: left;
    width: 100%;
    padding: 29% 0 94px 0;
    position: relative;
    font-family: Ivy Mode;
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    letter-spacing: 1px
}

.breadcrumb-wrap {
    float: left;
    width: 100%;
    padding: 0 75px
}

.breadcrumb {
    float: left;
    width: 100%;
    padding: 5px 0;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 40px;
    background-color: rgba(206, 201, 200, .15);
    text-align: center
}

.breadcrumb section {
    display: inline-block
}

.breadcrumb a {
    float: left;
    color: #777
}

.breadcrumb a:hover {
    color: #353535;
    text-decoration: underline
}

.breadcrumb i {
    float: left;
    margin: 0 15px;
    opacity: .4
}

.breadcrumb strong {
    float: left;
    font-weight: 600;
    color: #2f3c46
}

.tower-block {
    float: left;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center
}

.tower-picture {
    float: left;
    width: 50%;
    position: relative
}

.tower-picture-in {
    float: left;
    width: calc(100% - 60px);
    position: relative
}

.tower-picture-in img {
    float: left;
    width: 100%;
    position: relative
}

.tower-content {
    float: left;
    width: 50%;
    position: relative
}

.tower-content-in {
    float: right;
    width: calc(100% - 60px);
    position: relative
}

.tower-content-text {
    float: left;
    width: 100%
}

.tower-content-picture {
    float: left;
    width: 100%;
    position: relative
}

.tower-content-picture img {
    float: left;
    width: 100%;
    position: relative
}

.tower-content .page-title {
    padding-top: 3px
}
.form-btn{
    cursor:pointer;
}
.mega-photo {
    float: left;
    width: 100%;
    position: relative
}

.mega-photo img {
    float: left;
    width: 100%
}

.parallax-outer {
    float: left;
    width: 100%;
    padding: 80px 0;
    position: relative
}

.parallax-outer::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 75%;
    background-image: linear-gradient(-90deg, #fff, #ffe4934a);
    opacity: .75
}

.parallax-outer-right::before {
    right: auto;
    left: 0;
    background-image: linear-gradient(90deg, #fff, #ffe4934a)
}

.parallax-mirror {
    z-index: 1 !important
}

.parallax-wrap {
    float: left;
    width: 100%;
    position: relative
}

.parallax-photo-wrap {
    position: absolute;
    left: 0;
    right: calc(50% + 40px);
    bottom: 0;
    top: 0
}

.parallax-photo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: 0 0
}

.parallax-wide-wrap {
    float: left;
    width: 100%;
    position: relative
}

.parallax-wide {
    float: left;
    width: 100%;
    position: relative;
    background: 0 0;
    background-size: 100% auto
}

.parallax-wide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(145deg, #c08329, rgba(0, 70, 128, .5))
}

.parallax-wide-content {
    float: left;
    width: 100%;
    padding: 0 30px;
    position: relative;
    z-index: 10;
    color: #fff
}

.parallax-just-photo img {
    float: left;
    width: 100%;
    max-height: 600px
}

.parallax-just-photo::after,
.parallax-just-photo::before {
    display: none
}

.parallax-text {
    float: right;
    width: calc(50% - 80px);
    position: relative
}

.parallax-text .page-title {
    margin-top: -30px
}

.parallax-right .parallax-photo-wrap {
    right: 0;
    left: calc(50% + 80px)
}

.parallax-right .parallax-text {
    float: left
}

.simple-list {
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 17px;
    line-height: 25px
}

.simple-list ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.simple-list li {
    width: 100%;
    padding: 0 20px 20px 30px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    background: url(../images/icon-ok.png) no-repeat 0 4px/17px auto
}

.block-two {
    width: 48%
}

.our-prime {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.our-prime>ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.our-prime>ul>li {
    width: calc(50% - 40px);
    margin-bottom: 60px
}

.our-prime>ul>li:nth-child(2n+2) {
    float: right;
    margin-top: 60px;
    margin-left: auto
}

.our-prime li picture {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden
}

.our-prime li picture img {
    float: left;
    width: 100%;
    transform-origin: bottom center;
    transition: all 1s
}

.our-prime li:hover picture img {
    transform: scale(1.15, 1.15)
}

.bubble-content {
    float: right;
    width: calc(100% - 50px);
    padding: 0 20px 0 50px;
    margin-top: -60px;
    position: relative;
    background-image: linear-gradient(180deg, #fcfcf5 20%, rgba(255, 255, 255, 0));
    z-index: 10
}

.bubble-content .page-title {
    margin-top: -45px
}

.bubble-content .page-about {
    margin-bottom: 21px
}

.bubble-about {
    float: left;
    width: 50%;
    padding: 50px 60px 40px 60px
}

.bubble-detail {
    float: right;
    width: 50%;
    padding: 32px 60px 60px 60px;
    background-color: #fbfbf3
}

.accordion {
    float: left;
    width: 100%;
    position: relative
}

.accordion-section-title {
    float: left;
    width: 100%;
    padding: 17px 15px 17px 45px;
    margin-bottom: 20px;
    border: 1px solid #f0f2f4;
    border-radius: 6px;
    position: relative;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px
}

.accordion-section-title:hover {
    color: #666
}

.accordion-section-title::after,
.accordion-section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 12px;
    height: 2px;
    margin-top: -1px;
    background-color: #ccc;
    transition: all .25s
}

.accordion-section-title::after {
    background-color: #ccc;
    transform: rotate(90deg);
    opacity: 1
}

.accordion-section-title.active {
    color: #c08329;
    border-color: #c08329
}

.accordion-section-title.active::before {
    background-color: #c08329
}

.accordion-section-title.active::after {
    left: 15px;
    opacity: 0
}

.accordion-section-content {
    float: left;
    width: 100%;
    padding: 10px 20px 20px 45px;
    margin: -5px 0 15px 0;
    display: none;
    position: relative;
    font-size: 18px;
    line-height: 30px
}

.accordion-section-content::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 20px;
    left: 20px;
    width: 2px;
    background-color: rgba(0, 0, 0, .08)
}

.accordion-section-content b,
.accordion-section-content strong {
    color: #151515;
    font-weight: 600
}

.accordion-section-content a {
    font-weight: 600
}

.contact-info {
    float: left;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    text-align: center;
    overflow: hidden
}

.contact-info section {
    flex: 1;
    flex-basis: 33.33334%;
    padding: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    line-height: 25px;
    box-shadow: 1px 0 0 #eee;
    transition: all .4s
}

.contact-info section:hover {
    background-color: #f9f9f9
}

.contact-info section span {
    display: block;
    margin-bottom: 1px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    color: #c08329
}

.contact-info section article {
    display: block;
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 30px
}

.contact-info section article:last-child {
    margin-bottom: 0
}

.contact-form {
    float: left;
    width: 100%;
    position: relative
}

.contact-form .title-medium {
    margin-top: 14px
}

.form-item {
    float: left;
    width: 50%;
    padding: 0 15px 30px 15px;
    position: relative
}

.form-item-text {
    margin-top: -10px;
    color: #666
}

.form-item:last-child {
    padding-bottom: 0
}

.form-item label {
    float: left;
    width: 100%
}

.form-item section {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -10px
}

.form-item i {
    float: left;
    width: 100%;
    font-weight: 500;
    margin: -10px 0 5px 0
}

.security-code img {
    float: left;
    width: 120px;
    height: 50px;
    margin-right: 10px;
    padding: 3px;
    border: 1px solid #999;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .03)
}

.security-code a.refresh {
    float: left;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    background: #fff url(../images/refresh.png) no-repeat center center/24px;
    border: 1px solid #999;
    border-radius: 6px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, .03)
}

.security-code a:hover.refresh {
    background-color: #eee
}

.contact-map-wrap {
    float: left;
    width: 100%;
    position: relative
}

.contact-map-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background-color: #fbfbf3
}

.contact-map {
    float: left;
    width: 100%;
    height: 600px;
    padding: 4px;
    position: relative;
    border: 1px solid #c08329;
    background-color: #fff;
    border-radius: 6px;
    z-index: 10
}

.upload {
    float: left;
    width: 100%;
    height: 50px;
    position: relative;
    text-align: center
}

.upload section {
    float: left;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #999;
    font-weight: 500;
    line-height: 46px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 5px 5px 0 rgb(0 0 0 / 3%)
}

.upload:hover section {
    border-color: #00c18c
}

.upload section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 48px;
    background: url(../images/icon-clip.png) no-repeat center/16px;
    opacity: .5
}

.upload:hover section::after {
    opacity: 1
}

.upload input {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    overflow: hidden !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    cursor: pointer
}

.slider-store {
    float: left;
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 4px
}

.slider-store div {
    float: left;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.slider-store div a,
.slider-store div a img {
    float: left;
    width: 100%
}

.item {
    float: left;
    width: 25%;
    padding: 0 20px 40px 20px
}

.photo-item {
    float: left;
    width: 100%;
    transition: all .25s
}

.photo-item a {
    float: left;
    width: 100%;
    position: relative
}

.photo-item a section {
    float: left;
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden
}

.photo-item a section img {
    float: left;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .07);
    transform-origin: center bottom;
    transition: all 1s
}

.photo-item a:hover section img {
    transform: scale(1.1, 1.1)
}

.photo-item a section::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .7) url(../images/icon-expand.png) no-repeat center/12px;
    border-radius: 50%;
    opacity: 0
}

.photo-item a:hover section::after {
    opacity: 1
}

.photo-item a span {
    float: left;
    width: 100%;
    margin: 11px 0 -1px 0;
    color: #999;
    font-size: 13px;
    letter-spacing: 2px
}

.pages {
    float: left;
    width: 100%;
    margin-top: 20px;
    position: relative;
    font-size: 17px;
    line-height: 48px;
    text-align: center
}

.pages ul {
    width: 100%;
    margin-bottom: -15px
}

.pages li {
    float: none;
    display: inline-block;
    padding: 0 5px
}

.pages li a {
    float: left;
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    color: #999;
    transition: all .3s;
    border-radius: 50%
}

.pages li a:hover {
    border-color: #c08329
}

.pages li a.current {
    color: #c08329;
    border-color: #c08329
}

.cookies-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 7950;
    text-align: center;
    display: none
}

.cookies {
    float: left;
    width: 100%;
    padding: 25px 30px 20px 30px;
    position: relative;
    background-color: rgba(0, 0, 0, .8);
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
    border-radius: 5px
}

.cookies::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 15px;
    left: 15px;
    bottom: 0;
    background: url(../images/icon-cookies.png) no-repeat 0 top/60px auto;
    opacity: .3
}

.cookies section {
    float: left;
    width: 100%;
    position: relative
}

.cookies-close {
    position: absolute;
    top: -16px;
    right: 20px;
    width: 32px;
    height: 32px
}

.cookies-close span {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    text-indent: -9999px;
    background: #c09c61 url(../images/icon-close.png) no-repeat center/20px;
    cursor: pointer;
    border: 2px solid #fff
}

.cookies-close span:hover {
    background-size: 18px;
    background-color: #000
}

.products-other li>section picture img {
    width: auto;
    max-width: 100%;
    height: 200px
}

@media only screen and (max-width:1640px) {
    .header {
        padding: 30px 0 !important
    }

    #logo {
        top: -10px
    }

    #logo img {
        height: 100px
    }

    .slider-hero-title strong {
        font-size: 47px;
        line-height: 50px
    }

    .quick-book .page-about {
        display: none
    }

    .bubble-gallery-wrap {
        padding-top: 160px
    }
}

@media only screen and (max-width:1540px) {
    .wrap {
        width: 1320px
    }

    .slider-gallery-item a,
    .slider-gallery-item section {
        padding: 0 20px
    }

    .welcome-in {
        padding-bottom: 50px
    }

    .hero-services .inner-40 {
        margin: 0 -20px
    }

    .hero-services li {
        padding: 0 20px;
        margin-bottom: 40px
    }

    .hero-services li:nth-child(odd) {
        margin-top: 40px
    }

    .hero-services li a picture {
        height: 480px
    }

    .home-blog-wrap,
    .location-info {
        width: calc(50% - 20px)
    }

    .blog-list .inner-30,
    .home-blog .inner-30 {
        margin: 0 -20px
    }

    .blog-list li,
    .home-blog li {
        padding: 0 20px;
        margin-bottom: 44px
    }
}

@media only screen and (max-width:1440px) {
    .wrap {
        width: 1200px
    }

    .top-150 {
        padding-top: 100px
    }

    .top-100 {
        padding-top: 75px
    }

    .top-50 {
        padding-top: 35px
    }

    .bottom-150 {
        padding-bottom: 100px
    }

    .bottom-100 {
        padding-bottom: 75px
    }

    .bottom-50 {
        padding-bottom: 35px
    }

    .footer-book-wrap {
        padding-top: 0
    }

    .welcome-in {
        padding-bottom: 40px
    }

    .page-title-slim {
        padding-left: 15%;
        padding-right: 15%
    }

    .page-about {
        padding: 0 10%
    }

    .welcome-right,
    .welcome-text {
        width: calc(50% - 40px)
    }

    .hero-extra {
        float: left;
        width: 100%;
        margin-top: 10px;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        text-align: center
    }

    .hero-promo {
        float: none;
        display: inline-block;
        width: 100%;
        max-width: 600px;
        color: #333
    }

    .hero-promo a {
        height: 320px
    }

    .hero-social {
        display: none
    }
}

@media only screen and (max-width:1280px) {
    .wrap {
        width: 980px
    }

    #nav li>a {
        font-size: 27px;
        line-height: 60px
    }

    .hero-book>h4 {
        padding-bottom: 26px;
        letter-spacing: 2px
    }

    .hero-book>h4::before {
        top: -60px;
        height: 40px
    }

    .slider-hero-title {
        padding-bottom: 276px
    }

    .geyve-status li {
        padding: 0 35px
    }

    .tower-content-in,
    .tower-picture-in {
        width: calc(100% - 30px)
    }

    .parallax-outer {
        padding: 50px 0
    }

    .parallax-photo-wrap {
        right: 50%
    }

    .parallax-right .parallax-photo-wrap {
        left: 50%
    }

    .page-hero-text {
        font-size: 27px;
        line-height: 50px
    }

    .masonry-wrap .inner-20 {
        margin: 0 -15px
    }

    .item {
        width: 33.33334%;
        padding: 0 15px 30px 15px
    }

    .our-prime>ul>li {
        width: calc(50% - 20px);
        margin-bottom: 40px
    }
}

@media only screen and (max-width:1023px) {

    .wrap,
    .wrap-slim {
        float: left;
        width: 100%;
        padding: 0 30px
    }

    .header {
        position: absolute;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
    }

    .header .wrap {
        padding: 0
    }

    .nav-icon {
        width: 70px
    }

    .nav-icon span {
        top: 50%
    }

    .header-lang-icon {
        width: 70px;
        background-position: 15px center
    }

    .header-lang {
        width: 70px
    }

    .header-book,
    .header-location a {
        width: 130px
    }

    .footer-wrap {
        float: left;
        width: 100%;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 0
    }

    .top-150 {
        padding-top: 75px
    }

    .top-100 {
        padding-top: 50px
    }

    .top-50 {
        padding-top: 25px
    }

    .bottom-150 {
        padding-bottom: 75px
    }

    .bottom-100 {
        padding-bottom: 50px
    }

    .bottom-50 {
        padding-bottom: 25px
    }

    .home-blog-wrap,
    .location-info,
    .welcome-right,
    .welcome-text {
        width: 100%
    }

    .welcome::before {
        width: 100%
    }

    .welcome::after {
        width: 100%;
        background-size: 94% auto;
        background-position: center bottom;
        opacity: .07
    }

    .welcome-right {
        padding-top: 0
    }

    .slider-gallery-item a,
    .slider-gallery-item section {
        padding: 0 10px
    }

    .slider-gallery .slick-prev {
        left: -15px
    }

    .slider-gallery .slick-next {
        right: -15px
    }

    .hero-services li {
        flex-basis: 50%
    }

    .block-circles::before {
        background-size: 120% auto;
        opacity: .2
    }

    .geyve-status {
        padding: 65px 0 25px 0
    }

    .page-title-slim {
        padding-left: 0;
        padding-right: 0
    }

    .page-about {
        padding: 0
    }

    .page-summary {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 24px;
        line-height: 40px
    }

    .instagram-gallery li {
        width: 33.33334%
    }

    .sub-hero-title {
        padding-top: 35%
    }

    .video-block a::before {
        background-position: right 20px bottom;
        background-size: auto 27%
    }

    .video-block a section {
        margin-left: 40px;
        font-size: 14px;
        line-height: 60px
    }

    .video-block a section::before {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        background-size: 32px
    }

    .blog-list li {
        width: 50%
    }

    .contact-info {
        margin-top: -20px
    }

    .contact-info section {
        padding: 15px 10px
    }

    .contact-info section article {
        font-size: 17px
    }

    .contact-map {
        height: 480px
    }

    .bubble-about {
        width: 100%;
        padding: 0
    }

    .bubble-detail {
        width: 100%;
        padding: 17px 30px 30px 30px
    }

    .bubble-content {
        width: calc(100% - 30px);
        padding-left: 30px;
        margin-top: -30px
    }

    .bubble-content .page-title {
        margin-top: -55px
    }
}

@media only screen and (max-width:767px) {

    .wrap,
    .wrap-slim {
        padding: 0 20px
    }

    .cookies-wrap {
        right: 5px;
        bottom: 5px;
        left: 5px
    }

    .header {
        padding: 20px 0 !important
    }

    .header .outer {
        padding: 0
    }

    .hero-extra .outer {
        padding: 0 20px
    }

    .hero-promo a {
        height: 200px
    }

    #logo img {
        height: 70px !important
    }

    .nav-icon {
        width: 60px;
        height: 50px;
        border-radius: 0 6px 6px 0
    }

    .header-lang-wrap {
        height: 50px
    }

    .header-lang-icon {
        width: 60px;
        height: 50px;
        background-position: 10px center;
        line-height: 50px;
        border-radius: 6px 0 0 6px
    }

    .header-lang {
        width: 60px;
        top: 50px;
        border-radius: 6px 0 0 6px
    }

    .header-book {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 50%
    }

    .header-location {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 50%
    }

    .header-book a,
    .header-location a {
        width: 100%;
        display: none;
    }

    .hero-book {
        display: none
    }

    .nav-opened .header {
        background: #2e412c;
        box-shadow: none
    }

    #nav::before {
        opacity: 1
    }

    .nav-inner {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding-top: 100px;
        padding-bottom: 80px
    }

    .quick-book {
        background-color: #c08329;
        overflow: hidden;
        overflow-y: auto
    }

    .quick-book::before {
        display: none
    }

    .slider-hero-item {
        height: 60vh;
        min-height: 320px
    }

    .slider-hero-title {
        padding: 20px 20px 100px 20px
    }

    .slider-hero-title strong {
        font-size: 28px;
        line-height: 30px
    }

    ul.slick-dots {
        padding-bottom: 20px
    }

    ul.slick-dots li {
        width: 20px;
        height: 3px;
        margin: 0 4px
    }

    .footer-wrap {
        padding-bottom: 100px
    }

    .geyve-status li section strong {
        font-family: Ivy Mode;
        font-size: 32px
    }

    .page-title {
        padding-top: 43px;
        font-size: 32px;
        line-height: 40px
    }

    .hero-services li a section {
        padding-left: 25px
    }

    .footer-block {
        width: 50%
    }

    .footer-block:nth-child(2) {
        display: none
    }

    .tower-block {
        display: block
    }

    .tower-picture {
        display: none
    }

    .tower-content,
    .tower-content-in {
        width: 100%
    }

    .tower-picture {
        text-align: center
    }

    .tower-picture-in {
        float: none;
        display: inline-block;
        width: auto;
        max-width: 600px
    }

    .tower-picture-in img {
        width: auto;
        max-width: 100%;
        max-height: 600px
    }

    .tower-content-in {
        margin-top: 40px
    }

    .parallax-outer {
        padding: 0
    }

    .parallax-photo-wrap {
        float: left;
        width: 100%;
        height: 360px;
        position: relative;
        left: auto !important;
        right: auto !important;
        bottom: auto;
        top: auto
    }

    .parallax-text {
        width: 100%;
        padding: 0 20px 30px 20px
    }

    .sub-hero::after {
        bottom: -10px;
        height: 40px
    }

    .sub-hero-title {
        padding-top: 195px;
        padding-bottom: 45px;
        font-size: 27px;
        line-height: 30px
    }

    .tower-content-picture,
    .video-block {
        width: calc(100% + 40px);
        margin-left: -20px
    }

    .item {
        width: 50%
    }

    .contact-info section {
        flex-basis: 100%;
        box-shadow: none;
        border-top: 1px solid #eee;
        margin-bottom: 0
    }

    .bubble-gallery-wrap {
        padding-top: 120px
    }

    .our-prime>ul>li {
        width: 100%;
        margin-top: 0 !important
    }

    .bubble-content .page-title {
        margin-top: -30px
    }

    .left-100 {
        padding-left: 0
    }

    .blog-photo {
        width: calc(100% + 40px);
        margin-left: -20px
    }

    .blog-title {
        padding-left: 0
    }

    .blog-title::before {
        display: none
    }

    .page-share {
        float: left;
        width: 100%;
        position: static
    }

    .page-share ul {
        width: 100%
    }

    .page-share li {
        margin-right: 15px
    }

    .page-share li:last-child {
        margin-right: 0
    }
}

@media only screen and (max-width:640px) {
    .book-holiday {
        padding-right: 0
    }

    .book-holiday section {
        height: 65px
    }

    .book-holiday section i {
        height: 20px;
        padding-left: 20px;
        padding-top: 7px;
        letter-spacing: 0
    }

    .book-holiday section .input {
        width: calc(100% - 10px);
        height: 40px;
        padding: 0 15px;
        margin-left: 5px;
        font-weight: 500;
        line-height: 40px;
        border: 0;
        border-radius: 0;
        box-shadow: none
    }

    .book-holiday .button {
        float: left;
        width: 100%;
        margin-top: 10px;
        position: relative;
        top: auto;
        right: auto;
        height: 50px;
        font-size: 17px;
        line-height: 50px
    }

    .geyve-status ul::before {
        display: none
    }

    .geyve-status li {
        width: 100%;
        padding: 0
    }

    .geyve-status li::before {
        content: "";
        position: absolute;
        top: 19px;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #000;
        opacity: .1
    }

    .geyve-status li section {
        float: none;
        width: auto;
        display: inline-block;
        position: relative
    }

    .contact-map {
        height: 320px
    }
}

@media only screen and (max-width:540px) {
    #nav li>a {
        font-size: 20px;
        line-height: 60px
    }

    .hero-services li {
        flex-basis: 100%;
        margin-bottom: 60px
    }

    .hero-services li:nth-child(odd) {
        margin-top: 0
    }

    .hero-services li a picture {
        height: auto
    }

    .hero-services li a picture i {
        position: static
    }

    .hero-services li a picture i img {
        float: left;
        width: 100%
    }

    .blog-list li,
    .home-blog li {
        width: 100%
    }

    .home-blog li:nth-child(odd) {
        margin-top: 0
    }

    .home-blog li:first-child .blog-item picture img {
        margin: 0
    }

    .footer-block-wrap .inner-20 {
        display: block
    }

    .footer-block {
        width: 100%
    }

    .footer-block:first-child {
        margin-bottom: 30px
    }

    .copyright {
        padding: 30px 0;
        text-align: center
    }

    .copyright .left {
        width: 100%
    }

    .copyright .right {
        width: 100%;
        margin-top: 10px
    }

    .hotel-advantages li {
        width: 50%
    }

    .masonry-wrap .inner-20 {
        margin: 0 -10px
    }

    .item {
        padding: 0 10px 20px 10px
    }

    .photo-item a span {
        margin: 6px 0 -6px 0
    }

    .form-item {
        width: 100%;
        padding-bottom: 20px
    }

    .bubble-gallery-wrap .slider-gallery-item img {
        height: 45vh
    }
}

@media only screen and (max-width:440px) {
    .slider-gallery-item img {
        height: 45vh
    }

    .parallax-photo-wrap {
        height: 280px
    }
}

@font-face {
    font-family: 'Ivy Mode';
    src: url(IvyMode-Regular.eot);
    src: local('Ivy Mode Regular'), local('IvyMode-Regular'), url(IvyMode-Regulard41d.eot?#iefix) format('embedded-opentype'), url(IvyMode-Regular.woff2) format('woff2'), url(IvyMode-Regular.woff) format('woff'), url(IvyMode-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Ivy Mode';
    src: url(IvyMode-Bold.eot);
    src: local('Ivy Mode Bold'), local('IvyMode-Bold'), url(IvyMode-Boldd41d.eot?#iefix) format('embedded-opentype'), url(IvyMode-Bold.woff2) format('woff2'), url(IvyMode-Bold.woff) format('woff'), url(IvyMode-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'Ivy Mode';
    src: url(IvyMode-SemiBold.eot);
    src: local('Ivy Mode SemiBold'), local('IvyMode-SemiBold'), url(IvyMode-SemiBoldd41d.eot?#iefix) format('embedded-opentype'), url(IvyMode-SemiBold.woff2) format('woff2'), url(IvyMode-SemiBold.woff) format('woff'), url(IvyMode-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: 'Ivy Mode';
    src: url(IvyMode-Light.eot);
    src: local('Ivy Mode Light'), local('IvyMode-Light'), url(IvyMode-Lightd41d.eot?#iefix) format('embedded-opentype'), url(IvyMode-Light.woff2) format('woff2'), url(IvyMode-Light.woff) format('woff'), url(IvyMode-Light.ttf) format('truetype');
    font-weight: 300;
    font-style: normal
}

body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: 0;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image::before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,
.fancybox-spaceball {
    background: 0 0;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,
.fancybox-video {
    background: 0 0;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: 0
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: 0
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-button--fsexit svg:nth-child(1),
.fancybox-button--pause svg:nth-child(1) {
    display: none
}

.fancybox-progress {
    background: #c09c62;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: 0 0;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right)
}

.fancybox-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996
}

@supports (padding:max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left))
    }
}

.fancybox-caption--separate {
    margin-top: -50px
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: 0 0;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1)
}

@media all and (max-height:576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px
    }

    .fancybox-slide--image {
        padding: 6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px
    }

    @supports (padding:max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right))
        }
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: 0;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a::before {
    border: 6px solid #c09c62;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1
}

@media all and (max-width:576px) {
    .fancybox-thumbs {
        width: 110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px)
    }
}

.fancybox-button--thumbs {
    display: none !important
}