/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --theme-color-1: #d60058; 
  --dark-blue: #2E2D7E;
  --text-fucsia: #D60058;

  /* --bg-dark: #22264f; */
  --bg-dark: #313E48;
  --blue: #307FE2;
  --light-blue: #9eccf4;
 
}
body {
  font-family: "dinpro-regular", sans-serif;
  color: #222831;
}

a {
  color: var(--blue);
}

a:hover {
  color:  var(--light-blue);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'DINPro', sans-serif;
}
.h2 {  
font-size: 48px; 
text-transform: uppercase;
line-height: normal;
}

.text-pa-blue {
color: var(--blue);
}

.texto-bold span {
  font-family: 'DINPro', sans-serif;
}

#hero h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  right: 15px;
  bottom: 15px;
  background: var(--theme-color-1);
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: var(--blue);
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  color: #fff;
  background: var(--blue);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: var(--theme-color-1);
}

#topbar .contact-info i {
  color: #fff;
  padding: 4px;
}

#topbar .contact-info .icofont-phone {
  padding-left: 20px;
  margin-left: 10px;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: var(--theme-color-1);
}

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

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0 0 10px;/*0*/
  max-height: 80px;/*40px*/
      max-width: 50%;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--blue);
  padding: 30px 15px;/* 12px 15px */
  transition: 0.3s;
  font-size: 14px;
  font-family: "dinpro-regular", sans-serif;
  text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--theme-color-1);
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #222831;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: var(--theme-color-1);
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background:  var(--bg-dark);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #e3f0fc;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--theme-color-1);
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 35px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: var(--blue);
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(34, 38, 79, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 114px);
  padding: 0;
  overflow: hidden;
}

#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 114px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#hero .carousel-content {
  text-align: left;
}

@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

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

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

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

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "dinpro-regular", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 0px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: var(--theme-color-1);
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: var(--blue);
}

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

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

/*--------------------------------------------------------------
# Chatea en WhatsApp
--------------------------------------------------------------*/
.call-whatsapp {
	bottom:0px;
	right:0px;
	position: fixed;
    z-index: 2;
	margin-bottom: 15px;
	left: 15px;
	}

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

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

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

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--blue);
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 575px) {
    .section-title h2 {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .section-title h2 {
	font-size: 28px;
	}
}

.section-title p {
  margin-bottom: 0;
}

.fade:not(.show) {
    opacity: 1;
	
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
   transition: opacity 0.3s;
}

.fade:hover{
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f5f9fc;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Nosotros Inicio
--------------------------------------------------------------*/
.quienes-somos {
	color: #fff;
	background-color:  var(--bg-dark);
  /* margin-top: 100px; */
	}
	.quienes-somos h2 {
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		text-align: center;
		}
		.quienes-somos h3 {
			font-size: 18px;
			margin-bottom: 20px;
			line-height: 1.5;
			}
			.area-nosotros {
				margin:  8%;
				}

.quienes-somos button[type="submit"] {
	font-size: 14px;
    background: var(--theme-color-1);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
	text-transform: uppercase;
}
.quienes-somos button[type="submit"]:hover {
    background: var(--blue);
}

@media (max-width: 575px) {
    .quienes-somos {
		text-align: center;
	}
	.quienes-somos li {
		text-align: left;
		}
}

@media (max-width: 768px) {
	.quienes-somos {
		text-align: center;
	}
    .quienes-somos h2 {
	font-size: 28px;
	}
	.quienes-somos p {
		text-align: center;
	}
}

@media (max-width: 991px) {
	.quienes-somos {
		text-align: center;
	}
	.area-nosotros {
		margin: 8% 0 !important;
		}
		.quienes-somos {
			padding-bottom: 30px;
			}	
}

.quienes-somos .icon-box + .icon-box {
  margin-top: 40px;
}

.quienes-somos .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

.quienes-somos .icon-box .icon i {
  color: #428bca;
  font-size: 32px;
}

.quienes-somos .icon-box:hover .icon {
  background: #428bca;
}

.quienes-somos .icon-box:hover .icon i {
  color: #fff;
}

.quienes-somos .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.quienes-somos .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.quienes-somos .icon-box .title a:hover {
  color: #428bca;
}

.quienes-somos .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.quienes-somos .video-box {
  position: relative;
}

.quienes-somos .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--blue) 50%, rgba(46, 45, 126, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.quienes-somos .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);
}

.quienes-somos .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(46, 46, 126, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.quienes-somos .play-btn:hover::after {
  border-left: 15px solid var(--blue);
  transform: scale(20);
}

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

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


/*--------------------------------------------------------------
# Paises Inicio
--------------------------------------------------------------*/
.paises {
	color: #fff;
	background-color:  var(--bg-dark);
	padding-top: 0px;
	}
	.paises h2 {
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.paises p {
			font-size: 24px;
			}
			.paises a {
				color: #fff;
			}
			.paises a:hover {
				color: var(--theme-color-1);
			}
@media (max-width: 575px) {
    .paises h2 {
		text-align: center;
	}
	.paises p {
		margin-left: 8%;
		}
}

@media (max-width: 768px) {
    .paises h2 {
	font-size: 28px;
	text-align: center;
	}
	.paises p {
		font-size: 18px;
		padding-bottom: 30px;
		}
}

@media (max-width: 991px) {
	.paises h2 {
		text-align: center;
	}
	.paises p {
		font-size: 18px;
		padding-bottom: 30px;
		}
}


/*--------------------------------------------------------------
# Nuestra Historia
--------------------------------------------------------------*/
.nuestra-historia {
	background: #fff;
	padding-bottom: 0px;
	}
	.nuestra-historia h2 {
		color: var(--blue);
		font-size: 36px;
		text-transform: uppercase;
		text-align: center;
		margin-bottom: 50px;
		}
		.area-nosotros {
			margin: 8%;
			}

.nuestra-historia button[type="submit"] {
    background: var(--theme-color-1);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}
.nuestra-historia button[type="submit"]:hover {
    background: var(--blue);
}

@media (max-width: 575px) {
    .nuestra-historia {
		text-align: center;
	}
}

@media (max-width: 991px) {
	.nuestra-historia p {
		text-align: center;
		
	}
}


/*--------------------------------------------------------------
# Nuestro Equipo
--------------------------------------------------------------*/
.nuestro-equipo {
  background: #fff;
  /*background-image: url(../img/bg/04.png);*/
  background-position: center center;
  background-size: cover;
  position: relative;
}
.nuestro-equipo:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 150px;
    height: 150px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.nuestro-equipo .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.nuestro-equipo .member .pic {
  border-radius: 0px;
  overflow: hidden;
}

.nuestro-equipo .member img {
  transition: all ease-in-out 0.4s;
}

.nuestro-equipo .member:hover img {
  transform: scale(1.1);
}

.nuestro-equipo .member .member-info {
  position: absolute;
  bottom: -48px;
  left: 20px;
  right: 20px;
  background: linear-gradient(360deg, var(--blue) 0%, hsl(241deg 47% 34% / 90%) 35%, rgb(46 45 126 / 90%) 100%);
  padding: 15px 0;
  border-radius: 0px;
}

.nuestro-equipo .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.nuestro-equipo .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
}

.nuestro-equipo .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

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

.nuestro-equipo .member .social a {
  transition: color 0.3s;
  color: #fff;
}

.nuestro-equipo .member .social a:hover {
  color:  var(--light-blue);
}

.nuestro-equipo .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .nuestro-equipo .member {
    margin-bottom: 100px;
  }
}


/*--------------------------------------------------------------
# Misión
--------------------------------------------------------------*/
.mision {
	color: #fff;
	background-color: var(--theme-color-1);
	text-align: center;
	}
	.mision h2 {
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}

@media (max-width: 575px) {
    .mision {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .mision h2 {
	font-size: 28px;
	}
}


/*--------------------------------------------------------------
# Visión
--------------------------------------------------------------*/
.vision {
	color: #fff;
	background-color:  var(--bg-dark);
	text-align: center;
	}
	.vision h2 {
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}

@media (max-width: 575px) {
    .vision {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .vision h2 {
	font-size: 28px;
	}
}


/*--------------------------------------------------------------
# Nuestro Compromiso Inicio
--------------------------------------------------------------*/
.nuestro-compromiso {
	color: #fff;
	background-color: #222831;
    background: url(../img/nosotros/bg-nuestro-compromiso.jpg) no-repeat center top;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
	}
	.nuestro-compromiso h2 {
		font-size: 36px;
		text-transform: uppercase;
		text-align: center;
		margin-bottom: 50px;
		}
		.area-nosotros {
			margin: 8%;
			}

.nuestro-compromiso button[type="submit"] {
    background: var(--theme-color-1);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}
.nuestro-compromiso button[type="submit"]:hover {
    background: var(--blue);
}

@media (max-width: 575px) {
    .nuestro-compromiso {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .nuestro-compromiso h2 {
	font-size: 28px;
	}
	.nuestro-compromiso p {
		text-align: center;
	}
}

@media (max-width: 991px) {
.nuestro-compromiso {
	color: #fff;
	background-color: #222831;
    background: url(../img/nosotros/bg-nuestro-compromiso.jpg) no-repeat center top;
    background-attachment: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
	}
}

/*--------------------------------------------------------------
# Certificados
--------------------------------------------------------------*/
.certificados {
	color: #fff;
	background-color: #fff;
    background-image: url(../img/bg/03.png);
    background-position: center center;
    background-size: cover;
    position: relative;
	text-align: center;
	padding-bottom: 0px;
	}
	.certificados h2 {
		color: var(--blue);
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.certificados h3 {
			color: #222831;
			font-family: "dinpro-regular", sans-serif;
			font-size: 13px;
			text-align: center;
			padding-top: 12px;
			padding-bottom: 30px;
			margin: 0;
			text-transform: uppercase;
			}
		.certificados p {
			color: #222831;
			padding-bottom: 30px;
			margin: 0;
			}

@media (max-width: 575px) {
	.certificados h2 {
		text-align: center;
		}
    .certificados p {
		text-align: center;
		margin: 0;
	}
}

@media (max-width: 768px) {
    .certificados h2 {
	font-size: 28px;
	}
}
			
/*--------------------------------------------------------------
# Políticas
--------------------------------------------------------------*/
.politicas {
  color: #fff;
	background-color: #fff;
  /*background-image: url(../img/bg/06.png);	*/
	background-position: center center;
  background-size: cover;
  position: relative;
	text-align: center;
	
}
.politicas .container {
  position: relative;
  z-index: 3;
}
  .politicas:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 350px;
    height: 350px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}
@media (max-width: 1599px) {
  .politicas:after {
    max-width: 280px;
    height: 280px;
  }
}
@media (max-width: 768px) {
  .politicas:after {
    max-width: 150px;
    height: 150px;
  }
}
	.politicas h2 {
		color: var(--blue);
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.politicas p {
			color: #222831;
			font-size: 13px;
			text-align: center;
			padding-top: 12px;
			padding-bottom: 30px;
			margin: 0;
			text-transform: uppercase;
			}

@media (max-width: 575px) {
    .politicas {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .politicas h2 {
	font-size: 28px;
	}
}


/*--------------------------------------------------------------
# Servicios
--------------------------------------------------------------*/
#servicios {
  background:  var(--bg-dark);
  padding: 0;
}

#servicios .servicios-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#servicios .servicios-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}
#servicios .servicios-item h3 {
  color: #ffffff; 
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
#servicios .servicios-item h2 {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 420px) {
      #servicios .servicios-item h3 {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
    #servicios .servicios-item h2 {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}
}


#servicios .servicios-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#servicios .servicios-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#servicios .servicios-item:hover .servicios-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

#servicios .servicios-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


/*--------------------------------------------------------------
# Area de Negocios Inicio
--------------------------------------------------------------*/
section.area-negocios-pages {
    padding: 0;
}

.area-negocios {
	color: #222831;
	background-image: url(../img/bg/08.png);	
	background-position: center center;
    background-size: cover;
    position: relative;
	}
	.area-negocios h2 {
		color: var(--blue);
		font-size: 36px;
		text-transform: uppercase;
		text-align: center;
		margin-bottom: 50px;
		}

	.area-negocios-pages h2 {
		color: #fff;
		font-size: 36px;
		text-transform: uppercase; 
		margin-bottom: 20px;
		}

    .area-negocios-pages-content {
      position: relative;
      padding-bottom: 100px;
    }
   .area-negocios-pages-content:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 400px;
    height: 100%;
    clip-path: polygon(76% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}
    .section-banner-negocios {
      /* margin-top:57px ; */
    }

    .pages-negocios .breadcrumb { 
    padding: 0;
    margin-bottom: 0; 
    background-color: #00000000;
    border-radius: 0;
        margin-bottom: 57px;
}

.pages-negocios .breadcrumb  .breadcrumb-item a {
    color: rgb(255 255 255 / 30%);
    &:hover {
      color:#fff
    }
}

.pages-negocios .breadcrumb  .breadcrumb-item.active  {
    color:#fff;
}
    .bg-blue-dark{
      background:  var(--bg-dark);
    }
@media (max-width: 1366px) {
.area-negocios-pages-content:after { 
    max-width: 200px; 
}
}
@media (max-width: 768px) {
    .area-negocios h2 {
	font-size: 28px;
	}
.area-negocios-pages-content:after {
        max-width: 150px;
    }
}
@media (max-width: 575px) {
    .area-negocios {
		text-align: center;
	}
}
.btn-rose {
    font-size: 14px;
    background: var(--theme-color-1);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    text-transform: uppercase;
    &:hover{
         background: var(--blue);
         color: #fff;
    }
}

.faq-container { padding: 30px; margin-top: 100px; margin-bottom: 100px;    }
        .contact-panel {
            background-color: #13152F;
            color: white;
            padding: 45px 55px; 
            text-align: center;
            & h3 {
              font-size: 22px;
              margin-block: 28px;
            }
        }
        .contact-icon {
            background-color: #ec008c; 
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        .btn-contact {
            background-color: #ec008c; 
            border: none;
            width: 100%;
            margin-top: 15px;
        }
         
        
        .card { border: none !important; margin-bottom: 30px; border-radius: 0; padding: 0 40px; }
        .card-header {
          position: relative;
            background-color: transparent !important;
            border: none;
            padding: 2rem 0;
        }

        .card-body {
            border-top: 1px solid var(--text-fucsia);
            padding: 1.5rem 0 2.5rem;
            text-align: left;
        }
        
        
        .card-link { 
            display: block;
                text-align: left;
            color: var(--text-fucsia);  
            font-size: 18px; 
            font-weight: 700; 
            text-transform: uppercase;
            position: relative; 
            text-decoration: none;
            padding-right: 30px; 
            &:hover{
              color:#333;
            }
        }
        .card-link.collapsed{
            color:#333;
            &:hover{
              color:var(--text-fucsia);
            }
        } 
        .card-link::after {
          content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23D60058'/%3E%3Cpath d='M23.2822 17.5172L23.2822 15.7397L16.6285 15.7397L16.6285 9.08602H14.851L14.851 15.7397L8.19727 15.7397L8.19727 17.5172L14.851 17.5172L14.851 24.171H16.6285L16.6285 17.5172L23.2822 17.5172Z' fill='white'/%3E%3C/svg%3E");
             position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            line-height: 1; 
            width: 20px; 
            height: 20px;
            text-align: center;
            line-height: 20px; 
        } 
        .card-link:not(.collapsed)::after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23D60058'/%3E%3Cpath d='M23.2822 15.7397L23.2822 17.5172L16.6285 17.5172H14.851L8.19727 17.5172L8.19727 15.7397L14.851 15.7397H16.6285L23.2822 15.7397Z' fill='white'/%3E%3C/svg%3E"); 
        }


/*--------------------------------------------------------------
# Proyectos-realizados
--------------------------------------------------------------*/
.proyectos-realizados {
	color: #222831;
	/*background-image: url(../img/bg/01.png);	*/
	background-position: center center;
    background-size: cover;
    position: relative;
	text-align: center;
	}
.proyectos-realizados .container-fluid {
  position: relative;
  z-index: 3;
}
.proyectos-realizados:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 330px;
    height: 330px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}
.proyectos-realizados:before {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    background: var(--blue);
    width: 100%;
    max-width: 185px;
    height: 185px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}
@media (max-width: 1599px) {
  .proyectos-realizados:after {
    max-width: 300px;
    height: 300px;
  }
  .proyectos-realizados:before {
    max-width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .proyectos-realizados:after {
    max-width: 200px;
    height: 200px;
  }
  .proyectos-realizados:before {
    max-width: 100px;
    height: 100px;
  }
}
	.proyectos-realizados h2 {
		color: var(--blue);
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.proyectos-realizados p {
			margin-bottom: 50px;
			}
.proyectos-realizados a {
	font-size: 14px;
}

@media (max-width: 575px) {
    .proyectos-realizados {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .proyectos-realizados h2 {
	font-size: 28px;
	}
}

/*--------------------------------------------------------------
# Empresas - Otras lineas de negocio
--------------------------------------------------------------*/
.empresas {
	color: #222831;
	background-color:  var(--bg-dark);
	text-align: center;
	padding-top: 0;
	padding-bottom: 0;
	}
	.empresas h2 {
		color: #fff;
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.empresas p {
			color: #fff;
			margin-bottom: 50px;
			text-align: center;
			}

@media (max-width: 575px) {
    .empresas {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .empresas h2 {
	font-size: 28px;
	}
}


/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background-color: var(--theme-color-1);
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav, #clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: var(--theme-color-1);
}



/*--------------------------------------------------------------
# Certificaciones2
--------------------------------------------------------------*/
.certificaciones2, .proyectos {
  color: #222831;
	background-color:  var(--bg-dark);
  /*background-image: url(../img/bg/04.png);*/
	background-position: center center;
  background-size: cover;
  position: relative;
	text-align: center;
}
.certificaciones2 .container {
  position: relative;
    z-index: 3;
}
/* .certificaciones2:after */
.proyectos:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 405px;
    height: 425px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}
@media (max-width: 1599px) {
  .certificaciones2:after {
    max-width: 320px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .certificaciones2:after {
    max-width: 200px;
    height: 200px;
  }
    
}
	.certificaciones2 h2, .proyectos h2 {
		color: #fff;
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.certificaciones2 p {
			color: #fff;
			margin-bottom: 50px;
			text-align: center;
			}




@media (max-width: 1440px) {
.proyectos:after { 
    max-width: 210px; 
}
}


@media (max-width: 768px) {
    .certificaciones2 h2 {
	font-size: 28px;
	}
    .proyectos::after {
        max-width: 100px;
        height: 220px;
    }
    .faq-container { 
    margin-bottom: 0;
}
}

@media (max-width: 575px) {
    .certificaciones2 {
		text-align: center;
	}
}

/*--------------------------------------------------------------
# Certificaciones
--------------------------------------------------------------*/
.certificaciones {
	color: #222831;
	background-color:  var(--bg-dark);
	text-align: center;
	}
	.certificaciones h2 {
		color: #fff;
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.certificaciones p {
			color: #fff;
			margin-bottom: 50px;
			text-align: center;
			}

@media (max-width: 575px) {
    .certificaciones {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .certificaciones h2 {
	font-size: 28px;
	}
}

/*--------------------------------------------------------------
# proyectos
--------------------------------------------------------------*/
.content-info-proyectos  {
  padding: 32px;
      height: auto;
}
.content-info-proyectos h3 {
	color: var(--blue);  
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
	}
	.content-info-proyectos p {
		color:   #333F48;  
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
		}
	 
.carousel-proyectos button.owl-dot  {
    width: 30px;
    background: rgb(255 255 255 / 30%);
    height: 3px;
    margin-inline: 5px;
}
.carousel-proyectos button.owl-dot.active { 
    background: #E20A17; 
}

.carousel-proyectos .owl-nav {
    display: inline-flex;  
    align-items: center;
    margin-top: 50px;
}

.carousel-proyectos .owl-dots {
    align-items: center;
    display: inline-flex; 
    margin: 3px 34px 0px 34px;
}
@media (max-width: 575px) {
    .content-info-proyectos h3 { 
	}
}

@media (max-width: 768px) {
   .content-info-proyectos h3 { 
font-size: 18px;
   }
}


/*--------------------------------------------------------------
# Empresas
--------------------------------------------------------------*/
.empresas2 {
	color: #222831;
	background-color:  var(--bg-dark);
    /*background-image: url(../img/bg/06.png);*/
	background-position: center center;
    background-size: cover;
    position: relative;
	text-align: center;
	}
.empresas2 .container {
  position: relative;
  z-index: 3;
}
  .empresas2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 350px;
    height: 350px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}
@media (max-width: 1599px) {
  .empresas2:after {
    max-width: 280px;
    height: 280px;
  }
}
@media (max-width: 768px) {
  .empresas2:after {
    max-width: 150px;
    height: 150px;
  }
}
	.empresas2 h2 {
		color: #fff;
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}
		.empresas2 p {
			color: #fff;
			margin-bottom: 50px;
			}

@media (max-width: 575px) {
    .empresas2 {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .empresas2 h2 {
	font-size: 28px;
	}
}


/*--------------------------------------------------------------
# Clientes Perú
--------------------------------------------------------------*/
.clientes-peru {
	color: #fff;
	background-color: var(--theme-color-1);
	text-align: center;
	}
	.clientes-peru h2 {
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}

@media (max-width: 575px) {
    .clientes-peru {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .clientes-peru h2 {
	font-size: 28px;
	}
}

/*--------------------------------------------------------------
# Clientes Colombia
--------------------------------------------------------------*/
.clientes-colombia {
	color: #fff;
	background-color:  var(--blue);
	text-align: center;
	}
	.clientes-colombia h2 {
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}

@media (max-width: 575px) {
    .clientes-colombia {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .clientes-colombia h2 {
	font-size: 28px;
	}
}

/*--------------------------------------------------------------
# Clientes Colombia
--------------------------------------------------------------*/
.clientes-colombia2 {
	color: #fff;
	background-color:  var(--blue);
	/*background-image: url(../img/bg/06.png);*/
    background-position: center center;
    background-size: cover;
    position: relative;
	text-align: center;
	}
.clientes-colombia2 .container {
  position: relative;
    z-index: 3;
}
.clientes-colombia2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 200px;
    height: 200px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}
@media (max-width: 768px) {
  .clientes-colombia2:after {
    max-width: 100px;
    height: 100px;
  }
}
	.clientes-colombia2 h2 {
		font-size: 36px;
		text-transform: uppercase;
		margin-bottom: 50px;
		}

@media (max-width: 575px) {
    .clientes-colombia2 {
		text-align: center;
	}
}

@media (max-width: 768px) {
    .clientes-colombia2 h2 {
	font-size: 28px;
	}
}


/*--------------------------------------------------------------
# Trabaja con nosotros
--------------------------------------------------------------*/
.trabaja-con-nosotros {
    color: #222831;
    /*background-image: url(../img/bg/02.png);*/
    background-position: center center;
    background-size: cover;
    position: relative;
	text-align: center;
	}
.trabaja-con-nosotros .container {
  position: relative;
  z-index: 3;
}
.trabaja-con-nosotros:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 400px;
    height: 400px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}
.trabaja-con-nosotros:before {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    background: var(--blue);
    width: 100%;
    max-width: 260px;
    height: 260px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
}
@media (max-width: 1599px) {
  .trabaja-con-nosotros:after {
    max-width: 320px;
    height: 320px;
  }
  .trabaja-con-nosotros:before {
    max-width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .trabaja-con-nosotros:after {
    max-width: 200px;
    height: 200px;
  }
  .trabaja-con-nosotros:before {
    max-width: 100px;
    height: 100px;
  }
}
	.trabaja-con-nosotros button[type="submit"] {
		font-size: 14px;
		background: var(--blue);
		border: 0;
		padding: 10px 24px;
		color: #fff;
		transition: 0.4s;
		text-transform: uppercase;
		margin-bottom: 5px;
		}
		.trabaja-con-nosotros button[type="submit"]:hover {
		background: var(--theme-color-1);
		}
		.trabaja-con-nosotros button[type="submit2"] {
			font-size: 14px;
			background: var(--theme-color-1);
			border: 0;
			padding: 10px 24px;
			color: #fff;
			transition: 0.4s;
			text-transform: uppercase;
			margin-bottom: 5px;
			}
			.trabaja-con-nosotros button[type="submit2"]:hover {
			background: var(--blue);
			}

		/* Botón Envía tu CV - mismo estilo que el otro botón */
		.trabaja-con-nosotros #enviar-cv-btn {
			font-size: 14px;
			background: var(--theme-color-1);
			border: 0;
			padding: 10px 24px;
			color: #fff;
			transition: 0.4s;
			text-transform: uppercase;
			margin-bottom: 5px;
			margin-left: 10px;
		}
		.trabaja-con-nosotros #enviar-cv-btn:hover {
			background: var(--blue);
			cursor: pointer;
		}

		/* Asegurar z-index alto para el modal - por encima de todos los elementos */
		.modal {
			z-index: 100000 !important;
		}

		.modal-backdrop {
			z-index: 99999 !important;
		}

		/* Estilos para el modal CV */
		.modal-content {
			border-radius: 8px;
			border: none;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
			position: relative;
			z-index: 100001 !important;
		}

		.modal-header {
			background: linear-gradient(135deg, var(--blue) 0%, var(--theme-color-1) 100%);
			color: white;
			border-bottom: none;
			border-radius: 8px 8px 0 0;
		}

		.modal-header .close {
			color: white;
			opacity: 0.8;
			font-size: 1.5rem;
		}

		.modal-header .close:hover {
			opacity: 1;
		}

		.modal-body {
			padding: 30px;
		}

		.form-group label {
			font-weight: 600;
			color: #333;
			margin-bottom: 8px;
		}

		.form-control {
			border: 1px solid #ddd;
			border-radius: 4px;
			padding: 10px 15px;
			transition: border-color 0.3s;
		}
    select.form-control {
    height: 45px;
    border-radius: 0;
    color: #7e858d;
    font-size: 14px;
    }
		.form-control:focus {
			border-color: var(--theme-color-1);
			box-shadow: 0 0 0 0.2rem rgba(46, 45, 126, 0.25);
		}

		.custom-file-label {
			border: 1px solid #ddd;
			border-radius: 4px;
		}

		.custom-file-input:focus ~ .custom-file-label {
			border-color: var(--theme-color-1);
			box-shadow: 0 0 0 0.2rem rgba(46, 45, 126, 0.25);
		}

		.btn-primary {
			background-color: var(--theme-color-1);
			border-color: var(--theme-color-1);
		}

		.btn-primary:hover {
			background-color: var(--blue);
			border-color: var(--blue);
		}

		.text-danger {
			color: #dc3545 !important;
		}

		/* Solucionar problemas de overlay */
		body.modal-open {
			overflow: hidden;
		}

		/* Evitar interferencias con AOS */
		.modal[data-aos] {
			transform: none !important;
			opacity: 1 !important;
		}

		/* Asegurar visibilidad del modal */
		.modal.show {
			display: block !important;
		}

		.modal.fade.show {
			opacity: 1 !important;
		}

		/* Asegurar que nada interfiera con el modal */
		.modal-dialog {
			position: relative;
			z-index: 100002 !important;
		}

/*--------------------------------------------------------------
# Google maps Section
--------------------------------------------------------------*/
.map {
	margin: 0;
	margin-bottom: -6px;
    }
.map iframe {
    height: 280px;
    width: 100%;
    border: -4px;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact {
  color: #222831;
	
	background-image: url(../img/bg-contact.jpg);
	background-position: center center;
  background-size: cover;
  position: relative;
}
.contact .container {
  position: relative;
  z-index: 3;
}
/* .contact:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 470px;
    height: 470px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}
.contact:before {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    background: var(--dark-blue);
    width: 100%;
    max-width: 325px;
    height: 325px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 1;
} */
.contact:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    background: var(--theme-color-1);
    width: 100%;
    max-width: 40%;
    height: 100%;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}
.checks-term, label.checks-term {
  color: #7C7C7C; 
  font-size: 14px;
  & a{
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #7C7C7C;
    &:hover {
      color: var(--blue);
    }
  }
}

@media (max-width: 1599px) {
  .contact:after {
    /* max-width: 320px;
    height: 320px; */
      
  }
  .contact:before {
    max-width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .h2 {
    font-size: 30px;
    }
  .contact:after {
    /* max-width: 200px;
    height: 200px; */
    max-width: 50%;
  }
  .contact:before {
    max-width: 100px;
    height: 100px;
  }
}
.contact .info-box {
  color: #444;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--blue);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted var(--theme-color-1);
}

.contact .info-box h3 {
  font-size: 1rem;
  color: var(--blue);
  margin: 10px 0;
  font-family: "dinpro-regular", sans-serif;
  text-transform: uppercase;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 1rem;
  margin-bottom: 0;
}

.contact .php-email-form {
	background-color: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}


/*star - send-message*/
.contact .send-message {
	background-color: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .send-message input {
    padding: 20px 15px;
}

.contact .send-message input, .contact .send-message textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .send-message button[type="submit"] {
    font-size: 14px;
    background: var(--theme-color-1);
    border: 0;
	border-radius: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    text-transform: uppercase;
}

.contact .send-message button[type="submit"]:hover {
    background: var(--blue);
}

.contact .send-message textarea {
    padding: 12px 15px;
}

/*end - send-message*/

.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: var(--blue);
  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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #428bca;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  font-size: 14px;
  background: var(--theme-color-1);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  text-transform: uppercase;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--blue);
}

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

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

#footer {
  background: var(--theme-color-1);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: var(--theme-color-1);
  border-top: 1px solid var(--theme-color-1);
  border-bottom: 1px solid var(--theme-color-1);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "dinpro-regular", sans-serif;
  color: #fff;
}

#footer .footer-top .footer-info a {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "dinpro-regular", sans-serif;
  color: #fff;
}


#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--blue);
  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: var(--theme-color-1);
  color: #fff;
  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: var(--blue);
  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: var(--blue);
}

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

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

#footer .footer-top .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: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #5295ce;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

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

#footer .credits a {
  color:  var(--light-blue);
}
.relative {
  position: relative;
  z-index: 3;
}