/*  here all scss files will get imported .as this would be our main scss */
/* here all the files which are under modules will get imported   */
/* here we are going to create variables of color which we are going to use  */
/* here we will create a varible of fonts related 
eg:
font-family
font-weight etc
make variable & assign value to it

$ariel-bold: "name of the font"
*/
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on November 19, 2019 */
@font-face {
  font-family: 'robotobold';
  src: url("../fonts/roboto-bold-webfont.woff2") format("woff2"), url("../../fonts/roboto-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotomedium';
  src: url("../fonts/roboto-medium-webfont.woff2") format("woff2"), url("../fonts/roboto-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotoregular';
  src: url("../fonts/roboto-regular-webfont.woff2") format("woff2"), url("../fonts/roboto-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotolight';
  src: url("../fonts/roboto-light-webfont.woff2") format("woff2"), url("../fonts/roboto-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* we can also make mixin . while mixin is nothing but the common css which we are using will make it in a fuunction
and when ever we required we just call the function , in case in we want to overide some value we can overide it */
/* all the common css we can write here  */
body {
  font-family: "robotoregular";
}

.menu_active {
  color: #77d633 !important;
}

.common_btn {
  background: #209625;
  padding: 8px 30px;
  color: white;
  border: 2px solid #209625;
  font-size: 15px;
}

@media (max-width: 900px) {
  .common_btn {
    font-size: 13px;
    padding: 7px 22px;
  }
}

.common_btn:hover {
  background: transparent;
  border: 2px solid #209625;
  color: #209625;
}

.input_css {
  padding: 5px 10px;
  border: 1px solid #a4a1a1c7;
}

.loader_wrapper {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  background: wheat;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader_wrapper .loader {
  width: 250px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  color: #ce4233;
  letter-spacing: 0.2em;
}

.loader_wrapper .loader::before, .loader_wrapper .loader::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #ce4233;
  position: absolute;
  -webkit-animation: load .7s infinite alternate ease-in-out;
          animation: load .7s infinite alternate ease-in-out;
}

.loader_wrapper .loader::before {
  top: 0;
}

.loader_wrapper .loader::after {
  bottom: 0;
}

@-webkit-keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}

@keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}

.slick-next,
.slick-prev {
  display: none !important;
}

.contents_room ul {
  padding: 0 20px;
  margin: 0;
}

.contents_room ul li {
  list-style-type: none;
  margin: 20px 0;
  font-size: 20px;
  color: #a0a0a0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #a0a0a0;
  padding-left: 40px;
}

@media (max-width: 1100px) {
  .contents_room ul li {
    font-size: 16px;
    width: calc(50% - 30px);
    display: inline-block;
    margin: 15px 10px !important;
    cursor: pointer;
  }
}

.contents_room ul li:last-child, .contents_room ul li:nth-last-child(2) {
  border: 0;
}

.contents_room ul li i {
  position: relative;
  left: -20px;
  color: #77d633;
}

.w-100 {
  width: 100%;
}

.slick-slide {
  margin: 0 7px;
}

.dropdown-menu a {
  color: black !important;
}

.dropdown-menu {
  left: -60px;
}

.dropdown-item.active,
.dropdown-item:active {
  background: transparent !important;
}

#aniimated-thumbnials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#aniimated-thumbnials a {
  width: calc(100%/3 - 20px);
  margin: 10px 10px;
}

@media (max-width: 767px) {
  #aniimated-thumbnials a {
    width: calc(100%/3 - 12px);
    margin: 6px;
  }
}

select::-ms-expand {
  display: none;
}

.dash li a {
  position: relative;
  margin-left: 20px;
}

.dash li a:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  left: -21px;
  top: 10px;
  background: #77d633;
}

.addr {
  color: #77d633;
  position: absolute;
  left: -25px;
  top: 4px;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.op-0 {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.green {
  color: #77d633;
}

.banner__slider {
  margin-top: -92px;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 992px) {
  .slider,
  .slide {
    height: 80vh;
  }
}

.slide {
  position: relative;
  -webkit-transition: 1s;
  transition: 1s;
}

.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slide .slide__content.slide__content__left {
  left: 15%;
  -webkit-transform: translate(-15%, -50%);
          transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  -webkit-transform: translate(5%, -50%);
          transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #FFF;
}

.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.slide .slide__content--headings .top-title {
  font-family: "Playball", cursive;
  font-size: 2.5rem;
}

.slide .slide__content--headings .title {
  font-size: 3.5rem;
}

.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}

.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}

.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
  left: 3%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 999;
}

.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.slick-nav i:before, .slick-nav i:after {
  content: '';
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  -webkit-transform-origin: 9px 50%;
          transform-origin: 9px 50%;
}

.slick-nav i:before {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.slick-nav i:after {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.slick-nav:before, .slick-nav:after {
  content: '';
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 3;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards .3s;
          animation: stroke 1s ease forwards .3s;
}

.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@-webkit-keyframes arrow {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  23% {
    -webkit-transform: translateX(17px);
            transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
  }
}

@keyframes arrow {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  23% {
    -webkit-transform: translateX(17px);
            transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    -webkit-transform: translateX(-22px);
            transform: translateX(-22px);
  }
}

@-webkit-keyframes arrowUp {
  0%,
  100% {
    -webkit-transform: rotate(-40deg) scaleX(1);
            transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowUp {
  0%,
  100% {
    -webkit-transform: rotate(-40deg) scaleX(1);
            transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}

@-webkit-keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: rotate(40deg) scaleX(1);
            transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {
  0%,
  100% {
    -webkit-transform: rotate(40deg) scaleX(1);
            transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    -webkit-transform: rotate(0deg) scaleX(0.1);
            transform: rotate(0deg) scaleX(0.1);
  }
}

.banner_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.17);
  z-index: 2;
}

.banner__slider {
  position: relative;
}

.rb-main-container .rb-row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 992px) {
  .rb-main-container .rb-row {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .rb-main-container .rb-row .datefrm {
    max-width: 80%;
  }
  .rb-main-container .rb-row .dateto {
    max-width: 80%;
  }
  .rb-main-container .rb-row .room, .rb-main-container .rb-row .adult, .rb-main-container .rb-row .child {
    max-width: 27.333%;
  }
  .rb-main-container .rb-row .cupcode {
    max-width: 82%;
  }
}

@media (max-width: 767px) {
  .common_banner {
    margin: 0 !important;
  }
}

.navbar {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 20;
}

@media (max-width: 767px) {
  .navbar {
    background: black;
  }
}

.navbar ul li {
  margin: 0px 18px;
}

@media (max-width: 900px) {
  .navbar ul li {
    margin: 0 8px;
  }
}

.navbar ul li a {
  color: white;
  font-family: "robotomedium";
  padding: 8px 45px;
}

@media (max-width: 900px) {
  .navbar ul li a {
    font-size: 12px;
  }
}

.navbar ul li a:hover {
  color: #77d633 !important;
}

.navbar ul li.book_button {
  background: #77d633;
  padding: 0px 15px;
}

.navbar ul li.book_button a {
  background: #77d633;
}

.navbar ul li.book_button:hover a {
  color: black;
}

.banner {
  margin-top: -92px;
}

@media (max-width: 767px) {
  .banner p {
    font-size: 14px !important;
  }
}

@media (max-width: 767px) {
  .banner h2 {
    font-size: 14px !important;
  }
}

@media (max-width: 767px) {
  .banner button {
    font-size: 10px !important;
    padding: 5px 22px !important;
  }
}

@media (max-width: 767px) {
  .banner {
    margin-top: 93px;
  }
}

.banner .banner_images .slider {
  position: relative;
}

.banner .banner_images img {
  -webkit-transition: 7s;
  transition: 7s;
}

.banner .banner_images h1 {
  position: absolute;
  top: 50%;
  left: 10%;
  color: white;
  -webkit-transition: 1s;
  transition: 1s;
}

.check_in {
  margin-top: -65px;
  position: relative;
  z-index: 2;
}

.check_in ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  background: #f5f5f5;
  padding: 40px 0;
  -webkit-box-shadow: 0px 3px 57px 0px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 3px 57px 0px rgba(0, 0, 0, 0.18);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}

.check_in ul li {
  list-style-type: none;
  position: relative;
}

.check_in ul li .human {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.check_in ul li select {
  width: 172px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

.header_text {
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .header_text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .header_text {
    font-size: 17px;
  }
}

.header_text:before {
  position: absolute;

  bottom: -10px;
  left: 0;
  height: 1px;
  width: 100px;
  background: black;
}

.header_text span {
  color: #209625;
}

.intro_of_resort {
  padding: 90px 0;
}

@media (max-width: 900px) {
  .intro_of_resort {
    padding: 55px 0;
  }
}

@media (max-width: 767px) {
  .intro_of_resort {
    padding: 35px 0;
  }
}

.intro_of_resort .intro_wrapper .sub_head_text {
  margin-top: 25px;
  font-style: italic;
}

.intro_of_resort .intro_wrapper h5 {
  margin-top: 25px;
  font-size: 19px;
}

@media (max-width: 900px) {
  .intro_of_resort .intro_wrapper h5 {
    font-size: 15px;
  }
}

.intro_of_resort .intro_wrapper p {
  margin-top: 20px;
  letter-spacing: 0.7px;
  color: #898989;
  word-spacing: 5px;
  font-size: 15px;
}

.intro_of_resort .intro_wrapper .text-content {
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .intro_of_resort .intro_wrapper .text-content {
    font-size: 13px;
    margin-bottom: 22px;
  }
}

@media (max-width: 767px) {
  .intro_of_resort .intro_wrapper .text-content {
    font-size: 12px;
  }
}

.intro_of_resort .intro_image {
  overflow: hidden;
}

@media (max-width: 767px) {
  .intro_of_resort .intro_image {
    margin-top: 20px;
  }
}

.intro_of_resort .intro_image img {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.intro_of_resort .intro_image img:hover {
  -webkit-transform: scale(1.1) !important;
          transform: scale(1.1) !important;
}

.explore_rooms {
  padding: 80px 0;
  background: #f6f6f6;
}

@media (max-width: 767px) {
  .explore_rooms {
    padding: 40px 0;
  }
}

.explore_rooms .explore_content {
  margin-bottom: 60px;
}

.explore_rooms .explore_content p {
  color: #898989;
  margin-top: 28px;
  font-weight: 500;
  margin-bottom: 25px;
}

.explore_rooms .room_details .rooms_block {
  padding-bottom: 40px;
  -webkit-box-shadow: 1px 0px 17px -6px #80808042;
          box-shadow: 1px 0px 17px -6px #80808042;
}

.explore_rooms .room_details .rooms_block .room_image {
  position: relative;
  overflow: hidden;
}

.explore_rooms .room_details .rooms_block .room_image .room_overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.explore_rooms .room_details .rooms_block .room_image:hover .room_overlay {
  opacity: 1;
}

.explore_rooms .room_details .rooms_block .room_content {
  padding: 25px;
}

.explore_rooms .room_details .rooms_block .room_content .room_head {
  margin-bottom: 30px;
  position: relative;
}

.explore_rooms .room_details .rooms_block .room_content .room_head:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #eee;
}

.explore_rooms .room_details .rooms_block .room_content span {
  font-weight: bold;
  font-size: 23px;
  margin-right: 11px;
}

.explore_rooms .room_details .rooms_block .room_content span small {
  font-size: 17px;
  color: #a0a0a0;
}

.our_services {
  padding: 90px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(40, 38, 42, 0.94)), to(rgba(40, 38, 42, 0.94))), transparent url(../images/home_page/service-bg-300x62.jpg) center center/cover no-repeat fixed;
  background: linear-gradient(rgba(40, 38, 42, 0.94), rgba(40, 38, 42, 0.94)), transparent url(../images/home_page/service-bg-300x62.jpg) center center/cover no-repeat fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

@media (max-width: 767px) {
  .our_services {
    padding: 40px 0;
  }
}

.our_services .our_content .header_text {
  color: white;
  margin-bottom: 30px;
}

.our_services .our_content .header_text:before {
  display: none;
}

.our_services .our_content p {
  color: #898989;
  line-height: 27px;
}

.our_services .our_content a {
  color: #209625;
}

.our_services .our_content_text i {
  display: block;
  text-align: center;
  font-size: 30px;
  color: #209625;
  position: relative;
  top: -65px;
  font-size: 60px;
}

@media (max-width: 767px) {
  .our_services .our_content_text i {
    top: 0px;
  }
}

.our_services .our_content_text h4 {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: -40px;
}

@media (max-width: 767px) {
  .our_services .our_content_text h4 {
    margin-top: 15px;
  }
}

.our_services .our_content_text p {
  color: #b8b8bf;
  font-size: 14px;
  line-height: 26px;
}

.our_clients {
  padding-top: 80px;
  background: url(../images/home_page/clouds.png);
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .our_clients {
    padding: 40px 0;
  }
}

.our_clients .header_text {
  margin-bottom: 50px;
}

.our_clients .header_text:before {
  display: none;
}

.our_clients .partner_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .our_clients .partner_image {
    margin-bottom: 10px;
    text-align: center;
  }
}

.our_clients .partner_image img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  width: 65%;
}

.our_clients .partner_image img:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.move_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  background: #209625;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  border-radius: 5px;
  -webkit-transition: 1s;
  transition: 1s;
  cursor: pointer;
}

@media (max-width: 900px) {
  .move_top {
    bottom: 50px;
  }
}

@media (max-width: 767px) {
  .move_top {
    height: 40px;
    width: 40px;
  }
}

.move_top i {
  font-size: 18px;
  -webkit-animation: moveup linear 2s infinite;
          animation: moveup linear 2s infinite;
  color: #fff;
}

@media (max-width: 767px) {
  .move_top i {
    font-size: 14px;
  }
}

@-webkit-keyframes moveup {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@keyframes moveup {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.primary_btn {
  border: 2px solid #8e8e8e;
  text-transform: uppercase;
  padding: 10px 25px;
  margin-top: 17px;
  font-weight: 600;
  border-radius: 3px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.primary_btn:hover {
  background: #209625;
  color: white;
  border: 2px solid white;
}

.flip-container {
  -webkit-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
}

.flip-container:hover .flipper,
.flip-container.hover .flipper {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flip-container,
.front,
.back {
  width: 100%;
}

.flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.front,
.back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.front {
  z-index: 2;
}

.back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  background-size: contain;
}

.back:first-child() {
  background-image: url(../images/room_inside/Deluxe.jpg);
}

.back:nth-child(2) {
  background-image: url(../images/room_inside/Super-Deluxe.jpg);
}

.back:last-child() {
  background-image: url(../images/room_inside/Suite-Dinning.jpg);
}

.back p {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 5;
}

.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(128, 128, 128, 0.39);
  height: 4px;
  width: 100%;
  z-index: 100;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #209625;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 767px) {
  .about_page_story .about_story {
    margin-top: 35px;
  }
}

.about_page_story .about_story .header_text p {
  margin: 12px 0;
}

@media (max-width: 900px) {
  .about_page_story .about_story .header_text p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .about_page_story .about_story .header_text p {
    font-size: 10px;
  }
}

.about_page_story .about_story .sub_head_text {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .about_page_story .about_story .sub_head_text {
    margin-top: 28px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .about_page_story .about_story .sub_head_text {
    margin-top: 25px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .about_page_story .about_story::before {
    width: 100px;
  }
}

.about_why_us {
  padding: 80px 0;
  background: #f6f6f6;
}

@media (max-width: 900px) {
  .about_why_us {
    padding: 50px 0;
  }
}

.about_why_us .header_text:before {
  display: none;
}

.about_why_us .sub_text {
  margin-bottom: 65px;
}

@media (max-width: 900px) {
  .about_why_us .sub_text {
    font-size: 14px;
    margin-bottom: 55px;
  }
}

@media (max-width: 767px) {
  .about_why_us .sub_text {
    font-size: 12px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about_why_us .contents {
    margin-bottom: 30px;
  }
}

.about_why_us .contents ul {
  padding: 0 20px;
  margin: 0;
}

.about_why_us .contents ul li {
  list-style-type: none;
  margin: 20px 0;
  font-size: 22px;
  color: #a0a0a0;
  padding-bottom: 10px;
  border-bottom: 1px dashed #a0a0a0;
  padding-left: 40px;
}

@media (max-width: 900px) {
  .about_why_us .contents ul li {
    font-size: 14px;
    margin: 10px 0;
  }
}

.about_why_us .contents ul li i {
  position: relative;
  left: -20px;
  color: #77d633;
}

.about_why_us .contents ul li:last-child {
  border: 0;
}

.room_page_wrapper {
  padding: 80px 0;
}

.room_page_wrapper .room_description {
  padding-right: 40px;
}

.room_page_wrapper .room_description .nav {
  border-bottom: 1px solid #b8b8bf;
}

.room_page_wrapper .room_description .nav .nav-item a {
  color: #000;
  font-weight: 600;
}

.room_page_wrapper .room_description .nav .nav-item a.active {
  background: transparent;
  position: relative;
}

.room_page_wrapper .room_description .nav .nav-item a.active::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: #209625;
  bottom: -2px;
  left: 0;
  border-radius: 2px;
}

.room_page_wrapper .room_description .tab-content {
  padding: 20px 0px;
}

.room_page_wrapper .room_description .tab-content p {
  color: #898989;
  font-size: 14px;
}

.room_page_wrapper .room_description .tab-content .room_page_services h4 {
  text-transform: uppercase;
  font-size: 23px;
  margin-top: 30px;
  margin-bottom: 45px;
}

.room_page_wrapper .room_description .tab-content .room_page_services ul {
  padding: 0;
}

.room_page_wrapper .room_description .tab-content .room_page_services ul li {
  list-style-type: none;
  width: calc(50% - 30px);
  margin: 6px 13px;
  display: inline-block;
  text-transform: capitalize;
}

.room_page_wrapper .room_description .tab-content .pricing_heading {
  margin-bottom: 25px;
}

.room_page_wrapper .room_description .tab-content .review span {
  color: #209625;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 25px;
  display: block;
}

.room_page_wrapper .room_description .tab-content .review small {
  text-transform: uppercase;
  color: #a0a0a0;
  font-size: 14px;
}

.room_page_wrapper .room_description .tab-content .review form {
  margin-top: 25px;
}

.room_page_wrapper .room_description .tab-content .review form label {
  color: #898989;
  font-weight: 600;
}

.room_page_wrapper .room_description .tab-content .review form label small {
  color: red;
}

.room_page_wrapper .room_description .tab-content .review form .form-control {
  background: #f8f8f8;
}

.room_page_wrapper .room_description .rooms_block {
  margin-bottom: 40px;
}

.room_page_wrapper .room_description .rooms_block .room_content {
  padding: 25px 0;
}

.room_page_wrapper .room_description .rooms_block .room_content .room_head {
  margin-bottom: 50px;
  position: relative;
  font-size: 40px;
  margin-top: 30px;
}

.room_page_wrapper .room_description .rooms_block .room_content .room_head:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #eee;
}

.room_page_wrapper .room_description .rooms_block .room_content span {
  font-weight: bold;
  font-size: 23px;
  margin-right: 20px;
}

.room_page_wrapper .room_description .rooms_block .room_content span small {
  font-size: 17px;
  color: #a0a0a0;
}

.room_page_wrapper .room_why_us h6 {
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 600;
}

.room_page_wrapper .room_why_us p {
  color: #898989;
}

.room_page_wrapper .room_why_us .form-group {
  margin-bottom: 25px;
}

.room_page_wrapper .room_why_us .form-group label {
  color: #898989;
  font-weight: 600;
}

.room_page_wrapper .room_why_us .form-group label small {
  color: red;
}

.room_page_wrapper .room_why_us .form-group .form-control {
  background: #f8f8f8;
}

footer {
  padding: 80px 0;
  background: #2a292b;
}

@media (max-width: 767px) {
  footer .address {
    margin-bottom: 30px;
  }
}

@media (max-width: 900px) {
  footer {
    padding: 50px 0;
  }
}

footer h5 {
  color: white;
  text-transform: capitalize;
  font-size: 17px;
}

@media (max-width: 767px) {
  footer h5 {
    font-size: 16px;
  }
}

footer p {
  color: #757575;
  position: relative;
}

@media (max-width: 900px) {
  footer p {
    font-size: 13px;
  }
}

footer a {
  color: #757575;
  text-decoration: none;
  position: relative;
}

@media (max-width: 900px) {
  footer a {
    font-size: 13px;
  }
}

footer a:hover {
  color: #77d633;
  text-decoration: none;
}

footer ul {
  padding: 0;
}

footer ul li {
  list-style-type: none;
  margin: 15px 0;
}

@media (max-width: 900px) {
  footer ul li {
    margin: 5px 0;
  }
}

footer ul li a {
  color: #757575;
}

footer .social {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .social li {
  margin: 10px 10px;
}

footer .social li:first-child {
  margin-left: 0;
}

footer .social li .social_icon {
  font-size: 25px;
}

footer .gallery_link img {
  -webkit-transition: 1;
  transition: 1;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-animation: bigger 1.5s linear infinite;
          animation: bigger 1.5s linear infinite;
}

@-webkit-keyframes bigger {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

@keyframes bigger {
  0% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}

.facilities_Details .contents p {
  margin-top: 20px;
  letter-spacing: 0.7px;
  color: #898989;
  word-spacing: 4px;
  font-size: 16px;
}

.facilities_Details .facilities_provided {
  margin-top: 40px;
}

.facilities_Details .facilities_provided h4 {
  margin-bottom: 33px;
}

.facilities_Details .facilities_provided ul li {
  font-size: 19px;
}

.facilities_Details .facilities_provided ul li:nth-last-child(2) {
  border-bottom: 1px dashed #a0a0a0;
}

.contact_heading {
  margin: 75px 0;
}

@media (max-width: 1200px) {
  .contact_heading {
    margin: 70px 0 15px;
  }
}

@media (max-width: 900px) {
  .contact_heading {
    margin: 50px 0 15px;
  }
}

.contact_heading h2:before {
  display: none;
}

.contact_page {
  max-width: 1356px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 120px;
}

@media (max-width: 960px) {
  .contact_page {
    padding-bottom: 65px;
  }
}

.contact_page .left {
  width: 45%;
  margin-top: -60px;
}

@media (max-width: 1115px) {
  .contact_page .left {
    margin-top: -10px;
  }
}

@media (max-width: 650px) {
  .contact_page .left {
    width: 100%;
  }
}

.contact_page .left img {
  width: 100%;
}

.contact_page .left .contact_details {
  padding: 0 80px;
}

@media (max-width: 1100px) {
  .contact_page .left .contact_details {
    padding: 0 70px;
  }
}

@media (max-width: 960px) {
  .contact_page .left .contact_details {
    padding: 0 30px;
  }
}

.contact_page .left .contact_details h2 {
  font-size: 30px;
  font-family: "robotobold";
  color: #333;
  margin-bottom: 12px;
  border-top: 1px solid #666;
  padding-top: 15px;
}

.contact_page .left .contact_details p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
  font-family: "robotoregular";
}

.contact_page .left .contact_details p span {
  display: block;
}

.contact_page .left .contact_details a {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  color: #000;
  color: #333;
}

.contact_page .left .contact_details a i {
  color: #77d633;
  margin-right: 8px;
  font-size: 16px;
}

.contact_page .right {
  width: 55%;
  padding-right: 100px;
  margin-top: 60px;
}

@media (max-width: 1115px) {
  .contact_page .right {
    margin-top: 95px;
  }
}

@media (max-width: 1100px) {
  .contact_page .right {
    padding-right: 70px;
  }
}

@media (max-width: 960px) {
  .contact_page .right {
    padding-right: 30px;
    margin-top: 60px;
  }
}

@media (max-width: 650px) {
  .contact_page .right {
    padding: 0;
    width: 93%;
    margin: 0 auto;
    margin-top: 30px;
  }
}

.contact_page .right .form_contents {
  border: 1px solid #333;
  padding: 30px 45px;
  border-radius: 6px;
}

@media (max-width: 1100px) {
  .contact_page .right .form_contents {
    padding: 30px;
  }
}

@media (max-width: 960px) {
  .contact_page .right .form_contents {
    padding: 20px 14px 28px;
  }
}

.contact_page .right .form_contents h3 {
  font-size: 24px;
  font-family: "robotobold";
  margin-left: 15px;
  margin-bottom: 50px;
}

@media (max-width: 960px) {
  .contact_page .right .form_contents h3 {
    margin-left: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 650px) {
  .contact_page .right .form_contents h3 {
    font-size: 20px;
  }
}

.contact_page .right .form_contents form ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}

.contact_page .right .form_contents form ul li {
  width: calc(50% - 30px);
  margin: 0 15px;
  margin-bottom: 15px;
  list-style-type: none;
}

@media (max-width: 960px) {
  .contact_page .right .form_contents form ul li {
    width: calc(50% - 20px);
    margin: 0 10px;
  }
}

@media (max-width: 650px) {
  .contact_page .right .form_contents form ul li {
    width: 100%;
  }
}

.contact_page .right .form_contents form ul li input {
  border: 0;
  border-bottom: 1px solid #b0b0b0;
  padding-left: 0;
  font-family: "robotoregular";
  width: 100%;
  padding: 0 0 8px 7px;
}

.contact_page .right .form_contents form ul li textarea {
  margin-top: 20px;
  border: 1px solid #b0b0b0;
  border-radius: 6px;
  min-height: 150px !important;
  font-family: "robotoregular";
  width: 100%;
  padding: 0 0 8px 7px;
}

@media (max-width: 960px) {
  .contact_page .right .form_contents form ul li textarea {
    min-height: 110px !important;
    margin-bottom: 15px;
  }
}

.contact_page .right .form_contents form ul li select {
  padding: 7px 22px;
  width: 80%;
  border-radius: 33px;
  margin-top: 12px;
  color: #7a7a7a;
  font-family: "robotoregular";
}

@media (max-width: 960px) {
  .contact_page .right .form_contents form ul li select {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .contact_page .right .form_contents form ul li select {
    font-size: 12px;
    width: 70%;
  }
}

.contact_page .right .form_contents form ul li label {
  font-size: 14px;
  font-family: "robotoregular";
  color: #555;
}

@media (max-width: 960px) {
  .contact_page .right .form_contents form ul li label {
    font-size: 13px;
  }
}

.contact_page .right .form_contents form ul li:last-child {
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding-top: 25px;
  border-top: 1px solid;
}

@media (max-width: 960px) {
  .contact_page .right .form_contents form ul li:last-child {
    margin-top: 20px;
  }
}

.contact_page .right .form_contents form ul li:last-child input {
  padding: 12px 45px;
  font-size: 17px;
  color: #fff;
  background: #616161;
  border-radius: 6px;
  outline: none;
  border: none;
  cursor: pointer;
}

.contact_page .right .form_contents form ul li img {
  margin-top: 10px;
}

@media (max-width: 600px) {
  .contact_page .right .form_contents form ul li img {
    margin-top: 20px;
  }
}

.explore_rooms .room_details .room_content h4 {
  margin: 16px 0;
  text-align: center;
  font-family: "robotobold";
  font-size: 20px;
}

@media (max-width: 1100px) {
  .explore_rooms .room_details .room_content h4 {
    font-size: 18px;
  }
}

.explore_rooms .room_details .room_content span {
  font-size: 17px;
  margin: 10px 0;
}

@media (max-width: 900px) {
  .explore_rooms .room_details .room_content span.checin, .explore_rooms .room_details .room_content span.checout {
    display: block;
    margin-left: 0 !important;
  }
}

@media (max-width: 900px) {
  .explore_rooms .room_details .room_content span {
    font-size: 13px;
  }
}

.explore_rooms .room_details .room_content p {
  font-size: 17px;
  margin: 10px 0;
}

@media (max-width: 900px) {
  .explore_rooms .room_details .room_content p {
    font-size: 13px;
  }
}

.room_fac {
  padding: 80px 0;
}

.room_fac .room_page_services h3 {
  text-transform: uppercase;
  font-size: 23px;
}

@media (max-width: 1100px) {
  .room_fac .room_page_services h3 {
    font-size: 21px;
  }
}

.room_fac .contents_room ul li {
  width: calc(50% - 30px);
  display: inline-block;
  margin: 20px 10px;
  cursor: pointer;
}

.room_fac .contents_room ul li:hover {
  color: #77d633;
}

.gallery_video {
  margin: 60px 0;
  margin-bottom: 0;
}

.gallery_video .video {
  text-align: center;
}

.gallery_video .video video {
  width: 80%;
}

.lightbox_gallery {
  padding: 80px 0;
}

@media (max-width: 900px) {
  .lightbox_gallery {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .lightbox_gallery {
    padding: 30px 0;
  }
}

.lightbox_gallery .header_text {
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .lightbox_gallery .header_text {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .lightbox_gallery .header_text {
    margin-bottom: 17px;
  }
}

.lightbox_gallery .header_text::before {
  display: none;
}

.facilities_page_content {
  padding: 80px 0;
}

.facilities_page_content .header_text {
  margin-bottom: 70px;
}

.facilities_page_content .header_text::before {
  display: none;
}

.facilities_page_content .facilities_content p {
  color: #898989;
}

.video_section {
  height: 775px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .video_section {
    height: 235px;
  }
}

.video_section video {
  height: 100%;
  width: 100%;
}

.desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}

.hamburger {
  background: none;
  position: absolute;
  top: 22px;
  right: 0;
  line-height: 45px;
  padding: 5px 15px 0px 15px;
  color: #999;
  border: 0;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  z-index: 10000000000000;
}

.cross {
  background: none;
  position: absolute;
  top: 0px;
  right: 0;
  padding: 7px 15px 0px 15px;
  color: #999;
  border: 0;
  font-size: 3em;
  line-height: 65px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  z-index: 10000000000000;
}

.menu {
  z-index: 1000000;
  font-weight: bold;
  font-size: 0.8em;
  width: 100%;
  background: #f1f1f1;
  top: 0;
  position: absolute;
  text-align: center;
  font-size: 12px;
  display: none;
}

@media (max-width: 767px) {
  .menu {
    display: block;
  }
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}

.menu li {
  display: block;
  padding: 15px 0 15px 0;
  border-bottom: #dddddd 1px solid;
}

.menu li:hover {
  display: block;
  background: #ffffff;
  padding: 15px 0 15px 0;
  border-bottom: #dddddd 1px solid;
}

.menu ul li a {
  text-decoration: none;
  margin: 0px;
  color: #666;
}

.menu ul li a:hover {
  color: #666;
  text-decoration: none;
}

.menu a {
  text-decoration: none;
  color: #666;
}

.menu a:hover {
  text-decoration: none;
  color: #666;
}

.glyphicon-home {
  color: white;
  font-size: 1.5em;
  margin-top: 5px;
  margin: 0 auto;
}

header {
  display: inline-block;
  font-size: 12px;
}

@media (max-width: 767px) {
  .dash {
    margin-bottom: 30px;
  }
}

.ham {
  display: none;
}

@media (max-width: 767px) {
  .ham {
    display: block;
  }
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slide__content {
  position: relative;
  z-index: 6;
}
/*# sourceMappingURL=main.css.map */