/* mains css script */ 

:root{
    --primary-color: #333;
	--boton1-color: #0099CC;
	--boton2-color: #00CC33;
    --secondary-color: #444;
    --overlay-color: #EB3E4B;
	/*--overlay2-color: #EAB329;*/
}

* {
    box-sizing: border-box;
    margin: 0;
    padding:0;

}

body{
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.1rem;
}

h1, h2, h3, h4 {
    line-height: 1;
}

a {
    color: var(--secondary-color);
    text-decoration: none;

}

ul{
    list-style: none;
}

img{
    width: 100%;
}

.container{
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2 rem;
}

.navbar{
    font-size: 1.2rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.navbar .container{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
}

.navbar .logo{
    font-size: 2rem;
}

.navbar .nav{
    justify-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .nav a{
    padding: 0 1rem;
}


.navbar .nav a:hover{
    color: #555;
}

.section-a {
    margin: 2rem 0;
}

.section-a .container{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 3rem;
    align-items: center;
    justify-content: center;
}

.section-a h1{
    font-size: 3.8rem;
    color: var(--primary-color);
    font-weight: 800;
}

.section-a p{
    margin: 1rem 0;
}

.section-b{
    position: relative;
    background: url('backflag.png') no-repeat bottom center/cover;
    height: 600px;

}

.section-b-inner{
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    max-width: 860px;
    padding: 5rem 0;
}

.section-b-inner h3{
    font-size: 2rem;
}

.section-b-inner h2{
    font-size: 2rem;
    margin-top: 1rem;
    color: #FFFFFF;
}

.section-b-inner p{
    font-size: 1.1rem;
    margin-top: 1rem;
}


.section-c .gallery{
    display:grid;
    grid-template-columns: repeat(5,1fr);
}

.section-c .gallery a:first-child{
    grid-row: 1/3;
    grid-column: 1/3;
}

.section-c .gallery a :first-child{
    grid-column: 3/5;
}

.section-c .gallery img,.sectuon-c .gallery a{
    width:100%;
    height:100%;
}

.section-footer{
    background:var(--primary-color);
    color: #fff;
    padding: 4rem 0;
}

.section-footer .container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 1rem;
}

.section-footer h2{
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-footer h3{
    margin-bottom: 0.7rem;
}

.section-footer a{
    line-height: 1.9;
    color: #ccc;

}

.secrtion-footer a > i {
    color:#555;
    margin-right: 0.5rem;

}

.email-form{
    width: 100%;
    display: inline-block;
    background: #555;
    position: relative;
    border-radius: 20px;
    line-height: 0;
    margin-top: 1rem;

}

.email-form .form-control{
    display: inline-block;
    border: 0;
    outline: 0;
    font-size: 1rem;
    color: #ddd;
    background-color: transparent;
    font-family: inherit;
    margin:0;
    padding: 0 3rem 0 1.5rem;
    width: 100%;
    height: 45px;
    border-radius: 20px;
}


.email-form .submit{display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: #eee;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    color: #333;
    cursor: pointer;
    border-radius: 0 20px 20px 0;}


.btn{
    display: inline-block;
    background: var(--boton1-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 30px;
}

.btn2{
    display: inline-block;
    background: var(--boton2-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 30px;
}


.btn:hover{
    background: var(--secondary-color);
}

.btn2:hover{
    background: var(--secondary-color);
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--overlay-color);

}

.overlay2{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--overlay2-color);

}

@media(max-width:700px) {
    .section-a .container{
        grid-template-columns: 1fr;
        text-align: center;

    
}
.section-a .container div:first-child{
    order:2;
}

.section-a .container div:last-child{
    order:-1;
}


.section-a img {
    width: 80%;
    margin: auto;
  }

  .section-c .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .section-c .gallery a:first-child {
    grid-row: 1/1;
    grid-column: 1/1;
  }

  .section-c .gallery a:nth-child(2) {
    grid-column: 2/4;
    grid-row: 2/2;
  }

  .section-c .gallery a:last-child {
    display: none;
  }

  .section-footer {
    padding: 2rem 0;
  }
  .section-footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-footer div:nth-child(2),
  .section-footer div:nth-child(3) {
    display: none;
  }
}



}











/* barra de proteccion de datos */ 


html,
body {
  font: 16px Montserrat sans, sans-serif;
}

.allcanza-badge {
  margin-top: 50px;
}

.allcanza-badge__inner {
  display: flex;
  align-items: center;
  padding-top: 3.75em;
  padding-bottom: 3.75em;
  border: solid 1px #e5e5e5;
  border-right: none;
  border-left: none;
}
@media (max-width: 36.25em) {
  .allcanza-badge__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.allcanza-badge__img {
  width: 14.6875em;
}
@media (min-width: 36.3125em) {
  .allcanza-badge__img {
    margin-right: 1.875em;
  }
}
.allcanza-badge__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #777;
}
@media (max-width: 36.25em) {
  .allcanza-badge__text {
    text-align: center;
    margin-top: 1.6666666667em;
  }
}
.allcanza-badge__text p {
  margin: 0;
}
.allcanza-badge__title {
  margin: 0 0 0.4em;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.3;
}
.allcanza-badge__leafs {
  fill: #e5e5e5;
  transform-origin: center;
}
@media (max-width: 45.625em) {
  .allcanza-badge__leafs {
    display: none;
  }
}
.allcanza-badge__leafs--right {
  transform: rotateY(180deg);
}




/* TABLAS DE REQUERIMIENTOS PARA PROCESO script */ 




.section-services {
	padding-top: 110px;
	padding-bottom: 120px;
	font-family: "Poppins", sans-serif;
	background-color: #EB3E4B;
	color: #fff;
}

.section-services .header-section {
	margin-bottom: 35px;
}

.section-services .header-section .title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 25px;
    text-transform: uppercase;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 1px;
	background-color: #EB3E4B;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 3px;
	background-color: #EB3E4B;
}

.section-services .header-section .title span {
    color: #EB3E4B;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
}

.section-services .header-section .description {
	color: #6f6f71;
}

.section-services .single-service {
	margin-top: 40px;
	background-color: #24252a;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

.section-services .single-service .part-1 {
	padding: 40px 40px 25px;
	border-bottom: 2px solid #1d1e23;
}

.section-services .single-service .part-1 i {
	margin-bottom: 25px;
	font-size: 50px;
	color: #EB3E4B;
}

.section-services .single-service .part-1 .title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.8em;
    font-family: Montserrat;
}

.section-services .single-service .part-2 {
	padding: 30px 40px 40px;
}

.section-services .single-service .part-2 .description {
	margin-bottom: 22px;
	color: #6f6f71;
	font-size: 14px;
	line-height: 1.8em;
}

.section-services .single-service .part-2 a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.section-services .single-service .part-2 a i {
	margin-right: 10px;
	color: #EB3E4B;
}
