/**
Template Name: renny
*/

body {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  color: #000000;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 990;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo img {
  width: auto;
  max-height: 48px;
}


.purple {
	color: #c6c5d5;
}
.brown {
	color: #e8c766;
}


/*--------------------------------------------------------------
# NAV
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0 25px 0 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e8c766;
}

.navbar ul.dropdown {
  display: none;
  position: absolute;
  left: 10px;
  top: 0;
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 10px;
}

.navbar ul li:hover > ul.dropdown {
  margin: 40px 0 0 0!important;
  padding: 10px 10px 10px 10px!important;
  display: block;
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease-in;
}
.navbar ul.dropdown a {
  padding:5px 10px 5px 10px!important;
  font-size: 75%;
  text-decoration: none;
}

@media (max-width: 1200px) {
#header .logo img
{
  width: auto;
  max-height: 32px;
}	
	
.navbar a, .navbar a:focus {
  font-size: 15px;
  padding: 10px 0 10px 15px;
  }
	
.navbar ul.dropdown {
  left: -5px;
   }
}

.mobile-nav-toggle {
  color: #384046;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
	
  .navbar ul li:hover > ul.dropdown {
   display: none;
   }		
	
	a.btn.scrollto {
	margin: 15px;
	}	
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #384046;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e8c766;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e8c766;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

#bg-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

a {
  color: #e8c766;
  text-decoration: underline;
}

a:hover {
  color: #e8c766;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

h2 {
	font-size:2.6rem;
}


.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e8c766;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e8c766;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.space {
  width: 100%;
  height: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

.img-rounded {
    border-radius: 30%;
    border: 3px dotted #bcae7a;
}


@media (max-width: 576px) {
    .img-rounded {
        border-radius: 10%;
    }
}

.border-dash {
    border-bottom: 3px dotted #ffffff; 
}



/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  padding: 150px 0 100px 0;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 70px;
}
/*
.hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
*/
.hero .container {
  z-index: 2;
}

.hero h1, .hero h2 {
  margin: 0 0 25px 0;
  font-size: 50px;
  line-height:100%;
}

@media (max-width: 1200px) {
    .hero h1, .hero h2 {
        font-size: 40px;
    }
}

@media (max-width: 997px) {
    .hero h1, .hero h2 {
        font-size: 32px;
    }
}

.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6 {
  color: #0000000!important;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}
.hero p {
 font-size: 17px;
}

@media (max-width: 992px) {
 .hero p {
  font-size: 16px;
  }
}

.hero .scrollto, button {
	margin: 5px;
}

.dm-serif-display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}


.btn, .btn-secondary, button.btn-secondary {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 2rem!important;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.btn:hover {
  background: #dc3b61;
}

a.btn {
  color: #fff;
}

a.btn-secondary, .btn-secondary {
  display: block;
  background: #ffffff!important;
}

.btn-secondary:hover {
  color: #000000!important;
}

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

@media (max-width: 1024px) {
  #hero h1, h1 {
    font-size:30px;
	  line-height: normal;
  }
  h2 {
    font-size: 30px!important;
  }
  h3 {
    font-size: 24px!important;
  }
  h4 {
    font-size: 20px!important;
  }
  h5 {
    font-size: 20px!important;
  }	
}

    
.modal:before {
  content: "";
  background: rgba(13, 150, 167, 0.99);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}
.embed-responsive::before {
    display: block;
    content: ""
}
.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}
.embed-responsive-21by9::before {
    padding-top: 42.85714%
}
.embed-responsive-16by9::before {
    padding-top: 56.25%
}
.embed-responsive-4by3::before {
    padding-top: 75%
}
.embed-responsive-1by1::before {
    padding-top: 100%
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 150px 0;
}

.section-bg {
  background-color: #c6c5d5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.intro .icon-box {
  text-align: center;
  padding: 30px 20px;
}

.intro .icon-box .icon {
  margin: 0 auto;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.intro .icon-box .icon i {
  color: #e8c766;
  font-size: 50px;
}

.intro .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.intro .icon-box p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.intro .icon-box:hover h4 a,
.intro .icon-box:hover .icon i {
  color: #e8c766;
}

.text-logos h3 {
  font-weight: 600;
  font-size: 32px;
}

.text-logos-content p {
  font-size: 16px;
}

.text-logos-logo {
  margin-bottom: 50px;
  text-align: center!important;
}

.text-logos-logo img {
  max-width: 90%;
  height: auto;
}


/*
.person .member {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
  border-radius: 1rem;
}
*/
.person .member img {
  width: 170px!important;
  height: 170px!important;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 0 15px 0!important;
}

.person .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #e8c766;
}

.person .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
}

.person .member p {
  font-size: 15px;
}

.person .member .social {
  margin-top: 15px;
}

.person .member .social a {
  color: #919191;
  transition: 0.3s;
}

.person .member .social a:hover {
  color: #e8c766;
}

.person .member .social i {
  font-size: 24px;
  margin: 0 2px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 1rem;
}

.testimonials .testimonial-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 15px 0 0 0;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000000;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e8c766;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #e8c766;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e8c766;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e8c766;
}

.text-big-photo-img {
  padding-bottom: 55%;
  width: 100%;
  border-radius: 1rem;
}

.text-big-photo .box {
  padding: 30px;
  font-size: 16px;
  border: 1px solid #e8c766;
  border-radius: 6px;
  transition: ease-in-out 0.3s;
}

.text-big-photo .box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #e8c766;
}

.text-big-photo .info h4, .text-big-photo .info p {
  padding: 0!important;
}

.carousel-fade .carousel-item {
 opacity: 0;
 transition-duration: .6s;
 transition-property: opacity;
}

.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
 opacity: 0;
}

.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
 transform: translateX(0);
 transform: translate3d(0, 0, 0);
}

#accordion .card-header {
  padding: 15px 0 15px 0;
  font-weight: 600;
  color: #e8c766 !important;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.5s;
  border-top: 1px solid #e8c766;
}

#accordion h2 {
	font-size: 18px!important;
}

.card-header:after {
  content: "+";
}

.card-header[aria-expanded=true]:after {
  content: "-";
}

.card-header:after, .card-header[aria-expanded=true]:after {
  font-family: "Font Awesome 5";
  font-weight: 900;
  color: #e8c766 !important;
  float: right;
}

.contact .info h2 {
	font-size: 18px!important;
}

.contact .info-wrap {
  padding: 30px;
  background: #fff;
  border-radius: 4px;
}
.contact .info-wrap h2 {
  padding: 10px 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #e8c766;
}

.contact img.icon {
  width: 45px;
  height: auto;
  float: left;
}

.contact .info i {
  font-size: 20px;
  color: #ffffff;
  float: left;
  width: 44px;
  height: 44px;
  background: #e8c766;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info {
  border-left: 1px solid #e8c766;
}

.contact .info.box h2 {
  padding: 0;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #e8c766;
}

.contact .info h4 {
  padding: 10px 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #e8c766;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 16px;
}

input, textarea {
  padding: 10px;
  width: auto;
  font-size: 16px;
  color: #e8c766;
  border: 1px solid #e8c766;
  border-radius: 0.5rem !important;
}

input[type=text], input[type=email] {
	 width: 100%!important;
}

textarea {
  border-bottom: 1px solid #e8c766;
  width: 100%!important;
}

input[type=submit] {
  padding: 15px;
  width: auto;
  color: #fff;
  background-color: #e8c766;
  height: auto;
  font-size: 16px;
  cursor: pointer;
  border: 0;
  border-radius: 2rem !important;
}

input[type=submit], .wpcf7-previous {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
	display: inline!important;
}

.wpbc_container_booking_form .wpbc_booking_form_simple .wpbc__field label {
  flex: 1 1 100%;
  line-height:1.5rem!important;
}



@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.space {
    height: 50px;
}


@media (max-width: 991px) {
	body {
	  font-size: 14px;
	}
	
	.btn, .btn-secondary, button.btn-secondary {
	  font-size: 12px;
	  padding: 12px 12px;
	}
	
}