/*///////////////////////// GENERALES /////////////////////////*/
* {
  scroll-behavior: smooth;
}

/* Fonts */
@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gothamrnd_book.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gothamrnd_medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gothamrnd_bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #025485;
  background-color: white;
}

.custom-font {
  font-family: "Gotham Rounded";
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

b {
  font-weight: 500;
}

.main-wrapper {
  overflow: hidden !important;
  position: relative;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.fs-18 {
  font-size: 18px;
}

.primary {
  color: #f18700;
}

.secondary {
  color: #025485;
}

.bg-secondary {
  background-color: #025485 !important;
}

.red {
  color: #ea4e43;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.underline {
  text-decoration: underline;
}

/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.custom-btn {
  width: 157px;
  height: 54px;
  background: url(../images/bg-btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #185999c8;
  font-family: "Gotham Rounded";
  font-weight: 500;
  font-size: 21px;
  text-transform: uppercase;
  transition: 0.3s;
}

.custom-btn:hover {
  background: url(../images/bg-btn-hover.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: white;
}

/* FLOAT BTN */
.wsp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.wsp-float img {
  width: 28px;
}

.wsp-float:hover {
  text-decoration: none;
  color: white;
  background-color: #18b853;
}

/* Scroll top */
.scroll-top {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: 350px;
  right: 30px;
  z-index: 100;
  transition: 0.3s;
  opacity: 0;
}

.show-scroll {
  opacity: 1;
}

/*///////////////////////// HEADER /////////////////////////*/
header {
  position: absolute;
  z-index: 10;
  width: 100%;
}

/* Navegador principal */
.navbar-brand img {
  height: 50px;
  width: auto;
  transition: 0.3s;
}

.navbar-toggler {
  padding: 0;
}

.navbar-collapse {
  justify-content: center;
  display: flex;
}

.navbar,
.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  padding: 1.6rem 6rem;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
}

.navbar-nav {
  justify-content: end;
  width: 100%;
  align-items: center;
}

.nav-link {
  font-size: 20px;
  font-family: "Gotham Rounded";
  font-weight: 500;
  color: #616160 !important;
  margin-right: 1.2rem !important;
  margin-left: 1.2rem !important;
  position: relative;
  padding: 6px 0px !important;
}

.nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0rem;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  right: auto;
  margin: 0 auto;
  border-radius: 4px;
  position: absolute;
  background: #f18700;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-link:hover:after,
.nav-item.active .nav-link:after {
  width: 30px;
}

.nav-link-btn {
  border-radius: 26px;
  font-weight: 500;
  font-size: 18px;
  margin-right: 0 !important;
  margin-left: 1rem !important;
  padding: 12px 20px;
  transition: all 150ms ease-out;
  text-decoration: none !important;
  color: #fff;
  background-color: #f18700;
  font-family: "Gotham Rounded";
}

.nav-link-btn:hover,
.nav-link-btn:focus,
.nav-link-btn:active,
.nav-link-btn:not(:disabled):not(.disabled).active,
.nav-link-btn:not(:disabled):not(.disabled):active,
.show > .nav-link-btn.dropdown-toggle {
  background-color: #e07400;
  color: #fff;
  transition: all ease 0.25s;
}

/* Bs nav para el menú mobile */
.bsnav-mobile .navbar {
  left: 0 !important;
  color: #fff !important;
  transform: translate3d(-320px, 0, 0) !important;
  width: 80%;
  max-width: 300px;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar.bsnav-dark {
  background-color: #025485 !important;
  color: #fff !important;
  padding: 0px 0 15px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  border-bottom: 4px solid #ff8700;
}

.bsnav-light .navbar-toggler .navbar-toggler-icon,
.bsnav-light .navbar-toggler .navbar-toggler-icon::after,
.bsnav-light .navbar-toggler .navbar-toggler-icon::before {
  background-color: #3c3c3c;
}

/*//////////////////////// MAIN-HERO ////////////////////////////*/
.main-section {
  height: 100vh;
  position: relative;
  line-height: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-title {
  position: absolute;
  text-align: center;
  margin: auto;
  z-index: 5;
  color: white;
  width: 90%;
  max-width: 575px;
  left: auto;
  right: 15%;
  top: 25%;
  bottom: auto;
}
.main-title-left {
  position: absolute;
  text-align: center;
  margin: auto;
  z-index: 5;
  color: white;
  width: 90%;
  max-width: 575px;
  left: 15%;
  right: auto;
  top: 25%;
  bottom: auto;
}

.main-section .carousel {
  height: 100vh;
  padding-top: 99px;
}

.main-section .carousel-inner {
  height: 100%;
}

.main-section .carousel-item,
.main-section .carousel-item.active {
  height: 100%;
}

.main-section .carousel-item .bg-img,
.main-section .carousel-item.active .bg-img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  margin: 0 auto;
  align-items: center;
  z-index: 5;
}

.carousel-indicators li {
  width: 16px;
  height: 16px;
  border-radius: 10px;
  margin-right: 4px;
  margin-left: 4px;
  background-color: transparent;
  border: 2px solid white;
  opacity: 1;
  transition: all 0.6s ease;
  background-clip: border-box;
}

.carousel-indicators li.active {
  background-color: white;
}

.carousel button {
  border: 0;
  background-color: transparent;
  width: 10%;
  opacity: 1;
}

.carousel button span {
  font-size: 48px;
}

/*///////////////////////// animation zoom /////////////////////////*/
.animaZoom {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.infinite-zoom {
  -webkit-animation: zoomSlow 35s infinite linear;
  -moz-animation: zoomSlow 35s infinite linear;
  animation: zoomSlow 35s infinite linear;
}

@-webkit-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*///////////////////////// Servicios //////////////////////////*/
.services-block {
  padding: 4rem 0;
  background-color: #025485;
  color: white;
}

.services-block-container {
  display: flex;
  align-items: center;
}

.services-block-container img {
  height: 54px;
  width: auto;
  margin-right: 0.8rem;
}

/*///////////////////////// NOSOTROS //////////////////////////*/
.about-us {
  position: relative;
  padding: 5rem 0;
  scroll-margin-top: 5rem;
  background-image: url(../images/bg-about-deco.svg);
  background-position: 100% 120%;
  background-repeat: no-repeat;
}
.about-us p{
  font-size: 22px;
}
.manifest{
  border-top: 5px solid #F6871F;
  padding: 3.5rem 0rem;
}
.manifest p{
  font-size: 20px;
}
.manifiest-container{
  background-color: #16537d;
  background-image: url(../images/bg-manifiest-content.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
/*///////////////////////// Productos //////////////////////////*/
.products {
  scroll-margin-top: 5rem;
}

.product-container {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0.2rem;
}

.product-title {
  position: absolute;
  z-index: 5;
  font-size: 52px;
  color: white;
  transition: 0.3s;
  padding: 2rem 2rem 2rem 4rem;
}

.product-deco {
  font-size: 51px;
  display: block;
  position: relative;
  width: fit-content;
  height: auto;
  padding: 0.4rem 0.6rem;
  clip-path: path(
    "M0,0c36.9,10.223,286.627,2.86,286.627,2.86v83.014s-249.726,7.691-286.627-2.532Z"
  );
  transition: 0.3s;
}

.product-deco-orange {
  background-color: #ffac00;
}

.product-deco-blue {
  background-color: #004888;
}

.product-deco-brown {
  background-color: #5d1e20;
}

.product-deco-pink {
  background-color: #fc8894;
}

.product-deco-green {
  background-color: #407e46;
}

.product-deco-light-blue {
  background-color: #6e9bbd;
}

.product-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 45%);
  z-index: 1;
  transition: 0.3s;
}

.product-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.product-container:hover img {
  transform: scale(1.05);
}

.product-container:hover .product-title .product-deco {
  transform: rotate(-2deg);
}

.product-container:hover .product-overlay {
  opacity: 0.4;
}

/*///////////////////////// Logos //////////////////////////*/
@keyframes sliders {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  background: white;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
}

.logos-slide {
  display: inline-block;
  animation: 180s sliders infinite linear;
}

.logos-slide img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 1rem 3rem;
  transition: 0.3s;
}

/*///////////////////////// Lineas //////////////////////////*/
.lines-carousel {
  scroll-margin-top: 5rem;
}

.lines-carousel .carousel {
  height: 650px;
}

.lines-carousel .carousel-inner {
  height: 100%;
}

.lines-carousel .carousel-item,
.lines-carousel .carousel-item.active {
  height: 100%;
}

.lines-carousel .carousel-item .bg-img,
.lines-carousel .carousel-item.active .bg-img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

/*///////////////////////// FOOTER //////////////////////////*/
footer {
  background: #1d1d1b;
  padding: 7rem 0;
  color: white;
}

footer a {
  color: white;
  transition: 0.3s;
}

footer a:hover {
  color: #ea4e43;
}

.social-media-container {
  display: flex;
  margin: 1rem 0 2rem 0;
}

.social-media {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50px;
  background-color: transparent;
  border: 2px solid white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-right: 12px;
}

.social-media:hover {
  background-color: #ea4e43;
}

.social-media img {
  width: 32px;
}

.form-inline {
  border: 1px solid white;
  width: fit-content;
  display: flex;
    align-items: center;
}

.form-inline .form-control {
  height: 60px;
  margin: 0;
  font-size: 18px;
  background-color: transparent;
  color: white;
  border: 0;
  font-weight: 500;
  min-width: 300px;
}

.form-inline .form-control:focus {
  box-shadow: none;
}

.form-inline button {
  width: 60px;
  height: 60px;
  color: white;
  background-color: #02539c;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-inline button:hover {
  color: white;
}
/*///////////////// MAPA /////////////*/
.iframe-map-container {
   height: 460px;
   width: 100%;
   display: inline-block;
   overflow: hidden;
}
.iframe-map-container iframe{
	width: 100%;
	display: block;
	pointer-events: none;
	position: relative; /* IE needs a position other than static */
}
.iframe-map-container iframe.clicked{
	pointer-events: auto;
}

/*////////////////////// RESPONSIVE //////////////////*/

@media (max-width: 1600px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1.6rem 4rem;
  }

  .lines-carousel .carousel {
    height: 600px;
  }
}

@media (max-width: 1360px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1.6rem 2rem;
  }

  .product-container {
    height: 550px;
  }
}

@media (max-width: 1024px) {
  .main-title {
    left: 0;
    right: 0;
    top: 20%;
    bottom: auto;
  }
  .main-title-left {
    left: 0;
    right: 0;
    top: 10%;
    bottom: auto;
  }
  .about-us p, .manifiest p{
    font-size: 18px;
  }
  .services-block-container {
    display: flex;
    align-items: start;
  }

  .product-container {
    height: 420px;
  }

  .product-title {
    font-size: 36px;
    padding: 2rem;
  }

  .product-deco {
    font-size: 44px;
  }
  .lines-carousel .carousel {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .nabvar-nav {
    align-items: flex-start;
  }
  .main-section .carousel {
  padding-top: 69px;
  }

  .manifiest-container{
  background-color: #16537d;
  background-image: none;
  }
  .bsnav-mobile .navbar-nav {
    padding: 30px;
  }

  .nav-link {
    color: white !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .nav-link::after {
    content: "";
    left: 0;
    right: auto;
    background-color: white;
  }

  .nav-link-btn {
    margin-top: 1rem;
    display: block;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .bsnav-mobile .navbar-nav .nav-item .nav-link {
    margin-left: 0 !important;
  }

  .carousel button {
    display: none;
  }
}

@media (max-width: 525px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1rem;
  }
  .navbar-brand img {
    height: 45px;
  }
  .about-us .h1 {
    font-size: 32px;
  }

  .lines-carousel .carousel {
    height: 320px;
  }
  .form-inline {
    width: 100%;
    justify-content: space-between;
}
}

@media (max-width: 376px) {
}
