/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Inter', sans-serif;
  background-color: #efefef;
}

/* ===== NEW HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #323d46;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.header__logo img {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #323d46;
}

.header__list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header__list-item {
  margin: 0;
}

.header__list-link {
  text-decoration: none;
  color: #323d46;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__list-link:hover {
  color: #478ac9;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  padding: 0 24px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-left: 20px;
  text-decoration: none;
  transition: .3s;
}

.header__telegram:hover {
  background: #333;
  opacity: 0.9;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #323d46;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__item {
  margin-bottom: 15px;
}

.mobile-menu__item:last-child {
  margin-bottom: 0;
}

.mobile-menu__link {
  display: block;
  text-decoration: none;
  color: #323d46;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-menu__link:hover {
  color: #478ac9;
}

/* Burger active state */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Body padding for fixed header */
body.u-body {
  padding-top: 80px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .header__list {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .header__telegram {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .header__wrap {
    height: 70px;
  }
  
  .mobile-menu {
    top: 70px;
  }
  
  body.u-body {
    padding-top: 70px;
  }
  
  .header__logo img {
    width: 32px;
    height: 32px;
  }
  
  .header__logo-text {
    font-size: 1.25rem;
  }
}

/* ===== END HEADER STYLES ===== */

/* ===== HOME SECTION STYLES ===== */
.home {
  width: 100%;
  padding: 80px 0 160px;
  background-color: #efefef;
  overflow: hidden;
}

.home .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.home__wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.home__text {
  width: 100%;
  max-width: 710px;
}

.home__text h1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 120%;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.home__text p {
  font-family: 'Inter', sans-serif;
  max-width: 550px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
  color: #323d46;
  margin-bottom: 30px;
}

.home__wallet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 40px;
  border-radius: 50px;
  background: #007bfb;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  text-align: center;
  max-width: 100%;
  transition: 0.3s;
}

.home__wallet:hover {
  background: #0066d6;
  transform: translateY(-2px);
}

.home__image {
  width: 620px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2% 0 8%;
}

.home__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Home section responsive */
@media (max-width: 1199px) {
  .home__text h1 {
    font-size: 4rem;
  }
  
  .home__image {
    width: 500px;
  }
}

@media (max-width: 991px) {
  .home {
    padding: 60px 0 80px;
  }
  
  .home__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .home__text {
    max-width: 100%;
  }
  
  .home__text h1 {
    font-size: 3rem;
  }
  
  .home__text p {
    max-width: 100%;
    font-size: 1.25rem;
  }
  
  .home__image {
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin-top: 40px;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .home {
    padding: 40px 0 60px;
  }
  
  .home__text h1 {
    font-size: 2rem;
  }
  
  .home__text p {
    font-size: 1rem;
  }
  
  .home__wallet {
    height: 56px;
    padding: 0 28px;
    font-size: 1rem;
  }
  
  .home__image {
    max-width: 100%;
  }
}

/* ===== END HOME SECTION STYLES ===== */

/* ===== HOW-DOES SECTION STYLES ===== */
.how-does {
  width: 100%;
  padding: 0 0 80px;
  background-color: #efefef;
}

.how-does .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-does__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.how-does__item {
  border-radius: 20px;
  padding: 50px;
  text-decoration: none;
  display: block;
  cursor: default;
}

.how-does__item .title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.how-does__item .text {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

/* First item - dark, spans full width */
.how-does__item_first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column-start: 1;
  grid-column-end: -1;
  background-color: #323d46;
  color: #fff;
}

.how-does__item_first .how-does__item-text {
  flex: 1;
}

.how-does__item_first img {
  width: 340px;
  max-width: 405px;
  margin-left: 50px;
  transition: 1s;
  display: block;
}

.how-does__item_first:hover img {
  transform: scale(1.05);
}

/* Second item - white */
.how-does__item_second {
  background-color: #fff;
  color: #323d46;
}

/* Third item - blue */
.how-does__item_third {
  color: #fff;
  background-color: #007bfb;
  cursor: pointer;
  transition: background-color 0.3s;
}

.how-does__item_third:hover {
  background-color: #0066d6;
}

.how-does__item_third .title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.how-does__item_third img {
  width: 353px;
  max-width: 100%;
  transition: 1s;
  margin: 0 auto 30px;
  display: block;
}

.how-does__item_third:hover img {
  transform: scale(1.05);
}

.how-does__item_third .link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.how-does__item_third .link svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.how-does__item_third:hover .link svg {
  transform: translateX(5px);
}

/* How-does responsive */
@media (max-width: 991px) {
  .how-does__wrap {
    grid-template-columns: 1fr;
  }
  
  .how-does__item_first {
    flex-direction: column;
    text-align: center;
  }
  
  .how-does__item_first img {
    margin-left: 0;
    margin-top: 30px;
    width: 280px;
  }
  
  .how-does__item .title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .how-does {
    padding: 0 0 60px;
  }
  
  .how-does__item {
    padding: 30px;
  }
  
  .how-does__item .title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .how-does__item .text {
    font-size: 1rem;
  }
  
  .how-does__item_first img {
    width: 200px;
  }
  
  .how-does__item_third img {
    width: 250px;
  }
  
  .how-does__item_third .title {
    font-size: 1.25rem;
  }
}

/* ===== END HOW-DOES SECTION STYLES ===== */

/* ===== STATS SECTION STYLES ===== */
.stats {
  width: 100%;
  background-color: #007bfb;
}

.stats .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats__wrap {
  width: 100%;
  padding: 85px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  color: #fff;
}

.stats__item {
  width: 100%;
}

.stats__item .num {
  font-family: 'Inter', sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 120%;
  display: block;
}

.stats__item p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 325px;
  font-weight: 400;
}

/* Stats responsive */
@media (max-width: 991px) {
  .stats__wrap {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0;
    gap: 40px;
  }
  
  .stats__item p {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .stats__item .num {
    font-size: 2.5rem;
  }
}

@media (max-width: 575px) {
  .stats__wrap {
    padding: 40px 0;
    gap: 30px;
  }
  
  .stats__item .num {
    font-size: 2rem;
  }
  
  .stats__item p {
    font-size: 0.875rem;
  }
}

/* ===== END STATS SECTION STYLES ===== */

/* ===== HOW-MUCH SECTION STYLES ===== */
.how-much {
  width: 100%;
  padding: 80px 0;
  background-color: #efefef;
}

.how-much .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-much__wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 80px;
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.how-much__wrap:hover {
  box-shadow: 0 10px 40px rgba(0, 123, 251, 0.15);
}

.how-much__title {
  max-width: 622px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 120%;
  margin: 0 0 20px;
  display: block;
  color: #000;
}

.how-much__label {
  display: inline-flex;
  align-items: center;
  height: 32px;
  margin-bottom: 34px;
  padding: 0 20px;
  background-color: rgba(255, 168, 0, 0.1);
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 1px;
  color: #ffa800;
  text-transform: uppercase;
}

.how-much__up {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 120%;
  margin: 0 0 20px;
  display: block;
  color: #000;
}

.how-much__cost {
  display: flex;
  align-items: baseline;
  margin-bottom: 40px;
}

.how-much__cost-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 100%;
  background: linear-gradient(115.31deg, #00a3ff -9.87%, #ff00e5 105.89%);
  display: block;
  padding-bottom: 2px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-much__cost-label {
  position: relative;
  top: -10px;
  margin-left: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 100%;
  color: #637381;
}

.how-much__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 25px;
  margin-left: -20px;
  color: #000;
}

.how-much__link svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.how-much__wrap:hover .how-much__link svg {
  transform: translateX(5px);
}

.how-much__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 150%;
  text-align: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #323d46;
}

.how-much__text b {
  font-weight: 700;
}

/* How-much responsive */
@media (max-width: 991px) {
  .how-much__title {
    font-size: 2.5rem;
  }
  
  .how-much__up {
    font-size: 2rem;
  }
  
  .how-much__cost-num {
    font-size: 4rem;
  }
  
  .how-much__cost-label {
    font-size: 1.5rem;
  }
  
  .how-much__text {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .how-much {
    padding: 60px 0;
  }
  
  .how-much__wrap {
    padding: 30px;
    margin-bottom: 40px;
  }
  
  .how-much__title {
    font-size: 1.75rem;
  }
  
  .how-much__label {
    font-size: 0.75rem;
    padding: 0 15px;
    height: 28px;
  }
  
  .how-much__up {
    font-size: 1.5rem;
  }
  
  .how-much__cost-num {
    font-size: 3rem;
  }
  
  .how-much__cost-label {
    font-size: 1rem;
    margin-left: 15px;
  }
  
  .how-much__link {
    font-size: 1rem;
  }
  
  .how-much__text {
    font-size: 1rem;
  }
}

/* ===== END HOW-MUCH SECTION STYLES ===== */

/* ===== WHAT-ELSE SECTION STYLES ===== */
.what-else {
  width: 100%;
  padding: 0 0 80px;
  background-color: #efefef;
}

.what-else .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.what-else__wrap {
  width: 100%;
}

.what-else__wrap h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 50px;
  color: #1a1a1a;
}

.what-else__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 70px;
  border-radius: 30px;
  margin-bottom: 60px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.what-else__item:last-child {
  margin-bottom: 0;
}

.what-else__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.what-else__item_first {
  background-color: #323d46;
  color: #fff;
}

.what-else__item_second {
  background-color: #fff;
  color: #000;
}

.what-else__item-text {
  display: flex;
  flex-direction: column;
}

.what-else__item-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 120%;
  margin: 0 0 30px;
}

.what-else__item-text p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 150%;
  max-width: 550px;
}

.what-else__item-actions {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 75px;
}

.what-else__item-image {
  width: 100%;
  max-width: 400px;
  transition: transform 1s ease;
  display: block;
  margin-top: 30px;
}

.what-else__item-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.what-else__item:hover .what-else__item-image {
  transform: scale(1.05);
}

/* What-else responsive */
@media (max-width: 991px) {
  .what-else__wrap h2 {
    font-size: 2.5rem;
  }
  
  .what-else__item {
    padding: 40px;
  }
  
  .what-else__item-title {
    font-size: 2rem;
  }
  
  .what-else__item-text p {
    max-width: 100%;
  }
  
  .what-else__item-image {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .what-else {
    padding: 0 0 60px;
  }
  
  .what-else__wrap h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .what-else__item {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  
  .what-else__item-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .what-else__item-text p {
    font-size: 1rem;
  }
  
  .what-else__item-image {
    max-width: 200px;
  }
  
  .what-else__item-actions {
    padding-top: 40px;
  }
}

/* ===== END WHAT-ELSE SECTION STYLES ===== */

/* ===== YEARS-STATS SECTION STYLES ===== */
.years-stats {
  width: 100%;
  padding: 80px 0 160px;
  background-color: #efefef;
}

.years-stats .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.years-stats__wrap {
  width: 100%;
}

.years-stats__wrap p {
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
  text-align: center;
  color: #323d46;
}

.years-stats__wrap h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 7rem;
  line-height: 120%;
  text-align: center;
  color: #1a1a1a;
}

/* Years-stats responsive */
@media (max-width: 991px) {
  .years-stats {
    padding: 60px 0 100px;
  }
  
  .years-stats__wrap p {
    font-size: 1.5rem;
  }
  
  .years-stats__wrap h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 575px) {
  .years-stats {
    padding: 40px 0 80px;
  }
  
  .years-stats__wrap p {
    font-size: 1.125rem;
  }
  
  .years-stats__wrap h2 {
    font-size: 2rem;
  }
}

/* ===== END YEARS-STATS SECTION STYLES ===== */

/* ===== OUR-TEAM SECTION STYLES ===== */
.our-team {
  width: 100%;
  padding: 0 0 80px;
  background-color: #efefef;
}

.our-team .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.our-team__wrap {
  width: 100%;
}

.our-team__wrap h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 30px;
  text-align: center;
  color: #1a1a1a;
}

.our-team__wrap > p {
  margin-bottom: 50px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 150%;
  color: #323d46;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.our-team-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.our-team-list__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-team-list__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.our-team-list__item-thumb {
  width: 100%;
  overflow: hidden;
}

.our-team-list__item-thumb img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: transform 0.5s ease;
}

.our-team-list__item:hover .our-team-list__item-thumb img {
  transform: scale(1.05);
}

.our-team-list__item-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
  background-color: #fff;
}

.our-team-list__item-label {
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 100%;
  color: #a1a1a1;
}

.our-team-list__item-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 150%;
  color: #1a1a1a;
}

/* Our-team responsive */
@media (max-width: 991px) {
  .our-team-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .our-team__wrap h2 {
    font-size: 2.5rem;
  }
  
  .our-team__wrap > p {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .our-team {
    padding: 0 0 60px;
  }
  
  .our-team-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .our-team__wrap h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .our-team__wrap > p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .our-team-list__item {
    border-radius: 20px;
  }
  
  .our-team-list__item-info {
    padding: 20px;
  }
  
  .our-team-list__item-name {
    font-size: 1.25rem;
  }
}

/* ===== END OUR-TEAM SECTION STYLES ===== */

/* ===== REVIEWS SECTION STYLES ===== */
.reviews {
  width: 100%;
  padding: 80px 0 160px;
  background-color: #efefef;
}

.reviews .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews__wrap {
  width: 100%;
  position: relative;
}

.reviews__title {
  width: 100%;
  margin-bottom: 50px;
  padding-right: 150px;
}

.reviews__title h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 30px;
  color: #1a1a1a;
}

.reviews__title p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 1.25rem;
  color: #323d46;
}

.reviews__actions {
  z-index: 5;
  position: absolute;
  top: 15px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__prev,
.reviews__next {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #637381;
  border-radius: 50%;
  color: #637381;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.reviews__prev:hover,
.reviews__next:hover {
  border-color: #007bfb;
  color: #007bfb;
}

.reviews__next {
  width: 110px;
  border-radius: 25px;
  border-color: #007bfb;
  color: #007bfb;
}

.reviews__next:hover {
  background-color: #007bfb;
  color: #fff;
}

.reviews__slider {
  width: 100%;
  overflow: hidden;
}

.reviews__track {
  width: 100%;
}

.reviews__slide {
  width: 100%;
  display: none;
  align-items: center;
  gap: 60px;
}

.reviews__slide.active {
  display: flex;
}

.reviews__slide-image {
  width: 100%;
  max-width: 470px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}

.reviews__slide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.reviews__slide-text {
  width: 100%;
  max-width: 570px;
}

.reviews__slide-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 160%;
  color: #323d46;
  margin: 0;
}

.reviews__slide-author {
  margin-top: 20px !important;
  font-size: 1rem !important;
  color: #637381 !important;
}

.reviews__slide-author a {
  color: #007bfb;
  text-decoration: none;
  transition: color 0.3s;
}

.reviews__slide-author a:hover {
  color: #0066d6;
}

/* Reviews responsive */
@media (max-width: 991px) {
  .reviews__title {
    padding-right: 0;
    text-align: center;
  }
  
  .reviews__actions {
    position: static;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .reviews__title h2 {
    font-size: 2.5rem;
  }
  
  .reviews__slide {
    flex-direction: column;
    text-align: center;
  }
  
  .reviews__slide-image {
    max-width: 350px;
  }
  
  .reviews__slide-text {
    max-width: 100%;
  }
  
  .reviews__slide-text p {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .reviews {
    padding: 60px 0 80px;
  }
  
  .reviews__title h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .reviews__title p {
    font-size: 1rem;
  }
  
  .reviews__prev,
  .reviews__next {
    width: 44px;
    height: 44px;
  }
  
  .reviews__next {
    width: 90px;
  }
  
  .reviews__slide-image {
    max-width: 280px;
  }
  
  .reviews__slide-text p {
    font-size: 1rem;
  }
}

/* ===== END REVIEWS SECTION STYLES ===== */

/* ===== PARTNERS SECTION STYLES ===== */
.partners {
  width: 100%;
  padding: 80px 0;
  background-color: #efefef;
  overflow: hidden;
}

.partners .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.partners__wrap h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 50px;
  text-align: center;
  color: #1a1a1a;
}

.partners__sliders {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.partners__swiper {
  overflow: hidden;
  width: 100%;
}

.partners__swiper_left {
  margin-bottom: 20px;
}

.partners__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.partners__swiper .swiper-slide {
  width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  padding: 0 15px;
  background-color: #fff;
  border-radius: 20px;
}

.partners__swiper .swiper-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Partners responsive */
@media (max-width: 991px) {
  .partners {
    padding: 60px 0;
  }
  
  .partners__wrap h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .partners__swiper .swiper-slide {
    width: 220px;
    height: 120px;
  }
  
  .partners__swiper .swiper-slide img {
    max-height: 60px;
  }
}

@media (max-width: 575px) {
  .partners {
    padding: 40px 0;
  }
  
  .partners__wrap h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .partners__swiper .swiper-slide {
    width: 180px;
    height: 100px;
    padding: 0 10px;
    border-radius: 15px;
  }
  
  .partners__swiper .swiper-slide img {
    max-height: 50px;
  }
  
  .partners__swiper_left {
    margin-bottom: 15px;
  }
}

/* ===== END PARTNERS SECTION STYLES ===== */

/* ===== WHY AMLBOT SECTION STYLES ===== */
.why-amlbot {
  width: 100%;
  padding: 80px 0;
  background-color: #efefef;
}

.why-amlbot .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-amlbot__wrap {
  width: 100%;
}

.why-amlbot__wrap h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 50px;
  color: #1a1a1a;
}

.why-amlbot__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.why-amlbot__items:last-child {
  margin-bottom: 0;
}

.why-amlbot__item {
  padding: 50px;
  border-radius: 20px;
  box-sizing: border-box;
}

.why-amlbot__item_white {
  background-color: #fff;
  color: #000;
}

.why-amlbot__item_blue {
  background-color: #007bfb;
  color: #fff;
}

.why-amlbot__item_gray {
  background-color: #323d46;
  color: #fff;
}

.why-amlbot__item_first {
  width: calc(50% - 15px);
}

.why-amlbot__item_second {
  width: calc(50% - 15px);
}

.why-amlbot__item_third {
  width: calc(66.666% - 15px);
}

.why-amlbot__item_fourth {
  width: calc(33.333% - 15px);
}

.why-amlbot__item-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 120%;
  margin: 0 0 20px;
}

.why-amlbot__item-text {
  display: block;
  margin: 0 0 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 150%;
}

.why-amlbot__item-text b {
  font-weight: 700;
}

.why-amlbot p {
  margin-bottom: 30px;
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 140%;
  color: #637381;
}

.why-amlbot__item-image {
  width: 100%;
}

.why-amlbot__item-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 30px;
}

.why-amlbot__item_first .why-amlbot__item-image img {
  max-width: 200px;
}

.why-amlbot__item_second .why-amlbot__item-image {
  max-width: 39rem;
  margin-right: auto;
  margin-left: auto;
}

.why-amlbot__item_second .why-amlbot__item-image img {
  max-width: 100%;
}

.why-amlbot__item_third .why-amlbot__item-image img {
  max-width: 350px;
  margin-bottom: -50px;
  margin-left: -30px;
}

.why-amlbot__item_fourth .why-amlbot__item-image {
  width: 100%;
  max-width: 185px;
  margin-right: auto;
  margin-left: auto;
}

.why-amlbot__item_fourth .why-amlbot__item-image img {
  width: 100%;
  max-width: 185px;
  height: auto;
}

/* Why AMLBot responsive */
@media (max-width: 991px) {
  .why-amlbot__wrap h2 {
    font-size: 2.5rem;
  }
  
  .why-amlbot__items {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .why-amlbot__item_first,
  .why-amlbot__item_second,
  .why-amlbot__item_third,
  .why-amlbot__item_fourth {
    width: 100%;
  }
  
  .why-amlbot__item {
    padding: 40px;
  }
  
  .why-amlbot__item-title {
    font-size: 2rem;
  }
  
  .why-amlbot__item-text {
    font-size: 1.125rem;
  }
  
  .why-amlbot__item_third .why-amlbot__item-image img {
    max-width: 280px;
    margin-bottom: 0;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .why-amlbot {
    padding: 60px 0;
  }
  
  .why-amlbot__wrap h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .why-amlbot__item {
    padding: 30px;
  }
  
  .why-amlbot__item-title {
    font-size: 1.5rem;
  }
  
  .why-amlbot__item-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .why-amlbot p {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
  
  .why-amlbot__item_first .why-amlbot__item-image img,
  .why-amlbot__item_second .why-amlbot__item-image img {
    max-width: 150px;
  }
  
  .why-amlbot__item_third .why-amlbot__item-image img {
    max-width: 200px;
  }
}

/* ===== END WHY AMLBOT SECTION STYLES ===== */

/* ===== FAQ SECTION STYLES ===== */
.faq {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
}

.faq .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq__wrap {
  width: 100%;
}

.faq__wrap h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  margin: 0 0 50px;
  color: #1a1a1a;
}

.faq__block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.faq__nonfind {
  align-self: flex-start;
  position: sticky;
  top: 100px;
  width: 100%;
  max-width: 390px;
  padding: 40px 40px 30px;
  border-radius: 20px;
  background-color: rgba(167, 234, 255, 0.2);
  box-sizing: border-box;
  flex-shrink: 0;
}

.faq__nonfind .title {
  display: block;
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 140%;
  color: #183b56;
}

.faq__nonfind > p {
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 140%;
  color: #323d46;
}

.faq__nonfind .telegram {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 15px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}

.faq__nonfind .telegram::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 16px;
  transition: transform 0.25s ease-in-out;
}

.faq__nonfind .telegram:hover::before {
  transform: scale(1.05);
}

.faq__nonfind .telegram__icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
  font-size: 28px;
  color: #34aadf;
}

.faq__nonfind .telegram__icon .icon {
  width: 28px;
  height: 28px;
}

.faq__nonfind .telegram__text h4,
.faq__nonfind .telegram h4 {
  margin: 0 0 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  color: #34aadf;
}

.faq__nonfind .telegram__text p,
.faq__nonfind .telegram p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 100%;
  color: #82b2c8;
}

.faq__nonfind small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 140%;
  color: #064c61;
}

.faq__items {
  flex: 1;
  max-width: 670px;
}

.faq-item {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item__top {
  position: relative;
  margin: 0;
  padding: 20px 40px 15px 0;
  cursor: pointer;
}

.faq-item__top p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
  color: #1a1a1a;
}

.faq-item__top .plus {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.faq-item__top .plus::before,
.faq-item__top .plus::after {
  content: '';
  position: absolute;
  background-color: #1a1a1a;
  transition: transform 0.3s ease;
}

.faq-item__top .plus::before {
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__top .plus::after {
  width: 16px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-item__top .plus::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item__content p {
  margin: 0;
  padding-bottom: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 150%;
  color: #637381;
  font-weight: 400;
}

.faq-item__content a {
  color: #007bfb;
  text-decoration: none;
}

.faq-item__content a:hover {
  text-decoration: underline;
}

.faq-item.active .faq-item__content {
  max-height: 500px;
}

/* FAQ responsive */
@media (max-width: 991px) {
  .faq__wrap h2 {
    font-size: 2.5rem;
  }
  
  .faq__block {
    flex-direction: column;
    gap: 30px;
  }
  
  .faq__nonfind {
    position: relative;
    top: 0;
    max-width: 100%;
  }
  
  .faq__items {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .faq {
    padding: 60px 0;
  }
  
  .faq__wrap h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .faq__nonfind {
    padding: 30px 25px 25px;
  }
  
  .faq__nonfind .title {
    font-size: 1.25rem;
  }
  
  .faq__nonfind > p {
    font-size: 1rem;
  }
  
  .faq-item__top {
    padding: 15px 35px 10px 0;
  }
  
  .faq-item__top p {
    font-size: 1rem;
  }
  
  .faq-item__content p {
    font-size: 0.875rem;
  }
}

/* ===== END FAQ SECTION STYLES ===== */

/* ===== FOOTER STYLES ===== */
.footer {
  width: 100%;
  padding: 60px 0 40px;
  background-color: #000;
}

.footer .container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer__top {
  margin-bottom: 40px;
  border-bottom: 1px solid #323d46;
  padding-bottom: 40px;
}

.footer__logo {
  display: block;
  max-width: 240px;
  margin-bottom: 30px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__top .label {
  display: block;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 100%;
  color: #a1a1a1;
}

.footer__top p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #a1a1a1;
  text-transform: uppercase;
  max-width: 320px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
}

.footer__item {
  margin-bottom: 110px;
}

.footer__item:not(:last-child) {
  margin-right: 30px;
}

.footer__item_social {
  width: 100%;
  max-width: 400px;
}

.footer__item .label {
  display: block;
  margin: 0 0 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 120%;
  color: #a1a1a1;
}

.footer__item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -8px;
  box-sizing: content-box;
}

.footer__item ul li {
  display: flex;
  box-sizing: content-box;
}

.footer__item ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer__item ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease-in-out;
  box-sizing: content-box;
}

.footer__item ul a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__item ul a svg {
  position: relative;
  margin-right: 12px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 5px;
  background-color: #1d1d1d;
  color: #fff;
}

svg.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  transition: fill 0.25s ease;
}

.footer__social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
}

.footer__social li {
  margin-bottom: 0 !important;
}

.footer__social li a {
  display: flex;
  align-items: center;
}

.footer__social li a .icon {
  width: 28px;
  height: 28px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer__social li a:hover .icon {
  color: #007bfb;
}

.footer__social li a span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #fff;
}

.footer__info {
  padding-top: 30px;
  border-top: 1px solid #323d46;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
  color: #a1a1a1;
}

/* Footer responsive */
@media (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
    gap: 0;
  }
  
  .footer__item:not(:last-child) {
    margin-right: 0;
  }
  
  .footer__item_social {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 40px 0 30px;
  }
  
  .footer__top {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  
  .footer__item .label {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .footer__social {
    gap: 10px 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__social li a span {
    display: inline;
    font-size: 0.875rem;
    margin-left: 8px;
  }
  
  .footer__info {
    padding-top: 20px;
    text-align: center;
  }
}

/* ===== END FOOTER STYLES ===== */

.u-section-1 .u-sheet-1 {
  min-height: 841px;
}

.u-section-1 .u-text-1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.22;
  margin: 67px 519px 0 67px;
}

.u-section-1 .u-text-2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 17px 519px 0 67px;
}

.u-section-1 .u-image-1 {
  width: 667px;
  height: 413px;
  margin: -283px -83px 0 auto;
}

.u-section-1 .u-btn-1 {
  font-size: 0.875rem;
  letter-spacing: 0px;
  font-weight: 800;
  transition-duration: 0.5s;
  --radius: 24px;
  text-transform: uppercase;
  background-image: none;
  margin: -94px auto 0 64px;
  padding: 13px 46px 15px;
}

.u-section-1 .u-image-2 {
  width: 570px;
  height: 119px;
  margin: 93px 0 0 auto;
}

.u-section-1 .u-image-3 {
  width: 270px;
  height: 73px;
  margin: -96px auto 0 67px;
}

.u-section-1 .u-text-3 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.22;
  width: 787px;
  margin: 149px auto 34px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-text-1 {
    margin-right: 386px;
    margin-left: 0;
  }

  .u-section-1 .u-text-2 {
    margin-right: 386px;
    margin-left: 0;
  }

  .u-section-1 .u-btn-1 {
    border-style: solid;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-text-1 {
    margin-right: 166px;
  }

  .u-section-1 .u-text-2 {
    margin-right: 166px;
  }

  .u-section-1 .u-image-3 {
    margin-top: 20px;
  }

  .u-section-1 .u-text-3 {
    width: 720px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 756px;
  }

  .u-section-1 .u-text-1 {
    font-size: 2.6666666666666665rem;
    margin-right: 0;
  }

  .u-section-1 .u-text-2 {
    font-size: 1.3333333333333333rem;
    margin-right: 0;
  }

  .u-section-1 .u-image-1 {
    width: 540px;
    height: 334px;
    margin-right: 0;
  }

  .u-section-1 .u-btn-1 {
    margin-top: -15px;
  }

  .u-section-1 .u-image-2 {
    width: 540px;
    height: 113px;
  }

  .u-section-1 .u-text-3 {
    font-size: 2rem;
    width: 540px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 1243px;
  }

  .u-section-1 .u-image-1 {
    height: 278px;
    width: 410px;
    margin-top: 103px;
    margin-left: -35px;
    margin-right: -35px;
  }

  .u-section-1 .u-btn-1 {
    margin-top: -346px;
  }

  .u-section-1 .u-image-2 {
    height: 71px;
    margin-top: 432px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-1 .u-image-3 {
    margin-top: -161px;
    margin-left: 0;
  }

  .u-section-1 .u-text-3 {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 60px;
  }
}

.u-section-1 .u-btn-1,
.u-section-1 .u-btn-1:before,
.u-section-1 .u-btn-1 > .u-container-layout:before {
  transition-property: fill, color, background-color, stroke-width, border-style, border-width, border-top-width, border-left-width, border-right-width, border-bottom-width, custom-border, borders, box-shadow, text-shadow, opacity, border-radius, stroke, border-color, font-size, font-style, font-weight, text-decoration, letter-spacing, transform, background-image, image-zoom, background-size, background-position;
}

.u-section-1 .u-btn-1.u-btn-1.u-btn-1:hover {
  border-radius: 15px !important;
  transform: scale(1) translateY(px) !important;
}

.u-section-1 .u-btn-1 {
  border-color: transparent !important;
}

.u-section-1 .u-btn-1.u-btn-1.u-btn-1.hover {
  border-radius: 15px !important;
  transform: scale(1) translateY(px) !important;
}

.u-section-1 .u-btn-1 {
  border-color: transparent !important;
}.u-section-2 .u-sheet-1 {
  min-height: 275px;
}

.u-section-2 .u-text-1 {
  font-size: 3rem;
  font-weight: 800;
  width: 334px;
  margin: 34px auto 0 77px;
}

.u-section-2 .u-text-2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: -62px 176px 0 828px;
}

.u-section-2 .u-image-1 {
  width: 72px;
  height: 29px;
  margin: -38px 472px 0 auto;
}

.u-section-2 .u-image-2 {
  width: 140px;
  height: 29px;
  margin: -29px auto 0 443px;
}

.u-section-2 .u-image-3 {
  width: 88px;
  height: 29px;
  margin: -29px 371px 0 auto;
}

.u-section-2 .u-text-3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 35px 0 0 828px;
}

.u-section-2 .u-text-4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: -30px 751px 0 77px;
}

.u-section-2 .u-text-5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: -64px 425px 55px 443px;
}

@media (max-width: 1199px) {
  .u-section-2 .u-text-2 {
    margin-right: 76px;
    margin-left: 728px;
  }

  .u-section-2 .u-image-1 {
    margin-top: -39px;
  }

  .u-section-2 .u-image-2 {
    margin-top: 20px;
  }

  .u-section-2 .u-image-3 {
    margin-top: 16px;
  }

  .u-section-2 .u-text-3 {
    margin-left: 628px;
  }

  .u-section-2 .u-text-4 {
    margin-right: 551px;
  }

  .u-section-2 .u-text-5 {
    width: 272px;
    margin-top: 20px;
    margin-left: 343px;
    margin-right: 325px;
  }
}

@media (max-width: 991px) {
  .u-section-2 .u-text-2 {
    margin-right: 0;
    margin-left: 584px;
  }

  .u-section-2 .u-text-3 {
    margin-left: 408px;
  }

  .u-section-2 .u-text-4 {
    margin-right: 331px;
  }

  .u-section-2 .u-text-5 {
    margin-left: 233px;
    margin-right: 215px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .u-section-2 .u-text-1 {
    font-size: 2.6666666666666665rem;
  }

  .u-section-2 .u-text-2 {
    font-size: 1.6666666666666665rem;
    margin-top: 20px;
    margin-left: 404px;
  }

  .u-section-2 .u-image-1 {
    margin-top: -117px;
    margin-right: 468px;
  }

  .u-section-2 .u-image-2 {
    margin-left: 400px;
  }

  .u-section-2 .u-text-3 {
    font-size: 1.1111111111111112rem;
    margin-top: 39px;
    margin-left: 228px;
  }

  .u-section-2 .u-text-4 {
    font-size: 1.1111111111111112rem;
    margin-top: 48px;
    margin-right: 151px;
  }

  .u-section-2 .u-text-5 {
    font-size: 1.1111111111111112rem;
    margin-left: 143px;
    margin-right: 125px;
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-sheet-1 {
    min-height: 480px;
  }

  .u-section-2 .u-text-1 {
    width: auto;
    margin-top: 8px;
    margin-right: 43px;
    margin-left: 0;
  }

  .u-section-2 .u-text-2 {
    width: auto;
    margin-top: 246px;
    margin-right: 204px;
    margin-left: 0;
  }

  .u-section-2 .u-image-1 {
    margin-top: -194px;
    margin-right: 108px;
  }

  .u-section-2 .u-image-2 {
    margin-top: -29px;
    margin-left: 0;
  }

  .u-section-2 .u-image-3 {
    margin-top: -29px;
    margin-right: -1px;
  }

  .u-section-2 .u-text-3 {
    width: auto;
    margin-top: 173px;
    margin-right: 28px;
    margin-left: 0;
  }

  .u-section-2 .u-text-4 {
    width: auto;
    margin-top: -326px;
    margin-right: -26px;
    margin-left: 0;
  }

  .u-section-2 .u-text-5 {
    width: auto;
    margin-top: 113px;
    margin-right: -26px;
    margin-left: 0;
  }
}.u-section-3 .u-sheet-1 {
  min-height: 689px;
}

.u-section-3 .u-text-1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.22;
  width: 452px;
  margin: 70px auto 0;
}

.u-section-3 .u-text-2 {
  line-height: 1.22;
  font-weight: 500;
  font-size: 1.125rem;
  width: 765px;
  margin: 10px auto 0;
}

.u-section-3 .u-group-1 {
  width: 212px;
  --radius: 10px;
  height: auto;
  min-height: 468px;
  margin: 22px auto 0 -4px;
}

.u-section-3 .u-container-layout-1 {
  padding: 9px 21px;
}

.u-section-3 .u-image-1 {
  width: 63px;
  height: 61px;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-3 {
  font-weight: 700;
  margin: 22px 72px 0 9px;
}

.u-section-3 .u-text-4 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 9px 0 0 9px;
}

.u-section-3 .u-group-2 {
  width: 212px;
  --radius: 10px;
  height: auto;
  min-height: 468px;
  margin: -469px auto 0 230px;
}

.u-section-3 .u-container-layout-2 {
  padding: 9px 21px;
}

.u-section-3 .u-image-2 {
  width: 63px;
  height: 61px;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-5 {
  font-weight: 700;
  margin: 22px 9px 0;
}

.u-section-3 .u-text-6 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 9px 0 0 9px;
}

.u-section-3 .u-group-3 {
  width: 212px;
  --radius: 10px;
  height: auto;
  min-height: 468px;
  margin: -467px auto 0;
}

.u-section-3 .u-container-layout-3 {
  padding: 9px 21px;
}

.u-section-3 .u-image-3 {
  width: 63px;
  height: 61px;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-7 {
  font-weight: 700;
  margin: 22px 48px 0 9px;
}

.u-section-3 .u-text-8 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 9px 0 0 9px;
}

.u-section-3 .u-group-4 {
  width: 212px;
  --radius: 10px;
  height: auto;
  min-height: 468px;
  margin: -468px auto 0 698px;
}

.u-section-3 .u-container-layout-4 {
  padding: 9px 21px;
}

.u-section-3 .u-image-4 {
  width: 63px;
  height: 61px;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-9 {
  font-weight: 700;
  margin: 22px 31px 0 9px;
}

.u-section-3 .u-text-10 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 9px 0 0 9px;
}

.u-section-3 .u-group-5 {
  width: 212px;
  --radius: 10px;
  height: auto;
  min-height: 468px;
  margin: -469px auto 39px 932px;
}

.u-section-3 .u-container-layout-5 {
  padding: 9px 21px;
}

.u-section-3 .u-image-5 {
  width: 63px;
  height: 61px;
  margin: 0 auto 0 0;
}

.u-section-3 .u-text-11 {
  font-weight: 700;
  margin: 22px 9px 0;
}

.u-section-3 .u-text-12 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 9px 0 0 9px;
}

@media (max-width: 1199px) {
  .u-section-3 .u-group-1 {
    margin-left: -2px;
    height: auto;
  }

  .u-section-3 .u-group-2 {
    margin-left: 232px;
    height: auto;
  }

  .u-section-3 .u-group-3 {
    margin-top: 20px;
    margin-left: 366px;
    height: auto;
  }

  .u-section-3 .u-group-4 {
    margin-left: 700px;
    height: auto;
  }

  .u-section-3 .u-group-5 {
    margin-top: 20px;
    margin-left: 730px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .u-section-3 .u-text-2 {
    width: 720px;
  }

  .u-section-3 .u-group-3 {
    margin-left: 256px;
  }

  .u-section-3 .u-group-4 {
    margin-left: 510px;
  }

  .u-section-3 .u-group-5 {
    margin-left: 510px;
  }
}

@media (max-width: 767px) {
  .u-section-3 .u-text-1 {
    font-size: 2.6666666666666665rem;
  }

  .u-section-3 .u-text-2 {
    font-size: 1rem;
    width: 540px;
  }

  .u-section-3 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-group-3 {
    margin-left: 166px;
  }

  .u-section-3 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-group-4 {
    margin-top: 20px;
    margin-left: 330px;
  }

  .u-section-3 .u-container-layout-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-group-5 {
    margin-left: 330px;
  }

  .u-section-3 .u-container-layout-5 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-3 .u-sheet-1 {
    min-height: 1570px;
  }

  .u-section-3 .u-text-1 {
    width: 340px;
  }

  .u-section-3 .u-text-2 {
    width: 340px;
  }

  .u-section-3 .u-group-1 {
    width: 342px;
    min-height: 265px;
    margin-top: 10px;
    margin-left: -1px;
    margin-right: -1px;
  }

  .u-section-3 .u-text-3 {
    width: auto;
    margin-right: 133px;
  }

  .u-section-3 .u-group-2 {
    min-height: 261px;
    margin-top: 10px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-3 .u-group-3 {
    min-height: 263px;
    margin-top: 10px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-3 .u-group-4 {
    min-height: 241px;
    margin-top: 10px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-3 .u-group-5 {
    min-height: 242px;
    margin-top: 10px;
    margin-bottom: 25px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }
}.u-section-4 .u-sheet-1 {
  min-height: 420px;
}

.u-section-4 .u-group-1 {
  --radius: 27px;
  height: auto;
  margin-top: 86px;
  margin-bottom: 60px;
  min-height: 259px;
}

.u-section-4 .u-container-layout-1 {
  padding: 20px 30px;
}

.u-section-4 .u-image-1 {
  width: 192px;
  height: 192px;
  margin: 14px auto 0 19px;
}

.u-section-4 .u-text-1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: -192px auto 0 282px;
}

.u-section-4 .u-text-2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 130px 0 282px;
}

.u-section-4 .u-text-3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 32px 633px 0 282px;
}

@media (max-width: 1199px) {
  .u-section-4 .u-group-1 {
    height: auto;
  }

  .u-section-4 .u-text-2 {
    margin-right: 0;
  }

  .u-section-4 .u-text-3 {
    margin-right: 433px;
  }
}

@media (max-width: 991px) {
  .u-section-4 .u-text-1 {
    margin-left: 212px;
  }

  .u-section-4 .u-text-2 {
    margin-left: 212px;
  }

  .u-section-4 .u-text-3 {
    margin-right: 283px;
    margin-left: 212px;
  }
}

@media (max-width: 767px) {
  .u-section-4 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-4 .u-text-1 {
    font-size: 2rem;
    margin-left: 167px;
  }

  .u-section-4 .u-text-2 {
    font-size: 1.3333333333333333rem;
    margin-left: 167px;
  }

  .u-section-4 .u-text-3 {
    margin-right: 188px;
    margin-left: 167px;
  }
}

@media (max-width: 575px) {
  .u-section-4 .u-sheet-1 {
    min-height: 627px;
  }

  .u-section-4 .u-group-1 {
    margin-bottom: 35px;
    min-height: 506px;
  }

  .u-section-4 .u-image-1 {
    width: 109px;
    height: 109px;
    margin-top: 10px;
  }

  .u-section-4 .u-text-1 {
    width: auto;
    margin-top: 23px;
    margin-left: 19px;
  }

  .u-section-4 .u-text-2 {
    width: auto;
    margin-top: 10px;
    margin-right: 84px;
    margin-left: 19px;
  }

  .u-section-4 .u-text-3 {
    width: auto;
    margin-top: 19px;
    margin-right: 136px;
    margin-left: 19px;
  }
}.u-section-5 .u-sheet-1 {
  min-height: 738px;
}

.u-section-5 .u-group-1 {
  --radius: 30px;
  height: auto;
  margin-top: 49px;
  margin-bottom: 0;
  min-height: 496px;
}

.u-section-5 .u-container-layout-1 {
  padding: 0;
}

.u-section-5 .u-text-1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.18;
  margin: 42px 475px 0 43px;
}

.u-section-5 .u-text-2 {
  line-height: 1.09;
  font-size: 3rem;
  font-weight: 500;
  margin: 27px 996px 0 43px;
}

.u-section-5 .u-text-3 {
  line-height: 1.09;
  font-size: 3.75rem;
  font-weight: 500;
  margin: 27px 883px 0 43px;
}

.u-section-5 .u-text-4 {
  line-height: 1.09;
  font-size: 1.875rem;
  font-weight: 500;
  margin: -39px 644px 0 227px;
}

.u-section-5 .u-image-1 {
  width: 444px;
  --bottom-right-radius: 30px;
  animation-timing-function: ease;
  --top-right-radius: 30px;
  height: 438px;
  margin: -290px 0 0 auto;
}

.u-section-5 .u-btn-1 {
  --radius: 17px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0px;
  background-image: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 20px 0 rgba(0,80,236,0.4);
  margin: -95px auto 0 43px;
  padding: 12px 48px 13px;
}

.u-section-5 .u-text-5 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 67px auto 49px;
}

@media (max-width: 1199px) {
  .u-section-5 .u-group-1 {
    height: auto;
  }

  .u-section-5 .u-text-1 {
    margin-right: 318px;
    margin-left: 0;
  }

  .u-section-5 .u-text-2 {
    margin-right: 839px;
    margin-left: 0;
  }

  .u-section-5 .u-text-3 {
    margin-right: 726px;
    margin-left: 0;
  }

  .u-section-5 .u-text-4 {
    margin-right: 544px;
    margin-left: 127px;
  }

  .u-section-5 .u-btn-1 {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .u-section-5 .u-text-1 {
    margin-right: 98px;
  }

  .u-section-5 .u-text-2 {
    margin-right: 619px;
  }

  .u-section-5 .u-text-3 {
    margin-right: 506px;
  }

  .u-section-5 .u-text-4 {
    margin-right: 434px;
    margin-left: 17px;
  }
}

@media (max-width: 767px) {
  .u-section-5 .u-text-1 {
    font-size: 3.333333333333333rem;
    margin-right: 0;
  }

  .u-section-5 .u-text-2 {
    font-size: 2.6666666666666665rem;
    margin-right: 439px;
  }

  .u-section-5 .u-text-3 {
    font-size: 3.333333333333333rem;
    margin-right: 326px;
  }

  .u-section-5 .u-text-4 {
    font-size: 1.6666666666666665rem;
    margin-right: 271px;
    margin-left: 0;
  }

  .u-section-5 .u-text-5 {
    font-size: 1.3333333333333333rem;
  }
}

@media (max-width: 575px) {
  .u-section-5 .u-sheet-1 {
    min-height: 722px;
  }

  .u-section-5 .u-group-1 {
    margin-top: 42px;
    min-height: 546px;
  }

  .u-section-5 .u-text-1 {
    font-size: 1.5rem;
    width: auto;
    margin-top: 22px;
    margin-right: 79px;
    margin-left: 22px;
  }

  .u-section-5 .u-text-2 {
    font-size: 1.5rem;
    width: auto;
    margin-top: 22px;
    margin-right: 218px;
    margin-left: 22px;
  }

  .u-section-5 .u-text-3 {
    font-size: 2.25rem;
    width: auto;
    margin-top: 10px;
    margin-right: 105px;
    margin-left: 22px;
  }

  .u-section-5 .u-text-4 {
    font-size: 1.25rem;
    width: auto;
    margin-top: 12px;
    margin-right: 50px;
    margin-left: 22px;
  }

  .u-section-5 .u-image-1 {
    width: 201px;
    height: 261px;
    margin-top: 74px;
  }

  .u-section-5 .u-btn-1 {
    font-size: 0.75rem;
    margin-top: -313px;
    margin-left: 22px;
    padding-right: 28px;
    padding-left: 26px;
  }

  .u-section-5 .u-text-5 {
    font-size: 0.75rem;
    width: auto;
    margin: 42px 11px 34px;
  }
}.u-section-6 .u-sheet-1 {
  min-height: 1311px;
}

.u-section-6 .u-text-1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 47px auto 0 0;
}

.u-section-6 .u-group-1 {
  --radius: 22px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 0;
  min-height: 400px;
}

.u-section-6 .u-container-layout-1 {
  padding: 10px 23px;
}

.u-section-6 .u-text-2 {
  font-size: 2.25rem;
  font-weight: 800;
  width: 425px;
  margin: 20px 331px 0 auto;
}

.u-section-6 .u-image-1 {
  width: 300px;
  height: 300px;
  margin: -37px auto 0 0;
}

.u-section-6 .u-text-3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: -247px 119px 0 338px;
}

.u-section-6 .u-text-4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 20px 106px 0 338px;
}

.u-section-6 .u-btn-1 {
  --radius: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  background-image: none;
  margin: 35px auto 0 338px;
  padding: 15px 53px 16px;
}

.u-section-6 .u-group-2 {
  width: 621px;
  --radius: 30px;
  height: auto;
  min-height: 701px;
  margin: 20px auto 0 0;
}

.u-section-6 .u-container-layout-2 {
  padding: 30px;
}

.u-section-6 .u-image-2 {
  width: 165px;
  height: 165px;
  margin: 14px auto 0 15px;
}

.u-section-6 .u-text-5 {
  font-size: 1.875rem;
  font-weight: 800;
  width: 499px;
  margin: 35px auto 0 0;
}

.u-section-6 .u-text-6 {
  font-size: 1.5rem;
  margin: 14px 40px 0 0;
}

.u-section-6 .u-text-7 {
  font-size: 1.5rem;
  margin: 28px 40px 0 0;
}

.u-section-6 .u-text-8 {
  font-size: 1.5rem;
  margin: 28px 28px 0 0;
}

.u-section-6 .u-group-3 {
  width: 499px;
  --radius: 30px;
  height: 701px;
  min-height: 701px;
  margin: -701px 0 47px auto;
}

.u-section-6 .u-container-layout-3 {
  padding: 0;
}

.u-section-6 .u-image-3 {
  width: 172px;
  height: 172px;
  margin: 38px auto 0 42px;
}

.u-section-6 .u-text-9 {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 35px auto 0 42px;
}

.u-section-6 .u-text-10 {
  font-size: 1.5rem;
  margin: 19px 69px 0 42px;
}

.u-section-6 .u-text-11 {
  font-size: 1rem;
  font-weight: 500;
  margin: 15px 69px 0 42px;
}

.u-section-6 .u-btn-2 {
  --radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  background-image: none;
  margin: 78px auto 0 42px;
  padding: 8px 33px;
}

@media (max-width: 1199px) {
  .u-section-6 .u-group-1 {
    height: auto;
  }

  .u-section-6 .u-text-2 {
    margin-right: 270px;
  }

  .u-section-6 .u-image-1 {
    margin-top: 20px;
  }

  .u-section-6 .u-text-3 {
    margin-top: 20px;
    margin-right: 19px;
    margin-left: 238px;
  }

  .u-section-6 .u-text-4 {
    margin-right: 6px;
    margin-left: 238px;
  }

  .u-section-6 .u-btn-1 {
    margin-left: 238px;
  }

  .u-section-6 .u-group-2 {
    height: auto;
  }

  .u-section-6 .u-group-3 {
    margin-top: 20px;
    height: auto;
  }

  .u-section-6 .u-text-11 {
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  .u-section-6 .u-text-2 {
    margin-right: 203px;
  }

  .u-section-6 .u-text-3 {
    margin-right: 0;
    margin-left: 37px;
  }

  .u-section-6 .u-text-4 {
    margin-right: 0;
    margin-left: 37px;
  }

  .u-section-6 .u-btn-1 {
    margin-left: 37px;
  }
}

@media (max-width: 767px) {
  .u-section-6 .u-text-1 {
    font-size: 2.6666666666666665rem;
  }

  .u-section-6 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-text-2 {
    font-size: 2rem;
    margin-right: 157px;
  }

  .u-section-6 .u-text-3 {
    font-size: 1.3333333333333333rem;
    margin-left: 0;
  }

  .u-section-6 .u-text-4 {
    font-size: 1.3333333333333333rem;
    margin-left: 0;
  }

  .u-section-6 .u-btn-1 {
    margin-left: 0;
  }

  .u-section-6 .u-group-2 {
    width: 540px;
  }

  .u-section-6 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-text-5 {
    font-size: 1.6666666666666665rem;
  }

  .u-section-6 .u-text-6 {
    font-size: 1.3333333333333333rem;
    margin-right: 0;
  }

  .u-section-6 .u-text-7 {
    font-size: 1.3333333333333333rem;
    margin-right: 0;
  }

  .u-section-6 .u-text-8 {
    font-size: 1.3333333333333333rem;
    margin-right: 0;
  }

  .u-section-6 .u-text-9 {
    font-size: 1.6666666666666665rem;
  }

  .u-section-6 .u-text-10 {
    font-size: 1.3333333333333333rem;
  }

  .u-section-6 .u-text-11 {
    font-size: 1.3333333333333333rem;
  }
}

@media (max-width: 575px) {
  .u-section-6 .u-sheet-1 {
    min-height: 2207px;
  }

  .u-section-6 .u-group-1 {
    min-height: 619px;
  }

  .u-section-6 .u-container-layout-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .u-section-6 .u-text-2 {
    width: auto;
    font-size: 1.5rem;
    margin-top: 204px;
    margin-right: auto;
  }

  .u-section-6 .u-image-1 {
    width: 176px;
    height: 176px;
    margin-top: -228px;
    margin-left: auto;
  }

  .u-section-6 .u-text-3 {
    font-size: 1.125rem;
    width: auto;
    margin-top: 80px;
    margin-right: 42px;
    margin-left: 19px;
  }

  .u-section-6 .u-text-4 {
    font-size: 1.125rem;
    width: auto;
    margin-top: 15px;
    margin-right: 33px;
    margin-left: 19px;
  }

  .u-section-6 .u-btn-1 {
    font-size: 1.125rem;
    margin-top: 48px;
    margin-left: auto;
    padding: 4px 42px 6px 41px;
  }

  .u-section-6 .u-group-2 {
    min-height: 745px;
    margin-top: 27px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-6 .u-container-layout-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .u-section-6 .u-image-2 {
    margin-top: 20px;
    margin-left: auto;
  }

  .u-section-6 .u-text-5 {
    font-size: 1.5rem;
    width: auto;
    margin-top: 8px;
    margin-left: 22px;
    margin-right: 22px;
  }

  .u-section-6 .u-text-6 {
    font-size: 1.125rem;
    width: auto;
    margin-top: 33px;
    margin-right: 37px;
    margin-left: 21px;
  }

  .u-section-6 .u-text-7 {
    font-size: 1.125rem;
    width: auto;
    margin-top: 22px;
    margin-right: 36px;
    margin-left: 21px;
  }

  .u-section-6 .u-text-8 {
    font-size: 1.125rem;
    width: auto;
    margin-top: 33px;
    margin-right: 36px;
    margin-left: 21px;
  }

  .u-section-6 .u-group-3 {
    min-height: 600px;
    margin-top: 35px;
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-6 .u-image-3 {
    margin-top: 26px;
    margin-left: 82px;
  }

  .u-section-6 .u-text-9 {
    width: auto;
    margin-top: 8px;
  }

  .u-section-6 .u-text-10 {
    font-size: 1.125rem;
    width: auto;
    margin-top: 22px;
    margin-right: 24px;
    margin-left: 19px;
  }

  .u-section-6 .u-text-11 {
    width: auto;
    margin-top: 22px;
    margin-right: 24px;
    margin-left: 18px;
    font-size: 1rem;
  }

  .u-section-6 .u-btn-2 {
    margin-top: 42px;
    margin-left: auto;
  }
}.u-section-7 .u-sheet-1 {
  min-height: 607px;
}

.u-section-7 .u-text-1 {
  font-size: 3.75rem;
  font-weight: 800;
  margin: 16px auto 0;
}

.u-section-7 .u-group-1 {
  width: 320px;
  --radius: 37px;
  height: auto;
  min-height: 388px;
  margin: 38px auto 0 49px;
}

.u-section-7 .u-container-layout-1 {
  padding: 0;
}

.u-section-7 .u-image-1 {
  height: 267px;
  margin-top: 0;
  margin-bottom: 0;
  --top-left-radius: 37px;
  --top-right-radius: 37px;
}

.u-section-7 .u-text-2 {
  font-weight: 700;
  width: 104px;
  margin: 16px auto 0 16px;
}

.u-section-7 .u-text-3 {
  font-weight: 700;
  font-size: 1.875rem;
  margin: 0 auto 0 16px;
}

.u-section-7 .u-group-2 {
  width: 320px;
  --radius: 37px;
  height: auto;
  min-height: 388px;
  margin: -388px auto 0;
}

.u-section-7 .u-container-layout-2 {
  padding: 0;
}

.u-section-7 .u-image-2 {
  height: 267px;
  margin-top: 0;
  margin-bottom: 0;
  --top-left-radius: 37px;
  --top-right-radius: 37px;
}

.u-section-7 .u-text-4 {
  font-weight: 700;
  margin: 16px 49px 0 16px;
}

.u-section-7 .u-text-5 {
  font-weight: 700;
  font-size: 1.875rem;
  margin: 0 auto 0 16px;
}

.u-section-7 .u-group-3 {
  width: 320px;
  --radius: 37px;
  height: auto;
  min-height: 388px;
  margin: -389px auto 60px 771px;
}

.u-section-7 .u-container-layout-3 {
  padding: 0;
}

.u-section-7 .u-image-3 {
  height: 267px;
  margin-top: 0;
  margin-bottom: 0;
  --top-left-radius: 37px;
  --top-right-radius: 37px;
}

.u-section-7 .u-text-6 {
  font-weight: 700;
  width: 104px;
  margin: 16px auto 0 16px;
}

.u-section-7 .u-text-7 {
  font-weight: 700;
  font-size: 1.875rem;
  margin: 0 auto 0 16px;
}

@media (max-width: 1199px) {
  .u-section-7 .u-group-1 {
    margin-left: 25px;
    height: auto;
  }

  .u-section-7 .u-group-2 {
    margin-top: 20px;
    margin-left: 286px;
    height: auto;
  }

  .u-section-7 .u-text-4 {
    width: 104px;
  }

  .u-section-7 .u-group-3 {
    margin-top: 20px;
    margin-left: 596px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .u-section-7 .u-group-2 {
    margin-left: 176px;
  }

  .u-section-7 .u-group-3 {
    margin-left: 376px;
  }
}

@media (max-width: 767px) {
  .u-section-7 .u-text-1 {
    font-size: 3.333333333333333rem;
  }

  .u-section-7 .u-text-3 {
    font-size: 1.6666666666666665rem;
  }

  .u-section-7 .u-group-2 {
    margin-left: 86px;
  }

  .u-section-7 .u-text-5 {
    font-size: 1.6666666666666665rem;
  }

  .u-section-7 .u-group-3 {
    margin-left: 196px;
  }

  .u-section-7 .u-text-7 {
    font-size: 1.6666666666666665rem;
  }
}

@media (max-width: 575px) {
  .u-section-7 .u-sheet-1 {
    min-height: 1489px;
  }

  .u-section-7 .u-text-1 {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-7 .u-group-1 {
    margin-top: 36px;
    margin-left: auto;
  }

  .u-section-7 .u-group-2 {
    margin-top: 26px;
    margin-left: auto;
  }

  .u-section-7 .u-group-3 {
    margin-top: 26px;
    margin-left: auto;
    margin-bottom: 50px;
  }
}