@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Circular Std";
  src: URL("./fonts/CircularStd-Book.ttf") format("truetype");
}
@font-face {
  font-family: "Circular Std";
  src: URL("./fonts/CircularStd-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Circular Std";
  src: URL("./fonts/circular-std-medium-500.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Digital";
  src: URL("./fonts/digital.ttf") format("truetype");
}
a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

body {
  background: #fff;
  font-family: "Circular Std";
}
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
body::-webkit-scrollbar-track {
  background: #f2f2f2;
  width: 6px;
  height: 6px;
}
body::-webkit-scrollbar-thumb {
  background-color: #fd3132;
  width: 6px;
  height: 6px;
}

section {
  width: 100%;
  margin: 30px 0;
  padding: 30px 0;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(1000px, 0, 0);
          transform: translate3d(1000px, 0, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-1000px, 0, 0);
          transform: translate3d(-1000px, 0, 0);
}

.content {
  width: 100%;
}

.buttons-home,
.buttons-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.buttons-home .download-btn,
.buttons-download .download-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 190px;
  height: 63.102px;
  background: #000;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 30px 20px;
}
.buttons-home .download-btn img,
.buttons-download .download-btn img {
  -o-object-fit: cover;
     object-fit: cover;
}
.buttons-home .download-btn .info-btn,
.buttons-download .download-btn .info-btn {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
.buttons-home .download-btn .info-btn .title-btn,
.buttons-download .download-btn .info-btn .title-btn {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.buttons-home .download-btn .info-btn .des-btn,
.buttons-download .download-btn .info-btn .des-btn {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}

.header {
  position: fixed;
  top: 27px;
  width: 100%;
  z-index: 9999;
}
.header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  z-index: 99999;
  width: 1100px;
  height: 64px;
  padding: 9px, 17px, 9px, 17px;
  gap: 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
}
.header .nav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 119px;
  height: 46px;
}
.header .nav .logo .log-img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: lightgray -10.879px -10.841px/137.212% 137.382% no-repeat;
}
.header .nav .links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  gap: 20px;
}
.header .nav .links ul li {
  position: relative;
  padding: 0 10px;
}
.header .nav .links ul li::after {
  content: "";
  width: 0%;
  height: 3px;
  background-color: #fd3132;
  display: block;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .nav .links ul li:hover::after {
  width: 60%;
}
.header .nav .links ul li:hover a {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.header .nav .links ul li a {
  display: block;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 11.88px;
  letter-spacing: -0.36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .nav .links ul .link-home-active::after {
  width: 60%;
}
.header .nav .links ul .link-home-active a {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.header .icon-menu,
.header .menu {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header .nav {
    width: 100%;
    padding: 0 30px;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .nav .links {
    display: none;
  }
  .header .nav .active-link-menu {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    background: rgba(158, 158, 158, 0.1294117647);
  }
  .header .nav .icon-menu {
    display: block;
    cursor: pointer;
    padding: 29px 0 0;
    height: 60px;
    width: 27px;
  }
  .header .nav .icon-menu .bars .bar {
    width: 22px;
    height: 2px;
    background: #000;
    position: absolute;
    -webkit-transition: opacity 0.2s linear 0.2s, margin 0.2s linear 0.2s, background 0.3s linear, -webkit-transform 0.2s linear 0s;
    transition: opacity 0.2s linear 0.2s, margin 0.2s linear 0.2s, background 0.3s linear, -webkit-transform 0.2s linear 0s;
    transition: opacity 0.2s linear 0.2s, margin 0.2s linear 0.2s, transform 0.2s linear 0s, background 0.3s linear;
    transition: opacity 0.2s linear 0.2s, margin 0.2s linear 0.2s, transform 0.2s linear 0s, background 0.3s linear, -webkit-transform 0.2s linear 0s;
  }
  .header .nav .icon-menu .bars .bar:nth-child(1) {
    margin-top: -7px;
  }
  .header .nav .icon-menu .bars .bar:nth-child(2) {
    margin-top: -1px;
  }
  .header .nav .icon-menu .bars .bar:nth-child(3) {
    margin-top: 5px;
  }
  .header .nav .icon-menu:hover {
    -webkit-transition: 0.3s ease linear;
    transition: 0.3s ease linear;
  }
  .header .nav .icon-menu:hover .bar {
    background: #878787;
  }
  .header .nav .icon-menu .active-bars {
    gap: 0;
  }
  .header .nav .icon-menu .active-bars .bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-top: -1px;
  }
  .header .nav .icon-menu .active-bars .bar:nth-child(2) {
    opacity: 0;
    margin-top: -1px;
  }
  .header .nav .icon-menu .active-bars .bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin-top: -1px;
  }
  .header .nav .menu {
    display: block;
    position: absolute;
    top: 64px;
    left: 0;
    background: aliceblue;
    width: 100%;
    height: 0vh;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    overflow: hidden;
  }
  .header .nav .menu .links-menu ul {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 34px;
    gap: 30px;
  }
  .header .nav .menu .links-menu ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .header .nav .menu .links-menu ul li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 5px;
    color: #000;
    text-align: start;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 11.88px;
    letter-spacing: -0.36px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .header .nav .menu .links-menu ul li a:hover {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
    background: rgba(158, 158, 158, 0.1294117647);
  }
  .header .nav .active-menu {
    height: 520px;
  }
}

.Home {
  height: 900px;
  margin-top: 0;
  padding-top: 0;
}
.Home .content {
  width: 100%;
  height: 100%;
}
.Home .content .cart-slider {
  width: 100%;
  height: 85%;
  overflow: hidden;
  cursor: pointer;
}
.Home .content .cart-slider .cart-home {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .Home .content .cart-slider .cart-home {
    height: auto;
  }
}
.Home .content .cart-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  overflow: hidden;
}
.Home .content .cart-home::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  z-index: -1;
  border-radius: 968px;
  background: rgba(253, 49, 50, 0.2);
  -webkit-filter: blur(84.0500030518px);
          filter: blur(84.0500030518px);
}
.Home .content .cart-home .img-cart-home,
.Home .content .cart-home .img {
  width: 50%;
  height: 652px;
  position: relative;
  clip-path: ellipse(60% 59% at 35% 40%);
}
.Home .content .cart-home .img-cart-home .img-home,
.Home .content .cart-home .img .img-home {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
  opacity: 0;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes showImg {
  to {
    opacity: 1;
  }
}
@keyframes showImg {
  to {
    opacity: 1;
  }
}
.Home .content .cart-home .text-home {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.Home .content .cart-home .text-home .title-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@-webkit-keyframes showContent {
  0% {
    -webkit-transform: translateX(20rem);
            transform: translateX(20rem);
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  25% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  75% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  90% {
    -webkit-transform: translateX(-80rem);
            transform: translateX(-80rem);
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  100% {
    -webkit-transform: translateX(-100rem);
            transform: translateX(-100rem);
    -webkit-filter: blur(3px);
            filter: blur(3px);
    opacity: 1;
  }
}
@keyframes showContent {
  0% {
    -webkit-transform: translateX(20rem);
            transform: translateX(20rem);
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  25% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  75% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  90% {
    -webkit-transform: translateX(-80rem);
            transform: translateX(-80rem);
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
  100% {
    -webkit-transform: translateX(-100rem);
            transform: translateX(-100rem);
    -webkit-filter: blur(3px);
            filter: blur(3px);
    opacity: 1;
  }
}
.Home .content .cart-home .text-home .one-title-home {
  font-size: 1.2rem;
  font-weight: 500;
  color: black;
}
.Home .content .cart-home .text-home .two-title-home {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff274b;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.Home .content .cart-home .text-home .des-home {
  font-size: 17px;
  font-weight: 600;
  color: black;
  margin-bottom: 20px;
  line-height: 25px;
  max-width: 500px;
}
.Home .content .dots-slider-home {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.Home .content .dots-slider-home .dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.Home .content .dots-slider-home .dots .dot-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.Home .content .dots-slider-home .dots .dot-item .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #9e9e9e;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.Home .content .dots-slider-home .dots .dot-item .dot:hover {
  background: #333;
}
.Home .content .dots-slider-home .active-dot {
  background: #333 !important;
}
.Home .content .active {
  -webkit-transition: 1s ease;
  transition: 1s ease;
  left: 0;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.Home .content .active-img {
  left: 0 !important;
  -webkit-transition: 5s ease;
  transition: 5s ease;
}
@media screen and (max-width: 900px) {
  .Home {
    height: 900px;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    top: 95px;
  }
  .Home .content .two-title-home {
    font-size: 2rem !important;
  }
  .Home .content .cart-slider {
    height: 96%;
  }
  .Home .content .cart-slider .cart-home {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .Home .content .cart-slider .cart-home .img {
    width: 100%;
    height: 500px;
  }
  .Home .content .cart-slider .cart-home .text-home {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .Home .content .cart-slider .cart-home .des-home {
    padding: 0 15px;
  }
  .Home .content .dots-slider-home {
    bottom: 0px;
  }
}
@media screen and (max-width: 550px) {
  .Home {
    height: 700px !important;
  }
  .Home .cart-slider {
    height: 90% !important;
  }
  .Home .cart-slider .cart-home .img {
    height: 300px !important;
  }
  .Home .cart-slider .cart-home .text-home {
    gap: 0px !important;
    text-align: center;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .Home .cart-slider .cart-home .text-home .title-home {
    gap: 5px !important;
  }
  .Home .cart-slider .cart-home .text-home .des-home {
    line-height: 20px !important;
    font-size: 14px !important;
  }
  .Home .cart-slider .buttons-home {
    gap: 10px;
  }
  .Home .cart-slider .buttons-home .download-btn {
    width: 150px;
    height: 50px;
    padding: 20px 10px;
    gap: 8px;
  }
  .Home .cart-slider .buttons-home .info-btn .title-btn {
    font-size: 8px;
  }
  .Home .cart-slider .buttons-home .info-btn .des-btn {
    font-size: 12px;
  }
  .Home .dots-slider-home {
    bottom: 40px !important;
  }
}

.about {
  height: 410px;
}
.about .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.about .content .title-about-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  font-size: 250px;
  font-style: normal;
  font-weight: 700;
  line-height: 165px;
  letter-spacing: -5px;
  z-index: 2;
}
.about .content .title-about-section h1 {
  font-size: 200px;
  font-weight: 600;
  color: rgba(133, 127, 127, 0.3764705882);
  text-align: center;
}
.about .content .about-text {
  width: 40%;
  height: 412px;
  background: rgba(253, 49, 50, 0.1019607843);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 20px 0 20px 100px;
}
.about .content .about-text .title-about {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 26.4px;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}
.about .content .about-text .sub-title-about {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 33.6px;
  letter-spacing: -0.4px;
}
.about .content .about-text .des-about {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23.52px;
  letter-spacing: -0.28px;
  max-width: 300px;
}
.about .content .about-img {
  width: 60%;
  height: 412px;
}
.about .content .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .about {
    height: 950px;
  }
  .about .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto !important;
  }
  .about .content .title-about-section {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
  .about .content .title-about-section h1 {
    font-size: 150px;
    line-height: 150px;
  }
}
@media screen and (max-width: 900px) and (max-width: 500px) {
  .about .content .title-about-section h1 {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .about .content .about-text {
    width: 100%;
    padding: 20px;
    left: 0;
    opacity: 1;
    position: relative;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about .content .about-text .title-about {
    font-size: 60px;
    line-height: 40px;
  }
  .about .content .about-text .sub-title-about {
    font-size: 40px;
  }
  .about .content .about-text .des-about {
    font-size: 20px;
    max-width: 700px;
  }
  .about .content .about-img {
    width: 100%;
    height: 300px;
    position: relative;
  }
  .about .content .about-img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.scouts {
  height: 519px;
  overflow: hidden;
}
.scouts .content {
  width: 100%;
}
.scouts .content .cart-scouts {
  width: 100%;
  height: 308px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  left: 0;
}
.scouts .content .cart-scouts .img-cover-scouts {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.23;
  background-image: url(./img/Rectangle.png);
}
.scouts .content .cart-scouts::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(269.73deg, #fd3132 0.1%, #d900a9 96.15%);
}
.scouts .content .cart-scouts .title-scouts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  gap: 10px;
  z-index: 1;
}
.scouts .content .cart-scouts .title-scouts .text-scouts {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}
.scouts .content .cart-scouts .title-scouts .des-scouts {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 33.6px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  max-width: 540px;
}
.scouts .content .cart-scouts .img-scouts {
  position: relative;
  top: -5px;
  max-width: 344px;
  height: 517px;
  z-index: 1;
}
.scouts .content .cart-scouts .img-scouts img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .scouts {
    height: auto;
  }
  .scouts .content .cart-scouts {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 10px;
  }
  .scouts .content .cart-scouts .title-scouts {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .scouts .content .cart-scouts .title-scouts .text-scouts {
    letter-spacing: 0;
    font-size: 30px;
  }
  .scouts .content .cart-scouts .title-scouts .des-scouts {
    max-width: 100%;
    font-size: 16px;
    letter-spacing: 0;
  }
  .scouts .content .cart-scouts .img-scouts {
    top: 0;
    max-width: 400px;
    height: 300px;
  }
}
@media screen and (max-width: 550px) {
  .scouts .content .cart-scouts .title-scouts .text-scouts {
    font-size: 28px;
  }
  .scouts .content .cart-scouts .title-scouts .des-scouts {
    font-size: 14px;
  }
  .scouts .content .cart-scouts .img-scouts {
    max-width: 300px;
    height: 250px;
  }
}
@media screen and (max-width: 428px) {
  .scouts .content .cart-scouts .title-scouts .text-scouts {
    font-size: 28px;
  }
  .scouts .content .cart-scouts .title-scouts .des-scouts {
    font-size: 14px;
  }
  .scouts .content .cart-scouts .img-scouts {
    max-width: 300px;
    height: 250px;
  }
}
@media screen and (min-width: 329px) and (max-width: 768px) {
  .scouts .text-scouts {
    font-size: 28px;
  }
  .scouts .des-scouts {
    font-size: 14px;
  }
  .scouts .img-scouts {
    max-width: 300px;
    height: 250px;
  }
  .scouts .img-scouts img {
    width: 300px !important;
    height: 250px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}

.works {
  overflow: hidden;
  position: relative;
}
.works .content {
  width: 100%;
}
.works .content .carts-works {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px;
  padding: 0 20px;
}
.works .content .carts-works .cart-works {
  width: 300px;
  height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 40px 20px 30px;
  border-radius: 40px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}
.works .content .carts-works .cart-works:not(:last-child)::after {
  width: 30px;
  content: "→";
  position: absolute;
  top: 50%;
  right: -39px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fd3132;
  font-size: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.works .content .carts-works .cart-works:hover {
  border: 2px solid #fd3132;
}
.works .content .carts-works .cart-works:hover::after {
  width: 40px;
  opacity: 1;
}
.works .content .carts-works .cart-works:hover .step {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.works .content .carts-works .cart-works:hover .info-work {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  gap: 15px;
  padding: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.works .content .carts-works .cart-works .info-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.works .content .carts-works .cart-works .step {
  opacity: 0;
  color: #fd3132;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.works .content .carts-works .cart-works .icon {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  -webkit-filter: drop-shadow(0px 30px 60px rgba(19, 197, 58, 0.2));
          filter: drop-shadow(0px 30px 60px rgba(19, 197, 58, 0.2));
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.works .content .carts-works .cart-works .icon img {
  width: 34px;
  height: 34px;
}
.works .content .carts-works .cart-works .title h1 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.4px;
  text-transform: capitalize;
}
.works .content .carts-works .cart-works .title-center h1 {
  color: #fd3132 !important;
}
.works .content .carts-works .cart-works .des {
  color: #000;
  max-width: 200px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.68px;
  letter-spacing: -0.24px;
}
.works .content .img-left-top {
  position: absolute;
  top: 0;
  left: 30%;
  z-index: -1;
}
.works .content .img-left {
  position: absolute;
  left: 30px;
  bottom: 0;
  z-index: -1;
}
.works .content .img-left .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  .works .content .img-left {
    display: none;
  }
}
.works .content .img-center {
  position: absolute;
  left: 60%;
  bottom: 10px;
  z-index: -1;
}
.works .content .img-top {
  position: absolute;
  top: 0;
  left: 58%;
  z-index: -1;
}
.works .content .img-bottom-right {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 201px;
  height: 345px;
}
.works .content .img-bottom-right .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
}
.works .content .img-bottom-right .img .img-bottom-one {
  width: 197.5px;
  height: 250px;
  -webkit-animation: showImgBottomRight 10s ease infinite;
          animation: showImgBottomRight 10s ease infinite;
}
@-webkit-keyframes showImgBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
  25% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
}
@keyframes showImgBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
  25% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
}
.works .content .img-bottom-right .img .img-bottom-two {
  width: 80px;
  height: 91px;
  -webkit-animation: showImgBottomRightTwo 10s ease infinite;
          animation: showImgBottomRightTwo 10s ease infinite;
  opacity: 0;
}
@-webkit-keyframes showImgBottomRightTwo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes showImgBottomRightTwo {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  75% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@media screen and (max-width: 680px) {
  .works .content .cart-works:not(:last-child)::after {
    content: "→";
    right: auto !important;
    top: auto !important;
    bottom: -43px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg) !important;
            transform: translateX(-50%) rotate(90deg) !important;
  }
  .works .content .active-res-works {
    border: 2px solid #fd3132 !important;
  }
  .works .content .active-res-works::after {
    width: 40px !important;
    opacity: 1 !important;
  }
  .works .content .active-res-works .step {
    opacity: 1 !important;
    -webkit-transform: translateY(0px) !important;
            transform: translateY(0px) !important;
  }
  .works .content .active-res-works .info-work {
    gap: 15px !important;
    padding: 0 !important;
    -webkit-transform: translateY(10px) !important;
            transform: translateY(10px) !important;
    -webkit-transition: all ease-in-out 0.3s !important;
    transition: all ease-in-out 0.3s !important;
  }
}
@media screen and (max-width: 550px) {
  .works .img-bottom-right {
    display: none !important;
  }
}

.slider-icones .content {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  height: 142px !important;
  background: #fd3132 !important;
  overflow: hidden !important;
}
@-webkit-keyframes stopSlider {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-500%);
            transform: translateX(-500%);
  }
}
@keyframes stopSlider {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-500%);
            transform: translateX(-500%);
  }
}
.slider-icones .content .slick-list,
.slider-icones .content .slick-track,
.slider-icones .content .slider {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 100px !important;
  width: 100% !important;
  height: 100% !important;
  cursor: pointer;
}
.slider-icones .content .slick-list .slick-slide,
.slider-icones .content .slick-track .slick-slide,
.slider-icones .content .slider .slick-slide {
  opacity: 1 !important;
}
.slider-icones .content .slick-list .slick-slide,
.slider-icones .content .slick-list .slider-img,
.slider-icones .content .slick-track .slick-slide,
.slider-icones .content .slick-track .slider-img,
.slider-icones .content .slider .slick-slide,
.slider-icones .content .slider .slider-img {
  width: 82px !important;
  height: 83px !important;
}
@-webkit-keyframes sliderIcons {
  from {
    -webkit-transform: translateX(-500%);
            transform: translateX(-500%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes sliderIcons {
  from {
    -webkit-transform: translateX(-500%);
            transform: translateX(-500%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slider-icones .content .slick-list .slick-slide img,
.slider-icones .content .slick-list .slider-img img,
.slider-icones .content .slick-track .slick-slide img,
.slider-icones .content .slick-track .slider-img img,
.slider-icones .content .slider .slick-slide img,
.slider-icones .content .slider .slider-img img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 900px) {
  .slider-icones .content {
    height: 100px !important;
  }
  .slider-icones .content .slick-list,
  .slider-icones .content .slick-track,
  .slider-icones .content .slider {
    gap: 70px !important;
  }
  .slider-icones .content .slick-list .slick-slide,
  .slider-icones .content .slick-list .slider-img,
  .slider-icones .content .slick-track .slick-slide,
  .slider-icones .content .slick-track .slider-img,
  .slider-icones .content .slider .slick-slide,
  .slider-icones .content .slider .slider-img {
    width: 60px !important;
    height: 60px !important;
  }
}

.download {
  width: 100%;
  height: auto;
  margin-top: 50px;
  overflow: hidden;
}
.download .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding-left: 115px;
}
.download .content .img-download {
  height: 550px;
}
.download .content .img-download img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.download .content .title-download {
  color: #fd3132;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.8px;
  text-transform: capitalize;
  display: block;
}
.download .content .title-download.title-download__res {
  display: none;
}
@media screen and (max-width: 900px) {
  .download .content .title-download {
    display: none;
  }
  .download .content .title-download.title-download__res {
    display: block;
  }
}
.download .content .content-download {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.download .content .content-download .text-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.download .content .content-download .text-download .des-download {
  color: #000;
  max-width: 665px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23.52px;
  letter-spacing: -0.28px;
}
.download .content .content-download .frame-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.download .content .content-download .frame-download .imgs-download {
  width: 380px;
  height: 123px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.download .content .content-download .frame-download .imgs-download .info-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  gap: 12px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
}
.download .content .content-download .frame-download .imgs-download .info-frame .icon-frame {
  width: 33px;
  height: 33px;
}
.download .content .content-download .frame-download .imgs-download .info-frame .icon-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.download .content .content-download .frame-download .imgs-download .info-frame .title-frame {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 10.56px;
  letter-spacing: -0.32px;
}
.download .content .content-download .frame-download .img-frame {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.013px 21.973px 13.684px 0.243px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .download {
    height: auto !important;
  }
  .download .content {
    padding: 10px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .download .content .img-download {
    width: 400px !important;
    height: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .download .content .content-download {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .download .content .content-download .frame-download .imgs-download {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .download .content .content-download .text-download {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .download .content .content-download .text-download .des-download {
    letter-spacing: 0;
  }
  .download .content .img-frame {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .download .buttons-download {
    gap: 10px;
  }
  .download .buttons-download .download-btn {
    width: 150px;
    height: 50px;
    padding: 20px 10px;
    gap: 8px;
  }
  .download .buttons-download .info-btn .title-btn {
    font-size: 8px;
  }
  .download .buttons-download .info-btn .des-btn {
    font-size: 12px;
  }
}

.contact {
  height: auto;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.contact::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -150px;
  width: 600px;
  height: 968px;
  border-radius: 968px;
  background: rgba(253, 49, 50, 0.2);
  -webkit-filter: blur(84.0500030518px);
          filter: blur(84.0500030518px);
  z-index: -1;
}
.contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 321px;
  height: 321px;
  border-radius: 321px;
  background: rgba(253, 49, 50, 0.09);
  -webkit-filter: blur(84.0500030518px);
          filter: blur(84.0500030518px);
}
.contact .content .container-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0;
  gap: 50px;
}
.contact .content .container-contact .divider {
  width: 2px;
  background: #DCCECE;
}
.contact .content .container-contact .content-contact-form {
  width: 80%;
  padding-left: 50px;
}
.contact .content .container-contact .title-about-contact {
  font-size: 40px;
  font-weight: 700;
  line-height: 26.4px;
  letter-spacing: -2%;
  text-transform: capitalize;
  color: #333;
  font-family: "Circular Std";
}
.contact .content .container-contact .title-about-contact .title-span-contact {
  color: #B85050;
}
.contact .content .container-contact .des-about-contact {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: -2%;
  text-transform: capitalize;
  color: #000;
  font-family: "Circular Std";
  max-width: 455px;
  margin-top: 27px;
}
.contact .content .container-contact .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}
.contact .content .container-contact .contact-info .info-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 31px;
}
.contact .content .container-contact .contact-info .info-contact-item .icon-info-contact {
  width: 24px;
  height: 24px;
}
.contact .content .container-contact .contact-info .info-contact-item .icon-info-contact img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .content .container-contact .contact-info .info-contact-item .text-info-contact {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: -2%;
  text-transform: capitalize;
  color: #000;
  font-family: "Circular Std";
}
.contact .content .title-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
.contact .content .title-contact h1 {
  color: #333;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}
.contact .content .title-contact p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 10.56px;
  letter-spacing: -0.32px;
  text-transform: capitalize;
}
.contact .content .form-contact {
  width: 100%;
}
.contact .content .form-contact .form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
.contact .content .form-contact .form .form-content {
  width: 100%;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}
.contact .content .form-contact .form .input-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  width: 100%;
}
.contact .content .form-contact .form .input-form .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 23px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: none;
  outline: none;
  border-bottom: 2px #000 solid;
  color: #878787;
  background: transparent;
  font-style: normal;
  font-family: "Circular Std";
}
.contact .content .form-contact .form .input-form .input::-webkit-input-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .input-form .input::-moz-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .input-form .input:-ms-input-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .input-form .input::-ms-input-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .input-form .input::placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 96px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 2px #000 solid;
  color: #878787;
  resize: none;
  font-family: "Circular Std";
}
.contact .content .form-contact .form .textarea::-webkit-input-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .textarea::-moz-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .textarea:-ms-input-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .textarea::-ms-input-placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .textarea::placeholder {
  color: #878787;
  font-size: 13px;
  font-style: normal;
}
.contact .content .form-contact .form .send-btn {
  width: 205px;
  height: 62px;
  border-radius: 19px;
  background: linear-gradient(269deg, #9747ff -3.22%, #fd3132 110.65%);
  color: #fff;
  text-align: center;
  border: none;
  outline: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 9.24px;
  letter-spacing: -0.28px;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.contact .content .form-contact .form .send-btn:hover {
  color: #9747ff;
  background: #d3d3d3;
}
.contact .content .checkbox-contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.contact .error-message {
  max-width: 600px;
  background: #fff2f0;
  border: 1px solid #ffccc7;
  padding: 20px 24px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 900px) {
  .contact .content-contact-form {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .contact .container-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .container-contact .title-contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .container-contact .checkbox-contact {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .contact .container-contact .contact-about {
    padding: 0 30px;
  }
  .contact .container-contact .contact-about .title-about-contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 40px;
    letter-spacing: 0px;
  }
  .contact .form-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .contact .form-content .input-form {
    width: 100%;
  }
  .contact .form-content .input-form .input {
    width: 90% !important;
  }
  .contact .form-content .textarea {
    width: 90% !important;
  }
}

.footer {
  height: 100px;
  width: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .content-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 29px;
}
.footer .content-footer .text-footer {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 9.24px;
  letter-spacing: -0.28px;
  text-transform: capitalize;
}
.footer .content-footer .link-footer {
  color: #B85050;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #B85050;
}

.coming-soon {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.coming-soon .content {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  background: linear-gradient(251.66deg, rgba(255, 255, 255, 0.95) 10.69%, rgba(184, 80, 80, 0.7) 100.71%);
}
.coming-soon .content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/75862a498a6acec49963decb27acb0f7.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.coming-soon .content .title-coming-soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.coming-soon .content .title-coming-soon .logo-coming {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.coming-soon .content .title-coming-soon .logo-coming img {
  width: 356px;
  height: 83px;
  -o-object-fit: cover;
     object-fit: cover;
}
.coming-soon .content .title-coming-soon .logo-coming .title-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
  font-size: 50px;
  font-style: 700;
  line-height: 42px;
  letter-spacing: -2%;
  text-transform: capitalize;
}
.coming-soon .content .title-coming-soon .logo-coming .title-logo span {
  color: #fd3132;
}
.coming-soon .content .title-coming-soon .sub-title-coming {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -2%;
  line-height: 40px;
  margin-top: 18px;
  text-transform: capitalize;
}
.coming-soon .content .coming-soon-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.coming-soon .content .coming-soon-time .title-time {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -2%;
  color: #ffbc10;
  text-transform: capitalize;
  width: 490px;
  min-height: 40px;
  padding: 5px 20px;
  padding-top: 12px;
  background: linear-gradient(90.03deg, #2f2f2f 3.1%, #3c3939 111.69%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px 20px 0px 0px;
  top: -28px;
}
.coming-soon .content .coming-soon-time .timer {
  width: 832px;
  min-height: 220px;
  border-radius: 50px;
  background: linear-gradient(90.03deg, #2f2f2f 3.1%, #3c3939 111.69%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
.coming-soon .content .coming-soon-time .timer > div {
  font-family: "Digital";
  font-size: 94px;
  font-weight: 400;
  color: #4DFF71;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}
.coming-soon .content .coming-soon-time .timer > div span {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .coming-soon .content .title-coming-soon .logo-coming .title-logo {
    font-size: 40px;
    line-height: 35px;
  }
  .coming-soon .content .title-coming-soon .logo-coming img {
    width: 200px;
    height: 50px;
  }
  .coming-soon .content .coming-soon-time .title-time {
    width: 80%;
    font-size: 17px;
    text-align: center;
  }
  .coming-soon .content .coming-soon-time .timer {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 20px;
    gap: 16px;
  }
  .coming-soon .content .coming-soon-time .timer > div {
    font-size: 30px;
    gap: 20px;
  }
  .coming-soon .content .coming-soon-time .timer > div span {
    font-size: 25px;
  }
}

.terms-section {
  padding: 28px 179px;
}
.terms-section .logo-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 33px;
}
.terms-section .terms-content-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
  margin-bottom: 50px;
}
.terms-section .terms-content-desc .title-terms {
  font-size: 35px;
  font-weight: 900;
  line-height: 42.35px;
  color: #B85050;
  text-transform: uppercase;
}
.terms-section .terms-content-desc .title-terms-two {
  font-size: 20px;
  font-weight: 700;
  line-height: 33.6px;
  color: #000000;
}
.terms-section .terms-content-desc .terms-content-desc-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.terms-section .terms-content-desc .terms-content-desc-text .text-terms {
  font-size: 14px;
  font-weight: 500;
  line-height: 23.52px;
  letter-spacing: -2%;
  color: #000000;
  font-family: "Circular Std";
}
.terms-section .footer-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.terms-section .footer-terms .text-footer-terms {
  font-size: 14px;
  font-weight: 500;
  line-height: 9.24px;
  color: #878787;
  font-family: "Circular Std";
}
@media screen and (max-width: 860px) {
  .terms-section {
    padding: 28px 50px;
  }
}
@media screen and (max-width: 500px) {
  .terms-section {
    padding: 28px 20px;
  }
  .terms-section .terms-content-desc .title-terms {
    font-size: 30px;
  }
}
