@charset "UTF-8";
/*------------------------------------------------------------------
[Table of contents]
1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  About Section
6.  Services Section
7.  Testimonial Section
8.  Blog Section
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/
/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
  height: 100%;
  font-family: "Cabin", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
html a,
body a {
  text-decoration: unset;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "Lora", serif;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 28px;
  margin: 25px 0 15px 0;
  font-weight: bold;
  color: #1f7ead;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "Cabin", sans-serif;
  color: #6b6b6b;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #fff;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/
.section-title {
  text-align: center;
  margin-bottom: 22px;
}
.section-title span {
  font-size: 14px;
  color: #1f7ead;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title h2 {
  font-size: 36px;
  color: #19191a;
  line-height: 58px;
  margin-top: 10px;
}

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

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.spad-2 {
  padding-top: 50px;
  padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */
.primary-btn {
  display: inline-block;
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
}
.primary-btn:after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #1f7ead;
  content: "";
}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #ffffff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
.spacial-controls {
  position: fixed;
  width: 111px;
  height: 91px;
  top: 0;
  right: 0;
  z-index: 999;
}

.spacial-controls .search-switch {
  display: block;
  height: 100%;
  padding-top: 30px;
  background: #323232;
  text-align: center;
  cursor: pointer;
}

.search-model {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  z-index: 99999;
}

.search-model-form {
  padding: 0 15px;
}

.search-model-form input {
  width: 500px;
  font-size: 40px;
  border: none;
  border-bottom: 2px solid #333;
  background: none;
  color: #999;
}

.search-close-switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  line-height: 28px;
  top: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*---------------------
  Header
-----------------------*/
.header-section.header-normal .menu-item {
  -webkit-box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
  box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
}

.top-nav {
  border-bottom: 1px solid #e5e5e5;
}
.top-nav .tn-left li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  color: #19191a;
  font-weight: 500;
  padding: 14px 0 12px;
  margin-right: 64px;
  position: relative;
}
.top-nav .tn-left li:after {
  position: absolute;
  right: -32px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  content: "";
}
.top-nav .tn-left li:last-child {
  margin-right: 0;
}
.top-nav .tn-left li:last-child:after {
  display: none;
}
.top-nav .tn-left li i {
  color: #1f7ead;
  margin-right: 10px;
  font-size: 24px;
}
.top-nav .tn-right {
  text-align: right;
  padding: 7px 0;
}
.top-nav .tn-right a {
  font-size: 24px;
  color: #1f7ead;
}
.top-nav .tn-right .top-social {
  display: inline-block;
  margin-right: 35px;
  padding: 13px 0;
}
.top-nav .tn-right .top-social a {
  display: inline-block;
  font-size: 16px;
  color: #19191a;
  margin-left: 15px;
}
.top-nav .tn-right .bk-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px 6px 10px;
  margin: 0;
  background: #1f7ead;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.top-nav .tn-right .language-option {
  display: inline-block;
  margin-left: 30px;
  cursor: pointer;
  padding: 13px 0px 11px;
  position: relative;
}
.top-nav .tn-right .language-option:hover .flag-dropdown {
  top: 40px;
  opacity: 1;
  visibility: visible;
}
.top-nav .tn-right .language-option img {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  margin-right: 10px;
}
.top-nav .tn-right .language-option span {
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
}
.top-nav .tn-right .language-option .flag-dropdown {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100px;
  background: #ffffff;
  display: block;
  padding: 10px 15px;
  -webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}
.top-nav .tn-right .language-option .flag-dropdown ul li {
  list-style: none;
  text-align: left;
}
.top-nav .tn-right .language-option .flag-dropdown ul li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #19191a;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.top-nav .tn-right .language-option .flag-dropdown ul li a:hover {
  color: #1f7ead;
}

.profile-menu-wrap {
  padding: 0;
  display: inline-block;
}
.profile-menu-wrap ul {
  list-style: none;
  display: inline-block;
}
.profile-menu-wrap ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  z-index: 10;
  text-align: left;
  cursor: pointer;
}
.profile-menu-wrap ul li i {
  font-size: 20px;
  margin: 0 5px 0 0;
  color: #1f7ead;
}
.profile-menu-wrap ul li .dropdown {
  padding: 10px;
  position: absolute;
  left: 0;
  top: 70px;
  width: 180px;
  background: #ffffff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 9px 15px #d1d1d1;
  box-shadow: 0px 9px 15px #d1d1d1;
}
.profile-menu-wrap ul li .dropdown li {
  display: block;
}
.profile-menu-wrap ul li .dropdown li a {
  display: block;
  font-size: 16px;
  padding: 5px 0;
  color: #272727;
}
.profile-menu-wrap ul li .dropdown li a i {
  font-size: 12px;
  margin: 0 5px 0 0;
}
.profile-menu-wrap ul li .dropdown li a:hover {
  color: #1f7ead;
}
.profile-menu-wrap ul li:hover .dropdown {
  top: 20px;
  opacity: 1;
  visibility: visible;
}
.profile-menu-wrap .profile-name {
  cursor: pointer;
  font-size: 20px;
  padding: 0 10px 0 20px;
}
.profile-menu-wrap .profile-name-mobile {
  cursor: pointer;
  font-size: 20px;
  padding: 0 20px;
  display: none;
}
.profile-menu-wrap a {
  padding: 0 0 0 10px;
}
.profile-menu-wrap a.bk-btn {
  padding: 6px 10px 6px 10px;
}

.menu-item {
  position: relative;
  z-index: 9;
}
.menu-item .logo {
  padding: 10px 0;
}
.menu-item .logo a {
  display: inline-block;
  color: #1f7ead;
  font-family: "Cabin", sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 900;
  margin: 0;
}
.menu-item .logo a:hover {
  color: #1f7ead;
  text-decoration: underline;
}
.menu-item .logo .profile-menu-wrap {
  display: none;
}
.menu-item .nav-menu {
  text-align: right;
}
.menu-item .nav-menu .mainmenu {
  display: inline-block;
}
.menu-item .nav-menu .mainmenu li {
  list-style: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.menu-item .nav-menu .mainmenu li.active a:after {
  opacity: 1;
}
.menu-item .nav-menu .mainmenu li:hover > a:after {
  opacity: 1;
}
.menu-item .nav-menu .mainmenu li:hover .dropdown {
  top: 77px;
  opacity: 1;
  visibility: visible;
}
.menu-item .nav-menu .mainmenu li a {
  font-size: 16px;
  color: #19191a;
  margin-left: 42px;
  font-weight: 500;
  display: inline-block;
  padding: 27px 0;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-item .nav-menu .mainmenu li a:after {
  position: absolute;
  left: 0;
  top: 52px;
  width: 100%;
  height: 2px;
  background: #1f7ead;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-item .nav-menu .mainmenu li .dropdown {
  position: absolute;
  left: 0;
  top: 97px;
  width: auto;
  background: #ffffff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
  box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
}
.menu-item .nav-menu .mainmenu li .dropdown li {
  list-style: none;
  display: block;
}
.menu-item .nav-menu .mainmenu li .dropdown li a {
  font-size: 16px;
  color: #19191a;
  display: block;
  min-width: 200px;
  text-align: left;
  padding: 8px 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 10px;
}
.menu-item .nav-menu .mainmenu li .dropdown li a:hover {
  color: #1f7ead;
}
.menu-item .nav-menu .mainmenu li .dropdown li a:after {
  display: none;
}
.menu-item .nav-menu .nav-right {
  display: inline-block;
  margin-left: 43px;
  padding: 27px 0px;
}
.menu-item .nav-menu .nav-right i {
  font-size: 16px;
  color: #19191a;
  cursor: pointer;
}

.canvas-open {
  display: none;
}

.offcanvas-menu-wrapper {
  display: none;
}

/*---------------------
  Hero
-----------------------*/
.hero-section {
  position: relative;
  padding: 60px 0 100px 0;
}
.hero-section .container {
  position: relative;
  z-index: 5;
}

.hero-text {
  margin-top: 145px;
  background-color: rgba(0, 0, 0, 0.5333333333);
  padding: 25px;
}
.hero-text h1 {
  font-size: 80px;
  line-height: 90px;
  color: #ffffff;
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 18px;
  color: #ffffff;
  line-height: 28px;
  margin-bottom: 35px;
}

.booking .booking-form {
  background: #ffffff;
  padding: 20px 40px 60px 40px;
  border-radius: 4px;
}
.booking .booking-form h3 {
  font-size: 42px;
}
.booking .booking-form form .form-select {
  margin: 0;
}
.booking .booking-form form .form-label {
  margin: 40px 0 20px 0;
}
.booking .booking-form form .form-check a {
  color: #1f7ead;
  font-weight: bold;
}
.booking .booking-form form .form-check a:hover {
  text-decoration: underline;
}
.booking .booking-form form .form-group {
  margin: 20px 0;
}
.booking .booking-form form .form-group .form-check-label .form-check-input.error-data {
  border: 1px solid #ff0000 !important;
}
.booking .booking-form form .check-date {
  position: relative;
  margin-bottom: 15px;
}
.booking .booking-form form .check-date label {
  font-size: 14px;
  color: #707079;
  display: block;
  margin-bottom: 10px;
}
.booking .booking-form form .check-date input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 20px;
}
.booking .booking-form form .check-date i {
  color: #1f7ead;
  position: absolute;
  right: 18px;
  bottom: 17px;
}
.booking .booking-form form .select-option {
  margin-bottom: 15px;
}
.booking .booking-form form .select-option.pavilion-body {
  display: block;
}
.booking .booking-form form .select-option label {
  font-size: 18px;
  color: #707079;
  display: block;
  margin-bottom: 10px;
}
.booking .booking-form form .select-option .nice-select {
  border-radius: 2px;
  border: 1px solid #ebebeb;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 20px;
  width: 100%;
  float: none;
}
.booking .booking-form form .select-option .nice-select:after {
  border-bottom: 2px solid #1f7ead;
  border-right: 2px solid #1f7ead;
  height: 10px;
  margin-top: 0;
  right: 20px;
  width: 10px;
  top: 36%;
}
.booking .booking-form form .select-option .nice-select span {
  font-size: 14px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
}
.booking .booking-form form .select-option .nice-select .list {
  margin-top: 0;
  width: 100%;
}
.booking .booking-form form button {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #1f7ead;
  border-radius: 2px;
  color: #1f7ead;
  font-weight: 500;
  background: transparent;
  width: 150px;
  height: 46px;
  margin: 60px auto 40px;
}
.booking .booking-form form button:hover {
  color: #ffffff;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: #1f7ead;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker {
  width: 100% !important;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td {
  width: 100px;
  height: 50px;
  background: #cccccc;
  border: 3px solid #ffffff;
  margin: 2px;
  position: relative;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td:hover {
  cursor: pointer;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td.busy-day {
  background: #ff8989;
  opacity: 0.7;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td.free-day {
  background: #66ff89;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td.partial-busy-day {
  background: #ffd466;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td.busy-day-old {
  opacity: 0.35;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td.ui-datepicker-current-day {
  box-shadow: inset 0 0 0 3px #006e1a;
  color: #000 !important;
  font-weight: bold;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td span {
  background: unset;
  border: unset;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td span.ui-state-default {
  color: #000000 !important;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td span.day-label {
  position: absolute;
  bottom: 0;
  font-size: 12px;
}
.booking .booking-form form .calender-container .calendar .ui-datepicker-calendar td a {
  background: unset;
  border: unset;
}
.booking .booking-form form .time-select-wrap {
  display: none;
}
.booking .booking-form form .time-select-wrap .time-blocks {
  display: flex;
  flex-wrap: wrap;
}
.booking .booking-form form .time-select-wrap .time-blocks .time-block {
  width: 23%;
  margin: 10px 1%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  background: #f9f9f9;
  transition: 0.2s;
  text-align: center;
}
.booking .booking-form form .time-select-wrap .time-blocks .time-block.time-block-selected {
  background: #66ff89;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero-slider.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  text-align: center;
}
.hero-slider.owl-carousel .owl-dots button {
  height: 6px;
  width: 6px;
  background: #ffffff;
  opacity: 0.5;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.hero-slider.owl-carousel .owl-dots button.active {
  width: 30px;
  border-radius: 50px;
  opacity: 1;
}
.hero-slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .hs-item {
  height: 100%;
}

/*---------------------
  About US
-----------------------*/
.aboutus-section {
  padding: 100px 0;
}

.about-text {
  text-align: center;
  padding: 0 35px;
}
.about-text p {
  color: #595960;
  font-weight: 500;
}
.about-text p.f-para {
  margin-bottom: 10px;
}
.about-text p.s-para {
  margin-bottom: 35px;
}
.about-text .about-btn {
  color: #19191a;
}

.about-pic img {
  min-width: 100%;
}

/*---------------------
  Service Section
-----------------------*/
.services-section {
  padding-bottom: 60px;
  border-top: 1px solid #e5e5e5;
}
.services-section .section-title {
  margin-bottom: 36px;
}

.service-item {
  text-align: center;
  padding: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.service-item i {
  display: inline-block;
  color: #1f7ead;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.service-item h4 {
  color: #19191a;
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.service-item p {
  color: #707079;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.service-item .service-item-ico {
  width: 100px;
  height: 100px;
  margin: 20px auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.service-item .service-item-ico.service-lake {
  background-image: url("../img/services/lake-ico.png");
}
.service-item .service-item-ico.service-palat {
  background-image: url("../img/services/palat-ico.png");
}
.service-item .service-item-ico.service-stadion {
  background-image: url("../img/services/stadion-ico.png");
}
.service-item .service-item-ico.service-parc {
  background-image: url("../img/services/parc-ico.png");
}
.service-item:hover {
  background: #1f7ead;
}
.service-item:hover i {
  color: #ffffff;
}
.service-item:hover h4 {
  color: #ffffff;
}
.service-item:hover p {
  color: #ffffff;
}
.service-item:hover .service-item-ico.service-lake {
  background-image: url("../img/services/lake-ico-hover.png");
}
.service-item:hover .service-item-ico.service-palat {
  background-image: url("../img/services/palat-ico-hover.png");
}
.service-item:hover .service-item-ico.service-stadion {
  background-image: url("../img/services/stadion-ico-hover.png");
}
.service-item:hover .service-item-ico.service-parc {
  background-image: url("../img/services/parc-ico-hover.png");
}

/*------------------------
  Home Page Room Section 
-------------------------*/
.hp-room-items {
  margin-left: -10px;
  margin-right: -10px;
  overflow: hidden;
  text-align: center;
}
.hp-room-items .row {
  justify-content: space-around;
}
.hp-room-items .hp-room-item {
  width: 100%;
  margin: 20px auto 20px auto;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.hp-room-items .hp-room-item:hover .hr-text {
  top: 10%;
}
.hp-room-items .hp-room-item:hover .hr-text h2 {
  margin-bottom: 30px;
}
.hp-room-items .hp-room-item .hr-text {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 65%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4666666667);
}
.hp-room-items .hp-room-item .hr-text h3 {
  color: #ffffff;
  margin: 50px 0 80px 0;
  font-size: 40px;
  text-align: center;
}
.hp-room-items .hp-room-item .hr-text h2 {
  color: #1f7ead;
  font-weight: 700;
  margin-bottom: 50px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.hp-room-items .hp-room-item .hr-text h2 span {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}
.hp-room-items .hp-room-item .hr-text table {
  margin: 0 auto 30px auto;
  width: 100%;
}
.hp-room-items .hp-room-item .hr-text table tbody tr td {
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
}
.hp-room-items .hp-room-item .hr-text table tbody tr td.r-o {
  text-align: left;
  width: 150px;
}
.hp-room-items .hp-room-item .hr-text .primary-btn {
  font-size: 18px;
}
.hp-room-items .hp-room-item .hr-text .primary-btn:after {
  background: #ffffff;
}
.hp-room-items .hp-room-item .hr-text .primary-btn:hover:after {
  background: #1f7ead;
}

/*---------------------
  Testimonial Slider
-----------------------*/
.testimonial-section {
  background: #f9f9f9;
  padding: 50px 0 0 0;
}
.testimonial-section a {
  font-size: 18px;
  color: #1f7ead;
}
.testimonial-section a:hover {
  color: #1f7ead;
  text-decoration: underline;
}
.testimonial-section .section-title {
  margin-bottom: 30px;
}
.testimonial-section .section-title h2 {
  font-size: 28px;
  margin: 25px 0 15px 0;
  font-weight: bold;
  color: #1f7ead;
}

.testimonial-slider.owl-carousel .owl-item img, .testimonial-wrapper.owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
}
.testimonial-slider.owl-carousel .owl-nav button, .testimonial-wrapper.owl-carousel .owl-nav button {
  height: 44px;
  width: 44px;
  border: 1px solid #ebebeb;
  font-size: 24px;
  color: #707079;
  background: #ffffff;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: -190px;
  top: 50%;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.testimonial-slider.owl-carousel .owl-nav button:hover, .testimonial-wrapper.owl-carousel .owl-nav button:hover {
  border-color: #19191a;
  color: #19191a;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-next, .testimonial-wrapper.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -190px;
}
.testimonial-slider .ts-item, .testimonial-wrapper .ts-item {
  text-align: center;
}
.testimonial-slider .ts-item p, .testimonial-wrapper .ts-item p {
  font-size: 20px;
  color: #707079;
  line-height: 30px;
  margin-bottom: 50px;
}
.testimonial-slider .ts-item .ti-author, .testimonial-wrapper .ts-item .ti-author {
  margin-bottom: 60px;
}
.testimonial-slider .ts-item .ti-author .rating, .testimonial-wrapper .ts-item .ti-author .rating {
  display: inline-block;
}
.testimonial-slider .ts-item .ti-author .rating i, .testimonial-wrapper .ts-item .ti-author .rating i {
  color: #f5b917;
  font-size: 16px;
}
.testimonial-slider .ts-item .ti-author h5, .testimonial-wrapper .ts-item .ti-author h5 {
  font-size: 20px;
  color: #19191a;
  display: inline-block;
}

/*---------------------
  Blog and Event
-----------------------*/
.blog-section {
  padding-bottom: 70px;
}
.blog-section .section-title {
  margin-bottom: 36px;
}

/*---------------------
  Footer Section
-----------------------*/
.footer-section {
  background: #222736;
}
.footer-section .footer-text {
  padding: 80px 0 30px;
}
.footer-section .footer-text .ft-about {
  margin-bottom: 30px;
}
.footer-section .footer-text .ft-about .logo {
  margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .logo a {
  color: #1f7ead;
  display: inline-block;
}
.footer-section .footer-text .ft-about p {
  color: #aaaab3;
  margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .fa-social a {
  display: inline-block;
  height: 40px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  border: 1px solid #5A4D48;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 7px;
}
.footer-section .footer-text .ft-about .fa-social a:hover {
  background: #1f7ead;
  border-color: #1f7ead;
}
.footer-section .footer-text .ft-contact {
  margin-bottom: 30px;
}
.footer-section .footer-text .ft-contact h6 {
  font-size: 14px;
  color: #1f7ead;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: "Cabin", sans-serif;
  margin-bottom: 20px;
}
.footer-section .footer-text .ft-contact ul li {
  font-size: 16px;
  color: #aaaab3;
  line-height: 32px;
  list-style: none;
}
.footer-section .footer-text .ft-newslatter h6 {
  font-size: 14px;
  color: #1f7ead;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: "Cabin", sans-serif;
  margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter p {
  color: #aaaab3;
  margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter .fn-form {
  position: relative;
}
.footer-section .footer-text .ft-newslatter .fn-form input {
  width: 100%;
  height: 50px;
  border-radius: 2px;
  background: #393D4A;
  border: none;
  padding-left: 20px;
  font-size: 16px;
  color: #707079;
}
.footer-section .footer-text .ft-newslatter .fn-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  background: #1f7ead;
  color: #ffffff;
  padding: 0 16px;
  height: 50px;
  border: none;
  border-radius: 0 2px 2px 0;
}
.footer-section .copyright-option {
  background: rgba(16, 20, 31, 0.2);
  padding: 20px 0;
}
.footer-section .copyright-option ul li {
  list-style: none;
  display: inline-block;
  margin-right: 34px;
}
.footer-section .copyright-option ul li:last-child {
  margin-right: 0;
}
.footer-section .copyright-option ul li a {
  font-size: 16px;
  color: #aaaab3;
}
.footer-section .copyright-option .co-text {
  font-size: 16px;
  color: #707079;
  text-align: right;
}

/* --------------------------------- Other Pages Styles ----------------------------------- */
/*---------------------
  Page Header Section
-----------------------*/
.page-header {
  position: relative;
  padding: 100px 0 100px 0;
}
.page-header .container {
  position: relative;
  z-index: 5;
}
.page-header .container h1 {
  display: inline-block;
  font-size: 80px;
  line-height: 90px;
  color: #ffffff;
  margin-bottom: 16px;
  background-color: rgba(0, 0, 0, 0.4666666667);
  padding: 25px 50px;
  word-break: keep-all;
}
.page-header .page-header-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-position: bottom center;
}
.page-header .page-header-bg.parc {
  background-position: center center;
}
.page-header .page-header-bg.lake {
  background-position: center center;
}
.page-header .page-header-bg.stadion {
  background-position: top center;
}
.page-header .page-header-bg.testimonial-bg {
  background-position: top center;
}

/*---------------------
  Breadcrumb Section
-----------------------*/
.breadcrumb-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.breadcrumb-text {
  text-align: center;
}
.breadcrumb-text h2 {
  font-size: 44px;
  color: #19191a;
  margin-bottom: 12px;
}
.breadcrumb-text .bt-option a {
  display: inline-block;
  font-size: 18px;
  color: #19191a;
  margin-right: 20px;
  position: relative;
  font-weight: 500;
}
.breadcrumb-text .bt-option a:after {
  position: absolute;
  right: -13px;
  top: 1px;
  content: "\f105";
  font-size: 18px;
  font-family: "FontAwesome";
  color: #aaaab3;
}
.breadcrumb-text .bt-option span {
  display: inline-block;
  font-size: 18px;
  color: #aaaab3;
}

/*------------------------
  About Us Page Section
-------------------------*/
.aboutus-page-section {
  padding-top: 0;
  padding-bottom: 20px;
}

.about-page-text .ap-title {
  margin-bottom: 30px;
}
.about-page-text .ap-title h2 {
  font-size: 44px;
  color: #19191a;
  margin-bottom: 18px;
}
.about-page-text .ap-title p {
  font-size: 18px;
  color: #707079;
  line-height: 28px;
}
.about-page-text .ap-services li {
  list-style: none;
  font-size: 20px;
  color: #707079;
  line-height: 42px;
}
.about-page-text .ap-services li i {
  color: #1f7ead;
  margin-right: 5px;
}

.about-page-services .ap-service-item {
  position: relative;
  height: 420px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.about-page-services .ap-service-item .api-text {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  text-align: center;
}
.about-page-services .ap-service-item .api-text h3 {
  color: #ffffff;
}

/*---------------------
  Video Section
-----------------------*/
.video-section {
  height: 500px;
  padding-top: 140px;
}
.video-section .video-text {
  text-align: center;
}
.video-section .video-text h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 16px;
}
.video-section .video-text p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
}
.video-section .video-text .play-btn {
  display: inline-block;
}

/*---------------------
  Gallery Section
-----------------------*/
.gallery-section {
  padding-bottom: 80px;
}
.gallery-section .section-title {
  margin-bottom: 38px;
}

.gallery-item {
  position: relative;
  height: 279px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.gallery-item:hover:after {
  opacity: 1;
}
.gallery-item:hover .gi-text {
  opacity: 1;
}
.gallery-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 26, 0.3);
  content: "";
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.gallery-item.large-item {
  height: 576px;
}
.gallery-item .gi-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.gallery-item .gi-text h3 {
  color: #ffffff;
}

/*---------------------
  Room Section
-----------------------*/
.rooms-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.room-item {
  margin-bottom: 30px;
}
.room-item img {
  min-width: 100%;
}
.room-item .ri-text {
  border: 1px solid #ebebeb;
  border-top: none;
  padding: 24px 24px 30px 28px;
}
.room-item .ri-text h4 {
  color: #19191a;
  margin-bottom: 17px;
}
.room-item .ri-text h3 {
  color: #1f7ead;
  font-weight: 700;
  margin-bottom: 14px;
}
.room-item .ri-text h3 span {
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #19191a;
}
.room-item .ri-text table {
  margin-bottom: 18px;
}
.room-item .ri-text table tbody tr td {
  font-size: 16px;
  color: #707079;
  line-height: 36px;
}
.room-item .ri-text table tbody tr td.r-o {
  width: 125px;
}
.room-item .ri-text .primary-btn {
  color: #19191a;
}

.room-pagination {
  text-align: center;
  padding-top: 20px;
}
.room-pagination a {
  font-size: 16px;
  color: #707079;
  border: 1px solid #EFD4B9;
  border-radius: 2px;
  padding: 7px 13px 5px;
  margin-right: 7px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.room-pagination a:last-child {
  margin-right: 0;
}
.room-pagination a:hover {
  background: #1f7ead;
  color: #ffffff;
}

/*-----------------------
  Room Details Section
-------------------------*/
.room-details-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.room-details-item {
  margin-bottom: 50px;
}
.room-details-item img {
  margin-bottom: 40px;
}
.room-details-item .rd-text .rd-title {
  overflow: hidden;
  margin-bottom: 8px;
}
.room-details-item .rd-text .rd-title h3 {
  color: #19191a;
  float: left;
}
.room-details-item .rd-text .rd-title .rdt-right {
  float: right;
  text-align: right;
}
.room-details-item .rd-text .rd-title .rdt-right .rating {
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 10px;
}
.room-details-item .rd-text .rd-title .rdt-right .rating i {
  color: #f5b917;
}
.room-details-item .rd-text .rd-title .rdt-right a {
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  background: #1f7ead;
  padding: 14px 28px 13px;
}
.room-details-item .rd-text h2 {
  color: #1f7ead;
  font-weight: 700;
  margin-bottom: 25px;
}
.room-details-item .rd-text h2 span {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #19191a;
}
.room-details-item .rd-text table {
  margin-bottom: 32px;
}
.room-details-item .rd-text table tbody tr td {
  font-size: 16px;
  color: #19191a;
  line-height: 36px;
}
.room-details-item .rd-text table tbody tr td.r-o {
  width: 120px;
  color: #707079;
}
.room-details-item .rd-text p {
  color: #707079;
}
.room-details-item .rd-text p.f-para {
  margin-bottom: 22px;
}

.rd-reviews {
  padding-top: 55px;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 50px;
}
.rd-reviews h4 {
  color: #19191a;
  letter-spacing: 1px;
  margin-bottom: 45px;
}
.rd-reviews .review-item {
  margin-bottom: 32px;
}
.rd-reviews .review-item .ri-pic {
  float: left;
  margin-right: 30px;
}
.rd-reviews .review-item .ri-pic img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
.rd-reviews .review-item .ri-text {
  overflow: hidden;
  position: relative;
  padding-left: 30px;
}
.rd-reviews .review-item .ri-text:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e9e9e9;
  content: "";
}
.rd-reviews .review-item .ri-text span {
  font-size: 12px;
  color: #1f7ead;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.rd-reviews .review-item .ri-text .rating {
  position: absolute;
  right: 0;
  top: 0;
}
.rd-reviews .review-item .ri-text .rating i {
  color: #f5b917;
}
.rd-reviews .review-item .ri-text h5 {
  color: #19191a;
  margin-top: 4px;
  margin-bottom: 8px;
}
.rd-reviews .review-item .ri-text p {
  color: #707079;
  margin-bottom: 0;
}

.review-add h4 {
  color: #19191a;
  letter-spacing: 1px;
  margin-bottom: 45px;
}
.review-add .ra-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #aaaab3;
  padding-left: 20px;
  margin-bottom: 25px;
}
.review-add .ra-form input::-webkit-input-placeholder {
  color: #aaaab3;
}
.review-add .ra-form input::-moz-placeholder {
  color: #aaaab3;
}
.review-add .ra-form input:-ms-input-placeholder {
  color: #aaaab3;
}
.review-add .ra-form input::-ms-input-placeholder {
  color: #aaaab3;
}
.review-add .ra-form input::placeholder {
  color: #aaaab3;
}
.review-add .ra-form h5 {
  font-size: 20px;
  color: #19191a;
  margin-bottom: 24px;
  float: left;
  margin-right: 10px;
}
.review-add .ra-form .rating {
  padding-top: 3px;
  display: inline-block;
}
.review-add .ra-form .rating i {
  color: #f5b917;
  font-size: 16px;
}
.review-add .ra-form textarea {
  width: 100%;
  height: 132px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #aaaab3;
  padding-left: 20px;
  padding-top: 12px;
  margin-bottom: 24px;
  resize: none;
}
.review-add .ra-form textarea::-webkit-input-placeholder {
  color: #aaaab3;
}
.review-add .ra-form textarea::-moz-placeholder {
  color: #aaaab3;
}
.review-add .ra-form textarea:-ms-input-placeholder {
  color: #aaaab3;
}
.review-add .ra-form textarea::-ms-input-placeholder {
  color: #aaaab3;
}
.review-add .ra-form textarea::placeholder {
  color: #aaaab3;
}
.review-add .ra-form button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  background: #1f7ead;
  border: none;
  padding: 14px 34px 13px;
  display: inline-block;
}

.room-booking {
  padding: 0 30px 0 40px;
}
.room-booking h3 {
  color: #19191a;
  margin-bottom: 30px;
}
.room-booking form .check-date {
  position: relative;
  margin-bottom: 15px;
}
.room-booking form .check-date label {
  font-size: 14px;
  color: #707079;
  display: block;
  margin-bottom: 10px;
}
.room-booking form .check-date input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 20px;
}
.room-booking form .check-date i {
  color: #1f7ead;
  position: absolute;
  right: 18px;
  bottom: 17px;
}
.room-booking form .select-option {
  margin-bottom: 15px;
}
.room-booking form .select-option label {
  font-size: 14px;
  color: #707079;
  display: block;
  margin-bottom: 10px;
}
.room-booking form .select-option .nice-select {
  border-radius: 2px;
  border: 1px solid #ebebeb;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 20px;
  width: 100%;
  float: none;
}
.room-booking form .select-option .nice-select:after {
  border-bottom: 2px solid #1f7ead;
  border-right: 2px solid #1f7ead;
  height: 10px;
  margin-top: 0;
  right: 20px;
  width: 10px;
  top: 36%;
}
.room-booking form .select-option .nice-select span {
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
}
.room-booking form .select-option .nice-select .list {
  margin-top: 0;
  width: 100%;
}
.room-booking form button {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #1f7ead;
  border-radius: 2px;
  color: #1f7ead;
  font-weight: 500;
  background: transparent;
  width: 100%;
  height: 46px;
  margin-top: 30px;
}

/*---------------------
  Blog Section
-----------------------*/
.blog-section.blog-page {
  padding-top: 0;
  padding-bottom: 88px;
}

.blog-item {
  height: 450px;
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
}
.blog-item.small-size {
  height: 400px;
}
.blog-item .bi-text {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.blog-item .bi-text .b-tag {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #1f7ead;
  padding: 3px 10px;
  border-radius: 2px;
}
.blog-item .bi-text h4 {
  margin-top: 18px;
  margin-bottom: 18px;
}
.blog-item .bi-text h4 a {
  color: #ffffff;
}
.blog-item .bi-text .b-time {
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.load-more {
  text-align: center;
  padding-top: 30px;
}
.load-more .primary-btn {
  color: #19191a;
}

/*----------------------------
  Blog Details Hero Section
----------------------------*/
.blog-details-hero {
  height: 530px;
  padding-top: 165px;
}

.bd-hero-text {
  text-align: center;
}
.bd-hero-text span {
  font-size: 12px;
  color: #ffffff;
  background: #1f7ead;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 2px;
}
.bd-hero-text h2 {
  font-size: 44px;
  color: #ffffff;
  line-height: 54px;
  margin-top: 30px;
  margin-bottom: 12px;
}
.bd-hero-text ul li {
  list-style: none;
  font-size: 14px;
  color: #1f7ead;
  margin-right: 35px;
  display: inline-block;
}
.bd-hero-text ul li:last-child {
  margin-right: 0;
}
.bd-hero-text ul li.b-time {
  text-transform: uppercase;
}

/*---------------------
  Blog Details Section
-----------------------*/
.blog-details-section {
  padding-top: 55px;
}

.blog-details-text .bd-title {
  margin-bottom: 52px;
}
.blog-details-text .bd-title p {
  font-size: 18px;
  color: #707079;
  line-height: 30px;
}
.blog-details-text .bd-pic {
  overflow: hidden;
  margin-bottom: 35px;
}
.blog-details-text .bd-pic .bp-item {
  width: calc(33.33% - 10px);
  float: left;
  margin-right: 15px;
}
.blog-details-text .bd-pic .bp-item:last-child {
  margin-right: 0;
}
.blog-details-text .bd-pic .bp-item img {
  min-width: 100%;
}
.blog-details-text .bd-more-text {
  margin-bottom: 50px;
}
.blog-details-text .bd-more-text .bm-item {
  margin-bottom: 30px;
}
.blog-details-text .bd-more-text .bm-item h4 {
  color: #19191a;
  margin-bottom: 20px;
}
.blog-details-text .bd-more-text .bm-item p {
  font-size: 18px;
  color: #707079;
  line-height: 30px;
}
.blog-details-text .tag-share {
  overflow: hidden;
  border-top: 1px solid #ebebeb;
  padding-top: 30px;
  margin-bottom: 75px;
}
.blog-details-text .tag-share .tags {
  float: left;
}
.blog-details-text .tag-share .tags a {
  font-size: 12px;
  color: #707079;
  background: #ebebeb;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 6px;
}
.blog-details-text .tag-share .tags a:hover {
  color: #ffffff;
  background: #1f7ead;
}
.blog-details-text .tag-share .social-share {
  float: right;
}
.blog-details-text .tag-share .social-share span {
  display: inline-block;
  font-size: 18px;
  color: #707079;
}
.blog-details-text .tag-share .social-share a {
  display: inline-block;
  font-size: 16px;
  color: #707079;
  margin-left: 30px;
}
.blog-details-text .comment-option {
  margin-bottom: 75px;
}
.blog-details-text .comment-option h4 {
  color: #19191a;
  margin-bottom: 35px;
}
.blog-details-text .comment-option .single-comment-item {
  margin-bottom: 30px;
}
.blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
  padding-left: 22px;
}
.blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 255px;
  background: #ebebeb;
  content: "";
}
.blog-details-text .comment-option .single-comment-item.reply-comment {
  padding-left: 120px;
  margin-bottom: 52px;
}
.blog-details-text .comment-option .single-comment-item.second-comment .sc-text {
  padding-left: 22px;
}
.blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100px;
  background: #ebebeb;
  content: "";
}
.blog-details-text .comment-option .single-comment-item .sc-author {
  float: left;
  margin-right: 28px;
}
.blog-details-text .comment-option .single-comment-item .sc-author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
.blog-details-text .comment-option .single-comment-item .sc-text {
  display: table;
  position: relative;
}
.blog-details-text .comment-option .single-comment-item .sc-text span {
  font-size: 12px;
  color: #1f7ead;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.blog-details-text .comment-option .single-comment-item .sc-text h5 {
  font-size: 20px;
  color: #19191a;
  margin-top: 4px;
  margin-bottom: 8px;
}
.blog-details-text .comment-option .single-comment-item .sc-text p {
  color: #707079;
  margin-bottom: 18px;
}
.blog-details-text .comment-option .single-comment-item .sc-text a {
  display: inline-block;
  color: #19191a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 24px;
  border: 1px solid #F9EEE3;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
}
.blog-details-text .comment-option .single-comment-item .sc-text a:hover {
  background: #1f7ead;
  color: #ffffff;
  border-color: #1f7ead;
}
.blog-details-text .leave-comment h4 {
  color: #19191a;
  margin-bottom: 35px;
}
.blog-details-text .leave-comment .comment-form input {
  width: 100%;
  height: 50px;
  color: #707079;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-details-text .leave-comment .comment-form input:focus {
  border-color: #1f7ead;
}
.blog-details-text .leave-comment .comment-form textarea {
  width: 100%;
  height: 116px;
  color: #707079;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 42px;
  resize: none;
  padding-top: 12px;
}
.blog-details-text .leave-comment .comment-form textarea:focus {
  border-color: #1f7ead;
}
.blog-details-text .leave-comment .comment-form button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  background: #1f7ead;
  border: none;
  padding: 14px 42px 13px;
  display: inline-block;
  border-radius: 2px;
}

/*---------------------
  Recommend Blog
-----------------------*/
.recommend-blog-section {
  padding-top: 65px;
  padding-bottom: 50px;
}
.recommend-blog-section .section-title {
  margin-bottom: 37px;
}
.recommend-blog-section .section-title h2 {
  margin-top: 0;
}

/*---------------------
  Contact Section
-----------------------*/
.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-text h2 {
  font-size: 44px;
  color: #19191a;
  margin-bottom: 24px;
}
.contact-text p {
  color: #707079;
}
.contact-text table tbody tr td {
  font-size: 16px;
  color: #19191a;
  line-height: 36px;
  font-weight: 500;
}
.contact-text table tbody tr td.c-o {
  color: #707079;
  width: 75px;
}

.contact-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  color: #19191a;
  padding-left: 25px;
  margin-bottom: 28px;
}
.contact-form input::-webkit-input-placeholder {
  color: #aaaab3;
}
.contact-form input::-moz-placeholder {
  color: #aaaab3;
}
.contact-form input:-ms-input-placeholder {
  color: #aaaab3;
}
.contact-form input::-ms-input-placeholder {
  color: #aaaab3;
}
.contact-form input::placeholder {
  color: #aaaab3;
}
.contact-form textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  color: #19191a;
  padding-left: 25px;
  padding-top: 12px;
  margin-bottom: 33px;
  resize: none;
}
.contact-form textarea::-webkit-input-placeholder {
  color: #aaaab3;
}
.contact-form textarea::-moz-placeholder {
  color: #aaaab3;
}
.contact-form textarea:-ms-input-placeholder {
  color: #aaaab3;
}
.contact-form textarea::-ms-input-placeholder {
  color: #aaaab3;
}
.contact-form textarea::placeholder {
  color: #aaaab3;
}
.contact-form button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  background: #1f7ead;
  border: none;
  padding: 14px 34px 13px;
  display: inline-block;
}

.map {
  height: 470px;
  -webkit-box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
  margin-top: 75px;
}
.map iframe {
  width: 100%;
}

/*---------------------
  Content pages
-----------------------*/
.page-section .page-text {
  padding: 20px 0 40px 0;
}
.page-section .page-text h3 {
  font-size: 24px;
  padding: 30px 0 10px 0;
  color: #1f7ead;
}
.page-section .page-text ul li {
  list-style: none;
  font-size: 18px;
  color: #707079;
  line-height: 36px;
  padding: 5px 0 0 0;
}
.page-section .page-text ul li:before {
  padding: 0 10px 0 0;
  color: #1f7ead;
  content: "N";
  font-family: "ElegantIcons";
  speak: none;
  font-style: normal;
  font-weight: 900;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.page-section .page-text ol li {
  font-size: 16px;
  color: #515151;
  line-height: 30px;
}
.page-section .page-text ol li .strong-1 {
  font-size: 20px;
  color: #3b3b3b;
}
.page-section .page-text ol li p {
  font-size: 16px;
  color: #000000;
  margin: 0;
}
.page-section .page-text ol li.main-li {
  margin: 15px 0;
}
.page-section .page-text p {
  font-size: 18px;
  line-height: 30px;
}
.page-section .page-text .nav-tabs .nav-item:before {
  content: none;
}
.page-section .page-text .nav-tabs .nav-item .nav-link {
  color: #1f7ead;
}
.page-section .page-text .nav-tabs .nav-item .nav-link:hover {
  text-decoration: underline;
}
.page-section .page-text .nav-tabs .nav-item .nav-link.active {
  color: #19191a;
  text-decoration: unset;
}
.page-section .page-text .tab-content .tab-pane {
  min-height: 500px;
}
.page-section .page-text a {
  color: #1f7ead;
}
.page-section .page-text a:hover {
  text-decoration: underline;
}
.page-section .page-text .button {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #1f7ead;
  border-radius: 2px;
  color: #1f7ead;
  font-weight: 500;
  background: transparent;
  width: 250px;
  height: 46px;
  line-height: 46px;
  margin: 60px auto 40px;
}
.page-section .page-text .button:hover {
  color: #ffffff;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: #1f7ead;
}
.page-section .page-text .form-group {
  margin: 0 0 2rem 0;
}
.page-section .page-text .form-group input::placeholder {
  color: #bcbcbc;
  font-size: 16px;
}
.page-section .page-text .form-group .form-label {
  margin-bottom: 0.3rem;
}
.page-section .page-text .form-group .form-label span {
  color: #ff0000;
}
.page-section .page-text .form-group .error-data {
  border: 1px solid #ff0000 !important;
}
.page-section .page-text .form-group .recovery {
  display: block;
  float: right;
}
.page-section .page-text .form-group .place-holder {
  color: #bcbcbc;
  font-size: 16px;
}
.page-section .page-text .error-message {
  min-height: 40px;
  padding: 10px 0;
  margin: 20px 0 0 0;
  border: 1px solid #ff0000;
  color: #ff0000;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
.page-section .page-text .error-message div {
  padding: 0 10px;
  line-height: 25px;
}
.page-section .page-text form button {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #1f7ead;
  border-radius: 2px;
  color: #1f7ead;
  font-weight: 500;
  background: transparent;
  width: 150px;
  height: 46px;
  margin: 0 auto;
}
.page-section .page-text form button:hover {
  color: #ffffff;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: #1f7ead;
}
.page-section .page-text .form-register {
  padding: 0;
}
.page-section .page-text .form-client-data button {
  width: 250px;
}
.page-section .page-text .form-reviews .form-group {
  margin: 30px 0;
}
.page-section .page-text .form-reviews .form-group textarea.form-control {
  height: 150px;
  resize: unset;
}
.page-section .page-text .table-price {
  padding: 30px 0;
}
.page-section .page-text .table-price h2 {
  padding: 20px 0;
}
.page-section .page-text .table-price table {
  width: 100%;
  text-align: center;
}
.page-section .page-text .table-price table td {
  padding: 10px;
}
.page-section .page-text .table-price table td span {
  font-size: 14px;
}
.page-section .page-text .orders-wrap {
  overflow: auto;
}
.page-section .page-text .orders-wrap .orders-body {
  min-width: 800px;
}
.page-section .page-text .orders-wrap .orders-body .order-status span {
  font-weight: bold;
}
.page-section .page-text .orders-wrap .orders-body .orders {
  width: 100%;
}
.page-section .error-page-text .error-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.page-section .error-page-text .error-code {
  font-size: 8rem;
  font-weight: bold;
  color: #dc3545;
}
.page-section .error-page-text .error-message {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 99;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: scroll;
}
.reveal-overlay .cookies-modal {
  background-color: #fff;
  width: 500px;
  right: 50px;
  transform: none;
  min-height: 250px;
  height: auto;
  top: auto !important;
  bottom: 25px;
  position: fixed;
  outline: 0;
  padding: 20px;
  line-height: 25px;
}
.reveal-overlay .cookies-modal h4 {
  margin: 0 0 10px 0;
  color: #1f7ead;
  font-weight: bold;
}
.reveal-overlay .cookies-modal a {
  font-size: 18px;
  color: #1f7ead;
}
.reveal-overlay .cookies-modal a:hover {
  text-decoration: underline;
}
.reveal-overlay .cookies-modal .cookie-form {
  display: none;
}
.reveal-overlay .cookies-modal .cookie-form .goToBack:before {
  content: "⟵";
  margin-right: 5px;
}
.reveal-overlay .cookies-modal .cookie-form .cookies-control label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #0a0a0a;
  font-weight: bold;
}
.reveal-overlay .cookies-modal .cookie-form .cookies-control label input {
  margin: 10px 10px 10px 0;
}
.reveal-overlay .cookies-modal .button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px 0;
}
.reveal-overlay .cookies-modal .button-group .bk-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 40px 5px 40px;
  margin: 0;
  background: #1f7ead;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}
.reveal-overlay .cookies-modal .button-group .bk-btn:hover {
  text-decoration: unset;
}

/*-------------------------------- Respinsive Media Styles --------------------------------*/
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
/* Medium Device: 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider.owl-carousel .owl-nav button {
    left: -150px;
  }
  .testimonial-slider.owl-carousel .owl-nav button.owl-next {
    right: -150px;
  }
  .menu-item .logo a {
    font-size: 26px;
  }
  .container {
    max-width: 96%;
  }
}
@media only screen and (max-width: 992px) {
  .top-nav {
    display: none;
  }
  .page-header {
    padding: 70px 0 70px 0;
  }
  .page-header .container h1 {
    font-size: 56px;
    margin: 0;
    padding: 10px 50px;
  }
  .hero-section {
    padding: 30px 0 50px 0;
  }
  .hero-section .hero-text {
    padding: 20px 0 30px 0;
    margin: 60px 0 30px 0;
  }
  .hero-section .hero-text p {
    padding: 0 20px 0 20px;
  }
  .hero-section .hero-text h1 {
    font-size: 46px;
    margin: 0;
    padding: 10px 50px;
  }
  .menu-item .nav-menu {
    display: none;
  }
  .menu-item .logo a.logo-link {
    padding: 0 0 0 40px;
  }
  .menu-item .logo .profile-menu-wrap {
    display: block;
    float: right;
  }
  .menu-item .logo .profile-menu-wrap ul {
    margin: 0 0 0 10px;
  }
  .menu-item .logo .profile-menu-wrap ul li i {
    font-size: 32px;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown {
    left: unset;
    right: 0;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a {
    font-size: 14px;
    padding: 5px 0;
    color: #272727;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a i {
    font-size: 12px;
    margin: 0 5px 0 0;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a:hover {
    color: #1f7ead;
  }
  .menu-item .logo .profile-menu-wrap ul li:hover .dropdown {
    top: 30px;
  }
  .menu-item .logo .profile-menu-wrap .profile-name {
    font-size: 24px;
    padding: 0;
  }
  .menu-item .logo .profile-menu-wrap a {
    margin: 0 0 0 0px;
  }
  .menu-item .logo .profile-menu-wrap a.bk-btn {
    padding: 6px 10px 6px 10px;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin: 10px 0 0 10px;
    background: #1f7ead;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 98;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }
  .canvas-open {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 22px;
    width: 30px;
    height: 30px;
    color: #19191a;
    border: 1px solid #19191a;
    border-radius: 2px;
    line-height: 33px;
    text-align: center;
    z-index: 100;
    display: block;
    cursor: pointer;
  }
  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    top: 0;
    width: 400px;
    z-index: 999;
    background: #ffffff;
    text-align: center;
    overflow-y: auto;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 80px 30px 30px 30px;
    display: block;
  }
  .offcanvas-menu-wrapper .canvas-close {
    height: 30px;
    width: 30px;
    border: 1px solid #19191a;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
    padding-right: 1px;
  }
  .offcanvas-menu-wrapper .search-icon {
    color: #19191a;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .offcanvas-menu-wrapper .header-configure-area {
    margin-bottom: 50px;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap {
    position: relative;
    padding: 10px;
    display: block;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap ul {
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    height: 60px;
    padding: 0 20px;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap ul i {
    display: none;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap ul li {
    display: block;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap ul li ul {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: unset;
    left: unset;
    right: unset;
    box-shadow: unset;
    padding: 0;
    width: 100%;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap ul li ul li a {
    position: relative;
    padding: 2px 0;
    font-size: 16px;
    font-weight: 500;
    color: #19191a;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap ul li ul li a i {
    display: inline-block;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap .profile-name {
    float: left;
    padding: 0 10px 0 0;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap a {
    color: #1f7ead;
    position: absolute;
    font-size: 20px;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap a.logout {
    right: 0;
    top: 5px;
    font-size: 22px;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option {
    display: inline-block;
    cursor: pointer;
    padding: 13px 0;
    position: relative;
    margin-bottom: 10px;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option:hover .flag-dropdown {
    top: 40px;
    opacity: 1;
    visibility: visible;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option img {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option span {
    font-size: 16px;
    color: #19191a;
    text-transform: uppercase;
    font-weight: 500;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100px;
    background: #ffffff;
    display: block;
    padding: 10px 15px;
    -webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
    box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 99;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li {
    list-style: none;
    text-align: left;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #19191a;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .offcanvas-menu-wrapper .header-configure-area .language-option .flag-dropdown ul li a:hover {
    color: #1f7ead;
  }
  .offcanvas-menu-wrapper .header-configure-area .bk-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 16px 28px 15px;
    background: #1f7ead;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .offcanvas-menu-wrapper .mainmenu {
    display: none;
  }
  .offcanvas-menu-wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_btn {
    float: none;
    margin: 0 0 10px 0;
    display: none;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav {
    display: block !important;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul {
    margin: 0;
    text-align: left;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li .dropdown {
    padding-left: 20px;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a {
    margin: 0;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #19191a;
    border-bottom: 1px solid #e5e5e5;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
    border-radius: 0;
    background: transparent;
    color: #1f7ead;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row a {
    border-bottom: 0;
    padding-left: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row span {
    color: #1f7ead;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    float: right;
    font-size: 16px;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover a {
    color: #1f7ead;
  }
  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover span {
    color: #1f7ead;
  }
  .offcanvas-menu-wrapper .top-social {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .offcanvas-menu-wrapper .top-social a {
    display: inline-block;
    font-size: 16px;
    color: #19191a;
    margin-right: 20px;
  }
  .offcanvas-menu-wrapper .top-social a:last-child {
    margin-right: 0;
  }
  .offcanvas-menu-wrapper .top-widget {
    padding: 20px 0;
  }
  .offcanvas-menu-wrapper .top-widget li {
    padding: 5px 0;
    list-style: none;
    font-size: 16px;
    color: #19191a;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
  }
  .offcanvas-menu-wrapper .top-widget li i {
    color: #1f7ead;
    margin-right: 4px;
  }
  .offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .about-text {
    margin-bottom: 30px;
  }
  .services-section .section-title {
    margin-bottom: 20px;
  }
  .hp-room-items .hp-room-item {
    width: 96%;
    margin: 0 auto 30px auto;
    height: 400px;
    background-position: center;
  }
  .hp-room-items .hp-room-item .hr-text {
    top: 75%;
    min-height: 340px;
    left: 25px;
    right: 25px;
  }
  .hp-room-items .hp-room-item .hr-text h3 {
    margin: 20px 0 20px 0;
    font-size: 32px;
  }
  .hp-room-items .hp-room-item .hr-text table {
    margin: 0 auto 30px auto;
    width: 96%;
  }
  .footer-section .copyright-option ul {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-section .copyright-option .co-text {
    text-align: center;
  }
  .about-pic img {
    margin-bottom: 20px;
  }
  .room-booking {
    padding: 0;
    margin-top: 40px;
  }
  .contact-form {
    padding-top: 30px;
  }
  .hero-text {
    margin-bottom: 40px;
  }
}
/* Tablet Device: 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider.owl-carousel .owl-nav button {
    left: 0;
  }
  .testimonial-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
  }
  .hp-room-items {
    margin: 0;
  }
  .hp-room-item {
    margin-bottom: 15px;
  }
  .container {
    max-width: 96%;
    padding: 0;
  }
}
/* Large Mobile: 480px */
@media only screen and (max-width: 767px) {
  .testimonial-slider.owl-carousel .owl-nav {
    display: none;
  }
  .room-details-item .rd-text .rd-title {
    margin-bottom: 25px;
  }
  .room-details-item .rd-text .rd-title h3 {
    float: none;
    margin-bottom: 30px;
  }
  .room-details-item .rd-text .rd-title .rdt-right {
    float: none;
    text-align: left;
  }
  .footer-section .copyright-option ul li {
    margin-right: 25px;
  }
  .blog-details-text .tag-share .tags {
    float: none;
    margin-bottom: 20px;
  }
  .blog-details-text .tag-share .social-share {
    float: none;
  }
  .aboutus-section {
    padding: 50px 0;
  }
  .about-text .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .hp-room-items {
    margin: 0 -5px;
  }
  .hp-room-item {
    margin-bottom: 10px;
  }
  .container {
    max-width: 98%;
  }
  .canvas-open {
    top: 15px;
  }
  .menu-item .logo {
    padding: 5px 0;
  }
  .menu-item .logo a {
    font-size: 24px;
    padding: 7px 0;
  }
  .menu-item .logo a.logo-link {
    margin: 8px 0 0 0;
  }
  .menu-item .logo .profile-menu-wrap ul {
    margin: 0 0 0 10px;
  }
  .menu-item .logo .profile-menu-wrap ul li i {
    font-size: 24px;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown {
    left: unset;
    right: 0;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a {
    font-size: 14px;
    padding: 5px 0;
    color: #272727;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a i {
    font-size: 12px;
    margin: 0 5px 0 0;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a:hover {
    color: #1f7ead;
  }
  .menu-item .logo .profile-menu-wrap ul li:hover .dropdown {
    top: 30px;
  }
  .menu-item .logo .profile-menu-wrap .profile-name {
    font-size: 20px;
    padding: 0;
  }
  .menu-item .logo .profile-menu-wrap a {
    margin: 0 0 0 5px;
  }
  .menu-item .logo .profile-menu-wrap a.bk-btn {
    padding: 6px 10px 6px 10px;
  }
  .hero-section {
    padding: 30px 0 50px 0;
  }
  .hero-section .hero-text {
    padding: 20px 0 20px 0;
    margin: 60px 0 0 0;
  }
  .hero-section .hero-text p {
    padding: 0 20px 0 0;
    margin: 0 0 0 10px;
  }
  .hero-section .hero-text h1 {
    font-size: 46px;
    margin: 0;
    padding: 10px;
  }
  .page-header {
    padding: 50px 0 50px 0;
  }
  .page-header .container h1 {
    font-size: 46px;
  }
  .booking .booking-form {
    padding: 20px 0 60px 0;
  }
}
@media only screen and (max-width: 640px) {
  .menu-item .logo {
    padding: 5px 0;
  }
  .menu-item .logo a {
    font-size: 22px;
    padding: 7px 0;
  }
  .menu-item .logo .profile-menu-wrap ul {
    margin: 0 0 0 10px;
  }
  .menu-item .logo .profile-menu-wrap ul li i {
    font-size: 22px;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown {
    left: unset;
    right: 0;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a {
    font-size: 14px;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a i {
    font-size: 12px;
  }
  .menu-item .logo .profile-menu-wrap .profile-name {
    font-size: 20px;
    padding: 0;
  }
  .menu-item .logo .profile-menu-wrap a {
    margin: 0 0 0 15px;
  }
  .menu-item .logo .profile-menu-wrap a.bk-btn {
    padding: 6px 10px 6px 10px;
  }
}
@media only screen and (max-width: 580px) {
  .menu-item .logo {
    padding: 5px 0;
  }
  .menu-item .logo a {
    font-size: 18px;
    padding: 11px 0;
  }
  .menu-item .logo a.logo-link {
    margin: 12px 0 0 0;
  }
  .menu-item .logo .profile-menu-wrap ul {
    margin: 0 0 0 10px;
  }
  .menu-item .logo .profile-menu-wrap ul li i {
    font-size: 18px;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown {
    left: unset;
    right: 0;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a {
    font-size: 14px;
  }
  .menu-item .logo .profile-menu-wrap ul li .dropdown li a i {
    font-size: 12px;
  }
  .menu-item .logo .profile-menu-wrap .profile-name {
    font-size: 16px;
    padding: 0;
  }
  .menu-item .logo .profile-menu-wrap a {
    margin: 0 0 0 10px;
  }
  .menu-item .logo .profile-menu-wrap a.bk-btn {
    font-size: 10px;
    margin: 10px 0 0 5px;
    padding: 6px 10px 6px 10px;
  }
  .hero-section {
    padding: 30px 0 50px 0;
  }
  .hero-section .hero-text {
    padding: 20px 0 20px 0;
    margin: 60px 0 0 0;
  }
  .hero-section .hero-text p {
    padding: 0 20px 0 0;
    margin: 0 0 0 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .hero-section .hero-text h1 {
    line-height: 60px;
    font-size: 46px;
    margin: 0 auto;
    padding: 10px;
    display: block;
    text-align: center;
  }
  .page-header {
    padding: 30px 0 30px 0;
  }
  .page-header .container h1 {
    line-height: 60px;
    font-size: 46px;
    margin: 0 auto;
    padding: 10px 20px;
    display: block;
    text-align: center;
  }
  .services-section .section-title h2 {
    font-size: 26px;
  }
  .services-section .service-item {
    padding: 20px;
  }
  .page-section .page-text h2 {
    font-size: 20px;
  }
  .page-section .page-text p {
    font-size: 16px;
    line-height: 26px;
  }
  .page-section .page-text ul li {
    list-style: none;
    font-size: 16px;
    color: #707079;
    line-height: 26px;
    padding: 5px 0 0 0;
  }
  .reveal-overlay .cookies-modal {
    right: 2%;
    left: 2%;
    width: auto;
    bottom: 5px;
    font-size: 16px;
    line-height: 22px;
  }
  .reveal-overlay .cookies-modal h4 {
    font-size: 20px;
  }
}
/* Small Mobile: 320px */
@media only screen and (max-width: 479px) {
  .about-text .section-title h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .canvas-open {
    top: 50px;
  }
  .menu-item .logo {
    height: 90px;
    position: relative;
  }
  .menu-item .logo a {
    font-size: 24px;
    position: absolute;
    top: 36px;
  }
  .menu-item .logo a.logo-link {
    left: 0;
    right: 0;
    text-align: center;
  }
  .menu-item .logo .profile-menu-wrap {
    display: block;
    top: 0;
    right: 0;
    left: 0;
    position: absolute;
    height: 40px;
    border-bottom: 1px solid #cccccc;
  }
  .menu-item .logo .profile-menu-wrap ul {
    display: none;
  }
  .menu-item .logo .profile-menu-wrap .profile-name {
    font-size: 20px;
    padding: 0;
    line-height: 34px;
  }
  .menu-item .logo .profile-menu-wrap a {
    font-size: 24px;
    position: absolute;
    padding: 0;
    top: 0;
  }
  .menu-item .logo .profile-menu-wrap a.settings {
    right: 40px;
  }
  .menu-item .logo .profile-menu-wrap a.logout {
    right: 0;
  }
  .menu-item .logo .profile-menu-wrap a.login {
    right: 0;
    margin: 5px 0 0 5px;
  }
  .menu-item .logo .profile-menu-wrap a.register {
    left: 0;
    margin: 5px 0 0 5px;
  }
  .page-header .container h1 {
    font-size: 32px;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap .bk-btn {
    font-size: 11px;
    padding: 5px 15px;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap .login {
    right: 0;
    color: #ffffff;
  }
  .offcanvas-menu-wrapper .header-configure-area .profile-menu-wrap .register {
    left: 0;
    color: #ffffff;
  }
  .footer-section .copyright-option ul li {
    margin-bottom: 5px;
  }
  .video-section {
    padding-top: 80px;
  }
  .rd-reviews .review-item .ri-pic,
  .blog-details-text .comment-option .single-comment-item .sc-author {
    float: none;
    margin-bottom: 30px;
  }
  .rd-reviews .review-item .ri-text .rating {
    position: relative;
  }
  .rd-reviews .review-item .ri-text,
  .blog-details-text .comment-option .single-comment-item.second-comment .sc-text,
  .blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
    padding-left: 0;
  }
  .blog-details-text .comment-option .single-comment-item.reply-comment {
    padding-left: 30px;
  }
  .rd-reviews .review-item .ri-text:before,
  .blog-details-text .comment-option .single-comment-item.first-comment .sc-text:before,
  .blog-details-text .comment-option .single-comment-item.second-comment .sc-text:before {
    display: none;
  }
  .blog-details-hero {
    padding-top: 70px;
  }
  .blog-details-text .bd-pic .bp-item {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .blog-details-text .tag-share .tags a {
    margin-bottom: 6px;
  }
  .blog-details-text .comment-option .single-comment-item .sc-text a {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 420px) {
  .hp-room-items .hp-room-item {
    height: 320px;
  }
  .hp-room-items .hp-room-item .hr-text {
    min-height: 260px;
    padding: 10px;
  }
  .hp-room-items .hp-room-item .hr-text h3 {
    margin: 20px 0 20px 0;
    font-size: 28px;
  }
  .hp-room-items .hp-room-item .hr-text table tbody tr td {
    font-size: 14px;
    line-height: 26px;
  }
  .hp-room-items .hp-room-item .hr-text table tbody tr td.r-o {
    text-align: left;
    width: 180px;
  }
  .aboutus-section {
    padding: 20px 0;
  }
  .aboutus-section .about-text {
    padding: 0;
  }
  .aboutus-section .about-text h2 {
    font-size: 20px;
  }
  .aboutus-section .about-text p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 10px 0;
  }
  .reveal-overlay .cookies-modal {
    font-size: 14px;
    line-height: 20px;
  }
  .reveal-overlay .cookies-modal h4 {
    font-size: 16px;
  }
  .reveal-overlay .cookies-modal a {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
