body {
  font-family: 'PT Sans', sans-serif;
}
.container {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}
.header {
  background: url("../img/bg1.png") no-repeat center center;
  background-size: cover;
  padding: 20px 0;
  color: #fff;
  position: relative;
}
.header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  margin-right: 25px;
  flex-shrink: 0;
}
.header__logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
.header__body {
  flex: 1;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.header__address {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}
.header__phones {
  display: flex;
  align-items: center;
}
.header__phone:not(:last-child):after {
  content: '/';
  margin: 0 10px;
  font-weight: bold;
  font-size: 19px;
}
.header__phone a {
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__phone a:hover {
  color: #ff9e06;
}
.header__button a {
  background: #ff9e06;
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  padding: 0 15px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 0px 0px rgba(131,80,0,0.9);
  transition: all 0.3s ease;
}
.header__button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 0px rgba(131,80,0,0.9);
}
.header__bottom {
  display: flex;
}
.header__social {
  margin-right: 25px;
  flex-shrink: 0;
}
.header__social img {
  display: block;
  max-width: 100%;
  height: auto;
}
.header__nav {
  border-top: 1px solid #ff9e06;
  padding-top: 20px;
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__link:not(:last-child) {
  margin-right: 35px;
}
.header__link a {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 19px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.header__link a:hover {
  color: #ff9e06;
}
.header__hamburger {
  height: 24px;
  margin-left: auto;
  display: none;
}
.header__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9;
  display: none;
}
.header-mobile {
  padding: 15px;
  background: #4b262d;
}
.header-mobile__nav {
  text-align: center;
}
.header-mobile__nav .header__link:not(:last-child) {
  margin-right: 0;
}
.header-mobile__phones {
  display: none;
  margin-top: 15px;
}
.header-mobile__address {
  display: none;
  margin-top: 15px;
  text-align: center;
}
.hamburger {
  padding: 0;
  height: 24px;
}
.hamburger:focus {
  outline: none;
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
  background-color: #fff;
}
.hero {
  padding: 290px 0 70px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  min-height: 670px;
  position: relative;
}
.hero__title {
  font-style: italic;
  font-weight: bold;
  font-size: 60px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 35px #ff9e06, 0 0 35px #ff9e06, 0 0 35px #ff9e06, 0 0 35px #ff9e06, 0 0 35px #ff9e06;
  margin-bottom: 30px;
}
.hero__text {
  color: #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  text-shadow: 0 0 30px #4b262d, 0 0 30px #4b262d, 0 0 30px #4b262d, 0 0 30px #4b262d, 0 0 30px #4b262d, 0 0 30px #4b262d, 0 0 30px #4b262d, 0 0 30px #4b262d;
  margin-bottom: 30px;
}
.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__gallery {
  margin-right: 40px;
}
.hero__images {
  display: flex;
  padding: 4px;
  background: #fff;
}
.hero__image {
  width: 170px;
  height: 120px;
}
.hero__image:not(:last-child) {
  margin-right: 4px;
}
.hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__hidden {
  display: none;
}
.hero__button a {
  background: #ff9e06;
  color: #fff;
  font-size: 30px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 60px;
  border-radius: 30px;
  box-shadow: 0 6px 0 rgba(131,80,0,0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero__button a:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgba(131,80,0,0.9);
}
.pluses {
  background: linear-gradient(to bottom, #dfdcdc, #f6f4f4, #ebe9e9);
  padding: 50px 0;
  box-shadow: 0 15px 30px rgba(10,26,76,0.4);
  z-index: 2;
  position: relative;
}
.pluses__flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.pluses__col {
  padding: 0 15px 30px;
  width: 50%;
}
.pluses-item__flex {
  display: flex;
}
.pluses-item__icon {
  margin-right: 20px;
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}
.pluses-item__icon img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.pluses-item__title {
  text-transform: uppercase;
  color: #0a1a4c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.1;
}
.pluses-item__text {
  font-size: 16px;
  line-height: 1;
  color: #000;
}
.options {
  z-index: 1;
  position: relative;
  background: #fff;
  padding: 50px 0 100px;
}
.options2 {
  z-index: 1;
  position: relative;
  background: #fff;
  padding: 50px 0 100px;
  border-top:1px #000 solid;
}
.options__title {
  text-transform: uppercase;
  color: #ff9e06;
  font-size: 48px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.1;
}
.options__flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -60px;
}
.options__col {
  width: 33.33333333%;
  padding: 0 15px 60px;
}
.options-item:hover .options-item__image img {
  transform: scale(1.2);
}
.options-item__image {
  margin-bottom: 20px;
  padding-top: calc((240 / 313) * 100%);
  position: relative;
}
.options-item__image a {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  bottom: 0;
  display: block;
}
.options-item__image a img {
  transition: transform 3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}


.options-item:hover .rooms-item-slider-item img {
  transform: scale(1.2);
}
.rooms-left
{
 width:50%;
 float:left;
}
.rooms-item-slider-item
{
width:33%;
float:left;

margin-bottom:15px;
}
.rooms-item-c-info
{
margin-top:30px;
}

.rooms-item-slider-item-image
{
width:90%;
display:block;
height:auto;
min-height:120px;
}
.options-item__image2 {

  width:100%;
  padding-right:20px;
  position: relative;
}
.options-item__image2 a {


  display: block;
}
.options-item__image2 a img {
  transition: transform 3s ease;
  width: 100%;

  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.options-item__image3 {
    width: 100%;
    max-width:450px;
    float:left;
    padding-right: 20px;
    position: relative;
}
.options-item__image3 img
{
 width:100%;
}
.options-item__title {
  margin-bottom: 15px;
  line-height: 1.1;
}
.options-item__title a {
  text-transform: uppercase;
  color: #0a1a4c;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.options-item__title a:hover {
  color: #ff9e06;
}
.options-item__text {
  font-size: 16px;
  line-height: 1;
  color: #000;
  margin-bottom: 20px;
}
.options-item__button a {
  background: #ff9e06;
  text-transform: uppercase;
  color: #000;
  font-size: 15px;
  padding: 0 30px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 0px 0px rgba(131,80,0,0.9);
  transition: all 0.3s ease;
}
.options-item__button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 0px rgba(131,80,0,0.9);
}
.rooms-right
{
 float:right;
 width:50%;

}
.footer {
  background: #fff;
  padding: 20px 0;
}
.footer__flex {
  display: flex;
  align-items: center;
}
.footer__analytics {
  margin-right: 20px;
}
.footer__analytics img {
  display: block;
}
.footer__copyright {
  font-size: 13px;
  line-height: 1.4;
  font-family: 'Arial', sans-serif;
  color: #5f5f5f;
}
.footer__copyright a {
  color: #5f5f5f;
  text-decoration: underline;
}
.footer__copyright a:hover {
  text-decoration: none;
}
@media (max-width: 1199.98px) {
  .header__link a {
    font-size: 16px;
  }
  .header__phone a {
    font-size: 16px;
  }
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 991.98px) {
  .header__logo {
    width: 120px;
  }
  .header__link:not(:last-child) {
    margin-right: 25px;
  }
  .header__link a {
    font-size: 14px;
  }
  .header__address {
    font-size: 16px;
  }
  .header__phones {
    flex-direction: column;
  }
  .header__phone:not(:last-child):after {
    display: none;
  }
  .hero__bottom {
    flex-direction: column;
  }
  .hero__gallery {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .header__body .header__address {
    display: none;
  }
  .header-mobile__address {
    display: block;
  }
  .header__nav {
    display: none;
  }
  .header__button a {
    font-size: 14px;
  }
  .header__bottom {
    align-items: center;
  }
  .header__hamburger {
    display: block;
  }
  .hero {
    padding: 150px 0 70px;
    min-height: auto;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__text {
    font-size: 18px;
  }
  .hero__image {
    width: 100%;
  }
  .pluses__col {
    width: 100%;
  }
  .options__title {
    font-size: 36px;
  }
  .options__col {
    width: 50%;
  }
  .rooms-left {
    width: 100%;
    clear:both;
}
  .rooms-right {
    width: 100%;
    clear:both;
    text-align: center;
}
}
@media (max-width: 479.98px) {
  .header__body .header__phones {
    display: none;
  }
  .header-mobile__phones {
    display: block;
  }
  .header__logo {
    width: 100px;
  }
  .header__button {
    margin-left: auto;
  }
  .header__social {
    width: 35px;
    margin-left: auto;
  }
  .header__hamburger {
    margin-left: 0;
  }
  .hero__title {
    line-height: 1.2;
    margin-bottom: 30px;
  }
  .hero__button a {
    font-size: 24px;
  }
  .options__col {
    width: 100%;
  }
}
.h2
{
	font-size:24px;
	text-align:center;
	margin-bottom:20px;
}
.window-pop-up-content .header__button
{
 margin-top:30px;
}
.options__item options-item2
{
 float:left;
}

