@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@500;700&display=swap");
@keyframes surgeItem {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes surgeItem {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1100px) {
  * {
    margin: 0;
    padding: 0;
  }
  * body {
    font-family: "Epilogue", sans-serif;
    color: hsl(0, 0%, 41%);
    background-color: hsl(0, 0%, 98%);
  }
  * body header {
    width: 100vw;
    margin-bottom: 60px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    color: hsl(0, 0%, 41%);
  }
  * body header .sandwich {
    display: none;
  }
  * body header .logoDesk {
    height: -moz-fit-content;
    height: fit-content;
    width: 90px;
    align-self: center;
    margin-left: 50px;
    margin-right: 50px;
  }
  * body header .divNav {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  * body header .divNav .navigationBar {
    display: flex;
  }
  * body header .divNav .navigationBar .menu {
    display: flex;
    list-style: none;
  }
  * body header .divNav .navigationBar .menu .nav-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    cursor: pointer;
    padding: 15px 22px;
    margin: 0px 20px;
    list-style: none;
    text-decoration: none;
    border-radius: 10px;
  }
  * body header .divNav .navigationBar .menu .nav-item a {
    align-items: center;
    transition: all 300ms;
    color: hsl(0, 0%, 41%);
    text-decoration: none;
    margin-right: 5px;
  }
  * body header .divNav .navigationBar .menu .nav-item .arrow {
    margin-left: 5px;
    height: -moz-fit-content;
    height: fit-content;
    align-self: center;
    width: 18px;
    transition: all 300ms;
    transform: rotate(360deg);
  }
  * body header .divNav .navigationBar .menu .nav-item .submenu {
    position: absolute;
    height: 0;
    transition: 300ms;
    overflow-y: hidden;
    padding: 0px;
    border-radius: 10px;
    margin: 25px 0px;
  }
  * body header .divNav .navigationBar .menu .nav-item .submenu .submenuItem {
    margin: 13px 6px;
  }
  * body header .divNav .navigationBar .menu .nav-item:hover a {
    transition: all 300ms;
    color: hsl(0, 0%, 8%);
  }
  * body header .divNav .navigationBar .menu .nav-item:hover {
    transition: all 300ms;
    color: hsl(0, 0%, 8%);
  }
  * body header .divNav .navigationBar .menu .nav-item:hover > .arrow {
    transition: all 300ms;
    transform: rotate(180deg);
    filter: brightness(0);
  }
  * body header .divNav .navigationBar .menu .nav-item:hover > .submenu {
    padding: 10px;
    display: block;
    color: hsl(0, 0%, 8%);
    height: auto !important;
    cursor: pointer;
    background-color: hsl(0, 0%, 100%);
    box-shadow: 1px 1px 11px 0px hsl(0, 0%, 79.53%);
  }
  * body header .divNav .navigationBar .menu .nav-item:hover > .submenu .submenuItem {
    padding: 3px;
    display: flex;
    align-items: center;
  }
  * body header .divNav .navigationBar .menu .nav-item:hover > .submenu .submenuItem a {
    text-decoration: none;
    color: hsl(0, 0%, 8%);
  }
  * body header .divNav .navigationBar .menu .nav-item:hover > .submenu .submenuItem img {
    height: 16px;
    margin-right: 5px;
  }
  * body header .divNav .loginRegister {
    display: flex;
    list-style: none;
    align-self: center;
    cursor: pointer;
  }
  * body header .divNav .loginRegister .loginItem {
    display: flex;
  }
  * body header .divNav .loginRegister .loginItem a {
    padding: 15px 22px;
    margin: 0px 10px;
    color: hsl(0, 0%, 41%);
    text-decoration: none;
    border-radius: 15px;
  }
  * body header .divNav .loginRegister .loginItem a:last-child {
    border: hsl(0, 0%, 41%) solid 2px;
    margin-right: 20px;
  }
  * body header .divNav .loginRegister .loginItem a:hover:last-child {
    transition: all 300ms;
    border: hsl(0, 0%, 8%) solid 2px;
    color: hsl(0, 0%, 8%);
  }
  * body header .divNav .loginRegister .loginItem a:hover {
    transition: all 300ms;
    color: hsl(0, 0%, 8%);
  }
  * body .content {
    justify-content: space-between;
    width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
  }
  * body .content .imageHero {
    width: 500px;
    height: auto;
  }
  * body .content .text {
    width: 43%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  * body .content .text .titulo {
    margin-top: 80px;
    color: hsl(0, 0%, 0%);
    font-size: 74px;
  }
  * body .content .text .description {
    line-height: 30px;
    font-size: 18px;
  }
  * body .content .text .learnMoreButton {
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 98%);
    border: hsl(0, 0%, 8%) solid 2px;
    transition: all 300ms;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 30px;
    border-radius: 20px;
    cursor: pointer;
  }
  * body .content .text .learnMoreButton:hover {
    transition: all 300ms;
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 8%);
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 30px;
    border-radius: 20px;
    cursor: pointer;
  }
  * body .content .text .clients {
    display: flex;
    justify-content: space-between;
  }
  * body .content .text .clients img {
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 1099px) {
  * {
    margin: 0;
    padding: 0;
  }
  * body {
    width: 100vw;
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 41%);
    font-family: "Epilogue", sans-serif;
  }
  * body header {
    overflow: hidden;
    margin-top: 30px;
    display: flex;
  }
  * body header .sandwichDiv {
    margin: 20px;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 10000;
    width: 30px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms;
  }
  * body header .sandwichDiv .sandwichActive {
    transition: all 200ms;
    content: url(../images/icon-close-menu.svg);
  }
  * body header .rotate {
    transform: rotate(180deg);
    transition: 300ms;
  }
  * body header .logoDesk {
    height: -moz-fit-content;
    height: fit-content;
    width: 90px;
    align-self: center;
    margin-left: 50px;
    margin-right: 50px;
  }
  * body header .divActive {
    transition: all 300ms ease;
    width: 60vw !important;
    box-shadow: 0px 0px 100px 5px black;
  }
  * body header .divNav {
    transition: all 300ms ease;
    overflow: hidden;
    background-color: hsl(0, 0%, 100%);
    height: 100vh;
    width: 0px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0px;
    overflow-x: hidden;
  }
  * body header .divNav .navigationBar {
    margin-top: 50px;
  }
  * body header .divNav .navigationBar .menu {
    padding: 30px;
    list-style: none;
    transition: all 500ms;
  }
  * body header .divNav .navigationBar .menu .nav-item {
    margin: 30px 0;
  }
  * body header .divNav .navigationBar .menu .nav-item a {
    list-style: none;
    text-decoration: none;
    color: hsl(0, 0%, 41%);
  }
  * body header .divNav .navigationBar .menu .nav-item .arrow {
    transition: all 300ms;
    height: 9px;
    transform: rotate(360deg);
  }
  * body header .divNav .navigationBar .menu .nav-item:hover a {
    transition: all 300ms;
    color: hsl(0, 0%, 8%);
  }
  * body header .divNav .navigationBar .menu .nav-item:hover {
    transition: all 300ms;
    color: hsl(0, 0%, 8%);
  }
  * body header .divNav .navigationBar .menu .nav-item .arrowActive {
    transition: all 300ms;
    transform: rotate(180deg);
    filter: brightness(0);
  }
  * body header .divNav .navigationBar .menu .nav-item .submenu {
    display: flex;
    flex-direction: column;
    height: 0;
    list-style: none;
    overflow-y: hidden;
  }
  * body header .divNav .navigationBar .menu .nav-item .submenu .submenuItem img {
    margin-right: 3px;
  }
  * body header .divNav .navigationBar .menu .nav-item .submenuActive {
    height: auto !important;
  }
  * body header .divNav .navigationBar .menu .nav-item .submenuActive .submenuItem {
    margin: 20px 0 0px 15px;
  }
  * body header .divNav .loginRegister {
    list-style: none;
  }
  * body header .divNav .loginRegister .loginItem {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  * body header .divNav .loginRegister .loginItem a {
    margin: 5px auto;
    width: 120px;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    list-style: none;
    text-decoration: none;
    color: hsl(0, 0%, 41%);
    border-radius: 15px;
  }
  * body header .divNav .loginRegister .loginItem a:last-child {
    border: hsl(0, 0%, 41%) solid 2px;
  }
  * body header .divNav .loginRegister .loginItem a:hover:last-child {
    transition: all 300ms;
    border: hsl(0, 0%, 8%) solid 2px;
    color: hsl(0, 0%, 8%);
  }
  * body header .divNav .loginRegister .loginItem a:hover {
    transition: all 300ms;
    color: hsl(0, 0%, 8%);
  }
  * body .content .imageHero {
    content: url(../images/image-hero-mobile.png);
    margin: 20px 0;
    width: 100%;
  }
  * body .content .text {
    padding: 10px;
  }
  * body .content .text .titulo {
    margin: 20px 0;
    text-align: center;
    font-size: 37px;
    color: hsl(0, 0%, 8%);
    font-weight: 700;
  }
  * body .content .text .description {
    line-height: 30px;
    text-align: center;
    font-size: 17px;
  }
  * body .content .text .learnMoreButton {
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 98%);
    border: hsl(0, 0%, 8%) solid 2px;
    margin: 40px auto;
    font-weight: 700;
    transition: all 300ms;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
  }
  * body .content .text .learnMoreButton:hover {
    transition: all 300ms;
    background-color: hsl(0, 0%, 98%);
    color: hsl(0, 0%, 8%);
  }
  * body .content .text .clients {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  * body .content .text .clients img {
    padding: 4px;
    width: auto;
    height: 20px;
  }
}/*# sourceMappingURL=main.css.map */