.home {
  padding: 0;
}

.home__banner {
  background: #042036;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.centro { text-align: center;}

@media screen and (max-width: 460px) {
  .home__banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto !important;
    margin: 68px 0 0 0;
  }
}

.home__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(4, 61, 105, 0.8);
  z-index: 99;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.home__banner::after {
  content: url("../assets/home/bullets.svg");
  position: absolute;
  bottom: 56px;
  left: 50%;
  -webkit-transform: translateX(-68%);
          transform: translateX(-68%);
  z-index: 999;
}

@media screen and (max-width: 460px) {
  .home__banner::after {
    -webkit-transform: unset;
            transform: unset;
    left: unset;
    right: 0;
    top: unset;
    bottom: -96px;
  }
}

.home__banner__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 80px 0 0 0;
}

@media screen and (max-width: 460px) {
  .home__banner__content {
    -webkit-animation: fade 300ms forwards;
            animation: fade 300ms forwards;
    padding: 64px 0;
  }
}

.home__banner__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 61, 105, 0.88);
  z-index: 1;
  mix-blend-mode: multiply;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.home__banner__content .container {
  position: relative;
  z-index: 999;
}

@media screen and (max-width: 460px) {
  .home__banner__content .container {
    margin: 0 auto 0 0 !important;
    width: calc(100% - 64px);
  }
}

.home__banner__content .container h1 {
  font: 700 30px/46px "Montserrat", sans-serif;
  color: #FFFFFF;
}

@media screen and (max-width: 460px) {
  .home__banner__content .container h1 {
    font: 700 26px/38px "Montserrat", sans-serif;
  }
}

.home__banner__content .container ul {
  margin: 32px 0 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 116px;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

@media screen and (max-width: 460px) {
  .home__banner__content .container ul {
    height: auto;
    margin: 24px 0;
    -webkit-animation: fade 400ms forwards;
            animation: fade 400ms forwards;
  }
}

.home__banner__content .container ul li {
  margin: 0 0 16px 0;
  height: 17px;
}

@media screen and (max-width: 460px) {
  .home__banner__content .container ul li {
    margin: 0 0 12px 0;
  }
}

.home__banner__content .container ul li:not(:last-child) span::after {
  content: "";
  margin: 0 12px;
  background: #FFFFFF;
  width: 2px;
  height: 2px;
  border-radius: 100px;
}

.home__banner__content .container ul li span {
  font: 300 17px/1 "Montserrat", sans-serif;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 460px) {
  .home__banner__content .container ul li span {
    font-size: 15px;
  }
}

.home__banner__content .container a {
  background: linear-gradient(45deg, #bed8f3 0%, #81b5ee 100%);
  color: #042036;
  font: 400 18px/1 "Montserrat", sans-serif;
  border-radius: 14px;
  padding: 18px 28px 20px 48px;
  min-width: 256px;
  display: inline-block;
  position: relative;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

.home__banner__content .container a::after {
  content: url("../assets/home/arrow-btn-banner.svg");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
}

@media screen and (max-width: 460px) {
  .home__banner__content .container a {
    padding: 16px 28px 18px 40px;
    font-size: 17px;
  }
}

.home__banner__content .container a:hover {
  background: linear-gradient(45deg, #81b5ee 0%, #bed8f3 100%);
}

@media screen and (max-width: 460px) {
  .home__banner__content .container a {
    -webkit-animation: fade 400ms forwards;
            animation: fade 400ms forwards;
  }
}

.home__banner__content--esq {
  background-image: url("../assets/home/banner-esq.png");
}

.home__banner__content--esq .container {
  max-width: 450px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 460px) {
  .home__banner__content--esq::before {
    mix-blend-mode: unset;
  }
}

.home__banner__content--dir {
  background-image: url("../assets/home/banner-dir.png");
}

.home__banner__content--dir .container {
  max-width: 425px;
  margin: 0 auto 0 80px;
}

.home__banner__content--dir ul,
.home__banner__content--dir a {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 460px) {
  .home__banner__content--dir ul,
  .home__banner__content--dir a {
    display: none !important;
  }
}

.home__banner__btn {
  position: absolute;
  top: 56%;
  left: 59%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999;
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
  -webkit-animation: infinite btnX 1s ease-in-out;
          animation: infinite btnX 1s ease-in-out;
  cursor: pointer;
  display: block;
  width: 210px;
}

.home__banner__btn.mob {
  display: none;
}

@media screen and (max-width: 460px) {
  .home__banner__btn.mob {
    display: block;
  }
}

@media screen and (max-width: 460px) {
  .home__banner__btn.desk {
    display: none;
  }
}

@media screen and (max-width: 460px) {
  .home__banner__btn {
    left: 50% !important;
    bottom: 10px;
    top: unset;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    width: auto;
    height: 20px;
    z-index: 99;
    -webkit-animation: infinite btnY 1s ease-in-out;
            animation: infinite btnY 1s ease-in-out;
  }
}

.home__banner__btn button {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-transition: 400ms ease-in-out;
  transition: 400ms ease-in-out;
}

@media screen and (max-width: 460px) {
  .home__banner__btn button {
    -webkit-transform: translate(-50%, 0) rotate(-90deg);
            transform: translate(-50%, 0) rotate(-90deg);
    position: absolute;
    bottom: 0;
    left: 50%;
  }
}

.home__banner__btn button::before {
  content: url("../assets/home/arrow-banner.svg");
  display: block;
}

.home__banner.change .home__banner__content--dir ul,
.home__banner.change .home__banner__content--dir a {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 460px) {
  .home__banner.change .home__banner__content--dir ul,
  .home__banner.change .home__banner__content--dir a {
    display: block !important;
  }
}

@media screen and (max-width: 460px) {
  .home__banner.change .home__banner__content--dir::before {
    mix-blend-mode: unset;
  }
}

.home__banner.change .home__banner__content--esq ul,
.home__banner.change .home__banner__content--esq a {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 460px) {
  .home__banner.change .home__banner__content--esq ul,
  .home__banner.change .home__banner__content--esq a {
    display: none;
  }
}

@media screen and (max-width: 460px) {
  .home__banner.change .home__banner__content--esq::before {
    mix-blend-mode: multiply;
  }
}

.home__banner.change .home__banner__btn {
  left: 41%;
}

.home__banner.change .home__banner__btn button {
  -webkit-transform: unset;
          transform: unset;
}

@media screen and (max-width: 460px) {
  .home__banner.change .home__banner__btn button {
    -webkit-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
  }
}

.home__banner.change::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (max-width: 460px) {
  .home__banner {
    height: calc(100vh - 80px);
  }
  .home__banner::before {
    display: none;
  }
  .home__banner.change .home__banner__content--dir {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.home__conheca {
  padding: 136px 0 160px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  .home__conheca {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 96px;
  }
}

.home__conheca__image {
  width: 100%;
  position: relative;
}

.home__conheca__image::before {
  content: url("../assets/home/circle-top-conheca.svg");
  position: absolute;
  top: 0;
  -webkit-transform: translateY(calc(-100% + 4px));
          transform: translateY(calc(-100% + 4px));
  left: 112px;
}

.home__conheca__image::after {
  content: url("../assets/home/circle-bottom-conheca.svg");
  position: absolute;
  bottom: -6px;
  right: 24px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.home__conheca__image figure {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 56px 0 0;
  position: relative;
}

.home__conheca__image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0F6CB4;
  opacity: .4;
  mix-blend-mode: multiply;
}

.home__conheca__image figure img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 460px) {
  .home__conheca__image figure img {
    height: 100%;
    width: auto;
  }
}

.home__conheca__texto {
  padding: 0 88px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .home__conheca__texto {
    padding: 0 24px;
    margin: 80px 0 0 0;
  }
}

.home__conheca__texto p {
  margin: 40px 0;
}

.home__video {
  background: linear-gradient(135deg, #0f6cb4 0%, #2ea4ff 100%);
  padding-bottom: 8px;
}

.home__video .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 460px) {
  .home__video .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home__video__texto {
  max-width: 285px;
  width: 100%;
  margin: 80px 40px 0 0;
}

@media screen and (max-width: 460px) {
  .home__video__texto {
    margin: 40px 0 8px 0;
  }
}

.home__video__texto h2 {
  color: #FFFFFF;
  margin: 0 0 32px 0;
}

.home__video__thumb {
  max-width: 585px;
  width: 100%;
  position: relative;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

@media screen and (max-width: 960px) {
  .home__video__thumb {
    max-width: 420px;
  }
}

.home__video__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #042036;
  opacity: .64;
  mix-blend-mode: multiply;
  z-index: 2;
  border-radius: 10px;
}

.home__video__thumb::after {
  content: url("../assets/icons/points-video.svg");
  position: absolute;
  right: -40px;
  bottom: 16px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

@media screen and (max-width: 960px) {
  .home__video__thumb::after {
    display: none;
  }
}

.home__video__thumb figure {
  border-radius: 10px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 330px;
  -webkit-box-shadow: 0 0 20px rgba(4, 32, 54, 0.32);
          box-shadow: 0 0 20px rgba(4, 32, 54, 0.32);
}

@media screen and (max-width: 960px) {
  .home__video__thumb figure {
    height: 280px;
  }
}

@media screen and (max-width: 460px) {
  .home__video__thumb figure {
    height: 200px;
  }
}

.home__video__thumb figure img {
  width: auto;
  height: 100%;
}

.home__video__thumb button {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.home__video__thumb button::before {
  content: url("../assets/icons/play.svg");
}

.home__faturamento {
  background: #EFF1F3;
  padding: 144px 0 96px 0;
}

@media screen and (max-width: 460px) {
  .home__faturamento {
    padding: 80px 0;
  }
}

.home__faturamento h2 {
  margin: 0 0 88px 0;
}

@media screen and (max-width: 960px) {
  .home__faturamento h2 {
    margin: 0 0 56px 0;
  }
}

.home__faturamento__cards {
  padding: 0 56px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 72px 80px;
}

@media screen and (max-width: 960px) {
  .home__faturamento__cards {
    padding: 0 24px;
  }
}

@media screen and (max-width: 460px) {
  .home__faturamento__cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
    padding: 0;
  }
}

.home__faturamento__cards aside {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  position: relative;
  cursor: pointer;
}

.home__faturamento__cards aside:hover div::before {
  opacity: 1;
  visibility: visible;
}

.home__faturamento__cards aside:hover a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.home__faturamento__cards aside div {
  position: relative;
  margin: 0 0 48px 0;
}

@media screen and (max-width: 460px) {
  .home__faturamento__cards aside div {
    margin: 0 0 32px 0;
  }
}

.home__faturamento__cards aside div::before {
  content: "";
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  border: 2px solid #0F6CB440;
  border-radius: 16px 100px 16px 16px;
  position: absolute;
  top: 50%;
  left: -24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: calc(100% + 24px);
  height: calc(100% + 56px);
  opacity: 0;
  visibility: hidden;
}

.home__faturamento__cards aside div h4 {
  font: 600 17px/1.2 "Montserrat", sans-serif;
  margin: 32px 0 16px 0;
  color: #042036;
}

@media screen and (max-width: 460px) {
  .home__faturamento__cards aside div h4 {
    font-size: 14px;
    margin: 24px 0 16px 0;
  }
}

.home__faturamento__cards aside div p {
  font: 300 15px/1.7 "Montserrat", sans-serif;
  color: #70777E;
}

@media screen and (max-width: 460px) {
  .home__faturamento__cards aside div p {
    line-height: 1.4;
  }
}

.home__faturamento__cards aside a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0F6CB4;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  font: 500 16px/1 "Montserrat", sans-serif;
  transition: 300ms ease;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 460px) {
  .home__faturamento__cards aside a {
    font-size: 14px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: unset;
            transform: unset;
  }
}

.home__faturamento__cards aside a:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.home__faturamento__cards aside a::after {
  content: url("../assets/icons/arrow-blue.svg");
  margin: 6px 0 0 14px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.quem-somos .banner-page {
  background-image: url("../assets/quem-somos/banner.png");
}

.quem-somos__header-sec {
  padding: 112px 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__header-sec {
    padding: 72px 0;
  }
}

.quem-somos__header-sec .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 460px) {
  .quem-somos__header-sec .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.quem-somos__header-sec__texto {
  max-width: 440px;
  width: 100%;
}

.quem-somos__header-sec__texto h2 {
  font: 700 30px/1.6 "Montserrat", sans-serif;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__header-sec__texto h2 {
    font-size: 22px;
    margin: 0 0 24px 0;
  }
}

.quem-somos__header-sec__numbers {
  padding: 8px 0 0 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__header-sec__numbers {
    padding: 56px 0 0 0;
  }
}

.quem-somos__header-sec__numbers section {
  padding: 0 144px 0 0;
  position: relative;
}

.quem-somos__header-sec__numbers section:not(:last-child) {
  margin: 0 0 56px 0;
}

.quem-somos__header-sec__numbers section::after {
  content: url("../assets/quem-somos/points-header.svg");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

.quem-somos__header-sec__numbers section h6 {
  font: 600 19px/1.4 "Montserrat", sans-serif;
  color: #042036;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 5;
}

.quem-somos__header-sec__numbers section h3 {
  color: #568ECA;
  font: 700 46px/1 "Montserrat", sans-serif;
  position: relative;
  z-index: 5;
}

.quem-somos__depoimentos {
  background: #EFF1F3;
  padding: 180px 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos {
    padding: 80px 0 168px 0;
  }
}

.quem-somos__depoimentos .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.quem-somos__depoimentos__title {
  max-width: 285px;
  width: 100%;
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos__title {
    margin: 0 0 40px 0;
    max-width: 100%;
  }
}

.quem-somos__depoimentos__title h2 {
  margin: 0 0 72px 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos__title h2 {
    margin: 0 0 48px 0;
  }
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos__title .itens-carousel {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.quem-somos__depoimentos__itens {
  position: relative;
  max-width: 390px;
  width: 100%;
}

.quem-somos__depoimentos__itens::before {
  content: url("../assets/home/circle-top-conheca.svg");
  position: absolute;
  top: -24px;
  left: -48px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos__itens::before {
    display: none;
  }
}

.quem-somos__depoimentos__itens::after {
  content: url("../assets/home/circle-bottom-conheca.svg");
  position: absolute;
  bottom: -24px;
  right: -48px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos__itens::after {
    right: 0;
  }
}

.quem-somos__depoimentos__itens p {
  font: 400 18px/1.8 "Montserrat", sans-serif;
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos__itens p {
    font-size: 16px;
  }
}

.quem-somos__depoimentos__itens h4 {
  margin: 40px 0 0 0;
  font: 500 20px/1 "Montserrat", sans-serif;
  color: #042036;
}

@media screen and (max-width: 460px) {
  .quem-somos__depoimentos__itens h4 {
    font-size: 18px;
    margin: 32px 0 0 0;
  }
}

.quem-somos__modalidades {
  border-top: 1px solid #BED8F3;
  background: #EFF1F3;
  padding: 120px 0 88px 0;
  position: relative;
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades {
    padding: 48px 0 80px 0;
  }
}

.quem-somos__modalidades::before {
  content: url("../assets/quem-somos/points-modalidades.svg");
  z-index: 1;
  position: absolute;
  top: 51%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.quem-somos__modalidades .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.quem-somos__modalidades__cards {
  max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .quem-somos__modalidades__cards {
    margin: 0 40px 0 0;
  }
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades__cards {
    margin: 0 0 40px 0;
  }
}

.quem-somos__modalidades__cards section {
  background: #FFFFFF;
  border-radius: 16px 16px 100px 16px;
  padding: 42px 42px 42px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.quem-somos__modalidades__cards section img {
  margin: 0 30px 0 0;
}

.quem-somos__modalidades__cards section aside h4 {
  margin: 0 0 16px 0;
  color: #042036;
  font: 600 18px/1.3 "Montserrat", sans-serif;
}

.quem-somos__modalidades__cards section aside p {
  font-size: 15px;
}

.quem-somos__modalidades__cards section:not(:last-child) {
  margin: 0 0 48px 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades__cards section:not(:last-child) {
    margin: 0 0 40px 0;
  }
}

.quem-somos__modalidades__cards a {
  display: none;
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades__cards a {
    display: inline-block;
  }
}

.quem-somos__modalidades__title {
  max-width: 330px;
  width: 100%;
  padding: 48px 0 0 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades__title {
    margin: 0 0 48px 0;
  }
}

.quem-somos__modalidades__title h2 {
  margin: 0 0 72px 0;
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades__title h2 {
    margin: 0;
  }
}

@media screen and (max-width: 460px) {
  .quem-somos__modalidades__title a {
    display: none;
  }
}

.produtos .banner-utils {
  background-image: url("../assets/produtos/banner.png");
}

.produtos__cards {
  -webkit-transform: translateY(-32px);
          transform: translateY(-32px);
  position: relative;
  z-index: 9;
}

.produtos__cards .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media screen and (max-width: 960px) {
  .produtos__cards .container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 460px) {
  .produtos__cards .container {
    gap: 24px;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.produtos__cards__card {
  border-radius: 5px;
  border: 2px solid #0F6CB432;
  background: #FFFFFF;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  padding: 20px;
}

@media screen and (max-width: 460px) {
  .produtos__cards__card {
    padding: 20px 14px;
  }
}

.produtos__cards__card:hover {
  border-color: #0F6CB4;
}

.produtos__cards__card:hover a {
  color: #0F6CB4;
}

.produtos__cards__card a figure {
  height: 190px;
  max-width: 168px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.produtos__cards__card a figure img {
  height: auto;
  width: 100%;
}

.produtos__cards__card a h3 {
  font: 600 16px/1.3 "Montserrat", sans-serif;
  color: #042036;
  margin: 16px 0 24px 0;
}

@media screen and (max-width: 460px) {
  .produtos__cards__card a h3 {
    font-size: 14px;
    margin: 16px 0;
  }
}

.produtos__cards__card a div {
  font-size: 15px;
  color: #568ECA;
}

.produtos__cards__card a div::after {
  content: url("../assets/produtos/arrow-link.svg");
}

@media screen and (max-width: 460px) {
  .produtos__cards__card a div {
    font-size: 12px;
  }
}

.produto {
  margin: 48px 0 0 0;
}

.produto__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 0;
}

.produto__breadcrumb * {
  font: 500 14px/1 "Montserrat", sans-serif;
}

.produto__breadcrumb a {
  display: block;
  color: #949EA8;
}

.produto__breadcrumb a.active {
  color: #568ECA;
}

.produto__breadcrumb span {
  margin: 0 10px;
  display: block;
  color: #949EA8;
}

.produto__content {
  margin: 64px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 460px) {
  .produto__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.produto__content__images {
  max-width: 380px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .produto__content__images {
    margin: 0 40px 0 0;
  }
}

@media screen and (max-width: 460px) {
  .produto__content__images {
    margin: 0;
  }
}

.produto__content__images .slick-next,
.produto__content__images .slick-prev {
  display: none !important;
}

.produto__content__images__principals {
  margin: 0 0 64px 0;
}

@media screen and (max-width: 460px) {
  .produto__content__images__principals {
    margin: 0 0 8px 0;
  }
}

.produto__content__images__principals figure {
  padding: 16px;
  border: 2px solid #0F6CB456;
  border-radius: 6px;
  background: #FFFFFF;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 380px;
}

@media screen and (max-width: 460px) {
  .produto__content__images__principals figure {
    margin: 0 0 32px 0;
  }
}

.produto__content__images__principals figure img {
  width: 100%;
  height: auto;
}

.produto__content__images__thumbs figure {
  margin: 0 8px;
  width: 100px;
  height: 100px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.produto__content__images__thumbs figure img {
  height: auto;
  width: 100%;
}

.produto__content__texto {
  max-width: 380px;
  width: 100%;
  padding: 32px 0 0 0;
}

@media screen and (max-width: 460px) {
  .produto__content__texto {
    padding-top: 48px;
  }
}

.produto__content__texto h1 {
  font: 700 30px/1.3 "Montserrat", sans-serif;
  color: #042036;
}

.produto__content__texto p {
  color: #70777E;
  font: 300 15px/1.8 "Montserrat", sans-serif;
  margin: 40px 0;
}

@media screen and (max-width: 460px) {
  .produto__content__texto p {
    margin: 32px 0;
  }
}

.produto__content__texto .select:not(:last-child) {
  margin: 0 0 16px 0;
}

.produto__content__texto .select select,
.produto__content__texto .select option {
  padding-top: 17px;
  padding-bottom: 17px;
  font: 400 13px/1 "Montserrat", sans-serif;
  background: #EFF1F3;
}

.produto__content__texto footer {
  margin: 40px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 460px) {
  .produto__content__texto footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 24px 0 0 0;
  }
}

.produto__content__texto footer aside {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.produto__content__texto footer aside label {
  color: #949EA8;
  font: 600 16px/1 "Montserrat", sans-serif;
  width: auto;
  margin: 0 36px 0 12px;
}

.produto__content__texto footer button {
  width: 100%;
  font-weight: 500;
  white-space: nowrap;
  padding-left: 25px;
}

@media screen and (max-width: 460px) {
  .produto__content__texto footer button {
    margin: 24px 0 0 0;
  }
}

.carrinho .banner-utils {
  background-image: url("../assets/carrinho/banner.png");
}

.carrinho .banner-utils .container {
  padding-top: 96px;
}

@media screen and (max-width: 460px) {
  .carrinho .banner-utils .container {
    padding-top: 80px;
  }
}

.carrinho__itens {
  position: relative;
  z-index: 5;
  margin-top: -80px;
}

@media screen and (max-width: 460px) {
  .carrinho__itens {
    margin-top: -40px;
  }
}

.carrinho__itens li {
  background: #FFFFFF;
  border: 1px solid #0F6CB448;
  padding: 8px 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
}

@media screen and (max-width: 460px) {
  .carrinho__itens li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 16px;
  }
}

.carrinho__itens li:not(:last-child) {
  margin: 0 0 16px 0;
}

.carrinho__itens li .esq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.carrinho__itens li .dir {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 460px) {
  .carrinho__itens li .dir {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.carrinho__itens li figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 120px;
  height: 120px;
  margin: 0 40px 0 0;
}

@media screen and (max-width: 460px) {
  .carrinho__itens li figure {
    width: 96px;
    height: 96px;
    margin: 0 24px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.carrinho__itens li figure img {
  width: 100%;
  height: auto;
}

.carrinho__itens li .infos {
  margin: 0 16px 0 0;
  max-width: 240px;
  width: 100%;
}

@media screen and (max-width: 460px) {
  .carrinho__itens li .infos {
    margin: 16px 0 24px 0;
  }
}

.carrinho__itens li .infos h2 a {
  color: #030303;
  font: 500 18px/1 "Montserrat", sans-serif;
  display: block;
  margin: 0 0 16px 0;
}

.carrinho__itens li .infos footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.carrinho__itens li .infos footer h5 {
  color: #030303;
  font: 400 14px/1.6 "Montserrat", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.carrinho__itens li .infos footer h5:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 6px;
  background: #030303;
  margin: 0 12px;
}

.carrinho__itens li label {
  text-align: center;
  color: #949EA8;
  font: 600 13px/1 "Montserrat", sans-serif;
  margin: 0 0 14px 0;
  display: inline-block;
}

.carrinho__itens li input {
  margin: 0 auto;
}

.carrinho__itens li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 600 13px/1 "Montserrat", sans-serif;
  color: #949EA8;
  margin: 0 0 0 88px;
}

@media screen and (max-width: 460px) {
  .carrinho__itens li button {
    margin: 0;
  }
}

.carrinho__itens li button::after {
  content: "";
  margin: 0 0 0 12px;
  display: block;
  width: 20px;
  height: 20px;
  background: url("../assets/general/close-item.svg") center/cover no-repeat;
}

.projeto-personalizado .banner-page {
  background-image: url("../assets/projeto-personalizado/banner.png");
}

.projeto-personalizado__sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 88px 0 16px 0;
}

@media screen and (max-width: 460px) {
  .projeto-personalizado__sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 64px 24px 0 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.projeto-personalizado__sec aside {
  width: 100%;
  margin: 0 80px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 460px) {
  .projeto-personalizado__sec aside {
    margin: 0 0 48px 0;
  }
}

.projeto-personalizado__sec aside * {
  max-width: 395px;
  width: 100%;
}

.projeto-personalizado__sec aside h2 {
  margin: 0 0 40px 0;
}

.projeto-personalizado__sec figure {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

@media screen and (max-width: 460px) {
  .projeto-personalizado__sec figure {
    width: calc(100% + 48px);
    margin: 0 0 0 -24px;
  }
}

.projeto-personalizado__sec figure img {
  width: 100%;
}

* {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #70777E;
}

html,
body {
  scroll-behavior: smooth;
}

html.o-hidden,
body.o-hidden {
  overflow: hidden;
}

img {
  /*display: block;*/
}

h2 {
  font: 700 30px/46px "Montserrat", sans-serif;
  color: #042036;
}

@media screen and (max-width: 460px) {
  h2 {
    font: 700 24px/36px "Montserrat", sans-serif;
  }
}

p {
  font: 300 16px/26px "Montserrat", sans-serif;
}

@media screen and (max-width: 460px) {
  p {
    font-size: 14px/24px "Montserrat", sans-serif;
  }
}

button {
  cursor: pointer;
}

main {
  padding: 77px 0 0 0;
}

@media screen and (max-width: 960px) {
  main {
    padding: 67px 0 0 0;
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes btnX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes btnX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes btnY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes btnY {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

input {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

input:focus {
  border-color: #0F6CB4 !important;
}

.container {
  max-width: calc(1100px + 24px);
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
}

.link-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 500 17px/1 "Montserrat", sans-serif;
  color: #0F6CB4;
}

.link-arrow:hover::after {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.link-arrow::after {
  content: url("../assets/general/arrow-link.svg");
  margin: 2px 0 0 14px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.btn {
  font: 400 16px/1 "Montserrat", sans-serif;
  color: #FFFFFF;
  background: linear-gradient(45deg, #043d69 0%, #0f6cb4 100%);
  text-align: center;
  border-radius: 10px;
  padding: 16px 48px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  display: inline-block;
  position: relative;
}

.btn--arrow {
  padding-right: 80px;
  padding-left: 40px;
  white-space: nowrap;
}

.btn--arrow::after {
  content: url("../assets/icons/arrow-btn.svg");
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  opacity: .56;
}

.btn:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
  padding: 0px 0;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #FFFFFF;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.navbar.active .navbar__menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.navbar.active .navbar__icon__bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}

.navbar.active .navbar__icon__bar:nth-child(2) {
  width: 0;
}

.navbar.active .navbar__icon__bar:nth-child(3) {
  width: 32px;
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}

@media screen and (max-width: 960px) {
  .navbar {
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding: 0;
  }
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .navbar .container {
    padding: 0;
  }
}

@media screen and (max-width: 960px) {
  .navbar__bar {
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
    padding: 14px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    z-index: 999;
    background: #FFFFFF;
    position: relative;
  }
}

.navbar__logo {
  display: block;
}

.navbar__logo--white {
  display: none;
}

.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 80px 24px 0 24px;
    overflow-y: auto;
    -webkit-transition: 500ms ease-in-out;
    transition: 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.navbar__menu__item {
  position: relative;
  margin: 0 0 0 36px;
}

@media screen and (max-width: 960px) {
  .navbar__menu__item {
    margin: 0;
  }
}

.navbar__menu__item__link {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 500 14px/1 "Montserrat", sans-serif;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

@media screen and (max-width: 960px) {
  .navbar__menu__item__link {
    font-size: 18px;
    padding: 0;
  }
  .navbar__menu__item__link:first-child {
    margin: 22px 0 0 0;
  }
}

.navbar__menu__item__link:hover {
  opacity: .8;
}

.navbar__menu__item--produtos:hover .navbar__menu__item__link svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navbar__menu__item--produtos:hover .navbar__menu__item__hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.navbar__menu__item svg {
  margin: 0 0 0 8px;
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
}

@media screen and (max-width: 960px) {
  .navbar__menu__item svg {
    display: none;
  }
}

.navbar__menu__item__hover {
  opacity: 0;
  visibility: hidden;
  width: 195px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 120%);
          transform: translate(-50%, 120%);
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  background: #FFFFFF;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 960px) {
  .navbar__menu__item__hover {
    position: relative;
    -webkit-transform: unset;
            transform: unset;
    left: unset;
    bottom: unset;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    width: 100%;
    margin: 20px 0 0 0;
  }
}

.navbar__menu__item__hover a {
  color: #043D69;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 400 13px/1 "Montserrat", sans-serif;
  text-align: center;
  -webkit-transition: 200ms ease-in;
  transition: 200ms ease-in;
  padding: 8px 0;
}

@media screen and (max-width: 960px) {
  .navbar__menu__item__hover a {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 16px;
    padding: 12px 20px;
    border-left: 1px solid #e9e9e9;
  }
}

.navbar__menu__item__hover a:first-child {
  border-radius: 5px 5px 0 0;
  padding-top: 12px;
}

@media screen and (max-width: 960px) {
  .navbar__menu__item__hover a:first-child {
    border-radius: 0;
  }
}

.navbar__menu__item__hover a:hover {
  background: #0F6CB4;
  color: #FFFFFF;
}

.navbar__menu__item__hover a.destaque {
  background: -webkit-gradient(linear, left top, right top, from(#568eca), to(#0f6cb4));
  background: linear-gradient(90deg, #568eca 0%, #0f6cb4 100%);
  color: #FFFFFF;
  padding: 9px 0 11px 0;
  border-radius: 0 0 5px 5px;
}

@media screen and (max-width: 960px) {
  .navbar__menu__item__hover a.destaque {
    padding: 13px 20px 13px 20px;
    border-radius: 5px;
    margin: 20px 0 0 0;
  }
}

.navbar__menu__item__hover a.destaque:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.navbar__menu__item__hover a.destaque::after {
  content: url("../assets/general/arrow-destaque.svg");
  opacity: .56;
  margin: 0 0 0 10px;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar__menu__item__dir {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 960px) {
  .navbar__menu__item__dir {
    margin: 20px 0 32px 0;
  }
}

.navbar__menu__botao {
  margin: 0 8px 0 56px;
}

@media screen and (max-width: 960px) {
  .navbar__menu__botao {
    margin: 0 16px 0 0;
  }
}

.navbar__menu__botao a {
  padding: 8px 18px 11px 18px;
  font: 500 14px/1 "Montserrat", sans-serif;
  border-radius: 5px;
  background: rgba(190, 216, 243, 0.5);
  color: #043D69;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

@media screen and (max-width: 960px) {
  .navbar__menu__botao a {
    font-size: 17px;
  }
}

.navbar__menu__botao a:hover {
  background: rgba(190, 216, 243, 0.8);
}

.navbar__menu__carrinho {
  margin: 4px 0 0 0;
}

.navbar__menu__carrinho a {
  position: relative;
  display: block;
}

.navbar__menu__carrinho a span {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #043D69;
  color: #FFFFFF;
  border-radius: 3px;
  font: 500 13px/1 "Montserrat", sans-serif;
  position: absolute;
  bottom: 3px;
  right: 0;
  -webkit-transform: translateX(calc(100% - 9px));
          transform: translateX(calc(100% - 9px));
}

.navbar__icon {
  display: none;
}

@media screen and (max-width: 960px) {
  .navbar__icon {
    display: block;
  }
}

.navbar__icon__bar {
  display: block;
  width: 32px;
  height: 3px;
  background: #0F6CB4;
  border-radius: 1000px;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.navbar__icon__bar:nth-child(2) {
  width: 24px;
  margin: 5px 0 5px auto;
}

.navbar__icon__bar:nth-child(3) {
  width: 16px;
  margin: 0 0 0 auto;
}

@media screen and (min-width: 960px) {
  .navbar--white {
    background: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    top: 24px;
    position: absolute;
  }
  .navbar--white .navbar__logo--positivo {
    display: none;
  }
  .navbar--white .navbar__logo--white {
    display: block;
  }
  .navbar--white .navbar__menu__item__link {
    color: #FFFFFF;
  }
  .navbar--white .navbar__menu__item__link svg * {
    fill: #FFFFFF;
  }
  .navbar--white .navbar__menu__botao a {
    color: #043D69;
    background: rgba(190, 216, 243, 0.72);
  }
  .navbar--white .navbar__menu__botao a:hover {
    background: rgba(190, 216, 243, 0.88);
  }
  .navbar--white .navbar__menu__carrinho a svg * {
    fill: #FFFFFF;
  }
  .navbar--white .navbar__menu__carrinho a span {
    background: #FFFFFF;
    color: #042036;
  }
}

.video-modal {
  z-index: 999999999999;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: 400ms ease;
  transition: 400ms ease;
  opacity: 0;
  visibility: hidden;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal .container {
  position: relative;
  max-width: 800px;
}

.video-modal .container button {
  position: absolute;
  top: -24px;
  right: -24px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 32px;
  z-index: 9;
}

@media screen and (max-width: 460px) {
  .video-modal .container button {
    width: 24px;
    top: -24px;
    right: 24px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.video-modal .container button img {
  width: 100%;
}

.video-modal .container video {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 100%;
}

.banner-page {
  height: 290px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 460px) {
  .banner-page {
    height: auto;
  }
}

.banner-page::before, .banner-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-page::before {
  mix-blend-mode: multiply;
  background: rgba(15, 108, 180, 0.4);
}

.banner-page::after {
  background: linear-gradient(64deg, #0f6cb4 0%, #106db4 5%, rgba(190, 216, 243, 0) 100%);
}

.banner-page .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex;
      -ms-flex-pack: flex;
          justify-content: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 5;
  padding-bottom: 28px;
}

@media screen and (max-width: 460px) {
  .banner-page .container {
    padding-top: 64px;
  }
}

.banner-page .container h3 {
  margin: 0 0 24px 0;
  color: #FFFFFF;
  font: 500 20px/1 "Montserrat", sans-serif;
}

@media screen and (max-width: 460px) {
  .banner-page .container h3 {
    font-size: 16px;
    margin: 0 0 16px 0;
  }
}

.banner-page .container h1 {
  color: #FFFFFF;
  font: 700 30px/1.4 "Montserrat", sans-serif;
  margin: 0 0 56px 0;
}

@media screen and (max-width: 460px) {
  .banner-page .container h1 {
    font-size: 26px;
  }
}

.banner-page .container a {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.clientes {
  padding: 144px 0;
}

@media screen and (max-width: 460px) {
  .clientes {
    padding: 88px 0;
  }
}

.clientes header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 72px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 460px) {
  .clientes header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 460px) {
  .clientes header .itens-carousel {
    margin: 32px 0 0 0;
    width: 100%;
  }
}

.clientes .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clientes .swiper-slide img {
  max-width: 105px;
}

.itens-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.itens-carousel .pagination {
  margin: 0 88px 0 0;
}

.itens-carousel .pagination span {
  width: 20px;
  height: 5px;
  background: #BED8F3;
  border-radius: 1000px;
  opacity: 1;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  margin: 0 0 0 10px;
}

.itens-carousel .pagination span.swiper-pagination-bullet-active {
  background: #568ECA;
  width: 36px;
}

.itens-carousel .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.itens-carousel .controls button {
  width: 10px;
}

.itens-carousel .controls button img {
  width: 100%;
}

.itens-carousel .controls .prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 48px 0 0;
}

.banner-utils {
  height: 280px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 460px) {
  .banner-utils {
    height: auto;
  }
}

.banner-utils::before, .banner-utils::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-utils::before {
  background: #949EA8;
  mix-blend-mode: color;
}

.banner-utils::after {
  background: rgba(190, 216, 243, 0.8);
}

.banner-utils .container {
  padding-top: 48px;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 460px) {
  .banner-utils .container {
    padding-top: 64px;
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.banner-utils__text {
  max-width: 440px;
  width: 100%;
}

@media screen and (max-width: 460px) {
  .banner-utils__text {
    margin: 0 0 32px 0;
  }
}

.banner-utils__text header {
  margin: 0 0 64px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.banner-utils__text header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #043D69;
  font: 500 13px/1 "Montserrat", sans-serif;
}

.banner-utils__text header a:not(:last-child)::after {
  content: ">";
  display: block;
  margin: 0 10px;
}

.banner-utils__text h1 {
  color: #042036;
  font: 700 32px/1 "Montserrat", sans-serif;
}

@media screen and (max-width: 460px) {
  .banner-utils__text h1 {
    font-size: 26px;
  }
}

.banner-utils__dir {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 460px) {
  .banner-utils__dir {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.banner-utils__dir label {
  color: #043D69;
  font: 600 14px/1 "Montserrat", sans-serif;
  display: block;
  margin: 0 16px 0 0;
}

@media screen and (max-width: 460px) {
  .banner-utils__dir label {
    margin: 0 0 16px 0;
  }
}

.banner-utils__dir .select {
  width: 280px;
}

.select {
  position: relative;
}

.select::after {
  content: url("../assets/icons/arrow-select.svg");
  position: absolute;
  bottom: 13px;
  right: 20px;
}

.select select {
  font: 500 14px/1 "Montserrat", sans-serif;
  background: #FFFFFF;
  border: 1px solid #949EA850;
  color: #042036;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  display: block;
  width: 100%;
  border-radius: 7px;
  padding: 14px 24px;
}

.destaque-personalizado {
  margin: 144px 0 160px 0;
}

@media screen and (max-width: 460px) {
  .destaque-personalizado {
    margin: 128px 0;
  }
}

.destaque-personalizado__box {
  background: linear-gradient(45deg, #0f6cb4 0%, #043d69 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 6px;
  padding: 30px 56px 30px 80px;
  position: relative;
}

.destaque-personalizado__box::before {
  content: url("../assets/home/circle-top-conheca.svg");
  position: absolute;
  top: -32px;
  left: 8px;
  z-index: 1;
}

@media screen and (max-width: 460px) {
  .destaque-personalizado__box::before {
    top: -56px;
    left: 24px;
  }
}

.destaque-personalizado__box::after {
  content: url("../assets/icons/points-destaque.svg");
  position: absolute;
  bottom: -16px;
  right: 16px;
  z-index: 1;
}

@media screen and (max-width: 460px) {
  .destaque-personalizado__box {
    padding: 32px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.destaque-personalizado__box h4 {
  position: relative;
  z-index: 5;
  color: #FFFFFF;
  font: 700 22px/1.4 "Montserrat", sans-serif;
}

@media screen and (max-width: 460px) {
  .destaque-personalizado__box h4 {
    font-size: 20px;
    margin: 0 0 24px 0;
  }
}

.destaque-personalizado__box a {
  position: relative;
  z-index: 5;
  background: #BED8F3;
  color: #042036;
}

.destaque-personalizado__box a::after {
  content: url("../assets/icons/arrow-dark-blue.svg");
}

.input-number {
  color: #0F6CB4;
  font: 500 20px/1 "Montserrat", sans-serif;
  border: 2px solid #BED8F3;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
}

.form {
  padding: 88px 0 144px 0;
}

@media screen and (max-width: 460px) {
  .form {
    padding: 80px 0;
  }
}

.form h2 {
  color: #042036;
  font: 500 20px/1.4 "Montserrat", sans-serif;
}

@media screen and (max-width: 460px) {
  .form h2 {
    font-size: 18px;
  }
}

.form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 64px 0 40px 0;
}

.form form div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px 48px;
}

@media screen and (max-width: 460px) {
  .form form div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form form div aside {
  width: 100%;
}

.form form div aside fieldset:not(:last-child) {
  margin: 0 0 28px 0;
}

.form form label {
  display: block;
  color: #043D69;
  font: 600 14px/1 "Montserrat", sans-serif;
  margin: 0 0 12px 0;
}

.form form input,
.form form textarea {
  font: 500 14px/1.4 "Montserrat", sans-serif;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  color: #042036;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  display: block;
  width: 100%;
  border-radius: 7px;
  padding: 14px 24px;
  resize: none;
}

.form form input::-webkit-input-placeholder,
.form form textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #949EA8;
}

.form form input:-ms-input-placeholder,
.form form textarea:-ms-input-placeholder {
  opacity: 1;
  color: #949EA8;
}

.form form input::-ms-input-placeholder,
.form form textarea::-ms-input-placeholder {
  opacity: 1;
  color: #949EA8;
}

.form form input::placeholder,
.form form textarea::placeholder {
  opacity: 1;
  color: #949EA8;
}

.form form .textarea {
  height: calc(100% - 14px - 12px);
}

.form form .textarea.projeto {
  height: calc(100% - 14px - 12px - 14px - 12px - 49px - 32px);
}

@media screen and (max-width: 460px) {
  .form form .textarea.projeto {
    height: 144px;
  }
  .form form .textarea.projeto textarea {
    height: calc(100% - 14px - 12px);
  }
}

@media screen and (max-width: 460px) {
  .form form .textarea {
    height: 144px;
  }
}

.form form .textarea textarea {
  height: 100%;
}

.form form .btn {
  margin: 48px 0 0 0;
}

.form form .select select {
  border: 1px solid #C4C4C4;
}

.form form .select::after {
  content: url("../assets/icons/select-blue.svg");
}

.form form .documento {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: #BED8F3;
  border-radius: 8px;
  padding: 6px 7px 6px 22px;
  cursor: pointer;
  margin: 28px 0 -16px 0;
}

.form form .documento::after {
  content: url("../assets/icons/download.svg");
  margin: 0 0 0 32px;
}

.form form .documento input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.form form .documento span {
  text-align: center;
  display: block;
  color: #70777E;
  font: 500 13px/1 "Montserrat", sans-serif;
}

.form h4 {
  color: #568ECA;
  font: 500 18px/1.3 "Montserrat", sans-serif;
  text-align: center;
}

@media screen and (max-width: 460px) {
  .form h4 {
    font-size: 16px;
  }
}

.contato .banner-page {
  background-image: url("../assets/contato/banner.png");
}

.footer {
  background-color: #1d353d;
  padding: 72px 0 0 0;
}


.footer a {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

.footer a:hover {
  opacity: .7;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 460px) {
  .footer__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 460px) {
  .footer__top__logo {
    width: 100%;
    display: block;
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 460px) {
  .footer__top__col {
    width: 49%;
    margin: 0 0 40px 0;
  }
  .footer__top__col.full {
    width: 100%;
    margin: 0;
  }
}

.footer__top__col h3 {
  font: 600 18px/1.2 "Montserrat", sans-serif;
  margin: 0 0 32px 0;
  color: #042036;
}

@media screen and (max-width: 460px) {
  .footer__top__col h3 {
    font-size: 16px;
    margin: 0 0 24px 0;
  }
}

.footer__top__col ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__top__col ul li:not(:last-child) {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 460px) {
  .footer__top__col ul li:not(:last-child) {
    margin: 0 0 16px 0;
  }
}

.footer__top__col ul li a,
.footer__top__col ul li span {
  font: 300 15px/1 "Montserrat", sans-serif;
}

@media screen and (max-width: 460px) {
  .footer__top__col ul li a,
  .footer__top__col ul li span {
    font-size: 14px;
  }
}

.footer__top__col ul li img {
  margin: 0 14px 0 0;
  min-width: 14px;
}

.footer__top__col footer {
  margin: 32px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__top__col footer a {
  display: block;
  margin: 0 20px 0 0;
}

.footer__bottom {
  padding: 80px 0 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 460px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 48px;
  }
}

.footer__bottom h6 {
  color: #949EA8;
  font: 300 14px/1.5 "Montserrat", sans-serif;
}

.footer__bottom aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 460px) {
  .footer__bottom aside {
    margin: 24px 0 0 0;
  }
}

.footer__bottom aside a {
  width: 27px;
  display: block;
  margin: 0 0 0 24px;
}

.footer__bottom aside a img {
  width: 100%;
}
/*# sourceMappingURL=main.css.map */




.logo img {     
  height: 70px;
  text-align: center;
  display: inline-block;
  max-width: 436px;
}

.showMobile { display: none !important;}

@media screen and (max-width: 460px) {
  .showDesktop { display: none !important;}
  .showMobile { display: block !important;}
}

.row { width:100% ;}