/* ===== RESET ===== */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul{
  list-style: none;
}


/* ===== ROOTS ===== */

:root{
  --hue: 34;

  --backgroud: hsl(var(--hue) 100% 91%);
  --backgroud-mb: hsl(var(--hue) 100% 81%);
  --backgroud-db: hsl(var(--hue) 49% 58%);
  --textcolor: hsl(var(--hue) 100% 95%);
  --textcolor-dk: hsl(var(--hue) 0% 10%);

  --font: 'Poppins', sans-serif;
  --title: 2.25rem;
  --subtitle: 1.75rem;
  --text: 1rem;

  --height: 4rem;
  --margin: 1.5rem;

  --button: ;
  --button-houver: ;
}


/* ===== BASE ===== */


html{
  scroll-behavior: smooth;
}

body {
  background: var(--backgroud);
  font: 400 var(--text) var(--font);
  color: var(--textcolor);
  -webkit-font-smoothing: antialiased;
  flex-direction: column;
  background-image: url('assets/img/BG-Icon.png');
  background-position: center;
  background-size: 15rem;
}

.title {
  font: 700 var(--title) var(--font);
  color: var(--backgroud-db);
  -webkit-font-smoothing: auto;
}

.button{
  background-color: var(--backgroud-db);
  color: var(--textcolor);
  height: 2.375rem;
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 3rem;
  border-radius: 3.5rem;
  transition: background 0.3s;
  /*margin-top: 1.25rem;*/
}

.button:hover{
  background: var(--backgroud-db);
}

a {
  text-decoration: none;
  font: 300 0.875rem var(--font);
  color: var(--textcolor);
}

img {
  width: 100%;
  height: auto;
}


/* ===== LAYOUT ===== */

.container,
header{
  margin-left: var(--margin);
  margin-right: var(--margin);
}

.grid{
  display: grid;
  gap: 1.5625rem;
}

.section{
  padding: var(--height) 0;
}

.section .title{
  margin-bottom: 1.5rem;
}

.button i{
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-right: 0.625rem;
}


/* ===== LAYOUT ===== */

.logo{
  width: 8rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0;
}


/* ===== HOME ===== */

#home{
  text-align: center;
  margin-top: -3rem;
}

#home p{
  color: var(--backgroud-db);
  margin-bottom: 2rem;
}

#home .img{
  width: 18rem;
  margin-left: auto;
  margin-right: auto;
}

#home .social{
  margin-top: 3rem;
}

.buttonsocial{
  background-color: var(--backgroud-db);
  color: var(--textcolor);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  padding: 1rem;
  border-radius: 3.5rem;
}


/* ===== LINKS ===== */

#links{
  background-color: var(--backgroud-db);
}

#links header,
#abount header{
  text-align: center;
  margin-bottom: var(--height);
}

#links .title{
  color: var(--textcolor);
}

.links{
  text-align: center;
}

#links .button{
  background-color: var(--backgroud-mb);
  color: var(--backgroud-db);
  font-weight: 400;
  text-align: center;
}


/* ===== ABOUNT ===== */

#abount .img{
  margin-bottom: 2rem;
}

#abount .text{
  background-color: var(--backgroud-db);
  padding: 1.5rem;
  border-radius: 20px;
}


/* ===== FORM ===== */

#form{
  background-color: var(--backgroud-db);
}

#form .title{
  color: var(--textcolor);
}

.links{
  text-align: left;
}

#form .grid{
  gap: 4rem;
}

#form ul.grid{
  gap: 2rem;
  margin-top: 2rem;
}

#form ul li i{
  font-size: 1.25rem;
  margin-right: 0.625rem;
}

#form label,
#form input,
#form textarea,
#form button{
    display: block;
    width: 100%;
}

#form label{
    text-align: left;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-weight: 600;
}


#form input,
#form textarea{
    font: inherit;
    margin-bottom: 1rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color, box-shadow 0.2s;
    background-color: var(--textcolor);
}

#form textarea{
    min-height: 10rem;
    resize: vertical;
}

#form input:hover,
#form input:focus,
#form textarea:hover,
#form textarea:focus{
    outline: none;
    border-color: var(--backgroud-mb);
    box-shadow: 0 0 0 2px var(--backgroud-mb);
}

#form button{
    display: block;
    background: var(--backgroud-mb);
    color: var(--backgroud-db);
    font: inherit;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    padding: 1rem 0;
}


#form button:hover,
#form button:focus{
    outline-style: none;
    background: var(--textcolor);
}


/* ===== FOOTER ===== */

#footer{
  background: #252525;
  padding: 0.5rem 0rem;
  text-align: center;
}

#footerindex .iconimg,
#footerland .iconimg,
#home .iconimg{
  width: 4.5rem;
  margin-top: -2rem;
}

.margin{
  margin: 0 2rem;
}

#footerland{
  background-color: var(--background-2);
  text-align: center;
  background-image:url('asstes/img/BG-MAPS-2.png'), linear-gradient(var(--background-3), var(--background-2),var(--background-2),var(--background-3));
  background-position: center;
  background-size: 20%;

}

#footer .brand p{
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/*  ===== BACK TO TOP ===== */

.back{
  background: #34af23  ;
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  padding: 1.05rem;
  clip-path: circle();
  font-size: 1.5rem;
  line-height: 0;
  color: var(--text-color);

  transition: 0.3s;

  transform: translateY(100%);
}




/*  ===== CONFIG DEVICES ===== */

/* extra large devices: 1200 > */
@media (min-width: 1200px) {
  :root{
    --title: 2.875rem;
    --text: 1.25rem;
  }

  .container{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .logo{
    width: 10rem;
  }

  #home .container{
    gap: 6rem;
    margin-top: -2rem;
  }

  #home .text{
    margin-top: 3rem;
  }

  #home .text{
    max-width: 500px;
  }

  #abount img{
    width: 20rem;
  }

  #form .text{
    text-align: left;
    margin-right: 8rem;
    max-width: 30rem;
  }

}
/* large devices: 1023 > */
@media (min-width: 1023px){
}

/* large devices: 992 > */
@media (min-width: 992px) {
  :root{
    --header-height: 1rem;
    --margin: 5rem;
  }

  .section {
    padding: calc(var(--header-height) + 5rem) 0;
  }

  .container{
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
  }

  .text{
    max-width: 25rem;
    text-align: center;
  }

  .video iframe{
    width: 500px;
    height: 300px;
    margin: 2rem;
  }

  #home .text{
    margin-bottom: 4rem;
  }

  #home .social{
    margin-top: -1rem;
  }

  #links .img{
    max-width: 25rem;
    margin-right: 4rem;
  }
  
  #abount .container{
    margin-top: 4rem;
  }

  #abount .img{
    margin-right: 4rem;
  }
}