
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");


:root {
  --header-height: 3.5rem;

  /*--black-color: hsl(220, 24%, 12%);*/
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);


  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

 
  --font-regular: 400;
  --font-semi-bold: 600;


  --z-tooltip: 10;
  --z-fixed: 100;
}


@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
h1,h2,h3,h4,h5,h6,p,small,span,li{
  font-family: 'Dosis',sans-serif;
}
body {
  font-family: 'Dosis', sans-serif;
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.containers {
  /*max-width: 1120px;
  margin-inline: 1.5rem;*/
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  margin-left:;
  width: ;
  align-items: center;
  justify-content: center;
  background-color:#fff;
  color: #010203;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}


.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color:#010203;
}

.nav__data {
  width:auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {

  display: inline-flex;
  align-items: left;
  margin-left: ;
 
  font-weight: var(--font-semi-bold);
}
.nav__logo img{
  border-radius: 50%;
}
.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: absolute;
  margin-right: ;
  right:0;
 /* column-gap: 3.25rem;*/
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}
/*
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    color: ;
    padding-top: 1rem;
  }
}*/

/* CSS for small devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: fixed;
    left: -100%; 
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: left 0.4s, opacity 0.3s;
    z-index: 1000; 
  }
  .nav__menu.show-menu {
    left: 0; 
    pointer-events: auto;
    opacity: 1;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: white;
    color: ;
    padding-top: 1rem;
  }
 
}

.nav__link {
  color: #010203;
  font-weight: 800;
  padding: 0.625rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  text-decoration: none;
  text-transform: uppercase;
}

.nav__link:hover {
  background-color: #010203;
  color:red;
  /*transform: skewX(10deg);
  transform: rotate(1deg);*/
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 0 1.25rem 1.25rem 2.5rem;
  color: #010203;
  background-color: white;
  width:20rem;
  display: flex;
  text-decoration: none;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 0.75rem;
  font-weight: initial;
  transition: transform 0.3s ease;
}

.dropdown__link,
.dropdown__sublink {
  
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: #ffffff;
  color: red;
  text-decoration: none;
  transform: translateX(5px); 
  border-left: 5px solid red;
  border-bottom: 2px solid red;
}
.dropdown__menu {
      top:-10rem;  
}

.dropdown__menu, 
.dropdown__submenu {

  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: #fff;
}


@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    height:100%;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    width:auto;
    left: 0;
    top: 5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }


  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 4.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

.input-group input{
  border-radius: 0;
  border:1px solid #E5232E;
}