@charset "UTF-8";
/* Modal de Notificações */
.notification-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.notification-modal.show {
  display: flex;
}

.notification-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1001;
}

.notification-modal-content {
  position: relative;
  z-index: 1002;
  background-color: white;
  border-radius: 1.5rem;
  padding: 3rem;
  max-width: 45rem;
  width: 90%;
  margin: auto;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.notification-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #ccc;
  cursor: pointer;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.notification-modal-close:hover {
  color: var(--dark-blue);
}

.notification-modal-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-modal-icon.success::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  font-size: 3rem;
}

.notification-modal-icon.error::before {
  content: "!";
  color: #f44336;
  font-weight: bold;
  font-size: 3rem;
}

.notification-modal-icon.warning::before {
  content: "⚠";
  color: #ff9800;
  font-size: 3rem;
}

.notification-modal-icon.info::before {
  content: "ⓘ";
  color: #2196f3;
  font-size: 2.8rem;
}

.notification-modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.notification-modal-message {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6em;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.notification-modal-button {
  background-color: var(--dark-blue);
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.notification-modal-button:hover {
  background-color: white;
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .notification-modal-content {
    padding: 2rem;
    max-width: 90%;
    border-radius: 1rem;
  }
  .notification-modal-title {
    font-size: 1.6rem;
  }
  .notification-modal-message {
    font-size: 1.2rem;
  }
  .notification-modal-button {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
  }
}
:root {
  --dark-blue: #181f3c;
  --blue: #3f4878;
  --red: #9B2B20;
  --dark-red: #802319;
  --red-color: #9B2B20;
}

/* Acessibilidade: anel de foco visível para navegação por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role=button]:focus-visible {
  outline: 2px solid var(--blue, #3f4878) !important;
  outline-offset: 2px !important;
}

html {
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #ebeef0;
}

.relative {
  position: relative;
}

section {
  overflow-x: clip;
}

.container {
  max-width: 75%;
  padding: 0;
}
@media screen and (max-width: 860px) {
  .container {
    max-width: calc(100% - 6rem);
  }
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 0;
  background-color: var(--dark-blue);
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0.3rem 0.3rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

.float_links {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: hidden;
  row-gap: 0.5rem;
}
.float_links a,
.float_links button {
  display: flex;
  align-items: center;
  max-width: 4.3rem;
  background-color: var(--dark-red);
  border-radius: 3rem 0 0 3rem;
  padding: 0.7rem 1.1rem;
  transition: all 200ms ease;
}
@media screen and (min-width: 769px) {
  .float_links a,
  .float_links button {
    max-width: 6rem;
    padding: 1rem 2rem;
  }
  .float_links a:hover,
  .float_links button:hover {
    max-width: 20rem;
  }
}
.float_links a span,
.float_links button span {
  color: white;
  margin-left: 2rem;
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Bebas Neue", sans-serif;
}
.float_links .whats::before {
  content: url("../images/ico-whats.svg");
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  transition: all 400ms ease;
  padding: 4rem 0;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
}
.header:not(.opened).scroll-down {
  transform: translateY(-100%);
}
.header.opened {
  background-color: rgba(0, 0, 0, 0.6);
}
.header_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header_logo svg {
  width: 16rem;
  height: 3.9rem;
}
@media screen and (max-width: 768px) {
  .header_logo svg {
    width: 8rem;
    height: auto;
  }
}
.header_logo svg path {
  fill: var(--red);
}
.header .menu_button {
  height: 2rem;
  width: 4rem;
}
.header .menu_button span,
.header .menu_button span:nth-child(2)::after,
.header .menu_button span:nth-child(2)::before {
  background-color: white;
}
@media screen and (max-width: 860px) {
  .header {
    padding: 1.5rem 0 !important;
  }
  .header_logoplaenge {
    display: none;
  }
  .header_logo {
    position: static;
    transform: none;
  }
  .header_logo img {
    width: 15rem;
    height: auto;
  }
}

.menu {
  position: fixed;
  top: 12.4rem;
  height: calc(100vh - 12.4rem);
  left: 0;
  z-index: 4;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  display: none;
  color: white;
}
@media screen and (max-width: 768px) {
  .menu {
    top: 7rem;
    height: calc(100vh - 7rem);
  }
}
.menu_title {
  font-size: 5.6rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2em;
  display: block;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .menu_title {
    font-size: 3.6rem;
  }
}
.menu_title::after {
  content: "";
  width: 20rem;
  height: 2px;
  background-color: white;
  margin: 4rem auto 2rem;
}
.menu_list a {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .menu_list a {
    font-size: 1.6rem;
  }
}
.menu_list a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
}
.hero::before {
  content: "";
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero_banner {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 860px) {
  .hero_banner {
    -o-object-position: top;
       object-position: top;
    height: 700px;
  }
}
.hero_content {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 27vh;
  left: 0;
}
@media screen and (max-width: 860px) {
  .hero_content {
    top: 15rem;
  }
}
.hero_title {
  font-size: 2.4rem;
  color: white;
  letter-spacing: 0.2em;
  line-height: 1.4em;
}
@media screen and (max-width: 860px) {
  .hero_title {
    font-size: 2.2rem;
  }
}
.hero_title strong {
  display: block;
  font-weight: 600;
}
.hero_title span {
  font-weight: 400;
  display: block;
}
.hero_form {
  background-color: var(--dark-blue);
  max-width: 34.3rem;
  padding: 2.5rem 3rem;
  color: white;
}
.hero_form_title {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1em;
  letter-spacing: 0.2em;
}
.hero_form .campo__input {
  background-color: transparent;
  border: solid 1px white;
  border-radius: 2.5rem;
  color: white;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 3.8rem;
}
.hero_form .campo__input.nome {
  background: url("../images/ico-nome.webp") no-repeat 1.3rem 0.8rem/1.7rem;
}
.hero_form .campo__input.email {
  background: url("../images/ico-cel.webp") no-repeat 1.6rem 0.9rem/1.3rem;
}
.hero_form .campo__input.phone {
  background: url("../images/ico-mail.webp") no-repeat 1.5rem 1.3rem/1.5rem;
}
.hero_form .campo label {
  font-size: 1.3rem;
}
.hero_form .button {
  border-radius: 2rem;
  background-color: white;
  color: var(--dark-blue);
  text-transform: uppercase;
  font-size: 1.6rem;
  text-align: center;
  display: table;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
}

.assinaturas {
  overflow: visible;
  padding: 0;
  background: url("../images/background/banner_tinta_projetistas.webp") no-repeat center bottom/cover;
  background-color: var(--dark-blue);
  background-attachment: fixed;
  color: white;
}
@media screen and (max-width: 860px) {
  .assinaturas {
    overflow: hidden;
    padding-bottom: 3rem;
  }
}
.assinaturas_container {
  position: sticky;
  top: 0;
  padding: 10rem 0 0 12.5%;
}
@media screen and (max-height: 700px) {
  .assinaturas_container {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_container {
    position: static;
    flex-direction: column;
    padding: 4rem 3rem 0;
    gap: 3rem;
  }
}
.assinaturas_col {
  width: 41rem;
  flex-shrink: 0;
  padding-bottom: 14rem;
}
@media screen and (max-width: 860px) {
  .assinaturas_col {
    width: 100%;
    padding-bottom: 0;
  }
}
.assinaturas_title {
  font-size: 3.5rem;
  margin-bottom: 1.4em;
  letter-spacing: 0.15em;
}
@media screen and (max-height: 700px) {
  .assinaturas_title {
    font-size: 2.7rem;
    margin-bottom: 1em;
    padding: 0 3rem;
  }
}
.assinaturas_texts {
  position: relative;
  min-height: 22rem;
}
@media screen and (max-height: 700px) {
  .assinaturas_texts {
    min-height: 18rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_texts {
    min-height: auto;
    overflow: hidden;
  }
}
.assinaturas_text_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  font-size: 1.8rem;
  line-height: 1.4em;
}
@media screen and (max-height: 700px) {
  .assinaturas_text_item {
    font-size: 1.4rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_text_item {
    position: relative;
    display: none;
    padding: 0;
  }
  .assinaturas_text_item.active {
    display: block;
    animation: fadeInText 0.4s ease forwards;
  }
}
.assinaturas_text_item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.assinaturas_text_item h3 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
  font-weight: 700;
}
@media screen and (max-height: 700px) {
  .assinaturas_text_item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8em;
  }
}
.assinaturas_text_item p + p {
  margin-top: 1em;
}
.assinaturas_text_item p {
  font-size: 1.4rem;
}
.assinaturas_text_item p i {
  font-size: 1.2rem;
}
.assinaturas_slider {
  flex: 1;
  padding: 10rem 0;
  overflow: hidden;
  align-self: flex-start;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  .assinaturas_slider {
    padding: 0;
    overflow: hidden;
    display: block;
    width: calc(100% + 6rem);
    margin-left: -3rem;
  }
}
.assinaturas_slider_inner {
  display: flex;
  gap: 15rem;
  align-items: center;
  padding: 0 5rem;
  transform: translateX(0);
  will-change: transform;
}
@media screen and (max-height: 700px) {
  .assinaturas_slider_inner {
    gap: 9rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_slider_inner {
    display: block;
    gap: 0;
    padding: 0;
    overflow: visible;
    transform: none;
    will-change: auto;
  }
}
.assinaturas_slider_item {
  flex: 0 0 auto;
  width: 29.5rem;
}
@media screen and (max-height: 700px) {
  .assinaturas_slider_item {
    width: 18.5rem;
  }
}
@media screen and (max-width: 860px) {
  .assinaturas_slider_item {
    width: auto;
    padding: 0 1rem;
  }
}
.assinaturas_slider_item img {
  aspect-ratio: 295/615;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.assinaturas_slider_item_name {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.assinaturas_slider_item_cargo {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
}
.assinaturas .slick-list {
  overflow: visible;
}
.assinaturas .slick-slide {
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.assinaturas .slick-slide.slick-active, .assinaturas .slick-slide.slick-current {
  opacity: 1;
}
.assinaturas .slick-slide img {
  width: 100%;
}
.assinaturas .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  padding: 2rem 0 1rem;
  margin: 0;
  bottom: -4.5rem;
}
.assinaturas .slick-dots li button {
  font-size: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid white;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.assinaturas .slick-dots li.slick-active button {
  background: white;
}

.conceito {
  background: url("../images/background/bk-intro.webp") no-repeat center/cover;
  background-color: var(--dark-blue);
  color: white;
  padding: 18rem 0;
}
@media screen and (max-width: 860px) {
  .conceito {
    padding: 6rem 0;
  }
}
.conceito_text {
  max-width: 50%;
  font-size: 1.8rem;
  line-height: 1.4em;
}
@media screen and (max-width: 860px) {
  .conceito_text {
    max-width: 100%;
    font-size: 1.6rem;
  }
}

.sobre {
  padding: 18rem 0;
}
@media screen and (max-width: 860px) {
  .sobre {
    padding: 6rem 0;
  }
}
.sobre_title {
  font-size: 3.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 860px) {
  .sobre_title {
    font-size: 2.6rem;
  }
}
.sobre_slider {
  margin: 0 -5rem 22rem;
}
@media screen and (max-width: 860px) {
  .sobre_slider {
    margin-bottom: 5rem;
  }
}
.sobre_slider .slick-list {
  overflow: initial;
}
.sobre_slider .slick-slide {
  margin: 0 5rem;
}
.sobre_slider .slick-arrow {
  filter: brightness(0) saturate(100%) invert(9%) sepia(22%) saturate(3551%) hue-rotate(206deg) brightness(92%) contrast(93%);
}
.sobre_slider .slick-arrow.slick-next {
  right: -1.5rem;
}
@media screen and (max-width: 860px) {
  .sobre_slider .slick-arrow.slick-next {
    right: 2.5rem;
  }
}
.sobre_slider .slick-arrow.slick-prev {
  left: -1.5rem;
}
@media screen and (max-width: 860px) {
  .sobre_slider .slick-arrow.slick-prev {
    left: 2.5rem;
  }
}
.sobre_slider_item {
  background: url("../images/background/bk-video.webp") no-repeat center/cover;
  background-color: #797878;
  padding: 5rem;
}
@media screen and (max-width: 860px) {
  .sobre_slider_item {
    padding: 3rem;
  }
}
.sobre_slider_item_row {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 860px) {
  .sobre_slider_item_row {
    flex-direction: column-reverse;
  }
}
.sobre_slider_item figure {
  max-width: 45%;
}
@media screen and (max-width: 860px) {
  .sobre_slider_item figure {
    max-width: 100%;
  }
}
.sobre_slider_item_image {
  aspect-ratio: 666/370;
  width: 100%;
  height: auto;
  display: block;
}
.sobre_slider_item_content {
  display: flex;
  flex-direction: column;
  color: white;
  align-items: flex-start;
}
.sobre_slider_item_content_title {
  font-size: 3.5rem;
  font-weight: 400;
}
.sobre_slider_item_content_text {
  line-height: 1.4em;
  font-size: 1.6rem;
}
.sobre_slider_item_content_button {
  margin: auto 0 0;
  color: var(--dark-blue);
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.6rem;
  background-color: white;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.sobre_slider_item_content_button::before {
  content: url("../images/ico-play.svg");
  width: 2rem;
  height: 2rem;
}
.sobre_row figure {
  max-width: 55%;
}
@media screen and (max-width: 860px) {
  .sobre_row figure {
    max-width: 100%;
  }
}
.sobre_row_image {
  aspect-ratio: 840/955;
  width: 100%;
  height: auto;
  display: block;
}
.sobre_row_content {
  color: var(--blue);
}
.sobre_row_content_text {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4em;
  white-space: pre-line;
}
.sobre_row_content_info {
  margin: auto 0 0 0;
  font-size: 1.8rem;
}
.sobre_row_content_info strong {
  font-size: 4rem;
  font-weight: 600;
}

.galeria_slider {
  position: relative;
}
.galeria_slider_caption {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 3rem;
  color: white;
  text-transform: uppercase;
  font-size: 1.8rem;
  text-align: center;
}
.galeria_slider .slick-arrow {
  top: unset;
  bottom: 1.1rem;
}
.galeria_slider .slick-prev {
  left: calc(50% - 20rem);
}
@media screen and (max-width: 860px) {
  .galeria_slider .slick-prev {
    left: 1rem;
  }
}
.galeria_slider .slick-next {
  right: calc(50% - 20rem);
}
@media screen and (max-width: 860px) {
  .galeria_slider .slick-next {
    right: 1rem;
  }
}
.galeria figure {
  position: relative;
}
.galeria img {
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
}

.filme {
  margin: 12rem 0 0;
}
.filme_title {
  font-size: 3.5rem;
  margin-bottom: 1.4em;
  letter-spacing: 0.15em;
  color: var(--dark-blue);
  font-weight: 600;
}
@media screen and (max-width: 860px) {
  .filme_title {
    font-size: 2.6rem;
    margin-bottom: 0.6em;
  }
}
.filme_thumb {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.5);
}
.filme_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.localizacao {
  padding: 14rem 0;
  background: linear-gradient(to bottom, #090b1b, #1a284c);
  color: white;
}
@media screen and (max-width: 860px) {
  .localizacao {
    padding: 6rem 0;
  }
}
.localizacao_infos p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5em;
}
.localizacao_infos_address {
  margin: auto 0 0 0;
}
.localizacao_infos_address p {
  font-weight: 300;
}
.localizacao_infos_address strong {
  font-weight: 500;
  line-height: 1.5em;
}
.localizacao_image {
  width: 66.6%;
  display: block;
  height: auto;
}
@media screen and (max-width: 860px) {
  .localizacao_image {
    width: 100%;
  }
}

.contato {
  padding: 14rem 0;
  position: relative;
  color: white;
  background: url("../images/galeria-externa/2.webp") no-repeat center/cover;
}
@media screen and (max-width: 860px) {
  .contato .container {
    justify-content: center;
  }
}
.contato::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.contato_form {
  position: relative;
  z-index: 2;
  max-width: 28rem;
}
.contato_form_title {
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.contato_form_field {
  background-color: transparent;
  border: solid 1px white;
  border-radius: 2rem;
  color: white;
  font-size: 1.6rem;
  padding: 1rem;
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
.contato_form label {
  font-size: 1.2rem;
}
.contato_form_button {
  border-radius: 2rem;
  background-color: white;
  color: var(--dark-blue);
  text-transform: uppercase;
  font-size: 1.6rem;
  text-align: center;
  display: table;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: url("../images/background/bk-footer.webp") no-repeat center bottom/cover;
  background-color: var(--dark-blue);
  padding: 7rem 0 20rem;
  color: white;
  position: relative;
}
.footer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer svg {
  width: 2rem;
  height: 2rem;
}
.footer svg path {
  fill: white;
}
@media screen and (max-width: 860px) {
  .footer_top {
    flex-direction: column-reverse;
  }
}
.footer_top {
  margin-bottom: 10rem;
}
.footer_line {
  height: 2px;
  flex: 1 1 100%;
  background-color: white;
}
@media screen and (max-width: 860px) {
  .footer_line {
    flex: initial;
    width: 15rem;
  }
}
.footer_social {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 860px) {
  .footer_social {
    margin: 0 auto;
  }
}
.footer_links {
  gap: 10rem;
}
@media screen and (max-width: 860px) {
  .footer_links {
    font-size: 2.2rem;
    gap: 3rem;
    text-align: center;
    flex-direction: column;
  }
}
.footer_links_title {
  font-size: 1.4rem;
  margin-bottom: 2em;
}
@media screen and (max-width: 860px) {
  .footer_links_title {
    margin-bottom: 0.8em;
  }
}
.footer_links ul {
  list-style: none;
}
.footer_links ul a {
  font-size: 1.2rem;
}
.footer_links ul a:hover {
  text-decoration: underline;
}

.loading-box {
  background-color: rgba(7, 17, 38, 0.688235);
}/*# sourceMappingURL=style.css.map */