/*
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  --black: #1F1F1F;
  --yellow: #EEB400;
  --yellow-link-hover: #ffd043;
  --yellow-shadow: rgba(240, 180, 0, 0.12);
  --white-second-text: #c3c3c3;
  --blurple: #5865f2;
}
@font-face {
  font-family: anton;
  src: url("../fonts/aAtmospheric.ttf");
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--black);
  color: white;
}
body#index {
  background-image: url('../img/mainCover.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.welcomer::before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  inset: 0;
  z-index: -10;
}
.welcomer #header {
  background-color: transparent;
}

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

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

section:not(.team, .supervision) img {
  border-radius: 20px;
  box-shadow: 0 0 29px 0 var(--yellow-shadow);
}
#booking img {
  transition: ease-out;
  transition-duration: 1s;
}
#booking img:hover {
  transform: scale(1.1);
}
#booking .row {
  justify-content: space-around;
}
.requirements ul {
  list-style: none;
  padding-left: 0;
}
.requirements ul:not(.packages) li {
  display: flex;
}
.requirements i {
  color: var(--yellow);
  padding-right: 5px;
}
.requirements h5 {
  color: var(--yellow);
}
.requirements .note {
  font-style: italic;
}
.requirements .packages .package {
  font-family: anton;
}
.requirements .packages li p {
  margin-left: 1.3rem;
}
@media screen and (max-width: 1200px) {
  #booking #media {
    padding-top: 30px;
  }
  #booking img:hover {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  #booking .section-title h2 {
    font-size: x-large;
  }
}
@media screen and (min-width: 1200px) {
  #booking .row {
    justify-content: space-evenly;
  }
}

.form-submit-desktop {
  display: block;
}
.form-submit-mobile {
  display: none;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .form-md-reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .form-mobile {
    margin: 0px auto;
    width: 90%;
  }
  .form-submit-desktop {
    display: none;
  }
  .form-submit-mobile {
    display: block;
  }
}

.breadcrumbs {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.btn-main {
  font-family: anton;
  background-color: var(--yellow);
  color: white;
}
.btn-main:hover {
  background-color: var(--yellow-link-hover);
  color: var(--black);
}

.feedback .row:not(.points) {
  justify-content: space-around;
  margin-bottom: 2rem;
}
.feedback .points .point {
  width: calc(100% / 10);
  text-align: center;
}
.feedback.support-app .points .point {
  width: calc(100% / 5);
}
.feedback .start, .feedback .end {
  display: flex;
  color: var(--yellow);
  text-align: center;
  justify-content: center;
  align-items: flex-end;
}
.feedback .start-end {
  display: none;
  color: var(--yellow);
  text-align: center;
}
.feedback .point label {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 576px) {
  .feedback .start, .feedback .end {
    display: none;
  }
  .feedback .start-end {
    display: flex;
    justify-content: space-between;
  }
}

.policies ::marker, .policies .marker {
  color: var(--yellow);
}

.staff {
  margin: 0 !important;
}
.staff > * {
  min-height: 100vh;
}
.staff .background-image {
  background-image: url('../img/staff/image_20.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.staff .login-form {
  min-height: auto;
  margin-top: calc(100vh * .25);
}
.staff .login-form .logo {
  align-items: center;
}
.staff .login-form .logo img {
  min-width: 150px;
  max-width: 150px;
}
.staff .login-form .logo h1 {
  width: fit-content;
  margin: 8px 0 0 0;
  font-size: 40px;
}
.staff .login-form .discord {
  background-color: var(--blurple);
  color: white;
  font-family: anton;
  width: 370px;
  border: 1px solid var(--blurple);
}
.staff .login-form .discord:hover {
  background-color: var(--black);
  color: var(--blurple);
}
.staff .login-form .apply p, .staff .login-form .logo a {
  width: fit-content;
}

.staff #footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: inherit;
}

@media screen and (max-width: 1200px) {
  .staff .background-image {
    display: none;
  }

  .staff #footer {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--yellow);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #fff;
}
.back-to-top:hover {
  background: var(--yellow-link-hover);
}
.back-to-top.active {
  visibility: visible;
  color: white;
  opacity: 1;
}
.back-to-top i {
  font-size: 28px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 22px 0;
  background: var(--black);
}
#header.header-scrolled {
  background-color: var(--black) !important;
  box-shadow: 0px 2px 15px var(--yellow-shadow);
  padding: 12px 0;
}

#header .logo a {
  display: flex;
  height: 100%;;
  align-items: center;
}
#header .logo h1 {
  display: inline-block;
  font-size: 30px;
  margin: 7px 0 0 0;
  padding: 0;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}

/*--------------------------------------------------------------
# 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;
  font-weight: 400;
  color: 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(--yellow-link-hover);
}

.navbar .getstarted, .navbar .getstarted:focus {
  background: var(--yellow);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--yellow-link-hover);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--black);
  box-shadow: 0px 0px 30px var(--yellow-shadow);
  transition: 0.3s;
  border-radius: 4px;
}
.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: var(--yellow-link-hover);
}

.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: 1825px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  padding-top: 1rem;
}
.mobile-nav-toggle.bi-x {
  color: var(--yellow);
}

@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(9, 9, 9, 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;
  border-radius: 8px;
  background-color: var(--black);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--yellow-link-hover);
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
  color: var(--yellow);
}

.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(--black);
  box-shadow: 0px 0px 30px var(--yellow-shadow);
}
.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: var(--yellow);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding-top: 15vh;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: white;
}
#hero h2 {
  color: var(--white-second-text);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .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: 50px;
  transition: 0.5s;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
#hero .btn-get-started:hover {
  background: var(--yellow-link-hover);
  color: black;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero-img img {
  border-radius: 20px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section:not(#hero, .clients, .partners) {
  padding: 60px 0;
  overflow: hidden;
  background-color: var(--black);
}

.section-bg {
  background-color: #1a1a1a !important;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: white;
}

.section-title h2::before,
.section-title h2::after,
.section-title h3::before,
.section-title h3::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}
.section-title h2::before, .section-title h3::before {
  margin: 0 15px 10px 0;
}
.section-title h2::after, .section-title h3::after {
  margin: 0 0 10px 15px;
}
.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
}
.clients .swiper {
  padding: 10px 0;
}
.clients .swiper-slide img {
  transition: 0.3s;
}
.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners .my-swiper-wrapper {
  display: flex;
  justify-content: space-evenly;
}
.partners img {
  max-width: 130px;
  max-height: 130px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li+li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--yellow);
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: var(--yellow);
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--yellow);
}
.about .content .btn-learn-more:hover {
  background: var(--yellow);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# supervision
--------------------------------------------------------------*/
.supervision .supervision-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.supervision .supervision-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.supervision .supervision-filters li:hover,
.supervision .supervision-filters li.filter-active {
  color: #fff;
  background: var(--yellow);
}
.supervision .supervision-filters li:last-child {
  margin-right: 0;
}

.supervision-card {
  background-color: var(--black);
  border: none;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--yellow);
  border-radius: 0;
}
.supervision-card img {
  min-height: 108px;
  max-height: 108px;
  width: 100%;
  overflow: hidden;
}

.supervision-card h5 a {
  color: white;
}

#supervision-events, #fetcher, #fetcher-error {
  display: none;
}
.supervision-active {
  display: flex !important;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .content {
  padding: 0;
}
.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: white;
}
.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}
.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: var(--yellow);
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-family: anton;
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  margin-left: 50px;
}
.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: var(--white-second-text);
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: var(--yellow);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .content .count-box a:hover {
  color: var(--yellow-link-hover);
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 70%;
  }
}
@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 0 29px 0 var(--yellow-shadow);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.services .icon-box::before {
  content: "";
  position: absolute;
  background: var(--yellow-shadow);
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}
.services .icon-box:hover::before {
  background: var(--yellow);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  transition: all 0.3s ease-in-out;
}
.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: black;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  font-family: anton;
}
.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: var(--black);
}
.services .icon-box:hover .icon {
  background: black;
}
.services .icon-box:hover .icon i {
  color: var(--yellow-link-hover);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(238, 180, 0, 0.078);
  position: relative;
  background: var(--black);
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--yellow);
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--yellow);
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--white-second-text);
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-second-text);
  opacity: 1;
  border: 1px solid var(--yellow);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--yellow-link-hover);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .row {
  justify-content: center;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
  background-color: var(--black);
}
.team .member .member-img img {
  width: 500px;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.team .member .social a i {
  line-height: 0;
}
.team .member .social a:hover {
  color: var(--yellow);
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background-color: var(--black);
  box-shadow: 0px -7px 15px 0px var(--yellow-shadow);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--color-primary);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yellow);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--yellow);
  position: relative;
  padding-bottom: 12px;
}

#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: var(--yellow);
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--yellow-link-hover);
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

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

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
