
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Lato', sans-serif;
  color: #111111;
}

a {
  color: #40EFFF;
  text-decoration: none;
}

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

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

.space {
  height: 30px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #40EFFF;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}

#header.header-scrolled {
  padding: 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


#header .logo {
  max-width: 100px;
  margin: 10px;
  padding: 0;
  
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 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-size: 15px;
  color: rgb(0, 0, 0);
  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: rgb(0, 0, 0);
}

.navbar .getstarted {
  background: #fdfdfd;
  padding: 8px 20px;
  margin-left: 30px;
  border-top: 2px solid #40EFFF;
  border-right: 2px solid #40EFFF;
  border-bottom: 2px solid #40EFFF;
  border-left: 2px solid #40EFFF;
  border-radius: 4px;
  color: rgb(0, 0, 0);
}

.navbar .getstarted:hover {
  color: rgb(0, 0, 0);
  background: #40EFFF
}

.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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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: #40EFFF;
}

.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: black;
  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(4, 12, 21, 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 {
  padding: 10px 20px;
  font-size: 15px;
  color: rgb(0, 0, 0);
}

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

.navbar-mobile .getstarted {
  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: #40EFFF;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #40EFFF;
}

#hero .btn-get-started {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #000;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #40EFFF;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #FF4AC3;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/



section {
  padding: 80px 0px 10px 0px;
}

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

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  margin: 0;
  margin: 0;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 800;
  font-family: 'Lato', sans-serif;
  color: black;
}



.section-title h1 {
  margin: 0;
  margin: 0;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 800;
  font-family: 'Lato', sans-serif;
  color: black;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  color: #4444;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.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: #40EFFF;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #40EFFF;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid 40EFFF;
}

.about .content .btn-learn-more:hover {
  background: #40EFFF;
  color: #fff;
  text-decoration: none;
}

.img-home  {
  width: 100%;
}

/*--------------------------------------------------------------
# Photos
--------------------------------------------------------------*/
#photos {
  margin: 0px;
  width: 100% !important;
  
}


.container-photo  {
  display: flex;
  justify-content: center;
  
}

.photo-home {
  display: flex;
  justify-content: center;
  width: 100%;
  
}


.container-photo .photo-home {
  transition: all 1s;
}


@media only screen and (max-width: 1000px) {
  .container-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media only screen and (max-width: 400px) {
  .container-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}


/*--------------------------------------------------------------
# Video us
--------------------------------------------------------------*/
.video-us {
  padding: 0;
}


.video-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 600px;
  position: relative;
  width: 100%;
}



.video-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#40EFFF 50%, rgb(36, 106, 109, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.video-us .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.video-us .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(14, 76, 82, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.video-us .play-btn:hover::after {
  border-left: 15px solid #116a72;
  transform: scale(20);
}

.video-us .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .video-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .video-us .content {
    padding-top: 30px;
  }
  .video-us .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/


.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 20px 20px;
  margin-bottom: 20px;
  transition: all ease-in-out 0.3s;
  width: 100%;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: gray;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}


.services .container .section-title h2 {
  margin: 0;
  margin: 0;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 800;
  font-family: 'Lato', sans-serif;
  color: black;
  
}

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

.services .icon-box h4 a {
  color: black;
}

.services .icon-box p {
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 0;
}


.services .amenites {
  width: 100px;


}

/*--------------------------------------------------------------
# Alliances
--------------------------------------------------------------*/
.alliances  {
background-color: #fff;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  
  height: 200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 250px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #F2F2F2;
}

.cta h3 {
  color: rgb(39, 39, 39);
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: rgb(56, 56, 56);
}

.cta .cta-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #FF4AC3;
  color: black;
}

.cta .cta-btn:hover {
  background: #FF4AC3;
  border: 2px solid #FF4AC3;
}

/*--------------------------------------------------------------
# Space
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: black;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}



.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: black;
}

.portfolio .portfolio-item .portfolio-info p {
  color: rgb(36, 36, 36);
  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: #123a6d;
}


.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}



.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}




/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.section-title {
  margin-bottom: 0px;
  padding-bottom: 0px;
  
} 

.plan {
  font-size: 20px;
  font-weight: 300;
  
} 

.table-title{
  font-size: 30px;
  font-weight: 700;
  border: none;
  
} 
  
.pricing .row {
  padding-top: 10px;
   
}

.non-line {
  border: none;
   
}

.day-free{
  font-size: 13px;
  font-weight: 700;
  border: none;
  
} 



.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: black;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #40EFFF;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #40EFFF;
  color: black;
  border: 2px solid #40EFFF;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #40EFFF;
}

.pricing .featured .get-started-btn {
  background: #40EFFF;
  color: #fff;
  border-color: #40EFFF;
}

.pricing .featured .get-started-btn:hover {
  background: #40EFFF;
}

@media (max-width: 992px) {
  
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }

}

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






/*--------------------------------------------------------------
# Pricing Mobile
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
  width: 100%;
}

.pricing .box {
  max-width: 100%;
  margin: 0 auto 30px auto;

  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}


.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #020202;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: rgb(63, 63, 63);
  text-align: center;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}


.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: black;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #40EFFF;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #40EFFF;
  color: #fff;
}


.pricing .featured .get-started-btn {
  background: #40EFFF;
  color: #fff;
  border-color: #40EFFF;
}

.pricing .featured .get-started-btn:hover {
  background: #40EFFF;
}

@media (min-width: 767px) {
  .version-mobile{
    display: none;
  }

  
}




/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #40EFFF;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: 'Lato', sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


.contact .info-box {
  color: black;
  text-align: left;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding-top: 50px;
  background: #fff;
  padding-left: 50px;
  padding-bottom: 50px;
  height: 100%;
  
  
}



.mt-4 {
  margin-top: 0px!important;
   
}

.contact .info-box h3 {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 800;
  color: #000;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 5px;
  color: #000;
}

.map {

  min-height: 300px;
}

.title-contact {
  
  padding-top: 20px;
  padding-bottom: 20px;
}

.form-hub h3 {
 margin-top: 90px;
}



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

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



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #191919;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}


.col-lg-4 .col-md-6 .footer-info {
  width: 100px;

}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #191919;
  text-align: left;
  padding: 0px;

}



#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Lato', sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #494949;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #40EFFF;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #40EFFF;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #40EFFF;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}


#footer .copyright {
  border-top: 1px solid #5f5f5f;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}


/*--------------------------------------------------------------
# WhatsApp
--------------------------------------------------------------*/

.whatsapp {
  position:fixed;
  width:64px;
  height:64px;
  bottom:18px;
  right:18px;
  z-index:100;

}


/*--------------------------------------------------------------
# Form-Pre
--------------------------------------------------------------*/

.form-pre {
  margin-top: 70px;
}



.hubspot-form {
  

align-content: center;

  
}

/*--------------------------------------------------------------
# Form-Prueba
--------------------------------------------------------------*/
.form-prueba {
  margin-top: 70px;

}


/*--------------------------------------------------------------
# Form-RS
--------------------------------------------------------------*/

.form-rs  {
  margin-top: 70px;

}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/

.benefits {
  margin-top: 70px;

}

/*--------------------------------------------------------------
# Terms
--------------------------------------------------------------*/

.terms {
  margin-top: 70px;

}


/*--------------------------------------------------------------
# CTA links
--------------------------------------------------------------*/
#links {
margin: 70px 0;
text-align: center;
}

.cta-links {
  padding: 80px 0;
  background: white;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #40EFFF;
  color: black;
  width: 200px;
}

.cta-links h3 {
  color: rgb(39, 39, 39);
  font-size: 28px;
  font-weight: 700;
}


.cta-links:hover {
  background: #40EFFF;
  border: 2px solid #40EFFF;
}