/*
Theme Name: M&C Ventanas
Theme URI: https://www.sapublicidad.cl/sicsam
Author: SA Publicidad SpA
Author URI: https://www.sapublicidad.cl
Description: Tema exclusivo desarrollado por SA Publicidad. Diseño moderno, responsive y full-width.
Version: 1.0.1
License: Licencia Privada
License URI: https://www.sapublicidad.cl/licencia
Tags: minimalista, responsive, moderno, full-width
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color7);
  color: var(--color8);
}

body {
  font-family: "Mona Sans", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color9);
  color: var(--color8);
  padding: 0 0 20px 0;
}

.wrap{
  max-width: 1600px;
  margin:auto;
  width: 98%;
}

@media(max-width:800px){
  .wrap{
    width: 90%;
  }
}

input, textarea, button, select {
  font: inherit;
  color: var(--color8);
  background-color: var(--color7);
  border: 1px solid var(--color9);
  border-radius: 4px;
  padding: 0.5em;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:hover,
a:focus {
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 2px solid var(--color1);
  outline-offset: 2px;
}


.material-symbols-outlined {
  pointer-events: none;
  font-variation-settings: 'FILL' 0, 'wght' 100,'GRAD' 0;
}


/* header */
header{
  padding: 20px 0;
}

header#stick{
  position: fixed;
  width: 100%;
  top:0;
  left: 0;
  z-index: 999;
}

@media(max-width:800px){
  header#stick{
    display: none;
  }
}

header#stick.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

header#stick.show {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}


header .wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--color7);
}

header .wrap .logo{
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 3px;
  background-color:  var(--color2);
  padding: 0 10px;
  color: var(--color7);
  border-radius: 15px 0 0 0;
  cursor: pointer;
}

@media(max-wdth:800px){
  header .wrap .logo{
    font-size: 30px;
  }
}

header .wrap .logo span{
  color: var(--color5);
  font-weight: 700;
}


/* btn-nav */
#btn-nav{
    display: none;
}

@media(max-width:800px){
    header label{
        background-color: var(--color1);
        width: 50px;
        height: 50px;
        position: relative;
        border-radius: 5px;
        order:5;
        cursor: pointer;
    }

    header label span{
        position: absolute;
        left: 25%;
        height: 2px;
        background-color: var(--color5);
        transition: all .3s ease;
    }

    header label span:nth-child(1){
        top:13px;
        width:50%;
        transition-delay: .2s;
    }

    header label span:nth-child(2){
        top:24px;
        width: 40%;
        transition-delay: 0s;
    }

    header label span:nth-child(3){
        top:35px;
        width:50%;
        transition-delay: .2s;
    }

    #btn-nav:checked ~ label span:nth-child(1){
        transform: rotate(45deg);
        top:24px;
    }

    #btn-nav:checked ~ label span:nth-child(2){
        width: 0%;
        transition-delay: 0s;
    }

    #btn-nav:checked ~ label span:nth-child(3){
        transform: rotate(-45deg);
        top:24px;
    }
}


/* nav */
nav ul{
  display: flex;
  gap: 20px;
  font-weight: 500;
  font-size: 17px;
}

nav ul li a{
  color: var(--color8);
  transition: color .3s ease;
}

@media(max-width:800px){
  nav{
    position: absolute;
    left: 0;
    top:0;
    width: 60%;
    background-color: var(--color7);
    z-index: 99;
    transform: translateX(-100%);
    transition:all .3s ease;
    opacity: 0;
  }

  #btn-nav:checked ~ nav{
    transform: translateX(0);
    opacity: 1;
  }
  nav ul{
    display: block;
  }

  nav ul li a{
    padding: 15px;
    display: block;
  }
}

nav ul li a:hover{
  color: var(--color1);
}


nav ul li.current-menu-item a{
  color: var(--color2);
}

nav ul li.current-menu-item a:hover{
  color: var(--color2);
}

/* header-banner */
.header-banner{
  display: flex;
  justify-content: right;
  gap:20px;
  width: 30%;
  align-items: center;
  line-height: 50px;
}

.header-banner .search-icon{
  font-size: 20px;
  color: var(--color8);
  background-color: var(--color9);
  cursor: pointer;
  line-height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
}

@media(max-width:800px){
  .header-banner{
    display: none;
  }
}

/* search-modal */
.search-modal{
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: color-mix(in srgb, var(--color4) 80%, rgba(255,255,255,0.1) 20%);

  top:0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.search-modal.show{
  opacity: 1;
  pointer-events: all;
}

.search-modal .content-search-modal form{
  padding: 10px;
  border-radius: 13px;
  background-color: var(--color7);
  display: flex;
  width: 400px;
  max-width: 90%;
}

.search-modal .content-search-modal form input[type="text"]{
  border:none;
  outline: none;
  flex:5;
}

.search-modal .content-search-modal form button{
  border:none;
  cursor: pointer;
  outline: none;
  flex:1;
}

.header-banner .btn-top a{
  background-color: var(--color1);
  display: block;
  border-radius: 50px;
  font-weight: 600;
  color: var(--color7);
  padding: 0 5px 0 20px;
  transition: background-color .3s ease;
}

.header-banner .btn-top a:hover{
  background-color: var(--color5);
}

.header-banner .btn-top a i{
  display: inline-block;
  background-color: var(--color8);
  width: 35px;
  margin:0 0 0 10px;
  line-height: 35px;
  text-align: center;
  font-size: 18px;
  border-radius: 50%;
  transform:rotate(-45deg);
}

.btn-contact-info{
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
}

.btn-contact-info span{
  position: absolute;
  height: 2px;
  background-color: var(--color8); 
  left: 25%;
}

.btn-contact-info span:nth-child(1){
  top: 14px;
  width: 50%;
}

.btn-contact-info span:nth-child(2){
  top: 24px;
  width: 40%;
}

.btn-contact-info span:nth-child(3){
  top: 34px;
  width: 50%;
}

/* contact-modal */
.contact-modal{
  position: fixed;
  width: 50%;
  max-width: 400px;
  top:0;
  right: 0;
  background-color: var(--color4);
  height: 100vh;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.contact-modal.show{
  transform: translateX(0);
}

.content-contact-modal{
  padding: 50px;
}

.content-contact-modal ul.menu li a{
  color: var(--color7);
  padding: 10px 0;
  border-bottom: dotted 1px var(--color5);
  display: block;
}

.content-contact-modal ul.menu li:last-child a{
  border:none;
}

.content-contact-modal ul.menu li a span{
  padding: 5px 0;
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  opacity: .8;
}

.content-contact-modal ul.menu li a i{
  color: var(--color5);
}

.content-contact-modal ul.social{
  margin:30px 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.content-contact-modal ul.social li a{
  display: block;
  text-decoration: none;
  color: var(--color5);
  font-size: 25px;
}

/* home */
.home .wrap{
  display: flex;
  flex-wrap: wrap;
  gap:2%;
  padding: 0 0 50px 0;
}

.home .wrap article{
  width: 49%;
}

.home .wrap article:nth-child(1){
  display: flex;
  align-items: center;
  background-color: var(--color2);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-image: url("img/lineas-1.svg?2"), url("img/lineas-2.svg?2");
  background-position: top right, bottom left;
  background-repeat: no-repeat, no-repeat;
  background-size: 50%, 40%;
}

.home .wrap article:nth-child(1):before{
  content: "";
  position: absolute;
  top:-20%;
  left: -10%;
  background-color: var(--color8);
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .5;
}

.home .wrap article:nth-child(1):after{
  content: "";
  position: absolute;
  bottom:0%;
  right: -10%;
  background-color: var(--color8);
  width: 40%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  opacity: 1;
  filter: blur(100px);
}

.home .wrap article:nth-child(1) .inter{
  padding: 40px;
  position: relative;
  z-index: 2;
  color: var(--color7);
}

.home .wrap article:nth-child(1) .inter h2{
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 5px 10px;
}

.home .wrap article:nth-child(1) .inter h2 img{
  width: 20px;
  height: 20px;
  margin:0 10px 0 0;
  pointer-events: none;
}

.home .wrap article:nth-child(1) .inter h2:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border:dashed 1px var(--color7);
  top:0;
  left: 0;
  border-radius: 5px;
  opacity: .2;
}

.home .wrap article:nth-child(1) .inter h1{
  font-size: 70px;
  line-height: 1.2;
  font-weight: 600;
}


.home .wrap article:nth-child(1) .inter h1 span{
  color: var(--color5);
}

.home .wrap article:nth-child(1) .inter .info{
  display: flex;
  gap:5%;
  align-items: center;
  margin:50px 5% 0 5%;
  border-top:dashed 1px var(--color10);
  border-bottom:dashed 1px var(--color10);
}

.home .wrap article:nth-child(1) .inter .info .item:nth-child(1)
  {
    transform: rotate(-45deg);
    font-size: 80px;
    color: transparent; 
    -webkit-text-stroke: 1px var(--color7);
}

.home .wrap article:nth-child(1) .inter .info .item:nth-child(2){
    border-left: dashed 1px var(--color10);
    padding: 10px 0 10px 20px;
    font-size: 15px;
}

@media(max-width:800px){
  .home .wrap article:nth-child(1) .inter .info{
    margin:40px auto 0 auto;
  }
  .home .wrap article:nth-child(1) .inter .info .item:nth-child(1){
      font-size: 30px;
  }
}

.home .wrap article:nth-child(2){
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color:var(--color9);
}

.home .wrap article:nth-child(2) img{
  width: 100%;  
  height: 100%;
  object-fit: cover;
}


.home .wrap article:nth-child(2) .bottom-item{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  display: flex;
  align-items: center;
  border-right: solid 15px var(--color9);
  background-color: var(--color9);
  border-top:solid 15px var(--color9);
  flex-wrap: wrap;
  border-radius: 0 13px 0 0;
}






.home .wrap article:nth-child(2) .bottom-item:before{
  content: "";
  position: absolute;
  bottom:105%;
  left: 0;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  box-shadow: -10px 10px 0 var(--color9);
}


.home .wrap article:nth-child(2) .bottom-item:after{
  content: "";
  position: absolute;
  bottom:0%;
  left: 106%;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  box-shadow: -10px 10px 0 var(--color9);
}


.home .wrap article:nth-child(2) .bottom-item .info-bottom-item{
  border-radius: 10px;
  background-color: var(--color7);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}


.home .wrap article:nth-child(2) .bottom-item .gallery{
  width: 100%;
  display: flex;
  gap: 10px;
  margin:0 0 20px 0;
  line-height: 50px;
}
@media(max-width:800px){
  .home .wrap article{
    width: 100%;
    height: auto;
    text-align: center;
  }

  .home .wrap article:nth-child(1) .inter h1{
    font-size: 40px;
  }

  .home .wrap article:nth-child(2) .bottom-item{
    width: 100%;
    height: 30%;
    background-color: var(--color7);
    border:none;
    border-radius: 10px;
    display: flex;
    padding: 0px 0 0 0;
  }

  .home .wrap article:nth-child(2) img{
    border-radius: 20px;
    margin:20px 0;
    height: 63%;
  }

  .home .wrap article:nth-child(2) .bottom-item:after,
  .home .wrap article:nth-child(2) .bottom-item:before{
    display: none;
  }

  .home .wrap article:nth-child(2) .bottom-item .info-bottom-item{
    aspect-ratio: auto;
    justify-content: center;
    border:none;
    border-radius: 10px;
    padding: 0;
    width: 100%;
    padding: 20px;
  }

  .home .wrap article:nth-child(2) .bottom-item .gallery{
    display: none;
  }
}

.home .wrap article:nth-child(2) .bottom-item .gallery img{
  width:50px;
  border:solid 2px var(--color7);
  border-radius: 50%;
  background-color: var(--color7);
}

.home .wrap article:nth-child(2) .bottom-item .gallery img:nth-child(2),
.home .wrap article:nth-child(2) .bottom-item .gallery img:nth-child(3){
  margin:0 0 0 -25px;
}

.home .wrap article:nth-child(2) .bottom-item .gallery span a{
  display: block;
  font-size: 25px;
  font-weight: 700;
  background-color: var(--color3);
  width: 50px;
  line-height: 48px;
  border-radius: 50px;
  text-align: center;
  margin:0 0 0 -25px;
  color: var(--color7);
  border:solid 2px var(--color7);
}

.home .wrap article:nth-child(2) .bottom-item h3{
  font-size: 50px;
  font-weight: 700;
  color: var(--color8);
}

@media(max-width:800px){
  .home .wrap article:nth-child(2) .bottom-item h3{
    font-size: 30px;
    text-align: center;
  }
}

.home .wrap article:nth-child(2) .bottom-item p{
  font-size: 15px;
  color: var(--color8);
  opacity: .7;
}

/* banner-1 */
.banner-1{
  padding: 50px 0;
}

.banner-1 .wrap{
  text-align: center;
  max-width: 1290px;
}

.banner-1 .wrap h2{
  display: inline;
  padding: 5px 10px;
  border:dashed 1px var(--color11);
  font-size: 1em;
  text-transform: uppercase;
  border-radius: 5px;
}


.banner-1 .wrap h3{
  font-size: 3em;
  line-height: 1.2;
  font-weight: 600;
  max-width: 600px;
  margin:20px auto 0 auto;
}

@media(max-width:800px){
  .banner-1{
    padding: 0;
  }
  .banner-1 .wrap h3{
    font-size: 2em;
  }
}

.banner-1 .wrap h3 span{
  color: var(--color1);
}

.banner-1 .wrap .gallery{
  display: flex;
  gap: 4%;
  justify-content: center;
  margin: 50px 0;
}

.banner-1 .wrap .gallery article{
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  position: relative; 
  padding: 50px 40px;
  background-color: var(--color7);
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,.05);
}

@media(max-width:800px){
  .banner-1 .wrap .gallery{
    flex-wrap: wrap;
  }

  .banner-1 .wrap .gallery article{
    width: 100%;
    text-align: center;
    margin:10px 0;
  }
}

.banner-1 .wrap .gallery article .icon span{
  font-size: 80px;
  color: var(--color1);
}

.banner-1 .wrap .gallery article h4{
  font-size: 1.5em;
  margin:20px 0 30px 0;
  font-weight: 700;
}


.banner-1 .wrap .gallery article p{
  font-size: 1em;
  line-height: 1.8em;
  font-weight: 400;
  color: var(--color8);
  opacity: .7;
}

/* banner-logos */
.banner-logos{
display:none;
  position: relative;
  padding: 140px 2%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, var(--color7) 20%, var(--color7) 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, var(--color7) 20%, var(--color7) 80%, transparent 100%);
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
  }

.banner-logos .carrusel{
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.banner-logos article{
  width: 200px;
  aspect-ratio: 1/1;
  background-color: var(--color7);
  text-align: center;
  border-radius: 5px;
}

.banner-logos article img{
  display: block;
  margin:auto;
  pointer-events: none;
  opacity: .5;
}

.banner-logos article.center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height:300px;
  background-color: var(--color10);
  backdrop-filter: blur(10px);
  border:dashed 1px var(--color11);
  border-radius: 50%;
  display: flex;
  align-items: center;
  z-index: 20;
}

.banner-logos article.center .inter{
  padding: 30px;
}

.banner-logos article.center .inter h2{
  font-size: 1.2em;
  color: var(--color8);
  
}

.banner-logos article.center .inter h2 span{
  background-color: var(--color2);
  color: var(--color7);
  border-radius: 5px;
  padding: 0px 10px;
}

/* banner-2 */
.banner-2 .wrap{
  display: flex;
  gap:2%;
  flex-wrap: wrap;
  padding: 50px 0;
  max-width: 1290px;
}

.banner-2 .wrap article{
  width: 49%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 100%;
}


@media(max-width:800px){
  .banner-2 .wrap{
    padding: 0;
  }

  .banner-2 .wrap article{
    width: 100%;
    height: auto;
  }
}


.banner-2 .wrap article > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-2 .wrap article .bottom-banner{
  background-color: var(--color9);
  position: absolute;
  width: 40%;
  left: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  padding: 20px 20px 0 0 ;
  border-radius: 0 13px 0 0;
}

.banner-2 .wrap article .bottom-banner:before{
    content: "";
    position: absolute;
    bottom:100%;
    left: 0;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    box-shadow: -10px 10px 0 var(--color9);
}
.banner-2 .wrap article .bottom-banner:after{
    content: "";
    position: absolute;
    bottom:0%;
    left: 100%;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    box-shadow: -10px 10px 0 var(--color9);
}

@media(max-width:800px){
  .banner-2 .wrap article .bottom-banner{
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
    margin:20px 0;
  }
}

.banner-2 .wrap article .bottom-banner .inter{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background-color: var(--color7);
}

.banner-2 .wrap article .bottom-banner .inter .center{
  padding: 20px;

}

.banner-2 .wrap article .bottom-banner .inter h3{
  color: var(--color1);
}

.banner-2 .wrap article .bottom-banner .inter h4{
  font-size: 3em;
  font-weight: 600;
  color: var(--color8);
}

.banner-2 .wrap article .bottom-banner .inter p{
  font-size: 1em;
  opacity: .7;
  color: var(--color8);
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1){
  padding: 20px;
  background-color: var(--color7);
  border-radius: 13px;
  margin:0 0 4% 0;
}


.banner-2 .wrap article:nth-child(2) .box:nth-child(1) h2{
  color: var(--color8);
  font-size: 1em;
  border:dashed 1px var(--color11);
  display: inline-block;
  padding: 0 10px;
  border-radius: 5px;
  margin:0 0 30px 0;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) h5{
  font-size: 3em;
  font-weight: 600;
  line-height: 1.1;
  margin:0 0 20px 0;
}

@media(max-width:800px){
  .banner-2 .wrap article:nth-child(2) .box:nth-child(1) h5{
    font-size: 2em;
  }
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) h5 span{
  color: var(--color1);
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) .btn-a{
  margin:50px 0 0 0;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) .btn-a a{
  color: var(--color8);
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  line-height: 30px;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) .btn-a a span{
  text-shadow: 0 30px var(--color8);
  transition: all .3s ease;
  display: inline-block;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) .btn-a a:hover span{
  transform: translateY(-30px);
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) .btn-a a i{
  display: inline-block;
  transform: rotate(-45deg);
  color: var(--color7);
  background-color: var(--color8);
  border-radius: 50%;
  line-height:30px;
  width:30px;
  text-align: center;
  font-size: 20px;
  margin:0 0 0 5px;
  transition: all .3s ease;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(1) .btn-a a:hover i{
  background-color: var(--color1);
  color: var(--color7);
  transform:rotate(0deg);
}


.banner-2 .wrap article:nth-child(2) .box:nth-child(2){
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1){
  width: 50%;
  padding: 27px;
  background-color: var(--color1);
  color: var(--color7);
  border-radius: 13px;
  flex-wrap: wrap;
}

@media(max-width:800px){
.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1){
  width: 100%;
}
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1) .stars{
  display: flex;
  gap: 5px;
  margin:0 0 20px 0;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) p{
  line-height: 1.7;
  font-size: .9em;
  margin:0 0 20px 0;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1) .inter--box--2{
  display: flex;
  gap: 20px;
  align-items: end;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1) .inter--box--2 div:nth-child(1){
  width: 80%;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1) .inter--box--2 div:nth-child(2){
  width: 20%;
  font-size: 3em;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1) .inter--box--2 div:nth-child(1) h4{
  font-size: 1.6em;
  font-weight: 600;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(1) .inter--box--2 div:nth-child(1) h5{
  font-weight: 300;
  opacity: .7;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(2){
  width: 45%;
  padding: 20px;
  background-color: var(--color7);
  border-radius: 13px;
  position: relative;
}

@media(max-width:800px){
  .banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(2){
    width: 100%;
    height: 200px;
    margin:0 0 20px 0;
  }
}


.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(2) img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
  position: absolute;
  top:0;
  left: 0;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(2) .btn-play{
  line-height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-border1-color);
  backdrop-filter: blur(5px);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease;
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(2) .btn-play:hover{
  background-color: var(--color7);
}

.banner-2 .wrap article:nth-child(2) .box:nth-child(2) .inter--box:nth-child(2) .btn-play a  span{
  display: block;
  font-size: 30px;
  text-indent: 2px;
  color: var(--color8);
}

/* services */
.services{
  padding: 80px 20px;
  background-color: var(--color4);
  background-image: url("img/lineas-1-b.svg?2"), url("img/lineas-2-b.svg?2");
  background-position: top right, bottom left;
  background-repeat: no-repeat, no-repeat;
  background-size: 50%, 40%;
  text-align: center;
  margin:0 20px;
  border-radius: 13px;
}

.services h2{
  display: inline;
  padding: 5px 10px;
  border:dashed 1px var(--color10);
  font-size: 1em;
  text-transform: uppercase;
  border-radius: 5px;
  color: var(--color7);
}


.services h3{
  font-size: 3em;
  line-height: 1.2;
  font-weight: 600;
  max-width: 600px;
  margin:20px auto 0 auto;
  color: var(--color7);
}

@media(max-width:800px){
  .services h3{
    font-size: 2em;
  }
}

.services h3 span{
  color: var(--color5);
}

.services .gallery{
  padding: 50px 0 0 0;
}

.services .gallery .item{
  background-color: var(--color2);
  padding: 50px;
  text-align: left;
  position: relative;
  display: flex;
  align-items: end;
  color: var(--color7);
  height: auto;
  border-radius: 13px;
  overflow: hidden;
}


.services .gallery .item img{
  width: 100%;
  height: 100% !important;
  top:0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  object-fit: cover;
  border-radius: 13px;
  position: absolute;
  z-index: 1;
}

@media(max-width:800px){
  .services .gallery .item{
    height: auto;
  }

  .services .gallery .item img{
    opacity: .2;
  }
}

.services .gallery .item:hover img{
  opacity: .2;
}

.services .gallery .item .inter{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}

.services .gallery .item .inter .icon{
  align-items: start;
  border:dashed 1px var(--color10);
  display: table;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.services .gallery .item .inter .icon span{
  font-size: 40px;
  text-align: center;
  display: block;
  line-height: 80px;
  color: var(--color7);
}
.services .gallery .item .inter h4{
  font-size: 1.3em;
  margin:10px 0 0px 0;
}

.services .gallery .item .inter p{
  max-height: 100px;
  opacity: .7;
  margin:0 0 30px 0;
}

.services .gallery .item .inter .btn-a{
  opacity: 0;
  bottom: 20px;
  transform: translateY(30px);
  display: block;
  transition: all .3s ease;
}
@media(max-width:800px){
  .services .gallery .item .inter .btn-a{
    opacity: 1;
    transform: translateX(0%) translateY(0px);
  }
}

.services .gallery .item:hover .inter .btn-a{
  transform: translateY(0);
  opacity: 1;
}

.services .gallery .item .inter .btn-a a{
  display: inline-block;
  font-weight:600;
}

.services .gallery .item .inter .btn-a a i{
  background-color: var(--color5);
  color: var(--color1);
  transform:rotate(-45deg);
  display: inline-block;
  border-radius: 50px;
  line-height: 40px;
  width: 40px;
  margin:0 0 0 10px;
  text-align: center;
  transition: all .3s ease;
  font-size: 20px;
}

.services .gallery .item .inter .btn-a a:hover i{
  transform: rotate(0deg);
}

.services-swiper .swiper-pagination {
  position: static; 
  margin-top: 40px;
  text-align: center;
}


.services .swiper-pagination-bullet {
  background: white !important;
  opacity: 0.6;
  transition: all .8s ease !important;
  border-radius: 5px !important;
  width: 15px !important;
  height: 10px !important;
}

.services .swiper-pagination-bullet-active {
  background: var(--color5) !important;
  opacity: 1;
  width: 100px !important;
}


/* banner-3 */
.banner-3{
  padding: 50px 0;
}

.banner-3 .wrap{
  max-width: 1290px;
}

.banner-3 .wrap section:nth-child(1){
  display: flex;
  gap:5%;
  flex-wrap: wrap;
  align-items: center;
  margin:0 0 5% 0;
  justify-content: space-between;
}

.banner-3 .wrap section:nth-child(1) article:nth-child(1){
  width: 30%;
}
.banner-3 .wrap section:nth-child(1) article:nth-child(1) h2{
  font-size: .9em;
  display: table;
  padding: 2px 10px;
  border-radius: 5px;
  border:dashed 1px var(--color11);
  text-transform: uppercase;
}

.banner-3 .wrap section:nth-child(1) article:nth-child(1) h3{
  font-size: 3.2em;
  font-weight: 600;
  line-height: 1.2;
}

@media(max-width:800px){
  .banner-3 .wrap section:nth-child(1) article:nth-child(1){
    width: 100%;
    text-align: center;
  }

  .banner-3 .wrap section:nth-child(1) article:nth-child(1) h2{
    margin:auto;
  }

  .banner-3 .wrap section:nth-child(1) article:nth-child(1) h3{
    font-size: 2em;
  }
}


.banner-3 .wrap section:nth-child(1) article:nth-child(1) h3 span{
  color: var(--color1);
}


.banner-3 .wrap section:nth-child(1) article:nth-child(2){
  width: 30%;
}

@media(max-width:800px){
  .banner-3 .wrap section:nth-child(1) article:nth-child(2){
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
}

.banner-3 .wrap section:nth-child(1) article:nth-child(2) p{
  font-size: 1em;
  font-weight: 500;
  opacity: .7;
  line-height: 1.8em;
}

.banner-3 .wrap section:nth-child(1) article:nth-child(3){
  width: 20%;
  display: flex;
  justify-content: right;
}

@media(max-width:800px){
  .banner-3 .wrap section:nth-child(1) article:nth-child(3){
    width: 100%;
    justify-content: center;
    padding: 20px 0;
  }
}

.banner-3 .wrap section:nth-child(1) article:nth-child(3) .btn-more{
  display: table;
}

.banner-3 .wrap section:nth-child(1) article:nth-child(3) .btn-more a{
  background-color: var(--color1);
  line-height: 50px;
  padding: 0 5px 0 20px;
  display: block;
  font-weight: 600;
  color: var(--color7);
  border-radius: 50px;
}

.banner-3 .wrap section:nth-child(1) article:nth-child(3) .btn-more a i{
  background-color: var(--color5);
  color: var(--color4);
  display: inline-block;
  line-height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 40px;
  margin:0 0 0 10px;
  transform:rotate(-45deg);
  transition: all .3s ease;
}

.banner-3 .wrap section:nth-child(1) article:nth-child(3) .btn-more:hover a i{
  transform: rotate(0deg);
}

.banner-3 .wrap section:nth-child(2){
  display: flex;
  gap:2%;
  flex-wrap: wrap;
  align-items: center;
}

.banner-3 .wrap section:nth-child(2) article{
  position: relative;
  overflow: hidden;
  border-radius:13px;
  margin:1% 0;
  padding: 50px;
  height: 60vh;
  display: flex;
  align-items: end;
  background-color: var(--color4);
}

.banner-3 .wrap section:nth-child(2) article img{
  width: 100%;
  height: 100%;
  object-fit: cover;  
  position: absolute;
  top:0;
  left: 0;
  opacity: .4;
  transition: transform 2s ease;
}

.banner-3 .wrap section:nth-child(2) article:hover img{
  transform: scale(1.2);
}

.banner-3 .wrap section:nth-child(2) article:nth-child(1),
.banner-3 .wrap section:nth-child(2) article:nth-child(4) {
  width: 65%;
}

.banner-3 .wrap section:nth-child(2) article:nth-child(2),
.banner-3 .wrap section:nth-child(2) article:nth-child(3) {
  width: 33%;
}

@media(max-width:800px){
  .banner-3 .wrap section:nth-child(2) article:nth-child(1),
  .banner-3 .wrap section:nth-child(2) article:nth-child(2),
  .banner-3 .wrap section:nth-child(2) article:nth-child(3),
  .banner-3 .wrap section:nth-child(2) article:nth-child(4) {
    width: 100%;
    height: auto;
  }
}

.banner-3 .wrap section:nth-child(2) article .info{
  position: relative;
  z-index: 2;
}

.banner-3 .wrap section:nth-child(2) article .info h5{
  color: var(--color7);
  border:dashed 1px var(--color10);
  display: table;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 5px 7px;
  backdrop-filter: blur(10px);
}

.banner-3 .wrap section:nth-child(2) article .info p{
  font-size: 2em;
  color: var(--color7);
  max-width: 200px;
  font-weight: 700;
  line-height: 1.2;
  margin:10px 0 0 0;
}

.banner-3 .wrap section:nth-child(2) article .btn-more{
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  width: 60px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  color: var(--color7);
  backdrop-filter: blur(10px);
  transform: rotate(-45deg);
  border-radius: 50%;
  transition: all .3s ease;
  border:solid 1px var(--color10);
  opacity: 0;
}

@media(max-width:800px){
  .banner-3 .wrap section:nth-child(2) article .btn-more{
    opacity: 1;
  }
}

.banner-3 .wrap section:nth-child(2) article:hover .btn-more{
  opacity: 1;
}

.banner-3 .wrap section:nth-child(2) article .btn-more:hover{
  transform: rotate(0deg);
  background-color: var(--color1);
  border-color: var(--color1);
}

.banner-3 .wrap section:nth-child(2) article .btn-more a{
  display: block;
  font-size: 25px;
}



@media(max-width:800px){
    .banner-3 .wrap section:nth-child(1),
    .banner-3 .wrap section:nth-child(2),
    .banner-3 .wrap section:nth-child(3){
      flex-wrap: wrap;
      width: 100%;
      justify-content: center;
    }

    .banner-3 .wrap section:nth-child(1) aricle:nth-child(1),
    .banner-3 .wrap section:nth-child(1) article:nth-child(2),
    .banner-3 .wrap section:nth-child(1) article:nth-child(3){
      width: 100%;
      text-align: center; 
  }
}

/* statistics */
.statistics .wrap{
  display: flex;
  max-width: 1290px;
  justify-content: space-around;
  gap:2%;
  height: 250px;
  align-items: center;
  border-radius: 13px;
  margin:0 auto -125px auto;
  z-index: 3;
  position: relative;
}

.statistics .wrap article{
  width: 25%;
  padding: 40px ;
  text-align: center;
  position: relative;
}

@media(max-width:800px){
  .statistics .wrap{
    flex-wrap: wrap;
    height: auto;
    margin:20px auto;
    background-color: transparent;
  }

  .statistics .wrap article{
    width: 100%;
    background-color: var(--color4);
    margin:10px 0;
    border-radius: 20px;
  }
}

.statistics .wrap article:after{
  content: "";
  position: absolute;
  height: 100px;
  width: 0px;
  border-right: dashed 1px var(--color5);
  opacity: .2;
  top:50%;
  transform: translateY(-50%);
  right: -20px;
}

.statistics .wrap article:last-child:after{
  display: none;
}

.statistics .wrap article h2{
  font-size: 3em;
  color: var(--color7);
}

@media(max-width:800px){
  .statistics .wrap article h2{
    font-size: 2em;
  }
}

.statistics .wrap article p{
  color: var(--color7);
}

/* testimonials */
.testimonials{
  padding: 200px 40px 40px 40px;
  margin:0 20px;
  position: relative;
  z-index: 2;
  background-image: url("img/lineas-1-b.svg?2"), url("img/lineas-2-b.svg?2");
  background-position: top right, bottom left;
  background-repeat: no-repeat, no-repeat;
  background-size: 50%, 40%;
  background-color: var(--color3);
  border-radius: 13px;
}

.testimonials .wrap h2{
  font-size: .9em;
  display: table;
  padding: 2px 10px;
  border-radius: 5px;
  border:dashed 1px var(--color10);
  text-transform: uppercase;
  color: var(--color7);
}

.testimonials .wrap h3{
  font-size: 3.2em;
  font-weight: 600;
  line-height: 1.2;
  max-width: 600px;
  color: var(--color7);
}

.testimonials .wrap h3 span{
  color: var(--color5);
}


@media(max-width:800px){
  .testimonials{
    padding: 40px 0;
  }
  .testimonials .wrap h2{
    font-size: 1em;
    margin:auto;
  }
  .testimonials .wrap h3{
    font-size: 2em;
    text-align: center;
  }
}

.testimonials .wrap .gallery{
  padding: 50px  0 50px 0;
}

.testimonials .wrap .gallery .item{
  padding: 20px 50px;
  background-color: var(--color7);
  border-radius: 13px;

}

.testimonials .wrap{
  max-width: 1290px;
}


.testimonials-swiper .swiper-pagination {
  position: static; 
  margin-top: 40px;
  text-align: center;
}


.testimonials .swiper-pagination-bullet {
  background: var(--color9) !important;
  opacity: 0.6;
  transition: all .8s ease !important;
  border-radius: 5px !important;
  width: 15px !important;
  height: 10px !important;
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--color5) !important;
  opacity: 1;
  width: 100px !important;
}

.testimonials .wrap .gallery .item .icon{
  font-size: 3em;
  color: var(--color1);
  width: 100%;
}

.testimonials .wrap .gallery .item p{
  color: var(--color8);
  opacity: .7;
  margin:0 0 30px 0
}

.testimonials .wrap .gallery .item .info-item{
  display: flex;
  gap: 20px;
  align-items: center;  
  border-top:dashed 1px var(--color11);
  padding: 20px;
  margin:10px 0 0 0;
}

.testimonials .wrap .gallery .item .info-item .image{
  width: 50px;
  overflow: hidden;
}

.testimonials .wrap .gallery .item .info-item .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; 
}

.testimonials .wrap .gallery .item .details h4{
  font-weight: 600;
  font-size: 1.2em;
  color: var(--color8);
}

.testimonials .wrap .gallery .item .details h5{
  opacity: .7;
  font-weight: 400;
  font-size: .9em;
}


/* banner-4 */
.banner-4 .wrap{
  display: flex;
  align-items: center;
  gap:2%;
  flex-wrap: wrap;
  padding: 100px 0;
  max-width: 1290px;
}

.banner-4 .wrap article{
  width: 49%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 100%;
}



.banner-4 .wrap article > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-4 .wrap article .bottom-banner{
  background-color: var(--color9);
  position: absolute;
  width: 40%;
  right: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  padding:20px 0 0 20px;
  border-radius: 13px 0 0 0;
}

@media(max-width:800px){
  .banner-4 .wrap{
    padding: 20px 0;
  }
  .banner-4 .wrap article{
    width: 100%;
    height: auto;
  }

  .banner-4 .wrap article .bottom-banner{
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
    margin:20px 0;
  }
}

.banner-4 .wrap article .bottom-banner:before{
    content: "";
    position: absolute;
    bottom:100%;
    right: 0px;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    box-shadow: 10px 10px 0 var(--color9);
}
.banner-4 .wrap article .bottom-banner:after{
    content: "";
    position: absolute;
    bottom:0%;
    right: 100%;
    background-color: transparent;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    box-shadow: 10px 10px 0 var(--color9);
}

.banner-4 .wrap article .bottom-banner .inter{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background-color: var(--color7);
}

.banner-4 .wrap article .bottom-banner .inter .center{
  padding: 20px;

}

.banner-4 .wrap article .bottom-banner .inter .icon{
  background-color: var(--color1);
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin:0 0 20px 0;
  color: var(--color7);
  font-size: 20px;
}


.banner-4 .wrap article .bottom-banner .inter h4{
  font-size: 1.1em;
  opacity: .7;
  font-weight: 600;
  color: var(--color8);
}

.banner-4 .wrap article .bottom-banner .inter p{
  font-size: 1.2em;
  font-weight: 900;
  color: var(--color2);
}

.banner-4 .wrap article .accordion-item {
  margin:20px 0;
  background-color: var(--color7);
  border-radius: 13px;
  cursor: pointer;
  font-weight: bold;
  overflow: hidden;
}

.banner-4 .wrap article .accordion-header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-4 .wrap article .accordion-header span{
  color: var(--color1);
  border:solid 1px var(--color1);
  font-size: 14px;
  line-height:40px;
  width:42px;
  text-align: center;
  border-radius:40px;
}

.banner-4 .wrap article .accordion-content {
  overflow: hidden;
  max-height: 0;
  margin: 0 15px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.banner-4 .wrap article .accordion-item.active .accordion-content {
  margin: 0px 15px 0px 15px;
}

.banner-4 .wrap article .accordion-item.active .accordion-content .info{
  padding: 20px 0;
  font-weight: 400;
  border-top: dashed 1px var(--color1);
  color: var(--color8);
  opacity: .7;
}


/* contact-home */
.contact-home{
  padding: 100px 0;
  background-color: var(--color4);
  background-image: url("img/lineas-1-b.svg?2"), url("img/lineas-2-b.svg?2");
  background-position: top right, bottom left;
  background-repeat: no-repeat, no-repeat;
  background-size: 50%, 40%;
  position: relative;
  margin:20px;
  border-radius: 13px;
}

.contact-home img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top:0;
  left:0;
  opacity: .2;
  z-index: 1;
  pointer-events: none;
}

.contact-home .wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  max-width: 1290px;
}

.contact-home .wrap article{
  width: 45%;
  padding: 50px;
  position: relative;
  z-index: 2;
  border-radius: 13px;
  backdrop-filter: blur(5px);
  border:solid 1px var(--color2)
}

.contact-home .wrap article h2{
  width: 100%;
  color: var(--color7);
  margin:0 0 30px 0;
  font-size: 2.8em;
}

@media(max-width:800px){
  .contact-home .wrap article{
    width: 100%;
    padding: 20px;
  }
  .contact-home .wrap article h2{
    font-size: 2em;
    text-align: center;
  }
}

.contact-home .wrap article form p{
  gap:2%;
  display: flex;
  flex-wrap: wrap;
}

.contact-home .wrap article form  span{
  width: 49%;
}

.contact-home .wrap article form  span:nth-child(5){
  width:100%;
}



.contact-home .wrap article form input[type="text"],
.contact-home .wrap article form input[type="email"]{
  width: 100%;
  padding: 12px 20px;
  border-radius: 13px;
  background-color: var(--color7);
  border:dashed 1px var(--color10);
  margin:20px 0 0px 0;
  outline: none;
}

.contact-home .wrap article form textarea{
  width: 100% !important;
  padding: 12px 20px;
  border-radius: 13px;
  background-color: var(--color7);
  margin:20px 0 0 0;
  outline: none;
}



.contact-home .wrap article form button, 
.contact-home .wrap article form input[type="submit"]{
  background-color: var(--color7);
  color: var(--color4);
  padding: 12px 30px;
  border-radius: 8px;
  border:none;
  margin:20px 0 0 0;
  font-weight: 600;
  cursor: pointer;
}

.wpcf7-not-valid-tip{
  width: 100%;
  color: var(--color6);
  font-size: 12px;
}


.wpcf7-response-output{
  background-color: var(--color5);
  color: var(--color4);
  border-color: transparent !important;
  border-radius: 5px;
}

/* blog */
.blog{
  padding: 80px 20px;
  background-color: var(--color7);
  text-align: center;
  margin:20px;
  border-radius: 13px;
}

.blog .wrap{
  max-width: 1290px;
}

.blog h2{
  display: inline;
  padding: 5px 10px;
  border:dashed 1px var(--color11);
  font-size: 1em;
  text-transform: uppercase;
  border-radius: 5px;
  color: var(--color8);
}

.blog h3{
  font-size: 3em;
  line-height: 1.2;
  font-weight: 600;
  max-width: 600px;
  margin:20px auto 0 auto;
  color: var(--color8);
}

@media(max-width:800px){
  .blog h3{
    font-size: 2em;
  }
}

.blog h3 span{
  color: var(--color1);
}

.blog .gallery{
  padding: 50px 0 0 0;
  display: flex;
  gap:5%;
  flex-wrap: wrap;
}

.blog .gallery article{
  border-radius: 13px;
  width: 30%;
  overflow: hidden;
  text-align: left;
  background-color: var(--color9);
}

@media(max-width:800px){
  .blog .gallery article{
    width: 100%;
    margin:20px 0;
  }
}

.blog .gallery article .image{
  height: 250px;
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: var(--color4);
}

.blog .gallery article .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top:0;
  left: 0;
  opacity: .5;
  transition: all .3s ease;
}

.blog .gallery article .image:hover img{
  transform: scale(1.2);
}

.blog .gallery article .image .date{
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 5px;
  color: var(--color7);
  z-index: 2;
  text-align: center;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.blog .gallery article .image .date span{
  font-size: 2em;
  line-height: .8em;
  display: block;
}


.blog .gallery article .info{
  padding: 20px;
}

.blog .gallery article .info .tags{
  display: flex;
  gap: 10px;
  margin:0 0 20px 0;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
}

.blog .gallery article .info .tags span{
  border:dashed 1px var(--color11);
  padding: 5px 10px;
  border-radius: 5px;
  display: table;
  font-size: .8em;
  color: var(--color8);
  text-transform: uppercase;
  background-color: var(--color7);
}

.blog .gallery article .info .tags a{
  font-weight: 500;
  color: var(--color4);
}

.blog .gallery article .info .tags span a{
  font-weight: 700;
}

.blog .gallery article .info h4{
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2;
}

.blog article .info .btn-more{
  display: table;
  margin:20px 0 0 0;
}

.blog article .info .btn-more a{
  line-height: 50px;
  padding: 0 5px 0 0px;
  display: block;
  font-weight: 600;
  color: var(--color4);
}

.blog article .info .btn-more a i{
  background-color: var(--color4);
  color: var(--color7);
  display: inline-block;
  line-height: 35px;
  width: 35px;
  text-align: center;
  border-radius: 35px;
  margin:0 0 0 10px;
  transform:rotate(-45deg);
  transition: all .3s ease;
}

.blog article .info .btn-more:hover a i{
  transform: rotate(0deg);
}


/* wrap-footer */
.wrap-footer{
    position: relative;
    background-color: var(--color4);
    margin:20px 20px 0 20px;
    border-radius: 13px;
}

.wrap-footer > img{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: .1;
    pointer-events: none;
}



/* page-banner */
.page-banner{
	  display: flex;
    padding: 200px 0 50px 0;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color4);
}

.page-banner .wrap{
	position: relative;
	color: var(--color6);
	padding: 250px 0 80px 0;
}

.page-banner h1{
  color: var(--color7);
}

@media(max-width:800px){
  .page-banner{
    padding: 50px 0 50px 0;
  }

  .page-banner h1{
    font-size: 30px;
    text-align: center;
  }
}

/* content */
.content{
  background-color: var(--color7);
    margin:20px;
    padding: 50px 0;
    border-radius: 13px;

}
.content .wrap{
  text-align: center;
  max-width: 1290px;
}

.content .title-page{
	text-align: center;
	color: var(--color1);
	font-size: 40px;
	font-weight: 800;
	margin:80px 0 30px 0;
}

.content .image-single{
	width: 70%;
	margin:auto;
	overflow: hidden;
	margin:0 auto 50px auto;
}

.content .image-single img{
	width: auto;
	height: 250px;
	border-radius: 20px;
}

.content a{
    color: var(--color1);
    text-decoration: none;
}

@media(max-width:800px){
    .content{
        padding: 40px 0;
    }
}

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="number"],
.content input[type="file"],
.content input[type="date"],
.content textarea,
.content select{
    font-family: 'Roboto', sans-serif;
    background-color: var(--color7);
    padding: 15px 2%;
    width: 96%;
    border:solid 1px var(--color9);
    color: var(--color4);
    outline: none;
    resize: none;
    margin:0 0 10px 0;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
	border-radius: 5px;
}

.content select{
    color: #313131;
    cursor: pointer;
}

.content label{
    font-size: 14px;
    font-weight: bold !important;
    color: #777777 !important;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="number"]:focus,
.content input[type="date"]:focus,
.content textarea:focus,
.content select:focus{
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.content input[type="text"]::placeholder,
.content input[type="email"]::placeholder,
.content input[type="tel"]::placeholder,
.content input[type="number"]::placeholder,
.content input[type="date"]::placeholder,
.content textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: var(--color4);
    color: var(--color7);
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 50px;
    margin:0 0 20px 0;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
    background-color: var(--color6);
}

.not-found{
    padding: 100px 0;
    margin:auto;
}

.not-found h2{
    font-size: 100px;
    text-align: center;
    color: #313131;
    font-weight: 900;
}

.not-found h3{
    font-size: 24px;
    text-align: center;
    color: #313131;
    margin:auto;
    max-width: 500px;
    font-weight: 300;
}

@media(max-width:800px){
    .not-found{
        padding: 50px 0;
    }

    .not-found h2{
        font-size: 50px;
    }

    .not-found h3{
        font-size: 17px;
        width: 80%;
    }
}



/* category */
.category{
	padding: 70px 0;
}
.category .wrap{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.category .wrap article{
    width: 23.5%;
    overflow: hidden;
    margin:0 0 40px 0;
	aspect-ratio: 1/1.5;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.category .wrap article:after{
	content: "";
	position: absolute;
	width: 800px;
	height: 100px;
	background-color: rgba(255,255,255,.3);
	top:-400px;
	left: -200px;
	z-index: 1;
	transform:rotate(-45deg);
	filter: blur(50px);
	pointer-events: none;
}

.category .wrap article:hover:after{
	top:800px;
	transition: all 1s ease;
}


.category .wrap article .image{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	background-color: var(--color4);
	border-radius: 10px;
	overflow: hidden;
}

.category .wrap article .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .4;
	transition: all .3s ease;
}

.category .wrap article:hover .image img{
	transform:scale(1.5);
	filter: grayscale(100%);
}


.category .wrap article .info{
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--color6);
}

.category .wrap article .btn-add{
	margin:20px auto 0 auto;
	width: 80px;
	aspect-ratio: 1/1;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(50px);
	opacity: 0;
	transition: all .3s ease;
	top:50px;
}

.category .wrap article:hover .btn-add{
	transform: translateX(-50%) translateY(0px);
	opacity: 1;

}



@media(max-width:800px){
	.category .wrap{
		display: block;
	}

	.category .wrap article{
		width: 100%;
		aspect-ratio: 1/1;
	}

	.category .wrap article .btn-add{
		opacity: 1;
		transform: translateX(-50%) translateY(0px);
	}
}

.category .wrap article .btn-add a{
	background-color: var(--color1);
	display: block;
	text-align: center;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	color: var(--color6);
	border-radius: 50%;
	transform: rotate(0deg);
	justify-content: center;
	transition: all .3s ease;
}

.category .wrap article .btn-add a:hover{
	transform:rotate(-45deg) scale(1.4);
	background-color: var(--color1);
}

.subtitle{
	text-align: center;
	padding: 50px 0;
	font-size: 25px;
	font-weight: 600;
	color: var(--color1);
}

.services-category .gallery{
  display: flex;
  gap:2%;
  flex-wrap: wrap;
}

.services-category .gallery .item{
  background-color: var(--color2);
  padding: 50px;
  text-align: left;
  position: relative;
  display: flex;
  width: 31%;
  margin:20px 0;
  align-items: end;
  color: var(--color7);
  height: 50vh;
  border-radius: 13px;
  overflow: hidden;
}

.services-category .gallery .item img{
  width: 100%;
  height: 100% !important;
  top:0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  object-fit: cover;
  border-radius: 13px;
  position: absolute;
  z-index: 1;
}

@media(max-width:800px){
  .services-category .gallery .item{
    width: 100%;
    margin:20px 0;
    height: auto;
  }

  .services-category .gallery .item img{
    opacity: .2;
  }
}


.services-category .gallery .item:hover img{
  opacity: .2;
}

.services-category .gallery .item .inter{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}

.services-category .gallery .item .inter .icon{
  align-items: start;
  border:dashed 1px var(--color10);
  display: table;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.services-category .gallery .item .inter .icon span{
  font-size: 40px;
  text-align: center;
  display: block;
  line-height: 80px;
  color: var(--color7);
}
.services-category .gallery .item .inter h4{
  font-size: 1.3em;
  color: var(--color7) !important;
  margin:10px 0 0px 0;
}

.services-category .gallery .item .inter a{
  color: var(--color7) !important;
}

.services-category .gallery .item .inter p{
  max-height: 100px;
  opacity: .7;
  margin:0 0 30px 0;
}

.services-category .gallery .item .inter .btn-a{
  opacity: 0;
  bottom: 20px;
  transform: translateY(30px);
  display: block;
  transition: all .3s ease;
}

@media(max-width:800px){
  .services-category .gallery .item .inter .btn-a{
    opacity: 1;
    transform: translateX(0%) translateY(0px);
  }
}

.services-category .gallery .item:hover .inter .btn-a{
  transform: translateY(0);
  opacity: 1;
}

.services-category .gallery .item .inter .btn-a a{
  display: inline-block;
  font-weight:600;
  color: var(--color7);
}

.services-category .gallery .item .inter .btn-a a i{
  background-color: var(--color5);
  color: var(--color1);
  transform:rotate(-45deg);
  display: inline-block;
  border-radius: 50px;
  line-height: 40px;
  width: 40px;
  margin:0 0 0 10px;
  text-align: center;
  transition: all .3s ease;
  font-size: 20px;
}

.services-category .gallery .item .inter .btn-a a:hover i{
  transform: rotate(0deg);
}

.services-category-swiper .swiper-pagination {
  position: static; 
  margin-top: 40px;
  text-align: center;
}


.services-category .swiper-pagination-bullet {
  background: white !important;
  opacity: 0.6;
  transition: all .8s ease !important;
  border-radius: 5px !important;
  width: 15px !important;
  height: 10px !important;
}

.services-category .swiper-pagination-bullet-active {
  background: var(--color5) !important;
  opacity: 1;
  width: 100px !important;
}

/* faq-content */

.faq-content article{
  padding: 20px;
  max-width:900px;
  margin:auto;
  text-align: left;
  border-bottom: dashed 1px var(--color1);
}

.faq-content article h4{
  padding: 0px;
  font-weight: 700;
  font-size: 24px;
  color: var(--color4);
}

.faq-content article p{
  padding: 0px;
}

.faq-content article:last-child{
  border:none;
}

/* single */
.single{
  max-width: 900px;
  margin:auto;
  text-align: left;
  align-items: center;
  display: flex;
}

.single .image{
  width: 50%;
  overflow: hidden;
  margin:0 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single .image img{
  width: 100%;
  height: auto;
  object-fit: content;
  border-radius: 13px;
}

.single .info{
  width: 50%;
  padding: 0 50px;
}

@media(max-width:800px){
  .single{
    flex-wrap: wrap;
  }

  .single .image{
    width: 100%;
    margin:0 auto 30px auto;
  }

  .single .info{
    width: 100% !important;
    padding: 0 0px;
  }
}

.single p{
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
  margin:20px 0;
}

.single ul{
  font-size: 17px;
  line-height: 30px;
  text-align: justify;
  margin:20px 0;
  padding: 0 20px;
  list-style-type: disc;
}

.single .btn-1-single a{
  background-color: var(--color4);
  color: var(--color7);
  text-decoration: none;
  padding: 10px 30px;
  display: inline-block;
  margin:30px 0 0 0;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color .3s ease, color .3s ease;
}

.single .btn-1-single a:hover{
  background-color: var(--color5);
  color: var(--color4);
}

/* sub-footer */
.sub-footer{
    position: relative;
    z-index: 2;
}

.sub-footer .suscribe{
    display: flex;
    gap:2%;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 50px 0;
}

.sub-footer .suscribe img{
  max-width: 100px;
}

.sub-footer .logo-footer{
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 3px;
  background-color:  var(--color2);
  padding: 0 10px;
  pointer-events: none;
  color: var(--color7);
  border-radius: 15px 0 0 0;
  cursor: pointer;
}

.sub-footer .logo-footer span{
  color: var(--color5);
  font-weight: 700;
}

.sub-footer .suscribe form{
    background-color: var(--color7);
    display: flex;
    width: 55%;
    padding: 10px;
    border-radius: 7px;
}

.sub-footer .suscribe form input[type="email"]{
    padding: 0px 2%;
    font-size: 19px;
    border:none;
    outline: none;
    width: 80%;
    font-weight:500;
}

.sub-footer .suscribe form input[type="email"]::placeholder{
    color: var(--color2);
    font-weight: 500;
}

.sub-footer .suscribe form input[type="submit"],
.sub-footer .suscribe form button{
    padding:20px 2%;
    border:none;
    outline: none;
    width: 30%;
    position: relative;
    border:dashed 1px var(--color4);
    color: var(--color4);
    font-weight: 600;
    font-size: 18px;
    border-radius: 5px;
    background-color: var(--color7);
    cursor: pointer;
    transition: background-color .3s ease;
}

@media(max-width:800px){
    .sub-footer .suscribe{
        flex-wrap: wrap;
        justify-content: center;
        padding: 40px 0;
    }

    .sub-footer .logo-footer{
      text-align: center;
      margin:0 0 20px 0;
    }

    .sub-footer .suscribe form{
        width: 100%;
        flex-wrap: wrap;
    }

    .sub-footer .suscribe form input[type="email"]{
      padding: 10px 20px;
      width: 100%;
      text-align: center;
    }

    .sub-footer .suscribe form input[type="submit"],
    .sub-footer .suscribe form button{
      padding: 10px 20px;
      width: 100%;
      margin: 10px 0;
    }
}

.sub-footer .suscribe form input[type="submit"]:hover,
.sub-footer .suscribe form button:hover, 
.sub-footer .suscribe form input[type="submit"]:focus,
.sub-footer .suscribe form button:focus{
    background-color: var(--color4);
    color: var(--color7);
}

/* boxs */
.sub-footer .boxs{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 50px 0;
}

.sub-footer .boxs article{
    padding: 0 30px;
}

.sub-footer .boxs article:nth-child(1){
    padding: 0 50px 0 0;
    width: 34%;
}
.sub-footer .boxs article:nth-child(2){
    width: 22%;
}
.sub-footer .boxs article:nth-child(3){
    width: 22%;
}
.sub-footer .boxs article:nth-child(4){
    width: 22%;
}

@media(max-width:800px){
    .sub-footer .boxs article{
        width: 100%;
        padding: 0 20px;
        margin:0 0 20px 0;
    }

    .sub-footer .boxs article:nth-child(1),
    .sub-footer .boxs article:nth-child(2),
    .sub-footer .boxs article:nth-child(3),
    .sub-footer .boxs article:nth-child(4){
        padding: 20px;
        width: 100%;
        text-align: center;
    }
}

.sub-footer .boxs article h2{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color7);
    position: relative;
    margin:0 0 20px 0;
}

.sub-footer .boxs article p{
    color: var(--color7);
    font-size: 16px;
    opacity: .7;
    line-height: 1.7;
}

.sub-footer .boxs article ul.menu{
    color: var(--color7);
}

.sub-footer .boxs article ul li a{
    color: var(--color7);
    font-size: 16px;
    opacity: .7;
    padding: 10px 0;
    display: block;
    text-decoration: none;
}


.sub-footer .boxs article ul.social-footer{
    display: flex;
    list-style-type: none;
}

@media(max-width:800px){
    .sub-footer .boxs article ul.social-footer{
        justify-content: center;
        padding: 20px 0;
    }
}

.sub-footer .boxs article ul.social-footer li a{
    display: block;
    text-decoration: none;
    width:50px;
    line-height: 50px;
    text-align: center;
    transition: all .3s ease;
    opacity: 1;
    font-size: 24px;
}

.sub-footer .boxs article ul.social-footer li a:hover{
  color: var(--color5);
}

/* footer */
footer{
    position: relative;
    text-align: center;
    font-size: 18px;
}

footer .wrap{
    padding: 40px 0;
    border-top: solid 2px rgba(255, 255, 255, 0.2);
    color: var(--color7);
    font-weight: 400;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

footer a{
    color: var(--color5);
    text-decoration: none;
    font-weight: 600;
}

footer a:hover{
    text-decoration: underline;
}

.go-top{
    position: fixed;
    width: 50px;
    line-height: 50px;
    right: 20px;
    bottom: 20px;
    background-color: var(--color4);
    color: var(--color7);
    text-align: center;
    border-radius: 50px;
    font-size: 24px;
    z-index: 99;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}