/*=============== GOOGLE FONTS ===============*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 
body {
font-family: "Poppins", sans-serif !important;
margin: 0;
padding: 0;
background: white !important;
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 9999;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/

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: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}



/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__height {
  height: 100vh;
}

/*=============== LAYOUT ===============*/
.container_nev {
  max-width: 968px;
  /*margin-left: 1rem;*/
  margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
  box-shadow: 0px 0px 10px #808080cf;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}

.nav__logo {
  color: #4e4e4e;
  font-weight: 700;
  font-size: 24px;
  margin-left :10px;
}
.nav__logo span {
  color: rgb(61 173 184);
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    display: grid;
    align-content: center;
    border-radius: 1.25rem 1.25rem 0 0;
    transition: .4s;
  }
}

.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 0px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: var(--tiny-font-size);
  /* display: none;*/ /* Minimalist design, hidden labels */
  margin-top: 3px;
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: var(--first-color);
  transition: .3s;
}

.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }
}

@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .section {
    padding: 7rem 0 2rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
  }
  .nav__img {
    display: none;
  }
  .nav__icon {
    display: none;
  }
  .nav__name {
    font-size: var(--normal-font-size);
    /* display: block; */ /* Minimalist design, visible labels */
  }
  .nav__link:hover {
    color: var(--first-color);
  }

  /* First design, remove if you choose the minimalist design */
  .active-link::before {
    content: '';
    position: absolute;
    bottom: -.75rem;
    width: 4px;
    height: 4px;
    background-color: var(--first-color);
    border-radius: 50%;
  }

}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container_nev {
    margin-left: auto;
    margin-right: auto;
  }
}

/*===========dropdown===============*/
.dropdownM01 {
  position: relative;

}

.dropdownM01-content {
  display: none;
  position: absolute;
  right: 0;
  margin-top: 0px;
  margin-right: -10px;
  background-color: #ffffff;
  min-width: 200px;
  overflow: auto;
  border-radius: 10px;
  box-shadow: 0px 6px 20px gray;
  z-index: 20;
}
.dropdownM01-content a {
  display: flex !important;

  justify-content: space-between;
  font-size: 13px;
  color: #4e4e4e;
  padding: 9px 5px;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}
.dropdownM01-content ion-icon{
  margin: 0px 6px -4px 0px;
}
.dropdownM01-content :hover {
  color: #1da1f2;
}

.water-drop {
  animation: fall 0.3s ease-in-out forwards;
}

@keyframes fall {
  0% {
      margin-top: -450px;
      
  }
  100% {
      margin-top: 20px;
      
  }
}

.showM01 {
  color: #4e4e4e;
  padding: 9px 14px 20px 11px;
  text-decoration: none;
  display: block;
}

.arrow-rightM01 {
  float: right;
  font-size: 22px;
  color: #4e4e4e;
  margin: -1px 10px 0px 0px;
}
.arrow-rightM01:hover {
  color: #1da1f2;
}
.active{
  color: #3a00d8;
}
@media (max-width: 767px) {

  .dropdownM01-content a {
      font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .xbtq{
      display: none;
  }
  .wqii{
    position: absolute;
    right: 9px;
    margin-right: unset !important;
  }
}
@media only screen and (min-width: 768px) {
  .xbtqq{
      display: none;
  }

}
.cantar{
display: flex;
justify-content: center;
}
.icone-3line{
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M64 384h384v32H64zm0-128h384v32H64zm0-128h384v32H64z"/></svg>');
  width: 25px;  
  height: 25px;  
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
.icone-go-bottm {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  width: 25px;  
  height: 25px; 
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
