* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

:root {
  --fs-10: 0.625rem;
  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-24: 1.5rem;
  --fs-26: 1.625rem;
  --fs-30: 1.875rem;
  --fs-34: 2.125rem;
  --fs-36: 2.25rem;

  --white: #fff;
  --gray-100: #f4f4f4;
  --gray-200: #f6f6f6;
  --gray-250: #f2f2f2;
  --gray-300: #e0dedd;
  --gray-500: #d9d9d9;
  --gray-600: #666666;
  --orange: #f28d0a;
  --blue-700: #10273c;
  --blue-500: #006480;
  --blue-300: #2eb3a3;
  --red: #ed2224;
}

body {
  /* font-family: "Barlow Semi Condensed", sans-serif; */
  font-family: 'Roboto', sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-soothing: antialiased !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: var(--white);
  color: var(--gray-600);
  font-size: var(--fs-16);
  font-variation-settings: 'wdth' 100;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}
ol,
ul {
  padding-left: 0;
}
a {
  text-decoration: none;
  word-break: break-word;
}
img {
  max-width: 100%;
}
h1 {
  font-size: var(--fs-34);
  color: var(--blue-500);
  font-weight: 700;
}
h2 {
  font-size: var(--fs-18);
  color: var(--orange);
  font-weight: 700;
  margin-top: 0.5rem;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}
.breadcrumb {
  margin-bottom: 0;
}
.card {
  background-color: transparent;
}
.p-geral {
  padding: 6.25rem 0;
}
.p-geral_1 {
  padding: 6.25rem 0;
}
.pt-geral_1 {
  padding-top: 6.25rem;
}
.pb-geral_1 {
  padding-bottom: 6.25rem;
}

.g-background {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.ico_mais_green {
  background-image: url('/img/ico_mais_green.png');
  background-repeat: no-repeat;
  background-position: center center;
  width: 34px;
  height: 34px;
}
.ico_mais_blue {
  background-image: url('/img/ico_mais_blue.png');
  background-repeat: no-repeat;
  background-position: center center;
  width: 34px;
  height: 34px;
}
.ico_mais_orange {
  background-image: url('/img/ico_mais_orange.png');
  background-repeat: no-repeat;
  background-position: center center;
  width: 34px;
  height: 34px;
}

.bg_gray-100 {
  background-color: var(--gray-100);
}
.bg_gray-200 {
  background-color: var(--gray-200);
}
.bg_gray-500 {
  background-color: var(--gray-500);
}
.geral_title_2 {
  color: var(--orange);
  font-weight: 700;
  font-size: var(--fs-24);
  margin: 10px 0;
}
.geral_title_3 {
  color: var(--orange);
  font-weight: 700;
  font-size: var(--fs-22);
  margin: 10px 0;
}
.font-weight-600 {
  font-weight: 600;
}
.p_w-66 {
  padding: 0 66px;
}

.mt-100 {
  margin-top: 100px;
}
.text_color_red {
  color: var(--red);
}
.navbar-collapse {
  align-items: normal;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  /* background-color: red; */
  width: 100%;
}
.header li {
  list-style-type: none;
}
.header-content {
  position: relative;
  z-index: 999;
  background-color: var(--gray-100);
  padding: 2.625rem 1.5rem;
  -webkit-border-bottom-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -moz-border-radius-bottomright: 15px;
  -moz-border-radius-bottomleft: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  font-size: var(--fs-14);
}
.header .nav-link {
  color: var(--blue-500);
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
}
.header .nav-link .menu_bolinha {
  background-color: rgba(16, 39, 60, 0.2);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: auto;
  margin-top: 0.4375rem;
}
.header .nav-link-home .menu_bolinha {
  background-color: rgba(16, 39, 60, 0.2);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: auto;
  margin-top: 0.5625rem;
}
.header .nav-link:hover {
  color: var(--orange);
}
.header .nav-link:hover .menu_bolinha,
.header .nav-link-home .menu_bolinha {
  background-color: var(--orange);
}
.header .nav-link .ico_home {
  width: 18px;
  height: 18px;
}
.header .nav-link .ico_triangulo {
  background-image: url('/img/ico_triangulo.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 8px;
  height: 7px;
  margin: auto;
  margin-top: 0.4375rem;
}
.header .nav-link:hover .ico_triangulo {
  background-image: url('/img/ico_triangulo_hover.png');
}
.header .ico_pesquisar {
  width: 18px;
  height: 18px;
  margin-top: 0.4375rem;
}
.header .ico_bandeira {
  width: 18px;
  height: 12px;
  margin-top: 0.625rem;
}
.header .dropdown-toggle::after {
  display: none;
}
.header .dropdown-menu {
  background-color: var(--gray-100);
  border: none;
}
.header .dropdown-menu .dropdown-item {
  color: var(--blue-500);
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 20px;
  padding: 7px 0;
}
.header .dropdown-divider {
  background-color: var(--orange);
}
.header .ico_triangulo_dropdown,
.header .ico_triangulo_dropdown_link {
  width: 6px;
  height: 8px;
  margin-right: 0.9375rem;
}
.header .dropdown-link {
  color: var(--blue-500);
  font-weight: 500;
  font-size: var(--fs-12);
  line-height: 20px;
}
.banner_principal {
  height: 550px;
  width: 100%;
  position: relative;
  margin-top: 4.375rem;
}
.banner_principal .icone_descer {
  width: 36px;
  height: 36px;
  position: absolute;
  left: 49%;
  bottom: -27px;
  z-index: 999;
}
.solutions {
  padding-bottom: 5.2rem;
}
.solutions_box {
  width: 120px;
  margin-top: 3.75rem;
}
.solutions_box-img {
  width: 120px;
  height: 112px;
}
.solutions_box-title {
  color: var(--blue-700);
  font-weight: 700;
  font-size: var(--fs-16);
  margin: 26px 0 20px 0;
  text-align: center;
  line-height: 18px;
}
.solutions .solutions_box:hover .ico_mais_green {
  background-image: url('/img/ico_mais_orange.png');
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.solutions .solutions_box:hover .solutions_box-img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.news {
  padding-top: 5.2rem;
}

.events {
  padding: 5.2rem 0;
}
.eventos_ver-todos {
  color: var(--blue-300);
  font-weight: 500;
  font-size: var(--fs-14);
}
.eventos_ver-todos:hover {
  color: var(--orange);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.banner_secondary {
  height: 200px;
  position: relative;
}
.banner_secondary-img {
  height: 200px;
  position: relative;
  z-index: 999;
}
.banner_secondary-img a {
  height: 200px;
}
.banner_secondary-shadow {
  background-color: var(--gray-200);
  height: 100px;
  width: 100%;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
}
.news_suble-title {
  color: var(--blue-500);
  font-weight: 700;
  font-size: var(--fs-24);
  margin-top: 1.5rem;
}
.news_box {
  background-color: var(--white);
  border: 1px solid #e0dedd;
  padding: 32px 30px 28px 30px;
  margin-top: 32px;
}
.news_box-principal {
  background-color: var(--white);
  border: 1px solid #e0dedd;
  margin-top: 32px;
}
.news_box-principal:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}
.news_box-principal-img {
  width: 100%;
  /* height: 292px; */
  background-color: var(--white);
  background-size: cover;
}
.news_box .news_box-date {
  font-size: var(--fs-14);
}
.news_box .news_box-icone {
  font-size: var(--fs-12);
  margin-right: 4px;
}
.news_box .news_box-text {
  color: var(--blue-700);
  font-weight: 700;
  font-size: var(--fs-24);
  height: 112px;
  line-height: 30px;
}
.news_box .news_box-link {
  color: var(--blue-300);
  font-weight: 500;
  font-size: var(--fs-14);
  margin-top: 30px;
  display: block;
  text-align: end;
}
.news .ico_mais_blue:hover {
  background-image: url('/img/ico_mais_orange.png');
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.news_box-principal:hover .news_box-link {
  color: var(--orange);
}
.events .events_type {
  color: var(--orange);
  font-weight: 700;
  font-size: var(--fs-24);
}
.events .ico_mais_orange:hover {
  background-image: url('/img/ico_mais_green.png');
}
.events .events_box {
  margin: 16px 0;
  padding: 24px;
  background-color: var(--blue-700);
  color: var(--white);
  max-width: 100%;
}
.events .events_box .events_box_titulo {
  font-weight: 700;
  font-size: var(--fs-24);
  margin-bottom: 15px;
  line-height: 30px;
  height: 60px;
}
.events_box--texto {
  font-weight: 700;
  font-size: var(--fs-16);
}
.events .events_box .events_box-icone {
  font-size: 16px;
  margin-right: 10px;
}
#pg-service .service,
#pg-service-detalhe .solution {
  margin: 25px 0;
}
#pg-service-detalhe .geral_title_3 {
  margin: 25px 0;
}
.service_video {
  width: 100%;
  height: 284px;
  background-color: red;
}
.service_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: 15px;
}
.service_box-logo img {
  height: 48px;
  width: 195px;
  margin-bottom: 1rem;
}
.service_box-2 {
  margin-top: 42px;
}
.service_box-2 img {
  width: 100%;
}
.service .service_box-2_texto {
  font-size: var(--fs-14);
  min-height: 110px;
  text-align: justify;
  color: var(--gray-600);
}
.service_card_texto {
  font-size: var(--fs-14);
  text-align: justify;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.service .ico_mais_blue:hover {
  background-image: url('/img/ico_mais_orange.png');
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.service .logo {
  margin-bottom: 1rem;
}
.service_box-icone-redes-sociais {
  color: var(--orange);
}
.service_box-icone-redes-sociais:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.service-detalhe-2pubi .card-img-top {
  height: 355px;
  object-fit: cover;
}
.service-detalhe-2pubi .card {
  margin-top: 0px;
}
.service-detalhe-1pubi .card-img-top {
  height: 355px;
  object-fit: cover;
}
.partners_box {
  background-color: var(--gray-100);
  padding: 0 22px;
  margin-top: 40px;
  height: 211px;
  align-items: center;
}
#pg-about .partners_box {
  background-color: var(--gray-100);
  padding: 0 22px;
  margin-top: 40px;
  height: 300px;
  align-items: center;
}
.partners_box .logo_altair_channel {
  height: 65px;
  width: 100%;
  margin: auto;
  margin-top: 20px;
}
.partners_box .certified_img {
  height: 130px;
  width: 131px;
  margin: auto;
  margin-top: 20px;
}
.partners_box .partners_box-content_title {
  color: var(--orange);
  font-weight: 700;
  font-size: var(--fs-18);
}
.partners_box .partners_box-content_title span {
  color: var(--blue-500);
}
.partners_box .partners_box-content_text {
  font-size: var(--fs-14);
  text-align: justify;
}

.footer_top {
  background-color: var(--blue-700);
  padding: 88px 0;
}

.footer_top .logo_mini {
  height: 100px;
  width: 106px;
}
.footer_top_box {
  margin-right: 30px;
}
.footer_top_title {
  color: var(--orange);
  font-weight: 600;
  font-size: var(--fs-16);
  line-height: 20px;
}
.footer_top p {
  color: var(--gray-100);
  font-weight: 400;
  font-size: var(--fs-12);
  text-align: justify;
  margin-top: 8px;
}
.footer_top_contact-text {
  color: var(--gray-100);
  font-weight: 400;
  font-size: var(--fs-12);
}
.footer_top_title-icone {
  color: var(--gray-100);
  margin-right: 16px;
}
.footer_top .newsletter {
  background-color: var(--gray-100);
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.footer_top .newsletter input {
  margin-left: 20px;
  border: 0;
  background-color: var(--gray-100);
}
.footer_top .newsletter input::placeholder {
  color: var(--gray-600);
  font-weight: 400;
  font-size: var(--fs-12);
}
.footer_top .newsletter button {
  background-color: var(--blue-500);
  color: var(--gray-100);
  font-size: var(--fs-12);
  border: 0;
  height: 27px;
  width: 74px;
}
.footer-buttom .copyrith {
  padding: 12px 0;
  text-align: center;
  font-size: var(--fs-12);
}
.footer-buttom .copyrith a {
  color: var(--blue-300);
}
.breadcrumb_content {
  height: 295px;
  width: 100%;
  position: relative;
  margin-top: 4.375rem;
}
.breadcrumb-img {
  height: 295px;
  width: 100%;
}
.breadcrumb {
  text-transform: capitalize;
}
.breadcrumb_content-box {
  height: 295px;
  padding-bottom: 60px;
}
.breadcrumb_content-title {
  color: var(--orange);
  font-size: var(--fs-34);
  font-weight: 700;
  text-transform: uppercase;
}
.breadcrumb_content .breadcrumb-item {
  color: var(--gray-100);
  font-size: var(--fs-12);
  font-weight: 500;
  text-transform: uppercase;
}
.breadcrumb_content .breadcrumb-item a {
  color: var(--gray-100);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--gray-100);
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  display: none;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.show {
  position: absolute;
  width: 1116px;
  left: 50%;
  margin-left: -558px;
  justify-content: space-around;
  display: flex;
  border-top: 1px solid var(--orange);
  margin-top: 10px;
  border-radius: 0;
  padding: 15px 0;
}
.dropdown {
  position: initial;
}
.navbar {
  align-items: flex-start;
}
.dropdown .dropdown-link:hover {
  color: var(--orange);
}
.btn_button {
  background-color: var(--blue-500);
  color: var(--white);
  font-size: var(--fs-16);
  font-weight: 700;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.btn_button:hover {
  background-color: var(--blue-700);
}
.about_us {
  margin-bottom: 6.25rem;
}
.about_us--althima_box {
  width: 289px;
}
.about_us--althima_box h3 {
  font-size: var(--fs-16);
  color: var(--blue-700);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
.about_us--althima_box .about_us--althima_box--texto {
  font-size: var(--fs-14);
  text-align: center;
  margin-bottom: 0;
}
.about_us--althima_box-img {
  width: 120px;
  height: 112px;
  margin: auto;
}
.box_icone-suport,
.join_our_team-box_icone {
  width: 120px;
  height: 112px;
  margin-bottom: 10px;
}

#pg-about .banner_secondary {
  background-color: var(--gray-200);
}
#pg-about .banner_secondary-shadow {
  background-color: var(--white);
}
#pg-service-detalhe .banner_secondary {
  background-color: var(--gray-200);
}
#pg-service-detalhe .banner_secondary-shadow {
  background-color: var(--white);
}
.pg-interna .partners_box {
  background-color: var(--white);
  padding: 43px 22px 0 43px;
}
.pg-interna .partners {
  margin-bottom: 0;
}
.btn_geral_1 {
  background-color: var(--orange);
  color: var(--white);
  font-size: var(--fs-14);
  font-weight: 700;
  width: 180px;
  padding: 10px 0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 1rem;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: color 0.3s;
  display: block;
}
.btn_geral_1:hover {
  background-color: var(--blue-500);
}
.join_our_team-box_title {
  font-size: var(--fs-34);
  color: var(--blue-500);
  font-weight: 700;
}
.join_our_team-box_text {
  font-size: var(--fs-16);
  text-align: justify;
  font-weight: 500;
}
.box_endereco_title {
  color: var(--orange);
  font-size: var(--fs-18);
  font-weight: 700;
  margin-bottom: 11px;
}
.box_endereco_text {
  font-size: var(--fs-14);
  font-weight: 400;
}
.form_contato_label {
  color: var(--blue-700);
  font-size: var(--fs-14);
  font-weight: 700;
  margin-left: 15px;
}
.form_contato label span {
  color: var(--red);
}
.form_contato_bg {
  background-color: var(--gray-250);
  height: 50px;
  border: none;
}
.form_contato_textarea {
  background-color: var(--gray-250);
  border: none;
}
.form_contato_check {
  font-size: var(--fs-14);
  font-weight: 400;
}
.form_contato_check a {
  color: var(--gray-600);
  font-weight: 700;
  text-decoration: underline;
}
.pg-service .service {
  padding-top: 5.2rem;
}
.card {
  margin-top: 100px;
}
.card-img-top {
  height: 212px;
  object-fit: cover;
}
.owl-carousel-principal {
  height: 550px;
}
.ico_geral_principal {
  height: 179px;
  width: 200px;
  margin: auto;
}
.carousel_footer {
  height: 200px;
  position: relative;
}
.carousel_footer-shadow {
  background-color: var(--blue-700);
  height: 70px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
:focus-visible {
  outline: 0px;
}
.banner_principal .owl-theme .owl-dots .owl-dot span {
  background: #fff;
  width: 12px;
  height: 12px;
}

.banner_principal .owl-theme .owl-dots .owl-dot.active span,
.banner_principal .owl-theme .owl-dots .owl-dot:hover span {
  background: #f28d0a;
}
.banner_principal .owl-theme .owl-dots {
  position: relative;
  bottom: 106px;
}
.banner_principal .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: -50px;
  position: relative;
}
.events .owl-theme .owl-dots {
  position: relative;
  bottom: 50px important;
}
.events .owl-theme .owl-dots {
  text-align: left;
}
.events .owl-theme .owl-dots .owl-dot span {
  background: rgba(0, 100, 128, 0.2);
  width: 12px;
  height: 12px;
}
.events .owl-theme .owl-dots .owl-dot.active span,
.events .owl-theme .owl-dots .owl-dot:hover span {
  background: #f28d0a;
}
.service-detalhe .owl-theme .owl-nav {
  display: flex;
  justify-content: space-between;
  font-size: 90px;
  position: relative;
  bottom: 165px;
  z-index: 1;
}
.service-detalhe .owl-carousel .owl-stage-outer {
  margin: 0 34px;
  z-index: 999;
}
.owl-carousel-service-produto {
  max-height: 300px;
}
.carousel_service_produto-box {
  background-color: var(--gray-100);
  display: block;
  /* width: 254px; */
}
.carousel_service-img {
  padding: 10px 10px 0 10px;
}
.carousel_service-btn {
  background-color: var(--orange);
  color: var(--white);
  font-size: var(--fs-14);
  font-weight: 700;
  width: 100%;
  padding: 4px 0;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.carousel_service-titulo {
  color: var(--blue-700);
  font-weight: 700;
  text-align: center;
  padding: 15px 10px;
}
.carousel_service-hora {
  color: var(--blue-700);
  font-size: var(--fs-14);
}
.carousel_service_produto .ico_mais_blue:hover {
  background-image: url('/img/ico_mais_orange.png');
  background-repeat: no-repeat;
  background-position: center center;
  width: 34px;
  height: 34px;
}
.tabela_selecione_curso {
  width: 114px;
  height: 71px;
  background-color: var(--orange);
}
#form-add-curso {
  display: none;
}
.table_add_curso th,
.table_add_curso th {
  color: var(--blue-700);
}
.service_box-2-img {
  width: 100%;
  height: 150px;
  background-size: contain;
}
.join_our_team_img {
  height: 436px;
  width: 100%;
  background-size: cover;
  background-color: var(--red);
}
.join_our_team_img img {
  height: 436px;
  width: 100%;
  background-size: cover;
}
.join_our_team_box_1 {
  width: 50%;
}

@media (max-width: 1025px) {
  .p-geral {
    padding: 3rem 0.375rem;
  }
  .header {
    background-color: var(--gray-100);
  }
  .header .header-content {
    padding: 2.625rem 0;
  }
  .header .logo img {
    width: 148px;
    max-width: 100%;
  }
  .banner_secondary-img a {
    height: 160px;
  }
  .service_video {
    width: 100%;
    margin-bottom: 12px;
  }
  .events .events_type {
    margin-top: 40px;
  }
  .events .events_box {
    padding: 15px;
  }
  .footer_top_box {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .logo_mini {
    display: none;
  }
  .footer_top .newsletter {
    max-width: 328px;
  }
}

@media (max-width: 900px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
  .p_w-66 {
    padding: 30px;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    flex-direction: column;
    position: sticky !important;
    width: 100% !important;
    margin-left: -196px !important;
    margin-top: 36px !important;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu li {
    margin-bottom: 10px;
  }
  .all-header .logo img {
    width: 200px;
    max-width: 100%;
  }
  .banner_principal {
    height: 350px;
  }
  /* .owl-carousel-principal .owl-carousel__item {
    height: 200px;
    background-size: cover;
  } */
  h1 {
    font-size: var(--fs-24);
  }
  h2 {
    font-size: var(--fs-16);
  }
  .solutions_box {
    width: 50%;
    margin-top: 46px;
  }
  .solutions_box-img {
    width: 86px;
    height: 80px;
    margin: auto;
  }
  .solutions_box-title {
    font-size: var(--fs-14);
  }
  .events .events_box p {
    font-size: var(--fs-18);
  }
  .service_box {
    margin-left: 0;
  }
  .service .ico_mais_blue {
    margin-bottom: 25px;
  }
  .partners_box {
    padding: 15px;
    height: 270px;
  }
  .partners_box .partners_box-content_title {
    margin-top: 8px;
  }
  .footer_top {
    padding: 40px 0;
  }
  .partners_box .logo_altair_channel {
    width: 100%;
  }
  .partners_box .certified_img {
    height: 197px;
    width: 100%;
  }
  .partners {
    margin-bottom: 3rem;
  }
  .breadcrumb_content-title {
    font-size: var(--fs-20);
  }
  .nav-item {
    display: flex;
  }
  .header .nav-link {
    display: flex;
    gap: 10px;
  }
  .news_box {
    padding: 15px;
  }
  .news_box .news_box-date {
    font-size: var(--fs-10);
  }
  .news_box .news_box-text {
    font-size: var(--fs-16);
    height: auto;
    line-height: 20px;
  }

  .carrossel_footer .carrossel {
    flex-wrap: wrap; /* Permite que as imagens quebrem em uma nova linha se necessário */
    justify-content: center; /* Centraliza as imagens */
  }

  .carrossel_footer .carrossel-item {
    width: 45%; /* Faz com que as imagens ocupem 45% da largura do container */
    margin-right: 5%;
    margin-bottom: 10px;
  }
  .join_our_team_box_1 {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .p_w-66 {
    padding: 30px;
  }
  #pg-about .partners_box {
    height: 425px;
  }
  .partners_box .logo_altair_channel {
    height: 36px;
    width: 100%;
  }
  .partners_box .certified_img {
    height: 104px;
    width: 100%;
  }
  .carrossel_footer .carrossel-item {
    width: 48%; /* Duas imagens ocupando 48% da largura do container */
    margin-right: 4%; /* Espaço entre as imagens */
    margin-bottom: 10px; /* Espaço entre as imagens nas linhas */
  }
  .carrossel_footer .carrossel {
    flex-wrap: wrap; /* Permite que as imagens quebrem em uma nova linha */
  }

  .carrossel_footer .modal-content {
    width: 95%; /* A imagem no modal ocupa 95% da largura da tela */
  }
  .footer_top {
    padding: 40px 0;
  }
  .about_us--althima_box {
    width: 100%;
    margin: 40px 0;
  }
  .about_us {
    margin-bottom: 3.25rem;
  }
  .news_box-principal-img {
    height: 160px;
  }
  .service_box-2-img {
    height: 80px;
  }
}
