/* google font  */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  scroll-behavior: smooth;
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
    transition: transform 10s ease-in-out;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

body {
  overflow-x: hidden;
  background: rgba(0, 0, 0, 0.89);
}

/* ********************************** */
/* Header Start */
/* ********************************** */

header {
  padding: 25px;
  z-index: 99999999;
  transition: background-color 0.4s ease, padding 0.45s ease;
}

header.trasnparent {
  background: transparent;
  position: absolute;
  width: 100%;
  padding: 30px;
  color: white;
}

header.sticky {
  position: fixed;
  padding: 10px 25px;
  background-color: #252629;
  color: #ffff;
  z-index: 9999999;
}
#logo a img {
  width: 100%;
  max-height: 40px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.menu_side_area {
  display: flex;
  align-items: center;
}

.search-bar {
  position: relative;
  transition: width 0.3s ease-in-out;
}

.search-bar input:focus {
  position: absolute;
  right: 2rem;
  top: -17px;
  width: 700px;
}

.search-bar i {
  margin-left: 0.5rem; /* Optional */
}

.search-bar input {
  width: 45px;
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  color: var(--body-font-color);
  color: var(--black);
}

.search-bar input:hover {
  cursor: pointer;
}

.search-bar .fa-magnifying-glass {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  right: 1rem;
  color: #8f0606;
}

.search-bar input:focus + .fa-magnifying-glass {
  display: none;
}

.footer-card:nth-child(1) div h3 {
  width: 100%;
  text-align: center;
}

.footer-card #logo img {
  width: 40px;
  height: 40px;
  position: relative;
  float: left;
  left: 0rem;
  margin-right: 5px;
}

.active {
  border-bottom: 1.5px solid var(--secondary-color);
}

/* make the search bar responsive */
@media (max-width: 1000px) {
  .search-bar input:focus {
    right: 2rem;
    top: -17px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .search-bar {
    width: 150px;
  }

  .search-bar input {
    width: 40px;
    transition: width 0.5s ease-out;
    position: relative;
    right: -2rem;
  }

  .search-bar input:focus {
    position: absolute;
    right: 1rem;
    top: -17px;
    width: 300px;
  }
  .search-bar .fa-magnifying-glass {
    position: absolute;
    top: 50%;
    right: 5.5rem;
    transform: translateY(-50%);
    color: #8f0606;
  }
}

@media (max-width: 480px) {
  .search-bar input {
    width: 60px;
    transition: width 0.5s ease-out;
    position: relative;
    right: -2rem;
  }

  .search-bar input:focus {
    position: absolute;
    left: 0.5rem;
    top: -17px;
    width: 250px;
  }
  .search-bar .fa-magnifying-glass {
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
    color: #8f0606;
  }
}

.menu_side_area .btn:hover {
  background-color: var(--primary-color);
}

.menu_side_area .fa-bars {
  display: none;
  cursor: pointer;
}

header ul li {
  position: relative;
}

header ul {
  counter-reset: serial-counter;
}

header ul li a {
  font-size: 15px;
}

/* ********************************** */
/* headerbgdata section */
/* ********************************** */

.headerbgdata {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.headerbg {
  position: relative;
  width: 100%;
  height: auto;
}

.headersliderdata {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease-in-out;
}

.swiper-slide {
  position: relative;
  min-width: 100%;
  height: 100vh;
}

.swiper-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-inner::before {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
}
.con_data {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.overlay-text {
  color: #b1b1b1; /* silver */
  font-size: clamp(24px, 4vw, 56px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1em;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.explore-mods-btn {
  max-width: 250px;
  background-color: #2f4faf;
  color: #b1b1b1;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 10px;
}

.explore-mods-btn:hover {
  background-color: #3b5bdb;
}

.support-modders-btn {
  background-color: #000;
  color: #2f4faf;
  border: 2px solid #2f4faf;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  max-width: 250px;
  border-radius: 10px;
}

.support-modders-btn:hover {
  background-color: #1a1a1a;
}

/* make the buttons full-width on small screens */
@media (max-width: 768px) {
  .explore-mods-btn,
  .support-modders-btn {
    width: 100%;
  }
}
.h_blink {
  width: 210px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding-left: 35px;
}

.h_blink::before {
  animation: blinkingtext 1.5s infinite;
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 20px;
  top: 7.5px;
  left: 10px;
  box-shadow: 0 0 10px 0 var(--primary-color);
}

@keyframes blinkingtext {
  0% {
    background: var(--primary-color);
  }
  50% {
    background: rgba(255, 255, 255, 1);
  }
  100% {
    background: var(--primary-color);
  }
}

.con_data h1 {
  font-size: 70px;
  line-height: 1.1rem;
  color: #ffff;
  margin: 2rem 0rem;
  font-family: var(--title-font);
  text-transform: uppercase;
  background: linear-gradient(0deg, #888888 0%, #fff 75%);
  background-clip: text;
  -webkit-background-clip: text;
}

.slider_text {
  max-width: 600px;
  margin-bottom: 1.5rem;
  color: #adb7be;
}

.d_starting {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.d_val {
  font-size: 56px;
  font-weight: bold;
  font-family: var(--title-font);
  background: linear-gradient(0deg, #888888 0%, #fff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #fff;
}

.d_period {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 16px;
  margin-left: 15px;
}

.d_cur {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 16px;
  margin-right: 15px;
}

.headerbg .btn {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
}
.headerbg .btn:hover {
  color: #fff;
  box-shadow: 0 0 40px 0 rgba(var(--primary-color), 1);
}

.swiper-pagination {
  width: 80px;
  font-size: 20px;
  position: absolute;
  left: 0px;
  bottom: 40px;
  color: #fff;
  font-size: 25px;
  font-weight: light;
}

.swiper-button-prev {
  left: 20px;
}
.swiper-button-next {
  right: 20px;
}

.swiper-scrollbar,
.swiper-scrollbar-horizontal,
.swiper-scrollbar-drag {
  display: none;
}

/* ********************************** */
/* Trending section */
/* ********************************** */

.trending {
  width: 100%;
  height: auto;
  padding: 1rem 5px;
  max-width: 1200px;
  margin: 5rem auto;
  background-color: #0000003c;
}

.trending-mods {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trending-mods .section-title {
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--title-font);
  color: var(--silver);
  text-align: center;
  font-size: clamp(14px, 4vw, 40px);
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.how-it-works {
  margin-top: 30px;
  text-align: center;
}
.how-it-works h2 {
  color: white;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-size: 16px;
}

.steps i {
  font-size: 20px;
  color: var(--primary-color);
}

.call-to-creators {
  text-align: center;
  margin-top: 20px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.call-to-creators p {
  font-size: 16px;
  color: var(--silver);
  margin-bottom: 10px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.btn-start-uploading {
  width: 150px;
  background-color: var(--deep-blue);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-family: var(--body-font);
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.btn-start-uploading:hover {
  background-color: var(--secondary-color);
}
.btn-tip {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .mod-card {
    min-width: 200px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn-tip,
  .btn-start-uploading {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* ********************************** */
/* Startgame section */
/* ********************************** */

.startgame {
  position: relative;
  padding: 120px 0 120px 0;
}

.game_bg {
  position: relative;
  background: url("../images/background/1.webp") no-repeat center center/cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  padding: 70px;
  justify-content: space-between;
}

.game_bg-div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
}
.game_bg-div .subtitle {
  max-width: 160px;
  height: 30px;
  display: flex;
  align-items: center;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.game_bg-div .btn_2 {
  max-width: 200px;
  height: 30px;
  display: flex;
  height: 30px;
  align-items: center;
  border-radius: 5px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.game_bg-div .btn_2:hover {
  background: var(--secondary-color);
}
.game_bg h2 {
  margin-top: 10px;
  font-size: 52px;
  line-height: 1.1em;
  padding-bottom: 5px;
  text-transform: capitalize;
  color: var(--silver);
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.game_bg p {
  color: #adb7be;
}

.s_img2 {
  max-width: 400px;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

/* ********************************** */
/* Jarallax section */
/* ********************************** */

.jarallax-container {
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  background: black;
  margin-bottom: 3rem;
}

.jarallax-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.jarallax-header .game-collection-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.jarallax-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white);
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.jarallax-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 12px;
}

.jarallax-card {
  width: 150px;
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin-top: 1rem;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.jarallax-card:hover {
  transform: scale(1.2);
}
.jarallax-card img {
  width: 100%;
  height: 150px;
  display: block;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.jarallax-card-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 2px;
}

.jarallax-card-content h4 {
  max-width: 140px;
  font-size: 14px;
  margin: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jarallax-card .jarallax-card-footer {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--icon-color);
}

.jarallax-card .jarallax.card-footer i {
  margin-right: 5px;
}

.load-more {
  width: 150px;
  margin: 20px auto;
  display: block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  bottom: -1.2rem;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.game-collection-btn:hover,
.load-more:hover {
  background-color: var(--secondary-color);
}

/* ********************************** */
/* anyquestion section */
/* ********************************** */

.anyquestion {
  width: 100%;
  height: auto;
  margin-top: 7rem;
}

.anyquestion .subtitle {
  height: 30px;
  padding-top: 3px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.accordion-setion-title {
  color: white;
  width: 100%;
  height: 60px;
  cursor: pointer;
  font-family: var(--title-font);
  display: inline-block;
  font-size: 17px;
  transition: 0.5s all linear;
  text-decoration: none;
  font-weight: 600;
  overflow: none;
  border-bottom: 1px solid #dddd;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 10px 10px 10px 10px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.accordion-setion-title .accordion-header {
  position: relative;
  top: 0.8rem;
}

.accordion-setion-title::before {
  font-family: "FontAwesome";
  content: "\f107";
  float: right;
  color: #fff;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 4px;
  font-size: 12px;
  border-radius: 8px;
  width: 30px;
  display: flex;
  justify-content: center;
}

.accordion-setion-title.active::before {
  content: "\f106";
}
.accordion-setion-content {
  padding-bottom: 2px;
  margin-bottom: 10px;
  overflow: hidden;
  max-height: 0;
  color: #949494;
  transition: max-height 0.5s ease, padding-top 0.5s ease;
}

.accordion-setion-content.active {
  max-height: 500px;
  padding-top: 18px;
}

.anyquestion .accordion-setion-title::before {
  float: right;
}

/* ********************************** */
/* Footer section */
/* ********************************** */

footer {
  margin: 3rem auto 0 auto;
  padding: 40px;
  font-size: 15px;
  color: #adb7be;
}

.logo-section {
  width: 100%;
  display: flex;
  /* background: #000; */
  justify-content: space-around;
}

.footer-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 2rem;
}

.footer-card {
  width: 100%;
  max-width: 33%;
}

@media screen and (max-width: 800px) {
  .footer-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .widget .footer-menu {
    width: 100%;
    max-width: 100%;
  }

  .footer-card {
    max-width: 100%;
  }
}
.footer-card #logo a img {
  max-width: 80px;
  max-height: 80px;
}

.mt-1 {
  margin-top: 10px;
  font-family: var(--title-font);
  color: var(--dark-text);
  line-height: 1.6;
}

.mt-1 h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--title-font);
}

.mt-1 p {
  font-size: 1rem;
  color: var(--dark-text);
  margin: 0;
}

/* Highlighted numbers */
.mt-1 strong {
  color: var(--primary-color);
  font-weight: bold;
}

.logo-section-page {
  width: 100%;
}

.logo-section .logo-img {
  width: 60px;
  max-height: 70px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer ul li {
  margin: 3px 0;
}
.footer ul li:hover {
  color: var(--secondary-color);
  transition: 0.3s;
}

.widget h5 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-family: var(--title-font);
}
.widget ul li {
  padding-top: 5px;
}
.widget ul li a {
  font-style: italic;
  padding-top: 10px;
}
.widget ul li a:hover {
  text-decoration: underline;
}

.footer form {
  position: relative;
  width: 100%;
}

footer form input {
  width: 90%;
  color: inherit;
  background: rgba(255, 255, 255, 1);
  padding: 12px 10px;
  border-radius: 80px 80px 0 80px;
  border: none;
  outline: none;
  font-size: 18px;
  overflow: hidden;
  box-shadow: 2px 2px 20px 0 rgba(255, 255, 255, 0.025);
}

/* .text-center {
  display: flex;
} */

form .submit-btn {
  width: 180px;
  text-transform: capitalize;
  text-wrap: nowrap;
  position: relative;
}

footer form button {
  right: 2rem;
  margin-top: -0.3rem;
  padding: 60px;
  font-size: 18px;
  width: 70px;
  height: 50px;
  border-radius: 80px 80px 0 80px !important;
  overflow: hidden;
  cursor: pointer;
}

.social-icons a {
  background-color: #3333;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a i {
  color: var(--secondary-color);
}

.social-icons a:hover {
  background-color: #fff;
  transition: 0.5s ease-in-out;
}
.subfooter {
  width: 100%;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid #3333;
}
.subfooter2 {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .header_menu {
    position: absolute;
    left: -250px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    top: 0;
    background-color: #252629;
    padding: 30px;
    width: 250px;
    height: 100vh;
    transition: left 0.3s ease;
    z-index: 5;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .con_data h1 {
    font-size: 45px;
  }

  .game_bg {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .s-location .flex {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .s-location .flex div {
    width: 100%;
    margin: 2rem 0rem;
  }
  .s-location .subtitle {
    width: auto;
  }

  header.sticky .header_menu {
    transition: left 0.3s ease;
  }
  header ul li::before {
    display: none;
  }

  .menu_side_area {
    margin-right: 15px;
  }

  .menu_side_area a {
    margin-right: 20px;
  }

  .menu_side_area .fa-bars {
    display: block;
    font-size: 22px;
  }

  .s_img2 {
    width: 100%;
    position: relative;
    right: 0;
    bottom: -2.5rem;
  }

  .g-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }
  .g-cards .d-overlay h4 {
    text-wrap: nowrap;
  }

  .gallery-item {
    width: 180px;
  }
}

@media screen and (max-width: 550px) {
  .header.trasnparent {
    background: none;
    padding: 10px 0px 0px 0px;
  }

  .swiper-slide {
    position: relative;
    min-width: 100%;
    height: 110vh;
    top: -2rem;
  }
  .con_data {
    margin-top: 3rem;
  }

  .header.sticky {
    padding: 10px 0;
    background-color: #252629;
  }

  .swiper_slide {
    height: 70vh;
  }
  .con_data h1 {
    font-size: 35px;
  }
  .d-val {
    font-size: 35px;
  }
  .sw-caption {
    margin-top: 2rem;
  }
  .con_data .slider_text {
    justify-content: center;
    max-width: 400px;
    font-size: 14px;
    margin-bottom: 0;
  }

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

  /* Location */

  .s-location .flex {
    flex-wrap: wrap !important;
  }

  .s-location .w50 {
    width: 100% !important;
  }

  .s-location h2 {
    font-size: 35px;
  }

  .gallery-item {
    max-width: 200px;
  }

  .s_img2 {
    width: 100%;
    position: relative;
    right: 0;
    bottom: -2.5rem;
  }

  /* any Question */
  #accordioncontainer {
    flex-direction: column;
    gap: 0;
  }

  #accordioncontainer .w-50 {
    width: 100% !important;
  }

  .accordion-section .w-50 {
    height: auto;
  }

  /* footer */

  footer .flex-left {
    flex-direction: column;
  }

  footer .w-33,
  footer .w-66,
  footer .w-50 {
    width: 100% !important;
  }

  .subfooter .flex {
    flex-direction: column;
  }
}

/* ********************************** */
/* How it workd section */
/* ********************************** */

.how-it-works {
  text-align: center;
  padding: 50px 20px;
  color: var(--black);
}

.how-it-works h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.how-it-works p {
  font-size: 16px;
  color: var(--silver);
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  position: relative;
  color: white;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.feature-card:hover {
  transform: scale(1.2);
}

.feature-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.feature-card p {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 20px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.feature-card .learn-more {
  background-color: var(--deep-blue);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.feature-card .learn-more:hover {
  background-color: var(--secondary-color);
}

.feature-card .arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--silver);
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.feature-card:last-child .arrow {
  display: none;
}

.btn-start-uploading {
  width: 170px;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@media (max-width: 768px) {
  .feature-card {
    width: 100%;
  }

  .feature-card .arrow {
    display: none;
  }
}


