@import url('https://fonts.googleapis.com/css2?family=Space Grotesk:wght@400;700&display=swap');


:root {
  --primary-yellow: #E5B345;
  --dark-yellow: #bf9323;
  --primary-blue: #05192A;
  --dark-blue: #071320;
  --white: #ffffff;
  --light: #f8f9fa;
  --text-body: #6c7a87;
  --text-body-inverse: #afb6bd;
  --font-primary: "Space Grotesk", sans-serif;
}

body {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased !important;
  -moz-font-smoothing: antialiased !important;
  -o-font-smoothing: antialiased !important;
  -ms-font-smoothing: antialiased !important;
  font-smoothing: antialiased !important;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--dark-blue);
  -webkit-transition: 0.3s ease-in-out !important;
  -moz-transition: 0.3s ease-in-out !important;
  -o-transition: 0.3s ease-in-out !important;
  -ms-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
}

#wrapper, #content {
  width: 100%;
  height: 100%;
}

button, input {
  -webkit-outline: 0 !important;
  -moz-outline: 0 !important;
  -o-outline: 0 !important;
  -ms-outline: 0 !important;
  outline: 0 !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue)
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--primary-yellow);
  transition: ease all 0.5s;
}

a.text-primary:focus, a.text-primary:hover {
  color: var(--dark-yellow) !important;
}

.btn, .btn:active, .btn:focus {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
  box-shadow: none !important;
  border: 0;
}

img {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -o-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.tio {
  vertical-align: middle;
  display: inline-block;
}

::selection {
  background-color: var(--primary-yellow);
  color: var(--white);
}

.title_sections {
  margin-bottom: 3.25rem;
}

.title_sections .before_title {
  margin-bottom: 1.25rem;
}


.title_sections h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.simplecontact_section .title_sections p {
  color: var(--text-body-inverse);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.title_sections p {
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.dark-mode .title_sections p {
  color: var(--text-body-inverse);
}


@media (max-width: 991px) {
  .title_sections {
    margin-bottom: 2.5rem;
  }
}

.title_sections_inner {
  margin-bottom: 3.125rem;
}

.title_sections_inner h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
}

@media (max-width: 991px) {
  .title_sections_inner {
    margin-bottom: 2.5rem;
  }
}

.logo {
  font-weight: 500;
  font-size: 20px;
}

.logo img {
  vertical-align: bottom;
  margin-right: 0.5rem;
  width: 240px;
}

.margin-b-1 {
  margin-bottom: 0.625rem !important;
}

.margin-t-8 {
  margin-top: 5rem !important;
}
.margin-b-8 {
  margin-bottom: 5rem !important;
}

@media (max-width: 767px) {
  .margin-t-8 {
    margin-top: 2.5rem !important;
  }
  .margin-b-8 {
  margin-bottom: 2.5rem !important;
}
}

.padding-py-12 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

@media (max-width: 767px) {
  .padding-py-12 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
}

.padding-t-6 {
  padding-top: 3.75rem !important;
}

@media (max-width: 767px) {
  .padding-t-6 {
    padding-top: 2.5rem !important;
  }
}

.padding-t-8 {
  padding-top: 5rem !important;
}

@media (max-width: 767px) {
  .padding-t-8 {
    padding-top: 2.5rem !important;
  }
}

.padding-t-9 {
  padding-top: 5.625rem !important;
}

@media (max-width: 767px) {
  .padding-t-9 {
    padding-top: 3.125rem !important;
  }
}

.padding-b-6 {
  padding-bottom: 3.75rem !important;
}

@media (max-width: 767px) {
  .padding-b-6 {
    padding-bottom: 2.5rem !important;
  }
}

.padding-b-8 {
  padding-bottom: 5rem !important;
}

@media (max-width: 767px) {
  .padding-b-8 {
    padding-bottom: 2.5rem !important;
  }
}

.padding-b-9 {
  padding-bottom: 5.625rem !important;
}

@media (max-width: 767px) {
  .padding-b-9 {
    padding-bottom: 3.125rem !important;
  }
}

.c-white {
  color: var(--white) !important;
}

.text-light {
  color: var(--text-body) !important;
}

.text-light-inverse {
  color: var(--text-body-inverse) !important;
}

.z-index-0 {
  z-index: 0;
}

.z-index-3 {
  z-index: 3;
}

.active-blue .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-yellow) !important;
}

.active-blue .navbar .navbar-collapse .navbar-nav .nav-item .dropdown_menu_nav .dropdown-submenu .dropdown-item:hover {
  color: var(--primary-yellow) !important;
}

html {
  scroll-behavior: smooth;
}

header {
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(11, 34, 56, 0);
}

header.no_blur {
  background: transparent;
}

.fixed-header header {
  background: var(--primary-blue);
  border-bottom: 1px solid #ffffff14;
}

header .navbar {
  height: 80px;
  padding: 0;
}

header .navbar .navbar-brand {
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
}

header .navbar .navbar-brand .logo {
  vertical-align: bottom;
  margin-right: 0.5rem;
  width: 200px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  margin-right: 1.25rem;
  background-color: transparent;
}

@media (max-width: 991px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 0;
  }
}

@media (max-width: 991px) {
  header {
    background: var(--primary-blue) !important;
  }

  header .navbar-toggler:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  header .navbar {
    height: auto;
    padding: 0.75rem;
  }

  header .navbar-brand {
    color: var(--dark-blue) !important;
    font-size: 18px !important;
  }

  header .navbar-brand .logo {
    width: 140px !important;
  }

  header .navbar-collapse {
    margin-left: 0 !important;
  }

  header .navbar-collapse .navbar-nav {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  header .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--dark-blue);
  }
}

.header-nav-center {
  width: 100%;
  left: 0;
  z-index: 12;
}

.header-nav-center .navbar-brand {
  color: var(--dark-blue);
}

.header-nav-center .navbar-collapse .nav-item .nav-link {
  color: var(--dark-blue);
  -webkit-transition: 0.4s !important;
  -moz-transition: 0.4s !important;
  -o-transition: 0.4s !important;
  -ms-transition: 0.4s !important;
  transition: 0.4s !important;
}

.header-nav-center .navbar-collapse .nav-item .nav-link:hover {
  color: var(--primary-yellow);
}

.header-nav-left .navbar-collapse {
  margin-left: 2rem;
}

@media (max-width: 991px) {
  .fixed-header header {
    background: var(--dark-blue);
  }
}

.white-scroll-dark .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: var(--white);
}

.fixed-header .white-scroll-dark .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: var(--white);
}

.banner_home {
  background: var(--primary-blue);
  height: 100%;
  padding-top: 7.5rem;
  position: relative;
  border-bottom: 8px solid #E9B738;
}

@media (max-width: 767px) {
  .banner_home {
    padding-top: 6rem;
    background-position: center center !important;
  }
}

.banner_home .banner_title {
  margin-bottom: 30px;
}

.banner_home .banner_title h1 {
  color: var(--primary-blue);
}

.banner_home .banner_title p {
  color: var(--text-body);
}

.btn-outline-light {
  height: 2.6rem;
  padding: 1.5rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  width: fit-content;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

.banner_title h1 {
  font-size: 2.65rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  margin-top: 0;
}

@media (max-width: 767px) {
  .banner_title h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

.banner_title p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
}

.logos_section h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

.logos_section .wrapper_logos {
  position: relative;
  direction: ltr;
}

.logos_section .wrapper_logos .bx-wrapper {
  min-width: 100%;
}

.logos_section .wrapper_logos .logos_masks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background: linear-gradient(to right, var(--primary-yellow) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, var(--primary-yellow) 110%) !important;
  -moz-background: linear-gradient(to right, var(--primary-yellow) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, var(--primary-yellow) 110%) !important;
  -o-background: linear-gradient(to right, var(--primary-yellow) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, var(--primary-yellow) 110%) !important;
  -ms-background: linear-gradient(to right, var(--primary-yellow) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, var(--primary-yellow) 110%) !important;
  background: linear-gradient(to right, var(--light) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, var(--light) 110%) !important;
}

.simplecontact_section {
  position: relative;
  overflow: hidden;
  background: var(--primary-blue);
  border-bottom: 1px solid var(--primary-yellow);
}

.simplecontact_section .circle-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 200px;
  /* Define a largura desejada */
  height: 200px;
  /* Define a altura desejada se necessario */
}

.simplecontact_section .circle-ripple .ripple {
  position: absolute;
  border: 3px solid #ffffff17;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.simplecontact_section .circle-ripple .ripple-1 {
  -webkit-animation: circleRipple 3s infinite linear !important;
  -moz-animation: circleRipple 3s infinite linear !important;
  -o-animation: circleRipple 3s infinite linear !important;
  -ms-animation: circleRipple 3s infinite linear !important;
  animation: circleRipple 3s infinite linear !important;
}

.simplecontact_section .circle-ripple .ripple-2 {
  -webkit-animation: circleRipple 3s infinite linear 0.75s !important;
  -moz-animation: circleRipple 3s infinite linear 0.75s !important;
  -o-animation: circleRipple 3s infinite linear 0.75s !important;
  -ms-animation: circleRipple 3s infinite linear 0.75s !important;
  animation: circleRipple 3s infinite linear 0.75s !important;
}

.simplecontact_section .circle-ripple .ripple-3 {
  -webkit-animation: circleRipple 3s infinite linear 1.5s !important;
  -moz-animation: circleRipple 3s infinite linear 1.5s !important;
  -o-animation: circleRipple 3s infinite linear 1.5s !important;
  -ms-animation: circleRipple 3s infinite linear 1.5s !important;
  animation: circleRipple 3s infinite linear 1.5s !important;
}

.our_story .image_grid img {
  border-radius: 12px;
}

.our_story .image_grid .img_one {
  width: 100%;
}

.blog_slider .swiper-button-next, .blog_slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(11, 34, 56, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 22px;
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
}

.blog_slider .swiper-button-next .tio, .blog_slider .swiper-button-prev .tio {
  font-size: 18px;
  color: var(--dark-blue);
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
}

.blog_slider .swiper-button-next::after, .blog_slider .swiper-button-prev::after {
  display: none;
}

.blog_slider .swiper-button-next:hover, .blog_slider .swiper-button-prev:hover {
  background-color: var(--dark-blue);
}

.blog_slider .swiper-button-next:hover .tio, .blog_slider .swiper-button-prev:hover .tio {
  color: var(--white);
}

@media (max-width: 767px) {
  .blog_slider .swiper-button-next, .blog_slider .swiper-button-prev {
    display: none;
  }
}

.blog_slider .swiper-button-next {
  right: 10px;
  left: auto;
}

.blog_slider .swiper-button-prev {
  right: 4.5rem;
  left: inherit;
}

.blog_slider .title_sections_inner {
  border-bottom: 1px solid var(--text-body-inverse);
  position: relative;
}

.blog_slider .title_sections_inner h2 {
  margin-bottom: 1.875rem;
}

.blog_slider .title_sections_inner::after {
  content: "";
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: var(--primary-blue);
  bottom: -0.5px;
}

.grid_blog_avatar a {
  display: block;
}

.grid_blog_avatar .cover_blog {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
}

.grid_blog_avatar .cover_blog img {
  width: 100%;
  border-radius: 8px;
  height: 220px;
  object-fit: cover;
  -webkit-transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) !important;
  -moz-transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) !important;
  -o-transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) !important;
  -ms-transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) !important;
  transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) !important;
  -webkit-transform: scale3d(1, 1, 1) !important;
  -moz-transform: scale3d(1, 1, 1) !important;
  -o-transform: scale3d(1, 1, 1) !important;
  -ms-transform: scale3d(1, 1, 1) !important;
  transform: scale3d(1, 1, 1) !important;
  cursor: pointer;
}

.grid_blog_avatar .body_blog .title_blog {
  color: var(--dark-blue);
  font-size: 16px;
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
}

.grid_blog_avatar .body_blog .short_desc {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grid_blog_avatar .body_blog .link_blog {
  display: block;
}

.grid_blog_avatar .body_blog .link_blog:hover .title_blog {
  color: var(--dark-yellow);
}

.grid_blog_avatar:hover .cover_blog img {
  -webkit-transform: scale3d(1.12, 1.12, 1) !important;
  -moz-transform: scale3d(1.12, 1.12, 1) !important;
  -o-transform: scale3d(1.12, 1.12, 1) !important;
  -ms-transform: scale3d(1.12, 1.12, 1) !important;
  transform: scale3d(1.12, 1.12, 1) !important;
}

.btn-social {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-blue);
  border: 1px solid transparent;
  -webkit-transition: 0.35s !important;
  -moz-transition: 0.35s !important;
  -o-transition: 0.35s !important;
  -ms-transition: 0.35s !important;
  transition: 0.35s !important;
}

.btn-social .tio {
  font-size: 20px;
  vertical-align: middle;
}

.btn-social.fill-dark {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 20%);
  box-shadow: 0px 6.25px 18.75px 0px rgb(255 255 255 / 10%) inset;
  backdrop-filter: blur(5px);
}

.btn-social.fill-dark:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: #234a74;
  box-shadow: none;
}

.ripple:active:before, .ripple:focus:before {
  background: var(--primary-yellow);
  border-radius: 50px;
  content: "";
  display: block;
  height: 100%;
  opacity: 0.25;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  animation: ripple 1s cubic-bezier(0.29, -0.01, 0.17, 0.95);
}

.ripple_circle:active:before, .ripple_circle:focus:before {
  background: var(--primary-yellow);
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  opacity: 0.25;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  animation: rippleCircle 0.6s cubic-bezier(0.29, -0.01, 0.17, 0.95);
}

.scale {
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
  transform: scale(1) translateZ(0);
}

.scale:active {
  transform: scale(0.95);
}

.menu {
  color: var(--dark-blue);
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  outline: none;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-appearence: none;
  -webkit-tap-highlight-color: transparent;
}

.menu.ripplemenu:active:before {
  background: var(--primary-yellow);
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  opacity: 0.25;
  position: absolute;
  width: 100%;
  z-index: -1;
  top: 0;
  left: -9px;
  animation: RippleMenu 0.3s cubic-bezier(0.29, -0.01, 0.17, 0.95);
}

.menu svg {
  width: 44px;
  height: 48px;
  top: -6px;
  left: -14px;
  stroke: var(--white);
  stroke-width: 0.2rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: block;
  position: absolute;
}

@media (max-width: 991px) {
  .menu svg {
    left: 0;
  }
}

.menu svg path {
  transition: stroke-dasharray var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s), stroke-dashoffset var(--duration, 0.85s) var(--easing, ease) var(--delay, 0s);
  stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
  stroke-dashoffset: var(--offset, 126px);
  transform: translateZ(0);
}

.menu svg path:nth-child(2) {
  --duration: 0.7s;
  --easing: ease-in;
  --offset: 100px;
  --array-2: 74px;
}

.menu svg path:nth-child(3) {
  --offset: 133px;
  --array-2: 107px;
}

.menu.active svg path {
  --offset: 57px;
}

.menu.active svg path:nth-child(1), .menu.active svg path:nth-child(3) {
  --delay: 0.15s;
  --easing: cubic-bezier(0.2, 0.4, 0.2, 1.1);
}

.menu.active svg path:nth-child(2) {
  --duration: 0.4s;
  --offset: 2px;
  --array-1: 1px;
}

.menu.active svg path:nth-child(3) {
  --offset: 58px;
}

.prgoress_indicator {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px var(--primary-blue);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transform: translateY(15px) !important;
  -moz-transform: translateY(15px) !important;
  -o-transform: translateY(15px) !important;
  -ms-transform: translateY(15px) !important;
  transform: translateY(15px) !important;
  -webkit-transition: all 200ms linear !important;
  -moz-transition: all 200ms linear !important;
  -o-transition: all 200ms linear !important;
  -ms-transition: all 200ms linear !important;
  transition: all 200ms linear !important;
  background: var(--white)12;
}

.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
  -ms-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

.prgoress_indicator::after {
  position: absolute;
  font-family: "The-Icon-of";
  content: "\e9a2";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--primary-yellow);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear !important;
  -moz-transition: all 200ms linear !important;
  -o-transition: all 200ms linear !important;
  -ms-transition: all 200ms linear !important;
  transition: all 200ms linear !important;
}

.prgoress_indicator::before {
  position: absolute;
  font-family: "The-Icon-of";
  content: "\e9a2";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear !important;
  -moz-transition: all 200ms linear !important;
  -o-transition: all 200ms linear !important;
  -ms-transition: all 200ms linear !important;
  transition: all 200ms linear !important;
}

.prgoress_indicator:hover::after {
  color: var(--primary-yellow);
}

.prgoress_indicator:hover:before {
  /* opacity: 1; */
}

.prgoress_indicator svg path {
  fill: none;
}

.prgoress_indicator svg.progress-circle path {
  stroke: var(--primary-yellow);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear !important;
  -moz-transition: all 200ms linear !important;
  -o-transition: all 200ms linear !important;
  -ms-transition: all 200ms linear !important;
  transition: all 200ms linear !important;
}

.form-group input {
  height: 55px;
  padding-left: 1.25rem;
  color: var(--dark-blue) !important;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 400;
  border-color: var(--text-body-inverse);
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
}

.form-group input:focus, .form-group input:active {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
  box-shadow: none !important;
  border-color: var(--primary-yellow);
}

.form-group input::placeholder {
  color: rgba(11, 34, 56, 0.5);
  font-size: 13px;
  font-weight: 400;
}

.modal {
  padding-right: 0 !important;
}

.modal .modal-content {
  border-radius: 12px;
  border: 0;
  padding: 2rem;
}

.modal .modal-content .modal-header {
  border: 0;
}

.modal .modal-content .close {
  background-color: rgba(11, 34, 56, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: 0.4s !important;
  -moz-transition: 0.4s !important;
  -o-transition: 0.4s !important;
  -ms-transition: 0.4s !important;
  transition: 0.4s !important;
}

.modal .modal-content .close:hover {
  opacity: 1;
  background-color: var(--dark-blue);
  text-shadow: none;
}

.dropdown .dropdown-toggle {
  text-transform: capitalize;
}

.dropdown .dropdown-toggle::after {
  display: none;
}

.dropdown .dropdown-toggle .icon_arrow {
  display: none;
}

@media (max-width: 991px) {
  .dropdown .dropdown-toggle {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    margin-left: -1.7rem !important;
    margin-right: -1.7rem !important;
    padding-left: 1.7rem !important;
    padding-right: 3rem !important;
    overflow: hidden;
  }

  .dropdown .dropdown-toggle .icon_arrow {
    display: block;
  }

  .dropdown .dropdown-toggle .icon_arrow .tio {
    position: absolute;
    right: auto;
    top: calc(50% - 9px);
    transform-origin: center;
    -webkit-transition: 0.4s !important;
    -moz-transition: 0.4s !important;
    -o-transition: 0.4s !important;
    -ms-transition: 0.4s !important;
    transition: 0.4s !important;
  }
}

.dropdown .dropdown-menu {
  margin: 0;
}

@media (max-width: 991px) {
  .dropdown .dropdown-menu {
    max-height: 300px;
    overflow: auto !important;
  }
}

.dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: 0.4s !important;
  -moz-transition: 0.4s !important;
  -o-transition: 0.4s !important;
  -ms-transition: 0.4s !important;
  transition: 0.4s !important;
}

.dropdown .dropdown-menu .dropdown-item:active, .dropdown .dropdown-menu .dropdown-item:focus, .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--light);
  color: var(--primary-yellow);
}

.dropdown .dropdown-menu.single-drop {
  border: 0;
  border-radius: 8px;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(11, 34, 56, 0.1) !important;
  -moz-box-shadow: 0px 20px 60px 0px rgba(11, 34, 56, 0.1) !important;
  -o-box-shadow: 0px 20px 60px 0px rgba(11, 34, 56, 0.1) !important;
  -ms-box-shadow: 0px 20px 60px 0px rgba(11, 34, 56, 0.1) !important;
  box-shadow: 0px 20px 60px 0px rgba(11, 34, 56, 0.1) !important;
  min-width: 210px;
  padding-top: 15px;
  padding-bottom: 15px;
  transform: perspective(300px) rotateX(-15deg);
  -webkit-transform: perspective(300px) rotateX(-15deg);
  -moz-transform: perspective(300px) rotateX(-15deg);
  -o-transform: perspective(300px) rotateX(-15deg);
  -ms-transform: perspective(300px) rotateX(-15deg);
  transform-origin: 50% -50px;
  -moz-transform-origin: 50% -50px;
  -webkit-transform-origin: 50% -50px;
  -o-transform-origin: 50% -50px;
  -ms-transform-origin: 50% -50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s !important;
  -moz-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s !important;
  -o-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s !important;
  -ms-transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s !important;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s !important;
  display: inline-block;
}

@media (min-width: 992px) {
  .dropdown .dropdown-menu.single-drop {
    height: auto !important;
  }
}

@media (min-width: 768px) {
  .dropdown .dropdown-menu.single-drop.sm_dropdown {
    top: 57px;
  }
}

@media (max-width: 991px) {
  .dropdown .dropdown-menu.single-drop {
    box-shadow: none;
    display: block;
    transform: none !important;
    overflow: hidden;
    height: 0;
    width: 100%;
    padding: 0;
    -webkit-transition: height 0.4s cubic-bezier(0.35, 0.2, 0.2, 1) !important;
    -moz-transition: height 0.4s cubic-bezier(0.35, 0.2, 0.2, 1) !important;
    -o-transition: height 0.4s cubic-bezier(0.35, 0.2, 0.2, 1) !important;
    -ms-transition: height 0.4s cubic-bezier(0.35, 0.2, 0.2, 1) !important;
    transition: height 0.4s cubic-bezier(0.35, 0.2, 0.2, 1) !important;
    box-shadow: none !important;
  }
}

.dropdown .dropdown-menu .dropdown_menu_nav {
  padding: 0;
}

.dropdown .dropdown-menu .dropdown_menu_nav li {
  list-style: none;
}

.dropdown .dropdown-menu .dropdown_menu_nav li .dropdown-item {
  padding: 0.4rem 1.5rem;
}

.dropdown-submenu {
  position: relative;
  list-style: none;
}

@media (max-width: 991px) {
  .dropdown-submenu .dropdown-toggle {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-body);
  }
}

@media (max-width: 991px) {
  .single-drop .dropdown-submenu .dropdown-toggle:hover, .single-drop .dropdown-submenu .dropdown-toggle:focus, .single-drop .dropdown-submenu .dropdown-toggle:active {
    background-color: transparent !important;
  }
}

.defalut-footer {
  position: relative;
}

.defalut-footer::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='575' height='495' viewBox='0 0 575 495'%3E%3Cpath id='Polygon_69' data-name='Polygon 69' d='M408.225,0a40,40,0,0,1,34.589,19.91l120.518,207.5a40,40,0,0,1,0,40.179L442.814,475.09A40,40,0,0,1,408.225,495H166.775a40,40,0,0,1-34.589-19.91L11.668,267.59a40,40,0,0,1,0-40.179L132.186,19.91A40,40,0,0,1,166.775,0Z' fill='%23165df5'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 450px;
  width: 575px;
  height: 495px;
  bottom: -45%;
  right: -50%;
}

@media (max-width: 767px) {
  .defalut-footer::before {
    display: none;
  }
}

.defalut-footer .item_about .logo {
  color: var(--white);
}

.defalut-footer .item_about p {
  margin-top: 1.45rem;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  opacity: 1;
}

.defalut-footer .item_links .nav-link {
  display: block;
  padding-left: 0;
  color: var(--text-body);
  padding-bottom: 0.75rem;
  -webkit-transition: 0.3s !important;
  -moz-transition: 0.3s !important;
  -o-transition: 0.3s !important;
  -ms-transition: 0.3s !important;
  transition: 0.3s !important;
}

.defalut-footer .item_links .nav-link:hover {
  color: var(--white);
  padding-left: 0.3rem;
}

.defalut-footer .item_subscribe p {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 400;
}

.defalut-footer .item_subscribe .form-group.subscribebtn {
  margin-top: 1rem;
}

.defalut-footer .item_subscribe .form-group.subscribebtn .item_input {
  position: relative;
}

.defalut-footer .item_subscribe .form-group.subscribebtn .item_input input {
  border: 0;
  padding-right: 3.5rem;
}

.defalut-footer .item_subscribe .form-group.subscribebtn .item_input .btn_subscribe {
  position: absolute;
  color: var(--dark-blue);
  top: 0.4rem;
  right: 0.6rem;
  font-size: 15px;
  width: 42px;
  height: 42px;
  background-color: var(--primary-yellow);
}

.defalut-footer .item_subscribe .form-group.subscribebtn .item_input .btn_subscribe .tio {
  color: var(--white);
  font-size: 20px;
  display: flex;
  justify-content: center;
}

.defalut-footer .copyright {
  color: var(--text-body);
  font-size: 14px;
}

.defalut-footer .copyright a {
  color: var(--white);
}

.defalut-footer .copyright a:hover {
  text-decoration: underline;
}

.foot_demo2 {
  position: relative;
  background-color: var(--dark-blue) !important;
  z-index: 1;
  overflow: hidden;
}

.foot_demo2:before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  left: inherit;
  bottom: 0;
  opacity: 0.14;
  height: 100%;
  width: 100%;
  background-position: 100%;
  z-index: -1;
}

@media (max-width: 767px) {
  .foot_demo2:before {
    display: none;
  }
}

.foot_demo2 .defalut-footer:before {
  display: none;
}

.foot_demo2 .item_subscribe .form-group.subscribebtn .item_input input {
  border-radius: 8px !important;
  background-color: var(--white) !important;
  color: var(--dark-blue) !important;
}

.foot_demo2 .item_subscribe .form-group.subscribebtn .item_input input::placeholder {
  color: var(--text-body) !important;
}

.foot_demo2 .item_subscribe .form-group.subscribebtn .item_input .btn_subscribe {
  border-radius: 8px !important;
  background-color: var(--primary-yellow) !important;
}

.foot_demo2 .item_subscribe .form-group.subscribebtn .item_input .btn_subscribe:focus:before {
  background: var(--primary-yellow);
}

.about_post .c_ategory a {
  color: #0b2238;
  display: inline-block;
  font-size: 14px;
}

.about_post .c_ategory a:hover {
  color: var(--primary-yellow);
}

.about_post .c_ategory a::before {
  content: ", ";
}

.about_post .c_ategory a:first-child::before {
  display: none;
}

.about_post .dot {
  width: 5px;
  height: 5px;
  border-radius: 30px;
  background-color: var(--text-body);
  margin: 0 8px;
  display: inline-block;
}

.about_post time {
  display: inline-block;
  font-size: 13px;
  color: var(--text-body);
}

.logos_section {
  /* border-bottom: 1px solid #e1e3e7; */
  /* border-top: 1px solid #e1e3e7; */
}


.services__item-4 {
  border: 2px solid #EAEAEF;
  background-color: var(--white);
  padding: 47px 40px 40px;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  margin-bottom: 24px;
}

.bg-dark.services__item-4 {
  border: 2px solid var(--primary-blue);
  background-color: var(--primary-blue);
  padding: 47px 40px 40px;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  margin-bottom: 24px;
}

.bg-dark.services__item-4 {
  text-align: center;
}

.services__item-4::after {
  position: absolute;
  content: "";
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
}

.services__item-4:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.service.s__title-4 {
  color: var(--primary-blue);
}

.services__item-4:hover::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.services__item-4:hover .services-link-btn {
  color: var(--white);
  bottom: 35px;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
}

.services__item-4:hover .services__thumb-4 {
  opacity: 0.14;
}

.bg-dark.services__item-4 .services-link-btn {
  color: var(--white);
  position: initial;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
  margin-top: 1em;
  margin: auto;
  margin-top: 1em;
  display: block;
}

.bg-dark.services__item-4 .services-link-btn:hover {
  color: var(--primary-yellow);
  position: initial;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
  margin-top: 1em;
  margin: auto;
  margin-top: 1em;
  display: block;
}

.services__item-4:hover .services__icon-4 span {
  color: var(--white);
  transform: scale(0);
}

.bg-dark.services__item-4:hover .services__icon-4 span {
  color: var(--white);
  transform: none;
}

.services__item-4:hover .services__content-4 p {
  color: var(--white);
  transform: translateY(-93px);
  transition-delay: 0.1s;
}

.bg-dark.services__item-4:hover .services__content-4 p {
  transform: none;
  transition-delay: 0.1s;
  color: var(--text-body);
}


.services__icon-4 span {
  display: inline-block;
  font-size: 40px;
  color: var(--primary-yellow);
  min-height: 52px;
}

.services__content-4 p {
  color: var(--text-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  transition-duration: 0.4s;
  transition-delay: 0s;
}

.services-link-btn {
  position: absolute;
  bottom: -35px;
  left: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--white);
  transition-delay: 0s;
  transition-duration: 0.3s;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
}

.services-link-btn i {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  border-radius: 50%;
  margin-left: 5px;
}

.services-link-btn:hover i {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--dark-blue);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services__item-4 {
    padding: 25px 15px 30px;
  }
}

.services {
  background-color: var(--white);
}

.sidebyside {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}

.sidebyside.dark-mode {
  position: relative;
  overflow: hidden;
  background: var(--primary-blue);
  border-bottom: 6px solid var(--primary-yellow);
  padding-top: 5.5em;
  padding-bottom: 5.5em;
}

.c-body-inverse {
  color: var(--text-body-inverse) !important;
}

.banner__img-two {
  position: relative;
  z-index: 2;
}

.banner__img-two>img:nth-child(1) {
  max-width: unset;
}

@media (max-width: 1199.98px) {
  .banner__img-two>img:nth-child(1) {
    margin-left: 0;
    max-width: 100%;
  }
}

.banner__img-two>img:nth-child(2) {
  position: absolute;
  left: 15%;
  top: 30%;
}

@media (max-width: 1199.98px) {
  .banner__img-two>img:nth-child(2) {
    width: 84px;
    left: 2%;
  }
}

@media (max-width: 767.98px) {
  .banner__img-two>img:nth-child(2) {
    left: 10%;
  }
}

.banner__img-two .img__shape img {
  position: absolute;
  z-index: 1;
}

.banner__img-two .img__shape img:nth-child(1) {
  right: 0;
  bottom: 5%;
  animation-duration: 4s;
}

@media (max-width: 767.98px) {
  .banner__img-two .img__shape img:nth-child(1) {
    right: 0;
    bottom: 5%;
    width: 72px;
  }
}

.alltuchtopdown {
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

.rightToLeft {
  animation-name: rightToLeft;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.text-primary {
  color: var(--primary-yellow) !important;
}

.btn-primary {
  color: var(--dark-blue);
  background-color: var(--primary-yellow);
  border: 1px solid transparent;
  height: 2.6rem;
  padding: 1.5rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  width: fit-content;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  color: var(--dark-blue) !important;
  background-color: var(--primary-yellow) !important;
  border-color: var(--primary-yellow) !important;
  transition: all .5s;
  transform: translate3d(0, -3px, 0);
  box-shadow: 4px 4px 0px var(--dark-yellow) !important;
}

.bg-shape {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  user-select: none;
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

@media (min-width:1440px) {
  .bg-shape {
    top: -30%;
  }
}

@media (min-width:2000px) {
  .bg-shape {
    top: -60%;
  }
}

.bg-shape::after {
  content: "";
  opacity: 1;
  user-select: none;
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.title-label {
  border: 1px solid var(--primary-yellow);
  border-radius: 18px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-yellow);
  background-color: transparent;
  padding: 4px 16px;
}

.title-label-dark {
  border: 1px solid var(--primary-blue);
  border-radius: 18px;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1rem;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-blue);
  background-color: transparent;
  padding: 4px 16px;
}


/*! CSS Used keyframes */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes circleRipple {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}

@-moz-keyframes circleRipple {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}

@keyframes circleRipple {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes ripple {
  to {
    transform: scaleX(1.3) scaleY(1.6);
    opacity: 0;
  }
}

@-moz-keyframes ripple {
  to {
    transform: scaleX(1.3) scaleY(1.6);
    opacity: 0;
  }
}

@keyframes ripple {
  to {
    transform: scaleX(1.3) scaleY(1.6);
    opacity: 0;
  }
}

@-webkit-keyframes rippleCircle {
  to {
    transform: scale(4.5);
    opacity: 0;
  }
}

@-moz-keyframes rippleCircle {
  to {
    transform: scale(4.5);
    opacity: 0;
  }
}

@keyframes rippleCircle {
  to {
    transform: scale(4.5);
    opacity: 0;
  }
}

@-webkit-keyframes RippleMenu {
  to {
    transform: scale(10);
    opacity: 0;
  }
}

@-moz-keyframes RippleMenu {
  to {
    transform: scale(10);
    opacity: 0;
  }
}

@keyframes RippleMenu {
  to {
    transform: scale(10);
    opacity: 0;
  }
}

@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    transform: rotateX(0deg) translateY(-20px);
  }

  100% {
    transform: rotateX(0deg) translateY(0px);
  }
}

@keyframes rightToLeft {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.demo_1.banner_section {
  background: #fef8f0;
  background: -moz-linear-gradient(360deg, rgba(254, 248, 240, 0) 0%, #fef8f0 100%);
  background: -webkit-linear-gradient(360deg, rgba(254, 248, 240, 0) 0%, #fef8f0 100%);
  background: linear-gradient(360deg, rgba(254, 248, 240, 0) 0%, #fef8f0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fef8f0", endColorstr="#fef8f0", GradientType=1);
  height: 100%;
  padding-top: 12rem;
  padding-bottom: 6em;
  border-bottom: 6px solid var(--primary-yellow);
}

.banner_demo6 {
  background-image: url(https://tellius.com.br/wp-content/themes/tellius/assets/img/bg-seguranca.jpg) !important;
  background-size: cover !important;
  background-position: center !important;
  width: 100%;
}

.banner_demo6 .btn_watch {
  border-radius: 12px;
  padding: .85rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
}

/* Contato */
.banner_title h1 {
  font-size: 3.125rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  margin-top: 0;
}

@media (max-width:767px) {
  .banner_title h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

.banner_title p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
}

.banner_cotact_three {
  padding-bottom: 0;
  overflow: hidden;
}

.banner_cotact_three .information_content .link_item {
  padding: 1.25rem 1.875rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.banner_cotact_three .information_content .link_item a {
  display: block;
  margin-bottom: 0;
  color: var(--white);
}

.banner_cotact_three .information_content .link_item a .tio {
  margin-right: .938rem;
  font-size: 22px;
  vertical-align: middle;
  display: inline-block;
}

.banner_cotact_three .information_content .link_item.selecr_mark {
  border: 2px solid  #0c2744;
  background-color: rgb(255 255 255 / 1%);
}

.banner_cotact_three .form_contact_two {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.563rem;
  position: relative;
  z-index: 2;
}


.banner_cotact_three .form_contact_two .btn_send {
  background-color: var(--primary-yellow);
  color: var(--white);
}

.banner_contact {
  background-color: rgb(1 13 23);
  position: relative;
  padding-bottom: 3.5rem;
  background-repeat: repeat, repeat, no-repeat;
  background-image: linear-gradient(rgb(1 13 23), rgba(21, 14, 49, 0) 75%), radial-gradient(circle closest-corner at 50% 100%, #e9b7381a, rgba(120, 89, 255, 0)), linear-gradient(rgba(21, 14, 49, .4), rgb(0 0 0 / 40%)), url(https://tellius.com.br/wp-content/themes/tellius/assets/img/bg-waves.webp);
  background-size: cover;
  background-position: 0 0, 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, repeat, no-repeat;
  border-bottom: 1px solid #2b2b2b;
  padding-top: 7em;
  overflow: hidden;
}

@media (max-width:767px) {
  .banner_contact {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .banner_cotact_three .form_contact_two {
    margin-top: 2.5rem;
    border-radius: 0;
    padding-bottom: 2.5em;
    margin-bottom: 0;
  }
}

.wpcf7 {
  width: 100%;
}



.form-control:focus {
  color: var(--text-body) var(--white) !important;
  background-color: var(--white) !important;
  border-color: var(--primary-yellow) !important;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(233 183 56 / 24%) !important;
}

.form-control::placeholder {
  color: var(--text-body);
  opacity: 1;
}

.form-control:disabled {
  background-color: var(--text-body-inverse);
  opacity: 1;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.88em + 1.5rem + 2px);
  padding: .75rem 1.5625rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.88;
  color: var(--text-body);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--text-body-inverse);
  border-radius: 8px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.bg-dark {
  background-color: var(--primary-blue) !important;
}


.blog-banner_without_image{background-color: var(--primary-blue);padding-bottom:3em;padding-top:8em;}
.blog-banner_without_image .banner_title_inner h1{color:var(--dark-blue);}
.blog-banner_without_image .filter_form .form-control{border:0;background-color:var(--light);;}
.simple_search .input_group{position:relative;}
.simple_search .input_group input{padding-left:45px;}
.simple_search .input_group .tio{position:absolute;top:19px;left:20px;font-size:17px;color:#6c7a87;}
.breadcrumb.default{background-color:transparent;padding:0;margin-bottom:0;}
.breadcrumb.default .breadcrumb-item::before{font-family:"The-Icon-of";content:"\e9b3";vertical-align:middle;font-size:15px;}
.breadcrumb.default .breadcrumb-item:first-of-type::before{display:none;}
.breadcrumb.default .breadcrumb-item a{font-size:15px;font-weight:400;color:var(--dark-blue);}


#btnChatFlt {
	margin-bottom: 24px !important;
}
#btnChatFlt>img {
    border-radius: 100% !important;
    padding: 0 !important;
    border: 2px solid #ffffff !important;
    width: 60px !important;
    height: 60px !important;
}

.prgoress_indicator {
	display: none !important;
}

.grecaptcha-badge {
	display: none !important;
}

.grecaptcha-badge { visibility: hidden; } 
