@keyframes fadeToTop {
  from {
    opacity: 0;
    transform: translate(0, 70px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translatex(10px);
    -moz-transform: translatex(10px);
    -o-transform: translatex(10px);
    transform: translatex(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}
@keyframes width60 {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-family: "Montserrat", sans-serif;
}

::-moz-focus-inner {
  border: 0;
}

a,
a:hover,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
  outline: 0 !important;
}

header {
  background-color: white !important;
  max-width: 1920px;
  margin: 0 auto;
  position: fixed;
  left: 0;
  right: 0;
  padding: 25px 0;
  z-index: 10;
  border-bottom: 1px solid #d8dde6;
}
header::before {
  content: '';
  background-image: url("../images/header_square.png?v=1");
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  width: 140px;
  height: 115px;
  z-index: -1;
  top: 0;
}
header .navbar-nav {
  position: relative;
}
header .navbar {
  position: relative;
  padding: 0 15px;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}
header .navbar .collapse {
  max-width: 1110px;
  justify-content: space-around;
}
header .navbar.bg-light {
  background-color: transparent !important;
}
header .navbar.navbar-light .navbar-nav .nav-item {
  padding: 0;
}
header .navbar.navbar-light .navbar-nav .nav-item .nav-link {
  color: #a5a9b9;
  font-size: 16px;
  padding: 20px 15px;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
}
header .navbar.navbar-light .navbar-nav .nav-item .nav-link::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: #d8dde6;
  position: absolute;
  right: 0;
  top: 24px;
}
header .navbar.navbar-light .navbar-nav .nav-item .nav-link:focus, header .navbar.navbar-light .navbar-nav .nav-item .nav-link:active, header .navbar.navbar-light .navbar-nav .nav-item .nav-link:visited {
  color: #a5a9b9;
}
header .navbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
  color: #262626;
}
header .navbar.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: #262626;
}
header .navbar.navbar-light .navbar-nav .nav-item:last-child a::before {
  display: none;
}
header .list-inline {
  margin: 0;
  border: 1px solid #ebeef3;
  padding: 10px 15px;
  margin-left: 20px;
}
header .list-inline .list-inline-item {
  font-size: 16px;
  padding: 0 5px;
  position: relative;
}
header .list-inline .list-inline-item:first-child::before {
  content: '/';
  font-size: 16px;
  color: #e4e6ee;
  position: absolute;
  right: -10px;
}
header .list-inline .list-inline-item a {
  color: #a5a9b9;
  transition: all 0.3s;
}
header .list-inline .list-inline-item a:focus, header .list-inline .list-inline-item a:active, header .list-inline .list-inline-item a:visited {
  color: #a5a9b9;
}
header .list-inline .list-inline-item a:hover {
  color: #262626;
}
header .list-inline .list-inline-item.active a {
  color: #262626;
}
header p {
  position: relative;
  color: #262626;
  padding-left: 60px;
  text-decoration: underline;
  text-transform: uppercase;
  margin: 0 0 0 40px;
}
header p img {
  position: absolute;
  left: 0;
}
header .phone {
  color: #262626;
  position: relative;
  background-color: white;
}
header .phone::before {
  content: '';
  background-image: url("../images/phone_more.png");
  background-repeat: no-repeat;
  position: absolute;
  right: -35px;
  top: -12px;
  width: 45px;
  height: 45px;
  z-index: -1;
}

.sub_title {
  color: #262626;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}
.sub_title span {
  position: relative;
  padding-right: 80px;
  opacity: 0;
}
.sub_title span::before {
  content: '';
  width: 0px;
  height: 1px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #262626;
}
.sub_title.white {
  color: white;
}
.sub_title.white span::before {
  background-color: white;
}
.sub_title.aos-animate span {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-delay: 0.75s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.sub_title.aos-animate span::before {
  animation-name: width60;
  animation-duration: 1.7s;
  animation-delay: 0.75s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.title {
  font-size: 60px;
  color: #262626;
  margin: 10px 0 20px 0;
  font-weight: 800;
  text-transform: uppercase;
}
.title.white {
  color: white;
}

.btn_default {
  font-size: 16px;
  color: white;
  font-weight: bold;
  transition: all 0.3s;
  text-transform: uppercase;
  border: 2px solid white;
  padding: 15px 30px;
  display: inline-block;
  background-color: rgba(61, 125, 180, 0.3);
}
.btn_default img {
  position: relative;
  right: -10px;
  transition: all 0.3s;
  display: inline-block;
}
.btn_default:focus, .btn_default:visited, .btn_default:active {
  color: white;
}
.btn_default:hover {
  background-color: #3d7db4;
  color: white;
}
.btn_default:hover img {
  right: -20px;
}
.btn_default.blue {
  background-color: #3d7db4;
}
.btn_default.blue:hover {
  background-color: #fcc355;
}

.button {
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s;
  color: white;
  outline: none;
  box-shadow: none;
  border: 3px solid white;
  padding: 10px 15px;
  display: inline-block;
  transition: all 0.3s;
  font-size: 14px;
  background-color: #08415c;
  border: 3px solid transparent;
}
.button:focus, .button:visited, .button:active {
  background-color: #08415c;
  border: 3px solid transparent;
  color: white;
  outline: none;
  box-shadow: none;
}
.button:hover {
  border-color: #08415c;
  background-color: transparent;
  color: #08415c;
}

.txt {
  font-size: 20px;
  color: #818494;
  margin-bottom: 20px;
}

.link {
  font-size: 16px;
  color: #262626;
  border-bottom: 2px solid #3d7db4;
  font-weight: 400;
  transition: all 0.3s;
  text-transform: uppercase;
  display: inline-block;
  font-family: "Playfair Display", serif;
}
.link img {
  position: relative;
  right: -10px;
  transition: all 0.3s;
  display: inline-block;
}
.link:hover {
  border-color: #fcc355;
}
.link:hover img {
  right: -20px;
}

.regular_padding {
  padding: 120px 0;
}

.slick-initialized .slick-slide {
  outline: 0 !important;
}

.slider_wrap {
  position: relative;
  max-height: 1080px;
  margin: 0 auto;
  max-width: 1920px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/slider_background.png");
}
.slider_wrap .slider {
  padding: 180px 0;
  position: relative;
  margin-bottom: 0;
}
.slider_wrap .slider::before {
  content: '';
  position: absolute;
  background-image: url("../images/apartmani.png");
  background-repeat: no-repeat;
  left: -200px;
  bottom: 0;
  width: 783px;
  height: 783px;
  opacity: 0;
}
.slider_wrap .slider.aos-animate::before {
  animation-name: fadeIn;
  animation-duration: 1.3s;
  animation-delay: 0.75s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.slider_wrap .slider .slide {
  background-repeat: no-repeat;
  background-position: center;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-filter: grayscale(100%);
  border: 3px solid white;
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.slider_wrap .slider .slide::after {
  content: '';
  position: absolute;
  background-image: url("../images/slide_overlay.png");
  background-repeat: no-repeat;
  background-position: left;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider_wrap .slider .slide .slide_text {
  position: relative;
  max-width: 600px;
  padding-left: 100px;
  z-index: 2;
  opacity: 0;
  transition: all 1s;
}
.slider_wrap .slider .slide .slide_text .sub_title {
  opacity: 0;
}
.slider_wrap .slider .slide .slide_text h3 {
  color: white;
  font-size: 36px;
  margin: 0 0 20px 0;
  font-weight: 400;
  display: inline-block;
  text-transform: uppercase;
  opacity: 0;
}
.slider_wrap .slider .slide .slide_text h3 b {
  font-weight: 900;
  display: block;
  font-size: 60px;
  opacity: 0;
}
.slider_wrap .slider .slide .slide_text p {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  opacity: 0;
}
.slider_wrap .slider .slide .slide_text .btn_default {
  opacity: 0;
}
.slider_wrap .slider .slide.slick-current {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}
.slider_wrap .slider .slide.slick-current .slide_text {
  opacity: 1;
}
.slider_wrap .slider .slide.slick-active .slide_text .sub_title {
  animation: fadeToTop 0.75s ease 0.6s forwards;
}
.slider_wrap .slider .slide.slick-active .slide_text .sub_title span {
  animation-name: fadeIn;
  animation-duration: 1.3s;
  animation-delay: 0.75s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.slider_wrap .slider .slide.slick-active .slide_text .sub_title span::before {
  animation-name: width60;
  animation-duration: 1.7s;
  animation-delay: 0.75s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.slider_wrap .slider .slide.slick-active .slide_text h3 {
  animation: fadeToTop 0.75s ease 0.8s forwards;
}
.slider_wrap .slider .slide.slick-active .slide_text h3 b {
  animation: fadeToTop 0.75s ease 1s forwards;
}
.slider_wrap .slider .slide.slick-active .slide_text img {
  animation: fadeToTop 0.75s ease 1.2s forwards;
}
.slider_wrap .slider .slide.slick-active .slide_text p {
  animation: fadeToTop 0.75s ease 1.4s forwards;
}
.slider_wrap .slider .slide.slick-active .slide_text .btn_default {
  animation: fadeToTop 0.75s ease 1.6s forwards;
}
.slider_wrap .slider .slide.slick-active .list-inline {
  animation: fadeIn 0.75s ease 1.8s forwards;
}
.slider_wrap .slider .slick-prev, .slider_wrap .slider .slick-next {
  background-position: center;
  background-repeat: no-repeat;
  top: auto;
  width: 50px;
  height: 50px;
  bottom: 20px;
  background-color: #ffffff;
  margin: 0 auto;
  bottom: 50px;
  z-index: 5;
  border: 1px solid #ebeef5;
}
.slider_wrap .slider .slick-prev:hover, .slider_wrap .slider .slick-next:hover {
  background-color: #ebeef5;
}
.slider_wrap .slider .slick-prev {
  left: -50px;
  right: 0;
}
.slider_wrap .slider .slick-next {
  left: 0;
  right: -50px;
}
.slider_wrap .slider .slick-next:before {
  content: '\f054';
  font-family: 'Font Awesome\ 5 Free';
  color: #262626;
  font-weight: 900;
}
.slider_wrap .slider .slick-prev:before {
  content: '\f053';
  font-family: 'Font Awesome\ 5 Free';
  color: #262626;
  font-weight: 900;
}
.slider_wrap .slider .slick-list {
  margin-right: -550px !important;
  padding-right: 400px !important;
  padding-left: 0 !important;
}
.slider_wrap .list-inline {
  position: absolute;
  z-index: 2;
  right: -190px;
  margin: auto;
  height: 44px;
  padding: 10px 15px;
  background-color: white;
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  opacity: 0;
}
.slider_wrap .list-inline .list-inline-item {
  padding: 0 15px;
}
.slider_wrap .list-inline .list-inline-item a {
  color: #262626;
  font-size: 16px;
  transition: all 0.3s;
  font-weight: bold;
}
.slider_wrap .list-inline .list-inline-item a:hover {
  color: #fcc355;
}
.slider_wrap .list-inline .list-inline-item a i {
  margin-right: 15px;
  color: #fcc355;
}
.slider_wrap .scroll_down {
  position: absolute;
  bottom: 100px;
  right: -90px;
}

.anchor {
  position: relative;
  top: -115px;
  visibility: hidden;
  z-index: -1;
}

.about {
  border-top: 1px solid #e3e5f0;
  position: relative;
}
.about::before {
  content: '';
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/about_background.png");
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 894px;
}
.about .title {
  position: relative;
}
.about .title::before {
  content: '';
  background-image: url("../images/beach.png");
  background-repeat: no-repeat;
  position: absolute;
  right: 30px;
  width: 166px;
  height: 166px;
  z-index: -1;
  top: -30px;
}
.about .about_text {
  border: 3px solid #fcc355;
  padding: 30px 60px 30px 180px;
  position: relative;
  background-color: white;
}
.about .about_text p {
  font-size: 20px;
  color: #818494;
  margin: 0;
}
.about .about_text h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  position: absolute;
  left: -50px;
  background-color: white;
  padding: 10px;
  top: 0;
  margin: auto;
  display: block;
  bottom: 0;
  height: 125px;
}
.about .about_text h3 b {
  font-size: 72px;
  color: #262626;
  display: block;
  font-weight: 800;
  font-family: "Playfair Display", serif;
}
.about h4 {
  color: #262626;
  font-size: 30px;
  margin: 30px 0;
  font-weight: 800;
}
.about ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #e3e5f0;
  padding-top: 60px;
}
.about ul li {
  color: #a1a1a1;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0px 10px 0 100px;
  position: relative;
  font-weight: 300;
  margin: 0;
  display: flex;
  align-items: center;
}
.about ul li img {
  position: absolute;
  left: 0;
  border: 3px solid white;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.video {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/video-background.jpg");
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.video .video_section {
  width: 100%;
  margin-left: 18%;
}
.video .video_square {
  position: relative;
  border: 5px solid white;
  border-left: none;
  border-right: none;
  display: flex;
  align-items: center;
  max-width: 1170px;
  margin-left: auto;
  margin-right: 0;
}
.video .video_square .video_text {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  left: -100px;
  max-height: 181px;
}
.video .video_square .video_text::before {
  content: '';
  width: 5px;
  height: 30px;
  background-color: white;
  position: absolute;
  top: -40px;
  left: 100px;
}
.video .video_square .video_text::after {
  content: '';
  width: 5px;
  height: 30px;
  background-color: white;
  position: absolute;
  bottom: -40px;
  left: 100px;
}
.video .video_square .video_text .btn_default img {
  display: inline-block;
}
.video .video_square img {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.rooms {
  padding: 120px 0 60px 0;
}
.rooms .room {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  margin: 20px 10px;
  position: relative;
  border: 3px solid white;
}
.rooms .room .picture {
  position: relative;
}
.rooms .room .picture::before {
  content: '';
  position: absolute;
  bottom: 0;
  background-image: url("../images/room_overlay.png");
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  height: 100%;
}
.rooms .room .room_title {
  position: absolute;
  margin-top: -90px;
  left: 15px;
  right: 15px;
}
.rooms .room .room_title h3 {
  color: white;
  font-size: 14px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 5px;
}
.rooms .room .room_title h4 {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}
.rooms .room .room_desc {
  background-color: white;
  padding: 15px 12px;
  position: relative;
}
.rooms .room .room_desc .img-fluid {
  margin: 0 -15px;
}
.rooms .room .room_desc .list-inline {
  margin: 0;
  text-align: center;
}
.rooms .room .room_desc .list-inline .list-inline-item {
  text-align: center;
  margin: 0 1px;
}
.rooms .room .room_desc .list-inline .list-inline-item b {
  background-color: #ebeef5;
  color: #08415c;
  font-size: 20px;
  font-weight: 900;
  padding: 10px 8px;
  border: 1px solid #d6dbe7;
  border-bottom: none;
  display: block;
}
.rooms .room .room_desc .list-inline .list-inline-item .icon {
  font-size: 13px;
  color: #262626;
  padding: 10px 5px;
  border: 1px solid #d6dbe7;
  display: block;
  text-transform: uppercase;
}
.rooms .room .room_desc .list-inline .list-inline-item .icon img {
  margin: 10px auto 0 auto;
  display: block;
}
.rooms .room .room_desc .links {
  list-style-type: none;
  padding: 0;
  position: relative;
  margin: -40px 0 20px 0;
}
.rooms .room .room_desc .links li {
  border: 1px solid #dbe2e7;
  border-radius: 5px;
  background-color: white;
  color: #08415c;
  font-size: 20px;
  padding: 10px 12px;
  font-family: "Playfair Display", serif;
  display: inline-block;
  font-weight: 600;
}
.rooms .room .room_desc .links li:last-child {
  background-color: #fcc355;
  color: white;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border: none;
  font-weight: 500;
}
.rooms .room .room_desc .links li img {
  display: inline-block;
}
.rooms .room:hover .links li:last-child {
  background-color: #3d7db4;
}
.rooms .col-lg-6 .btn_default,
.rooms .col-lg-6 .links {
  margin-top: 40px;
}
.rooms .title {
  margin-bottom: 0;
}
.rooms .link {
  margin-left: 25px;
}
.rooms.rooms_page .col-lg-3 {
  padding: 0 10px;
}
.rooms.rooms_page .room {
  margin: 40px 0 0 0;
}
.rooms.rooms_page form {
  display: inline-block;
}
.rooms.rooms_page label {
  font-size: 14px;
  color: #262626;
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: 5px;
  display: inline-block;
  font-weight: 800;
}
.rooms.rooms_page .form-group {
  margin-bottom: 0;
}
.rooms.rooms_page .form-control {
  background-color: white;
  color: #262626;
  padding: 0 10px;
  border: none;
  border: 1px solid #d8dde6;
  border-radius: 0;
  margin-bottom: 0;
  width: auto;
  margin-left: 25px;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  font-family: "Playfair Display", serif;
}
.rooms.rooms_page .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #08415c;
}
.rooms.rooms_page .text-right {
  margin-top: 60px;
}

.review {
  position: relative;
  padding: 80px 0 120px 0;
  overflow: hidden;
}
.review .abs-img {
  position: absolute;
  left: -75px;
  right: 0;
  z-index: -2;
  top: 80px;
}
.review .review_slider .review_slide {
  margin: 40px 15px 0 15px;
  position: relative;
  text-align: center;
}
.review .review_slider .review_slide img {
  display: inline-block;
  margin: 30px 0;
}
.review .review_slider .review_slide p {
  font-size: 24px;
  color: white;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.review .review_slider .review_slide h3 {
  font-size: 24px;
  font-weight: 300;
  color: white;
  margin: 0;
}
.review .review_slider .review_slide h3 b {
  color: white;
  font-weight: 800;
}
.review .slick-dots {
  margin-bottom: 0;
  bottom: -80px;
}
.review .slick-dots li.slick-active {
  border: 1px solid white;
  border-radius: 50%;
}
.review .slick-dots li.slick-active button::before {
  opacity: 1;
  color: white;
}
.review .slick-dots li button:before {
  color: white;
  width: 10px;
  height: 10px;
  right: 0;
  text-align: center;
  margin: 0 auto;
  font-size: 10px;
}

.sites {
  padding: 80px 0;
}
.sites .offset {
  margin-left: 16%;
  margin-right: 0;
  overflow: hidden;
}
.sites .offset img {
  margin: 40px 0;
  border: 4px solid white;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
}
.sites .offset .col-lg-3 {
  padding-left: 20px;
}

.reservation {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/reservation_background.jpg");
}
.reservation .reservation_text {
  position: relative;
}
.reservation .reservation_text .btn_default {
  position: absolute;
  right: 0;
  bottom: 0;
}
.reservation .reservation_text h3 {
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
}
.reservation .reservation_text h3 b {
  font-size: 60px;
  font-weight: 900;
  display: block;
}

footer .map {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  margin-bottom: 60px;
}
footer .map img {
  position: relative;
  top: 15px;
}
footer #googleMap {
  height: 430px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #e9e9ed;
}
footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer ul .nav-item {
  padding: 0;
  display: inline-block;
}
footer ul .nav-item .nav-link {
  color: #a5a9b9;
  font-size: 16px;
  padding: 20px 15px;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
}
footer ul .nav-item .nav-link::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: #d8dde6;
  position: absolute;
  right: 0;
  top: 24px;
}
footer ul .nav-item .nav-link:focus, footer ul .nav-item .nav-link:active, footer ul .nav-item .nav-link:visited {
  color: #a5a9b9;
}
footer ul .nav-item .nav-link:hover {
  color: #3f88c5;
}
footer ul .nav-item:last-child .nav-link::before {
  display: none;
}
footer ul .nav-item.active .nav-link {
  color: #3f88c5;
}
footer .col-lg-3 p {
  position: relative;
  color: #262626;
  padding-left: 60px;
  text-decoration: underline;
  text-transform: uppercase;
  margin: 30px 0 0 0;
  display: flex;
  align-items: center;
}
footer .col-lg-3 p img {
  position: absolute;
  left: 0;
}
footer .col-lg-3 a {
  position: relative;
  color: #262626;
  padding-left: 60px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 30px 0 0 0;
}
footer .col-lg-3 a img {
  position: absolute;
  left: 0;
}
footer .list-inline {
  display: inline-block;
  margin-top: 30px;
}
footer .list-inline .list-inline-item {
  color: #262626;
  font-size: 16px;
  transition: all 0.3s;
}
footer .list-inline .list-inline-item i {
  color: #fcc355;
  margin-right: 15px;
}
footer .list-inline .list-inline-item:hover {
  color: #fcc355;
}
footer .copyright {
  border-top: 1px solid #e9e9ea;
  padding: 40px 0;
  margin-top: 40px;
}
footer .copyright .list-inline {
  margin-top: 0px;
}
footer .copyright .list-inline .list-inline-item {
  color: #a5a9b9;
}
footer .copyright p {
  color: #989eaa;
  font-size: 16px;
  margin: 0;
}
footer .copyright p a {
  text-decoration: underline;
  transition: all 0.3s;
}
footer .copyright p a:hover {
  color: #fcc355;
}
footer #toTop {
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background-color: #f3f1f1;
  margin: 30px 0 0 15px;
  border: 1px solid transparent;
}
footer #toTop:hover {
  border-color: #fcc355;
}

/*gmpc*/
.gmpc_wrap {
  position: relative;
}

.gmpc_btn {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-position: center;
  background-size: cover;
}

.gmpc_btn span {
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 15px;
  border: 1px solid #eee;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 200px;
  width: 100%;
  transition: all .2s;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  color: #222;
}

.gmpc_btn:hover span {
  border-color: #40657b;
  background-color: #40657b;
  color: #fff;
}

.visible-sm {
  display: none;
}

.picture_header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 550px;
  position: relative;
  overflow: hidden;
}
.picture_header::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("../images/header_picture_overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  position: absolute;
}
.picture_header::after {
  content: '';
  width: 264px;
  background-image: url("../images/yellow_overlay.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.picture_header .picture_text {
  position: absolute;
  bottom: 50px;
  max-width: 1110px;
  margin: 0 auto;
  display: block;
  left: 0;
  right: 0;
}
.picture_header .picture_text h2 {
  font-size: 36px;
  color: white;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}
.picture_header .picture_text .page_title {
  padding-left: 100px;
  position: relative;
}
.picture_header .picture_text .page_title img {
  position: absolute;
  left: 0;
}
.picture_header .list-inline {
  padding: 15px;
  display: inline-block;
  border: 1px solid #40657b;
  margin: 15px 0 0 0;
}
.picture_header .list-inline .list-inline-item {
  padding: 0;
  margin: 0;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.picture_header .list-inline .list-inline-item a {
  color: #c9ccd6;
  font-weight: 300;
}
.picture_header .list-inline .list-inline-item span {
  display: inline-block;
  margin: 0 10px;
}

.mt_80 footer .map {
  margin-top: 80px;
}
.mt_80 .reservation {
  margin-top: 80px;
}

.mt_0 footer .map {
  margin-top: 0px;
}

.detail_page {
  padding-top: 120px;
}
.detail_page h3 {
  color: #11415e;
  font-size: 14px;
  margin: 0;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.detail_page h3 i {
  margin-right: 10px;
  color: #11415e;
  font-size: 16px;
}
.detail_page h4 {
  color: #2d2d2d;
  font-size: 36px;
  margin: 30px 0;
  font-weight: 500;
}
.detail_page h5 {
  color: #11415e;
  font-size: 40px;
  margin: 35px 0;
  font-weight: 500;
}
.detail_page h6 {
  font-size: 30px;
  color: #2d2d2d;
  margin: 40px 0;
  font-family: "Playfair Display", serif;
}
.detail_page .detail_slider .slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 370px;
}
.detail_page .detail_slider .slick-prev, .detail_page .detail_slider .slick-next {
  background-position: center;
  background-repeat: no-repeat;
  top: auto;
  width: 50px;
  height: 50px;
  bottom: 20px;
  background-color: #ffffff;
  margin: 0 auto;
  bottom: -25px;
  z-index: 5;
  border: 1px solid #ebeef5;
}
.detail_page .detail_slider .slick-prev:hover, .detail_page .detail_slider .slick-next:hover {
  background-color: #ebeef5;
}
.detail_page .detail_slider .slick-prev {
  left: -50px;
  right: 0;
}
.detail_page .detail_slider .slick-next {
  left: 0;
  right: -50px;
}
.detail_page .detail_slider .slick-next:before {
  content: '\f054';
  font-family: 'Font Awesome\ 5 Free';
  color: #262626;
  font-weight: 900;
}
.detail_page .detail_slider .slick-prev:before {
  content: '\f053';
  font-family: 'Font Awesome\ 5 Free';
  color: #262626;
  font-weight: 900;
}
.detail_page .txt {
  color: #878787;
}
.detail_page .col-lg-3 p {
  margin: 30px 0 50px 0;
  text-align: center;
  color: #08415c;
  font-size: 16px;
}
.detail_page .col-lg-3 p img {
  display: block;
  margin: 0 auto 10px auto;
}
.detail_page ul {
  padding: 0;
  margin: 0;
  column-count: 3;
  list-style-type: none;
}
.detail_page ul li {
  position: relative;
  padding-left: 35px;
  color: #878787;
  font-size: 16px;
  margin-bottom: 15px;
}
.detail_page ul li img {
  position: absolute;
  left: 0;
  margin: 0;
}
.detail_page form {
  margin-top: 120px;
}
.detail_page .form-control {
  background-color: white;
  color: #262626;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #08415c;
  border-radius: 0;
  margin-bottom: 20px;
}
.detail_page .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #fcc355;
}
.detail_page ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #262626;
}
.detail_page ::-moz-placeholder {
  /* Firefox 19+ */
  color: #262626;
}
.detail_page :-ms-input-placeholder {
  /* IE 10+ */
  color: #262626;
}
.detail_page :-moz-placeholder {
  /* Firefox 18- */
  color: #262626;
}
.detail_page .button {
  width: 100%;
  display: block;
}
.detail_page .room_cta {
  transition: all 0.3s;
  background-color: white;
  padding: 10px 10px 10px 120px;
  position: relative;
  margin-bottom: 20px;
}
.detail_page .room_cta p {
  color: #878787;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: left;
}
.detail_page .room_cta p b {
  font-size: 15px;
  color: #262626;
  margin-bottom: 10px;
  display: block;
}
.detail_page .room_cta img {
  position: absolute;
  left: 7px;
  top: 8px;
}
.detail_page .room_cta span {
  background-color: #fcc355;
  color: white;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border: none;
  font-weight: 500;
  padding: 5px 7px;
  display: inline-block;
  border-radius: 5px;
}
.detail_page .room_cta span img {
  display: inline-block;
  position: relative;
  left: auto;
  top: 0;
  margin-left: 10px;
}
.detail_page .room_cta:hover {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.detail_page .room_cta:hover span {
  background-color: #3d7db4;
}

#ui-datepicker-div.ui-datepicker {
  font-size: 16px;
  padding: 10px;
}
#ui-datepicker-div.ui-datepicker td {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
#ui-datepicker-div.ui-datepicker td .ui-state-default {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
}
#ui-datepicker-div.ui-datepicker td .ui-state-default:hover {
  background-color: #3d7db4 !important;
  border-radius: 50%;
  color: white;
}
#ui-datepicker-div.ui-datepicker td.ui-state-default.ui-state-highlight, #ui-datepicker-div.ui-datepicker td.ui-state-default.ui-state-active.active {
  color: white;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-title {
  font-size: 20px;
  font-weight: 300;
  color: #262626;
  text-align: center;
  margin-bottom: 10px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-title:hover, #ui-datepicker-div.ui-datepicker .ui-datepicker-title:focus, #ui-datepicker-div.ui-datepicker .ui-datepicker-title:visited, #ui-datepicker-div.ui-datepicker .ui-datepicker-title:active {
  background-color: transparent;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  display: inline-block;
  font-weight: 500;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-next,
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev {
  color: #3d7db4 !important;
  position: absolute;
  cursor: pointer;
  font-size: 14px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-next {
  right: 5px;
  top: 15px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-prev {
  left: 5px;
  top: 15px;
}

.ui-datepicker {
  font-size: 18px;
  background-color: white;
  border: 1px solid #e1e2eb;
  position: relative;
}
.ui-datepicker td {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.ui-datepicker td .ui-state-default {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
}
.ui-datepicker td .ui-state-default:hover {
  background-color: #3d7db4 !important;
  border-radius: 50%;
  color: white;
}
.ui-datepicker td.ui-state-default.ui-state-highlight, .ui-datepicker td.ui-state-default.ui-state-active.active {
  color: white;
}
.ui-datepicker table tr td span {
  width: 54px;
}
.ui-datepicker table tr td span:hover {
  background-color: #3d7db4 !important;
  border-radius: 50%;
  color: white;
}
.ui-datepicker .ui-state-active {
  background-color: #3d7db4 !important;
  background-image: none;
  border-radius: 50%;
  text-shadow: none !important;
  color: white;
}
.ui-datepicker .ui-state-active:hover, .ui-datepicker .ui-state-active:focus, .ui-datepicker .ui-state-active:visited, .ui-datepicker .ui-state-active:active {
  background-color: #3d7db4 !important;
  background-image: none;
  text-shadow: none !important;
}
.ui-datepicker table {
  margin: 0 auto;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  color: #262626;
  position: absolute;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-next {
  right: 20px;
  top: 35px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 20px;
  top: 35px;
}

.ui-datepicker-title {
  font-size: 36px;
  font-weight: 300;
  color: #262626;
  text-align: center;
  margin-bottom: 20px;
}
.ui-datepicker-title:hover, .ui-datepicker-title:focus, .ui-datepicker-title:visited, .ui-datepicker-title:active {
  background-color: transparent;
}
.ui-datepicker-title .ui-datepicker-year {
  display: block;
}

.ui-datepicker-trigger {
  display: none;
}

.menu_section {
  padding-top: 120px;
}
.menu_section .menu {
  padding-top: 40px;
  margin-top: 10px;
  border-top: 1px solid #e3e6e8;
}
.menu_section .menu h3 {
  padding-left: 60px;
  position: relative;
  text-decoration: underline;
  color: #262626;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 600;
}
.menu_section .menu h3 img {
  position: absolute;
  left: 0;
}
.menu_section .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.menu_section .menu ul li {
  margin-bottom: 20px;
  position: relative;
}
.menu_section .menu ul li::before {
  content: '';
  border: 1px dashed #a2a2a2;
  width: 100%;
  position: absolute;
  right: 0px;
  left: 0;
  top: 18px;
}
.menu_section .menu ul li span {
  display: inline-block;
  font-size: 17px;
  color: #262626;
  font-family: "Playfair Display", serif;
  position: relative;
  background-color: white;
  text-transform: uppercase;
  font-weight: 500;
}
.menu_section .menu ul li b {
  position: absolute;
  right: 0;
  font-weight: 600;
  top: 0;
  color: #262626;
  background-color: white;
}
.menu_section .menu ul li small {
  font-size: 13px;
  color: #777777;
  display: block;
}

.kontakt {
  padding-top: 120px;
}
.kontakt .form-control {
  background-color: white;
  padding: 10px;
  height: 45px;
  border: 1px solid #ececec;
  margin-bottom: 20px;
  border-radius: 0;
  color: #262626;
}
.kontakt .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #3d7db4;
  background-color: white;
}
.kontakt textarea.form-control {
  height: 150px;
  resize: none;
}
.kontakt .captcha img {
  margin-bottom: 20px;
}
.kontakt .title {
  margin-bottom: 40px;
}

/*************
MEDIA
*************/
@media only screen and (max-width: 1919px) {
  .video .video_section {
    margin-left: 0;
  }
  .video .video_section .col-lg-2 img {
    display: none;
  }
  .video .video_square {
    min-height: 264px;
  }
  .video .video_square img {
    max-width: 800px;
  }

  .picture_header::after {
    display: none;
  }
}
@media only screen and (max-width: 1499px) {
  header p {
    display: none;
  }
  header::before {
    display: none;
  }

  .slider_wrap .slider .slick-list {
    margin-right: 0px !important;
    padding-right: 0 !important;
  }
  .slider_wrap .list-inline {
    right: -230px;
  }
  .slider_wrap .scroll_down {
    right: 15px;
  }
}
/******
1199
******/
@media only screen and (max-width: 1199px) {
  header .navbar.navbar-light .navbar-nav .nav-item .nav-link {
    font-size: 14px;
    padding: 20px 10px;
  }
  header .phone::before {
    display: none;
  }

  .video .video_square img {
    max-width: 600px;
  }

  .rooms .room img {
    width: 100%;
  }
  .rooms .room .picture::before {
    background-size: cover;
  }
  .rooms .room .room_desc .list-inline {
    text-align: center;
  }
  .rooms .room .room_desc .list-inline .list-inline-item .icon img {
    width: auto;
  }
  .rooms .room .room_desc .links {
    text-align: center;
  }
  .rooms .room .room_desc .links li img {
    width: auto;
  }

  .sites .offset {
    margin-left: 15px;
  }

  .reservation .reservation_text h3 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .reservation .reservation_text h3 b {
    font-size: 48px;
  }
  .reservation .reservation_text .btn_default {
    position: relative;
  }

  footer .col-lg-3 p, footer .col-lg-3 a {
    padding-left: 45px;
    font-size: 13px;
  }

  .rooms.rooms_page .text-right {
    margin-top: 10px;
  }
  .rooms.rooms_page form {
    display: block;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .rooms.rooms_page .col-lg-3 {
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
  }

  .sub_title span {
    opacity: 1;
  }
  .sub_title span::before {
    width: 60px;
  }

  .detail_page .room_cta p b {
    font-size: 14px;
  }
  .detail_page h5 {
    margin: 45px 0 0 0;
  }
}
/******
991
******/
@media only screen and (max-width: 991px) {
  .visible-sm {
    display: block;
  }

  .hidden-sm {
    display: none;
  }

  header {
    padding: 10px 0;
  }
  header .navbar-light .navbar-toggler {
    border: none;
    position: absolute;
    right: 0;
    top: 15px;
    padding: 0;
  }
  header .navbar-light .navbar-toggler:focus {
    outline: none;
  }
  header .navbar-nav {
    margin-top: 10px;
  }
  header .navbar.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 10px 0;
    font-size: 16px;
  }
  header .navbar.navbar-light .navbar-nav .nav-item .nav-link::before {
    display: none;
  }
  header .phone {
    margin: 10px 0 20px 0;
    display: inline-block;
  }
  header .list-inline {
    max-width: 125px;
    margin-left: 0;
  }

  .slider_wrap .slider::before {
    display: none;
  }
  .slider_wrap .list-inline {
    right: -211px;
  }

  .about .title {
    margin-bottom: 30px;
    display: inline-block;
  }
  .about .title::before {
    right: -80px;
  }

  .video .video_square {
    display: block;
    border: none;
    min-height: auto;
    max-width: 100%;
  }
  .video .video_square img {
    display: none;
  }
  .video .video_square .video_text {
    position: relative;
    left: auto;
    text-align: center;
    max-height: auto;
  }
  .video .video_square .video_text::before, .video .video_square .video_text::after {
    display: none;
  }
  .video .video_section .col-lg-2 img {
    display: block;
    margin: 0 auto 20px auto;
  }

  .rooms {
    padding: 80px 0 30px 0;
  }
  .rooms .col-lg-6 .btn_default, .rooms .rooms .col-lg-6 .links {
    margin: 20px 0;
  }

  .review {
    padding: 40px 0 80px 0;
  }
  .review .review_slider .review_slide p, .review .review_slider .review_slide h3, .review .review_slider .review_slide h3 b {
    color: #262626;
  }
  .review .slick-dots li.slick-active {
    border: 1px solid #262626;
  }
  .review .slick-dots li.slick-active button::before {
    color: #262626;
  }
  .review .slick-dots li button:before {
    color: #262626;
  }
  .review .abs-img {
    display: none;
  }

  .sites {
    padding: 40px 0;
  }
  .sites .offset {
    margin-right: 15px;
  }
  .sites .offset img {
    width: 100%;
    margin: 20px 0;
  }

  .regular_padding {
    padding: 80px 0;
  }

  footer {
    text-align: center;
  }
  footer .map {
    margin: 60px 0;
  }
  footer .text-right {
    text-align: center !important;
  }
  footer #toTop {
    display: block;
    margin: 30px auto 0 auto;
  }
  footer .col-lg-3 p {
    display: none;
  }
  footer .col-lg-3 a {
    font-size: 16px;
    padding-left: 0px;
    justify-content: center;
  }
  footer .col-lg-3 a img {
    position: relative;
    margin-right: 15px;
  }
  footer .copyright p {
    margin-top: 15px;
  }

  .about::before {
    display: none;
  }
  .about ul {
    display: block;
  }
  .about ul li {
    min-height: 90px;
    margin-bottom: 10px;
  }
  .about ul li:last-child {
    margin-bottom: 0;
  }

  .picture_header .text-right {
    text-align: left !important;
    margin-top: 30px;
  }

  .rooms.rooms_page .col-lg-3 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .rooms.rooms_page .text-right {
    text-align: left !important;
  }
  .rooms.rooms_page .link {
    margin-left: 0;
    margin-right: 25px;
  }

  .detail_page {
    padding-top: 80px;
  }
  .detail_page .text-right {
    text-align: left !important;
  }
  .detail_page h4 {
    margin: 20px 0;
  }
  .detail_page h5 {
    margin: 0 0 20px 0;
  }
  .detail_page form {
    margin-top: 40px;
  }
  .detail_page .col-lg-3 p {
    margin: 0 0 20px 0;
  }
  .detail_page .detail_slider {
    margin-bottom: 30px;
  }
  .detail_page ul {
    column-count: 2;
  }

  .txt {
    font-size: 16px;
  }

  .menu_section {
    padding-top: 80px;
  }
  .menu_section .col-lg-4 {
    margin-bottom: 40px;
  }
  .menu_section .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .restoraunt .text-right {
    text-align: left !important;
    margin-top: 40px;
  }
}
/******
767
******/
@media only screen and (max-width: 767px) {
  .slider_wrap .slider {
    padding: 150px 0 100px 0;
  }
  .slider_wrap .slider .slide {
    height: 600px;
  }
  .slider_wrap .slider .slide .slide_text {
    max-width: 400px;
    padding-left: 15px;
  }
  .slider_wrap .slider .slide .slide_text h3 {
    font-sizE: 28px;
  }
  .slider_wrap .slider .slide .slide_text h3 b {
    font-size: 36px;
  }
  .slider_wrap .slider .slide .slide_text p {
    font-size: 16px;
  }
  .slider_wrap .list-inline {
    right: 0;
    left: 0;
    bottom: 0;
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    padding: 10px;
  }
  .slider_wrap .list-inline .list-inline-item {
    padding: 0;
  }
  .slider_wrap .list-inline .list-inline-item a i {
    margin-right: 5px;
  }
  .slider_wrap .scroll_down {
    display: none;
  }

  .slick-slider {
    margin-bottom: 0;
  }

  .about .about_text {
    padding: 30px 15px;
  }
  .about .about_text h3 {
    position: relative;
    left: 0;
    padding: 0;
    margin-bottom: 15px;
  }
  .about h4 {
    font-size: 24px;
  }

  .title {
    font-size: 40px;
  }

  .rooms .btn_default {
    display: block;
    max-width: 215px;
  }

  footer ul {
    margin-top: 20px;
  }
  footer ul .nav-item {
    display: block;
  }
  footer ul .nav-item .nav-link {
    padding: 10px;
  }
  footer ul .nav-item .nav-link::before {
    display: none;
  }
  footer .copyright .list-inline .list-inline-item:first-child {
    margin-bottom: 10px;
  }

  .reservation .reservation_text h3 {
    font-size: 30px;
  }
  .reservation .reservation_text h3 b {
    font-size: 40px;
  }

  .review .review_slider .review_slide p {
    font-size: 18px;
  }

  .picture_header .picture_text .page_title {
    padding-left: 0;
  }
  .picture_header .picture_text .page_title img {
    display: none;
  }

  .rooms.rooms_page .col-lg-3 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .detail_page h4 {
    font-size: 30px;
  }
}
/******
479
******/

/*# sourceMappingURL=style.css.map */
