



body {
  margin: 0;
  padding: 0;
}

#br-preloader {
  height: 80px;
  width: 80px;
  position: absolute;
  display: none;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px

}
#br-preloader div {
  position: absolute;
}
#br-preloader div:first-child {
  height: 80px;
  width: 80px;
  border-radius: 60px;
  border-top: solid 2px #1a2d4f;
  animation: spin 2s infinite;
  -webkit-animation: spin 2s infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
}
#br-preloader div:nth-child(2) {
    height: 60px;
    width: 60px;
    border-radius: 55px;
    border-top: solid 2px #c8cdd5;
    top: 10px;
    left: 10px;
    animation: spin 1.5s infinite;
    -webkit-animation: spin 1.5s infinite;
    animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

#br-result {
    margin: 60px auto;
}


@keyframes move {
    0% {
        -webkit-transform: scale(1.0);
        -moz-transform: scale(1.0);
        -ms-transform: scale(1.0);
        -o-transform: scale(1.0);
        transform: scale(1.0);
    }
    50% {
        -webkit-transform: scale(1.04);
        -moz-transform: scale(1.04);
        -ms-transform: scale(1.04);
        -o-transform: scale(1.04);
        transform: scale(1.04);
    }
    100% {
        -webkit-transform: scale(1.0);
        -moz-transform: scale(1.0);
        -ms-transform: scale(1.0);
        -o-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* END ANIMATIONS */


/* Checkbox */

label {
    position: relative;
}

.control__indicator {
  position: absolute;
    top: 50%!important;
    left: 0!important;
    height: 20px;
    width: 20px;
    background: #d1d4ec;
    border-radius: 2px;
    cursor: pointer;
    transform: translateY(-50%)
}

.calsetcat_item .control__indicator {
    top: 50%!important;
    left: 0!important;
    margin-top: 5px;
}

.formelement input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0
}


.sortable input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    position: relative;
}

.sortable .control__indicator {
    display: inline;
    left: 10px!important;
    height: 14px;
    width: 14px;
}

.sortable label.control--checkbox {
    display: inline
}

.bloggy .control__indicator {
    position: absolute;
    left: 3px!important;
    height: 14px;
    width: 14px;
    background: #eaecfc;
    border-radius: 2px;
}


.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator {
  background: rgba(223, 23, 76, 0.45);
}
.control input:checked ~ .control__indicator {
  background: #df174c;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #df174c;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #eff0ff;
}
.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #eff0ff;
}
.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.inbill {
    left: 14px!important;
}

.control__indicator.inbill {
    position: absolute;
    top: 10px;
    left: 0;
    height: 16px;
    width: 16px;
    background: #d1d4ec;
    border-radius: 2px;
}

.control--checkbox .control__indicator.inbill::after {
    left: 6px;
    top: 3px;
    width: 3px;
    height: 6px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

label.control--checkbox {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.control__indicator.selectall {
    background: rgb(190, 194, 224);
    margin-top: 10px
}

label.check_small {
    max-width: 25px
}

label.check_small .control__indicator {
    position: absolute;
    top: 50%!important;
    left: 50%!important;
    height: 15px;
    width: 15px;
    background: #d1d4ec;
    border-radius: 2px;
    cursor: pointer;
    translateY(-50%)translateX(-50%)
}

label.check_small .control__indicator:after {
    left: 5px;
    top: 2px;
    width: 2px;
    height: 7px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-file-upload {
    border: 1px solid #d1d4ec;
    border-radius: 3px;
    display: inline-block;
    padding: 4px 12px;
    cursor: pointer;
    background: #f9f9fd;
    font-size: 13px;
    transition: all 1000ms ease-in
}

.custom-file-upload:hover {
    background: rgba(218, 220, 236, 0.6);
    transition: all 300ms linear
}

input#picture, input#importfile, input[type='file'] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

label img {
    vertical-align: middle;
}

label.custom-file-upload span {
        padding: 5px 6px;
    min-width: inherit;
    line-height: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #404255;
}

.calsetcat_item {
    margin: 1% 0 3%
}

.form_error .control__indicator {
    position: absolute;
    top: 50%!important;
    left: 0!important;
    height: 20px;
    width: 20px;
    background: #ff0002!important;
    border-radius: 2px;
    cursor: pointer;
    transform: translateY(-50%);
}

#voucher-form #error_blue {
    background: #75c11d;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
}

#rbi_cond_bck.rbi_red_bck .control__indicator, #rbi_cond_gdpr.rbi_red_bck .control__indicator, #rbi_gdpr_bck.rbi_red_bck .control__indicator, #rbi_gdpr_gdpr.rbi_red_bck .control__indicator {
    background: rgba(223,23,76,0.45)!important;
}

/* Checkbox END */


.form_block .control__indicator {
    position: absolute;
    top: 11px!important;
    left: 37px!important;
    height: 20px;
    width: 20px;
    background: #dee9ed;
    border-radius: 0px;
    cursor: pointer;
    transform: translateY(-50%);
}

#smallorder .form_block .control__indicator {
    left: 44px!important;
}
.form_block .form_error .control__indicator {
    background: #f6c9ca!important;
}

.form_block .control input:checked ~ .control__indicator {
    background: #085572!important;
}

.gdpr-stat.form_error {
    border: none!important;
}

#gdpr-form-text {
    margin-left: 50px;
    text-align: left;
}

.animated {
    visibility: hidden
}

#popupbanner {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 51, 68, 0.8);
    z-index: 88888999;
}

.popupcontent {
    width: 520px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    background: rgb(255,255,255);
    border: 2px solid #0d5672;
    border-radius: 0;
    box-shadow: 0 0 100px rgba(0,0,0,0.48);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.popuptext {
    padding: 15px 35px;
}

.popuptext h2 {
    font-size: 26px;
    line-height: 36px;
    margin: 15px;
    margin-top: 25px;
    margin-bottom: 10px;
    letter-spacing: 0;
    color: #0d5672;
}

.popuptext p {
    font-size: 17px;
    line-height: 25px;
    padding: 0 15px;
}

.popuptext a:hover {
  color: white
}

#bannerclose {
    position: absolute;
    width: 40px;
    margin: 0;
    max-width: 100%;
    height: 40px;
    display: block;
    background: transparent;
    display: block;
    z-index: 888889999;
    right: 0;
    top: 5px;
    cursor: pointer;
}

#bannerclose::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\d7";
    font-size: 40px;
    padding-top: 3px;
    width: 40px;
    height: 40px;
    color: #0d5672;
    text-align: center;
}

.animated-image {
      -webkit-animation: move 15s infinite forwards;
    -moz-animation: move 15s infinite forwards;
    animation: move 15s infinite forwards;
}

.animated-image-slow {
      -webkit-animation: move 65s infinite forwards;
    -moz-animation: move 65s infinite forwards;
    animation: move 65s infinite forwards;
}

::selection {
    background: #85d5ec;
}

.break {
    width: 0px;
    height: 0px;
    line-height: 0px;
    font-size: 0px;
    border: 0px none;
    margin: 0px;
    padding: 0px;
    float: none;
    clear: both;
    visibility: hidden;
}

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

body {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    color: black;
    background: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 23px;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004)
}


.wrapper-30-0 {
    padding: 30px 0;
    min-height: 1px;
    display: block
}

.wrapper-60 {
    padding: 60px;
    min-height: 1px;
    display: block
}

.wrapper-60-0 {
    padding: 60px 0;
    min-height: 1px;
    display: block
}

.wrapper-90 {
    padding: 90px;
    min-height: 1px;
    display: block
}

.wrapper-90-0 {
    padding: 90px 0;
    min-height: 1px;
    display: block
}

.wrapper-120 {
    padding: 120px;
    min-height: 1px;
    display: block
}

.wrapper-120-0 {
    padding: 120px 0;
    min-height: 1px;
    display: block
}

img {
    max-width: 100%!important;
}

.container {
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 600;
    letter-spacing: -1px;
    text-transform: none;
    font-family: 'Open sans' , sans-serif;
    color: #085370;
    z-index: 2;
    position: relative;
}

h1 {
    text-transform: uppercase;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 48px;
}

h3 {
    font-size: 24px;
    line-height: 34px;
}

p {
    font-size: 17px;
    line-height: 27px;
    color: #0d5672;
    font-weight: normal;
}

a {
    cursor: pointer!important;
    text-decoration: none
}

#article-cont a {
        color: #0c465d;
    font-weight: 600;
    font-family: 'Open sans' , sans-serif;
    font-size: 17px;
}

.back-to-top {
    position: absolute;
    bottom: 10px;
    right: 10px
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 990;
}

header section {
    background: rgba(8, 83, 111, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    position: fixed;
    width: 100%;
    height: 80px;
    transition: all 600ms
}

header section.ww {
    background: rgb(255, 255, 255);
    border-bottom: 1px solid white;
    height: 50px;
    box-shadow: 0 0 65px rgba(0, 0, 0, 0.17)
}

.ww #main-menu li a {
    color: #08536e;
    padding: 17px 24px;
}

.ww #main-menu li a:hover, .ww #main-menu li.active a {
    color: white
}

#mainlogo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 235px;
    height: 190px;
    background: white;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.4) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.4) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0.4) 100%);
}

#mainlogo img {
    position: absolute;
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}

#leftlogo .img {
    width: 220px;
    height: 80px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url('/template/images/logo-w-w.svg') 50% 50% no-repeat;
    background-size: 225px;
    transition: all 600ms;
}

header section.ww #leftlogo .img {
    width: 220px;
    height: 50px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url('/template/images/logo-w.svg') 50% 50% no-repeat;
    background-size: 150px;
    transition: all 600ms;
}


#leftlogo {
    position: relative;
    height: 80px;
    width: 100%;
    transition: all 600ms
}

.ww #leftlogo {
    position: relative;
    width: 100%;
    height: 50px;
}


.spec {
    position: absolute;
    right: 20px;
    display: -moz-inline-stack;
    display: inline-block;
    top: 68px;
    display: inline;
    transition: all 600ms
}

.ww .spec {
    top: 38px
}

.spec li {
    display: inline;
}

.spec li a {
    background: #095572 ;
    color: white;
    padding: 8px 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 6px;
    padding-left: 40px;
    position: relative;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    transition: all 300ms;
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
}

.spec li a:hover {
    background: #0b85b5;
}

.spec li a img {
    width: 19px;
    position: absolute;
    left: 15px;
    top: 8px;
}



.sear {
    max-width: 256px;
    max-height: 256px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
    -webkit-mask-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI1MC4zMTMgMjUwLjMxMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUwLjMxMyAyNTAuMzEzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPGcgaWQ9IlNlYXJjaCI+Cgk8cGF0aCBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7IiBkPSJNMjQ0LjE4NiwyMTQuNjA0bC01NC4zNzktNTQuMzc4Yy0wLjI4OS0wLjI4OS0wLjYyOC0wLjQ5MS0wLjkzLTAuNzYgICBjMTAuNy0xNi4yMzEsMTYuOTQ1LTM1LjY2LDE2Ljk0NS01Ni41NTRDMjA1LjgyMiw0Ni4wNzUsMTU5Ljc0NywwLDEwMi45MTEsMFMwLDQ2LjA3NSwwLDEwMi45MTEgICBjMCw1Ni44MzUsNDYuMDc0LDEwMi45MTEsMTAyLjkxLDEwMi45MTFjMjAuODk1LDAsNDAuMzIzLTYuMjQ1LDU2LjU1NC0xNi45NDVjMC4yNjksMC4zMDEsMC40NywwLjY0LDAuNzU5LDAuOTI5bDU0LjM4LDU0LjM4ICAgYzguMTY5LDguMTY4LDIxLjQxMyw4LjE2OCwyOS41ODMsMEMyNTIuMzU0LDIzNi4wMTcsMjUyLjM1NCwyMjIuNzczLDI0NC4xODYsMjE0LjYwNHogTTEwMi45MTEsMTcwLjE0NiAgIGMtMzcuMTM0LDAtNjcuMjM2LTMwLjEwMi02Ny4yMzYtNjcuMjM1YzAtMzcuMTM0LDMwLjEwMy02Ny4yMzYsNjcuMjM2LTY3LjIzNmMzNy4xMzIsMCw2Ny4yMzUsMzAuMTAzLDY3LjIzNSw2Ny4yMzYgICBDMTcwLjE0NiwxNDAuMDQ0LDE0MC4wNDMsMTcwLjE0NiwxMDIuOTExLDE3MC4xNDZ6IiBmaWxsPSIjRkZGRkZGIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-color: #ffffff!important;
    -webkit-mask-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 400ms
}

.ww .sear {
    background-color: #196b8b!important;
}

.swiper-container-homepage {
    width: 100%;
    height: 80vh;
    min-height: 700px;
}

.hero-heading {
    position: absolute;
    bottom: 50px;
    text-align: left;
    width: 40%;
    margin-right: auto;
    margin-left: auto;
    left: 5%;
    z-index: 20
}

.hero-heading span {
    font-size: 50px;
    line-height: 60px;
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}



#main-menu li:hover .sub-menu {
    z-index:100;
    opacity:1
}

#main-menu li:hover .sub-menu.subsub {
    opacity:0
}

.sub-menu {
    position: absolute;
    margin: 0;
    padding: 0;
    min-width: 230px;
    top: 49px;
    margin-left:-115px;
    left: 50%;
    visibility: hidden;
    z-index: 10;
    opacity: 0;
    transition: opacity linear .15s;
}

.ww .sub-menu {
    top: 35px
}

.subsub {
    transform: translateX(100%)translateY(-63px);
}

#left-menu {
    text-align: center
}

#right-menu {
    text-align: left;
    margin-left: 60px
}

#main-menu li a {
    padding: 31px 18px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 300ms ease-in;
}

#main-menu li a:hover, #main-menu li.active a {
    background: #0685b5;
}

#main-menu li {
    display: inline;
    position: relative;
}

#main-menu {
    list-style: none;
    padding: 0;
}

#main-menu li > .subsub  {
    display: block;
    visibility: hidden;
    opacity: 0
}

#main-menu li:hover > .subsub {
    visibility: visible;
    opacity: 1!important
}

#main-menu .sub-menu li {
    display: block;
    font-size: 15px;
    text-align: center;
    float: none!important;
}

#main-menu .sub-menu li a {
    text-transform: none;
    text-align: left;
    font-size: 15px;
    display: block;
    white-space: nowrap;
    padding: 18px 25px;
    margin: 0;
    line-height: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

#main-menu .sub-menu li a {
    background: rgba(6, 133, 181, 1);
    color: white;
}

#main-menu ul li a:hover {
    background: rgb(8, 83, 110);
}

.clearfix:after {
    display:block;
    clear:both
}

.swiper-slide::before {
    content: '';
    background: -moz-linear-gradient(bottom, rgb(0, 82, 113) 0%,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(bottom, rgb(0, 82, 113) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to top, rgb(0, 82, 113) 0%,rgba(0,0,0,0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 300px;
    width: 100%;
    z-index: 8
}


.but {
    display: inline-block;
    position: relative;
    color: white;
    opacity: 1;
    text-transform: uppercase;
    width: auto;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    padding: 7px 40px;
    margin: 30px 10px 30px 0;
    background-color: rgba(0, 0, 0, 0.23);
    box-shadow: 0 0 1px white;
    background-size: 200% auto;
    transition: 0.5s;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.but:hover {
    background: #0a89b9;
     background-image: linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -moz-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -webkit-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -o-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -webkit-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-size: 200% auto;
    box-shadow: none
}

.but.cen {
    margin-right: auto;
    margin-left: auto
}

.but.onw {
    font-weight: 600;
    padding: 10px 40px;
    margin-top: 50px;
    background: #085370;
    width: auto;
    max-width: 90%;
    background-image: linear-gradient(to right, #0a89b9 0%, #085370 51%, #0a89b9 100%);
    background-image: -moz-linear-gradient(to right, #0a89b9 0%, #085370 51%, #0a89b9 100%);
    background-image: -webkit-linear-gradient(to right, #0a89b9 0%, #085370 51%, #0a89b9 100%);
    background-image: -o-linear-gradient(to right, #0a89b9 0%, #085370 51%, #0a89b9 100%);
    background-image: -webkit-gradient(to right, #0a89b9 0%, #085370 51%, #0a89b9 100%);
    background-size: 200% auto;
    transition: 500ms;
    display: inline-block;
}

.but.onw:hover {
    background: #0a89b9;
     background-image: linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -moz-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -webkit-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -o-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -webkit-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-size: 200% auto;
    background-position: right center;
    transition: 500ms
}

.line {
    position: relative;
}

.line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    width: 323px;
    height: 297px;
    background: url(/template/images/line.png) 50% 50% no-repeat;
    background-size: 300px;
    z-index: 0;
    opacity: 0.15;
}

#bluebg {
    width: 100%;
    position: relative;
    background-color: rgba(8, 83, 111, 0.23);
    background-image: radial-gradient(circle farthest-side at center bottom, rgba(81, 207, 255, 0.36), #08536f 110%);
    overflow: hidden;
    padding: 90px 0 0;
}

#bgvideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    transition: 1s opacity;
}

#bluebg h2 {
    color: white!important
}


#owl-offers {
    margin: 90px auto;
}

#owl-offers-side {
    margin: 10px auto;
}

#owl-offers .item {
    padding: 10%;
}

 #owl-offers-side .item {
    padding: 8%;
}

 #offers-all .item {
    padding: 2%
 }

#owl-offers .offer-info, #offers-all .offer-info {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 25px 10%;
    width: 100%;
    transition: all 1000ms ease-in;
}

#owl-offers-side .offer-info {
    position: relative
}

#owl-offers .item {
    padding:  20px;
}


#owl-offers .image-inner, #offers-all .image-inner {
    min-height: 420px;
    position: relative;
    transition: all 300ms linear
}

#owl-offers .image-inner::before {
    content: '';
    background: -moz-linear-gradient(bottom, rgb(12, 142, 184) 0%,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(bottom, rgb(12, 142, 184) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to top, rgb(12, 142, 184) 0%,rgba(0,0,0,0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    z-index: 0
}

#owl-offers-side .image-inner {
    min-height: 210px
}

#owl-offers h3, #offers-all h3 {
    text-align: left;
    margin: 10px 0;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 2px rgba(3, 40, 53, 0.44);
    font-family: 'Open sans' , sans-serif;
}

#spag {
    bottom: 20px;
    left: 5%;
}

#spag .swiper-pagination-bullet {
    width: 35px;
    height: 4px;
    display: inline-block;
    border-radius: 10px;
    background: #fff;
    margin: 0 5px;
    opacity: .4;
}

#spag .swiper-pagination-bullet-active {
    opacity: 1;
    background-image: linear-gradient(to right, #0a89b9 0%, #146ea0 100%);
    background-image: -moz-linear-gradient(to right, #0a89b9 0%, #146ea0 100%);
    background-image: -webkit-linear-gradient(to right, #0a89b9 0%, #146ea0 100%);
    background-image: -o-linear-gradient(to right, #0a89b9 0%, #146ea0 100%);
    background-image: -webkit-gradient(to right, #0a89b9 0%, #146ea0 100%);
}

#owl-offers-side h3 {
    text-align: center
}


#owl-offers h4, #offers-all h4 {
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    margin: -10px 0 20px;
    color: #341701;
}

#owl-offers .price, #offers-all .price {
    position: relative;
    width: 150px;
    /* height: 60px; */
    margin: 10px auto;
    font-size: 14px;
    padding: 7px 5px;
    background: #08536e;
    color: white;
    font-weight: 700;
    text-align: center;
    border-radius: 74px;
    transition: all 300ms ease-in;
}

#owl-offers-side .price span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#offers-all .proc {
    top: -80px
}

#servicees .service-one, #servicees .service-item {
    min-height: 490px;
    transition: all 600ms ease-in
}

#owl-offers .owl-nav .owl-next {
    position: absolute;
    right: -95px;
    top: 50%;
    width: 90px;
}

#owl-offers .owl-nav .owl-prev {
    position: absolute;
    left: -95px;
    top: 50%;
    width: 90px;
}

#articles {
    margin: 0px auto 60px;
}

#articles .one-article {
    background: rgb(255, 255, 255);
    border-radius: 0px;
    overflow:  hidden;
    margin: 0 25px;
        margin-left: -10px;
    transition: all 400ms
}

#articles .one-article:hover {
     box-shadow: ;
}

#articles .one-article .names  {
    position: relative;
    bottom: 0px;
    width: 100%;
    text-align: left;
    padding: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(232, 238, 240, 0.5);
    transition: all 400ms;
    min-height: 120px;
}

#articles p {
    font-size: 13px;
    line-height: 20px;
    color: #002633;
    font-weight: normal;
}

#articles h4 {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    letter-spacing: -0.5px;
    font-weight: 500;
    color: #085572;
    transition: all 400ms
}

.blog-content {
    padding: 0;
    position: relative;
    transition: all 400ms;
    margin: 10px;
    margin-top: 0;
    text-align: left;
    overflow: hidden;
}

#articles span {
    background: #085572;
    color: white;
    padding: 0px 10px;
    margin: 10px;
    display: inline-block;
    margin-bottom: 0;
    border-radius: 30px;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 400ms
}

#articles .blog-content:hover span {
    background: white;
    color: #085572;
}

#articles .blog-im {
    position: relative;
    overflow: hidden
}

#articles .blog-im::before {
    content: '';
    width: 400px;
    height: 300px;
    background: rgba(8, 86, 114, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms 200ms
}

#articles .blog-content:hover .blog-im::before {
    opacity: 1;
    transition: all 400ms
}

#articles .blog-content:hover .names {
    background: rgba(232, 238, 240, 1);
}

#articles .blog-im::after {
    content: '';
    width: 60px;
    height: 60px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE2IDE2IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNiAxNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxMjhweCIgaGVpZ2h0PSIxMjhweCI+CjxnPgoJPGc+CgkJPHBvbHlnb24gcG9pbnRzPSIxMCwzIDEwLDMuODMzIDE1LDggMTAsMTIuMTY3IDEwLDEzIDE2LDggICAiIGZpbGw9IiNGRkZGRkYiLz4KCQk8cGF0aCBkPSJNMTQsOEw4LDN2My4wODJDNC40NjEsNi40MDEsMS42OTMsNy43NjgsMCwxMmMyLjQ3OS0yLjA2NCw0Ljk1Ny0yLjc2Niw4LTIuMzgzVjEzTDE0LDh6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-size: 60px 60px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
     transition: all 200ms
}

#articles .blog-content:hover .blog-im::after {
     opacity: 0.6;
     transition: all 400ms 200ms
}


.instaphoto {
    width: 100%;
    padding-top: 100%;
    position: relative;
}

.instaphoto .photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#ins h5 {
    text-align: left;
    margin: 4px 10px;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: #002633;
}

#ins .likes  {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI1NnB4IiBoZWlnaHQ9IjI1NnB4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEwIDUxMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxnIGlkPSJmYXZvcml0ZSI+CgkJPHBhdGggZD0iTTI1NSw0ODkuNmwtMzUuNy0zNS43Qzg2LjcsMzM2LjYsMCwyNTcuNTUsMCwxNjAuNjVDMCw4MS42LDYxLjIsMjAuNCwxNDAuMjUsMjAuNGM0My4zNSwwLDg2LjcsMjAuNCwxMTQuNzUsNTMuNTUgICAgQzI4My4wNSw0MC44LDMyNi40LDIwLjQsMzY5Ljc1LDIwLjRDNDQ4LjgsMjAuNCw1MTAsODEuNiw1MTAsMTYwLjY1YzAsOTYuOS04Ni43LDE3NS45NS0yMTkuMywyOTMuMjVMMjU1LDQ4OS42eiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
    background-repeat: no-repeat;
    background-size: 58px 36px;
    background-position: 50% 50%;
    width: 40px;
    height: 40px;
    font-size: 12px;
    line-height: 36px;
    color: #085572;
    font-weight: 600;
    opacity: 0.7;
    transition: all 400ms
}

#ins .instaphoto:hover .likes {
    opacity: 1
}

#lang {
    position: absolute;
    top: 50%;
    right: 20px;
    text-transform: uppercase;
    transform: translateY(-50%);
}

#lang a {
    background: white;
    color: #085370;
    border-radius: 50%;
    font-weight: 600;
    margin: 2px;
    width: 26px;
    height: 26px;
    transition: all 400ms;
    display: inline-block;
    line-height: 26px;
    text-align: center;
    font-size: 10px;
}

.ww #lang a {
    background: #085370;
    color: white;
}

#lang a.act {
    display: none;
    visibility: hidden
}

#ins {
    margin-top: -100px;
}

#newsletter {
    padding: 30px 0 70px;
    background: #e8e8e8;
    width: 100%;
}

#crm-action, #crm-action-0, #crm-action-1  {
    display: inline-block;
    background: #085370;
    color: white;
    font-size: 13px;
    line-height: 40px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 10px;
    height: 40px;
    margin: 0;
    cursor: pointer;
    border: 1px solid #085370;
}

#crm-email {
    background: white;
    border: none;
    font-size: 16px;
    line-height: 40px;
    padding: 10px 15px 10px;
    color: #085572;
    font-weight: 600;
    outline: none;
    display: inline-block;
    height: 40px;
    margin: 0;
    border: none;

}

#crm-email.form_error {
    background: #efd0d6;
}

.crm-form {
    height: 40px;
    overflow: hidden;
    margin-top: 30px;
    color: #006380;
    font-family: 'Open sans' , sans-serif;
    font-size: 16px;
}

.crm-form i {
    color: #0597bf;
    font-size: 20px;
}

.crm-text {
    font-size: 12px;
    line-height: 16px;
    font-style: italic;
    color: #909090;
    margin: 20px auto 5px;
    width: 300px;
    max-width: 100%;
}

#article-cont #crm-email {
    background: #f3f6f7;
}

#article-cont .crm-text {
    display: none
}

#newsletter small {
    font-size: 12px;
    line-height: 15px;
    display: inline-block;
    margin-bottom: 15px;
    color: dimgrey;
    font-style: italic;
}

#newsletter p {
    line-height: 18px;
    margin-top: -20px;
    color: #085370
}

#ser img {
    width: 65px;
    padding: 15px;
    display: block;
    margin: 10px auto 0;
    transition: all 400ms
}

#ser span {
    text-align: center;
    color: #085370;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    font-size: 11px;
    display: inline-block;
    width: 100%;
}

#onas p {
    color: #0d5672
}

#ser .col-md-1 {
    position: relative;
}

#ser .col-md-1 a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: white;
    transition: all 400ms
}

#ser .owl-item:hover {
    cursor: pointer;
}

#ser .owl-item:hover img {
    transform: scale(1.2);
}

#cookies_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* max-width: 90%; */
    margin-left: auto;
    margin-right: auto;
    background-image: linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -moz-linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -webkit-linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -o-linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -webkit-gradient(to right, #0a89b9 0%, #085370 100%);
    z-index: 99999;
    transition: all 400ms
}

#cookies_content {
    width: calc(100% - 40px);
    padding: 0 20px;
    text-align: center
}

#cookies_text {
    color: white;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
}

#cookies_content a {
    display: inline-block;
    margin: 0 8px;
    color: #fbfcfd;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

#cookies_accept {
    display: inline-block;
    background: white;
    padding: 4px 18px;
    margin: 18px;
    color: #085572;
    border-radius: 2px;
    font-weight: 600;
    transition: 300ms;
    cursor: pointer;
}

#cookies_accept:hover {
    color: white;
    background: #2fa0ca;
}

#wea {
    position: absolute;
    right: 0px;
    bottom: 15px;
    width: 600px;
    max-width: 100%;
    z-index: 2;
}

#wea a.weatherwidget-io {
    z-index: -1
}

#footfirst {
    background-image: radial-gradient(circle farthest-side at center bottom, rgb(9, 131, 171), #08536f 115%);
    background-image: -moz-radial-gradient(circle farthest-side at center bottom, rgb(9, 131, 171), #08536f 115%);
    background-image: -webkit-radial-gradient(circle farthest-side at center bottom, rgb(9, 131, 171), #08536f 115%);
    background-image: -o-radial-gradient(circle farthest-side at center bottom, rgb(9, 131, 171), #08536f 115%);
    padding: 60px 0;
    position: relative;
}

.btt {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 50px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDMxLjQ3OSAzMS40NzkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMxLjQ3OSAzMS40Nzk7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiPgo8cGF0aCBkPSJNMjYuNDc3LDEwLjI3NGMwLjQ0NCwwLjQ0NCwwLjQ0NCwxLjE0MywwLDEuNTg3Yy0wLjQyOSwwLjQyOS0xLjE0MywwLjQyOS0xLjU3MSwwbC04LjA0Ny04LjA0NyAgdjI2LjU1NWMwLDAuNjE5LTAuNDkyLDEuMTExLTEuMTExLDEuMTExYy0wLjYxOSwwLTEuMTI3LTAuNDkyLTEuMTI3LTEuMTExVjMuODEzbC04LjAzMSw4LjA0N2MtMC40NDQsMC40MjktMS4xNTksMC40MjktMS41ODcsMCAgYy0wLjQ0NC0wLjQ0NC0wLjQ0NC0xLjE0MywwLTEuNTg3bDkuOTUyLTkuOTUyYzAuNDI5LTAuNDI5LDEuMTQzLTAuNDI5LDEuNTcxLDBMMjYuNDc3LDEwLjI3NHoiIGZpbGw9IiM2ZmQzZWYiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    transition: all 300ms
}

.btt:hover {
    background-size: 30px 30px;
}

#footsecond {
    background: #085370;
    position: relative;
}

#footsecond p {
    color: #9eccdc;
    font-size: 12px;
    font-weight: 600;
}

.map img {
    width: 100%;
    max-width: 85%;
    transform: translate(-140px,40px);
}

#feedback  {
    position: fixed;
    bottom: -320px;
    left: 20px;
    width: 300px;
    max-width: 90%;
    background: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    z-index: 99999
}

#feedback h4 {
    background-image: linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -moz-linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -webkit-linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -o-linear-gradient(to right, #0a89b9 0%, #085370 100%);
    background-image: -webkit-gradient(to right, #0a89b9 0%, #085370 100%);
    color: white;
    width: calc(100% - 45px);
    position: relative;
    margin: 0;
    font-size: 17px;
    line-height: 40px;
    text-align: left;
    padding-left: 45px;
    text-transform: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: pointer

}

#feedback h4::before {
    content: '';
    display: block;
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQzNy4yMTIgNDM3LjIxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDM3LjIxMiA0MzcuMjEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI1NnB4IiBoZWlnaHQ9IjI1NnB4Ij4KPGc+Cgk8Zz4KCQk8Zz4KCQkJPHBhdGggZD0iTTQwNC44MTIsNDEuMjA2aC0zMDBjLTE4LDAtMzIuNCwxNC44LTMyLjQsMzIuNHYxODYuNGMwLDE4LDE0LjgsMzIuNCwzMi40LDMyLjRoMjA2LjhsNDYuOCw0Ny4yYzIsMiw0LjQsMy4yLDcuMiwzLjIgICAgIGM1LjYsMCwxMC40LTQuNCwxMC40LTEwLjR2LTQwaDI4LjhjMTgsMCwzMi40LTE0LjgsMzIuNC0zMi40di0xODYuNEM0MzcuMjEyLDU1LjYwNiw0MjIuNDEyLDQxLjIwNiw0MDQuODEyLDQxLjIwNnogICAgICBNMTUwLjgxMiwyMDEuNjA2Yy0xNi40LDAtMzAtMTMuNi0zMC0zMGMwLTE2LjQsMTMuNi0zMCwzMC0zMGMxNi40LDAsMzAsMTMuNiwzMCwzMCAgICAgQzE4MC44MTIsMTg4LjAwNiwxNjcuNjEyLDIwMS42MDYsMTUwLjgxMiwyMDEuNjA2eiBNMjU2LjAxMiwyMDEuNjA2Yy0xNi40LDAtMzAtMTMuNi0zMC0zMGMwLTE2LjQsMTMuNi0zMCwzMC0zMCAgICAgYzE2LjQsMCwzMCwxMy42LDMwLDMwQzI4Ni4wMTIsMTg4LjAwNiwyNzIuNDEyLDIwMS42MDYsMjU2LjAxMiwyMDEuNjA2eiBNMzYwLjgxMiwyMDEuNjA2Yy0xNi40LDAtMzAtMTMuNi0zMC0zMCAgICAgYzAtMTYuNCwxMy42LTMwLDMwLTMwYzE2LjQsMCwzMCwxMy42LDMwLDMwQzM5MC44MTIsMTg4LjAwNiwzNzcuMjEyLDIwMS42MDYsMzYwLjgxMiwyMDEuNjA2eiIgZmlsbD0iI0ZGRkZGRiIvPgoJCQk8cGF0aCBkPSJNNTQuMDEyLDI2MC44MDZ2LTYzLjZoLTMyLjhjLTExLjYsMC0yMS4yLDkuNi0yMS4yLDIxLjJ2MTIyLjRjLTAuNCwxMi40LDkuMiwyMiwyMS4yLDIyaDE4Ljh2MjYuNCAgICAgYzAsMy42LDMuMiw2LjgsNi44LDYuOGMyLDAsMy42LTAuOCw0LjgtMmwzMC44LTMwLjhoMTM2YzExLjYsMCwyMS4yLTkuNiwyMS4yLTIxLjJ2LTMwLjRoLTEzNC44ICAgICBDNzYuODEyLDMxMS42MDYsNTQuMDEyLDI4OC44MDYsNTQuMDEyLDI2MC44MDZ6IiBmaWxsPSIjRkZGRkZGIi8+CgkJPC9nPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
    background-size: 22px 22px;
    background-repeat: no-repeat
}

#feedback .contact_form {
    text-align: center;
    margin-top: 10px;
}

.contact_form input, .contact_form textarea {
    background: #e8e8e8;
    border: none;
    font-size: 14px;
    line-height: 22px;
    padding: 10px;
    width: 80%;
    margin: 10px 10px 0;
    color: #095572;
    outline: none;
    font-weight: 600;
    font-family: 'Open sans', sans-serif;
    resize: vertical
}

#feedback #gdpr-form-text {
    font-size: 12px;
    line-height: 14px;
    margin-right: 10px;
    color: #446a79;
}

#feedback .form_block .control__indicator {
    left: 20px!important;
}

#feedback p {
    font-size: 14px;
    line-height: 22px;
    color: #085572;
    font-weight: normal;
}

#feedback .control--checkbox .control__indicator:after {
    left: 7px;
    top: 3px;
    width: 4px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer h3 {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: bold;
    color: #fff;
    margin: 0;
    margin-top: 30px;
}

footer ul li a {
    color: #9eccdc;
    font-size: 14px;
    font-weight: 600;
}

footer ul li a:hover {
    color: #75daf6
}

footer .hg {
    position: relative;
    float: right;
    bottom: 1px;
    right: 0px;
    -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzg3LjcgNzIuNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg3LjcgNzIuNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGNjEyNEI7fTwvc3R5bGU+PGc+PHBhdGggY2xhc3M9InN0MCIgZD0iTTEwLjgsNjEuM1Y5LjVIMTh2MjIuNGgxMy4zVjkuNWg3LjJ2NTEuOGgtNy4yVjM3LjFIMTh2MjQuM0gxMC44eiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik01OS45LDYxLjljLTIuNiwwLTQuOC0wLjQtNi42LTEuMnMtMy4zLTEuOS00LjQtMy40Yy0xLjEtMS41LTEuOS0zLjItMi40LTUuMnMtMC44LTQuMy0wLjgtN1YyNS41YzAtNS40LDEuMS05LjUsMy4zLTEyLjNDNTEuMiwxMC40LDU0LjgsOSw1OS45LDljNSwwLDguNiwxLjQsMTAuOCw0LjJDNzIuOSwxNiw3NCwyMC4xLDc0LDI1LjV2MTkuN2MwLDUuNC0xLjEsOS41LTMuMywxMi40QzY4LjUsNjAuNSw2NC45LDYxLjksNTkuOSw2MS45eiBNNTYuNCw1NS42YzAuOSwwLjQsMi4xLDAuNywzLjUsMC43YzEuNCwwLDIuNi0wLjIsMy41LTAuN2MwLjktMC40LDEuNi0xLjEsMi4xLTJjMC41LTAuOSwwLjgtMS45LDEtM2MwLjItMS4xLDAuMy0yLjQsMC4zLTRWMjRjMC0xLjYtMC4xLTIuOS0wLjMtMy45Yy0wLjItMS0wLjUtMi0xLTIuOWMtMC41LTAuOS0xLjItMS41LTIuMS0xLjljLTAuOS0wLjQtMi4xLTAuNi0zLjUtMC42Yy0xLjQsMC0yLjYsMC4yLTMuNSwwLjZjLTAuOSwwLjQtMS42LDEtMi4xLDEuOWMtMC41LDAuOS0wLjgsMS44LTEsMi45Yy0wLjIsMS0wLjMsMi4zLTAuMywzLjl2MjIuN2MwLDEuNiwwLjEsMi45LDAuMyw0YzAuMiwxLjEsMC41LDIuMSwxLDNDNTQuNyw1NC41LDU1LjQsNTUuMiw1Ni40LDU1LjZ6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTgxLjIsNjEuM1Y5LjVoMTAuNGM1LjIsMCw5LjEsMS4xLDExLjUsMy4yYzIuNCwyLjEsMy43LDUuNiwzLjcsMTAuNWMwLDYuNy0yLjEsMTAuNy02LjQsMTIuMWw3LjQsMjZoLTdMOTQsMzdoLTUuNnYyNC4zSDgxLjJ6IE04OC40LDMxLjhoMi43YzMuMSwwLDUuNC0wLjYsNi43LTEuOWMxLjMtMS4yLDItMy41LDItNi43YzAtMy4xLTAuNi01LjQtMS43LTYuNmMtMS4yLTEuMy0zLjMtMS45LTYuNS0xLjloLTMuMlYzMS44eiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMTQuNCw2MS4zVjkuNWgyMC4xdjUuM2gtMTIuOFYzMmgxMC40djUuMmgtMTAuNHYxOWgxM3Y1LjJIMTE0LjR6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTE1My40LDYxLjljLTIuMSwwLTQtMC4zLTUuNy0wLjlzLTMtMS40LTQtMi40cy0xLjktMi4yLTIuNS0zLjdjLTAuNy0xLjUtMS4xLTMuMS0xLjQtNC43Yy0wLjItMS42LTAuNC0zLjUtMC40LTUuNVYyNi40YzAtMi4yLDAuMS00LjEsMC40LTUuOGMwLjMtMS43LDAuNy0zLjMsMS40LTQuOGMwLjYtMS41LDEuNS0yLjcsMi41LTMuN2MxLTEsMi40LTEuNyw0LTIuMmMxLjYtMC41LDMuNS0wLjgsNS42LTAuOGM0LjcsMCw4LDEuMywxMCwzLjhjMiwyLjUsMyw2LjIsMywxMS4xdjQuMWgtNi44di0zLjdjMC0wLjgsMC0xLjQsMC0xLjljMC0wLjQsMC0xLTAuMS0xLjdjMC0wLjctMC4xLTEuMi0wLjItMS42Yy0wLjEtMC40LTAuMi0wLjgtMC4zLTEuM2MtMC4xLTAuNS0wLjMtMC45LTAuNS0xLjJjLTAuMi0wLjMtMC41LTAuNi0wLjgtMC45Yy0wLjMtMC4zLTAuNy0wLjYtMS4xLTAuN2MtMC40LTAuMi0wLjktMC4zLTEuNC0wLjRjLTAuNS0wLjEtMS4xLTAuMi0xLjgtMC4yYy0xLDAtMS45LDAuMS0yLjYsMC4zcy0xLjQsMC42LTEuOCwxYy0wLjUsMC41LTAuOSwxLTEuMiwxLjVjLTAuMywwLjYtMC41LDEuMy0wLjcsMi4yYy0wLjEsMC45LTAuMiwxLjctMC4zLDIuNmMtMC4xLDAuOC0wLjEsMS44LTAuMSwzdjIwLjVjMCwzLjksMC41LDYuNiwxLjUsOC4xYzEsMS41LDIuNywyLjMsNS4yLDIuM2MxLDAsMS44LTAuMSwyLjUtMC4zYzAuNy0wLjIsMS4zLTAuNiwxLjctMWMwLjQtMC41LDAuOC0xLDEuMS0xLjVjMC4zLTAuNSwwLjUtMS4yLDAuNi0yLjFjMC4xLTAuOSwwLjItMS43LDAuMi0yLjVzMC0xLjcsMC0yLjl2LTMuOGg2Ljh2My44YzAsMi0wLjEsMy44LTAuNCw1LjNzLTAuNywzLTEuMyw0LjRjLTAuNiwxLjQtMS40LDIuNS0yLjQsMy40Yy0xLDAuOS0yLjIsMS42LTMuOCwyLjFDMTU3LjIsNjEuNywxNTUuNCw2MS45LDE1My40LDYxLjl6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTE3MC41LDYxLjNsMTEuMS01MS44aDdsMTEuMSw1MS44aC02LjlsLTIuNC0xMy4xaC0xMC41bC0yLjUsMTMuMUgxNzAuNXogTTE4MC44LDQzLjFoOC43bC00LjMtMjMuNEwxODAuOCw0My4xeiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMzEuOCw2MmMtNC43LDAtOC4xLTEuNS0xMC4yLTQuNWMtMi4xLTMtMy4xLTcuNC0zLjEtMTMuMlYyN2MwLTIuNCwwLjEtNC41LDAuNC02LjJjMC4zLTEuOCwwLjctMy40LDEuMy01YzAuNi0xLjUsMS41LTIuOCwyLjUtMy43YzEtMSwyLjQtMS43LDQtMi4yYzEuNi0wLjUsMy41LTAuOCw1LjctMC44YzQuOCwwLDguMiwxLjIsMTAuMywzLjdjMi4xLDIuNCwzLjIsNi4zLDMuMiwxMS41djEuOWgtNi44di0xLjZjMC0xLjUsMC0yLjctMC4xLTMuNmMtMC4xLTAuOS0wLjMtMS44LTAuNS0yLjdjLTAuMy0wLjktMC42LTEuNS0xLjEtMmMtMC41LTAuNS0xLjEtMC44LTEuOS0xLjFjLTAuOC0wLjMtMS44LTAuNC0yLjktMC40Yy0wLjksMC0xLjcsMC4xLTIuNCwwLjNjLTAuNywwLjItMS4zLDAuNS0xLjgsMC44Yy0wLjUsMC4zLTAuOSwwLjgtMS4yLDEuM2MtMC4zLDAuNi0wLjYsMS4xLTAuOCwxLjdjLTAuMiwwLjYtMC4zLDEuMy0wLjQsMi4xYy0wLjEsMC45LTAuMiwxLjctMC4yLDIuNGMwLDAuNywwLDEuNiwwLDIuN3YxOS4yYzAsNCwwLjUsNi44LDEuNCw4LjZjMSwxLjcsMi44LDIuNiw1LjUsMi42YzIuNywwLDQuNi0wLjksNS42LTIuOHMxLjUtNC45LDEuNS05di0zLjZoLTYuNnYtNS4xaDEzLjF2MjUuN2gtNC42bC0wLjctNkMyMzkuNSw1OS44LDIzNi40LDYyLDIzMS44LDYyeiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNTMuNyw2MS4zVjkuNWgxMC40YzUuMiwwLDkuMSwxLjEsMTEuNSwzLjJjMi40LDIuMSwzLjcsNS42LDMuNywxMC41YzAsNi43LTIuMSwxMC43LTYuNCwxMi4xbDcuNCwyNmgtN0wyNjYuNiwzN0gyNjF2MjQuM0gyNTMuN3ogTTI2MSwzMS44aDIuN2MzLjEsMCw1LjQtMC42LDYuNy0xLjljMS4zLTEuMiwyLTMuNSwyLTYuN2MwLTMuMS0wLjYtNS40LTEuNy02LjZjLTEuMi0xLjMtMy4zLTEuOS02LjUtMS45SDI2MVYzMS44eiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMDAuMiw2MS45Yy0yLjYsMC00LjgtMC40LTYuNi0xLjJzLTMuMy0xLjktNC40LTMuNGMtMS4xLTEuNS0xLjktMy4yLTIuNC01LjJzLTAuOC00LjMtMC44LTdWMjUuNWMwLTUuNCwxLjEtOS41LDMuMy0xMi4zYzIuMi0yLjgsNS44LTQuMiwxMC45LTQuMmM1LDAsOC42LDEuNCwxMC44LDQuMmMyLjIsMi44LDMuMyw2LjksMy4zLDEyLjJ2MTkuN2MwLDUuNC0xLjEsOS41LTMuMywxMi40QzMwOC44LDYwLjUsMzA1LjIsNjEuOSwzMDAuMiw2MS45eiBNMjk2LjYsNTUuNmMwLjksMC40LDIuMSwwLjcsMy41LDAuN2MxLjQsMCwyLjYtMC4yLDMuNS0wLjdjMC45LTAuNCwxLjYtMS4xLDIuMS0yYzAuNS0wLjksMC44LTEuOSwxLTNjMC4yLTEuMSwwLjMtMi40LDAuMy00VjI0YzAtMS42LTAuMS0yLjktMC4zLTMuOWMtMC4yLTEtMC41LTItMS0yLjljLTAuNS0wLjktMS4yLTEuNS0yLjEtMS45Yy0wLjktMC40LTIuMS0wLjYtMy41LTAuNmMtMS40LDAtMi42LDAuMi0zLjUsMC42Yy0wLjksMC40LTEuNiwxLTIuMSwxLjljLTAuNSwwLjktMC44LDEuOC0xLDIuOWMtMC4yLDEtMC4zLDIuMy0wLjMsMy45djIyLjdjMCwxLjYsMC4xLDIuOSwwLjMsNGMwLjIsMS4xLDAuNSwyLjEsMSwzQzI5NSw1NC41LDI5NS43LDU1LjIsMjk2LjYsNTUuNnoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzQwLjYsNjEuMWMtMS42LDAuNi0zLjUsMC45LTUuOCwwLjljLTIuMiwwLTQuMS0wLjMtNS44LTAuOWMtMS42LTAuNi0zLTEuNC00LTIuM2MtMS0xLTEuOC0yLjMtMi41LTMuOGMtMC42LTEuNi0xLTMuMi0xLjMtNC45Yy0wLjItMS43LTAuMy0zLjgtMC4zLTYuMVY5LjVoNi45djM0LjdjMCwxLjUsMCwyLjgsMC4xLDMuOGMwLjEsMS4xLDAuMywyLjIsMC42LDMuM2MwLjMsMS4xLDAuNywyLDEuMiwyLjZjMC41LDAuNywxLjIsMS4yLDIsMS42YzAuOSwwLjQsMS45LDAuNiwzLjEsMC42czIuMi0wLjIsMy0wLjZjMC44LTAuNCwxLjUtMSwyLTEuN2MwLjUtMC43LDAuOS0xLjYsMS4yLTIuNmMwLjMtMS4xLDAuNS0yLjIsMC42LTMuMmMwLjEtMS4xLDAuMS0yLjQsMC4xLTMuOFY5LjVoNi45djM0LjNjMCwyLjMtMC4xLDQuMy0wLjMsNi4xYy0wLjIsMS43LTAuNywzLjQtMS4zLDQuOWMtMC42LDEuNi0xLjQsMi44LTIuNSwzLjhDMzQzLjUsNTkuNywzNDIuMiw2MC41LDM0MC42LDYxLjF6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTM1Ni4yLDYxLjNWOS41aDEyLjhjNC41LDAsNy44LDEuMiw5LjgsMy42YzIsMi40LDMsNiwzLDEwLjdjMCw0LjItMS4xLDcuNS0zLjMsOS44Yy0yLjIsMi40LTUuMywzLjUtOS41LDMuNWgtNS43djI0LjFIMzU2LjJ6IE0zNjMuNSwzMmgzLjNjMy4yLDAsNS4zLTAuNiw2LjUtMS43czEuOC0zLjMsMS44LTYuNWMwLTEuMywwLTIuNC0wLjEtMy4ycy0wLjItMS42LTAuNC0yLjRzLTAuNS0xLjMtMC45LTEuN2MtMC40LTAuNC0wLjgtMC44LTEuNS0xYy0wLjYtMC4zLTEuNC0wLjUtMi4yLTAuNmMtMC44LTAuMS0xLjktMC4yLTMuMS0wLjJoLTMuNFYzMnoiLz48L2c+PC9zdmc+) no-repeat 50% 50%;
    mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMzg3LjcgNzIuNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzg3LjcgNzIuNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiNGNjEyNEI7fTwvc3R5bGU+PGc+PHBhdGggY2xhc3M9InN0MCIgZD0iTTEwLjgsNjEuM1Y5LjVIMTh2MjIuNGgxMy4zVjkuNWg3LjJ2NTEuOGgtNy4yVjM3LjFIMTh2MjQuM0gxMC44eiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik01OS45LDYxLjljLTIuNiwwLTQuOC0wLjQtNi42LTEuMnMtMy4zLTEuOS00LjQtMy40Yy0xLjEtMS41LTEuOS0zLjItMi40LTUuMnMtMC44LTQuMy0wLjgtN1YyNS41YzAtNS40LDEuMS05LjUsMy4zLTEyLjNDNTEuMiwxMC40LDU0LjgsOSw1OS45LDljNSwwLDguNiwxLjQsMTAuOCw0LjJDNzIuOSwxNiw3NCwyMC4xLDc0LDI1LjV2MTkuN2MwLDUuNC0xLjEsOS41LTMuMywxMi40QzY4LjUsNjAuNSw2NC45LDYxLjksNTkuOSw2MS45eiBNNTYuNCw1NS42YzAuOSwwLjQsMi4xLDAuNywzLjUsMC43YzEuNCwwLDIuNi0wLjIsMy41LTAuN2MwLjktMC40LDEuNi0xLjEsMi4xLTJjMC41LTAuOSwwLjgtMS45LDEtM2MwLjItMS4xLDAuMy0yLjQsMC4zLTRWMjRjMC0xLjYtMC4xLTIuOS0wLjMtMy45Yy0wLjItMS0wLjUtMi0xLTIuOWMtMC41LTAuOS0xLjItMS41LTIuMS0xLjljLTAuOS0wLjQtMi4xLTAuNi0zLjUtMC42Yy0xLjQsMC0yLjYsMC4yLTMuNSwwLjZjLTAuOSwwLjQtMS42LDEtMi4xLDEuOWMtMC41LDAuOS0wLjgsMS44LTEsMi45Yy0wLjIsMS0wLjMsMi4zLTAuMywzLjl2MjIuN2MwLDEuNiwwLjEsMi45LDAuMyw0YzAuMiwxLjEsMC41LDIuMSwxLDNDNTQuNyw1NC41LDU1LjQsNTUuMiw1Ni40LDU1LjZ6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTgxLjIsNjEuM1Y5LjVoMTAuNGM1LjIsMCw5LjEsMS4xLDExLjUsMy4yYzIuNCwyLjEsMy43LDUuNiwzLjcsMTAuNWMwLDYuNy0yLjEsMTAuNy02LjQsMTIuMWw3LjQsMjZoLTdMOTQsMzdoLTUuNnYyNC4zSDgxLjJ6IE04OC40LDMxLjhoMi43YzMuMSwwLDUuNC0wLjYsNi43LTEuOWMxLjMtMS4yLDItMy41LDItNi43YzAtMy4xLTAuNi01LjQtMS43LTYuNmMtMS4yLTEuMy0zLjMtMS45LTYuNS0xLjloLTMuMlYzMS44eiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMTQuNCw2MS4zVjkuNWgyMC4xdjUuM2gtMTIuOFYzMmgxMC40djUuMmgtMTAuNHYxOWgxM3Y1LjJIMTE0LjR6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTE1My40LDYxLjljLTIuMSwwLTQtMC4zLTUuNy0wLjlzLTMtMS40LTQtMi40cy0xLjktMi4yLTIuNS0zLjdjLTAuNy0xLjUtMS4xLTMuMS0xLjQtNC43Yy0wLjItMS42LTAuNC0zLjUtMC40LTUuNVYyNi40YzAtMi4yLDAuMS00LjEsMC40LTUuOGMwLjMtMS43LDAuNy0zLjMsMS40LTQuOGMwLjYtMS41LDEuNS0yLjcsMi41LTMuN2MxLTEsMi40LTEuNyw0LTIuMmMxLjYtMC41LDMuNS0wLjgsNS42LTAuOGM0LjcsMCw4LDEuMywxMCwzLjhjMiwyLjUsMyw2LjIsMywxMS4xdjQuMWgtNi44di0zLjdjMC0wLjgsMC0xLjQsMC0xLjljMC0wLjQsMC0xLTAuMS0xLjdjMC0wLjctMC4xLTEuMi0wLjItMS42Yy0wLjEtMC40LTAuMi0wLjgtMC4zLTEuM2MtMC4xLTAuNS0wLjMtMC45LTAuNS0xLjJjLTAuMi0wLjMtMC41LTAuNi0wLjgtMC45Yy0wLjMtMC4zLTAuNy0wLjYtMS4xLTAuN2MtMC40LTAuMi0wLjktMC4zLTEuNC0wLjRjLTAuNS0wLjEtMS4xLTAuMi0xLjgtMC4yYy0xLDAtMS45LDAuMS0yLjYsMC4zcy0xLjQsMC42LTEuOCwxYy0wLjUsMC41LTAuOSwxLTEuMiwxLjVjLTAuMywwLjYtMC41LDEuMy0wLjcsMi4yYy0wLjEsMC45LTAuMiwxLjctMC4zLDIuNmMtMC4xLDAuOC0wLjEsMS44LTAuMSwzdjIwLjVjMCwzLjksMC41LDYuNiwxLjUsOC4xYzEsMS41LDIuNywyLjMsNS4yLDIuM2MxLDAsMS44LTAuMSwyLjUtMC4zYzAuNy0wLjIsMS4zLTAuNiwxLjctMWMwLjQtMC41LDAuOC0xLDEuMS0xLjVjMC4zLTAuNSwwLjUtMS4yLDAuNi0yLjFjMC4xLTAuOSwwLjItMS43LDAuMi0yLjVzMC0xLjcsMC0yLjl2LTMuOGg2Ljh2My44YzAsMi0wLjEsMy44LTAuNCw1LjNzLTAuNywzLTEuMyw0LjRjLTAuNiwxLjQtMS40LDIuNS0yLjQsMy40Yy0xLDAuOS0yLjIsMS42LTMuOCwyLjFDMTU3LjIsNjEuNywxNTUuNCw2MS45LDE1My40LDYxLjl6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTE3MC41LDYxLjNsMTEuMS01MS44aDdsMTEuMSw1MS44aC02LjlsLTIuNC0xMy4xaC0xMC41bC0yLjUsMTMuMUgxNzAuNXogTTE4MC44LDQzLjFoOC43bC00LjMtMjMuNEwxODAuOCw0My4xeiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMzEuOCw2MmMtNC43LDAtOC4xLTEuNS0xMC4yLTQuNWMtMi4xLTMtMy4xLTcuNC0zLjEtMTMuMlYyN2MwLTIuNCwwLjEtNC41LDAuNC02LjJjMC4zLTEuOCwwLjctMy40LDEuMy01YzAuNi0xLjUsMS41LTIuOCwyLjUtMy43YzEtMSwyLjQtMS43LDQtMi4yYzEuNi0wLjUsMy41LTAuOCw1LjctMC44YzQuOCwwLDguMiwxLjIsMTAuMywzLjdjMi4xLDIuNCwzLjIsNi4zLDMuMiwxMS41djEuOWgtNi44di0xLjZjMC0xLjUsMC0yLjctMC4xLTMuNmMtMC4xLTAuOS0wLjMtMS44LTAuNS0yLjdjLTAuMy0wLjktMC42LTEuNS0xLjEtMmMtMC41LTAuNS0xLjEtMC44LTEuOS0xLjFjLTAuOC0wLjMtMS44LTAuNC0yLjktMC40Yy0wLjksMC0xLjcsMC4xLTIuNCwwLjNjLTAuNywwLjItMS4zLDAuNS0xLjgsMC44Yy0wLjUsMC4zLTAuOSwwLjgtMS4yLDEuM2MtMC4zLDAuNi0wLjYsMS4xLTAuOCwxLjdjLTAuMiwwLjYtMC4zLDEuMy0wLjQsMi4xYy0wLjEsMC45LTAuMiwxLjctMC4yLDIuNGMwLDAuNywwLDEuNiwwLDIuN3YxOS4yYzAsNCwwLjUsNi44LDEuNCw4LjZjMSwxLjcsMi44LDIuNiw1LjUsMi42YzIuNywwLDQuNi0wLjksNS42LTIuOHMxLjUtNC45LDEuNS05di0zLjZoLTYuNnYtNS4xaDEzLjF2MjUuN2gtNC42bC0wLjctNkMyMzkuNSw1OS44LDIzNi40LDYyLDIzMS44LDYyeiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yNTMuNyw2MS4zVjkuNWgxMC40YzUuMiwwLDkuMSwxLjEsMTEuNSwzLjJjMi40LDIuMSwzLjcsNS42LDMuNywxMC41YzAsNi43LTIuMSwxMC43LTYuNCwxMi4xbDcuNCwyNmgtN0wyNjYuNiwzN0gyNjF2MjQuM0gyNTMuN3ogTTI2MSwzMS44aDIuN2MzLjEsMCw1LjQtMC42LDYuNy0xLjljMS4zLTEuMiwyLTMuNSwyLTYuN2MwLTMuMS0wLjYtNS40LTEuNy02LjZjLTEuMi0xLjMtMy4zLTEuOS02LjUtMS45SDI2MVYzMS44eiIvPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMDAuMiw2MS45Yy0yLjYsMC00LjgtMC40LTYuNi0xLjJzLTMuMy0xLjktNC40LTMuNGMtMS4xLTEuNS0xLjktMy4yLTIuNC01LjJzLTAuOC00LjMtMC44LTdWMjUuNWMwLTUuNCwxLjEtOS41LDMuMy0xMi4zYzIuMi0yLjgsNS44LTQuMiwxMC45LTQuMmM1LDAsOC42LDEuNCwxMC44LDQuMmMyLjIsMi44LDMuMyw2LjksMy4zLDEyLjJ2MTkuN2MwLDUuNC0xLjEsOS41LTMuMywxMi40QzMwOC44LDYwLjUsMzA1LjIsNjEuOSwzMDAuMiw2MS45eiBNMjk2LjYsNTUuNmMwLjksMC40LDIuMSwwLjcsMy41LDAuN2MxLjQsMCwyLjYtMC4yLDMuNS0wLjdjMC45LTAuNCwxLjYtMS4xLDIuMS0yYzAuNS0wLjksMC44LTEuOSwxLTNjMC4yLTEuMSwwLjMtMi40LDAuMy00VjI0YzAtMS42LTAuMS0yLjktMC4zLTMuOWMtMC4yLTEtMC41LTItMS0yLjljLTAuNS0wLjktMS4yLTEuNS0yLjEtMS45Yy0wLjktMC40LTIuMS0wLjYtMy41LTAuNmMtMS40LDAtMi42LDAuMi0zLjUsMC42Yy0wLjksMC40LTEuNiwxLTIuMSwxLjljLTAuNSwwLjktMC44LDEuOC0xLDIuOWMtMC4yLDEtMC4zLDIuMy0wLjMsMy45djIyLjdjMCwxLjYsMC4xLDIuOSwwLjMsNGMwLjIsMS4xLDAuNSwyLjEsMSwzQzI5NSw1NC41LDI5NS43LDU1LjIsMjk2LjYsNTUuNnoiLz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzQwLjYsNjEuMWMtMS42LDAuNi0zLjUsMC45LTUuOCwwLjljLTIuMiwwLTQuMS0wLjMtNS44LTAuOWMtMS42LTAuNi0zLTEuNC00LTIuM2MtMS0xLTEuOC0yLjMtMi41LTMuOGMtMC42LTEuNi0xLTMuMi0xLjMtNC45Yy0wLjItMS43LTAuMy0zLjgtMC4zLTYuMVY5LjVoNi45djM0LjdjMCwxLjUsMCwyLjgsMC4xLDMuOGMwLjEsMS4xLDAuMywyLjIsMC42LDMuM2MwLjMsMS4xLDAuNywyLDEuMiwyLjZjMC41LDAuNywxLjIsMS4yLDIsMS42YzAuOSwwLjQsMS45LDAuNiwzLjEsMC42czIuMi0wLjIsMy0wLjZjMC44LTAuNCwxLjUtMSwyLTEuN2MwLjUtMC43LDAuOS0xLjYsMS4yLTIuNmMwLjMtMS4xLDAuNS0yLjIsMC42LTMuMmMwLjEtMS4xLDAuMS0yLjQsMC4xLTMuOFY5LjVoNi45djM0LjNjMCwyLjMtMC4xLDQuMy0wLjMsNi4xYy0wLjIsMS43LTAuNywzLjQtMS4zLDQuOWMtMC42LDEuNi0xLjQsMi44LTIuNSwzLjhDMzQzLjUsNTkuNywzNDIuMiw2MC41LDM0MC42LDYxLjF6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTM1Ni4yLDYxLjNWOS41aDEyLjhjNC41LDAsNy44LDEuMiw5LjgsMy42YzIsMi40LDMsNiwzLDEwLjdjMCw0LjItMS4xLDcuNS0zLjMsOS44Yy0yLjIsMi40LTUuMywzLjUtOS41LDMuNWgtNS43djI0LjFIMzU2LjJ6IE0zNjMuNSwzMmgzLjNjMy4yLDAsNS4zLTAuNiw2LjUtMS43czEuOC0zLjMsMS44LTYuNWMwLTEuMywwLTIuNC0wLjEtMy4ycy0wLjItMS42LTAuNC0yLjRzLTAuNS0xLjMtMC45LTEuN2MtMC40LTAuNC0wLjgtMC44LTEuNS0xYy0wLjYtMC4zLTEuNC0wLjUtMi4yLTAuNmMtMC44LTAuMS0xLjktMC4yLTMuMS0wLjJoLTMuNFYzMnoiLz48L2c+PC9zdmc+) no-repeat 50% 50%;
    background-color: #9eccdc;
    background-size: 130px 100px;
    display: block;
    width: 100px;
    max-width: 90%;
    height: 50px;
    z-index: 2;
    visibility: visible;
    transition: all 0.5s;
    margin: 0 10px;
}

footer .hg:hover {
    background-color: #f60f4a;
    width: 120px;
}

#footsecond a {
    display: inline-block;
    float: right;
    position: relative;
    color: #9eccdc;
    line-height: 48px;
    padding: 0 10px;
    font-weight: 600;
}

#socialtop {
    position: absolute;
    bottom: 40px;
    right: 20px;
    z-index: 12;
    width: 220px;
}

.mapart {
    position: relative;
}

#socialfoot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-70%);
    display: inline-block;
    text-align: center;
    width: 100%;
}

#socialtop ul, #socialfoot ul {
    display: inline-block
}

#socialtop ul li, #socialfoot ul li {
        display: inline-block
}

#socialtop ul .facebook, #socialfoot ul .facebook {
    background-color: rgba(158, 204, 220, 0.83);
    -webkit-mask: url('/template/images/facebook-letter-logo.svg') 50% 50% no-repeat;
    clip-path: url('/template/images/facebook-letter-logo.svg') ;
    -webkit-mask-size: 20px;
    mask-size: 20px;
    display: block;
    width: 60px;
    max-width: 90%;
    height: 60px;
    z-index: 2;
    visibility: visible;
    transition: all 0.5s;
}

#socialtop ul .facebook:hover, #socialfoot ul .facebook:hover {
    background-color: rgb(117, 218, 246)
}

#socialtop ul .instagram, #socialfoot ul .instagram {
    -webkit-mask: url('/template/images/instagram-logo.svg') 50% 50% no-repeat;
    clip-path: url('/template/images/instagram-logo.svg');
    background-color: rgba(158, 204, 220, 0.83);
    -webkit-mask-size: 20px;
    mask-size: 20px;
    display: block;
    width: 60px;
    max-width: 90%;
    height: 60px;
    z-index: 2;
    visibility: visible;
    transition: all 0.5s;
}

#socialtop ul .youtube, #socialfoot ul .youtube {
    -webkit-mask: url('/template/images/youtube-letters.svg') 50% 50% no-repeat;
    clip-path: url('/template/images/youtube-letters.svg');
    background-color: rgba(158, 204, 220, 0.83);
    -webkit-mask-size: 20px;
    mask-size: 20px;
    display: block;
    width: 60px;
    max-width: 90%;
    height: 60px;
    z-index: 2;
    visibility: visible;
    transition: all 0.5s;
}
#socialtop ul .tripadvisor, #socialfoot ul .tripadvisor {
    -webkit-mask: url('/template/images/tripadvisor-logotype.svg') 50% 50% no-repeat;
    clip-path: url('/template/images/tripadvisor-logotype.svg');
    background-color: rgba(158, 204, 220, 0.83);
    -webkit-mask-size: 20px;
    mask-size: 20px;
    display: block;
    width: 60px;
    max-width: 90%;
    height: 60px;
    z-index: 2;
    visibility: visible;
    transition: all 0.5s;
}

#socialtop ul .googlemaps, #socialfoot ul .googlemaps {
    -webkit-mask: url('/template/images/google-maps.svg') 50% 50% no-repeat;
    clip-path: url('/template/images/google-maps.svg');
    background-color: rgba(158, 204, 220, 0.83);
    -webkit-mask-size: 20px;
    mask-size: 20px;
    display: block;
    width: 60px;
    max-width: 90%;
    height: 60px;
    z-index: 2;
    visibility: visible;
    transition: all 0.5s;
}

#socialfoot ul .facebook:hover, #socialfoot ul .instagram:hover, #socialfoot ul .youtube:hover, #socialfoot ul .tripadvisor:hover, #socialfoot ul .googlemaps:hover  {
    background-color: rgb(117, 218, 246)
}

#plogos a img {
    width: 100px;
    margin: 0 auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 400ms;
}

#plogos a:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1)
}

#slide .cover {
    width: 100%;
    height: 490px;
    position: relative;
}

#slide .cover::before {
    content: '';
    background: -moz-linear-gradient(bottom, rgb(0, 82, 113) 0%,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(bottom, rgb(0, 82, 113) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to top, rgb(0, 82, 113) 0%,rgba(0,0,0,0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 300px;
    width: 100%;
    z-index: 8;
}

#slide .heading {
    position: relative;
    width: 100%;
    height: 490px;
}

#slide .heading h1 {
    position: absolute;
    bottom: 0;
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    z-index: 9
}

#slide .heading h1 small {
    display: block;
    font-size: 20px;
    text-transform: none;
    color: #75daf6;
    letter-spacing: 0;
    line-height: 35px;
    padding-left: 5px;
    font-weight: 500;
    font-style: italic;
}

#slide .heading h1::before {
    content: '';
    position: absolute;
    top: 80%;
    left: -120px;
    transform: translate(-50%, -65%);
    width: 323px;
    height: 297px;
    background: url(/template/images/line.png) 50% 50% no-repeat;
    background-size: 300px;
    z-index: 0;
    opacity: 0.15;
}

article {
    padding: 40px 20px 40px 0;
}

article ul li {
    font-size: 16px;
    line-height: 28px;
    color: #0d5672;
}

article h4 {
    font-size: 24px;
    line-height: 30px;
    text-transform: none;
    margin: 16px 0 10px;
}

#formr {
        margin-top: 40px;
    margin-right: 50px;
    position: sticky;
    display: block;
    top: 0;
    background: rgba(232, 238, 240, 0.5);
    text-align: center;
}

#formr h2 {
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 30px;
}

#conte aside {
    position: sticky;
    top: 110px;
}

#formr p {
    font-size: 12px;
    line-height: 18px;
    padding: 0 30px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #085572;
    font-style: italic;
}


#smallorder input, #smallorder textarea, #submitform {
    width: 80%;
    margin: 0 auto;
    padding: 8px 8px;
    font-family: 'Open sans' , sans-serif;
    font-size: 13px;
    line-height: 23px;
    font-weight: 500;
    border: none;
    background: rgba(168, 202, 214, 0.3);
    color: #085572;
    margin-top: 10px;
    outline: none;
    resize: vertical;
        font-weight: 600;
}

#submitform {
    background: #085572;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    outline: none;
    cursor: pointer;
        font-weight: 700;
}

#smallorder #submitform  {
    background: #085572;
    color: white;
}

.form_error {
    background: rgba(253, 124, 126, 0.37)!important
}

.sideser {
    padding-bottom: 10px;
}

#smallorder {
    padding-bottom: 10px;
}

#page-content .lightgallery {
    list-style: none;
    margin: -5px;
    padding: 0;
    display: flex;
}

#page-content .lightgallery li {
    padding: 5px 5px;
    margin:  0;
}

#page-content .lightgallery li:hover {
    transform: none
}

#page-content .lightgallery li a {
    display: block;
    width: 100%;
    height: 125px;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#page-content  .lightgallery li a img {
    display: none;
}

#page-content ul.lightgallery li::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: -moz-linear-gradient(141deg, rgb(183, 150, 67) 0%,rgba(186, 167, 119, 0.49) 100%);
    background: -webkit-linear-gradient(141deg, rgb(183, 150, 67) 0%,rgba(186, 167, 119, 0.49) 100%);
    background: linear-gradient(141deg, rgb(39, 23, 5) 0%,rgba(186, 167, 119, 0.49) 100%);
    position: absolute;
    display: block!important;
    z-index: 9;
    top: 5px;
    right: 0px;
    bottom: 0px;
    left: 5px;
    cursor: pointer;
    -webkit-transition: all .55s linear;
    -moz-transition: all .55s linear;
    transition: all .55s linear;
    opacity: 0;
    content: '';
    -webkit-mask: none;
    mask: none;
}

#page-content ul.lightgallery li::after {
    content: '';
    background: url(/template/images/cream-search.svg) no-repeat;
    width: 0px;
    height: 0px;
    z-index: 10;
    background-size: 0px;
    top: 50%;
    left: 50%;
    position: absolute;
    font-size: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: .4s all ease;
    transition: .4s all ease;
}

#page-content ul.lightgallery li:hover::before {
    opacity: 1;
}

#page-content ul.lightgallery li:hover::after {
    opacity: 1;
    width: 40px;
    height: 40px;
    background-size: 40px;
}


#page-content.gallery .lightgallery li a {
    display: block;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#page-content.gallery {
    padding: 10px 20px
}

#breakto {
    background-image: radial-gradient(circle farthest-side at center bottom, rgba(9, 131, 171, 0.79), rgba(6, 53, 70, 0.99) 115%);
    background-image: -moz-radial-gradient(circle farthest-side at center bottom, rgba(9, 131, 171, 0.79), rgba(6, 53, 70, 0.99) 115%);
    background-image: -webkit-radial-gradient(circle farthest-side at center bottom, rgba(9, 131, 171, 0.79), rgba(6, 53, 70, 0.99) 115%);
    background-image: -o-radial-gradient(circle farthest-side at center bottom, rgba(9, 131, 171, 0.79), rgba(6, 53, 70, 0.99) 115%);
    padding: 140px 0;
    margin: 50px 0;
    position: relative;
}

#breakto::before {
    content: '';
    background: url('/template/images/v21c.jpg') 50% 80% no-repeat;
    background-size: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1
}

#breakto span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)skew(-16deg);
    color: #ffffff94;
    font-size: 30px;
    line-height: 38px;
    font-weight: 100;
}





 a.close {
  line-height: 1;
  font-size: 1.5em;
  position: absolute;
  top: 5%;
  right: 2%;
  text-decoration: none;
  color: white!important;
  opacity: 0.8
}

 a.close:hover {
  opacity: 1;
  color: white!important;
}


    /** MODAL ------------------------------------------------------------------------------------------ */

.v-center {
  height: 100vh;
  width: 100%;
  display: table;
  position: relative;
  text-align: center;
}

.v-center > div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  top: -10%;
}

.modal-box {
  display: none;
  position: fixed;
  z-index: 100001;
  width: 98%;
}

.modal-body h3 {
    font-size: 32px;
    line-height: 42px;
    font-family: inherit;
    text-transform: uppercase;
    color: white;
}

 a.close {
  line-height: 1;
  font-size: 1.5em;
  position: absolute;
  top: 5%;
  right: 2%;
  text-decoration: none;
  color: white!important;
  opacity: 0.8
}

 a.close:hover {
  opacity: 1;
  color: white!important;
}


/***********************
 * Essential Structure *
 ***********************/
.flexsearch--wrapper {
  height: auto;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  background: transparent;
  margin: 0;
  position: static;
}

.flexsearch--form {
    position: relative;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}

.flexsearch--input-wrapper {
  position: relative
}

.flexsearch--input {
  width: 100%;
}

.flexsearch--input:active, .flexsearch--input:focus {
    background: white;
    color: #196b8b;
}

.flexsearch--input:active::placeholder, .flexsearch--input:focus::placeholder {
    background: white;
    color: #196b8b;
}

.big-button {
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    transition: all 1s ease;
}

.big-button:hover {
  transition: all 1s ease;
}

/***********************
 * Configurable Styles *
 ***********************/
.flexsearch {
  padding: 0 25px 0 200px; /* Padding for other horizontal elements */
}

.flexsearch--input {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 60px;
    font-family: 'Open sans' , sans-serif;
    padding: 0 46px 0 20px;
    border-color: #196b8b;
    border-radius: 35px;
    border-style: solid;
    border-width: 0;
    margin-top: 15px;
    background: #ffffff;
    color: #196b8b;
    font-size: 18px;
    max-width: 80%;
    width: 400px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.flexsearch--submit {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  margin-top: 15px; /* margin-top + border-width */
  margin-right: 5px; /* border-width */
  background: transparent;
  color: transparent;
  outline: none;
  font-size: 40px;
  line-height: 60px;
}

.flexsearch--submit:hover {
    background: transparent;
  color: transparent;
}

.flexsearch--input-wrapper::before {
    content: '';
    -webkit-mask-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI1MC4zMTMgMjUwLjMxMyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUwLjMxMyAyNTAuMzEzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPGcgaWQ9IlNlYXJjaCI+Cgk8cGF0aCBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7IiBkPSJNMjQ0LjE4NiwyMTQuNjA0bC01NC4zNzktNTQuMzc4Yy0wLjI4OS0wLjI4OS0wLjYyOC0wLjQ5MS0wLjkzLTAuNzYgICBjMTAuNy0xNi4yMzEsMTYuOTQ1LTM1LjY2LDE2Ljk0NS01Ni41NTRDMjA1LjgyMiw0Ni4wNzUsMTU5Ljc0NywwLDEwMi45MTEsMFMwLDQ2LjA3NSwwLDEwMi45MTEgICBjMCw1Ni44MzUsNDYuMDc0LDEwMi45MTEsMTAyLjkxLDEwMi45MTFjMjAuODk1LDAsNDAuMzIzLTYuMjQ1LDU2LjU1NC0xNi45NDVjMC4yNjksMC4zMDEsMC40NywwLjY0LDAuNzU5LDAuOTI5bDU0LjM4LDU0LjM4ICAgYzguMTY5LDguMTY4LDIxLjQxMyw4LjE2OCwyOS41ODMsMEMyNTIuMzU0LDIzNi4wMTcsMjUyLjM1NCwyMjIuNzczLDI0NC4xODYsMjE0LjYwNHogTTEwMi45MTEsMTcwLjE0NiAgIGMtMzcuMTM0LDAtNjcuMjM2LTMwLjEwMi02Ny4yMzYtNjcuMjM1YzAtMzcuMTM0LDMwLjEwMy02Ny4yMzYsNjcuMjM2LTY3LjIzNmMzNy4xMzIsMCw2Ny4yMzUsMzAuMTAzLDY3LjIzNSw2Ny4yMzYgICBDMTcwLjE0NiwxNDAuMDQ0LDE0MC4wNDMsMTcwLjE0NiwxMDIuOTExLDE3MC4xNDZ6IiBmaWxsPSIjRkZGRkZGIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-color: #196b8b!important;
    -webkit-mask-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 400ms;
        background-size: 20px;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 27px;
    top: 50%;
    transform: translateY(-20%);
    cursor: pointer;
}

.flexsearch--input:focus {
  outline: none;
  border-color: #196b8b;
}

::-webkit-input-placeholder {
  color: #196b8b;
}

input:-moz-placeholder {
  color: #196b8b
}

#searchmodal h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 55px;
    font-family: 'Open sans' , sans-serif;
    font-weight: 800;
    text-transform: none;
    margin: 60px 0 30px;
}







#voucherdetailform select {
    background: #ececec;
    background-image: url(/template/kontakt/images/arrow-down.png);
    background-size: 15px 15px;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    color: #1b2d4e!important;
    font-size: 14px!important;
    border: none;
}

.but, #bf_continue {
    background: #bbe4d0;
    color: #1b2d4e;
    font-weight: bold;
    transition: 400ms;
    border-radius: 0px;
    padding: 6px 14px;
    margin: 20px auto;
    display: block;
    width: 150px;
    text-transform: uppercase;
    font-size: 16px;
    outline: none;
    text-decoration: none;
    text-align: center;
    transition: 400ms;
}


#voucher-form .rbi_personal_item label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 5px;
    color: #1b2d4e;
}

.voucher_item_prices {
    position: relative
}

#voucher-form .rbi_personal_item textarea {
    width: calc(100% - 30px);
    border: none;
    height: 140px;
    resize: vertical;
    padding: 5px 8px;
    outline: none;
    font-size: 14px;
    background: #e5eff2;
    display: inline-block;
    border-radius: 0px;
    line-height: 26px;
    font-weight: bold;
    font-family: 'Roboto',sans-serif;
}

.voucher_item_prices input {
    background: #e5eff2;
    border: none;
    font-size: 32px;
    line-height: 32px;
    border-radius: 0;
    height: 40px;
    padding: 0;
    left: 70px;
    padding: 4px;
    padding-left: 22px;
    margin: 0;
    color: #1b2d4e;
    width: 75px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    cursor: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rbi_sml span {
    padding-left: 5px;
    font-family: Roboto;
    color: #1b2d4e;
}

#voucherorder .input-group-button {
    display: inline-block;
    text-align: center;
}

#voucherorder  .input-number-decrement {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(26,45,79,.24);
    color: rgb(27, 45, 78);
    width: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transform: translateX(0px);
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#voucherorder .input-number-increment {
    background: #c8cdd5;
    color: #1b2d4e;
    display: inline-block;
    width: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    transform: translateY(0px);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: 0;
    left: 125px;
}

.input-group-button {
    display: inline-block;
    text-align: center
}

#voucherorder .voucher_item_prices input {
    background: whitesmoke;
    border: none;
    font-size: 28px;
    text-align: center;
    padding: 10px;
    margin: 0;
    color: #1a2d4f;
    font-weight: 700;
    position: absolute;
    top: 0%;
    left: 50px;
    transform: translate(0%,0%);
    cursor: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#popup {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(6,13,25,0.62);
    z-index: 9999999999999;
    display: none;
}

.popup-wrapper {
    position: relative;
    height: 100%;
}

#popup-content {
    background: #ffffff;
    min-height: 100px;
    height: calc(100vh - 135px);
    max-height: fit-content;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 3px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 80px rgba(26,45,79,0.2);
    padding: 4%;
}

#popup-close {
    width: 50px;
    height: 50px;
    background: transparent;
    position: absolute;
    top: -4px;
    right: -3px;
    color: #ffffff;
    opacity: .7;
    cursor: pointer;
    transition: all 500ms;
}
#popup-close::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "\d7";
    font-size: 35px;
    color: #1a0c52;
    line-height: 50px;
    text-align: center;
    font-weight: 100;
}
#js-popup-content {
    text-align: left;
    margin: 1rem;
}
#js-popup-content h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

#voucher-form .rbi_personal_item input.rbi_red {
    background: #fabdc8;
}

#voucher-form #bf_continue {
    background: #bbe4d0;
    border: 2px solid #bbe4d0;
    color: #1b2d4e;
    font-weight: bold;
    transition: 400ms;
    border-radius: 3px;
    padding: 9px 18px;
    margin: 65px 50px 15px auto;
    cursor: pointer;
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    outline: none;
    text-decoration: none;
    text-align: center;
    transition: 400ms;
}



#voucher-form h3 {
    margin-bottom: 10px;
    margin-top: 35px;
    display: inline-block;
    width: 100%;
    text-align: left;
}
#voucher-form .rbi_personal_item input {
    background: #bcdde6;
    border: none;
    padding: 8px;
    width: calc(100% - 30px);
    font-size: 14px;
    color: #002633;
    display: inline-block;
    line-height: 26px;
    outline: none;
    border-radius: 3px;
    font-weight: bold;
}

#voucher-form .rbi_personal_item {
    width: 50%;
    float: left;
}
#voucher-form .rbi_personal_item.rbipright {
    width: 100%;
    margin: 4px 0;
}
.rbi_fleft {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.control__indicator {
    position: absolute;
    top: 50%!important;
    left: 0!important;
    height: 20px;
    width: 20px;
    background: #bcdde6!important;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transform: translateY(-45%);
}

.control:hover input ~ .control__indicator {
    background: #1b2d4e!important;
}

#rbi_cond_bck .control:hover input:not([disabled]):checked ~ .control__indicator, #rbi_gdpr_bck .control:hover input:not([disabled]):checked ~ .control__indicator, #rbi_marketing_bck .control:hover input:not([disabled]):checked ~ .control__indicator, #rbi_cond_bck .control input:checked:focus ~ .control__indicator, #rbi_gdpr_bck .control input:checked:focus ~ .control__indicator, #rbi_marketing_bck .control input:checked:focus ~ .control__indicator {
    background: #191d4a!important;
    border: #002d58;
}

.popuphg {
    position: relative;
    cursor: pointer;
}

.control--checkbox .control__indicator:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.popuphg {
    position: relative;
    cursor: pointer;
}

.rbi_sml span {
    padding-left: 5px;
}

.popuphg::after {
    content: 'i';
    background: #1b2d4e;
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-family: serif;
    font-style: italic;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-align: center;
    margin-left: 4px;
    cursor: pointer;
    transition: all 300ms;
}


select {
    font-size: 13px;
    padding: 2px 55px 2px 10px;
    border: none;
    line-height: 30px;
    color: #1b2d4e;
    font-weight: 500;
    height: 37px;
    border-radius: 0px;
    margin-right: 5px;
    clear: right;
    -webkit-appearance: initial;
    min-width: 302px!important;
    max-width: 100%;
    background: #ececec;
    background-image: url(/template/thermalpark/images/arrow-down.png);
    background-size: 15px 15px;
    border: 1px solid #ececec;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    outline: none;
}

#voucherdetailform select {
    background: #bcdde6;
    background-image: url(/template/thermalpark/images/arrow-down.png);
    background-size: 15px 15px;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    color: #1b2d4e!important;
    font-size: 14px!important;
    border: none;
}

.but, #bf_continue {
    background: #bbe4d0;
    color: #1b2d4e;
    font-weight: bold;
    transition: 400ms;
    border-radius: 0px;
    padding: 6px 14px;
    margin: 20px auto;
    display: block;
    width: 150px;
    text-transform: uppercase;
    font-size: 16px;
    outline: none;
    text-decoration: none;
    text-align: center;
    transition: 400ms;
}


#voucher-form .rbi_personal_item label {
  display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 5px;
    color: #085472;
}

.voucher_item_prices {
    position: relative
}

#voucher-form .rbi_personal_item textarea {
    width: calc(100% - 30px);
    border: none;
    height: 140px;
    resize: vertical;
    padding: 5px 8px;
    outline: none;
    font-size: 14px;
    background: #bcdde6;
	color: #085472;
    display: inline-block;
    border-radius: 0px;
    line-height: 26px;
    font-weight: bold;
    font-family: 'Roboto',sans-serif;
}

.voucher_item_prices input {
    background: #bcdde6;
    border: none;
	color: #085472;
    font-size: 32px;
    line-height: 32px;
    border-radius: 0;
    height: 40px;
    padding: 0;
    left: 70px;
    padding: 4px;
    padding-left: 22px;
    margin: 0;
    color: #1b2d4e;
    width: 75px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    cursor: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rbi_sml span {
    padding-left: 5px;
    font-family: Roboto;
    color: #1b2d4e;
}

#voucherorder .input-group-button {
    display: inline-block;
    text-align: center;
}

#voucherorder  .input-number-decrement {
    position: absolute;
    top: 0;
    left: 0;
    background: #98c1ce;
    color: #1b2d4e;
    width: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transform: translateX(0px);
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	font-weight: 800
}

#voucherorder .input-number-increment {
    background: #98c1ce;
    color: #1b2d4e;
    display: inline-block;
    width: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    transform: translateY(0px);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: 0;
    left: 125px;
	font-weight: 800
}

.input-group-button {
    display: inline-block;
    text-align: center
}

#voucherorder .control input:checked ~ .control__indicator {
    background: #085472!important;
}

#voucherorder .voucher_item_prices input {
    background: whitesmoke;
    border: none;
    font-size: 28px;
    text-align: center;
    padding: 10px;
    margin: 0;
    color: #1a2d4f;
    font-weight: 700;
    position: absolute;
    top: 0%;
    left: 50px;
    transform: translate(0%,0%);
    cursor: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#popup {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(6,13,25,0.62);
    z-index: 9999999999999;
    display: none;
}

.popup-wrapper {
    position: relative;
    height: 100%;
}

#popup-content {
    background: #ffffff;
    min-height: 100px;
    height: calc(100vh - 135px);
    max-height: fit-content;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 3px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 80px rgba(26,45,79,0.2);
    padding: 4%;
}

#popup-close {
    width: 50px;
    height: 50px;
    background: transparent;
    position: absolute;
    top: -4px;
    right: -3px;
    color: #ffffff;
    opacity: .7;
    cursor: pointer;
    transition: all 500ms;
}
#popup-close::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "\d7";
    font-size: 35px;
    color: #1a0c52;
    line-height: 50px;
    text-align: center;
    font-weight: 100;
}
#js-popup-content {
    text-align: left;
    margin: 1rem;
}
#js-popup-content h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

#voucher-form .rbi_personal_item input.rbi_red {
    background: #fabdc8;
}

#voucher-form #bf_continue {
    background: #bbe4d0;
    border: 2px solid #bbe4d0;
    color: #1b2d4e;
    font-weight: bold;
    transition: 400ms;
    border-radius: 3px;
    padding: 9px 18px;
    margin: 65px 50px 15px auto;
    cursor: pointer;
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    outline: none;
    text-decoration: none;
    text-align: center;
    transition: 400ms;
}



#popup {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(6,13,25,0.62);
    z-index: 9999999999999;
    display: none;
}

.popup-wrapper {
    position: relative;
    height: 100%;
}

#popup-content {
    background: #ffffff;
    min-height: 100px;
    height: calc(100vh - 135px);
    max-height: fit-content;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 3px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 80px rgba(26,45,79,0.2);
    padding: 4%;
}

#popup-close {
    width: 50px;
    height: 50px;
    background: transparent;
    position: absolute;
    top: -4px;
    right: -3px;
    color: #ffffff;
    opacity: .7;
    cursor: pointer;
    transition: all 500ms;
}
#popup-close::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "\d7";
    font-size: 35px;
    color: #1a0c52;
    line-height: 50px;
    text-align: center;
    font-weight: 100;
}
#js-popup-content {
    text-align: left;
    margin: 1rem;
}
#js-popup-content h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}

#voucher-form .rbi_personal_item input.rbi_red {
    background: #fabdc8;
}

#voucher-form #bf_continue {
    background: #bbe4d0;
    border: 2px solid #bbe4d0;
    color: #1b2d4e;
    font-weight: bold;
    transition: 400ms;
    border-radius: 3px;
    padding: 9px 18px;
    margin: 65px 50px 15px auto;
    cursor: pointer;
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    outline: none;
    text-decoration: none;
    text-align: center;
    transition: 400ms;
}

#all-offers-list {
	margin-bottom: 60px;
	margin-top: 30px
}

#all-offers-list .onepack {
    margin: 30px 10px;
    background: rgba(232, 238, 240, 0.5);
}

#all-offers-list .image-inner {
	padding-bottom: 63%;
    height: 0;
	position: relative
}

#all-offers-list .price span {
    position: absolute;
    bottom: 0;
    background: #085472;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 20px;
    color: white;
    font-weight: 600;
}

#all-offers-list .offer-info {
    position: relative;
    width: 100%;
    padding: 10px;
}

#all-offers-list .offer-info .but:hover, #all-offers-list .offer-info .but {
    background: #0a89b9;
    background-image: linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -moz-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -webkit-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -o-linear-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-image: -webkit-gradient(to right, #085370 0%, #0a89b9 51%, #085370 100%);
    background-size: 200% auto;
    box-shadow: none;
    color: white;
}

#rbi_cond_bck.rbi_red_bck .control__indicator, #rbi_cond_gdpr.rbi_red_bck .control__indicator, #rbi_gdpr_bck.rbi_red_bck .control__indicator, #rbi_gdpr_gdpr.rbi_red_bck .control__indicator {
    background: rgba(223,23,76,0.45)!important;
}


@media (min-width: 32em) {

.modal-box { width: 70%; }
}

.modal-box header,
.modal-box .modal-header {
  padding: 1.25em 1.5em;
  border-bottom: 1px solid #ddd;
}

.modal-box header h3,
.modal-box header h4,
.modal-box .modal-header h3,
.modal-box .modal-header h4 { margin: 0; }

.modal-box .modal-body { padding: 2em 1.5em; }

.modal-box footer,
.modal-box .modal-footer {
  padding: 1em;
  border-top: 1px solid #ddd;
  background: rgba(0, 0, 0, 0.02);
  text-align: right;
}

.modal-body h2 {
    color: white
}

.modal-body p {
    font-size: 18px;
    line-height: 28px;
    margin: 10px auto 20px;
    display: block;
    color: white;
    width: 650px;
    max-width: 80%;
}

.modal-overlay  {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100%;
    height: 100%;
    background: rgba(8, 83, 111, 0.8);
    opacity: 0.98!important;
}

.modal-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}

a.close {
  line-height: 1;
    font-size: 40px;
    position: absolute;
    top: 0%;
    text-decoration: none;
    color: white!important;
    opacity: 1;
    cursor: pointer
}

a.close:hover {
    color: #0d3548!important;
    opacity: 1;
    cursor: pointer
}

@media only screen and (max-width: 1360px) {
    #header.fixeddd #main-menu .item {
    padding: 28.5px 15px;
    font-size: 12px;
}

header #main-menu .item {
    padding: 29.5px 13px 29.5px;
    font-size: 12px;
    line-height: 21px;

}

#owl-topcars .onecar {
    margin: 40px 20px;
}

.teamper {
    margin: 30px 10px;
    max-width: 260px;
}


}



ul.lightgallery {
    margin-left: -2px!important;
    margin-right: -2px!important;
    list-style: none!important;
    padding: 0!important;
}

.lightgallery li {
    padding: 2px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 50%;
    float: left
}

.lightgallery li a {
    display: block;
    width: 100%;
    padding-bottom: 65%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

ul.lightgallery li::before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: rgba(0, 86, 117, 0.87);
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    cursor: pointer;
    -webkit-transition: all .55s linear;
    -moz-transition: all .55s linear;
    transition: all .55s linear;
    opacity: 0;
    content: '';
    z-index: 2;
    transform: none
}

ul.lightgallery li::after {
    content: '';
    background: url('/template/images/s.svg') 50% 50%;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-size: 10px;
    top: 50%;
    left: 50%;
    position: absolute;
    font-size: 0;
    z-index: 3;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: .4s all ease;
    transition: .4s all ease;
    opacity: 0;
}

.lightgallery li a img {
    display: none;
}

ul.lightgallery li:hover::before {
    opacity: 1;
}

ul.lightgallery li:hover::after {
    opacity: .8;
    background-size: 25px;
}

.lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    color: white!important;
    letter-spacing: 0!important;
    text-transform: uppercase!important;
}

.direction {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    background: rgb(0, 131, 179);
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 8px 75px;
}

.direction h3 {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 10px;
    margin-top: 3px;
    font-weight: 700;
}

.direction input {
    border: none;
    padding: 10px;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
}

#mydestination {
    background: #004963;
    color: white;
    display: inline-block;
    padding: 5px 18px;
    border-radius: 40px;
    margin: 10px 10px 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

#map-holder {
    position: relative;
}

#kontakt img {
    width: 70px;
    margin-top: 50px;
}

#kontakt p {
    font-size: 15px;
    line-height: 23px;
    margin: 4px 0;
    color: #005778;
    font-weight: normal;
}

#kontakt a {
    color: inherit;
    font-weight: 600;
    font-family: inherit;
    font-size: 15px;
    color: #005675;
}

#kontakt small {
    display: block;
    font-size: 10px;
    margin-top: -6px;
    opacity: 0.5;
}

#news .but.onw {
    font-weight: 600;
    padding: 6px 20px;
    font-size: 12px;
    margin: 0!important;
    }

table {
    width: 100%;
    color: #ffffff;
    border: 0px solid transparent;
    border-spacing: 0;
    background: #056b90;
    border-radius: 3px;
    overflow: hidden;
}

td, th {
    padding: 12px;
}

th {
    background: #005675;
    font-family: 'Open sans' , sans-serif;
    line-height: 13px;
    padding: 20px;
}

td span, td {
    font-size: 16px;
}

address {
    margin: 10px 0;
    padding: 25px;
    font-size: 14px;
    background: #f3f6f7;
    color: #005675;
    display: inline-block;
    max-width: 90%;
    border-radius: 3px;
}

table p {
    margin: 0;
    line-height: 22px;
}

table tr:nth-child(even) td {
    background: #0a759c;
}


#article-cont address a {
    font-size: 14px;
}

.sharebtn {
    position: sticky;
    top: 80px;
    margin-top: 60px;
    margin-bottom: 30px;
}

.sharebtn a {
    display: block;
    width: 100%;
    text-align: center;
    opacity: 1;
    transition: all 400ms;
    margin-bottom: 30px;
    transform: scale(.9);
}

.sharebtn a img {
    display: inline-block;
    width: 30px;
}

.sharebtn a span {
    display: block;
    width: 100%;
    text-align: center;
    color: #1a2d4f;
    max-width: 70px;
    font-size: 10px;
    line-height: 15px;
    margin: 0 auto;
}

.sidebg {
    background: #f3f6f7;
}

body.voucher_detail #formr {
    background: transparent;
    min-height: 800px
}

#voucherlist a {
    display: block;
    background: rgba(232, 238, 240, 0.5);
    text-align: center;
    margin: 10px;
    margin-top: 0;
}

#voucherlist a h3 {
    display: block;
    float: left;
    font-size: 22px;
    width: 90%;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 26px;
    font-weight: 600;
    margin: 20px 5%;
}

#voucherlist a span {
    background: #005675;
    color: white;
    padding: 6px 23px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    border-radius: 30px;
    font-weight: bold;
}

#voucherlist .vimg {
    position: relative;
    overflow: hidden;
}

#voucherlist .vimg::before {
    content: '';
    width: 400px;
    height: 300px;
    background: rgba(8, 86, 114, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms 200ms
}

#voucherlist a:hover .vimg::before {
    opacity: 1;
    transition: all 400ms
}

#voucherlist a .vimg::after {
    content: '';
    width: 60px;
    height: 60px;
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE2IDE2IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxNiAxNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIxMjhweCIgaGVpZ2h0PSIxMjhweCI+CjxnPgoJPGc+CgkJPHBvbHlnb24gcG9pbnRzPSIxMCwzIDEwLDMuODMzIDE1LDggMTAsMTIuMTY3IDEwLDEzIDE2LDggICAiIGZpbGw9IiNGRkZGRkYiLz4KCQk8cGF0aCBkPSJNMTQsOEw4LDN2My4wODJDNC40NjEsNi40MDEsMS42OTMsNy43NjgsMCwxMmMyLjQ3OS0yLjA2NCw0Ljk1Ny0yLjc2Niw4LTIuMzgzVjEzTDE0LDh6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
    background-size: 60px 60px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
     transition: all 200ms
}

#voucherlist a:hover .vimg::after {
     opacity: 0.6;
     transition: all 400ms 200ms
}

body.voucher_detail h1 {
    margin-top: 10px;
    font-weight: 700;
    margin-right: 20%;
}

#formr .vimgd {
        width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 30px auto 0;
}

#formr {
    margin-right: 0;
    position: sticky;
    display: block;
    margin: 5%;
    margin-top: 60px;
    top: 0;
    background: rgba(232, 238, 240, 0.5);
    text-align: center;
}

#formr h2 {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
    margin-right: 30px;
    margin-left: 30px;
}

#formr .pricev {
    background: #005675;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: bold;
}

#voucher-d {
    position: relative;
    width: 180px;
    margin: 10px auto;
    min-height: 220px;
}

.voucher_item_prices input {
    background: whitesmoke;
    border: none;
    font-size: 50px;
    text-align: center;
    padding: 10px;
    margin: 0;
    color: rgb(0, 84, 115);
    font-weight: 700;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%,0%);
    cursor: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    -moz-appearance: textfield;
}

.input-number-increment {
    position: absolute;
    top: 90px;
    left: 50%;
    background: rgba(26,45,79,.24);
    color: rgba(26,45,79,.45);
    width: 70px;
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-number-decrement {
    position: absolute;
    top: 90px;
    left: 50%;
    background: rgba(26,45,79,.24);
    color: rgba(26,45,79,.45);
    width: 70px;
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    transform: translateX(-73px);
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#voucher_button {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(0, 84, 115);
    border: 0 solid rgb(0, 84, 115);
    font-size: 18px;
    text-transform: uppercase;
    padding: 9px 27px;
    border-radius: 4px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 400ms;
     cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
}

#voucher-or {
        margin-top: 70px;
}

.desktop-hidden {
    display: none
}

.mobile-hidden {
    display: block;
}

 /* Icon 1 */

#mainhead #nav-icon {
    width: 28px;
    height: 35px;
    position: relative;
    margin: 28px 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    cursor: pointer;
    z-index: 99999;
}

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

#mainhead.ww #nav-icon span {
    background: #005473;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2) {
  top: 10px;
}

#nav-icon span:nth-child(3) {
  top: 20px;
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.menu--opener {
    position: relative;
    float: right;
}

.menu-opener {
    position: absolute;
    top: 0px;
    right: 0;
}

#mainhead.ww #nav-icon {
    width: 28px;
    height: 26px;
    position: relative;
    margin: 13px 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    cursor: pointer;
    z-index: 99999;
}

#search .content {
    margin: 20px;
    margin-left: 0;
    margin-bottom: 0
}

#search p {
    font-size: 14px;
    line-height: 21px;
    color: #0d5672;
    font-weight: normal;
}

#search  .but.onw {
    font-weight: 600;
    padding: 4px 16px;
    margin-top: 0;
    font-size: 14px;}


/**
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

@media only screen and (max-width:1300px) {
    .ww #main-menu li a, #main-menu li a {
    padding: 17px 18px;
}

footer ul li a {
    font-size: 11px;
}

}

@media only screen and (max-width:1000px) {

    .col-md-12 {
        width: 100%
    }

 #mainhead   #main-menu {
    display: block;
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    z-index: 33;
    width: 300px;
    text-align: center;
    margin: 0;
    padding-top: 40px;
    padding-bottom: 150px;
    height: 100vh;
    overflow-y: scroll;
    margin-right: -300px;
    transition: all 500ms;
}

#mainhead.ww #main-menu {
    top: 50px
}

#main-menu .sub-menu li a {
    text-transform: none;
    text-align: left;
    font-size: 15px;
    display: block;
    white-space: nowrap;
    padding: 7px 25px;
    margin: 0;
    line-height: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

#main-menu .sub-menu li:last-child a {
    margin-bottom: 10px
}

#main-menu li {
    display: block;
    position: relative;
}

header #main-menu .item {
    padding: 10px 13px 10px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    color: #005675;
}

.ww #main-menu li a, #main-menu li a {
    padding: 10px 13px 10px;
}

.ww .sub-menu {
    top: 0;
}

.sub-menu {
    position: relative;
    margin: 0;
    padding: 0;
    min-width: 100%;
    top: unset;
    margin-left: 0;
    left: unset;
    visibility: visible;
    z-index: 10;
    opacity: 1;
    transition: opacity linear .15s;
}

#main-menu .sub-menu li a {
    background: rgb(255, 255, 255);
    color: #005675;
    text-align: center;
    font-weight: 500;
}

#mainhead .col-md-3 {
    width: 30%;
}

.col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
    width: 100%;
    display: block;
    text-align: center
}

#main-menu ul li a:hover {
    background: rgb(255, 255, 255);
}

.ww #main-menu li a:hover, .ww #main-menu li.active a {
    color: #085572;
}
.ww #main-menu li a:hover, .ww #main-menu li.active a {
    color: #085572;
    background: white;
}

#instafeed .col-md-2 {
    width: 33.333%;
    float: left;
}

#searchmodal h2 {
    text-align: center
}

.modal-body p {
    text-align: center
}

#lang {
    right: 65px;
}

.sear {
    right: 120px
}

.desktop-hidden {
    display: block
}

.mobile-hidden {
    display: none;
}

#articles .blog-im {
    position: relative;
    overflow: hidden;
    max-width: 100%!important;
}

#news .col-md-6 {
    width: 50%;
    float: left
}

#news h3 {
    text-align: left;
}


#footsecond a {
    float: none
}

.map img {
    width: 100%;
    max-width: 50%;
    transform: translate(0,40px);
}

#socialfoot {
    position: relative;
    bottom: 0;
    left: 0;
    transform: translateX(0%);
    display: inline-block;
    text-align: center;
    width: 100%;
}

}

@media only screen and (max-width: 600px) {
    #mainhead .col-md-3 {
    width: 50%;
}

.popuptext {
    padding: 15px 10px;
}

.popuptext p {
    font-size: 12px;
    line-height: 18px;
    padding: 0;
}

.popuptext h2 {
    font-size: 20px;
    line-height: 23px;
    margin: 15px;
    margin-top: 38px;
}

#feedback {
    display: none
}

#leftlogo .img {
    background: url(/template/images/logo-w-w.svg) 50% 50% no-repeat;
    background-size: 170px;
    transition: all 600ms;
}

footer ul li a {
    font-size: 14px;
}

.spec {
    position: absolute;
    right: 0;
    display: -moz-inline-stack;
    display: block;
    top: 81px;
    display: inline;
    margin: 0;
    transition: all 800ms
}

.spec li {
    display: block;
    margin: 0;
    padding: 0;
    float: left;
}



.spec li a {
    background: #0086b6;
    color: white;
    padding: 8px 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 0;
    padding-left: 0;
    position: relative;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: all 300ms;
    display: -moz-inline-stack;
    display: inline-block;
    font-size: 0;
    display: block;
    width: 60px;
    height: 50px;
    padding: 0;
    margin: 0 2px;
}

.spec li a img {
    width: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.ww .spec {
    top: 51px;
}

#breakto span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)skew(0deg);
    color: rgba(255, 255, 255, 0.5803921568627451);
    font-size: 20px;
    line-height: 27px;
    font-weight: 100;
}
article {
    padding: 40px 0px 40px 0;
}
#news .col-md-6 {
    width: 100%;
    float: left;
}
#articles .one-article {
    margin-left: 0;
    transition: all 400ms;
}
#news h3 {
    text-align: center;
}
#articles .one-article {
    margin: 0 15px;
    margin-left: 15px;
    transition: all 400ms;
}
.map img {
    width: 100%;
    max-width: 80%;
    transform: translate(0,40px);
}

#wea {
    display: none;
}

.hero-heading {
    position: absolute;
    bottom: 30px;
    text-align: left;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    left: 5%;
    z-index: 20;
}

.hero-heading span {
    font-size: 30px;
    line-height: 37px;
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}
.wrapper-60 {
    padding: 10px 25px;
    min-height: 1px;
    display: block;
}

#onas {
    margin-top: -80px;
}
p {
    margin-left: 15px;
    margin-right: 15px;
}

header section.ww {
    background: rgb(0, 86, 117);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 50px;
    box-shadow: 0 0 65px rgba(0, 0, 0, 0.17);
}
header section.ww #leftlogo .img {
    transform: translate(-50%,-50%);
    background: url('/template/images/logo-w-w.svg') 50% 50% no-repeat;
    background-size: 150px;
    transition: all 600ms;
}
.ww .sear {
    background-color: white!important;
}
.ww #lang a {
    color: #085370!important;
    background: white!important;
}
#mainhead.ww #nav-icon span {
    background: #ffffff;
}
#slide .heading h1 {
    position: absolute;
    bottom: 0;
    color: white;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    z-index: 9;
    font-size: 30px;
    line-height: 34px;
    margin-left: 15px;
    margin-right: 15px;
}
.sharebtn a {
    display: block;
    width: 25%;
    float: left;
    text-align: center;
    opacity: 1;
    transition: all 400ms;
    margin-bottom: -8px;
    transform: scale(.9);
}
.sharebtn {
    position: relative;
    top: 0;
    margin-top: 20px;
    margin-bottom: 10px!important;
}
#slide .heading h1 small {
    display: block;
    font-size: 20px;
    text-transform: none;
    color: #75daf6;
    letter-spacing: 0;
    line-height: 27px;
    padding-left: 0px;
    font-weight: 500;
    font-style: italic;
    margin: 10px 0;
}
#voucherlist a span {
    background: #005675;
    color: white;
    padding: 3px 15px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 11px;
    border-radius: 30px;
    font-weight: bold;
}
body.voucher_detail h1 {
    margin-top: -40px;
    font-weight: 700;
    margin-right: 15px;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 0;
}
article ul {
    margin-left: 20px
}
article ul li {
    font-size: 16px;
    line-height: 28px;
    color: #0d5672;
    text-align: left;
}
address {
    text-align: left
}
.wrapper-60-0 {
    padding: 20px 0;
    min-height: 1px;
    display: block;
}
#cookies_content {
    width: calc(100% - 40px);
    padding: 20px;
    text-align: center;
}

#onas h1 {
        font-size: 38px;
    line-height: 45px;
}
	#bgvideo {display:none}
}

@media only screen and (max-width: 360px) {
    p {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 22px
}

#article-cont, #article-cont p,  #article-cont h1, #article-cont h2, #article-cont h3 {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
}
#slide .heading h1 small {
    text-align: left
}
article ul {
    margin-left: 0px;
}
#breakto span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)skew(0deg);
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    line-height: 27px;
    font-weight: 100;
    width: 80%;
}
.blog-content {
    margin-bottom: 30px
}
#news h3 {
    text-align: left;
    margin-left: 25px;
}



}
