/* ===================================
    Table of Content
====================================== */

/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - About-Section
  - portfolio-Section
  - hotels-section
  - Testimonials-Section
  - Blog-Section
  - Contact-Section
  - Google Map
  - Footer
  - StandAlone Page
  - Media Queries
*/

/* ===================================
    Fonts
====================================== */

@font-face {
  font-family: "NeueHaasGroteskDisplayPro55Roman";
  src: url('../fonts/NHaasGroteskDSPro-55Rg.otf') format('opentype');
}

html,
body {
  font-family: "NeueHaasGroteskDisplayPro55Roman", sans-serif;
}


/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  width: 12px;
  background: white;
  border-left: 0 solid white;
  border-right: 0 solid white;
}

::-webkit-scrollbar-thumb {
  background: rgba(4, 220, 164, 1);
  width: 0;
  height: 25%;
  transition: .5s ease;
  cursor: pointer;
}

/* ===================================
   General
====================================== */

body {
  overflow-x: hidden;
  font-family: "NeueHaasGroteskDisplayPro55Roman", sans-serif;
}

a {
  text-decoration: none;
}

.heading {
  font-family: "NeueHaasGroteskDisplayPro55Roman", sans-serif;
}

/*Social Icons*/
.social-icons ul {
  margin-bottom: 0;
}

.social-icons li {
  font-size: 15px;
  display: inline-block;
}

.social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #000;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons background hover*/
.facebook-hover:hover {
  color: #fff;
  transition: all 0.5s ease;
  background-color: #4267B2;
}

.twitter-hover:hover {
  color: #fff;
  transition: all 0.5s ease;
  background-color: #1DA1F2;
}

.google-plus-hover:hover {
  color: #fff;
  transition: all 0.5s ease;
  background-color: #db4a39;
}

.linked-in-hover:hover {
  color: #fff;
  transition: all 0.5s ease;
  background-color: #0e76a8;
}

.instagram-hover:hover {
  color: #fff;
  transition: all 0.5s ease;
  background-color: #C13584;
}

.gmail-hover:hover {
  color: #fff;
  transition: all 0.5s ease;
  background-color: #D44638;
}

/*Buttons*/
.btn {
  z-index: 2;
  font-size: 14px;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 600;
  overflow: hidden;
  position: sticky;
  line-height: inherit;
  display: inline-block;
  border: 2px solid transparent;
  text-transform: capitalize;
  -webkit-appearance: initial;
  transition: all .5s ease !important;
  font-family: "NeueHaasGroteskDisplayPro55Roman", sans-serif;
}

.btn.button {
  padding: 9px 34px !important;
  line-height: 1.8em !important;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.btn-black {
  background: transparent;
  border-color: #000;
  color: #000;
}

.btn.btn-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/*Button Hover bg*/
.btn.btn-hvr-pink:hover,
.btn.btn-hvr-pink:focus {
  color: #fff;
  border-color: rgba(4, 220, 164, 1);
  background: rgba(4, 220, 164, 1);
}

.btn.btn-hvr-pink .btn-hvr-pink {
  background: rgba(4, 220, 164, 1);
  border-color: rgba(4, 220, 164, 1);
}

.btn-hvr-setting {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.btn-hvr-setting-inner {
  position: relative;
  display: block;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0
}

.btn-hvr-effect {
  position: absolute;
  top: -5px;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s !important;
  background: rgba(4, 220, 164, 1);
  border-color: rgba(4, 220, 164, 1);
}

.btn-hvr-effect:nth-child(1) {
  left: 0;
  transition-delay: 0s !important;
}

.btn-hvr-effect:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s !important;
}

.btn-hvr-effect:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s !important;
}

.btn-hvr-effect:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s !important;
}

.btn-hvr-setting:hover .btn-hvr-effect,
.btn:hover .btn-hvr-effect,
.btn:active .btn-hvr-effect,
.btn:focus .btn-hvr-effect {
  transform: translateZ(0) scale(1.7) !important;
}

/* ===================================
   Loader
====================================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

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

@keyframes loader {
  0% {
    transform: rotate(0deg);
    border: 6px solidrgba(4, 220, 164, 1);
    border-left-color: transparent;
  }

  50% {
    transform: rotate(180deg);
    border: 6px solid #ffff;
    border-left-color: transparent;
  }

  100% {
    transform: rotate(360deg);
    border: 6px solidrgba(4, 220, 164, 1);
    border-left-color: transparent;
  }
}

/* ===================================
     Navbar
====================================== */

.navbar {
  padding: 0;
  z-index: 111;
  background-color: #fff !important;
  height: 60px;
  width: 100%;
}

.navbar-brand img {
  padding-left: 0;
}

.navbar .navbar-nav {
  margin-left: 22rem;
}

.navbar .navbar-nav .nav-link {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  margin-left: 30px;
  margin-right: 30px;
  font-weight: 600;
  transition: all 0.7s ease-in-out;
  position: relative;
  padding: 0;
  display: inline-block;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
}

.navbar .navbar-nav .nav-link.first-child {
  color: #000 !important;
}

.navbar .navbar-nav .nav-link.active {
  color: rgba(4, 220, 164, 1);
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link::before {
  content: attr(data-item);
  transition: 0.7s;
  color: rgba(4, 220, 164, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  overflow: hidden;
}

.navbar .navbar-nav .nav-link\:hover::before {
  width: 100%;
  transition: all 0.7s ease-in-out;
}

.navbar-fixed-top.scrolled {
  transition: .2s linear;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

/*side menu button*/
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  left: 12px;
  top: 20px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 10px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #000;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
  background-color: rgba(4, 220, 164, 1);
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: rgba(4, 220, 164, 1);
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/*Navbar Social icons*/
.navbar .social-icons {
  position: absolute;
  right: 20px;
}

.navbar .social-icons li {
  display: inline-block;
}

.navbar .social-icons ul li i {
  font-size: 13px;
}

.navbar .social-icons ul li a {

  height: 25px;
  line-height: 25px;
  width: 25px;

}

/* ===================================
    Side Menu
====================================== */

.side-menu {
  width: 45%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgb(227, 0, 127);
  z-index: 2032;
  height: 100%;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  overflow: hidden;
}

.side-menu .side-nav {
  margin-top: 30px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 35px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}

.side-menu-opacity {
  opacity: 0;
}

.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

.image {
  position: absolute;
  top: 30px;
  right: 50px;
}

/*side close btn*/
.side-menu .btn-close {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 31px;
  left: 50px;
  cursor: pointer;
  border: solid 1px #fff;
}

.header-appear~.side-menu .btn-close {
  top: 50px;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 19px;
  content: ' ';
  height: 28px;
  width: 2px;
  background: #fff;
  top: 6px;
}

.side-menu .btn-close:before {
  transform: rotate(35deg);
}

.side-menu .btn-close:after {
  transform: rotate(-35deg);
}

.side-menu .inner-wrapper {
  padding: 3.5rem 3rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .navbar-nav {
  display: block;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #fff;
  font-size: 15px;
}

.side-menu-footer .banner-icons ul {
  margin-bottom: 0;
}

.side-menu-footer .banner-icons ul li {
  display: inline-block;
}

.side-menu-footer .banner-icons ul li i {
  color: #fff;
}

.side-menu-footer .banner-icons ul li a:hover {
  background-color: #fff;
  transition: all .8s ease;
}

.side-menu-footer .banner-icons ul li a {
  border-radius: 50%;
  color: #000;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}

.side-menu-footer .banner-icons ul li a:hover i {
  color: rgba(4, 220, 164, 1);
}

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* ===================================
    About-Section
====================================== */

.about-section {
  background-color: #fff;
}

.about-section img {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-section .caption {
  padding-top: 3.5rem;
}

.caption .subheading {
  padding-left: 5px;
}

.caption .heading {
  color: #000;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -3px;
  word-spacing: -5px;
  margin-bottom: 40px;
}

.about-section .caption .text {
  color: #000;
  font-weight: 400;
  text-align: justify;
  padding-right: 25px;
  margin-bottom: 40px;
  font-size: 20px;
  padding-left: 5px;
}

.about-button {
  margin-top: 30px;
  margin-left: 5px;
}

/* ===================================
    Portfolio Section
====================================== */

.portfolio-padding {
  padding: 7.5rem 0 4rem;
}

.cbp-filter-style:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #f1c30f;
  position: relative;
  left: 12px;
  top: -2.5px;
  transform: rotate(45deg);
}

.cbp-l-filters-alignCenter {
  margin-bottom: 40px;
}

.cbp-l-filters-alignCenter .cbp-filter-item.cbp-filter-item-active {
  color: #e57bff;
}

.cbp-l-filters-alignCenter .cbp-filter-counter {
  background-color: #f1c30f;
}

.cbp-l-filters-alignCenter .cbp-filter-counter:after {
  border-top: 4px solid #f1c30f;
}

.cbp-l-filters-alignCenter .cbp-filter-item {
  color: #212622;
  margin: 0 10px 10px;
}

.cbp-caption-zoom .cbp-caption-activeWrap {
  opacity: 0;
  top: 5%;
  left: 5%;
  bottom: 5%;
  visibility: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.88);
  transition: all 0.4s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.cbp-caption-active .cbp-caption-activeWrap {
  width: 0;
  position: absolute;
  z-index: 1;
  height: 90%;
}

.cbp-item:hover .cbp-caption-activeWrap {
  left: 5%;
  width: 90%;
  height: 90%;
}

.cbp-caption-active .cbp-item:hover .cbp-caption-activeWrap,
.cbp-caption-active .cbp-item:focus .cbp-caption-activeWrap {
  opacity: 1;
  visibility: visible;
}

.cbp-l-grid-mosaic-flat .cbp-caption-activeWrap p {
  position: absolute;
  left: 20px;
  bottom: 40px;
  color: #212622;
  text-transform: capitalize;
  letter-spacing: 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all .4s;
}

.cbp-l-grid-mosaic-flat .cbp-l-caption-title {
  position: absolute;
  left: 20px;
  bottom: 30px;
  color: #212622;
  text-transform: capitalize;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all .4s;
}

.cbp-l-grid-mosaic-flat .work-icon {
  position: absolute;
  right: -50px;
  top: 10%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solidrgba(4, 220, 164, 1);
  background: rgba(4, 220, 164, 1);
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  transition: all .5s;
  opacity: 0;
  visibility: hidden;
}

.cbp-item:hover .cbp-caption-activeWrap p, .cbp-item:hover .cbp-l-caption-title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.cbp-item:hover .cbp-caption-activeWrap p {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.cbp-item:hover .cbp-l-caption-title {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

.cbp-item:hover .work-icon {
  right: 20px;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.cbp-caption-zoom .cbp-caption:hover .cbp-caption-defaultWrap {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cbp-l-grid-mosaic-flat .cbp-l-caption-title:after {
  background-color: rgba(4, 220, 164, 1);
}

/* ===================================
    hotels-section
====================================== */

.hotels-section {
  padding-top: 30px;
}

.hotels-section .num_counter {
  text-align: center;
  display: inline-block;
}

.hotels-section .num_counter i {
  font-size: 38px;
  margin-bottom: 15px;
}

.hotels-section .count-title {
  color: #000;
  padding: 5px 0;
  font-weight: 400;
  font-size: 42px;
  margin-bottom: 15px;
}

.hotels-section .count-text {
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

.hotels-section .counter-image {
  position: relative;
  bottom: 55px;
}

.hotels-section .counter-img {
  text-align: center;
}

/* ===================================
    Testimonials-section
====================================== */

.testimonial-section {
  background-color: rgba(0, 94, 104, 1);
}

.testimonial-section .heading {
  font-size: 60px;
  color: #000;
  font-weight: 700;
}

.testimonial-section .testimonial-text i {
  font-size: 40px;
  font-style: italic;
  color: #000;
}

.testimonial-section .testimonial-text {
  position: absolute;
  left: 66px;
  z-index: 1;
  top: 210px;
}

.testimonial-section .testimonial-img {
  position: relative;
  margin-bottom: 50px;
}

.testimonial-section .testimonial-carousel .name {
  padding-left: 70px;
}

.testimonial-section .testimonial-carousel .item h5 {
  font-size: 24px;
  font-weight: 700;
}

.testimonial-section .testimonial-carousel .item p {
  font-size: 24px;
  font-weight: 400;
}

.testimonial-section .testimonial-carousel .item .text {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-align: justify;
  padding-right: 50px;
}

.testimonial-section .testi-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ===================================
    Blog-Section
====================================== */

.blog-section {
  width: 100%;
}

.blog-section .carousel-section h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 40px;
}

.blog-section .text-area {
  padding: 50px 25px;
  background-color: #000;
}

.blog-section .subheading {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.blog-section .heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 45px;
}

.blog-section .text {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.blog-section .blog-navigation {
  position: absolute;
  left: 48.2%;
  top: 50%;
  z-index: 1;
  cursor: pointer;
}

.blog-section .blog-navigation a {
  text-decoration: none;
  border-radius: 50%;
  display: block;
  color: #fff;
  background-color: rgba(4, 220, 164, 1);
  height: 50px;
  line-height: 55px;
  width: 50px;
  border: 1px solid transparent;
  text-align: center;
}

.blog-section .blog-navigation a i {
  font-size: 20px;
}

/* ===================================
     Contact-Section
====================================== */

.contact-section {
  padding: 120px 0;
}

.contact-section .address-section {
  padding-right: 30px;
}

.contact-section .address-section .subheading {
  font-size: 20px;
  color: rgba(4, 220, 164, 1);
  font-weight: 400;
}

.contact-section .address-section .heading {
  font-size: 60px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.contact-section .address-section .text {
  margin-bottom: 40px;
  padding-right: 30px;
}

.contact-section .text {
  font-size: 16px;
  color: #535353;
  font-weight: 400;
}

.contact-section .address-section h5 {
  font-size: 18px;
  color: rgba(4, 220, 164, 1);
  font-weight: 400;
  margin-bottom: 50px;
}

.contact-section .address-section .media {
  margin-bottom: 30px;
}

.contact-section .address-section .media i {
  font-size: 25px;
  color: #535353;
}

.contact-section .address-section .media-body {
  margin-left: 20px;
}

.contact-section .address-section .media-body p {
  font-size: 14px;
  font-weight: 400;
  color: #535353;
  margin-top: 0;
  margin-bottom: 0;
}

.contact-section .form-section {
  padding-left: 10px;
}

.contact-section .form-section .heading {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  text-align: left;
}

.contact-section .form-section .form-control:focus {
  border-color: #ced4da;
  box-shadow: 0 0 0 0.0rem transparent;
}

.contact-section .form-section .button {
  margin-left: 15px;
  margin-top: 15px;
  padding-left: 53px !important;
  padding-right: 53px !important;
}

/* ===================================
     Google Map
===================================== */

.google-map {
  width: 100%;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 100%;
  width: 100%;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 100%;
  width: 100%;
}

.map {
  filter: grayscale(100%);
}

.google-map .gm-style .place-card-large {
  display: none;
}

/* ===================================
   Footer
====================================== */

footer {
  padding: 120px 0;
  background-color: #000;
}

footer .footer-social-icons ul {
  margin-bottom: 0;
}

.footer-social-icons ul li {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 15px;
  display: inline-block;
}

.footer-social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #fff;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

footer p {
  margin-top: 8px !important;
  font-size: 11px;
  text-align: right;
  color: #fff;
}

/* ===================================
    Stand Alone page
====================================== */

.main-page {
  padding: 120px 0;
}

.main-page .standalone-heading {
  padding-bottom: 100px;
  padding-top: 100px;
}

.main-page .standalone-heading .heading {
  font-size: 50px;
}

.main-page p {
  font-size: 16px;
  font-weight: 400;
}

.main-page .sub-heading {
  font-size: 20px;
  margin-bottom: 5px;
}

.main-page .standalone-area .heading {
  font-size: 40px;
  margin-bottom: 20px;
}

.main-page .row-image {
  position: relative;
}

.main-page .row-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.standalone-area .standalone-row {
  margin-bottom: 40px;
}

.standalone-area .standalone-row:last-child {
  margin-bottom: 0;
}

.main-page .standalone-row .row-text {
  padding-left: 30px;
  text-align: center;
}

.standalone-row:nth-child(2) .row-text {
  padding-left: 0;
  padding-right: 30px;
}

/* Image Hover*/
.standaloneoverlay {
  position: absolute;
  transition: all 0.3s ease;
  opacity: 0;
  background-color: rgba(4, 220, 164, 1);
}

.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}

.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(4, 220, 164, 1);
  cursor: pointer;
}

.hover-effect:hover .overlayBottom {
  height: 100%;
}
.btn.btn-book-red.btn-searchroom {
    cursor: pointer;
}
/* ===================================
     Media Queries
====================================== */

@media (width: 1920px) {

  /*Navbar*/
  .navbar .social-icons {
    right: 40px;
  }

  /*About-Section*/
  .about-section {
    padding-bottom: 0;
    padding-top: 0;
  }

  .about-section .image img {
    width: 80%;
  }

  .about-section {
    padding-top: 18.5rem;
  }

  /*Blog Section*/
  .blog-section .text-area {
    padding: 142px 160px;
  }

  .blog-section .blog-navigation {
    left: 48.8%;
  }
}

@media (max-width: 1200px) {
  .btn {
    font-size: 16px;
  }

  /*Navbar*/
  .navbar .navbar-nav {
    margin-left: 5rem;
  }

  .sidemenu_btn {
    left: 0;
  }

  /*About Section*/
  .about-section {
    padding-top: 28.5rem;
  }

  .caption .heading {
    font-size: 55px;
  }

  /*Blog Section*/
  .blog-section img {
    height: 100%;
  }

  /*Contact Section*/
  .contact-section .address-section .heading {
    font-size: 50px;
  }

  .contact-section .address-section {
    padding-right: 0;
  }

  /*StandAlone page*/
  .header .heading {
    font-size: 50px;
  }

  .header {
    height: 100%;
    padding-top: 1rem;
  }

  .header h2 {
    font-size: 55px;
  }

  .header .header-text {
    padding-top: 11.5rem;
  }
}

@media (max-width: 992px) {

  /*Navbar*/
  .navbar-brand img {
    padding-left: 5px;
    height: 50px;
  }

  .navbar .social-icons {
    display: none;
  }

  .sidemenu_btn {
    left: 92%;
  }

  /*Side Menu*/
  .side-menu {
    width: 50%;
  }

  .side-menu-footer p {
    font-size: 14px;
  }

  /*About Section*/
  .about-section {
    padding-top: 6.5rem;
  }

  .about-section img {
    width: 85%;

  }

  .about-section .caption .heading {
    font-size: 42px;
    word-spacing: 0;
    text-align: center;
  }

  .about-section .caption .text {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    font-size: 19px;
  }

  .about-button {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-button {
    margin-left: 0;
  }

  /*Counter Section*/
  .hotels-section .num_counter {
    padding-bottom: 60px;
  }

  .hotels-section .num_counter:last-child {
    padding-bottom: 0;
  }

  .hotels-section .counter-image {
    position: inherit;
  }

  /*Testimonial Section*/
  .testimonial-section .testimonial-text {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .testimonial-section .heading {
    font-size: 50px;
  }

  .testimonial-section .testimonial-text i {
    font-size: 35px;
  }

  .testimonial-section .testimonial-carousel .item .text {
    padding-right: 0;
    text-align: center;
  }

  .testimonial-section .testimonial-carousel .name {
    padding-left: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  /*Blog Section*/
  .blog-section .blog-navigation {
    display: none;
  }

  .blog-section .heading {
    font-size: 34px;
  }

  /*Contact Section*/
  .contact-section .address-section {
    padding-right: 0;
  }

  .contact-section .address-section .heading {
    font-size: 44px;
    text-align: center;
  }

  .contact-section .text {
    text-align: center;
  }

  .contact-section .address-section .text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .contact-section .form-section .heading {
    text-align: center;
  }

  .contact-section .address-section .subheading {
    text-align: center;
  }

  .contact-section .address-section .media-body p {
    font-size: 15px;
  }

  .contact-section .address-section h5 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .contact-section .address-section .media {
    display: block;
    text-align: center;
  }

  .contact-section .address-section .media-body {
    margin-left: 0;
  }

  .contact-section .form-section {
    padding-left: 0;
    margin-top: 20px;
  }

  .contact-section .form-section .contact-button {
    width: 100%;
    text-align: center;
  }

  /*Footer*/
  footer .footer-social-icons ul {
    text-align: center;
  }

  footer p {
    text-align: center;
  }

  /*StandAlone page*/
  .main-page .standalone-row .row-text {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .standalone-row:nth-child(2) .row-text {
    padding-right: 0;
  }

  .standalone-area .standalone-row {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {

  /* Policy & Term */
  .border-col {
    border-right: none !important;
  }

  .copyright-tc-2 {
    margin-left: 0 !important;
  }

  .footer-tc-info {
    text-align: center;
    margin-bottom: 5px;
  }

  .about-tc {
    padding: 0 10%;
    margin-top: 100px !important;
    margin-bottom: 100px !important;

  }

  /*WoW Animation*/
  .wow {
    visibility: visible !important;
    animation: none !important;
  }

  /*Navbar*/
  .navbar {
    height: 70px;
  }

  .navbar-brand img {
    max-width: 85%;
    height: auto;
  }

  .about-section .caption {
    padding-top: 2rem;
  }

  .sidemenu_btn {
    top: 16px;
  }

  .sidemenu_btn {
    left: 85%;
  }

  /*Side Menu*/
  .side-menu {
    width: 100%;
  }

  .side-menu-footer p {
    font-size: 12px;
  }

  .side-menu-footer p {
    font-size: 12px;
  }

  /*About Section*/
  .about-section img {
    width: 100%;
    margin-left: 0;
  }

  /*Portfolio Section*/
  .cbp-popup-ready.cbp-popup-lightbox .cbp-popup-next,
  .cbp-popup-ready.cbp-popup-lightbox .cbp-popup-prev {
    visibility: hidden;
  }

  /*Testimonial Section*/
  .testimonial-section .testimonial-carousel .item .text {
    font-size: 16px;
  }

  /*Contact Section*/
  .contact-section .address-section .text {
    font-size: 14px;
  }

  /*Footer*/
  footer p {
    font-size: 12px;
  }

  /*StandAlone Page*/
  .main-page .standalone-heading .heading {
    font-size: 38px;
  }

  .main-page p {
    font-size: 14px;
  }

  .main-page .standalone-area .heading {
    font-size: 32px;
  }

  .experience-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hotels-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .testimonial-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-section {
    padding: 0;
  }

  .h2, h2 {
    font-size: 1.75rem;
  }

  .h3, h3 {
    font-size: 1.3rem;
  }

  .experience-item {
    font-size: 25px !important;
  }

  .logo-prure {
    max-width: 55% !important;
  }

  .mf {
    float: none !important;
    padding-top: 50px;
    padding-left: 30px;
  }

  .mf-text {
    text-align: center !important;
  }

  .testimonial-section .testimonial-carousel .item p {
    font-size: 16px !important;
  }

}

@media (max-width: 370px) {
  .testimonial-section .testimonial-carousel .item p {
    font-size: 16px !important;
  }

  .mf {
    float: none !important;
    padding-top: 50px;
    padding-left: 30px;
  }

  .mf-text {
    text-align: center !important;
  }

  .h2, h2 {
    font-size: 1.75rem;
  }

  .h3, h3 {
    font-size: 1.3rem;
  }

  .logo-prure {
    max-width: 55%;
  }

  .experience-item {
    font-size: 25px !important;
  }

  /* Policy & Term */
  .border-col {
    border-right: none !important;
  }

  .copyright-tc-2 {
    margin-left: 0 !important;
  }

  .footer-tc-info {
    text-align: center;
    margin-bottom: 5px;
  }

  .about-tc {
    padding: 0 10%;
    margin-top: 100px !important;
    margin-bottom: 100px !important;

  }

  .experience-section {
    padding-left: 0;
    padding-right: 0;
  }


  /*About Section*/
  .about-section .caption .heading {
    font-size: 35px;
  }

  .about-section .caption {
    padding-top: 0;
  }

  .caption .heading {
    margin-bottom: 20px
  }

  .about-section .caption .text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-section img {
    width: 85%;
    margin-left: 35px;
  }

  /*Testimonial Section*/
  .testimonial-section .heading {
    font-size: 38px;
  }

  .testimonial-section .testimonial-text i {
    font-size: 30px;
  }

  .testimonial-section .testimonial-text {
    margin-bottom: 20px;
  }

  /*Contact Section*/
  .contact-section .address-section .heading {
    font-size: 38px;
  }

}