/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;
  /*========== Colors ==========*/
  --hue: 45;
  --sat: 98%;
  --first-color:white;
  --first-color-light: white;
  --first-color-lighten: white;
  --first-color-alt: white;
  --title-color: white;
  --text-color: white;
  --text-color-light: white;
  --body-color: white;
  --container-color: #FFF;
  --scroll-bar-color: white;
  --scroll-thumb-color: white;
  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-semi-bold: 600;
  --font-bold: 700;
  /*========== Margenes ==========*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 3rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

.container{
    max-width: 968px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
    margin-top: 2rem
}

.main{ 
  margin-top: 3rem ; 
}

.grid{
    display: grid;
    gap: 1.5rem;
}



html {
    scroll-behavior: smooth;
    
  }
  
  body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color:black;
    color: var(--text-color);
    transition: .5s;

  }
  

  .header {
    width: 100%;
    background-color: rgb(3, 3, 3);
    box-shadow: 0 0 4px rgba(252, 252, 252, 0.61);
    position: fixed;
    top: -1rem;
    left: 0;
    z-index: 100;
    transition: .5s;
  }

  h1, h2, h3 {
    font-weight: 600;
    color:white;
    line-height: 1.5;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }




  
  /*=============== NAV ===============*/
  .nav {
    height:3rem ;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  @media screen and (max-width: 767px) {
    .nav__menu {
      position: fixed;
      background-color:rgb(2, 2, 2);
      box-shadow: 0 0 4px rgba(252, 252, 252, 0.384);
      padding: 2.5rem 0;
      width: 90%;
      top: -100%;
      left: 0;
      right: 0;
      margin: 0 auto;
      transition: .4s;
      border-radius: 2rem;
      z-index: var(--z-fixed);
    }
  }
  .nav__logo { 
    width : 6rem; 
    margin-top: 10px ; 
   }
  
  
  .nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
  }
  
  .nav__link, .nav__logo, .nav__toggle {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
  }
  
  .nav__toggle {
    font-size: 1.3rem;
    cursor: pointer;
  }
  
  /* Show menu */
  .show-menu {
    top: calc(3rem + 1rem);
  }
  
  /* Active link */
  .active-link {
    position: relative;
  }
  
  .active-link::before {
    content: '';
    position: absolute;
    bottom: -.75rem;
    left: 45%;
    width: 5px;
    height: 5px;
    background-color: var(--title-color);
    border-radius: 50%;
  }
  
  /* Change background header */
  .scroll-header {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  .home__container {
    row-gap: 1rem; 
    margin-top :2rem; 
    align-items: center; 
    justify-content: center;

  }

  .home__data {
    position:relative; 
    display: inline-block;
  }
  
  .home__title {
    font-size: var(--biggest-font-size);
    font-weight:700;
    color: white; 
    margin-bottom: var(--mb-0-75);
  }
  
  .home__description{
   position: relative; 
   text-align: center; 
   left: 0;
   right: 0;
   margin: 1rem auto;
  }



  .home-img{ 
    width: 30%;
    margin:2rem auto;
    position: relative;
  }
  
  .data-img{
    width: 100%;
    filter: blur(1px);
  }
  


  /*=============== CTA BOX ===============*/

  .cta-box {
    position: relative;
    width: 70%;
    padding: 10px;
    position: fixed;
    height: 420px; 
    color:black; 
    background-color: #fdfdfd;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border-radius: 25px; 
    display: none;
  }

.cta-box .name, 
.email, 
.adress, 
.message {
  font-size: 20px;
  margin:1rem auto; 
  display: flex;
  padding: 5px; 
  border:none; 
  height: 1.5rem; 
  text-align: center;
  background:rgba(122, 122, 122, 0.411)

}

.cta-box .message {
height: 50px;

}

.cta-box h3 {
  color:black;
  margin: 1rem auto;
  text-align: center;
  justify-content: center;
}

.cta-c-box {
  display:grid; 
  grid-template-columns: 1fr 1fr;
  text-align: center;
  justify-self:center; 
  align-items: center;
  
}

.telly {
  position: absolute;
  bottom: 4.5rem; 
  width: 4.5rem; 
  right: 60%;
  margin: 0 auto;

}

.cta-submit{
  position: absolute;
  bottom: 4rem; 
  left: 65%;
  margin: 1rem auto ; 
  text-align: center;
  display: inline-block;
  justify-content: center;
  display: inline-block;
  background-color: rgba(8, 216, 18, 0.788);
  outline: none;
  
}


  .close-button {
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%);
    margin: 1rem auto ; 
    text-align: center;
    display: inline-block;
    justify-content: center;
  
  }



  /*=============== BUTTONS ===============*/
  .button {
    display: inline-block;
    background-color: rgba(8, 216, 18, 0.788);
    color: #1A1A1A;
    padding: .75rem 1.5rem;
    border-radius: 3rem;
    font-weight: 300;
    outline: none; 
    transition: .3s;
  }

  
  .button:hover {
   outline:none; 
    background-color: rgba(255, 0, 0, 0.719);
  }
  
  
  .button-link {
    background: none;
    padding: 0;
    color: var(--title-color);
  }
  
  .button-link:hover {
    background-color: transparent;
  }
  
  .button-flex {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    padding: .75rem 1rem;
  }
  
  .button__icon {
    font-size: 1.5rem;
  }
  

  /*=============== SERVICES ===============*/

  .services__container {
    padding-top: 1rem;
  }
  
  .services__data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 1rem;
    position: relative;
    border-radius: 1rem;
  }

  .services__description {
    text-align: center;
    position:absolute;
    top: 7rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    
    
  }

  .services__subtitle {
    z-index: 1;
   
  }
  
.services__img {
    width: 100%;
    justify-self: center;
    filter:blur(2px);
    margin-bottom: var(--mb-0-5);
  }

  .services__data  .button-link {

    position: absolute;
    bottom: 2rem ;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 7rem; 
    border-radius: 0px;
    padding: 5px; 
    border: solid white; 
  }

  .services__data  .button-link:hover {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 7rem; 
    border-radius: 5px;
    padding: 5px; 
    border: none ; 
    transition: .3s;
    background-color: green;
  }



    /*=============== ABOUT ===============*/
    .about__container {
      gap: 2.5rem;
    }
    
    .about__data {
      text-align: center;
    }
  
  .about .button{
      width: 6rem; 
      margin: 1rem;
  }

  /* GALLERY */


.gallery{
    margin: 2rem ;
}
  

.img-gallery {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 280px;
    width: 100%;
    overflow: hidden;
}


.gallery-item img {
    width:80%; 
    margin: 2.5rem; 
    justify-content: center;
    align-items: center;

}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    /* Additional styling such as color, size, and background */
}

.prev-arrow {
    left: -8px;
    rotate: 180deg; 
    top: 5rem; 
}

.next-arrow {
    right: -10px;
}


/* MAP */

.map-box { 
  position: relative;
  width: 100%;
  margin: 2rem auto ; 
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-box .section_title{ 
  float: left ; 
  padding: 10px ; 
  margin-left: 1rem  ;
}

.map-box iframe{
  width:90%;
  height: 270px; 
}



/*=============== FOOTER ===============*/
.footer {
    background-color: rgba(9, 27, 13, 0.788);
    padding-bottom: 2rem;
    margin-top:1rem; 
    color:white;
    
  }
  
  .footer__container {
    row-gap: 2rem;
  }
  
  .footer__logo, .footer__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-75);
  }
  
  .footer__logo {
    display: inline-block;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
  }
  
  .footer__description, .footer__link {
    font-size: var(--small-font-size);
  }
  
  .footer__links {
    display: grid;
    row-gap: .5rem;
  }
  
  .footer__link {
    color: white;
  }
  
  .footer__social {
    display: flex;
    column-gap: 1.5rem;
  }
  
  .footer__social-link {
    font-size: 1.25rem;
    color: var(--title-color);
  }
  
  .footer__copy {
    margin-top: 6rem;
    text-align: center;
    font-size: var(--smaller-font-size);
    color:white;
  }
  
  /*=============== SCROLL UP ===============*/
  .scrollup {
    position: fixed;
    background:  rgba(216, 231, 9, 0.979);
    right: 1rem;
    bottom: -20%;
    display: inline-flex;
    padding: .3rem;
    border-radius: .25rem;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: .4s;
  }
  
  .scrollup:hover {
    background-color:rgba(3, 129, 20, 0.712);
    opacity: 1;
  }
  
  .scrollup__icon {
    font-size: 1.25rem;
    color: var(--title-color);
  }
  
  /* Show Scroll Up*/
  .show-scroll {
    bottom: 3rem;
  }
  
  /*=============== SCROLL BAR ===============*/
  ::-webkit-scrollbar {
    width: .6rem;
    border-radius: .5rem;
    background-color: var(--scroll-bar-color);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
    border-radius: .5rem;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-color-light);
  }
  

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 360px) {
  .svg__img {
    width: 100%;
  }
  .section {
    padding: 3.5rem 0 1rem;
  }
  .app__buttons {
    grid-template-columns: max-content;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {

  .section__title-center {
    text-align: initial;
  }
  

  .section__title-center {
    text-align: initial;
  }

  .services__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__description {
    text-align: center;
    position:absolute;
    justify-content: center;
    top: 6rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .home__data .button{ 
    display: flex;
    width: 6rem ; 
    margin: 1rem auto;

  }


  .home-img {
   width: 20%; 
  }

  .home__container,
  .about__container,
  .security__container,
  .app__container,
  .contact__container {
    align-items: center;
  }
  .about__data,
  .contact__description {
    text-align: initial;
  }
  .about__img,
  .app__img {
    order: -1;
  }

}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 3rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__list {
    flex-direction: row;
    column-gap: 2.5rem;
  }
  .nav__toggle {
    display: none;
  }

  .home-img {
    width: 20%; 
   }

  .home__container {
    padding: 2rem 0 2rem;
  }



    
  .services__data  .button-link {

    position: absolute;
    bottom: 3rem ;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 7rem; 
    border-radius: 0px;
    padding: 5px; 
    border: solid white; 
  }

  .services__description {
    text-align: center;
    position:absolute;
    justify-content: center;
    top: 7.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .map-box iframe {
    height: 400px ;
  }


}

/* For large devices */
@media screen and (min-width: 968px) {
  .button__header {
    display: block;
  }
  .svg__img {
    width: 470px;
  }
  .about__container,
  .security__container,
  .app__container,
  .contact__container {
    column-gap: 6rem;
  }
  .services__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home__data

  .home__data {
    position:relative; 
    display: inline-block;
    text-align: center;
  }


  .services__data  .button-link {

    position: absolute;
    bottom: 4rem ;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 7rem; 
    border-radius: 0px;
    padding: 5px; 
    border: solid white; 
  }

  .services__description {
    text-align: center;
    position:absolute;
    justify-content: center;
    top:9rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }


  .contact__container {
    grid-template-columns: 3fr 1.5fr 1.25fr;
  }
  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer__social {
    align-items: flex-start;
  }
  .footer__social-link {
    font-size: 1.45rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  
  .services__data {
    display: grid;
    row-gap: 3rem ;
    margin-right: 2rem; 
    border-radius: 1rem;
    text-align: center;
  }

  /* .services__container,
  .home__container {
    grid-template-columns: repeat(2, 1fr);
  } */

  .services__data  .button-link {

    position: absolute;
    bottom: 6rem ;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 7rem; 
    border-radius: 0px;
    padding: 5px; 
    border: solid white; 
  }

  .services__description {
    text-align: center;
    position:absolute;
    justify-content: center;
    top: 11rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .home-img {
    width: 200px;
  }

  .home__data {
    text-align: center;
    justify-content: center;
    position:relative; 
    display: inline-block;
  }

  .map-box iframe {
    height: 550px ;
  }


  .footer__container {
    column-gap: 3rem;
  }
  .scrollup {
    right: 2rem;
  }
}

