:root {
  --primary: #C1A14D;
  --secondary: #E5CF81;
  --black: #171717;
  --dark: #1E1E1E;
  --gray: #3F3F3E;
  --white: #fff;
  --btn-whatsapp: #4EBF61;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--dark);
  cursor: url('../img/icon/arrow-point.svg') 15 15, move;
  overflow-x: hidden;
}

a[href], input[type='submit'], input[type='checkbox'], input[type='image'], label[for], select, button {
  cursor: url('../img/icon/arrow-click.svg') 15 15, move !important;
}

a {
  text-decoration: none;
  color: var(--primary);
}

a:hover {
  color: var(--secondary);
  text-decoration: none;
}

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

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background-color: #040405;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 8px
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  background: transparent;
}

#header.header-scrolled {
  padding: 10px 0;
  background: var(--black);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  max-height: 55px;
}

@media (max-width: 768px) {
  #header .logo img {
    max-height: 40px;
  }
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--white);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: var(--white);
}

.navbar .getstarted, .navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: var(--white);
  border: 1px solid var(--primary);
  background-image: linear-gradient(to right, var(--dark), var(--primary));
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 29px var(--primary);
  color: white;
  border: 1px solid var(--primary);
  padding: 6px 30px;
}

/* .navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: #5a5af3;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
} */

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--white);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(193, 161, 77, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--dark);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
  color: var(--primary);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

/* .navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
  color: #5a5af3;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../img/background/bg-hero.png') no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: relative;
}

/* Estilos para monitores com proporção de 21:9 (resolução 2560x1080 pixels) */
@media screen and (min-aspect-ratio: 21/9) and (min-width: 2560px) {
  #hero {
    background: url('../img/background/bg-hero-uw.png') no-repeat;
    background-position: center bottom;
  }
}

/* Estilos para monitores com proporção de 32:9 (resolução 3840x1080 pixels) */
@media screen and (min-aspect-ratio: 32/9) and (min-width: 3840px) {
  #hero {
    background: url('../img/background/bg-hero-uw.png') no-repeat;
    background-position: center bottom;
  }
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -2px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

#hero span {
  color: var(--primary);
}

#hero p {
  font-size: 18px;
  line-height: 23px;
  color: var(--white);
}

#hero .img-mobile {
  display: none;
}

.btn-get-started {
  border: 1px solid var(--primary);
  font-size: 17px;
  background-image: linear-gradient(to right, var(--dark), var(--primary));
  padding: 17px 40px;
  margin-top: 15px;
  color: var(--white);
  border-radius: 14px;
  cursor: pointer;
  transition: .5s;
  text-align: center;
}

.btn-get-started:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 29px var(--primary);
  color: white;
  border: 1px solid var(--primary);
  padding: 17px 45px;
}

/* .btn-get-started, .btn-get-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 50px;
  transition: 0.5s;
}

.btn-get-started {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
}

.btn-get-started:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-get-quote {
  color: #5a5af3;
  border: 2px solid #5a5af3;
}

.btn-get-quote:hover {
  background: #5a5af3;
  color: var(--white);
} */

@media (max-width: 768px) {
  #hero {
    height: 100%;
    background-position: center left;
    /* background-size: cover; */
    display: block !important;
    align-items: initial !important;
  }

  section#hero {
    padding: 0;
  }

  #hero .container {
    padding-top: 100px;
  }

  #hero h1 {
    font-size: 35px;
    line-height: 45px;
  }

  #hero .img-mobile {
    display: block;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #eeeef5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
  color: var(--white);
}

.section-title h2>span {
  color: var(--primary);
}

.section-title p {
  margin-bottom: 0;
}

.waves {
  background-image: url(../img/lines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 35px;
  }
}

/* .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5a5af3;
  bottom: 0;
  left: calc(50% - 25px);
} */

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/
.bg-left {
  /* padding: 100px 0; */
  background: url('../img/background/bg-left.png') no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-right {
  /* padding: 100px 0; */
  background: url('../img/background/bg-right.webp') no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-aspect-ratio: 21/9) and (min-width: 2560px) {
  .bg-left {
    background: url('../img/background/bg-left-uw.webp') no-repeat;
    background-position: center center;
  }

  .bg-right {
    padding: 100px 0;
    background: url('../img/background/bg-right-uw.webp') no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

@media screen and (min-aspect-ratio: 32/9) and (min-width: 3840px) {
  .bg-left {
    background: url('../img/background/bg-left-uw.webp') no-repeat;
    background-position: center center;
  }

  .bg-right {
    padding: 100px 0;
    background: url('../img/background/bg-right-uw.png') no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  width: 100%;
}

.features .container {
  background-color: #151515;
  border: 1px solid #1f1f1f;
  height: 99%;
  padding: 40px;
  border-radius: 4px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transition: all 1s ease 0s, opacity 2s cubic-bezier(0.5, 0, 0, 1) 0s, transform 2s cubic-bezier(0.5, 0, 0, 1) 0s;
}

.features .container:hover {
  border: 1px solid var(--secondary);
}

.features .card {
  background: transparent;
  border: none;
}

.features .card .card-body {
  text-align: center;
  color: var(--white);
}

.features .card i {
  font-size: 35px;
  color: var(--secondary);
}

.features .card-body h3 {
  padding: 8px 0px;
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

.features .card-body p {
  padding: 8px 0px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2em;
  color: var(--white);
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
    background-image: none;
  }

  /* .features .container {
    width: 90%;
  } */
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  width: 100%;
}

.services .card {
  height: 99%;
  padding: 10px;
  background-color: #151515;
  border: 1px solid #1f1f1f;
  border-radius: 4px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transition: all 1s ease 0s, opacity 2s cubic-bezier(0.5, 0, 0, 1) 0s, transform 2s cubic-bezier(0.5, 0, 0, 1) 0s;
}

.services .card:hover {
  border: 1px solid var(--secondary);
}

.services .card h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: var(--primary);
}

.services .card p {
  flex-grow: 1;
}

.services .card .card-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--primary);
}

.services .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
    background-image: none;
  }

  /* .services .container {
    width: 90%;
  } */
}


/*--------------------------------------------------------------
# Etapas
--------------------------------------------------------------*/
/* .features {
  width: 100%;
  height: 100vh;
  background: url('../img/background/bg-hero2.png') no-repeat;
  background-position: center center;
  background-size: cover;
}

.features .card {
  background-color: #151515;
  border: 1px solid #1f1f1f;
  height: 99%;
  padding: 10px;
  border-radius: 4px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transition: all 1s ease 0s, opacity 2s cubic-bezier(0.5, 0, 0, 1) 0s, transform 2s cubic-bezier(0.5, 0, 0, 1) 0s;
}

.features .card:hover {
  border: 1px solid var(--secondary);
}

.features .card .card-body {
  text-align: center;
  color: var(--white);
}

.features .card i {
  font-size: 25px;
  color: var(--secondary);
}

.features .card-body h3 {
  padding: 8px 0px;
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

.features .card-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2em;
  color: var(--white);
} */

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
  background: url('../img/background/bg-about.png') no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-aspect-ratio: 21/9) and (min-width: 2560px) {
  .about {
    padding: 200px 0;
    background: url('../img/background/bg-about-uw.webp') no-repeat;
    background-position: center center;
  }
}

@media screen and (min-aspect-ratio: 32/9) and (min-width: 3840px) {
  .about {
    padding: 200px 0;
    background: url('../img/background/bg-about-uw.webp') no-repeat;
    background-position: center center;
  }
}

.about .content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 20px;
}

.about .content h2>span {
  color: var(--primary);
}

.about .content p {
  font-size: 16px;
  text-align: justify;
}


@media (max-width: 768px) {
  .about {
    padding: 40px 0;
    background-image: none;
    /* margin: 0 20px; */
  }

  .about .content h2 {
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 100px 0;
}

.testimonials .swiper {
  width: 100%;
  height: 100%;
  padding: 0 50px;
}

.testimonials .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: transparent;
}

.testimonials .swiper-button-prev img,
.testimonials .swiper-button-next img {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .testimonials {
    background-image: none;
    /* margin: 0 20px; */
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .section-title h3 {
  font-size: 85px;
  font-weight: 700;
  color: var(--primary);
  line-height: 0;
  z-index: 1;
}

.faq .section-title h2 {
  z-index: 2;
  line-height: 35px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #1f1f1f;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #151515;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  color: var(--white);
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--primary);
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: var(--white);
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: var(--white);
}

.faq .faq-list .collapsed:hover {
  color: var(--primary);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
    background-image: none;
    /* margin: 0 20px; */
  }

  .faq .faq-list .question {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Call action
--------------------------------------------------------------*/
.call-action {
  padding-top: 80px;
  text-align: center;
}

.call-action h3 {
  font-size: 30px;
}

/*--------------------------------------------------------------
# Score
--------------------------------------------------------------*/
.subpage-hero {
  padding-top: 100px;
}

.subpage-hero .section-title {
  padding-bottom: 10px;
}

.subpage-hero .card,
.documentacao .card,
.cadin .card {
  background-color: #151515;
  border: 1px solid #1f1f1f;
  height: 99%;
  padding: 40px;
  border-radius: 4px;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transition: all 1s ease 0s, opacity 2s cubic-bezier(0.5, 0, 0, 1) 0s, transform 2s cubic-bezier(0.5, 0, 0, 1) 0s;
}

.subpage-hero .card:hover {
  border: 1px solid var(--secondary);
}

.requisito .card {
  background-color: transparent;
  border: 1px solid var(--white);
  height: 99%;
  width: 100%;
}

.requisito i {
  font-size: 35px;
  margin-right: 15px;
  color: var(--secondary);
}

.documentacao .card {
  height: 100%;
  padding: 0;
}

.documentacao .card h2 {
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.documentacao .section-title p {
  width: 75%;
}

.documentacao .card:hover {
  background-color: var(--primary);
}

.documentacao .card:hover h2 {
  color: var(--white);
}

.tabela img {
  margin-top: -40px;
}

@media (max-width: 768px) {
  #main {
    margin: 15px;
  }

  /* .subpage-hero .container {
    width: 90%;
  } */

  .subpage-hero .card {
    padding: 0;
  }

  /* .requisito,
  .documentacao,
  .tabela{
    margin: 0 20px;
  } */

  .requisito .section-title h2 {
    font-size: 30px;
  }

  .documentacao .section-title p {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Cadin
--------------------------------------------------------------*/
.cadin .card {
  height: 100%;
  padding: 0;
}

.cadin .card:hover {
  border-color: var(--primary);
}

.cadin .card h2 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: var(--primary);
}

/* @media (max-width: 768px) {
  .cadin .container {
    width: 90%;
  }
} */

/*--------------------------------------------------------------
# Revisão financiamento
--------------------------------------------------------------*/
.revisao-infos .number {
  font-size: 50px;
  font-weight: 700;
  margin-right: 15px;
  color: var(--primary);
}

.revisao-infos .card {
  background-color: transparent;
  border: 1px solid var(--white);
  height: 99%;
  width: 100%;
}

.revisao-infos .card h3 {
  font-size: 22px;
  color: var(--primary);
  margin: 10px 0 15px 0;
}

@media (max-width: 768px) {
  .revisao-infos {
    text-align: center;
  }

  .revisao-infos .number {
    display: none;
  }
}

/*--------------------------------------------------------------
# Garantia
--------------------------------------------------------------*/
.garantia .section-title h2 {
  margin-bottom: 0;
}

.garantia .section-title h2>span {
  font-size: 55px;
}

.garantia .bi-star-fill {
  color: var(--primary);
  font-size: 25px;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal {
  position: fixed;
  top: 20%;
}

.modal .modal-title {
  color: var(--primary);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
}

.modal .modal-content {
  background-color: var(--black);
}

.modal .btn-close {
  background: transparent url('../img/close.svg') center/1em auto no-repeat;
}

.modal .modal-body .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--white);
  font-size: 14px;
  font-weight: 300;
}

.modal .modal-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.modal .btn-get-started {
  padding: 10px 20px;
  width: 100%;
  font-size: 16px;
}

.modal .modal-body .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(193, 161, 77, 0.25);
}

.modal .modal-body .form-control:valid {
  color: var(--white);
}

@media (max-width: 768px) {
  .modal {
    padding: 20px;
  }

  .modal .modal-title {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 60px 0 0 0;
  background: url('../img/background/bg-footer.webp') no-repeat;
  background-position: center bottom;
  background-size: cover;
}

@media screen and (min-aspect-ratio: 21/9) and (min-width: 2560px) {
  #footer {
    background-position: center center;
  }
}

@media screen and (min-aspect-ratio: 32/9) and (min-width: 3840px) {
  #footer {
    background-position: center center;
  }
}

#footer .footer-top {
  padding: 60px 0 10px 0;
}

#footer .footer-top .row {
  padding: 30px;
  border-bottom: 1px solid var(--primary);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .copyright {
  font-size: 16px;
}

#footer .credits {
  padding-top: 5px;
  font-size: 14px;
  font-weight: 300;
}

#footer .credits a {
  transition: 0.3s;
}

#footer .social-links a {
  font-size: 35px;
  display: inline-block;
  color: var(--white);
  line-height: 1;
  margin-right: 10px;
}

#footer .social-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  #footer {
    padding: 0;
  }
}