:root {
  --main-bg-color: #FF7F00;
  --secondary-bg-color: #FF7F00;
  --deep-bg-color: #ad5c19;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
body {
  color: #bab9bb;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #bab9bb;
}

.z-12 {
  z-index: 12;
  position: relative;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  color: #fefefe;
}
@media (min-width: 768px) {
  h1 {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 80px;
  }
}
@media (min-width: 1600px) {
  h1 {
    font-size: 100px;
  }
}

h2 {
  font-size: 32px;
  font-weight: bold;
  color: #fefefe;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 600;
}
@media (min-width: 992px) {
  h3 {
    font-size: 32px;
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem;
  z-index: 1000;
  box-sizing: border-box;
  pointer-events: none;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.site-logo {
  max-height: 135px;
  height: auto;
}

@media (min-width: 1024px) {
  .logo-container {
    justify-content: flex-start;
  }
}

.main-content {
  /* margin-top: 100px; */
}
/* --------------- */

@media (min-width: 1024px) {
  .logo-container {
    justify-content: flex-start;
  }
}

.font-medium {
  font-weight: 500;
}

.text-xs {
  font-size: 14px;
}

.loader {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  transition: width 0s 1.4s ease;
}
.loader .loader__icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}
.loader .loader__icon svg {
  transform-origin: 0 0;
}
.loader .loader__tile {
  position: absolute;
  left: 0;
  width: 0;
  height: 20%;
  background-color: var(--main-bg-color);
  transition: width 0.7s ease;
}
.loader .loader__tile:nth-child(0) {
  top: calc(-1 * 20%);
  transition-delay: -0.2s;
}
.loader .loader__tile:nth-child(1) {
  top: calc(0 * 20%);
  transition-delay: 0s;
}
.loader .loader__tile:nth-child(2) {
  top: calc(1 * 20%);
  transition-delay: 0.2s;
}
.loader .loader__tile:nth-child(3) {
  top: calc(2 * 20%);
  transition-delay: 0.4s;
}
.loader .loader__tile:nth-child(4) {
  top: calc(3 * 20%);
  transition-delay: 0.6s;
}
.loader .loader__tile:nth-child(5) {
  top: calc(4 * 20%);
  transition-delay: 0.8s;
}
.loader--active {
  width: 100%;
  transition-delay: 0s;
}
.loader--active .loader__icon {
  opacity: 1;
  display: block;
  transition: opacity 0.5s 1.4s ease;
}
.loader--active .loader__tile {
  width: 100%;
}
.loader--active .loader__tile:nth-child(0) {
  transition-delay: -0.2s;
}
.loader--active .loader__tile:nth-child(1) {
  transition-delay: 0s;
}
.loader--active .loader__tile:nth-child(2) {
  transition-delay: 0.2s;
}
.loader--active .loader__tile:nth-child(3) {
  transition-delay: 0.4s;
}
.loader--active .loader__tile:nth-child(4) {
  transition-delay: 0.6s;
}
.loader--active .loader__tile:nth-child(5) {
  transition-delay: 0.8s;
}

.header {
  position: relative;
}

.nav__bar-toggle .top-bar {
  transform: rotate(-45deg) translate(-7px, 4px);
  background: var(--main-bg-color);
}
.nav__bar-toggle .middle-bar {
  opacity: 0;
}
.nav__bar-toggle .bottom-bar {
  transform: rotate(45deg) translate(-7px, -4px);
  background: var(--main-bg-color);
}

.nav__items-wrapper {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 500px;
  min-height: 100%;
  overflow-y: auto;
  background-color: #141718;
  z-index: 1111;
  padding: 20px;
  transform: translateX(100%);
  transition: all 1.5s;
}
@media (min-width: 1200px) {
  .nav__items-wrapper {
    padding: 40px;
  }
}

.nav__items-wrapper-active {
  transform: translateX(0px);
}

.nav__items {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 8px;
  width: 100%;
  overflow: hidden;
}
.nav__items img {
  transition: all 2s ease-in-out;
}
.nav__items li:nth-of-type(1) .nav__item {
  transition: all 0.5s ease-in-out;
}
.nav__items li:nth-of-type(2) .nav__item {
  transition: all 0.8s ease-in-out;
}
.nav__items li:nth-of-type(3) .nav__item {
  transition: all 1s ease-in-out;
}
.nav__items li:nth-of-type(4) .nav__item {
  transition: all 1.2s ease-in-out;
}
.nav__items li:nth-of-type(5) .nav__item {
  transition: all 1.4s ease-in-out;
}
.nav__items li:nth-of-type(6) .nav__item {
  transition: all 1.6s ease-in-out;
}
.nav__items li:nth-of-type(7) .nav__item {
  transition: all 1.8s ease-in-out;
}
.nav__items li:nth-of-type(8) .nav__item {
  transition: all 2s ease-in-out;
}
.nav__items li:nth-of-type(9) .nav__item {
  transition: all 2.1s ease-in-out;
}
.nav__items li:nth-of-type(10) .nav__item {
  transition: all 2.2s ease-in-out;
}
.nav__items li:nth-of-type(11) .nav__item {
  transition: all 2.3s ease-in-out;
}
.nav__items li:nth-of-type(12) .nav__item {
  transition: all 2.4s ease-in-out;
}
.nav__items li:nth-of-type(13) .nav__item {
  transition: all 2.5s ease-in-out;
}

.nav__item {
  padding: 8px 0px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  width: 100%;
  display: block;
  transform: translateX(60%) translateY(-20px);
}
@media (min-width: 1200px) {
  .nav__item {
    padding: 15px 0;
  }
}

.nav__item__active {
  transform: translateX(0px) translateY(0px);
}

.active {
  color: var(--main-bg-color);
}

.nav__items-head a {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav__items-head button {
  background-color: transparent;
  position: relative;
}
.nav__items-head button .close.icon {
  color: var(--main-bg-color);
  position: absolute;
  margin-top: 0;
  margin-left: 0;
  right: 0px;
  width: 21px;
  height: 21px;
  display: block;
}
.nav__items-head button .close.icon:before {
  content: "";
  position: absolute;
  right: 0px;
  width: 31px;
  height: 2px;
  background-color: currentColor;
  transform: rotate(-45deg);
}
.nav__items-head button .close.icon:after {
  content: "";
  position: absolute;
  right: 0px;
  width: 31px;
  height: 2px;
  background-color: currentColor;
  transform: rotate(45deg);
}

.backdrop {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 42, 42, 0.5019607843);
  z-index: 20;
  transform: translateX(100%);
  transition: all 2s;
}

.backdrop-active {
  transform: translateX(0px);
  z-index: 1060;
}

.mobile-menu {
  width: 100%;
  border-top: 1px solid #343839;
  display: flex;
  justify-content: center;
  position: fixed;
  gap: 24px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #141718;
  padding: 10px;
  z-index: 1052;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
@media (min-width: 480px) {
  .mobile-menu {
    gap: 40px;
  }
}
.mobile-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-menu a i {
  font-size: 16px;
}
.mobile-menu a span {
  font-size: 12px;
}

.explore-btn, .explore-btn-two {
  padding: 16px 32px;
  background-color: var(--main-bg-color);
  margin-top: 10px;
  font-weight: 500;
  position: relative;
  color: #000000;
  display: inline-flex;
  z-index: 2;
}
.explore-btn::before, .explore-btn-two::before {
  width: 10px;
  height: 100%;
  content: "";
  background-color: var(--deep-bg-color);
  position: absolute;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
  z-index: -1;
}
.explore-btn:hover::before, .explore-btn-two:hover::before {
  width: 100%;
}

.explore-btn-two::before {
  width: 0;
}

.slider-area {
  min-height: 100vh;
  overflow-y: hidden;
  height: 100%;
  background-color: #000000;
  position: relative;
}
.slider-area .swiper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 3;
}
.slider-area .swiper-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-tech {
  background-image: url('assets/images/banner_tech_2.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
}

@media (max-width: 767px) {
  .banner-tech {
    background-image: url('assets/images/banner_tech_2_mobile.png');
  }
}


/* main.css, sustituye tu @media (max-width: 1023px) por esto: */
@media (max-width: 1023px) {
  .slider-area .swiper-slide {
    background-position: center center !important;
    background-size: cover !important;
    background-color: #000; /* opcional */
  }
}

.slider-area .swiper-slide .container {
  min-height: 100vh;
}
.slider-area .swiper-slide .container .row {
  min-height: 100vh;
}
.slider-area .swiper-slide::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.63) 0.15%, rgba(0, 0, 0, 0.42) 41.41%, rgba(16, 15, 31, 0) 99.94%);
}
.slider-area .swiper-slide .content {
  position: relative;
  z-index: 5;
}
.slider-area .swiper-slide .content::after {
  content: "";
  position: absolute;
  left: 86px;
  top: -40px;
  width: 200px;
  height: 360px;
  opacity: 0.9;
  z-index: -1;
}
@media (min-width: 768px) {
  .slider-area .swiper-slide .content::after {
    width: 416px;
    height: 460px;
  }
}
.slider-area .swiper-slide .content .explore-btn, .slider-area .swiper-slide .content .explore-btn-two {
  padding: 16px 32px;
  background-color: var(--main-bg-color);
  margin-top: 10px;
  font-weight: 500;
  position: relative;
  color: #000000;
  display: inline-flex;
  z-index: 2;
}
.slider-area .swiper-slide .content .explore-btn::before, .slider-area .swiper-slide .content .explore-btn-two::before {
  width: 10px;
  height: 100%;
  content: "";
  background-color: var(--deep-bg-color);
  position: absolute;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
  z-index: -1;
}
.slider-area .swiper-slide .content .explore-btn:hover::before, .slider-area .swiper-slide .content .explore-btn-two:hover::before {
  width: 100%;
}
.slider-area .swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  gap: 5px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.slider-area .swiper-nav .button-next,
.slider-area .swiper-nav .button-prev {
  outline: 1px dotted #e8ecef;
  width: 40px;
  height: 40px;
  transition: all 400ms ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1200px) {
  .slider-area .swiper-nav .button-next,
  .slider-area .swiper-nav .button-prev {
    width: 60px;
    height: 60px;
  }
}
.slider-area .swiper-nav .button-next:hover,
.slider-area .swiper-nav .button-prev:hover {
  color: #000000;
  outline-color: var(--main-bg-color);
}
.slider-area .swiper-nav .button-prev:hover::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main-bg-color);
  position: absolute;
  transition: all 500ms ease;
  left: 10px;
  top: 10px;
  z-index: -1;
}
@media (min-width: 1200px) {
  .slider-area .swiper-nav .button-prev:hover::after {
    width: 40px;
    height: 40px;
  }
}
.slider-area .swiper-nav .button-next:hover::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--main-bg-color);
  position: absolute;
  transition: all 500ms ease;
  right: 10px;
  top: 10px;
  z-index: -1;
}
@media (min-width: 1200px) {
  .slider-area .swiper-nav .button-next:hover::after {
    width: 40px;
    height: 40px;
  }
}
.slider-area .pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 12px;
  bottom: 80px;
  z-index: 10;
}
.slider-area .pagination .swiper-pagination-bullet {
  background-color: transparent;
  opacity: 1;
  width: 8px;
  height: 8px;
  position: relative;
  transition: all 500ms ease;
}
.slider-area .pagination .swiper-pagination-bullet::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: -4px;
  top: -4px;
  border: 2px solid #fff;
}
.slider-area .pagination .swiper-pagination-bullet-active {
  background-color: var(--main-bg-color);
}
.slider-area .pagination .swiper-pagination-bullet-active::after {
  border-color: var(--main-bg-color);
}

.fixed-sidebar {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 400px;
  overflow: hidden;
}
@media (min-width: 1600px) {
  .fixed-sidebar {
    width: 508px;
  }
}
.fixed-sidebar .section-name {
  font-size: 72px;
  color: #fefefe;
  font-weight: bold;
  z-index: 5;
  position: absolute;
  top: 30%;
  left: 25%;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  margin-bottom: 0;
  text-orientation: mixed;
  transform: rotate(180deg);
}
@media (min-width: 1600px) {
  .fixed-sidebar .section-name {
    left: 30%;
  }
}

@media (min-width: 1200px) {
  .body-content {
    margin-left: 400px;
  }
}
@media (min-width: 1600px) {
  .body-content {
    margin-left: 508px;
  }
}
.body-content .navbar-top {
  background-color: #141718;
}
.body-content .navbar-top .nav,
.body-content .navbar-top .nav-pills {
  display: flex;
  justify-content: space-around;
}
.body-content .navbar-top .nav .nav-item,
.body-content .navbar-top .nav-pills .nav-item {
  display: flex;
  justify-content: center;
  width: 20%;
}
.body-content .navbar-top .nav .nav-item a,
.body-content .navbar-top .nav-pills .nav-item a {
  border-radius: 0;
  width: 100% !important;
  display: flex;
  justify-content: center;
  color: #fefefe;
  padding: 20px;
  text-transform: uppercase;
}
.body-content .navbar-top .nav .nav-item a.current,
.body-content .navbar-top .nav-pills .nav-item a.current {
  color: #141718;
  background-color: var(--main-bg-color);
}

.section-overlay-text {
  font-size: 100px;
  position: absolute;
  top: 60px;
  right: 120px;
  color: #bab9bb;
  opacity: 0.1;
  text-transform: uppercase;
}

.line {
  width: 86px;
  height: 4px;
  background-color: var(--main-bg-color);
  margin-bottom: 32px;
}

.para {
  max-width: 526px;
}

.about-content {
  position: relative;
  padding: 40px 24px;
  background-color: #000000;
}
@media (min-width: 992px) {
  .about-content {
    padding: 60px 24px;
  }
}
.about-content h3 {
  max-width: 400px;
}

.counter {
  background-color: #141718;
  padding: 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .counter {
    padding: 40px 80px;
  }
}
@media (min-width: 1600px) {
  .counter {
    padding: 60px 120px;
  }
}
.counter .desc {
  font-size: 14px;
  color: var(--main-bg-color);
  text-transform: uppercase;
}
.counter .counter-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .counter .counter-item::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 30px;
    background-color: #343839;
    right: 0;
    bottom: 0;
  }
  .counter .counter-item:last-child::after {
    background-color: transparent;
  }
}

.service-content {
  position: relative;
  padding: 40px 24px;
  background-color: #000000;
}
@media (min-width: 992px) {
  .service-content {
    padding: 60px 24px;
  }
}
.service-content .service-card {
  height: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-content .service-card .front {
  padding: 40px;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}
.service-content .service-card .front::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}
.service-content .service-card .front h4 {
  position: relative;
  z-index: 1;
}
.service-content .service-card .front .small-line {
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--main-bg-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-content .service-card .front p {
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.service-content .service-card .back {
  padding: 54px 32px;
  background-color: #141718;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 1s;
}
.service-content .service-card .back p {
  margin-bottom: 30px;
  margin-top: 20px;
}
.service-content .service-card .back .price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #000000;
  width: 100%;
  padding: 16px;
}
.service-content .navigate {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 10;
  right: -10%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-content .navigate button {
  background-color: transparent;
  font-size: 1.3rem;
  color: #fefefe;
}
.service-content .navigate .swiper-button-disabled {
  cursor: not-allowed;
  color: gray;
}
.service-content .section-divider {
  width: 100%;
  height: 2px;
  margin-top: 40px;
  background-color: #343839;
  position: relative;
}
.service-content .section-divider::after {
  width: 120px;
  height: 2px;
  background-color: var(--main-bg-color);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

#work .process-card .card-inner {
  padding: 24px 24px 30px;
  background-color: #141718;
  border: 1px dashed #343839;
}
#work .process-card .card-num {
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: center;
  gap: 10px;
  transform: translateY(-20%);
}
#work .process-card .card-num span {
  font-size: 48px;
  font-weight: 700;
  color: #f3f5f7;
  opacity: 0.1;
  line-height: 1;
  transform: translateY(-30%);
}
#work .process-card .card-num .line-slim {
  width: 100%;
  height: 2px;
  display: block;
  opacity: 1;
  background-color: #343839;
  flex-grow: 1;
}

.story {
  background-color: #141718;
  padding: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .story {
    padding: 60px;
  }
}
@media (min-width: 1400px) {
  .story {
    padding: 80px 0;
  }
}
.story::after {
  content: "";
  width: 47%;
  height: 100%;
  background-color: #232627;
  position: absolute;
  right: 0;
  top: 0;
}
.story .video-popup {
  position: relative;
  z-index: 1;
}
.story .video-popup .playicon {
  position: absolute;
  background-color: #000000;
  width: 70px;
  font-size: 1.4rem;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-bg-color);
  top: 50%;
  left: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  border: 8px solid rgba(255, 255, 255, 0.5);
  -webkit-background-clip: padding-box; /* for Safari */
  background-clip: padding-box;
}
.story .line-sm {
  height: 2px;
  width: 40px;
  background-color: var(--main-bg-color);
  display: block;
}
.story .right-side::after {
  position: absolute;
  width: 40px;
  height: 60px;
  content: "";
  top: 0;
  right: 0;
  border-top: 1px solid var(--deep-bg-color);
  border-right: 1px solid var(--deep-bg-color);
}
.story .left-side {
  position: relative;
}
.story .left-side::after {
  position: absolute;
  width: 200px;
  height: 151px;
  content: "";
  bottom: -2px;
  left: 10px;
  border-left: 2px solid var(--deep-bg-color);
  border-bottom: 2px solid var(--deep-bg-color);
}
@media (min-width: 768px) {
  .story .left-side::after {
    width: 300px;
  }
}

.clients .testimonial-card {
  padding: 12px;
  background-color: #141718;
  border: 1px dashed #343839;
  position: relative;
}
@media (min-width: 768px) {
  .clients .testimonial-card {
    padding: 24px 32px 40px;
  }
}
.clients .testimonial-card .comma {
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.clients .client-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.clients .next-client,
.clients .prev-client {
  outline: 1px dotted #e8ecef;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 400ms ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: transparent;
  color: #fefefe;
}
.clients .next-client:hover,
.clients .prev-client:hover {
  color: #000000;
  outline-color: var(--main-bg-color);
}
.clients .next-client:hover::after,
.clients .prev-client:hover::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--main-bg-color);
  position: absolute;
  transition: all 500ms ease;
  left: 10px;
  top: 10px;
  z-index: -1;
}
.clients .next-client:focus,
.clients .prev-client:focus {
  outline: 1px dashed #e8ecef;
}
.clients .pagination-client {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 12px;
  bottom: -30px;
  z-index: 10;
}
@media (min-width: 768px) {
  .clients .pagination-client {
    bottom: -50px;
  }
}
.clients .pagination-client .swiper-pagination-bullet {
  background-color: transparent;
  opacity: 1;
  width: 6px;
  height: 6px;
  position: relative;
  transition: all 500ms ease;
}
.clients .pagination-client .swiper-pagination-bullet::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: -3px;
  top: -3px;
  border: 1px solid #fff;
}
.clients .pagination-client .swiper-pagination-bullet-active {
  background-color: var(--main-bg-color);
}
.clients .pagination-client .swiper-pagination-bullet-active::after {
  border-color: var(--main-bg-color);
}

.footer {
  background-color: #000000;
  padding: 50px 0;
  text-align: center;
}
@media (min-width: 1200px) {
  .footer {
    padding: 80px 0;
  }
}
.footer .copyright {
  margin-top: 60px;
}

.hovereffect, .hovereffectrounded {
  position: relative;
  display: inline-flex;
  z-index: 2;
}
.hovereffect::before, .hovereffectrounded::before {
  width: 0;
  height: 100%;
  content: "";
  background-color: var(--deep-bg-color);
  position: absolute;
  transition: all 0.4s ease;
  left: 0;
  top: 0;
  z-index: -1;
}
.hovereffect:hover::before, .hovereffectrounded:hover::before {
  width: 100%;
}

.hovereffectrounded::before {
  border-radius: 16px;
}