@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  font-size: 16px;
  /* font-family: "Roboto", sans-serif; */
}
:root {
  --color1: #003352 !important;
  --color2: #47ceff !important;
  --color3: #161616 !important;
  --default-font: "Isotonic", Arial, sans-serif;
  --body-font: "Open Sans", Arial, sans-serif;

  /* White ========================================= */
  --white-005: rgba(255, 255, 255, 0.05);
  --white-01: rgba(255, 255, 255, 0.1);
  --white-02: rgba(255, 255, 255, 0.2);
  --white-03: rgba(255, 255, 255, 0.3);
  --white-04: rgba(255, 255, 255, 0.4);
  --white-05: rgba(255, 255, 255, 0.5);
  --white-06: rgba(255, 255, 255, 0.6);
  --white-07: rgba(255, 255, 255, 0.7);
  --white-08: rgba(255, 255, 255, 0.8);
  --white-09: rgba(255, 255, 255, 0.9);
  --white: #ffffff;

  /* Black ======================================== */
  --black-005: rgba(0, 0, 0, 0.05);
  --black-01: rgba(0, 0, 0, 0.1);
  --black-02: rgba(0, 0, 0, 0.2);
  --black-03: rgba(0, 0, 0, 0.3);
  --black-04: rgba(0, 0, 0, 0.4);
  --black-05: rgba(0, 0, 0, 0.5);
  --black-06: rgba(0, 0, 0, 0.6);
  --black-07: rgba(0, 0, 0, 0.7);
  --black-08: rgba(0, 0, 0, 0.8);
  --black-09: rgba(0, 0, 0, 0.9);
  --black: #0c0c0c !important;
}

/* White ========================================== */
.white-005 {
  color: var(--white-005);
}
.white-01 {
  color: var(--white-01);
}
.white-02 {
  color: var(--white-02);
}
.white-03 {
  color: var(--white-03);
}
.white-04 {
  color: var(--white-04);
}
.white-05 {
  color: var(--white-05);
}
.white-06 {
  color: var(--white-06);
}
.white-07 {
  color: var(--white-07);
}
.white-08 {
  color: var(--white-08);
}
.white-09 {
  color: var(--white-09);
}
.white {
  color: var(--white);
}

/* Black ========================================== */
.black-005 {
  color: var(--black-005);
}
.black-01 {
  color: var(--black-01);
}
.black-02 {
  color: var(--black-02);
}
.black-03 {
  color: var(--black-03);
}
.black-04 {
  color: var(--black-04);
}
.black-05 {
  color: var(--black-05);
}
.black-06 {
  color: var(--black-06);
}
.black-07 {
  color: var(--black-07);
}
.black-08 {
  color: var(--black-08);
}
.black-09 {
  color: var(--black-09);
}
.black {
  color: var(--black);
}
.color1 {
  color: var(--color1) !important;
}
.color2 {
  color: var(--color2) !important;
}

/* Fonts 4pt / 8pt ================================== */
/* Rem = Tamanho da font / 16 */

.font_4 {
  font-size: 0.25rem !important;
  line-height: calc(0.25rem * 1.5);
}
.font_8 {
  font-size: 0.5rem !important;
  line-height: calc(0.5rem * 1.5);
}
.font_12 {
  font-size: 0.75rem !important;
  line-height: calc(0.75rem * 1.5);
}
.font_14 {
  font-size: 0.875rem !important;
  line-height: calc(0.875rem * 1.5);
}
.font_16 {
  font-size: 1rem !important;
  line-height: normal;
}
.font_18 {
  font-size: 1.125rem !important;
  line-height: calc(1.125rem * 1.5);
}
.font_20 {
  font-size: 1.25rem !important;
  line-height: calc(1.25rem * 1.5);
}
.font_24 {
  font-size: 1.5rem !important;
  line-height: calc(1.5rem * 1.5);
}
.font_28 {
  font-size: 1.75rem !important;
  line-height: calc(1.75rem * 1.5);
}
.font_32 {
  font-size: 2rem !important;
  line-height: calc(2rem * 1.5);
}
.font_36 {
  font-size: 2.2rem !important;
  line-height: calc(2.2rem * 1.5);
}
.font_40 {
  font-size: 2.5rem !important;
  line-height: calc(2.5rem * 1.5);
}
.font_44 {
  font-size: 2.75rem !important;
  line-height: calc(2.75rem * 1.5);
}
.font_48 {
  font-size: 3rem !important;
  line-height: calc(3rem * 1.5);
}

/* Font =========================================== */

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-Bd.woff2") format("woff2"),
    url("../fonts/Isotonic-Bd.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-BdIt.woff2") format("woff2"),
    url("../fonts/Isotonic-BdIt.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-LtIt.woff2") format("woff2"),
    url("../fonts/Isotonic-LtIt.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-Md.woff2") format("woff2"),
    url("../fonts/Isotonic-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-Rg.woff2") format("woff2"),
    url("../fonts/Isotonic-Rg.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-Lt.woff2") format("woff2"),
    url("../fonts/Isotonic-Lt.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-SmBdIt.woff2") format("woff2"),
    url("../fonts/Isotonic-SmBdIt.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-MdIt.woff2") format("woff2"),
    url("../fonts/Isotonic-MdIt.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-RgIt.woff2") format("woff2"),
    url("../fonts/Isotonic-RgIt.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Isotonic";
  src: url("../fonts/Isotonic-SmBd.woff2") format("woff2"),
    url("../fonts/Isotonic-SmBd.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

/* Buttons ======================================== */
.btn-default {
  border-radius: 8px;
  padding: 18px 36px 18px 22px;
  text-transform: none;
}
.btn-default::before {
  content: "";
  position: absolute;
  top: 53%;
  width: 10px;
  height: 24px;
  background-image: url(../images/arrow-right.svg);
}
.btn-default::after {
  transform: skew(0deg);
}
.btn-default:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

/* Default ========================================= */

.color1 {
  color: var(--color1);
}
.color2 {
  color: var(--color2);
}
.color3 {
  color: var(--color3);
}
.color4 {
  color: var(--color4);
}
.color5 {
  color: var(--color5);
}
.bgcolor1 {
  background: var(--color1);
}
.bgcolor2 {
  background: var(--color2);
}
.bgcolor3 {
  background: var(--color3);
}
.bgcolor4 {
  background: var(--color4);
}
.bgcolor5 {
  background: var(--color5);
}
.bgcolor6 {
  background: var(--color6);
  opacity: 0.4;
}
.home {
  height: 600px;
}
#loading-icon {
  top: 10% !important;
  left: 25% !important;
  width: 60px !important;
  animation: pulse 0.7s infinite ease-in-out !important;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}
.loading {
  border: 2px solid transparent;
}
a.navbar-brand {
  min-width: 150px;
}
.main-menu ul li a > i {
  margin-top: 6px;
  width: 22px;
}
.main-menu ul ul {
  border-radius: 8px;
}
.main-menu ul li:hover > ul {
  padding: 10px 0;
}
.main-menu ul li a {
  text-transform: none;
}
i.brasil {
  width: 30px;
  height: 14px;
  margin-right: 5px;
  background: url(../images/icons/brasil.svg) no-repeat center;
  display: inline-block;
}
i.espanha {
  width: 30px;
  height: 14px;
  margin-right: 5px;
  background: url(../images/icons/espanha.svg) no-repeat center;
  display: inline-block;
}
i.usa {
  width: 30px;
  height: 14px;
  margin-right: 5px;
  background: url(../images/icons/usa.svg) no-repeat center;
  display: inline-block;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  text-transform: none;
  padding: 12px 20px;
}
.slicknav_menu {
  border-radius: 0 0 16px 16px;
}
.slicknav_menu ul {
  margin: 5px 0 10px 0;
}
.slicknav_btn {
  border-radius: 4px;
}
.slicknav_menu ul ul {
  background: #2fc5fb;
  border-radius: 8px;
  margin: 0 10px;
  padding: 5px 0;
}
.slicknav_menu ul ul li a {
  padding: 8px 16px 8px 16px;
}
.slicknav_open > a .slicknav_arrow:after {
  color: var(--black);
}
.footer-logo img {
  max-width: 270px;
}
.footer-box {
  background: var(--color2);
}
.logo-position img {
  max-width: 90px;
}
.position-relative {
  position: relative;
}
.logo-position {
  position: relative;
  overflow: visible;
  top: 40px;
  left: 46%;
  z-index: 2;
}
.footer-links h3,
.footer-contact h3,
.about-footer-content h3 {
  color: var(--bg-color);
  font-size: 20px;
  margin-bottom: 20px;
}
.footer-contact-details .footer-info-box {
  margin-bottom: 10px;
}
.footer-links ul li {
  text-transform: none;
}
.footer-copyright-text p a {
  font-weight: 700;
  color: #161616;
}
.footer-copyright-text p a:hover {
  text-decoration: underline;
}
.page-header-box h1 {
  font-size: 54px;
}
.breadcrumb-item.active {
  color: #a0a0a0;
  opacity: 0.5;
}
.error-page {
  position: relative;
  padding: 120px 0;
}
.page-header-box ol li.breadcrumb-item {
  text-transform: none;
}
.faq-catagery-list ul li a {
  text-transform: none;
  line-height: 1.5;
}
.bg-section {
  border-radius: 20px;
}
.faq-catagery-list {
  border-radius: 20px;
}
.faq-catagery-list ul li a::before {
  background-image: none;
}
.faq-catagery-list ul li {
  opacity: 0.8;
}
.pricing-list-2 {
  margin: 35px 0;
}
.pricing-list-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-list-2 ul li {
  position: relative;
  color: rgba(160, 160, 160);
  margin-bottom: 15px;
  padding-left: 20px;
}
.pricing-list-2 ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 3px;
  left: 0;
  background: var(--color2);
  width: 10px;
  height: 10px;
  border-radius: 50px;
}
.faq-catagery-list {
  border-radius: 20px;
  padding: 30px 28px 32px 28px;
}
.padding-btn {
  padding-bottom: 50px;
}
.faq-sidebar {
  top: 40px;
}
.help-block.with-errors ul li {
  margin-top: 10px;
}
.contact-us-form {
  border-radius: 20px;
}
.contact-form .form-label {
  text-transform: none;
  margin-bottom: 12px;
}
.termos {
  font-size: 12px;
  line-height: 1.5;
}
.termos a {
  color: rgba(160, 160, 160);
  font-weight: 600;
}
.termos a:hover {
  text-decoration: underline;
}
.google-map-iframe,
.google-map-iframe iframe {
  border-radius: 20px;
}
.contact-us-content {
  margin-right: 0;
  padding: 0 30px 60px 0;
}
.google-map-iframe iframe {
  filter: grayscale(100%);
  transition: 0.5s;
}
.google-map-iframe iframe:hover {
  filter: none;
}
.contact-form .form-control:focus {
  border-color: var(--color2);
}
.contact-info-item .icon-box {
  border-radius: 10px;
  height: 50px;
  width: 50px;
}
.contact-info-item .icon-box::before {
  border-radius: 10px;
}
.contact-info-item {
  align-items: center;
}
.contact-info-content h3 {
  text-transform: none;
  margin-bottom: 1px;
}
.contact-info-content {
  width: calc(100% - 70px);
}
.icon-box i {
  color: var(--color3);
  font-size: 18px;
}
.contact-info-item .icon-box::before {
  z-index: -1;
}
.post-item {
  border-radius: 20px;
}
.post-featured-image a {
  cursor: pointer;
}
ul.pagination li a i {
  font-size: 11px;
}
.readmore-btn {
  text-transform: none;
  padding-right: 30px;
}
.readmore-btn:after {
  background: url(../images/arrow-accent-2.svg) no-repeat;
}
.post-item-meta ul li {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(160, 160, 160, 0.6);
}
.sidebar-cta-box {
  border-radius: 20px;
}
.sidebar-cta-box .icon-box img {
  width: 60px;
}
.image-anime:after {
  background-color: rgb(71, 206, 255, 0.3);
}
.post-item-content h2 {
  font-size: 18px;
  font-weight: 500;
}
.post-social-sharing {
  text-align: right;
}
.post-image img,
.post-image figure {
  border-radius: 20px;
}
.post-entry h2 {
  font-size: 54px;
  padding-top: 20px;
}
.compartilhe {
  font-family: "Isotonic", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--white);
}
.post-image {
  margin-bottom: 50px;
}
.post-entry a {
  color: var(--color3);
}
.service-catagery-list {
  border-radius: 20px;
}
.service-catagery-list ul li a::before {
  background: url(../images/arrow-accent-2.svg) no-repeat;
}
.service-catagery-list h3 {
  text-transform: none;
}
.service-feature-image img {
  border-radius: 20px;
}
.service-feature-image figure {
  border-radius: 20px;
}
.service-catagery-list ul li a {
  text-transform: none;
}
.design-process-item {
  width: calc(48.8% - 13.33px);
  background: #1c1c1c;
  border-color: transparent;
  z-index: 2;
}
.design-process-item-content h3 {
  text-transform: none;
}
.design-process-item .icon-box {
  background: rgb(200, 200, 200);
  z-index: -2;
}
.design-process-item .icon-box::before {
  z-index: -1;
  background: var(--color2);
  transition: all 0.1s ease-in-out;
}
.design-process-item:hover {
  border-color: var(--color2);
  transform: translateY(-3px);
}
.design-process-item:hover h3 {
  color: var(--color2);
}
.cta-contact-content p {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}
.sidebar-cta-box .icon-box {
  display: none;
}
.about-us-img figure {
  border-radius: 20px;
}
.section-title h3::before {
  content: none;
  background: url(../images/icons/simbolo.svg);
  background-repeat: no-repeat;
  background-size: auto;
  max-width: 22px;
  height: 22px;
}
.section-title h3 {
  padding-left: 0px;
  margin-bottom: 10px;
}
h2.sobre-nos {
  font-size: 54px;
}
p.sobre-nos {
  max-width: 90%;
}
.about-us-img img {
  aspect-ratio: 1;
  border-radius: 20px;
}
.about-us-info-list ul li:before {
  content: "";
  background: url(../images/icons/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  width: 16px;
  height: 16px;
}
.about-us-img > .image-anime::after {
  display: none;
}
.achievements-item h3::before {
  /* position: absolute; */
  background: url(../images/icons/icon-arrow-right.svg);
  /* background-repeat: no-repeat; */
  /* background-position: center center; */
  /* background-color: #202020; */
  /* background-size: 16px auto; */
  /* width: 32px; */
  /* height: 32px; */
  /* border-radius: 20%; */
  width: 16px;
  height: 16px;
}
.cta-box {
  flex-wrap: nowrap;
}
.cta-counter-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px 0;
}
.cta-box-content {
  margin-bottom: 0px;
}
.bg-section {
  width: calc(100% - 30px);
  margin: 0 auto;
}
.about-us-info-list {
  margin-bottom: 0px;
}
.achievements-item h3 {
  text-transform: none;
  font-size: 24px;
  margin-bottom: 15px;
  padding-left: 30px;
}
.achievements-item a {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  color: var(--color2);
  border-bottom: 2px solid transparent;
  overflow: hidden;
  transition: 0.3s;
  line-height: 1.5;
}
.achievements-item a:hover {
  font-weight: 600;
}

.achievements-item p {
  padding-left: 30px;
}
.achievements-item a {
  padding-left: 28px;
}
.solucoes {
  margin-bottom: 0px !important;
}
.about-us-info-list ul li {
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 22px;
}
.cta-box-content p {
  font-size: 18px;
}
.team-single-image figure {
  border-radius: 20px;
}
.team-single-image img {
  object-fit: cover;
  border-radius: 20px;
}
.footer-links ul li {
  text-transform: none;
  margin-bottom: 15px;
}

.work-faq-accordion .work-accordion-item .accordion-button::after,
.work-faq-accordion .work-accordion-item .accordion-button.collapsed::after {
  background-image: url(../images/icons/icon-arrow-right.svg);
  border-radius: 20%;
  background-size: 16px auto;
  transform: translateY(-50%) rotate(135deg);
  width: 32px;
  height: 32px;
}
.work-faq-accordion .work-accordion-item .accordion-button::after {
  transform: translateY(-50%) rotate(0deg);
}
.work-faq-accordion .accordion-header .accordion-button {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4em;
  color: var(--primary-color);
  padding-right: 55px;
  transition: all 0.3s ease-in-out;
}
img.simbolo-sobre {
  width: 70%;
  height: auto;
}
.simbolo-sobre {
  transform-box: fill-box;
  transform-origin: center;
  animation: kgs-pulse 1.8s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes kgs-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.88;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.team-contact-form {
  border-radius: 20px;
}
.parceiros {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}
.parceiros:nth-last-of-type {
  margin-bottom: 0px;
}
.parceiros img {
  width: 400px;
  border-radius: 10px;
  background: var(--color2);
}
.tecnologia {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.img-tecnologia img {
  border-radius: 20px;
  max-height: 80%;
}
.our-services-nav ul li .nav-link {
  border-radius: 20px;
}
.our-services-nav ul li .nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 24px;
  /* transform: translateY(-50%) rotate(-45deg); */
  transform: translateY(-50%) rotate(135deg);
  width: 32px;
  height: 32px;
  border-radius: 20%;
  background-color: var(--secondary-color);
  background-image: url(../images/icons/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  transition: all 0.4s ease-in-out;
}
.service-box-image figure {
  border-radius: 20px;
}
.service-box-image img {
  border-radius: 20px;
  aspect-ratio: 1 / 1;
}
.service-box-item::before {
  background: #05021a;
  /* background: #03427b; */
  opacity: 50%;
}
.service-box-item {
  border-radius: 20px;
}
.our-services-nav ul li .nav-link {
  text-transform: none;
  font-weight: 600 !important;
  letter-spacing: -0.5px;
}
.service-box-item-content h3 {
  text-transform: none;
}
.section-title h3 {
  text-transform: none;
  font-family: "Open Sans", sans-serif;
}
.hero.hero-slider-layout .hero-slide {
  position: relative;
  background: url(../images/banners/banner-home.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 256px 0 150px;
}
.hero.hero-slider-layout .hero-slide::before {
  background: linear-gradient(
    225deg,
    rgba(0, 0, 0, 0.4) -7.15%,
    #161616 100.25%
  );
}
.testimonial-item {
  border-radius: 20px;
}
.testimonial-header {
  margin-bottom: 20px;
}
.testimonial-rating i {
  font-size: 12px;
}
.author-content p {
  text-transform: none;
  margin: 0;
}
.post-featured-image .image-anime img {
  filter: grayscale(100%);
}
.service-catagery-list {
  margin-bottom: 50px;
}
.post-featured-image .image-anime:hover img {
  filter: grayscale(0%);
}
.service-catagery-list li a.active {
  color: var(--white);
  font-weight: 600;
}
.logo-container {
  position: relative;
  /* width: 200px; */
  /* height: 200px; */
  bottom: -35px;
  left: 100px;
}

/* .logo-center {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 90px;
  height: 65px;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: pulsar 2s ease-in-out infinite;
} */
.logo-center {
  position: absolute;
  top: 1px;
  left: 49.5%;
  width: 47px;
  height: 65px;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: pulsar 2s ease-in-out infinite;
}

.logo-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: girar 20s linear infinite;
}

@keyframes girar {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes pulsar {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.seta {
  position: relative;
}
.seta-position {
  position: absolute;
  top: 150px;
  right: 50px;
  width: 120px;
  height: auto;
  z-index: 2;
}
.hero {
  position: relative;
  padding: 250px 0 170px;
  margin-top: -106px;
}
.hero::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) -7.15%,
    var(--color4) 100.25%
  );
}
.hero-bg-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #003352;
  mix-blend-mode: color;
  opacity: 1;
}
.modal {
  --bs-modal-width: 800px;
}
.modal img {
  border-radius: 30px;
}
a.pni {
  background: var(--color5) !important;
  color: var(--white) !important;
}
a.pni:hover {
  color: var(--black) !important;
}
a.pni::before {
  content: "";
  position: absolute;
  top: 53%;
  width: 10px;
  height: 24px;
  background-image: url(../images/arrow-right-white.svg);
}
a.pni:hover::before {
  transform: translate(-17px, -50%);
  filter: invert(1);
}
.page-testimonial .testimonial-item {
  background: var(--color4);
  /* height: auto !important; */
  margin-bottom: 30px;
}
/* .swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  justify-content: center;
} */
.author-content h3 {
  text-transform: none;
}
.cta-box {
  align-items: center;
}
.header-social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-social-links li {
  display: inline-flex;
}
.main-menu .header-social-links ul li a {
  padding: 0px !important;
  margin-left: 10px;
}
.main-menu .header-social-links ul li:first-of-type {
  margin-left: 20px;
}
/* Responsive ===================================== */
/* max-width */
@media (max-width: 1198px) {
}
@media (max-width: 992px) {
  .seta-position {
    width: 70px;
    top: 120px;
    right: 15px;
  }
  .hero {
    margin-top: -95px;
  }
  .page-header {
    padding: 30px 0 30px 10px;
    margin: 10px;
  }
  .bg-section {
    width: calc(100% - 20px);
  }
  .design-process-item {
    width: 48%;
    gap: 25px;
  }
  .footer-title {
    padding: 30px 0 15px 0;
  }
  .logo-position {
    left: 46%;
  }
  .compartilhe {
    margin-bottom: 20px;
  }
  .post-social-sharing ul {
    text-align: center;
  }
  img.simbolo-sobre {
    width: 25%;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .section-title h1.text-anime-style-2 {
    line-height: 1em;
    font-size: 60px;
  }
  .footer-title {
    padding: 50px 0 15px 0;
  }
  .footer-contact-details .footer-info-box {
    justify-content: center;
  }
  .footer-contact {
    margin-bottom: 30px;
  }
  .footer-links h3,
  .footer-contact h3 {
    font-size: 20px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .post-social-sharing {
    text-align: center;
  }
  .post-entry h2 {
    font-size: 34px;
  }
  .achievements-item h3 {
    font-size: 18px;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .parceiros {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
  }
  .parceiros img {
    width: 250px;
    margin: 0 auto;
  }
  .cta-box {
    flex-wrap: wrap;
  }
  .img-parceiros {
    background-color: var(--white);
    width: 100%;
    border-radius: 8px;
    text-align: center;
  }
  .img-tecnologia img {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .header-social-links li a:first-of-type {
    padding-left: 20px;
  }
  .header-social-links li a {
    padding: 0px;
  }
  .main-menu .header-social-links ul li a {
    padding: 0px !important;
    margin-left: 5px;
  }
  .main-menu .header-social-links ul li:first-of-type {
    margin-left: 5px;
  }
  .our-services-nav ul li .nav-link {
    border-radius: 15px;
  }
  .our-services-nav ul li .nav-link {
    padding: 15px 40px 15px 15px;
  }
  .our-services-nav ul li .nav-link::before {
    right: 20px;
    width: 24px;
    height: 24px;
    background-size: 12px auto;
  }
  .hero {
    padding: 200px 0 100px;
  }
  .hero.hero-slider-layout .hero-slide {
    padding: 200px 0 100px;
  }
  .cta-box-content p {
    font-size: 16px;
  }
  .design-process-item {
    width: 100%;
  }
  .lg-w-65 {
    width: 90%;
  }
  .logo-position img {
    max-width: 50px;
  }
  .logo-position {
    left: 42%;
  }
  .padding-btn {
    padding-bottom: 40px;
  }
  .page-header-box h1 {
    font-size: 34px;
  }
  .contact-us-content {
    padding: 0 20px;
  }
  .contact-info-item .icon-box {
    border-radius: 10px;
    height: 35px;
    width: 35px;
  }
  .contact-info-item {
    align-items: start;
  }
  .icon-box i {
    color: var(--color3);
    font-size: 14px;
  }
  h2.sobre-nos {
    max-width: 100%;
  }
  p.sobre-nos {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .logo-position {
    left: 44%;
    top: 28px;
  }
  .hero.hero-slider-layout .hero-slide {
    background-position: -800px center;
  }
}
/* min-width */
@media (min-width: 1198px) {
}
@media (min-width: 992px) {
  .footer-title-content h2 {
    font-size: 130px;
  }
  .about-us-content .section-title {
    margin-top: 70px;
  }
  .section-title h1.text-anime-style-2 {
    line-height: 1em;
    font-size: 95px;
  }
  h2.sobre-nos {
    line-height: 1;
  }
  .lg-w-65 {
    width: 80%;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 600px) {
}
