/********** Template CSS **********/
:root {
  --primary: #4294e3;
  --secondary: #8f12fd;
  --light: #f0f6ff;
  --dark: #262b47;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Gradient Text & BG ***/
.text-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.bg-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
  position: relative;
  overflow: hidden;
  border: none;
  color: #ffffff;
  z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
  opacity: 1;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  border: none;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 45px 0;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--light) !important;
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid;
  border-color: var(--light) transparent transparent transparent;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
  top: 0;
}

.navbar-light .navbar-brand h1 {
  color: #ffffff;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }

  .navbar-light .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
  }

  .navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
  }

  .sticky-top.navbar-light .navbar-nav .nav-link::before {
    border-top-color: var(--primary);
  }

  .sticky-top.navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/*** Hero Header ***/
.hero-header {
  /* margin-bottom: 6rem; */

  /* background-image:  url(../img/bg-desktop.jpg); The image used */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  /* background:
        url(../img/bg-desktop.jpg),
        linear-gradient(to bottom right, var(--primary), var(--secondary)); */
  /* background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary)); */
  background-position: left 0px top 0px, right 0px top 50%, center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/*** Feature ***/
.feature-item {
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

/*** Pricing ***/
.pricing .nav {
  padding: 2px;
}

.pricing .nav-link {
  padding: 12px 30px;
  font-weight: 500;
  color: var(--dark);
  background: #ffffff;
}

.pricing .nav-item:first-child .nav-link {
  border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
  border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
  color: #ffffff;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Screenshot ***/
.screenshot-carousel {
  position: relative;
  width: 253px;
  height: 500px;
  padding: 15px;
  margin-right: 30px;
}

.screenshot-carousel::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: 253px 500px;
  z-index: 1;
}

.screenshot-carousel .owl-item img {
  position: relative;
  width: 223px;
  height: 470px;
}

.screenshot-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screenshot-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  width: 15px;
  height: 15px;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 15px;
  transition: 0.5s;
}

.screenshot-carousel .owl-dot::after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  top: 5px;
  left: 5px;
  background: #ffffff;
  border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
  box-shadow: 0 0 10px var(--dark);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 60px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

/*** Footer ***/
.footer {
  margin-top: 6rem;
  padding-top: 9rem;
  background: url(../img/bg-circle.png), url(../img/bg-triangle.png),
    url(../img/bg-top.png),
    linear-gradient(to bottom right, var(--primary), var(--secondary));
  background-position: left 0px bottom 0px, right 0px top 50%, center top;
  background-repeat: no-repeat;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.section-header {
  margin-bottom: 100px;
}
.header-title {
  /* font-size: 24px; */
  color: black;
}
.header-title span {
  /* font-size: 24px; */
  color: #e406da;
}

.btn-lang {
  width: 100px;
  margin-left: auto;
}

.btn-lang {
  display: block !important;
}
.logo-img {
  width: 100px;
}

/*custom  desgin */
/* general desgin  */

p,
button,
header {
  font-family: 'Montserrat', sans-serif;
}
.page-width {
  width: 90%;
  margin: auto auto;
}
/* section 1 */
.nv_6 .logo-img {
  width: 150px;
  margin: auto;
  margin-top: 10px;
}
.section4{
    background-image: url(../images/section4-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section4 header {
    text-align: left;
    color: #f95047;
    font-family: Montserrat;
    font-size: 32px;
    font-weight: bold;
   
}
.section4 p {
    text-align: left;
    color: black;
    font-family: Montserrat;
    font-size: 16px;
    font-weight:500;
    margin-top: 10px;
   
}
.nv_6 .section1 {
  /* background-color: #213f65; */
  padding: 10px 10px;
  height: 100px;
}
.nv_6 .section1 .header-title {
  padding-top: 35px;
}
.nv_6 .section1 .btn-lang {
  background-color: #ece7e7;
  color: black;
  margin: auto;
  margin-top: 25px;
  border-radius: 10px;
  border: 1px solid white;
}
/* section2 */

.nv_6 .section2 {
  /* background-color: #e7e3ff; */
  background-image: url(../images/main-img.png);
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  min-height: 600px;
  /* background-size: 100% 100%; */
  /* padding: 74px 50px; */
}

.nv_6 .section2 .main-img {
  width: 500px;
}
.nv_6 .section2 .app-title {
  text-transform: uppercase;
  margin-top: 90px;
  color: #23a1ab;

  font-size: 70px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}
.nv_6 .section2 .app-describe {
  margin-top: 25px;
  object-fit: contain;
  font-family: Montserrat;
  font-size: 20.3px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  color: white;
}
.nv_6 .section2 .input-txt {
  object-fit: contain;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;

  color: white;
  text-align: left !important;
  /* padding-top: 50px; */
}

.btn-Subscribe,
.btn-Subscribe:hover {
  width: 80%;
  height: 54.9px;
  flex-grow: 0;
  border-radius: 6.6px;
  background-color: #3da8b9;
  color: white;
  /* font-weight: bold; */
  font-size: 18px;
}
.btn-exit,
.btn-exit:hover {
  width: 80%;
  height: 54.9px;
  color: #3da8b9;
  padding-top: 16px;
  font-size: 18px;
  /* font-weight: bold!important; */
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  line-height: normal;
  border: 2px solid #3da8b9;
  border-radius: 10px;
}
.main-img-section2 {
  width: 440px;
}
.title-section7 {
  text-align: center;
}
.section4-div2 header.title {
  object-fit: contain;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  /* color: #000; */
  /* padding-top: 150px; */
}
.section4-div2 p.txt-describe {
  object-fit: contain;
  font-family: Montserrat;
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  font-weight: 500;
  color: #000;
  padding-top: 50px;
}
.section4-div2 span.span-style {
  object-fit: contain;
  font-family: Montserrat;
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  font-weight: 500;
  color: #634ced;
}
.section4-div2 p.txt-sub-describe {
  margin-top: 40px;
  object-fit: contain;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}
.img-store {
  width: 200px;
  margin-top: 30px;
}
.screenshot-carousel .owl-dots {
  right: auto;
  left: -30px;
}

.nv_6 .section5 .app-title {
  margin-top: 20px;
  -webkit-text-stroke: 0 #fff;
  text-transform: uppercase;
  font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: black;
}

.nv_6 .section5 .app-title span {
  color: #634ced;
  white-space: pre;
}

.nv_6 .section5 .app-describe {
  margin-top: 50px;
  object-fit: contain;
  font-family: Montserrat;
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: normal;
  text-align: center;
  color: white;
}
.section6 {
  /* margin-top: 65px; */
  margin-bottom: 65px;
}
.section6 img {
  width: 200px;
}
.section6 header {
  object-fit: contain;
  font-family: Montserrat;
  font-size: x-large;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}
.section6 h5 {
  object-fit: contain;
  font-family: Montserrat;
  margin-top: 25px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}
.section6 p {
  /* margin-top: 40px; */
  object-fit: contain;
  font-family: Montserrat;
  font-size: 16px;
    padding: 5px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}

.section7 .div-img-store {
  border-radius: 12px;
  text-align: center;
}
.section7 .div-img-store img {
  width: inherit;
}
.section6-item {
  width: 80%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
  
}
.section6-item img.category-img-item {
  width: 100px;
}
.section7-item {
  width: 80%;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
}
.section7 {
  padding-top: 50px;
  background-image: url(../images/bg-div7.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section7 .div-img-store p {
  width: 50%;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  object-fit: contain;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.03;
  letter-spacing: normal;
  text-align: center;
  color: #02214b;
}
.section7 .div-img-store .img-app-store {
  width: 200px;
  margin-top: 20px;
}

.section7 .div-terms p {
  margin: 0px 44px 0px 12px;
  padding: 10px 5px 10px 25px;
  object-fit: contain;
  border-radius: 30px;
  color: #000;
}
.section8 {
  background-color: #23a1ab;
}
.section8 p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: white;
  padding: 10px;
  /* margin-top: 70px; */
}
.bg-red-600 {
  color: red;
}

.nv6 .section9 {
  /* background: linear-gradient(to right, #e406da 6%, #634ced 50%, #0082fb 100%); */
}

.frame-img {
  width: 90%;
  margin: auto;
}
.div-frame-img {
  float: right;
}
.frame-padding {
  padding-top: 70px;
}

body {
  background: #f6f6f6 !important;
}

.div-img-section4 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.section4-div2 img {
  width: 150px;
}
.section4-div2-divImg {
  text-align: right;
  padding-left: 5%;
  padding-right: 5%;
}
.section4-div2 header {
  object-fit: contain;
  font-family: Montserrat;
  font-size: 31.7px;
  font-weight: bold;
  padding-top: 10px;
  color: #e406da;
}
.section4-div2 p {
  font-size: 20px;
  font-family: Montserrat;
  font-weight: normal;
  color: white;
}
.section4-div2-divImg-app img {
  width: 70%;
  margin: auto;
}
.div-img-section4 img {
  width: 100%;
  height: 100%;
}
.hr-page {
  margin-top: 60px;
  margin-bottom: 50px;
  border-top: 2px solid black;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.section9 {
  background-color: #1e1e1e;
}
.section9 h4 {
  color: white;
  text-align: center;
}
.section6-main-item {
  float: right;
  margin-top: 15px;
}
.section9-item {
  float: right;
}
.section9-item img {
  border-radius: 12px;
}
/* responsive */
/* lg screen */
@media (max-width: 1200px) {
}
/* md screen */
@media (max-width: 992px) {
  .nv_6 .section1 .header-title {
    padding-top: 15px;
  }
  .main-img-section2 {
    width: 300px;
  }
  .nv_6 .section2 .app-title {
    font-size: 50px;
  }
  .header-title {
    font-size: 24px;
  }
  .nv_6 .section2 .app-describe {
    margin: 25px 0 0 0;
  }
  .nv_6 .section5 .app-title {
    font-size: 40px;
  }
  .nv_6 .section2 .main-img {
    width: 380px;
  }
  .nv_6 .section5 .main-img {
    width: 380px;
  }
  .section7 .div-img-store .img-app-store {
    width: 90%;
    margin: auto auto;
  }
  .nv_6 .section2 {
    /* background-image: url(../images/bg-mobile-section2.png); */
    min-height: 600px;
  }
  .img-store {
    width: 90%;
    margin: auto;
  }
  .section7 .div-img-store img {
    width: 50%;
  }
  .section6 h5{
    font-size: 16px;
  }
  .section6-item{
    min-height: 150px;
  }
}
/* sm screen */
@media (max-width: 768px) {
  .page-width {
    width: 93%;
  }
  .nv_6 .section1 .header-title {
    padding-top: 20px;
  }
  
  .nv_6 .section2 .main-img {
    width: 50%;
  }
  .nv_6 .section2 .app-title {
    font-size: 40px;
  }
  .nv_6 .section2 .app-describe {
    font-size: 15px;
  }
  .nv_6 .section2 .input-txt {
    font-size: 16px;
  }
  .nv_6 .section2 p.app-describe strong {
    color: white !important;
  }

  .nv_6 .section2 {
    padding: 55px 10px !important;
    min-height: 600px;
  }
  .section4-div2 p.txt-describe {
    font-size: 16px;
  }
  .section4-div2 p.txt-sub-describe {
    font-size: 16px;
  }
  .nv_6 .section5 .main-img {
    width: 300px;
  }
  .nv_6 .section5 .app-title {
    font-size: 30px;
  }
  .nv_6 .section5 .app-describe {
    font-size: 20px;
  }
  .section6 p {
    margin-top: 30px;
    font-size: 16px;
  }
  .section8 p {
    font-size: 16px;
    /* margin-top:50px; */
  }
  .div-img-store img.footer-logo {
    width: 70%;
    margin: auto;
  }
  .section7 .div-img-store p {
    width: 90%;
  }
  .img-app-store {
    padding-top: 10px;
  }
  .header-title {
    font-size: 20px;
  }
  .btn-lang {
    padding: 5px !important;
  }
.section6-item{
  min-height: 160px;
}
  .nv_6 .section2 .input-txt {
    padding-top: 20px;
  }
  .nv_6 .section2 .app-describe {
    margin: 15px 0 0 0;
  }
  .title-section7 {
    margin-top: 30px;
  }
  .section7-item-img,
  .section4-banner {
    width: 100%;
  }
  .section9 img {
    width: 57%;
  }
}
/* xs screen */
@media (max-width: 576px) {
  .header-title {
    font-size: 16px;
  }
  .btn-lang {
    width: 70px !important;
  }
  .nv_6 .logo-img {
    width: 100px;
  }
  .frame-img {
    width: 80%;
  }
  .section5 {
    padding: 0%;
  }
  .section4-div2 header.title {
    padding-top: 0px;
  }
  .img-store {
    width: 110px;
  }
  .page-width {
    width: 93%;
  }
  .nv_6 .logo-img {
    width: 75px;
  }
  .header-title {
    font-size: 10px;
  }
  .nv_6 .section1 {
    height: 70px;
  }
  .nv_6 .section5 .main-img {
    width: 97%;
    margin: auto;
  }
  .nv_6 .section1 .btn-lang {
    margin-top: 10px;
    font-size: 11px;
  }
  .div-img-store img.footer-logo {
    width: 140px;
  }
  .section7 .div-img-store .img-app-store {
    width: 140px;
  }
  .nv_6 .section5 .app-title {
    font-size: 20px;
  }
  .section7 .div-terms p {
    margin: 21px 0 21px 0;
  }
  .section7 {
    margin-top: 5px;
  }

  .nv_6 .section2 .app-title {
    font-size: 35px;
  }
  .section6 h1 {
    font-size: 20px;
  }
  .section6 p {
    font-size: 14px;
  }
  .section8 p {
    font-size: 14px;
  }
  .section4-div2 header {
    font-size: 25px;
  }
  .section4-div2 p {
    font-size: 16px;
  }
  .section4-div2-divImg img {
    width: 128px;
  }
  .title-section7 {
    margin-top: 30px;
  }
  .section7-item-img,
  .section4-banner {
    width: 100%;
  }
  .section9 img {
    width: 57%;
  }
  .btn-exit,
  .btn-exit:hover,
  .btn-Subscribe,
  .btn-Subscribe:hover {
    font-size: 12px;
    height: 62.9px;
  }
  .btn-exit,
  .btn-exit:hover {
    padding-top: 18px;
  }
}
