:root {
  --main-bg-color: #be0029;
  --color-dark-100: #222222;
  --transition-time: 1s;
}
@font-face {
  font-family: "San Francisco";
  font-weight: 400;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}
.bg-header {
  background-image: url(./image/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-body {
  background-image: url(./image/bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.menu-toggle {
   position: absolute;
   right: 0px;
   top: 10px;
   display: none;
}
.nav {
  transition: all ease var(--transition-time);
}
.nav.active {
  height: 150px;
}
.dark-100 {
  color: var(--color-dark-100) !important;
}
.f-md {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.title {
  font-style: normal;
  font-weight: bold;
  font-size: 54px;
  line-height: 60px;
}
.sub-title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.title-section h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
}
.slide-logo-item {
  /* width: 170px; */
  /* height: 85px; */
  padding: 15px;
}
.information {
  margin-top: 5rem;
}
.card-info {
  background: #ffffff;
  box-shadow: 0px 6px 28px -4px rgba(71, 90, 107, 0.1);
  border-radius: 4px;
  width: 370px;
}
.card-container .card-info:not(:last-child) {
  margin-right: 30px;
}
.card-title h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}
.netword-exchange {
  position: relative;
  margin-top: 100px;
  background-image: url(./image/bgRectangel.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 527px;
}
.vietnam-img {
  position: absolute;
  height: 370px;
  width: 215px;
  top: 50%; /* position the top  edge of the element at the middle of the parent */
  left: 50%; /* position the left edge of the element at the middle of the parent */
  transform: translate(-50%, -50%);
  background-image: url(./image/vietnam.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-container {
  min-height: 190px;
  width: 100%;
  background-color: var(--main-bg-color);
  color: white;
}

ul li {
  list-style: none;
}
.pt-70 {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .card-container {
    display: flex;
    flex-flow: column;
  }
  .card-container .card-info {
    max-width: 300px;
    margin-right: 0px !important;
    margin-top: 20px;
  }
  .title {
    font-size: 34px;
    line-height: 50px;
  }
  .netword-exchange {
    height: 330px;
  }
  .vietnam-img {
    height: 210px;
    width: 120px;
    top: 60%;
  }
  .title-section h2 {
    font-size: 22px;
  }
  .pt-70 {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  ul {
    padding-left: 0px !important;
  }
  .nav {
    display: block !important;
    height: 0px;
    overflow: hidden;
  }
  .left-slide .swiper-container {
    margin-top: 1rem !important;
  }
  .menu-toggle {
    display: block;
  }
}

.banner-container .swiper-wrapper {
  margin-bottom: 40px;
}

/*images*/

.banner-container .img-container {
  height: 100%;
  position: relative;
  min-height: 250px;
}

.banner-container .img-container .img-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: all ease var(--transition-time);
}
.banner-container .img-container .img-wrapper.active {
  opacity: 1;
}
.banner-container .img-container .img-wrapper .background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 3;
}

.banner-container .img-container .img-wrapper .background {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.banner-container .img-container .img-wrapper .background::after {
  content: "";
  position: absolute;
  height: 400px;
  width: 400px;
  bottom: 0;
  right: 0;
  border-radius: 500px;
  display: flex;
  transition: all ease var(--transition-time);
}
.banner-container .img-container .img-wrapper img {
  position: relative;
  bottom: 0;
  max-width: 100%;
  z-index: 4;
  transform: scale(0.6);
  opacity: 0;
  transition: all ease var(--transition-time);
}

.banner-container .img-container .img-wrapper.active img {
  transform: scale(1);
  opacity: 1;
}

/*single elements animation*/
.banner-container .text-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.banner-container .text-wrapper span {
  position: relative;
  transform: translateX(100%);
  display: inline-block;
  transition: all ease var(--transition-time);
  transition-delay: 0.1s;
}
.banner-container .purchase {
  overflow: hidden;
}
.banner-container .swiper-slide-active .purchase .contact,
.banner-container .purchase .purchase-btn {
  text-transform: uppercase;
  outline: 0;
  margin: 0;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  transform: translateY(160%);
  transition: all ease var(--transition-time);
  transition-delay: 0.25s;
}
/****************************/
/*active states*/
.banner-container .swiper-slide-active .text-wrapper span {
  transform: translateX(0);
}
.banner-container .swiper-slide-active .purchase .contact,
.banner-container .swiper-slide-active .purchase .purchase-btn {
  transform: translateY(0);
}
/*pagination*/
.bank-patner .swiper-bank-pagination .swiper-pagination-bullet,
.banner-container .swiper-pagination .swiper-pagination-bullet {
  background: var(--main-bg-color);
  height: 6px;
  width: 6px;
  border-radius: 10px;
  transition: all ease var(--transition-time);
}
.bank-patner .swiper-bank-pagination .swiper-pagination-bullet-active,
.banner-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
}
.swiper-bank-pagination {
  text-align: center;
}
.left-slide .swiper-container,.mt-12 {
  margin-top: 12rem;
}
.bank-patner .swiper-slide {
  display: flex;
  justify-content: center;
  object-fit: cover;
}

.bg-content {
  background-image: url(./image/bgRectangel.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.content {padding-top: 55px;}

.km-scroll {
    overflow: scroll;
    height: 400px;
}
.item-mobile {
  margin-top: 5%;
  background-image: url(./image/network.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px
}

.s-64-16 {
    font-size: 44px;
}
.item-top {
    top: 83px;
}
.item-margin-left-1 {
        margin-left: 100px;
    }
.item-margin-left-2 {
        margin-left: 100px;
    }
@media screen and (max-width: 800px) {
  .item-mobile {
    margin-top: 23% !important;
    background-image: url(./image/Group49.png) !important;
    height: 150px !important;
   }
   .s-64-16 {
       font-size: 32px !important;
   }
   .item-top {
    top: 22px !important;
    }
    .item-margin-left-1 {
        margin-left: 87px !important;
    }
    .item-margin-left-2 {
        margin-left: 35px !important;
    }
}