/* Sección de Preguntas Frecuentes */
.faq-section {
  padding: 50px 15px !important;
  background-color: #f5f5f5 !important;
}

.section-title {
  font-size: 28px !important;
  font-weight: bold !important;
  color: #000 !important;
  margin-bottom: 10px !important;
}

.section-subtitle {
  font-size: 18px !important;
  color: #666 !important;
  margin-bottom: 40px !important;
}

.faq-cards .card {
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden !important;
  transition: all 0.3s ease-in-out !important;
}

.faq-cards .card:hover {
  transform: translateY(-5px) !important;
}

.card-img-top {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
}

.card-body {
  padding: 20px !important;
}

.card-title {
  font-size: 20px !important;
  font-weight: bold !important;
  color: #333 !important;
  margin-bottom: 15px !important;
}

.card-text {
  font-size: 16px !important;
  color: #555 !important;
  margin-bottom: 20px !important;
  text-align: justify !important;
}

.btn-primary {
  background-color: #13aeac !important;
  border-color: #13aeac !important;
  font-size: 16px !important;
  padding: 10px 20px !important;
  border-radius: 5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: #0f9b9b !important;
  border-color: #0f9b9b !important;
}


------
.about {
  padding: 5px !important; /* Espaciado adicional */
  overflow: hidden !important; /* Evitar desbordamiento del contenido */
}

.about_img {
  display: flex !important; /* Usar flexbox para centrar el contenido */
  justify-content: center !important; /* Por defecto, centrar el contenido en pantallas grandes */
}

.about_img figure {
  margin: 0 !important; /* Eliminar márgenes alrededor de la figura */
}

.about_img img {
  width: 100% !important; /* Hacer que la imagen ocupe todo el ancho disponible */
  height: auto !important; /* Mantener la proporción de la imagen */
  max-width: 90%; /* Limitar el ancho máximo para evitar que la imagen se vuelva demasiado grande */
}

.titlepage {
  overflow-wrap: break-word !important; /* Permitir que el texto se divida y no se corte */
}

.titlepage h2 {
  font-size: 50x !important; /* Tamaño de encabezado consistente */
}

.titlepage p {
  font-size: 16px !important; /* Asegurarse de que el texto no se corte */
  line-height: 1.5 !important; /* Mejora la legibilidad */
}

.read_more {
  display: inline-block !important; /* Asegura que el botón se mantenga centrado */
  margin-top: 20px !important; /* Espaciado arriba */
  padding: 10px 20px !important; /* Espaciado interno */
  background-color: #13aeac !important; /* Color de fondo del botón */
  color: white !important; /* Color del texto */
  text-decoration: none !important; /* Sin subrayado */
  border-radius: 5px !important; /* Bordes redondeados */
}

/* Ajustes específicos para dispositivos móviles */
@media (max-width: 767px) {
  .about_img {
    justify-content: flex-start !important; /* Alinear a la izquierda en móviles */
  }

  .about_img figure {
    padding-right: 20px !important; /* Espacio a la derecha de la figura */
  }

  .titlepage h2 {
    font-size: 30px !important; /* Tamaño de encabezado consistente en móviles */
  }

  .titlepage p {
    font-size: 14px !important; /* Ajustar tamaño de párrafo en móviles */
    padding-right: 20px; /* Agregar espacio a la derecha para evitar corte */

  }
}

@media (max-width: 767px) {
  .gallery_text, .gallery_text1, .gallery_text2 {
    text-align: center;
  }
  .galleryh3 h3 {
    font-size: 1.5rem;
  }
  .galleryh3 h5 span {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .news_box {
    text-align: center;
  }
  .news_img figure {
    margin: 0 auto;
  }
  .news_room h3 {
    font-size: 1.25rem;
  }
  .news_room p {
    font-size: 0.875rem;
  }
}

body {

  color: #444444;
}

a {
  color: #fdfdfd;
  text-decoration: none;
}



a:hover {
  color: #000000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #303131;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #22b17a;
  border-top-color: #2c2626;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgb(83, 161, 109);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #22b17a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: linear-gradient(#1c222aa9, #1c222a7f);
}


#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: right;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: right;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  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: #1ebbbd;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #13aeac;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #157768;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 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: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  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-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.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: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: #306e61;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #2a5f8b;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #13aeac;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;

}

.why-us {
  padding: 60px 100px 0 100px;
  background-color: #1c222a
}


.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: white;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #ffffff;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #232b29;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #fdfdfd;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #f8f8f8;
}

.why-us .accordion-list a.collapsed:hover {
  color: #1cc2c2;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(160, 57, 57, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #000000;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(#1c222abb, #1b3d44b8), url("../img/Palacio/20231127_163506.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta2 {
  background: linear-gradient(#0e0d0d72, #1c222a), url("../img/paneles/DJI_0060.JPG") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio {
  background-color: white;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #1c222a;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background-image: linear-gradient(-20deg, #13aeab9d 0%, #1c222a 100%);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured {
  border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: black;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #232b29;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #2c2b2d;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
  background-color: #1c222a;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #13aeac;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: white;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #13aeac;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #13aeac;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background-image: linear-gradient(-20deg, #13aeab9d 0%, #1c222a 100%);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #13aeac;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Baloo+Chettan&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,600i,700,800&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
  box-sizing: border-box !important;
}

.container {
  max-width: 1170px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #666666;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.80857;
  font-weight: normal;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 0;
  font-weight: normal;
  line-height: normal;
  color: #111111;
  margin: 0
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px
}

h5 {
  font-size: 14px
}

h6 {
  font-size: 13px
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #212121;
  text-decoration: none !important;
  opacity: 1
}

button:focus {
  outline: none;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  margin: 0px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}

a {
  color: #222222;
  text-decoration: none;
  outline: none !important;
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

:focus {
  outline: 0;
}

.btn-custom {
  margin-top: 20px;
  background-color: transparent !important;
  border: 2px solid #ddd;
  padding: 12px 40px;
  font-size: 16px;
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: #767676;
  margin: 0;
  padding: 0;
}

.form-control:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
  border: none !important;
}

.badge {
  font-weight: 500;
}

blockquote {
  margin: 20px 0 20px;
  padding: 30px;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.full {
  float: left;
  width: 100%;
}

.full {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}


/**-- heading section --**/


/*---------------------------- preloader area ----------------------------*/

.loader_bg {
  position: fixed;
  z-index: 9999999;
  background: #fff;
  width: 100%;
  height: 100%;
}

.loader {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 280px;
}


/*-- header area --*/


/*--------------------------------------------------------------------- top banner area ---------------------------------------------------------------------*/


/*-- navigation--*/

.navigation.navbar {
  font-family: 'Open Sans', sans-serif;
  float: right;
  padding-top: 35px !important;
  padding: 0;
}

.navigation.navbar-dark .navbar-nav .nav-link {
  padding: 0;
  margin: 0px 40px;
  color: #333333;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.navigation.navbar-dark .navbar-nav .nav-link:focus,
.navigation.navbar-dark .navbar-nav .nav-link:hover {
  color: #33f033;
}

.navigation.navbar-dark .navbar-nav .active>.nav-link,
.navigation.navbar-dark .navbar-nav .nav-link.active,
.navigation.navbar-dark .navbar-nav .nav-link.show,
.navigation.navbar-dark .navbar-nav .show>.nav-link {
  color: #33f033;
}

.navbar-expand-md .navbar-nav {
  padding-right: 10px;
}

.header {
  width: 100%;
  padding: 35px 0px 35px 0px;
  background: #fff;
}

.logo {
  text-align: center;
}


/** banner section **/

.banner {
  position: relative;
  background: url(../images/banner1.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 804px;
  padding-top: 17%;
}

.text-bg {
  text-align: left;
}

.relative {
  position: inherit;
  right: 0;
  left: 0;
  padding: 0;
  bottom: 0;
}

.text-bg h1 {
  color: #000;
  font-size: 85px;
  line-height: 96px;
  padding-bottom: 0px;
  font-weight: bold;
}

.text-bg span {
  line-height: 25px;
  padding-bottom: 40px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  display: block;
}

.text-bg .read_more {
  max-width: 243px;
  height: 66px;
  padding: 17px 0;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 50px;
}

.text-bg .read_more:hover {
  background-color: #0d0c0c;
}

.banner .carousel-indicators {
  display: none;
}

#myCarousel .carousel-control-prev,
#myCarousel .carousel-control-next {
  width: 36px;
  height: 36px;
  background: #0d0c0c;
  opacity: 1;
  font-size: 25px;
  color: #fff;
  border-radius: 60px;
  top: 97.6%;
}

#myCarousel .carousel-control-prev:hover,
#myCarousel .carousel-control-next:hover,
#myCarousel .carousel-control-prev:focus,
#myCarousel .carousel-control-next:focus {
  background: #13aeac;
  color: #fff;
  width: 57px;
  height: 57px;
  font-size: 30px;
  top: 96%;
}

#myCarousel a.carousel-control-prev {
  position: absolute;
  bottom: 10px;
  left: 48%;
}

#myCarousel a.carousel-control-next {
  position: absolute;
  right: inherit;
  bottom: 10px;
  right: 46.5%;
}

#myCarousel .carousel-control-prev:hover,
#myCarousel .carousel-control-prev:focus {
  left: 46.5%;
}

#myCarousel .carousel-control-next:hover,
#myCarousel .carousel-control-next:focus {
  right: 45%;
}


/** end banner section **/

.titlepage {
  text-align: center;
  padding-bottom: 40px;
}

.titlepage h2 {
  font-size: 40px;
  color: #1f1f1f;
  line-height: 45px;
  font-weight: bold;
  padding: 0;
}

.green {
  color: #157768 !important;
}

.blanco {
  color: white !important;
}

.d_flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.read_more {
  font-size: 17px;
  background-color: #f9f9f9;
  color: #000000;
  padding: 12px 0px;
  width: 100%;
  max-width: 210px;
  text-align: center;
  display: inline-block;
  transition: ease-in all 0.5s;
  font-weight: 400;
}

.read_more:hover {
  background: #13aeac;
  color: #fff;
  transition: ease-in all 0.5s;
}


/** about section **/

.about {
  background-color: #1c222a;
  padding-top: 10px;
}

.about .titlepage {
  text-align: left;
  margin-top: 15%;
  padding-bottom: 0;
  margin-right: -20px;
}

.about .titlepage h2 {
  margin-bottom: 35px;
}

.about .titlepage p {
  font-weight: 300;
  color: #ffffff;
  font-size: 17px;
  line-height: 31px;
  padding-bottom: 35px;
}

.about_img {
  padding: 20px 10px 20px 20px;
  width: 120%;
  padding-top: 20px;
  padding-left: 12%;

}

.about_img figure img {
  width: 100%;

  border-radius: 15px;
}

@media (max-width: 767px) {
  .about_img figure {
    width: 100%;
  }
}


/** end about section **/


/** service section **/

.service {
  padding-top: 80px;
}

.service_box h3 {
  font-size: 25px;
  color: #252525;
  padding-bottom: 5px;
  margin-top: 15px;
  font-weight: bold;
}

.mar_top {
  margin-top: -35px;
}

.service_box p {
  color: #181818;
}

.service .read_more {
  margin: 0 auto;
  display: block;
  margin-top: 60px;
}


/** end service section **/


/** gallery  section **/

.gallery {
  margin-top: 80px;
  padding-top: 80px;
  background-color: #eae7e7;
  padding-bottom: 50px;
}

.gallery .titlepage {
  text-align: center;
}

.gallery .titlepage p {
  color: #2a2b2a;
  display: block;
  padding-top: 20px;
}

.gallery .gallery_img {
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery .gallery_img figure {
  margin: 0;
}

.gallery .gallery_img figure img {
  width: 100%;
  transition: all .5s;
}

.gallery .gallery_img figure img:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.gallery_text {
  text-align: center;
  background-color: #1c222a;
  height: 369px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_text1 {
  text-align: center;
  background-color: #157768;
  height: 369px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_text2 {
  text-align: center;
  background-color: #1b3d44;
  height: 369px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galleryh3 h3 {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
}

.galleryh3 p {
  font-size: 15px;
  line-height: 31px;
  color: #fff;
}


/** end gallery  section **/


/** design section **/

.design {
  padding-top: 80px;
}

.text_de p {
  color: #2a2b2a;
  padding-bottom: 50px;
  font-size: 17px;
  line-height: 31px;
}

.banner_design {
  max-width: 443px;
  float: right;
  width: 100%;
}

.design_img figure {
  margin: 0;
}

.design_img figure img {
  width: 100%;
}

.banner_design .carousel-indicators {
  display: none;
}

#design .carousel-control-prev,
#design .carousel-control-next {
  width: 83px;
  height: 76px;
  background: #0d0c0c;
  opacity: 1;
  font-size: 35px;
  color: #fff;
  top: 97%;
}

#design .carousel-control-prev:hover,
#design .carousel-control-next:hover,
#design .carousel-control-prev:focus,
#design .carousel-control-next:focus {
  background: #16d316;
  color: #000;
}

#design a.carousel-control-prev {
  position: absolute;
  left: 31%;
}

#design a.carousel-control-next {
  position: absolute;
  right: 29%;
}

.pad_roght0 {
  padding-right: 0;
}

.text_de .titlepage {
  padding-bottom: 30px;
}


/** end design section **/


/** latest_news section **/

.latest_news {
  padding: 80px 0 50px 0;
}

.latest_news .titlepage {
  text-align: center;
}

.latest_news .titlepage p {
  color: #fff;
  font-size: 17px;
  margin-top: 20px;
}

.latest_news .news_box {
  text-align: left;
  background-color: #ffffff;
  margin-bottom: 30px;
  transition: ease-in all 0.5s;
}

.latest_news .news_box .news_img figure {
  margin: 0;
  padding: 0px 30px 0 0;
  margin-left: -195px;
}

.latest_news .news_box .news_img figure img {
  width: 100%;
}

.mr_le figure {
  margin-left: 0 !important;
  margin-right: -195px !important;
  padding: 0px 0px 0 30px !important;
}

.latest_news .news_box .news_room {
  padding: 15px 30px;
  text-align: left;
}

.latest_news .news_box .news_room h3 {
  color: #252525;
  font-size: 17px;
  line-height: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  transition: ease-in all 0.5s;
  margin: auto;
  padding-top: 15px;
}

.latest_news .news_box .news_room span {
  font-size: 15px;
  color: #13aeac;
  font-weight: 400;
  margin-bottom: 0px;
  display: block;
  transition: ease-in all 0.5s;
}

.latest_news .news_box .news_room ul li {
  display: inline-block;
}

.latest_news .news_box .news_room ul li a {
  transition: ease-in all 0.5s;
  display: inline-block;
  font-size: 15px;
  padding-right: 30px;
}

.latest_news .news_box .news_room ul li a i {
  padding-left: 5px;
}

.latest_news .news_box .news_room ul li a:hover {
  color: #16e816 !important;
}

.latest_news .news_box .news_room ul li:last-child a {
  padding-right: 0;
}

.latest_news .news_box .news_room p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: #1b1b1b;
  transition: ease-in all 0.5s;
}

#new:hover.news_box {
  background: #13aeac;
  transition: ease-in all 0.5s;
  cursor: pointer;
}

#new:hover.news_box .news_room span,
#new:hover.news_box .news_room h3,
#new:hover.news_box .news_room p,
#new:hover.news_box .news_room ul li a {
  color: #fff;
  transition: ease-in all 0.5s;
}

.latest_news .read_more {
  margin: 0 auto;
  display: block;
  margin-top: 30px;
}


/** end latest_news section **/


/** testimonial section **/

.Testimonial {
  padding-top: 80px;
}

.banner_testimonial {
  padding: 40px 50px;
  width: 100%;
  background-color: #343434;
}

.text_humai {
  margin-top: 60px;
  text-align: left;
  padding: 0 30px 40px 30px;
  border: #16d316 solid 1px;
  border-radius: 5px;
}

.text_humai span {
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 17px;
  line-height: 31px;
  font-weight: bold;
  display: block;
}

.text_humai i img {
  margin-top: -60px;
}

.text_humai p {
  color: #fff;
  font-weight: 400;
  font-size: 17px;
  line-height: 31px;
}

.banner_testimonial .carousel-indicators {
  display: none;
}

.pad_left0 {
  padding-left: 0;
}

#testimon .carousel-control-prev,
#testimon .carousel-control-next {
  width: 83px;
  height: 76px;
  background: #0d0c0c;
  opacity: 1;
  font-size: 35px;
  color: #fff;
  top: 67%;
}

#testimon .carousel-control-prev:hover,
#testimon .carousel-control-next:hover,
#testimon .carousel-control-prev:focus,
#testimon .carousel-control-next:focus {
  background: #16d316;
  color: #000;
}

#testimon a.carousel-control-prev {
  position: absolute;
  left: 118%;
}

#testimon a.carousel-control-next {
  position: absolute;
  right: -38%;
}

.pad_roght0 {
  padding-right: 0;
}

.text_de .titlepage {
  padding-bottom: 30px;
}


/** end testimonial section **/



/** footer **/

.footer {
  background: #202020;
  padding-top: 80px;
  text-align: center;
}

.footer h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 23px;
  text-align: left;
  color: #fff;
  padding-bottom: 20px;
  display: table;
  text-transform: uppercase;
}

ul.social_icon {
  padding-bottom: 14px;
  width: 100%;
  text-align: left;
}

ul.social_icon li {
  display: inline-block;
}

ul.social_icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 30px;
  margin: 0 3px;
  color: #202020;
  background: #fff;
  width: 35px;
  height: 35px;
  flex-wrap: wrap;
}

ul.social_icon li a:hover {
  color: #fff;
  background: #33f033;
}

.pad_roght2 {
  padding-right: 20px;
}

.variat {
  color: #fff;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}

ul.conta li {
  color: #fff;
  text-align: left;
  padding-bottom: 20px;
  font-size: 16px;
}

ul.conta li i {
  padding-right: 15px;
  text-align: center;
  font-size: 20px;
}

ul.conta li a {
  color: #fff;
}

ul.link_menu li {
  display: block;
  text-align: left;
}

ul.link_menu li a {
  color: #fff;
  font-size: 17px;
  line-height: 28px;
  display: block;
  width: -moz-max-content;
}

ul.link_menu li a:hover {
  color: #33f033;
}

.bottom_form {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.bottom_form .enter {
  border: inherit;
  padding: 0px 119px 0px 0px;
  width: 100%;
  height: 45px;
  background: transparent;
  color: #4d4c4c;
  font-size: 17px;
  font-weight: 300;
  float: left;
  margin-bottom: 20px;
  border-bottom: #fff solid 1px;
}

.sub_btn {
  font-size: 19px;
  transition: ease-in all 0.5s;
  background-color: transparent;
  color: #fff;
  padding: 8px 0px;
  max-width: 147px;
  width: 100%;
  font-weight: 500;
  text-transform: uppercase;
  position: absolute;
  right: 0;
}

.sub_btn:hover {
  transition: ease-in all 0.5s;
  color: #33f033;
}

#hkh *::placeholder {
  color: #4d4c4c;
  opacity: 1;
}






/*------------------------------------------------------------------
    File Name: style.css
    Template Name: Landigoo
    Created By: MelodyThemes
    Envato Profile: http://themeforest.net/user/melodythemes
    Website: https://melodythemes.com
    Version: 1.0
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
    [Table of contents]
	
	1. IMPORT FONTS
    2. IMPORT FILES
	3. SKELETON
	  1.1. Preloader
	  1.2. Scrollup
	4. HEADER AREA
	5. BANNER AREA
	6. ABOUT AREA
	7. SPECIAL-MENU AREA
	8. MENU AREA
	8. TEAM AREA
	9. GALLERY AREA
	10. BLOG AREA
	11. PRICING AREA
	12. RESERVATIONS AREA
	13. FOOTER AREA
	14. COPYRIGHT AREA
	15. COLOR SWITCHER AREA
	
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
    IMPORT FONTS
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Paprika');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');


/*------------------------------------------------------------------
    IMPORT FILES
-------------------------------------------------------------------*/

@import url(owl.theme.css);
@import url(owl.carousel.css);
@import url(slick.css);
@import url(flaticon.css);
@import url(font-awesome.min.css);
@import url(bootstrap-datetimepicker.css);
@import url(bootstrap-select.min.css);
@import url(normalize.css);
@import url(animate.min.css);

/*------------------------------------------------------------------
    SKELETON
-------------------------------------------------------------------*/
@font-face {
  font-family: 'nautilus_pompiliusregular';
  src: url('../fonts/nautilus-webfont.woff2') format('woff2'),
    url('../fonts/nautilus-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  color: #686868;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.80857;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 0;
  font-weight: normal;
  line-height: 120% !important;
  color: #1f1f1f;
  margin: 0
}

h1 {
  font-size: 24px
}

h2 {
  font-size: 22px
}

h3 {
  font-size: 18px
}

h4 {
  font-size: 16px
}

h5 {
  font-size: 14px
}

h6 {
  font-size: 13px
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #212121;
  text-decoration: none !important;
  opacity: 1
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  opacity: .8
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

a {
  color: #1f1f1f;
  text-decoration: none;
  outline: none !important;
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.btn-custom {
  margin-top: 20px;
  background-color: transparent !important;
  border: 2px solid #ddd;
  padding: 12px 40px;
  font-size: 16px;
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: #767676;
  margin: 0;
  padding: 0;
}

blockquote {
  margin: 20px 0 20px;
  padding: 30px;
}


html,
body {
  height: 100%;
}

/*------------------------------------------------------------------
   	Preloader
-------------------------------------------------------------------*/

#mhead {
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: georgia;
  position: fixed;
  top: 0px;
  width: 100%;
  margin-bottom: 50px;
  margin-left: -10px;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fefefe;
  z-index: 9999;
  height: 100%;
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/loader-animation.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}


/*------------------------------------------------------------------
   	Scrollup
-------------------------------------------------------------------*/
.scrollup {
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  opacity: 0.3;
  position: fixed;
  bottom: 20px;
  right: 40px;
  display: none;
  background: url(../images/icon_top.png) no-repeat;
}

.scrollup:hover {
  opacity: 0.8;
}

/*------------------------------------------------------------------
    HEADER AREA
-------------------------------------------------------------------*/

#site-header {}

#header {}

.logo {
  float: left;
}

.header-block-top {
  position: absolute;
  z-index: 11;
  width: 100%;
  top: 0;
  left: 0;
}

.main-menu {}

.header-block-top .navbar-brand {
  margin: 0 !important;
  padding: 15px 0 15px;
  display: inline-block;
  line-height: normal;
  font-size: 100%;
  height: 100%;
}

.main-menu .navbar-default {
  background-color: transparent;
}

.main-menu .navbar {
  min-height: inherit;
  border-radius: 0px;
  border: none;
  margin: 0px;
}

.main-menu nav .navbar-header .navbar-brand {
  height: inherit;
}

.main-menu .navbar-default .navbar-nav li a {
  color: #fff;
}

.main-menu nav li a {
  padding: 43px 0px 15px;
  margin: 0 14px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  position: relative;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  font-weight: 500;
  font-size: 14px;
}

.main-menu nav li a::after,
.main-menu nav li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
  -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}



.main-menu nav li a::before {
  background: #b5b5b5;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.main-menu nav li.active a::before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.main-menu nav li.active a::after,
.main-menu nav li.active a::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.main-menu nav li a:hover::before,
.main-menu nav li a:focus::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.main-menu .navbar-default .navbar-nav .active a {
  background-color: transparent;
}

.fixed-menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #202020;
  transition: 0.5s;
  padding: 10px 0 0 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.fixed-menu .navbar-brand {
  padding: 10px 0 10px;
}

.fixed-menu .navbar-brand>img {
  max-width: 150px;
}

.fixed-menu .main-menu nav li a {
  padding: 32px 0px 10px 0;
}

/*------------------------------------------------------------------
    BANNER AREA
-------------------------------------------------------------------*/

.banner {
  background: url(../images/banner.jpg) no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
  min-height: 100%;
}

.banner .container,
.banner .banner-static,
.banner .col-lg-12 {
  height: 100%;
}

.banner-text {
  display: table;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.banner-cell {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}

.banner-text h1 {
  font-family: 'nautilus_pompiliusregular';
  letter-spacing: 2.7px;
  position: relative;
  display: inline-block;
  font-size: 74px;
  line-height: 100px;
  color: #fff;
  padding-bottom: 0px;
  padding-top: 100px;
}

.banner-text h2 {
  font-family: 'nautilus_pompiliusregular';
  letter-spacing: 2.7px;
  position: relative;
  font-size: 37px;
  line-height: 100px;
  padding-bottom: 25px;
}

.banner-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #ccc;
  padding-bottom: 35px;
  margin: 0px;
}

.book-btn a {
  /*background:#e75b1e;*/
  color: #fff;
  min-width: 219px;
  padding: 10.5px 20px;
  display: inline-block;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
}

.book-btn a:hover {
  border: 3px solid red;
  background: none;
}

.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: red;
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}


.banner-cell .mouse {
  position: relative;
  width: calc(16px * 2);
  height: calc(31px * 2);
  margin: 60px auto 20px;
  background: none;
  border: 2px solid white;
  border-radius: calc(16px * 2);
  z-index: 1;
}

.banner-cell .mouse:after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: calc(4px * 2);
  height: calc(4px * 2);
  background: none;
  border: 2px solid white;
  border-radius: 100%;
  -webkit-animation-name: scrollWheel;
  animation-name: scrollWheel;
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  will-change: transform;
}

@-webkit-keyframes scrollWheel {
  from {
    -webkit-transform: translate(-50%, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(-50%, 20px);
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate(-50%, 20px);
    transform: translate3d(-50%, 20px, 0);
    opacity: 0;
  }

}

@keyframes scrollWheel {
  from {
    -webkit-transform: translate(-50%, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate(-50%, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }

  to {
    -webkit-transform: translate(-50%, 20px);
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate(-50%, 20px);
    transform: translate3d(-50%, 20px, 0);
    opacity: 0;
  }

}

/*------------------------------------------------------------------
    ABOUT AREA
-------------------------------------------------------------------*/

.about-main {
  background: #E6E6E6;
}

.pad-top-100 {
  padding-top: 90px;
}

.pad-bottom-100 {
  padding-bottom: 90px;
}

.pad-top-70 {
  padding-top: 70px;
}

.pad-bottom-70 {
  padding-bottom: 70px;
}

.block-title {
  font-size: 52px;
  font-family: 'nautilus_pompiliusregular';
  font-weight: bold;
}

.about-images {
  text-align: center;
  position: relative;
}

.about-main h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.left-btn {
  padding-top: 10px;
}


.about-images img {
  border: 10px solid #f1f1f1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
}

.about-images img {
  border: 10px solid #f1f1f1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
  max-width: 100%;
}

.about-inset {
  position: absolute;
  top: 0;
  right: 0;
}


/*------------------------------------------------------------------
    SPECIAL-MENU AREA
-------------------------------------------------------------------*/
.special-menu {
  background: url(../images/special_menu_bg.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.special-menu:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.67);
  position: absolute;
  top: 0;
  left: 0;
}

.title-caption {
  letter-spacing: 0.16px;
  padding: 20px 120px;
  color: #fff;
  font-size: 18px;
}

.color-white {
  color: #fff;
}

#owl-demo .item {
  margin: 15px;
  position: relative;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

.special-box .owl-theme .owl-controls {
  margin: 0px;
}

.item-type-zoom {
  border: 4px solid #fff;
}

.item-type-zoom .item-hover {
  z-index: 5;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  opacity: 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
  text-align: center;
}

.item-type-zoom .item-info {
  z-index: 10;
  color: #ffffff;
  display: table-cell;
  vertical-align: middle;
  position: absolute;
  z-index: 5;
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  bottom: 0px;
}

.item-type-zoom .item-info .headline {
  font-size: 18px;
  width: 75%;
  margin: 0 auto;
  border: 4px solid #ffffff;
  padding: 10px;
}

.item-type-zoom .item-info .line {
  height: 1px;
  width: 60%;
  margin: 15px auto 10px auto;
  background-color: #ffffff;
}

.item-type-zoom .item-info .dit-line {
  font-size: 14px;
  font-style: italic;
}

.item-hover,
.item-hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.item-type-zoom .item-hover:hover {
  opacity: 1;
}

.item-type-zoom .item-hover:hover:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(231, 91, 30, 0.5);
  top: 0px;
  left: 0px;
}

.item-type-zoom .item-hover:hover .item-info {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.special-box {
  padding-bottom: 40px;
}

.special-box .owl-theme .owl-controls .owl-page.active span {
  /*background:#e75b1e;*/
  height: 16px;
  width: 16px;
}

.special-box .owl-theme .owl-controls .owl-page span {
  border: 2px solid #fff;
  opacity: 1;
  background: #202020;
  height: 16px;
  width: 16px;
}

/*------------------------------------------------------------------
    MENU AREA
-------------------------------------------------------------------*/


.menu-main {}

.menu-main .title-caption {
  color: #666;
}

.tab-title-menu {
  text-align: center;
}

.tab-title-menu h2 {
  border-bottom: 1px solid #666;
  display: inline-block;
  padding-top: 10px;
}

.tab-title-menu p {
  font-size: 35px;
  padding-top: 0px;
}

.tab-title-menu p {
  color: #000;
}

.tab-menu {
  background: #f5f5f5;
  padding: 2px 0px;
  box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.05);
}

.offer-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.offer-item img {
  width: 20%;
  float: left;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
}

.offer-item div {
  width: 60%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.offer-item .offer-price {
  position: absolute;
  right: 15px;
  top: 50%;
  display: block;
  width: 92px;
  height: 92px;
  line-height: 92px;
  -moz-border-radius: 92px;
  -webkit-border-radius: 92px;
  border-radius: 92px;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #000;
  font-size: 26px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  letter-spacing: .5px;
}

.offer-item div h3 {
  font-size: 20px;
  margin: 9px 0 0px;
  font-family: 'nautilus_pompiliusregular';
  font-weight: 400;
  letter-spacing: .5px;
}

.offer-item div p {
  color: #6b6b6b;
}


.tab-menu .slick-prev.slick-arrow {
  display: none;
}

.tab-menu .slider.slider-single {
  border-top: 1px solid #ccc;
  padding-top: 25px;
}

.tab-menu .slick-initialized .slick-slide {
  outline: none;
}

.tab-menu .is-active h2 {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.tab-menu .is-active p {
  color: #fff;
}

/*------------------------------------------------------------------
    TEAM AREA
-------------------------------------------------------------------*/

.team-main {
  background: url(../images/team_bg.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.team-main:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.50);
  position: absolute;
  top: 0;
  left: 0;
}

.team-main .block-title {
  color: #fff;
}

.sf-team {
  float: left;
  width: 100%;
}

.sf-team .thumb {
  float: left;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.sf-team .text-col {
  float: left;
  width: 100%;
  padding: 25px 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: center;
  background: #fff;
}

.sf-team .thumb a img {
  width: 100%;
}

.sf-team:hover .text-col {
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}

.sf-team:hover .thumb img {
  opacity: 0.6;
  transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}

.text-col h3 {
  font-family: 'nautilus_pompiliusregular';
  font-size: 28px;
}

.sf-team:hover .team-social {
  border-color: #fff;
  transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}

.team-social {
  display: block;
  text-align: center;
  margin: 0;
  padding: 20px 0 0 0;
  list-style: none;
  border-top: 1px solid;
}

.team-social li {
  display: inline-block;
  padding: 0 4px;
}

.sf-team:hover .team-social li a {
  border: 1px solid rgba(0, 0, 0, 0);
  background: #fff;
  color: #222;
  transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}

.team-social li a {
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 32px;
  border: 1px solid #ccc;
  border-radius: 100%;
  color: #222;
  font-size: 16px;
  display: block;
}

.sf-team:hover .text-col h3,
.sf-team:hover .text-col p {
  color: #fff;
  transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}

/*------------------------------------------------------------------
    GALLERY AREA
-------------------------------------------------------------------*/

.gallery-main {}

.gallery-main .title-caption {
  color: #666;
}

/* new gallery */

.gal-container {
  padding: 12px;
}

.gal-item {
  overflow: hidden;
  padding: 3px;
}

.gal-item .box {
  height: 350px;
  overflow: hidden;
}

.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.gal-item a:focus {
  outline: none;
}

.gal-item a:after {
  content: "\e003";
  font-family: 'Glyphicons Halflings';
  opacity: 0;
  background-color: rgba(231, 91, 30, 0.75);
  position: absolute;
  right: 3px;
  left: 3px;
  top: 3px;
  bottom: 3px;
  text-align: center;
  line-height: 350px;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.gal-item a:hover:after {
  opacity: 1;
}

.modal-open .gal-container .modal {
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-open .gal-item .modal-body {
  padding: 0px;
}

.modal-open .gal-item button.close {
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #000;
  opacity: 1;
  color: #fff;
  z-index: 999;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  font-size: 15px;
  border: 2px solid #fff;
  line-height: 25px;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.35);
}

.modal-open .gal-item button.close:focus {
  outline: none;
}

.modal-open .gal-item button.close span {
  position: relative;
  top: -3px;
  font-weight: lighter;
  text-shadow: none;
}

.gal-container .modal-dialogue {
  width: 80%;
}

.gal-container .description {
  position: relative;
  height: 40px;
  top: -40px;
  padding: 10px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}

.gal-container .description h4 {
  margin: 0px;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  color: #fff;
}

.gal-container .modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  top: 100px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.gal-container .modal.fade.in .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  opacity: 1;
}


/*------------------------------------------------------------------
    BLOG AREA
-------------------------------------------------------------------*/

.blog-main {
  background: url(../images/blog_bg.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.blog-main::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.50);
  position: absolute;
  top: 0;
  left: 0;
}

.blog-main h2 {
  color: #ffffff;
}

.blog-box {
  padding-top: 20px;
}

.blog-block {
  background: #FFF;
  overflow: auto;
  margin-bottom: 20px;
}

.blog-img-box {
  float: left;
  width: 50%;
  position: relative;
}

.blog-img-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  opacity: 0;
  transition: .3s all;
  text-align: center;
}

.blog-img-box:hover img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.blog-img-box:hover .overlay {
  opacity: 1;
}

.blog-img-box img {
  width: 100%;
}

.overlay i {
  margin-top: 42%;
  border: 1px solid #fff;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
}


.blog-dit {
  width: 50%;
  height: 100%;
  float: right;
  text-align: center;
  padding: 65px 2% 0 2%;
}

.blog-dit p {
  font-size: 12px;
  color: #ccc;
}

.blog-dit h2 {
  font-size: 22px;
  line-height: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 10px 30px 13px 30px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.blog-dit h5 {
  font-size: 11px;
  color: #ccc;
}

.blog-btn-v {
  clear: both;
  padding-top: 30px;
  text-align: center;
}

.blog-btn-v a {
  color: #fff;
  min-width: 219px;
  padding: 10.5px 20px;
  display: inline-block;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
}

.blog-btn-v a:hover {
  background: none;
}


/*------------------------------------------------------------------
    PRICING AREA
-------------------------------------------------------------------*/

.pricing-main {
  background: url(../images/full-bg.png) no-repeat center;
  background-size: cover;
}

.pricing-main h2 {
  font-family: 'nautilus_pompiliusregular';
  padding-bottom: 30px;
}

.pricing-main p {
  letter-spacing: 0.16px;
  padding: 20px 120px;
  color: #666;
  font-size: 18px;
  text-align: center;
}

.panel-pricing-in {
  clear: both;
}

.panel-pricing {
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition: all .3s ease;
}

.panel-pricing:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.panel-pricing .panel-heading {
  padding: 20px 10px;
}

.pricing-main .panel-heading h3 {
  font-family: 'Roboto', sans-serif;
  padding: 15px 0px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
}

.panel-pricing .panel-heading .fa {
  margin-top: 10px;
  font-size: 58px;
}

.panel-pricing .list-group-item {
  color: #202020;
  border-bottom: 1px solid rgba(250, 250, 250, 0.5);
  font-family: 'Roboto', sans-serif;
  padding: 10px 15px;
}

.panel-pricing .list-group-item:last-child {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.panel-pricing .list-group-item:first-child {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

.panel-pricing .panel-body {
  background-color: #f0f0f0;
  font-size: 40px;
  color: #777777;
  padding: 20px;
  margin: 0px;
}

.panel-body p {
  padding: 0px;
  margin: 0;
}

.panel-body p strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 42px;
}

.panel-body p strong span {
  color: #e75b1e;
}

.panel-pricing {
  border: 1px solid #e75b1e;
}

.panel-pricing .panel-heading {
  background: #e75b1e;
}

.pricing-main .panel-footer .btn-block {
  border-radius: 0px;
}

.pricing-main .panel-footer a {
  background: #e75b1e;
  border: 3px solid #e75b1e;
  color: #fff;
  padding: 14px 16px;
}

.pricing-main .panel-footer a:hover {
  background: none;
  color: #202020;
  border: 3px solid red;
}

.panel-pricing {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.panel-pricing:hover {
  margin-top: -8px;
}

.panel-pricing:hover
/*------------------------------------------------------------------
    RESERVATIONS AREA
-------------------------------------------------------------------*/

.reservations-main {}

.form-reservations-box {
  width: 70%;
  margin: 0 auto;
}

.reservations-main h4 {
  text-align: center;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  padding-top: 25px;
}

.reservations-main p {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

.reservations-box {
  padding-top: 30px;
}

.form-box {
  margin-bottom: 20px;
  min-height: 53px;
}

.form-box input {
  width: 100%;
  border: 2px dotted #ccc;
  background: #f5f5f5;
  color: #202020;
  padding: 12px;
  text-transform: capitalize;
  border-radius: 4px;
  opacity: 1;
  min-height: 54px;
}

.form-box select {
  width: 100%;
  border: 2px dotted #ccc;
  background: #f5f5f5;
  color: #202020;
  padding: 12px;
  text-transform: capitalize;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.form-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.form-box .bootstrap-select button {
  width: 100%;
  border: 2px dotted #ccc;
  background: #f5f5f5;
  color: #202020 !important;
  padding: 15px;
  text-transform: capitalize;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.form-box select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 5px;
}

::-webkit-input-placeholder {
  /* Chrome */
  color: #202020;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #202020;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #202020;
  opacity: 1;
}

:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #202020;
  opacity: 1;
}

.reserve-book-btn {
  padding-top: 30px;
}

.reserve-book-btn button a {
  color: #fff;
}

.reserve-book-btn button:hover {
  background: none;
  color: #202020;
}

.reserve-book-btn button {
  color: #fff;
  min-width: 219px;
  padding: 10.5px 20px;
  display: inline-block;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
}

.reserve-book-btn button:hover a {
  background: none;
  border: none;
}

textarea:focus,
input:focus,
select:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}

/*------------------------------------------------------------------
    FOOTER AREA
-------------------------------------------------------------------*/

.footer-main {}

.footer-news {
  background: url(../images/newsletter-bg.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}

.footer-news::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.50);
  position: absolute;
  top: 0;
  left: 0;
}

.ft-title.color-white {
  color: #fff;
}

.ft-title {
  letter-spacing: 0.96px;
  margin-bottom: 22px;
  font-family: 'nautilus_pompiliusregular';
  font-size: 52px;
}

.footer-news p {
  margin-bottom: 40px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  text-align: center;
}

.footer-news form {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  position: relative;
}

.footer-news form input {
  width: 100%;
  border: 2px dotted #ccc;
  background: #f5f5f5;
  color: #202020;
  padding: 12px;
  text-transform: capitalize;
  border-radius: 4px;
  opacity: 1;
  min-height: 53px;
}

.footer-news form a {
  border: 2px dotted #ccc;
  padding: 0px 19px;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4px;
  min-width: inherit;
  height: 53px;
  line-height: 51px;
  color: #ffffff;
}

.footer-news form a:hover {
  background: #f5f5f5;
  color: #202020;
}

.footer-box {
  background: #202020;
}

/*.footer-in-main{
	max-width:960px;
	margin:0 auto;
	width:100%;
}*/

.footer-logo {
  padding-bottom: 40px;
}

.footer-socials {
  margin: 10px 0;
  line-height: 30px;
  padding: 4px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.socials-box {
  display: table-cell;
  vertical-align: middle;
  margin: 1px 0px;
  padding: 4px;
}

.footer-box {
  background-image: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.87) 100%), url(..images/footer_background.jpg);
  background-image: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.87) 100%), url(../images/footer_background.jpg);
  background-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.87) 100%), url(../images/footer_background.jpg);
  background-color: #111;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

.socials-box li {
  display: inline-block;
  opacity: 1;
  margin-right: 7px;
}

.footer-box .social-circle-border {
  background-color: transparent;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-circle-border {
  font-size: 20px;
  line-height: 23px;
  margin-right: 2px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: transparent;
  color: #6f6f6f;
  text-align: center;
}


.footer-box-a h3 {
  font-size: 24px;
  font-family: 'nautilus_pompiliusregular';
}

.footer-box-a p {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  line-height: 25px;
}


.footer-box-b h3 {
  font-size: 24px;
  font-family: 'nautilus_pompiliusregular';
}

.footer-box-b p {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}

.footer-box-b ul li {
  line-height: 30px;
}

.footer-box-b ul li a {
  color: #ffffff;
}

.footer-box-b ul li a:hover {
  padding-left: 5px;
}

.footer-box-c h3 {
  font-size: 24px;
  font-family: 'nautilus_pompiliusregular';
}

.footer-box-c p {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}


.footer-box-c p i {
  font-size: 20px;
  position: relative;
  top: 4px;
  float: left;
  min-width: 20px;
  text-align: center;
}

.footer-box-c p span {
  display: table;
  padding-left: 12px;
  padding-top: 1px;
}

.footer-box-c p a {
  color: #ffffff;
}



.footer-box-d h3 {
  font-size: 24px;
  font-family: 'nautilus_pompiliusregular';
}

.footer-box-d p {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}

.footer-box-d ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.footer-box-d ul li {
  display: inline-block;
  width: 100%;
  padding-bottom: 12px;
}

.footer-box-d ul li p {
  padding: 0px;
  margin: 0px;
}

.footer-box-d ul li span {
  color: #666;
}

/*------------------------------------------------------------------
    COPYRIGHT AREA
-------------------------------------------------------------------*/

.copyright-main {
  border-top: 2px dotted #fff;
  text-align: center;
  padding-top: 25px;
  margin-top: 70px;
  padding-bottom: 25px;
}

.copyright-main .copy-title {
  letter-spacing: 1px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding-bottom: 0px;
}

/*------------------------------------------------------------------
    COLOR SWITCHER AREA
-------------------------------------------------------------------*/

/*--- color switcher ---*/



#color-panel {
  position: fixed;
  width: 180px;
  height: auto;
  top: 150px;
  /*min-height: 200px;*/
  text-align: left;
  border: 1px solid rgba(100, 100, 100, 0.55);
  z-index: 11;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.45);
}

.close-color-panel {
  right: -180px;
}

.open-color-panel {
  right: -1px;
}

#color-panel .segment {
  width: 100%;
  padding: 15px 10px 15px 0;
  border: 1px solid rgba(100, 100, 100, 0.55);
  padding: 15px 25px;
  background: rgba(50, 50, 50, 0.95);
}

#color-panel a.panel-button {
  position: absolute;
  width: 50px;
  height: 50px;
  left: -50px;
  top: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 47px;
  cursor: pointer;
  border: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #d1d1d1;
  background: rgba(100, 100, 100, 0.85);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

#color-panel a.panel-button i {
  padding: 7px;
}

#color-panel a.panel-button:hover {
  color: #35cc75;
}

#color-panel h4 {
  margin: 3px auto 15px;
  padding-top: 0;
  padding-bottom: 0;
  color: #ffffff;
}


#color-panel .segment a.switcher {
  width: 24px;
  height: 35px;
  display: inline-block;
  margin-right: 3px;
  margin-top: 5px;
  border: 1px solid #efefef;
  cursor: pointer;
}

.orange-bg {
  background: #e75b1e;
}

.strong-blue-bg {
  background: #1E69B8;
}

.moderate-green-bg {
  background: #8dc63f;
}

.vivid-yellow-bg {
  background: #fdcb03;
}