/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Lato", sans-serif;
}

/* Global Colors */
:root {
  --color-default: #212529;
  --color-default-rgb: 33, 37, 41;
  --color-background: #ffffff;
  --color-background-rgb: 255, 255, 255;
  --color-primary: #BC2521;
  --color-primary-rgb: 232, 69, 69;
  --color-secondary: #1D3159;
  --color-secondary-rgb: 50, 53, 58;
  --color-box-background: #ffffff;
  --color-box-background-rgb: 255, 255, 255;
  --color-inverse: #ffffff;
  --color-inverse-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --color-nav: #3a3939;
  --color-nav-hover: #BC2521;
  --color-nav-dropdown: #3a3939;
  --color-nav-dropdown-hover: #BC2521;
  --color-nav-dropdown-background: #ffffff;
  --color-nav-mobile-background: #ffffff;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #e03a3c;
  text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e03a3c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(126, 223, 16, 0.1);
}


/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #e03a3c;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# 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-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-secondary);
  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: #e03a3c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.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: #e03a3c;
}

.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: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e03a3c;
}

.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: #fff;
  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: #e03a3c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 600px;
  background-size: cover;
  position: relative;
  padding-bottom: 0;
  margin-top: 100px;
}

#home:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 10;
  left: 0;
  right: 0;
}

#home video {
  position: absolute;
  width: 100%;
  z-index: -10;
  bottom: 0;
}

#home h1 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #fff;
}

#home h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#home .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #e03a3c;
  border: 2px solid #e03a3c;
}

#home .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}

@media (max-width: 768px) {
  #home {
    text-align: center;
    padding-top: 10px;
    position: relative;
    height: 200px;
  }

  #home video {
    position: absolute;
    top: 0;
  }

  #home h1 {
    font-size: 28px;
  }

  #home h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #home {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e03a3c;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: linear-gradient(to right, #BC2521, 20%, #1D3159);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--color-secondary);
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #e03a3c;
  content: "/";
}

/*
  About
*/
.about {
  width: 100%;
  height: 550px;
  padding-top: 0;
  padding-bottom: 0;
}

.about .container {
  position: relative;
  z-index: 10;
}

.about img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about__div {
  display: flex;
}

.about__div-description {
  padding-top: 10em;
  margin-right: 2em;
}

.about__div-description h3 {
  color: var(--color-primary);
  font-weight: 800;
}

.about__div-description p {
  width: 850px;
}

.about__div-img img {
  width: 280px;
  height: auto;
  margin-top: 6em;
  border-radius: 1em;
  box-shadow: 4px 4px 10px var(--color-secondary);
}

@media (max-width: 768px) {
  .about {
    text-align: center;
    height: 510px;
    display: flex;
  }

  .about img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
  }

  .about__div {
    display: flex;
  }

  .about__div-description {
    padding-top: 5em;
  }

  .about__div-description h3 {
    width: 100%;
    padding-left: 2em;
  }

  .about__div-description p {
    text-align: justify;
    font-size: 15px;
    width: 75%;
    position: relative;
    display: block;
    margin-left: 60px;
  }

  .about__div-img img {
    display: none;
  }
}


/*
  Clients
*/
.clients {
  padding-top: 0;
  position: relative;
  width: 100%;
  height: 400px;
}

.clients .container {
  position: relative;
}

.clients img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -10;
}

.clients-examples {
  position: absolute;
  top: 0;
  padding-top: 3em;
  align-items: center;
}

.clients-examples h3 {
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding-top: 1em;
}

.clients-carousel {
  position: relative;
  width: 100%;
  margin-top: 1em;
}

.clients-slides {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
  width: 1296px;
}

.clients-example__div {
  margin-top: 2em;
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
}

.clients-example__div-div img {
  width: 220px;
  height: 150px;
  margin-left: 1em;
  margin-right: 1em;
  display: block;
  position: relative;
}

.clients-controls {
  position: relative;
  align-items: center;
  width: 1296px;
}

.prev-slide,
.next-slide {
  background: none;
  border: none;
  font-size: 40px;
  font-weight: 400;
  cursor: pointer;
  color: #fff;
}
.prev-slide {
  position: absolute;
  bottom: 60px;
}
.next-slide {
  position: absolute;
  left: 96%;
  bottom: 60px;
}

/* Ocultar los controles en dispositivos móviles si es necesario */
@media (max-width: 768px) {
  .clients {
    width: 100%;
    height: 75%;
  }

  .clients img {
    height: 75%;
  }

  .clients-examples h3 {
    margin: 0;
    padding: 0;
    font-size: 16px;
  }

  .clients-example__div-div {
    width: 200px;
    height: 120px;
    margin-left: 0.5em;
    margin-bottom: 7em;
  }

  .clients-example__div-div img {
    width: 150px;
    height: 130px;
    margin-left: 0.5em;
  }

  .clients-controls {
    display: none;
  }
}

/*
  Porque asociarse
*/
.associate {
  position: relative;
  display: flex;
}

.associate img {
  width: 480px;
  height: 330px;
  position: relative;
  display: block;
}

.associates-icons {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 2em;
  left: 25em;
}

.associate .associate-icon {
  display: block;
  border: solid 2px var(--color-secondary);
  background-color: #fff;
  margin: 5px;
  width: 130px;
  height: 118px;
}

.associate .associate-icon h4 {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 800;
  display: block;
  padding-top: 1em;
  padding-bottom: 0px;
  text-align: center;
}

.associate .associate-icon img {
  width: 90px;
  height: auto;
  padding-left: 2em;
}

.description {
  position: relative;
  display: block;
  padding-left: 10em;
}

.description h3 {
  color: var(--color-secondary);
  font-weight: 800;
}

.description ul {
  list-style: none;
}

.description ul li:before {
  content: '✓ ';
  color: var(--color-secondary);
  font-weight: 800;
}

.description-button h4 {
  margin-top: 2em;
  margin-left: 1em;
  color: var(--color-primary);
  font-weight: 600;
}

.description-button a {
  background-color: var(--color-secondary);
  color: #fff;
  margin-left: 2em;
  border-radius: 1em;
  border: solid 2px var(--color-secondary);
  text-align: center;
  padding-top: 5px;
  width: 140px;
  height: 40px;
}

.description-button a:hover {
  color: var(--color-secondary);
  background: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .associate {
    padding-top: 2em;
    display: block;
    width: 100%;
    height: 100%;
  }

  .associate img {
    width: 350px;
    height: 240px;
  }

  .associates-icons {
    top: 1.2em;
    left: 18em;
  }

  .associate .associate-icon {
    width: 85px;
    height: 78px;
  }

  .associate .associate-icon h4 {
    font-size: 10.5px;
    padding-top: 0.5em;
    display: block;
  }

  .associate .associate-icon img {
    width: 56px;
    height: auto;
    padding-left: 1.4em;
    padding-top: 0;
  }

  .description {
    position: relative;
    padding-top: 2em;
    padding-left: 1em;
  }
}

/*
  Records
*/
.records {
  position: relative;
  display: block;
}

.records-title h4 {
  color: var(--color-secondary);
  font-weight: 600;
  text-align: center;
}

.records-title__span {
  position: relative;
  display: block;
  width: 400px;
  height: 1px;
  background: var(--color-secondary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.records-boxes {
  display: flex;
  justify-content: center;
}

.records-boxes .records-boxes__div {
  width: 200px;
  height: 170px;
  border: solid 2px var(--color-secondary);
  margin-top: 2em;
  margin-left: 3em;
  box-shadow: 4px 4px 3px var(--color-secondary);
}

.records-boxes .records-boxes__div img {
  width: 175px;
  height: auto;
  display: block;
  padding-left: 2em;
}

.records-boxes .records-boxes__div span {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-secondary);
  display: block;
  text-align: center;
}

.records-boxes .records-boxes__div p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .records {
    position: relative;
    display: block;
  }
  .records-boxes{
    display: block;
    justify-content: center;
  }
  .records-boxes .records-boxes__div{
    margin-top: 1em;
    margin-left: 6em;
  }
 .records-boxes .records-boxes__div img {
  width: 165px;
  height: auto;
 }
}

/*
  Eventos o Noticias
*/
.events {
  position: relative;
  display: flex;
}

.events-title h4 {
  color: var(--color-secondary);
  font-weight: 800;
  text-align: center;
}

.events-boxes {
  display: flex;
  justify-content: center;
}

.events-boxes__div {
  width: 300px;
  height: 360px;
  position: relative;
  border: none;
  box-shadow: 2px 2px 10px var(--color-secondary);
  border-radius: 1em;
  margin: 2em;
}

.events-boxes__div img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1em;
}

.events-boxes__div h5 {
  padding-top: 1em;
  width: 100%;
  height: auto;
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 600;
  padding-left: 1em;
  padding-right: 1em;
}

.events-boxes__div p {
  padding-top: 0.5em;
  color: var(--color-secondary);
  font-size: 12px;
  padding-left: 2em;
}

@media (max-width: 768px) {
  .events {
    position: relative;
    display: block;
  }
  .events-boxes {
    display: block;
  }
  .events-boxes__div {
    height: 320px;
  }
  .events-title h4 {
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 18px;
    text-align: center;
  }
  .events-boxes__div h5 {
    font-size: 20px;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}



/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #e03a3c;
}

.tabs .nav-link.active {
  background: #e03a3c;
  color: #fff;
  border-color: #e03a3c;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e03a3c;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 0.3s;
  position: relative;
}

.services .icon-box:hover {
  background: #2b2b2b;
}

.services .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: #e03a3c;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Associate Now
--------------------------------------------------------------*/
.joinus {
  width: 100%;
  color: #fff;
  position: relative;
  display: flex;
  background: linear-gradient(to right, #BC2521, 20%, #1D3159);
  margin-top: 1em;
  margin-bottom: 1px;
}

.joinus h2 {
  font-weight: 800;
  text-align: center;
  margin-bottom: 1em;
}

.joinus-contact__div h3 {
  font-weight: 800;
}

.joinus-info__div {
  align-items: center;
  display: flex;
  padding-left: 2em;
}

.joinus-info__div i {
  font-size: 24px;
}

.joinus-info__div p {
  margin-left: 10px;
  padding-top: 1em;
}

.joinus-form__div input {
  margin-top: 1em;
  background: none;
  color: #fff;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #fff;
  transition: none;
  outline: none;
  position: relative;
}

.joinus-form input::placeholder {
  color: #fff;
}

.joinus-form input:focus {
  background: transparent;
  color: #fff;
  border: none;
}

.joinus-form button {
  margin-top: 2em;
  color: #fff;
  background-color: var(--color-primary);
  width: 200px;
  height: 40px;
  border-radius: 1em;
  border: none;
  font-weight: 400;
  font-size: 14;
  text-align: center;
}

.joinus-form button:hover {
  border: solid 1px #fff;
  background: transparent;
  color: #fff;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: var(--color-secondary);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: linear-gradient(to right, #BC2521, 20%, #1D3159);
  margin-bottom: 1px;
}

.footer-span{
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c;
}

#footer .footer-top .footer-contact p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .footer-contact i {
  margin-top: 1em;
  margin-left: 2em;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e03a3c;
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #e35052;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links {
  position: relative;
  flex-direction: column;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #e03a3c;
  color: #fff;
  text-decoration: none;
}