[class^=col-] {
  padding-right: 0;
  padding-left: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-image: url("../assets/mikraltek_image_1.png");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
}

@media screen and (max-width: 767.98px) {
  body {
    background-size: contain;
  }
}
.navbar {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
}
.navbar .logo {
  display: block;
  margin: 0 auto;
}
.navbar .logo svg {
  max-width: 200px;
  width: 100%;
  cursor: pointer;
}
.navbar .wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  clip-path: circle(25px at 45px 45px);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.navbar #active:checked ~ .wrapper {
  clip-path: circle(75%);
  background: rgb(85, 86, 90);
  z-index: 2;
}
.navbar .menu-btn {
  z-index: 3;
  width: 40px;
  padding: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.navbar .menu-btn .menu-open {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .navbar .menu-btn {
    margin-left: 30px;
  }
}
.navbar #active:checked ~ .menu-btn {
  color: #fff;
}
.navbar #active:checked ~ .menu-btn:before {
  content: url("../assets/menu_close.svg");
}
.navbar .wrapper ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.navbar .wrapper ul li {
  margin: 35px 0;
}
.navbar .wrapper ul li a {
  cursor: pointer;
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 30px;
  color: #fff;
  border-radius: 50px;
  position: relative;
  line-height: 50px;
  transition: all 0.3s ease;
}
.navbar .wrapper ul li a:after {
  position: absolute;
  content: "";
  background: rgb(168, 212, 46);
  width: 104%;
  height: 110%;
  left: -2%;
  top: -5%;
  border-radius: 10px;
  transform: scaleY(0);
  z-index: -1;
  transition: transform 0.3s ease;
}
.navbar .wrapper ul li a:hover:after {
  transform: scaleY(1);
}
.navbar .wrapper ul li a:hover {
  color: #fff;
}
.navbar input[type=checkbox]#active {
  display: none;
}

@media screen and (max-width: 991.98px) {
  .navbar .wrapper ul {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .navbar .wrapper ul {
    overflow: auto;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
  }
  .navbar .wrapper ul li {
    margin: 20px 0;
  }
  .navbar .wrapper ul li a {
    font-size: 20px;
    padding: 0.75rem 0.5rem;
  }
}
#inicio .title {
  font-size: 35px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
#inicio .content-description {
  display: flex;
}
#inicio .description {
  display: flex;
}
#inicio .description p {
  font-size: 13px;
  font-weight: 400;
  color: black;
  white-space: break-spaces;
}
@media screen and (min-width: 768px) {
  #inicio .description {
    margin-bottom: 4rem;
  }
  #inicio .description:nth-child(1) p {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  #inicio .title {
    margin-top: 2rem;
  }
  #inicio .content-description {
    flex-direction: column;
  }
}

#vantagem-mikraltek {
  margin-top: 2rem;
  background-image: url("../assets/mikraltek_image_2.png");
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: top;
}
#vantagem-mikraltek .content, #vantagem-mikraltek .content-inner {
  display: flex;
}
#vantagem-mikraltek .title {
  font-size: 35px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
#vantagem-mikraltek .subtitle {
  font-size: 20px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
#vantagem-mikraltek .description {
  font-size: 13px;
  font-weight: 400;
  color: black;
}
@media screen and (min-width: 768px) {
  #vantagem-mikraltek .description {
    padding-right: 30px;
  }
}
@media screen and (max-width: 991.98px) {
  #vantagem-mikraltek .content {
    flex-direction: column;
  }
}
@media screen and (max-width: 767.98px) {
  #vantagem-mikraltek {
    background-size: contain;
  }
  #vantagem-mikraltek .content-inner {
    flex-direction: column;
  }
  #vantagem-mikraltek .title {
    margin-top: 3rem;
  }
}

#quem-somos {
  padding-top: 2rem;
}
#quem-somos .content {
  display: flex;
}
#quem-somos .title {
  font-size: 35px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
#quem-somos .description {
  font-size: 13px;
  font-weight: 400;
  color: black;
}
#quem-somos .subtitle {
  font-size: 20px;
  font-weight: 700;
  color: rgb(168, 212, 46);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
#quem-somos .subtitle-secondary {
  font-size: 20px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
#quem-somos .img-company {
  max-width: 100%;
  width: inherit;
}
@media screen and (min-width: 768px) {
  #quem-somos .description {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  #quem-somos .content {
    flex-direction: column;
  }
  #quem-somos .content div:first-child {
    order: 2;
  }
  #quem-somos .content div:last-child {
    order: 1;
  }
  #quem-somos .img-company {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767.98px) and (min-width: 992px) {
  #quem-somos .img-company {
    margin-top: -110px;
  }
}

#produtos {
  padding-top: 2rem;
}
#produtos .content {
  display: flex;
}
#produtos .title {
  font-size: 35px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
#produtos .description {
  font-size: 13px;
  font-weight: 400;
  color: black;
}
#produtos .description-1 {
  font-size: 13px;
  font-weight: 700;
  color: rgb(168, 212, 46);
  text-transform: uppercase;
}
#produtos .subtitle {
  font-size: 20px;
  font-weight: 700;
  color: rgb(168, 212, 46);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
#produtos .img-products {
  max-width: 100%;
  width: inherit;
}
@media screen and (min-width: 768px) {
  #produtos .description {
    padding-right: 30px;
  }
  #produtos .is-mobile {
    display: none;
  }
  #produtos .is-desktop {
    display: block;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  #produtos .content {
    flex-direction: column;
  }
  #produtos .content div:first-child {
    order: 2;
  }
  #produtos .content div:last-child {
    order: 1;
  }
  #produtos .img-products {
    padding-bottom: 2rem;
  }
  #produtos .is-mobile {
    display: block;
    margin-top: 2rem;
    margin-bottom: 0;
  }
  #produtos .is-desktop {
    display: none;
  }
}

#contatos {
  padding-top: 2rem;
}
#contatos .content {
  display: flex;
}
#contatos .title {
  font-size: 35px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
#contatos .subtitle {
  font-size: 18px;
  font-weight: 800;
  color: rgb(168, 212, 46);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}
#contatos .description {
  font-size: 13px;
  font-weight: 400;
  color: black;
  margin-bottom: 0;
}
#contatos .description-1 {
  font-size: 13px;
  font-weight: 400;
  color: black;
  margin-bottom: 0.75rem;
}
#contatos .anchor-to-call {
  font-size: 13px;
  font-weight: 400;
  color: black;
  margin-bottom: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
#contatos .anchor-to-map, #contatos .img-mapa {
  max-width: 100%;
  width: inherit;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #contatos .description {
    padding-right: 30px;
  }
  #contatos .is-mobile {
    display: none;
  }
  #contatos .is-desktop {
    margin-top: 3rem;
    display: block;
  }
}
@media screen and (max-width: 767.98px) {
  #contatos .content {
    flex-direction: column;
  }
  #contatos .is-mobile {
    display: block;
    margin-top: 2rem;
  }
  #contatos .is-desktop {
    display: none;
  }
}
@media screen and (max-width: 767.98px) and (min-width: 992px) {
  #contatos .img-mapa {
    margin-top: -110px;
  }
}

.footer {
  display: flex;
}
.footer .right-side {
  display: flex;
}
.footer span {
  font-size: 13px;
  font-weight: 400;
  color: black;
  text-transform: uppercase;
  cursor: default;
}
.footer span a {
  font-size: 13px;
  font-weight: 400;
  color: black;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}
.footer a {
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: black;
  text-transform: uppercase;
}
.footer a svg {
  max-width: 180px;
  width: 100%;
  cursor: pointer;
}
.footer a svg > * {
  cursor: pointer;
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .footer {
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .footer .right-side {
    align-items: center;
    justify-content: space-between;
    width: 70%;
  }
  .footer span, .footer span a, .footer a {
    font-size: 11px;
  }
  .footer a svg {
    max-width: 140px;
  }
}
@media screen and (max-width: 767.98px) {
  .footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 15px;
  }
  .footer .right-side {
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .footer {
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .footer .right-side {
    align-items: center;
    justify-content: space-between;
    width: 55%;
  }
}
.politica-privacidade .title {
  font-size: 35px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.politica-privacidade .subtitle {
  font-size: 20px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
}
.politica-privacidade .description {
  font-size: 13px;
  font-weight: 400;
  color: black;
  margin-bottom: 0;
}
.politica-privacidade .description b {
  color: rgb(85, 86, 90);
}

.politica-cookies .title {
  font-size: 35px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.politica-cookies .subtitle {
  font-size: 20px;
  font-weight: 800;
  color: rgb(85, 86, 90);
  text-transform: uppercase;
}
.politica-cookies .description {
  font-size: 13px;
  font-weight: 400;
  color: black;
  margin-bottom: 0;
}
.politica-cookies .description b {
  color: rgb(85, 86, 90);
}
.politica-cookies .link {
  color: black;
}

.funded-projects {
  z-index: 1;
  background-color: rgb(85, 86, 90);
  left: 30px;
  position: sticky;
  width: 100%;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 440px;
  align-items: stretch;
  padding: 1.75em 1rem;
}
.funded-projects .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  padding: 0.25rem;
  cursor: pointer;
}
.funded-projects span {
  color: white;
  font-size: 9px;
  display: block;
  margin-bottom: 1em;
}
.funded-projects .funded-imgs-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.funded-projects .funded-imgs-content a, .funded-projects .funded-imgs-content svg {
  max-width: 100px;
  width: 100%;
}
.funded-projects .funded-imgs-content .view-pdf {
  color: #FFF;
}
.funded-projects .funded-imgs-content .view-pdf a {
  color: #FFF;
  text-decoration: none;
  width: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.funded-projects .funded-imgs-content .view-pdf a svg {
  fill: #FFF;
  height: 15px;
  width: 15px;
}
.funded-projects .funded-imgs-content .view-pdf a span {
  margin-left: 5px;
  margin-bottom: inherit;
}

/*# sourceMappingURL=app.css.map */
