@charset "UTF-8";
*,
*:after,
*:before {
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
 * Body
 * --------------------------------------------------
 */
body {
  font-family: var(--body-family);
  font-weight: 400;
  color: var(--white-color);
  font-size: 100%;
  line-height: var(--main-line-height);
  position: relative;
}

/*
  * Default links
  * --------------------------------------------------
*/
a {
  outline: 0;
}

a img {
  border: 0px;
  text-decoration: none;
}

a:link,
a:visited,
a:active {
  color: var(--white-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

a:hover {
  color: var(--link-color);
  text-decoration: none;
  text-shadow: var(--text-shadow-white);
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top: 1px solid rgba(133, 133, 133, .5);
  padding: .01rem 0;
  margin: 35px 0;
}

/*
  * Text Selection
  * --------------------------------------------------
*/
::selection {
  background: var(--selection-body);
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

::-moz-selection {
  background: var(--selection-body);
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

/*
 * Start headings
 * --------------------------------------------------
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font-family);
  line-height: var(--main-line-height);
}

h1,
.h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2,
.h2 {
  font-size: 2rem;
  font-weight: 900;
}

h3,
.h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

h4,
.h4 {
  font-size: 1.5rem;
  font-weight: 700;
}

h5,
.h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6,
.h6 {
  font-size: 1rem;
  font-weight: 500;
}
.half-screen{
  width: 100%;
  background-color: transparent;
}
/*
 * Text Logo
 * --------------------------------------------------
 */
.logo {
  font-family: var(--logo-font-family);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: .8;
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
  z-index: 1101 !important;
}

.logo span {
  font-weight: 400;
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

.logo a {
  color: var(--white-color);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.logo a:hover {
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

/*
 * Menu offcanvas
 * --------------------------------------------------
 */

.white-shadow {
  -webkit-box-shadow: 0 0 20px var(--white-color);
  box-shadow: 0 0 20px var(--white-color);
}

.mobile-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh !important;
  z-index: 1100 !important;
  width: 50vw;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform: translateX(-100%);
  border-radius: 0;
  display: block;
  background-color: var(--bg-canvas) !important;
}

.mobile-offcanvas.show {
  visibility: visible;
  transform: translateX(0);
}
.screen-overlay {
  height: 100%;
  z-index: 30 !important;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.2s linear, visibility 0.1s, width 1s ease-in;
}

.screen-overlay.show {
  transition: opacity 0.5s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.navbar-nav {
  padding-left: 5rem;
  padding-top: 4rem;
  position: absolute;
  top: 2rem;
  left: 4rem;
}

.navbar .dropdown-menu {
  max-width: 100%;
}

.mobil-nav {
  display: block !important;
}

.container-hamburger {
  display: inline-block;
  cursor: pointer;
  background-color: var(--black-color);
  padding: .9rem 1.07rem;
  border-radius: 50% !important;
  z-index: 1101 !important;
}

nav .hamburger1,
nav .hamburger2,
nav .hamburger3 {
  width: 25px;
  height: 2px;
  background-color: var(--white-color);
  margin: 6px 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

nav .hamburger2 {
  width: 15px;
}

nav .hamburger3 {
  width: 10px;
}

nav .change .hamburger1 {
  -webkit-transform: rotate(-40deg) translate(-6px, 6px);
  transform: rotate(-40deg) translate(-6px, 6px);
}

nav .change .hamburger2 {
  opacity: 0;
}

nav .change .hamburger3 {
  -webkit-transform: rotate(40deg) translate(-5px, -5px);
  transform: rotate(40deg) translate(-5px, -5px);
  width: 100%;
}

.left-screen-content {
  height: 100vh;
  overflow: auto;
  background-color: var(--black-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 20;
}


.left-screen,
.right-screen {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
}

/*
 * Hero
 * --------------------------------------------------
 */
.hero {
  height: 100%;
}

.hero-content {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.hero-content h1 {
  font-weight: 900;
  color: var(--white-color);
  font-size: 3rem;
  text-transform: capitalize;
  text-shadow: rgba(0, 0, 0, 0.3);
}

.hero-content h1 a {
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.hero-content h1 a:hover {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

/*
 * Hero footer
 * --------------------------------------------------
 */
.hero-footer {
  margin-top: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.hero-footer .hero-footer-link {
  margin-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.hero-footer .hero-footer-link p {
  font-family: var(--heading-font-family);
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 0;
  font-size: 1rem;
}

.hero-footer .hero-footer-link p a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

.hero-footer .hero-footer p a:hover {
  color: var(--link-color);
}


.hero-footer .hero-footer-link p a:hover.redirect-link i,
.hero-footer .hero-footer-link p a:active.redirect-link i {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  color: var(--white-color);
}

.hero-footer .hero-footer-link p a:hover {
  color: var(--link-color);
}

.hero-footer .hero-footer-link p a i {
  margin-left: 6px;
}

.hero-footer .hero-footer-link p a i:before {
  vertical-align: bottom;
}

.hero-footer .hero-footer-link p a.redirect-link i {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.55, 0.4, 2.1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.55, 0.4, 2.1) 0s;
  transition: transform 0.3s cubic-bezier(0.25, 0.55, 0.4, 2.1) 0s;
  transition: transform 0.3s cubic-bezier(0.25, 0.55, 0.4, 2.1) 0s, -webkit-transform 0.3s cubic-bezier(0.25, 0.55, 0.4, 2.1) 0s;
  margin-left: 5px;
}

.hero-auto {
  margin-top: auto;
  margin-bottom: auto;
}

/* Asegura que los elementos no se envuelvan */
.social-buttons, .post-navigation {
  flex-wrap: nowrap;
}

/* Efectos hover para mejor interactividad */
.nav-arrow:hover .nav-image {
  transform: scale(1.05);
  border-color: rgba(255,255,255,0.5) !important;
}

.nav-arrow:hover .nav-arrow-icon {
  transform: scale(1.2);
  color: #fff;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
  .hero-footer > div {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .social-buttons {
    justify-content: center !important;
  }
  
  .post-navigation {
    justify-content: center;
  }
}

.portada {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  margin-bottom: 20px;
}

.portada h2 {
  font-size: 2.5rem!important;
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.1;
  text-transform: capitalize;
  margin: 1.7rem 0;
}

.portada h2 span {
  font-weight: 900;
  font-size: 3.8rem!important;
  color: var(--portada-links);
  text-shadow: var(--text-shadow-black);
}

.portada h2 a,
.portada h3 a {
  color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.portada h2 a:hover,
.portada h3 a:hover {
  color: rgba(255, 255, 255, 0.6);
  text-shadow: var(--text-shadow-black);
}

.portada h2 a span,
.portada h3 a span {
  color: var(--portada-links);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: inline-block;
}

.portada h2 a:hover span,
.portada h3 a:hover span {
  color: rgba(24, 142, 244, 0.6);
  text-shadow: var(--text-shadow-black);
}

.portada h3 {
  text-align: right;
  font-size: 2.5rem!important;
  color: var(--white-color);
  text-shadow: 1px 1px 16px rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.1;
  text-transform: capitalize;
  margin: 1.7rem 0;
}

.portada h3 span {
  font-weight: 700;
  font-size: 3.5rem!important;
  color: var(--portada-links);
  text-shadow: var(--text-shadow-black);
}
/*
 * Lado Derecho
 * --------------------------------------------------
 */
.right-content {
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;

}
.right-content .container {
  max-width: 800px;
}

.contentainer-box {
  padding: 30px 30px 0 30px;
  margin-bottom: 30px;
}

/*
 * Search
 * --------------------------------------------------
 */
.search_nav {
  position: relative;
  width: 100%;
}

.search_nav .form-control {
  border-width: 2px;
  margin-right: 1px;
  background-color: var(--black-color);
  border-color: #333333;
  box-shadow: 0 0 40px rgba(0, 0, 0, .05);
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, .05);
  padding: 30px 30px;
  padding-right: 130px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  display: inline-block;
  width: 100%;
  font-size: .9rem;
  color: var(--white-color);
}
.search_nav .form-control::placeholder {
  color: var(--white-color);
  opacity: .7; /* Firefox */
}

.search_nav .form-control:hover {
  border: 2px solid #333333;
}

.search_nav .form-control:focus {
  border-color: var(--main-color);  
}

.search_nav .form-control,
.search_nav .btn {
  height: 52px;
}

.search_nav .btn {
  padding-left: 13px;
  padding-right: 13px;
  position: absolute;
  right: 8px;
  top: 6px;
  width: 52px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background-color: var(--main-color);
}
/*
 * Post hero styles
 * --------------------------------------------------
 */
 .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  padding-right: 0;
  margin-top: -15px;
  margin-bottom: 0;
}

.post-meta li {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 25px;
  margin-top: 1rem;
  color: var(--white-color);
}

.post-meta li:last-child {
  margin-right: 0;
}

.post-meta li span {
  margin-right: 10px;
}

/*
 * Breadcrumb
 * --------------------------------------------------
 */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: rem 0;
}

.breadcrumb .breadcrumb-item {
  font-size: 1rem;
  font-weight: 300;
  padding-left: 0;
  padding-right: .5rem;
  color: white;
  text-shadow: var(--text-shadow-black);
}

.breadcrumb .breadcrumb-item a {
  color: var(--link-color);
  text-shadow: var(--text-shadow-black);
}

.breadcrumb .breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .breadcrumb-item.active {
  font-weight: 900;
  color: var(--white-color);
}

.breadcrumb .breadcrumb-item+.breadcrumb-item:before {
  color: var(--white-color);
  font-size: var(--font-size)
}

.breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
/*
 * Page hero estyles
 * --------------------------------------------------
 */
.page-hero {
  height: 100%;
}

.page-hero-content {
  height: 100%;
}

/* Contenido principal alineado a izquierda */
.page-hero-main {
  max-width: 800px;
  margin-right: auto;
}

/* Navegación entre posts centrada */
.post-navigation {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.nav-arrow {
  color: white;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  opacity: 0.9;
}

.nav-image {
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.nav-arrow:hover .nav-image {
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.05);
}

.nav-arrow-icon {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.nav-arrow:hover .nav-arrow-icon {
  color: #fff;
  transform: scale(1.2);
}

/* Icono de calendario */
.fa-calendar-day {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}
/*
 * Blog List A (Desde nuestro blog)
 * --------------------------------------------------
 */
.blog-list {
  overflow: hidden;
  margin: 1.6rem 0;
}

.blog-list .blog-list-thumb {
  width: 100%;
  overflow: hidden;
}

.blog-list .blog-list-thumb a {
  display: inline-block;
  overflow: hidden;
}

.blog-list .blog-list-thumb .blog-list-number {
  position: absolute;
  right: 0;
  top: 0;
}

.blog-list .blog-post h3 {
  font-size: 2rem!important;
  color: var(--white-color);
  line-height: 1.2;
  font-weight: 700!important;
  text-shadow: var(--text-shadow-black);
  text-transform: capitalize;
}

.blog-list .blog-post h3 a {
  padding-bottom: 5px;
  color: var(--white-color);
  text-decoration: none;
  background: -webkit-linear-gradient(var(--link-color), var(--main-color)) bottom / 0 .1em no-repeat;
  background: linear-gradient(var(--link-color), var(--main-color)) bottom / 0 .1em no-repeat;
  background-position: left bottom;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  text-shadow: var(--text-shadow-black);
}

.blog-list .blog-post h3 a:hover {
  color: var(--white-color);
  background-size: 100% .1em;

}

.blog-list .blog-list-content p {
  font-size: var(--font-size);
  line-height: var(--main-line-heighte);
  color: var(--white-color);
  font-weight: 400;
  opacity: 0.8;
}

.blog-list img {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  width: 100%;
}

.blog-list:hover img {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}
.blog-list .read-more {
  text-shadow: var(--text-shadow-black);
}
.blog-list .read-more a {
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

.blog-list .read-more a:hover {
  color: var(--main-color);
}

/*
 * Blog List B (Categorías destacadas)
 * --------------------------------------------------
 */
.blog-list_b {
  overflow: hidden;
  margin: 1.6rem 0;
}

.blog-list_b .blog-list-thumb_b {
  width: 100%;
  overflow: hidden;
}

.blog-list_b .blog-list-thumb_b a {
  display: inline-block;
  overflow: hidden;
}

.blog-list_b .blog-list-thumb_b .blog-list-number_b {
  position: absolute;
  top: 0;
  bottom: 0;
}

.blog-list_b .blog-post_b h3 {
  color: var(--white-color);
  font-size: 2.5rem!important;
  line-height: 1.3;
  font-weight: 700;
  text-shadow: var(--text-shadow-black);
}

.blog-list_b .blog-post_b h3 a {
  padding-bottom: 5px;
  color: var(--white-color);
  text-decoration: none;
  background: -webkit-linear-gradient(#9e88bd, var(--main-color)) bottom / 0 .1em no-repeat;
  background: linear-gradient(#9e88bd, var(--main-color)) bottom / 0 .1em no-repeat;
  background-position: right bottom;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  text-shadow: var(--text-shadow-black);
}

.blog-list_b .blog-post_b h3 a:hover {
  color: var(--white-color);
  background-size: 100% .1em;
}

.blog-list_b .blog-list-content_b p {
  font-size: var(--font-size);
  line-height: var(--main-line-height);
  color: var(--white-color);
  font-weight: 400;
  opacity: 0.7;
}

.blog-list_b img {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  width: 100%;
}

.blog-list_b:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-list_b .read-more a {
  color: var(--black-color);
}

.blog-list_b .read-more a:hover {
  color: var(--main-color);
}

/*
 * Blog Featured (Destacado del blog)
 * --------------------------------------------------
 */
.featured-item {
  overflow: hidden;
  margin: 1.4rem 0;
}


.featured-item .featured-thumb {
  overflow: hidden;
}

.featured-item img {
  -webkit-transition: transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out;
  width: 100%;
}

.featured-item:hover img {
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
}

.featured-item .featured-meta {
  text-align: center;
  padding: 20px 0;
  width: 100%;
}

.featured-item .featured-meta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 15px 0;
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

.featured-item .featured-meta h2 a {
  padding-bottom: 5px;
  color: var(--white-color);
  text-decoration: none;
  background: -webkit-linear-gradient(var(--link-color), var(--main-color)) bottom / 0 .1em no-repeat;
  background: linear-gradient(var(--link-color), var(--main-color)) bottom / 0 .1em no-repeat;
  background-position: right bottom;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  text-shadow: var(--text-shadow-black);
}

.featured-item .featured-meta h2 a:hover {
  color: var(--white-color);
  background-size: 100% .1em;

}

.featured-item .featured-meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-item .featured-meta ul li {
  display: inline-block;
  color: var(--white-color);
  ;
  font-size: .7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: var(--text-shadow-black);
}

.featured-item .featured-meta ul li span {
  font-weight: 300;
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

.featured-item .featured-meta ul li a {
  display: block;
  position: relative;
  padding: 0 8px;
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
}

.featured-item .featured-meta.caption {
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

/*
 * Top Social
 * --------------------------------------------------
 */
 .social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.social-buttons__button {
  margin: 10px 15px 5px 0;
}

.social-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  outline: none;
  width: 30px;
  height: 30px;
  text-decoration: none !important;
}

.social-button__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 100%;
  background:#333333;
  text-align: center;
}

.social-button i,
.social-button svg {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.social-button i {
  font-size: var(--font-size);
}

.social-button svg {
  height: 40%;
  width: 40%;
}

.social-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  transition: 0.3s;
}

.social-button:focus,
.social-button:hover {
  color: var(--white-color);
}

.social-button:focus::after,
.social-button:hover::after {
  width: 100%;
  height: 100%;
  margin-left: -50%;
}

.social-button--mail {
  color: #0072c6;
}

.social-button--mail::after {
  background: #0072c6;
}

.social-button--facebook {
  color: #3b5999;
}

.social-button--facebook::after {
  background: #3b5999;
}

.social-button--linkedin {
  color: #0077b5;
}

.social-button--linkedin::after {
  background: #0077b5;
}

.social-button--github {
  color: #6e5494;
}

.social-button--github::after {
  background: #6e5494;
}

.social-button--codepen {
  color: #212121;
}

.social-button--codepen::after {
  background: #212121;
}

.social-button--steam {
  color: #7da10e;
}

.social-button--steam::after {
  background: #7da10e;
}

.social-button--snapchat {
  color: #eec900;
}

.social-button--snapchat::after {
  background: #eec900;
}

.social-button--x {
  color: #55acee;
}

.social-button--x::after {
  background: #000000;
}

.social-button--instagram {
  color: #e4405f;
}

.social-button--instagram::after {
  background: #e4405f;
}

.social-button--npmjs {
  color: #c12127;
}

.social-button--npmjs::after {
  background: #c12127;
}

.social-button--youtube {
  color: #c4302b;
}

.social-button--youtube::after {
  background: #c4302b;
}

.social-button--whatsapp {
  color: #00bb2d;
}

.social-button--whatsapp::after {
  background: #00bb2d;
}
/*
 * Footer
 * --------------------------------------------------
 */
 
footer .logo-footer {
  font-family: var(--logo-font-family);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
  display: block;
}

footer .logo-footer span {
  font-weight: 400;
  color: var(--main-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

footer .logo-footer a {
  color: var(--white-color);
  text-shadow: var(--text-shadow-black);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

footer .logo-footer a:hover,
footer .logo-footer span:hover {
  color: var(--white-color) !important;
  text-shadow: var(--text-shadow-black);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

footer .footer-border {
  border-top: 1px solid rgba(119, 117, 117, 0.5);
  padding: 1rem 0;
  width: 100%;
}

footer .copyright-text {
  font-size: .9rem;
  color: #a5a5a5;  
  text-shadow: var(--text-shadow-black);
}

footer .withlove {
  font-size: .9rem;  
  text-shadow: var(--text-shadow-black);
}

footer .withlove a span {
  color: var(--main-color);
  font-weight: 700;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

footer .withlove a:hover span {
  color: var(--white-color);
}