/*----------------------------------------------------------------------------------------------------
  COLORS
----------------------------------------------------------------------------------------------------*/
:root {
  --main: #61D2B4;
  --main-dark: #33b391;
  --content: #f8f8f8;
  --content-dark: #f1f1f1;
  --border: #d5d7d9;
  --slicknav: #f8f9fa;
  --contact: #343a40;
  --footer: #292f35;
  --overlay: #20252a;
}



/*----------------------------------------------------------------------------------------------------
  GOOGLE FONTS
----------------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700");
@import url('https://fonts.googleapis.com/css?family=Playfair+Display');



/*----------------------------------------------------------------------------------------------------
  GENERAL
----------------------------------------------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

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

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: #61D2B4;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

tr {
  line-height: 40px;
}

/*----------------------------------------------------------------------------------------------------
  SECTIONS
----------------------------------------------------------------------------------------------------*/
.section {
  padding: 10px 0;
}

.section-header {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.section-title {
  margin-top: 0;
  text-transform: uppercase;
  color: #333;
  position: relative;
}

.section-subtitle {
  margin-top: 15px;
  color: #333;
}

.section-header .lines {
  margin: auto;
  width: 70px;
  position: relative;
  border-top: 2px solid #61D2B4;
  margin-top: 15px;
}



/*----------------------------------------------------------------------------------------------------
  FRAMEBOX
----------------------------------------------------------------------------------------------------*/
.framebox {
  padding: 0;
  border: 1px solid #f1f1f1;
  border-radius: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.framebox .image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.framebox-content {
  padding: 30px;
}

.framebox-content.left {
  padding-right: 0;
}

.framebox-content.right {
  padding-left: 0;
}

.framebox-title {
  margin-bottom: 30px;
  font-size: 30px;
  color: #61D2B4;
  text-transform: uppercase;
}

@media screen and (max-width: 992px) {
  .framebox-content.left {
    padding-right: 30px;
  }
  .framebox-content.right {
    padding-left: 30px;
  }
  .framebox-title {
    font-size: 20px;
  }
}



/*----------------------------------------------------------------------------------------------------
  BUTTONS
----------------------------------------------------------------------------------------------------*/
.btn {
  display: inline-block;
  font-size: 14px;
  padding: 11px 40px;
  border: 0;
  border-radius: 0;
  /*background: transparent;*/
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.btn:focus,
.btn:active {
box-shadow: none;
outline: none;
color: #fff;
}

.btn:hover {
color: #fff;
}

.btn-common {
border: 1px solid #61D2B4;
border-radius: 30px;
background: #61D2B4;
}

.btn-common:hover {
background: #33b391;
border-color: #33b391;
}

.btn-close {
border: 1px solid #ff0000;
border-radius: 30px;
background: #ff0000;
}

.btn-close:hover {
background: #d80000;
border-color: #d80000;
}

.button:focus {
outline: none !important;
}

#leftBtn,
#rightBtn {
  padding: 0px 11px;
  border-radius: 5px;
  border-radius: 5px;
}


/*----------------------------------------------------------------------------------------------------
LOADER
----------------------------------------------------------------------------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 1071;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0 auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #61D2B4;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}



/*---------------------------------------------------------------------------------------------------- 
  BACK TO UP 
----------------------------------------------------------------------------------------------------*/
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: #61D2B4;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}



/*----------------------------------------------------------------------------------------------------
  NAVBAR
----------------------------------------------------------------------------------------------------*/
.navbar .navbar-nav .nav-link {
  color: #fff;
  padding: 0 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: #61D2B4;
}

.navbar .navbar-nav .nav-link.active {
  color: #fff !important;
  background: #61D2B4;
}

.navbar .navbar-nav .nav-link-extra {
  margin-left: 10px;
  text-transform: uppercase;
  border-radius: 30px;
  background: transparent;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
  -moz-box-shadow: inset 0 0 0 2px #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.navbar .navbar-nav .nav-link-extra:hover {
  -webkit-box-shadow: inset 0 0 0 2px #61D2B4;
  -moz-box-shadow: inset 0 0 0 2px #61D2B4;
  box-shadow: inset 0 0 0 2px #61D2B4;
}

.navbar .navbar-nav .nav-link-extra.inverse {
  color: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav .nav-link-extra.inverse:hover {
  color: #61D2B4;
  -webkit-box-shadow: inset 0 0 0 2px #61D2B4;
  -moz-box-shadow: inset 0 0 0 2px #61D2B4;
  box-shadow: inset 0 0 0 2px #61D2B4;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 60px;
}

.top-nav-collapse {
  z-index: 1031;
  top: 0 !important;
  padding: 0;
  box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.06);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  background: #fff !important;
}

.top-nav-collapse .navbar-nav .nav-link {
  color: #333 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: #61D2B4 !important;
}

.top-nav-collapse .navbar-nav .nav-link.active {
  color: #fff !important;
}

.top-nav-collapse .navbar-nav .nav-link-extra,
.top-nav-collapse .navbar-nav .nav-link-extra.inverse {
  color: #61D2B4 !important;
  -webkit-box-shadow: inset 0 0 0 2px #61D2B4;
  -moz-box-shadow: inset 0 0 0 2px #61D2B4;
  box-shadow: inset 0 0 0 2px #61D2B4;
}

.top-nav-collapse .navbar-nav .nav-link-extra:hover,
.top-nav-collapse .navbar-nav .nav-link-extra.inverse:hover {
  background: #61D2B4;
  color: #fff !important;
}

.indigo {
  background: transparent;
}

.dropdown-toggle::after {
  display: none;
}

.slicknav_menu {
  display: none;
}

.slicknav_menu .slicknav_icon-bar {
  background: #61D2B4;
}

.slicknav_btn {
  border-color: #61D2B4;
}

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

@media screen and (max-width: 991px) {
  .navbar-header {
    width: 100%;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
    background: #fff;
  }
  .slicknav_nav a {
    color: #333;
  }
  .slicknav_nav .active a {
    background: #61D2B4;
    color: #fff;
  }
  .slicknav_nav a:hover,
  .slicknav_nav .active {
    color: #61D2B4;
    background: #f8f9fa;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f8f9fa;
    color: #61D2B4;
  }
  .top-nav-collapse .slicknav_nav {
    padding-top: 15px;
  }
}



/*----------------------------------------------------------------------------------------------------
  HEADER
----------------------------------------------------------------------------------------------------*/
#hero-area {
  position: relative;
  overflow: hidden;
  background: url(../images/parallax/hero.jpg) fixed no-repeat;
  background-size: cover;
  color: #fff;
}

#hero-area .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #20252a;
  opacity: 0.75;
}

#hero-area .carousel-container {
  padding-top: 100px;
  padding-bottom: 50px;
}

#hero-carousel {
  width: 100%;
  height: 360px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
}

#hero-carousel .carousel-item img {
  min-width: 100%;
  min-height: 360px;
}

#hero-carousel .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #61D2B4;
  background-color: transparent;
  cursor: pointer;
}

#hero-carousel .carousel-indicators li:hover {
  border: 1px solid #fff;
  background-color: #fff;
}

#hero-carousel .carousel-indicators li.active {
  background-color: #61D2B4;
}

#hero-carousel .carousel-control-prev,
#hero-carousel .carousel-control-next {
  width: 5%;
}



/*----------------------------------------------------------------------------------------------------
  CALL TO ACTION SECTION
----------------------------------------------------------------------------------------------------*/
#cta {
  padding: 20px 0;
  background: #343a40;
}

.cta-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.cta-box img {
  max-height: 56px;
}

.cta-text {
  max-width: 300px;
  text-align: center;
}

.cta-text p {
  margin: 0;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .cta-box {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cta-text {
    min-width: 100%;
    padding: 20px 0;
  }
}



/*----------------------------------------------------------------------------------------------------
  SERVICES SECTION
----------------------------------------------------------------------------------------------------*/
.service-header {
  line-height: 0;
}

.service-icon {
  display: inline-block;
  width: 100%;
  overflow-y: hidden;
  position: relative;
}

.service-icon > span {
  display: block;
  position: relative;
  left: 22px;
  top: 12px;
  width: 75px;
  height: 75px;
  background: #343a40;
  border-radius: 5px;
  text-align: center;
  transform: rotate(60deg);
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.service-icon > span i {
  font-size: 30px;
  line-height: 72px;
  color: #fff;
  transform: rotate(-60deg);
}

.service-box:hover .service-icon > span {
  background: #33b391;
}

.service-content {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #d5d7d9;
  background: #f8f8f8;
  color: #333;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  transition: all 300ms ease-in-out 0s;
}

.service-content:after {
  content: "";
  display: block;
  position: absolute;
  margin-top: -55%;
  margin-left: 100%;
  border-top: 500px solid #fff;
  border-left: 500px solid transparent;
  opacity: 0;
  transform: scale(2);
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  transition: all 500ms ease-in-out 0s;
}

.service-box:hover .service-content {
  background: #61D2B4;
  color: #fff;
}

.service-box:hover .service-content:after {
  margin-left: 0;
  opacity: 0.1;
}

.service-title {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-text {
  display: block;
  display: -webkit-box;
  height: 105px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 992px) {
  .service-box {
    margin-bottom: 30px;
  }
  .service-title {
    font-size: 18px;
  }
}



/*----------------------------------------------------------------------------------------------------
  TESTIMONIAL SECTION
----------------------------------------------------------------------------------------------------*/
#testimonial {
  background: url(../images/parallax/testimonial.jpg) fixed no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.testimonial-item:before {
  content: "\201C";
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: 0;
  left: 15px;
  line-height: 1;
  font-size: 150px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.testimonial-text {
  margin: 0;
  padding: 36px 10px 30px 56px;
}

.testimonial-author {
  font-weight: 700;
  text-align: center;
}

.owl-theme .owl-controls .owl-page span {
  background: #61D2B4;
}

.owl-theme .owl-controls {
  margin-top: 20px;
}



/*----------------------------------------------------------------------------------------------------
  STUDENTS SECTION
----------------------------------------------------------------------------------------------------*/
#students {
  /*position: relative;*/
  overflow: hidden;
  background: url(../images/parallax/students.jpg) fixed no-repeat;
  background-size: cover;
  color: #fff;
}

#students .section-title {
  color: #fff;
}

#students .section-subtitle {
  color: #fff;
}

.students-content {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.students-title {
  margin-bottom: 20px;
  color: #61D2B4;
  font-size: 30px;
  text-transform: uppercase;
}

.students-show img {
  position: absolute;
  bottom: -120px;
}

@media screen and (max-width: 991px) {
  .students-title {
    font-size: 20px;
  }
  .students-show {
    display: none;
  }
}



/*----------------------------------------------------------------------------------------------------
  CONTACT SECTION
----------------------------------------------------------------------------------------------------*/
#contact {
  position: relative;
  overflow: hidden;
  background: url(../images/parallax/map.png) fixed no-repeat center #343a40;
  background-size: cover;
  color: #fff;
}

.contact-block h1.main-title {
  margin-bottom: 40px;
  color: #61D2B4;
}

.contact-block p {
  margin-bottom: 0;
}

.contact-block p span {
  color: #61D2B4;
  padding: 0 10px;
}

.bank-details {
  margin-top: 30px;
  border-left: 0;
}

.map-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
}

.map-holder iframe {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .bank-details {
    margin-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media screen and (max-width: 991px) {
  .contact-block {
    margin-bottom: 30px;
  }
  .contact-block h1.main-title {
    font-size: 30px;
  }
}
/*----------------------------------------------------------------------------------------------------
  BOOKING SECTION
----------------------------------------------------------------------------------------------------*/
.sizing {
  font-size: 30px;
}
div.big {
  display: block;
}
div.small {
  display: none;

}

@media(max-width: 780px) {
  div.big {
    display: none;
  }

  div.small {
    display: block;
  }
  .small div:first-child {
    background: gray;
    margin: 0 auto;
    padding: 10px 20px;
    width: 100%;
    text-align: right;
  }

  table#smTable {
    width: 100%;
  }
  .anim {
    animation: tableOpacity 2.5s;
  }
  @keyframes tableOpacity {
    0% {opacity: 1.0;}
    50% {opacity: 0.5;}
    100% {opacity: 1.0;}
  }
  select#select {
    display: block;
    text-align: center;
    margin: auto;
  }
  .small div:last-child {
    background: gray;
    padding: 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  #left, #right {
    border-right: 2px solid #fff;
    padding-right: 10px;
    color: #fff;
    font-size: 25px;
  }
  i.fa-bars {
    color: #fff;
    font-size: 25px;
  }
}


/*----------------------------------------------------------------------------------------------------
  FOOTER
----------------------------------------------------------------------------------------------------*/
footer {
  background: #292f35;
  padding: 20px 0;
  color: #fff;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #61D2B4;
}

.copyright {
  margin-top: 10px;
  text-align: left;
}

.design {
  margin-top: 10px;
  text-align: right;
}

.design p i {
  font-size: 0.8em;
  color: #ff0000;
}

@media screen and (max-width: 767px) {
  .copyright,
  .design {
    text-align: center;
  }
}



/*----------------------------------------------------------------------------------------------------
  PAGE MODALS
----------------------------------------------------------------------------------------------------*/
.page-modal {
  padding: 0 !important;
}

.page-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.page-modal .modal-header {
  background: #343a40;
  border-bottom: 0;
}

.page-modal .modal-title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.page-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: transparent;
}

.page-modal .close-modal:hover {
  opacity: 0.3;
}

.page-modal .close-modal .lr {
  z-index: 1051;
  width: 1px;
  height: 50px;
  margin-left: 25px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
}

.page-modal .close-modal .lr .rl {
  z-index: 1052;
  width: 1px;
  height: 50px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #fff;
}

.page-modal .modal-body {
  padding: 60px 60px 0;
}

.page-modal .framebox {
  margin-bottom: 40px;
}

.page-modal .modal-footer {
  justify-content: center;
  border-top: 0;
}

.page-modal .modal-footer button i {
  margin-right: 10px;
  font-size: 12px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .page-modal .modal-title {
    font-size: 30px;
  }
  .page-modal .modal-body {
    padding: 20px 20px 0;
  }
  .page-modal .framebox {
    margin-bottom: 30px;
  }
}



/*----------------------------------------------------------------------------------------------------
  BOOKING MODAL
----------------------------------------------------------------------------------------------------*/
#booking-modal.page-modal .modal-dialog {
  margin: auto;
  max-width: 600px;
}

#booking-modal iframe {
  width: 100%;
  min-height: 350px;
  border: 0;
}

.modal-dialog {
  color: #000 !important;
}
/*----------------------------------------------------------------------------------------------------
  RESERVATION PAGE
----------------------------------------------------------------------------------------------------*/

i.space {
    padding: 0 20px!important;
}
@media screen and (max-width: 400px) {
  i.space {
    padding: 0 20px!important;
  }
}
  /*----------------------------------------------------------------------------------------------------
    COOKIE CONSENT
  ----------------------------------------------------------------------------------------------------*/
.cc-link {
  color: #61D2B4 !important;
  text-decoration: none;
}

.cc-link:hover {
  color: #33b391 !important;
  text-decoration: underline;
}

.cc-btn {
  border-radius: 30px;
  text-transform: uppercase;
}

.cc-btn:hover {
  background-color: #33b391 !important;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.title {
  margin: 0;
}

.ny-booking-btn {
  background-color: #007bff; /* Customize button color */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.ny-booking-btn:hover {
  background-color: #0056b3; /* Darker shade for hover effect */
}