/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 6.25rem;
  --offSet-Phone: 18rem;
  --sactionSpace: 20px;
}

/*===== Colores =====*/
:root {
  --first-color: #000;
  --Dark-first-color: #000;
  --second-color: #6e22f5;
  --Dark-second-color: #260a58;
  --Black-color: #121212;
  --Gray-color: #211e26;
}

/*===== Fuente y tipografia =====*/
:root {
  --body-font: "Poppins", sans-serif;
  --last-font: 'Roboto', sans-serif;  
  --big-font-size: 2rem;
  --h1-font-size: 150rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
}
@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 3.125rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}
/*===== Border Radius =====*/



:root {
  --br-easy: 5px;
  --br-normal: 10px;
  --br-Avg: 20px;
  --br-Big: 35px;
  --br-Circle: 50%;
}

/*===== Font Wight =====*/
:root {
  --fw-light: 300;
  --fw-Led: 400;
  --fw-normal: 500;
  --fw-bold: 600;
  --fw-bolder: 700;
  --fw-Extra: 900;
}

/*===== Margenes =====*/
:root {
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
}

/*===== z index =====*/
:root {
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*===== BASE =====*/
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
  overflow-x: hidden;
}

.profile-image {
  border-radius: 50%;
  width: 100px;
  
  height: 100px;
  object-fit: cover;
  margin-top: 10px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(6, 2fr);

  gap: 50px;
}

.image-grid img {
  width: 120px; /* Adjust the width as needed */
  height: 120px; /* Adjust the height as needed */
  border-radius: 50%;

  object-fit: cover;
}

.company-name {
  font-size: 1.2em;
  color: black;
  
  font-weight: bold;


}


.verified-icon {
  width: 20px; /* Adjust the width as needed */
  height: 20px; /* Adjust the height as needed */
  margin-left: 5px; /* Adjust the margin as needed */
}


.founder-name {
  font-size: 1.2em;
  color: black;
  
  display: flex;
  align-items: center;
  font-weight: bold;
}

.top-creator-info {
  width: 280px;
  height: 90px;
  border-radius: 50px; 
 /* background: rgba(0, 0, 0, 0.05);*/
 background: #010DFF;
 
 left: 0;
  display: flex;  
  align-items: center;
}

.top-blur {
  width: 100%;
  height: 100%;
  border-radius: 50px; 
  color: #fff;
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(217, 217, 217, 0.05);
  backdrop-filter: blur(30px);
  mask-image: linear-gradient(rgb(0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0) 100%);
}

.user-image {
  width: 60px; /* Adjust the width as needed */
  height: 60px; /* Adjust the height as needed */
  border-radius: 50%;
  margin-right: 10px; /* Adjust the margin as needed */
  object-fit: cover;
}

.one1 h3{
  text-align: center;
  margin-top: 10px;
  color: black;


}

.two2 h3{
  text-align: center;
  margin-top: 10px;
  color: black;

}

.winner {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.winner img {
  width: 120px; /* Adjust the width as needed */
  height: 120px; /* Adjust the height as needed */
  margin-left: 20px;
  margin-top: 10px;

  border-radius: 50%;
  object-fit: cover;
}

.user-details {
  text-align: left;
}


.user-details h2 {
  margin: 0;
  font-size: 20px;
}

.user-details p {
  margin: 0;

}


.user-header {
  display: flex;
  align-items: center;
}

.verified-badge {
  width: 20px; /* Adjust the width as needed */
  height: 20px; /* Adjust the height as needed */
  margin-left: 5px; /* Adjust the margin as needed */
}


section {
  padding: var(--sactionSpace) 0;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}


.header-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header > span {
  font-family: "Maelstrom Sans";
  font-size: 40vw;
  position: relative;
}


/*== Image Style ==*/
img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

/*== <a> Tag Unset Style ==*/

.au {
  color: inherit;
  background: inherit;
  text-decoration: inherit;
}

.au:hover,
.au:focus {
  color: inherit;
  background: inherit;
  text-decoration: inherit;
}

/* = Unset Default BTN Style = ~ .btn-check:focus+.btn, .btn:focus */
.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}

/*     padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);*/


    .timeline ul {
      padding: 50px 0;
    }
    
    .timeline ul li {
      list-style-type: none;
      position: relative;
      width: 6px;
      margin: 0 auto;
      padding-top: 50px;
      background: #EBEBEB;
    }
    
    .timeline ul li::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: inherit;
      z-index: 1;
    }
    
    .timeline ul li div {
      position: relative;
      bottom: 0;
      border-radius: 25px;
      color:#000;
      width: 400px;
      -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
      box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
      padding: 15px;
      background: #fff;
    }
 
    .timeline ul li div p {
      color: #8F93A0;
    }
    .programing {
      display: flex;
      justify-content: center;
      color: #183153;
      align-items: center;
      gap: 2rem;
      font-size: 40px;
      width: 100%;
    }
  .programing img {
    object-fit: cover;
    height: 50px;
    width: 50px;
  }

  
.skills {
  text-align: right;
  padding-right: 20px;
  line-height: 40px;
  color: white;
}

.html {
  width: 100%; 
  display: inline-block;
  border: 2px solid #000;
  color:#000;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  animation: html5 2s ease-out;
}

.css {
  width: 95%; 
  background-color: #000;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  animation: css3 2s ease-out;
}
.js {
  width: 75%; 
  border: 2px solid #000;
  color:#000;  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  animation: js 2s ease-out;
}
.vue {
  width: 50%; 
  background-color: #000;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  animation: vue 2s ease-out;
}
.boostrap {
  width: 90%; 
  border: 2px solid #000;
  color:#000;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  animation: boostrap 2s ease-out;
}
.react {
  width: 65%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #000;
  animation: react 2s ease-out;
}
.english{
  width: 80%; 
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #000;
  animation: english 2s ease-out;
}
.german {
  width: 75%; 
 border-top-right-radius: 30px;
 border-bottom-right-radius: 30px;
 border: 2px solid #000;
 color:#000;
  animation: german 2s ease-out;
}

@keyframes html5 {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@keyframes css3 {
  0% {
    width: 0px;
  }
  100% {
    width: 80%;
  }
}
@keyframes js {
  0% {
    width: 0px;
  }
  100% {
    width: 65%;
  }
}
@keyframes vue {
  0% {
    width: 0px;
  }
  100% {
    width: 50%;
  }
}
@keyframes boostrap {
  0% {
    width: 0px;
  }
  100% {
    width: 90%;
  }
}
@keyframes react {
  0% {
    width: 0px;
  }
  100% {
    width: 65%;
  }
}
@keyframes english{
  0% {
    width: 0px;
  }
  100% {
    width: 80%;
  }
}
@keyframes german {
  0% {
    width: 0px;
  }
  100% {
    width: 75%;
  }
}
    .timeline ul li div::before {
      content: "";
      position: absolute;
      bottom: 7px;
      width: 0;
      height: 0;
      border-style: solid;
    }
    
    .timeline ul li:nth-child(odd) div {
      left: 45px;
    }
    
    .timeline ul li:nth-child(odd) div::before {
      left: -15px;
      border-width: 8px 16px 8px 0;
      display: none;
      border-color: transparent #fff transparent transparent;
    }
    
    .timeline ul li:nth-child(even) div {
      left: -439px;
    }
    
    .timeline ul li:nth-child(even) div::before {
      right: -15px;
      border-width: 8px 0 8px 16px;
      display: none ;
      border-color: transparent transparent transparent #f45b69;
    }
    
    time {
      display: block;
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 8px;
    }
    
    
    /* EFFECTS
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
    
    .timeline ul li::after {
      transition: background 0.5s ease-in-out;
    }
    
    .timeline ul li.in-view::after {
      background: #8CA8B6;
    }
    
    .timeline ul li div {
      visibility: hidden;
      opacity: 0;
      transition: all 0.5s ease-in-out;
    }
    
    .timeline ul li:nth-child(odd) div {
      transform: translate3d(200px, 0, 0);
    }
    
    .timeline ul li:nth-child(even) div {
      transform: translate3d(-200px, 0, 0);
    }
    
    .timeline ul li.in-view div {
      transform: none;
      visibility: visible;
      opacity: 1;
    }
    
    
    /* GENERAL MEDIA QUERIES
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
    
    @media screen and (max-width: 900px) {
      .timeline ul li div {
        width: 250px;
      }
      .timeline ul li:nth-child(even) div {
        left: -289px;
        /*250+45-6*/
      }
    }
    
    @media screen and (max-width: 600px) {
      .timeline ul li {
        margin-left: 20px;
      }
      .timeline ul li div {
        width: calc(100vw - 91px);
      }
      .timeline ul li:nth-child(even) div {
        left: 45px;
      }
      .timeline ul li:nth-child(even) div::before {
        left: -15px;
        border-width: 8px 16px 8px 0;
        border-color: transparent #f45b69 transparent transparent;
      }
    }
    
    
    /* EXTRA/CLIP PATH STYLES
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
    .timeline-clippy ul li::after {
      width: 40px;
      height: 40px;
      border-radius: 0;
    }
    
    .timeline-rhombus ul li::after {
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }
    
    .timeline-rhombus ul li div::before {
      bottom: 12px;
    }
    
    .timeline-star ul li::after {
      clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
      );
    }
    
    .timeline-heptagon ul li::after {
      clip-path: polygon(
        50% 0%,
        90% 20%,
        100% 60%,
        75% 100%,
        25% 100%,
        0% 60%,
        10% 20%
      );
    }
    
    .timeline-infinite ul li::after {
      animation: scaleAnimation 2s infinite;
    }
    
    @keyframes scaleAnimation {
      0% {
        transform: translateX(-50%) scale(1);
      }
      50% {
        transform: translateX(-50%) scale(1.25);
      }
      100% {
        transform: translateX(-50%) scale(1);
      }
    }
    
    
  
  .active {
      flex: 5;
  }


/*== Download Button ==*/
.btn_download {
  background-color: #F26522
  ;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: calc(var(--normal-font-size) + 2px);
  border: 2px solid transparent;
  padding: 10px 14px;
}

.btn_download:focus,
.btn_download:hover {
  color: #fff;
}

/*===== Navbar Style =====*/

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: var(--header-height);
  z-index: var(--z-fixed);
}

.Navbar_Toggle {
  background: transparent;
  border: none;
  outline: none;
  width: 42px;
  font-size: 24px;
  height: 42px;
  border-radius: 4px;
  display: none;
}
.Navbar_Toggle:before,
.Navbar_Toggle:after,
.Navbar_Toggle div {
  background: #000;
  content: "";
  display: block;
  height: 4px;
  border-radius: 3px;
  margin: 7px 0;
  transition: 0.5s;
}
.Navbar_Toggle.open:before {
  transform: translateY(12px) rotate(135deg);
}
.Navbar_Toggle.open:after {
  transform: translateY(-10px) rotate(-135deg);
}
.Navbar_Toggle.open div {
  transform: scale(0);
}

.bg_main {
     background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    transform: translateZ(0px);
}

.navbar .navbar-brand {
  color: var(--first-color);
  font-family: var(--last-font);
  font-weight: bold;
  font-size: 2rem;
  margin: 0;
  padding: 0;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: var(--first-color);
  opacity: 0.9;
}

.navbar-light .navbar-brand:focus-visible {
  outline: 0;
  border: 0;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--first-color);
  font-weight: 700;
}
.navbar-nav {
  gap: 1.25rem;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--Black-color);
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .Navbar_Toggle {
    display: block;
  }
  #navbar_collapse {
    height: 0;
  }
}

/*===== Hero section Style =====*/

.hero {
  min-height: calc(100vh - var(--header-height));
  position: relative;
}

.lorem {
  animation: fadeIn 1s;

}
.dog {
  animation: fadeIn 1s;


}
.hero .text_content h2 {
  font-weight: 700;
  color: #000;
  animation: fadeIn 1s;

  font-size: 20.5vw;  line-height: 500px;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero .text_content p {
  font-weight: 400;
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: var(--Gray-color);
  margin-top: var(--mb-2);
}

.hero .flex_images {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hero .flex_images img:first-child {
  position: relative;
  right: -40px;
}

.hero .flex_images img:last-child {
  height: 537px;
}

.hero .buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero .btn {
  opacity: 1;
  transition: 200ms all ease-in-out;
}

.hero .btn:hover {
  box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
  transition: 200ms all ease-in-out;
}

.btn_GoogePlay {
  background-color: var(--Black-color);
  padding: 10px 16px;
  border-radius: 5px;
}

.btn_AppStore {
  background: #000;
  border-radius: 5px;
  padding: 10px 16px;
  border: 1px solid #b1b1b1;
}

@media screen and (max-width: 991px) {
  .hero .flex_images {
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
  }
  .hero .flex_images img:first-child {
    width: 150px;
    right: inherit;
  }
  .hero .flex_images img:last-child {
    width: 150px;
    height: initial;
  }
  .hero .text_content {
    text-align: center;
  }
  .hero .text_content h2 {
    line-height: inherit;
  }
}

/*===== How it Works =====*/

.HIW {
  min-height: 50vh;
  background: rgba(10, 245, 52, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

.HIW .text_content h3 {
  color: var(--second-color);
  font-weight: 700;
  font-size: 26px;
  line-height: 39px;
  text-align: center;
}

.HIW .grid_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: flex-start;
  gap: 4rem;
}

.HIW .grid_items .item_Works {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 2rem;
  z-index: 2;
}

.HIW .grid_items .item_Works h4 {
  color: var(--Black-color);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-top: calc(var(--mb-2) - 5px);
}

.HIW .grid_items .item_Works p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--Black-color);
  margin-top: 3px;
}

@media screen and (max-width: 991px) {
  .HIW .grid_items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Elements */

.elemetns {
  position: absolute;
  right: 0;
  top: 0;
}

.elemetns > div:nth-child(1) {
  border: 4px solid var(--first-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  top: 0;
  right: -10px;
}

.elemetns > div:nth-child(2) {
  border: 4px solid var(--first-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  top: 28.5px;
  right: 5px;
  z-index: 2;
}

.elemetns > div:nth-child(3) {
  border: 4px solid var(--second-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  top: 48.25px;
  right: -38.5px;
  z-index: 1;
}
.elemetns_2 {
  position: absolute;
  left: 0;
  bottom: 15px;
}

.elemetns_2 > div:nth-child(1) {
  border: 4px solid var(--second-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: 1;
}

.elemetns_2 > div:nth-child(2) {
  border: 4px solid var(--first-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 28.5px;
  left: 5px;
}

.elemetns_2 > div:nth-child(3) {
  border: 4px solid var(--second-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 48.25px;
  left: -38.5px;
}
.elemetns_3 {
  position: absolute;
  right: 0;
  bottom: -25px;
}

.elemetns_3 > div:nth-child(1) {
  border: 4px solid var(--second-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 0;
  right: -10px;
}

.elemetns_3 > div:nth-child(2) {
  border: 4px solid var(--second-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 28.5px;
  right: 5px;
  z-index: 2;
}

.elemetns_3 > div:nth-child(3) {
  border: 4px solid var(--first-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 48.25px;
  right: -38.5px;
  z-index: 1;
}
.elemetns_4 {
  position: absolute;
  left: 0;
  bottom: -25px;
}

.elemetns_4 > div:nth-child(1) {
  border: 4px solid var(--first-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: 1;
}

.elemetns_4 > div:nth-child(2) {
  border: 4px solid var(--second-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 28.5px;
  left: 5px;
}

.elemetns_4 > div:nth-child(3) {
  border: 4px solid var(--first-color);
  border-radius: 4px;
  width: 65px;
  height: 65px;
  position: absolute;
  bottom: 48.25px;
  left: -38.5px;
}

@media screen and (max-width: 767px) {
  .elemetns {
    right: -20px;
  }
  .elemetns_2 {
    left: -20px;
  }
}

/*===== Rows Style =====*/
.Rows {
  position: relative;
  min-height: 100vh;
  top: 109px;
}

.row_ > .row {
  width: 100%;
  display: flex;
  align-items: center;
}
.row_ > .row > div {
  position: relative;
  perspective: 20rem;
}

.row_ .bg_element {
  background: rgba(110, 34, 245, 0.25);
  border-radius: 182px 228px 300px 319.5px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 382px;
  height: 386px;
  z-index: 0;
}

.row_ img {
  margin: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 17px rgba(0, 0, 0, 0.3));
}

.row_ img.left {
  transform: rotateY(10deg);
}
.row_ img.right {
  transform: rotateY(-10deg);
}

.row_ .text_content h3 {
  font-weight: 700;
  font-size: var(--h2-font-size);
  line-height: 48px;
  color: var(--Black-color);
}

.row_ .text_content p {
  font-weight: 500;
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--Dark-second-color);
  margin-top: var(--mb-1);
}

.row_.Green .bg_element {
  background: rgba(10, 245, 52, 0.25);
}

.row_.Green p {
  color: var(--Dark-first-color);
}

@media screen and (max-width: 991px) {
  .Rows > .container > .row {
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .row_ .bg_element {
    width: 300px;
  }
  .row_ .text_content {
    margin-top: calc(var(--mb-2) - 10px);
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .row_ .bg_element {
    width: calc(100% - 100px);
    height: 250px;
  }
  .row_ img.left,
  .row_ img.right {
    transform: rotateY(0);
    width: 180px;
    height: auto;
  }
}

/*===== Download App Style =====*/
.download_app {
  min-height: 80vh;
  top:70px;
  position: relative;
  padding: calc(var(--sactionSpace) + 2rem) 0;
  overflow: hidden;
}

.download_app .row > div:last-child {
  display: flex;
  align-items: center;
}

.download_app .grid_images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.download_app .grid_images > img:nth-child(1) {
  width: 160px;
  position: relative;
  right: -20px;
}
.download_app .grid_images > img:nth-child(2) {
  position: relative;
  z-index: 1;
}
.download_app .grid_images > img:nth-child(3) {
  width: 160px;
  left: -20px;
  position: relative;
  z-index: 0;
}
.download_app .grid_images > img:nth-child(4) {
  width: 200px;
  position: relative;
}

.download_app .text_content {
  text-align: center;
}

.download_app .text_content h3 {
  font-weight: 700;
  font-size: var(--h3-font-size);
  color: var(--Black-color);
}

.download_app .text_content p {
  font-weight: 400;
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: var(--Gray-color);
  margin-top: calc(var(--mb-2) - 7px);
}

.download_app .text_content .buttons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: calc(var(--mb-2) + 5px);
  z-index: 2;
}

.btn_black {
  padding: 8px 14px;
  background-color: var(--Black-color);
  transition: 400ms all cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.btn_black:hover {
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.3), inset 0 0 30px -20px #fff;
  transition: 400ms all cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@media screen and (max-width: 991px) {
  .download_app {
    min-height: 30vh;
  }
}

/* ===== Footer Style ===== */

.footer {
  position: relative;
  min-height: 23vh;
  margin-top: 200px;
  z-index: 1;
  width: 100%;
  background-color: #F26522;
}

.footer .text {
  width: 350px;
  margin: auto;
  text-align: center;
  color: #fff;
  padding-bottom: var(--mb-2);
}

.footer .text h2 {
  font-family: var(--last-font);
  font-size: 2rem;
}

.footer .text p {
  margin-top: var(--mb-1);
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 24px;
}

.footer .line_divdir {
  display: block;
  width: 100%;
  height: 1px;
  margin: var(--mb-3) 0;
  background-color: #fff;
}

.footer .CopyRight {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.footer .Social_Media {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer .Social_Media .ico {
  background: #fff;
  width: 32px;
  height: 32px;
  color: #000;
  border-radius: 50%;
  display: flex;
  place-items: center;
  place-content: center;
  transition: 200ms all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer .Social_Media .ico:hover {
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.2);
  transition: 200ms all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer .Social_Media i {
  color: #000;
}

.animated-heading h2 {
  font-weight: bold;
  font-size: 10.5vw;
  color: #000;
}



@media screen and (max-width: 991px) {
  .footer .Social_Media {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .footer .text {
    width: 80%;
  }
}

@media screen and (max-width: 320px) {
  .footer .text {
    width: 100%;
  }
}

/* Animations */

.animations_Shield > g > path:nth-child(1) {
  animation: forwards animations_Shield_2 450ms ease-in-out;
  animation-delay: 500ms;
  visibility: hidden;
}

.animations_Shield > g > path:nth-child(2) {
  animation: forwards animations_Shield 500ms ease-in-out;
}

@keyframes animations_Shield_2 {
  0% {
    transform: rotateY(90deg) scale(0);
    visibility: visible;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    visibility: visible;
  }
}

@keyframes animations_Shield {
  0% {
    transform: scaleX(1.1) scaleY(1.1) scaleZ(1) rotateX(20deg) rotateY(-93deg)
      rotateZ(-8deg) translateX(0px) translateY(0px) translateZ(0px)
      skewX(-5deg) skewY(0deg);
  }
  100% {
    transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(0deg) rotateY(0deg)
      rotateZ(0deg) translateX(0px) translateY(0px) translateZ(0px) skewX(0deg)
      skewY(0deg);
  }
}

/* visibility */

@media screen and (max-width: 991px) {
  .visibility_hidden {
    visibility: hidden;
  }

  .visibility_visible {
    visibility: visible;
  }
}

/* Preloader CSS */

#main {
  display: none;
}

#loader {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader > span {
  margin: 1rem 0.5rem 0.5rem;
  background: var(--Dark-first-color);
  border-radius: 50%;
  animation: spin-Loader-3 1.4s infinite alternate;
}

#loader > span:nth-child(2) {
  animation-delay: 0.2s;
}

#loader > span:nth-child(3) {
  animation-delay: 0.4s;
  margin-right: 2rem;
}
@keyframes spin-Loader-3 {
  from {
    width: 4rem;
    height: 4rem;
    line-hight: 0.1rem;
    opacity: 1;
    transform: translate3d(0);
  }
  to {
    width: 4.5em;
    height: 4.5rem;
    line-hight: 1.5rem;
    opacity: 0.1;
    transform: translate3d(0.5, -1.5rem, 0);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fadePage {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0.39, 0.01, 0.71, -0.07);
  animation-duration: 1s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
    transform: translate3d();
  }
  100% {
    opacity: 1;
  }
}
