/*  FONTS  */

@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url("icomoon.woff2") format("woff2");
}

/*  Variables  */
:root {
  --primary: #680BAB;
  --primary-hover: #42036F;
  --accent: #C50080;
  --accent-hover: #800053;
  --accent-secondary: #FB717E;
  --accent-transparent: rgba(171, 161, 251, 0.3);
  --background: #E5E5E5;
  --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  --page-gap: 20px;
  --page-gap-reduced: calc(var(--page-gap) / 2);
  --section-gap: 30px;
  --dark: #000000;
  --dark-default: rgba(0, 0, 0, 0.8);
  --dark-muted: rgba(0, 0, 0, 0.4);
  --light: #ffffff;
  --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
  --radius: 4px;
}

/*  RESET  */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:focus {
  outline: 0;
}

html {
  height: 100%;
}

h1,
h2,
h3 {
  font-weight: 400;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: disc inside;
}
ol{
  list-style:inside;
}

p {
  margin-bottom: 20px;
}

a {
  color: inherit;
  text-decoration: inherit;
}

body {
  font: 14px/1.57 "Ubuntu", "Arial", sans-serif;
  color: var(--dark-default);
  background-color: var(--main-bg);
  font-weight: 400;
  height: 100%;
}

section {
  padding: var(--section-gap) 0;
}

.no-scroll {
  overflow: hidden;
}

.wwlfb-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wwlfb-center {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
}
.asian-text{
  background-color: #fff;
  padding: 40px;
}

.highlighted {
  color: var(--primary);
}

.wwlfb-page-title {
  display: inline-block;
  font-family: Magra, Arial, sans-serif;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
}

.wwlfb-page-title.lined-bottom {
  border-bottom: 5px solid var(--primary);
}

.wwlfb-page-title.lined-top {
  border-top: 5px solid var(--primary);
}

.wwlfb-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  background-color: var(--accent);
  font-weight: 700;
  min-height: 40px;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.wwlfb-btn:hover {
  background-color: var(--accent-hover);
}

.wwlfb-btn-primary,
.wwlfb-btn-secondary {
  font-weight: 400;
  background: var(--primary);
  width: 100%;
}

.wwlfb-btn-primary:hover,
.wwlfb-btn-secondary:hover {
  background: var(--primary-hover);
}

.wwlfb-btn-primary {
  border-radius: 0;
}

.wwlfb-btn-secondary {
  border-radius: var(--radius);
  min-height: 40px;
}

.wwlfb-img {
  margin-top: var(--page-gap);
}

/* Header*/

.wwlfb-header-section {
  padding: 10px 0;
  background-color: var(--light);
}

.wwlfb-header-section .wwlfb-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
}

.wwlfb-logo {
  position: relative;
  z-index: 6;
}

.wwlfb-navigation-list {
  display: none;
  position: absolute;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--light);
  z-index: 5;
  transition: var(--transition);
  overflow: scroll;
  padding-top: 70px;
}

.wwlfb-navigation-list.is-active {
  display: flex;
}

.wwlfb-navigation-link {
  position: relative;
  background: var(--light);
  color: var(--dark);
  text-decoration: none;
  padding: 10px 30px 10px 20px;
  font-weight: 500;
  display: block;
  transition: var(--transition);
}

.wwlfb-navigation-link:after {
  content: "\e91a";
  font-family: 'Material Icons';
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform:  translateY(-50%) rotate(-90deg);
  font-size: 14px;
}

.wwlfb-navigation-link:hover {
  background: var(--accent-transparent);
}

.wwlfb-navigation-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 18px;
  height: 12px;
  border: none;
  background: var(--light);
  z-index: 5;
}

.wwlfb-navigation-btn:before,
.wwlfb-navigation-btn:after {
  content: "";
}

.wwlfb-navigation-btn span,
.wwlfb-navigation-btn:before,
.wwlfb-navigation-btn:after {
  width: 100%;
  height: 2px;
  background: var(--dark-muted);
  border-radius: 1px;
  transition: var(--transition);
  transform-origin: 11%;
}

.wwlfb-navigation-btn.is-active:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.wwlfb-navigation-btn.is-active:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.wwlfb-navigation-btn.is-active span {
  display: none;
}

/* Main */
.wwlfb-main-section {
  padding-bottom: var(--page-gap);
  background-color: var(--accent);
  background-image: url('circle-lined.svg'), url('circle-o.svg');
  background-position: top -10px left -10px, bottom 3px right 3px;
  background-size: 100px, 80px;
  background-repeat: no-repeat;
}

.wwlfb-offer {
  display: flex;
  flex-direction: column;
}

.wwlfb-offer .wwlfb-btn {
  max-width: 100%;
}

.wwlfb-offer-picture {
  min-height: 300px;
  object-fit: cover;
}

.wwlfb-offer-text {
  background-color: var(--light);
  padding: var(--page-gap);
}

.wwlfb-offer-title {
  font-family: "Spartan", "Arial", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Content */

.wwlfb-info-section {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wwlfb-info-section .wwlfb-center {
  padding: 0;
}


.wwlfb-info-section:last-child {
  padding-bottom: 0;
}

.wwlfb-info-section-decorate .wwlfb-page-title {
  text-align: left;
}

.wwlfb-info-section-first {
  background: url('waves.svg') center bottom / 100% 60% no-repeat;
}

.wwlfb-info-section-first .wwlfb-center {
  max-width: 700px;
  text-align: center;
  padding: 0 20px;
}

.wwlfb-info-text {
  padding: 0 20px;
}


.wwlfb-info-img {
  position: relative;
  z-index: 0;
  padding: 20px 0 20px 40px;
  margin-top: var(--page-gap);
}

.wwlfb-info-img:before,
.wwlfb-info-img:after {
  content: "";
  position: absolute;
}

.wwlfb-info-img:before {
  z-index: -1;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--accent-transparent);
}

.wwlfb-info-img:after {
  width: 100px;
  height: 100px;
  left: 30px;
  bottom: 10px;
  border-left: 5px solid var(--primary);
  border-bottom: 5px solid var(--primary);
}


.wwlfb-action-section {
  background: url('circle-full.svg') 100% 40px / 85px no-repeat, var(--accent-secondary);
}


.wwlfb-action-section .wwlfb-btn {
  justify-self: center;
}

.wwlfb-collage-block {
  display: grid;
  grid-template-columns: 5fr 1fr 2fr;
  margin: 0 -10px -30px 0;
}


.wwlfb-action-inner {
  position: relative;
  display: grid;
  background: var(--light);
  padding: var(--page-gap);
}


.wwlfb-action-inner .wwlfb-page-title {
  text-align: center;
}


.wwlfb-collage-image {
  grid-row: 1 / 2;
  max-width: 580px;
}

.wwlfb-collage-image:first-child {
  grid-column: 1 / 3;
}

.wwlfb-collage-image:last-child {
  grid-column: 2 / 4;
  align-self: end;
  box-shadow: var(--shadow);
}


/* Stats */

.wwlfb-stats-section {
  text-align: center;
}

.wwlfb-stats-section .dawwlfb-page-title {
  font-family: 'Magra', Arial, sans-serif;
  font-size: 28px;
}

.wwlfb-stats-list {
  display: grid;
  gap: var(--page-gap);
  margin-bottom: var(--page-gap);
}

.wwlfb-stats-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: var(--page-gap);
  border: 1px solid var(--light);
  background-color: var(--primary);
  font-size: 14px;
  font-family: Ubuntu, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: var(--light);
  box-shadow: var(--shadow);
  border-radius: 16px;
}


.wwlfb-stats-number {
  font-size: 34px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}


/* Tips */

.wwlfb-tips-section {
  background: var(--background);
}

.wwlfb-tips-section .wwlfb-page-title {
  display: block;
  text-align: center;
}


.wwlfb-tips-list {
  counter-reset: list;
  display: grid;
  gap: var(--page-gap);
}

.wwlfb-tips-list li {
  position: relative;
  padding-left: var(--page-gap);
  color: var(--dark-muted);
}

.wwlfb-tips-list li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0;
  top: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* Slider */

.wwlfb-slider-section {
  background: var(--accent);
  color: var(--light);
  text-align: center;
}


.wwlfb-slider-section p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 20px;
}

.wwlfb-slider-section a {
  text-decoration: underline;
}

.slider-text p {
max-width: 200px;
}


.slider {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.slider-view {
  display: flex;
  height: 100%;
  transition: all 0.4s ease-out;
}

.slider-item {
  position: relative;
  flex-shrink: 0;
  cursor: grab;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: var(--light);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: var(--page-gap);
  width: 30%;
}

.slider-view img {
  user-select: none;
  pointer-events: none;
}

.slider-nav {
  width: 120px;
  position: relative;
  margin: var(--page-gap) auto 0;
  display: flex;
  justify-content: space-between;
}

.slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  color: var(--accent);
  border-radius: 10px;
  background: var(--light);
  transition: var(--transition);
  cursor: pointer;
}

.slider-arrow:hover {
  opacity: 0.8;
}

.slider-arrow:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-top: none;
}

.slider-arrow.arrow-prev {
  left: 0;
}

.slider-arrow.arrow-prev:before {
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 7px;
}

.slider-arrow.arrow-next {
  right: 0;
}

.slider-arrow.arrow-next:before {
  border-left: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-right: 7px;
}

.slider-pagination {
  display: none;
}

.slider-logo {
  position: relative;
  width: 100%;
  padding-bottom: 43%;
  border-radius: 8px;
  border: 2px solid var(--accent-secondary);
  margin-bottom: 20px;
}

.slider-logo img {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  width: calc(100% - 40px);
  height: 90%;
  object-fit: contain;
  object-position: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slider-link {
  font-family: 'Magra', Arial, sans-serif;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--dark-default);
  text-decoration: none;
  transition: var(--transition);
}

.slider-link:hover {
  color: var(--accent-hover);
}

.slider-list {
  display: grid;
  gap: 10px;
  color: var(--dark-default);
  align-self: start;
  text-align: left;
}

.slider-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.slider-list li:before {
  content: "";
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 2px;
  border-radius: 1px;
}

.slider-list h4 {
  font-size: 24px;
}
/* Benefits */

.wwlfb-benefits-section {
  background: var(--accent);
  color: var(--light);
  text-align: center;
}

.wwlfb-benefits-section .wwlfb-page-title {
  margin-bottom: var(--page-gap-reduced);
}



.wwlfb-benefits-section .wwlfb-img {
  margin: 0 0 var(--page-gap) 0;
}


.wwlfb-benefits-section p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}


.wwlfb-benefit {
  display: block;
  text-decoration: none;
  text-align: left;
  background: var(--light);
  min-height: 182px;
  padding: 20px;
  border: 4px solid var(--accent-secondary);
  margin: 0 0 var(--page-gap) 0;
  color: var(--dark-default);
  transition: var(--transition);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.25);
}

.wwlfb-benefit:last-child {
  margin: 0;
}

.wwlfb-benefit:hover {
  border-color: var(--accent);
}

.wwlfb-benefit-title {
  font-family: Magra, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--page-gap-reduced);
}
.more .wwlfb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
}



/* Footer */
.wwlfb-footer {
  background: var(--dark);
  color: var(--light);
  padding: var(--page-gap) 0;
}

.wwlfb-footer .wwlfb-center {
  display: grid;
  gap: var(--page-gap);
  justify-content: center;
}
  
.wwlfb-footer-content {
    grid-column: 1 / 3;
  }
  
.wwlfb-footer-text {
  font-size: 14px;
  line-height: 20px;
}

.wwlfb-footer-copyright {
  font-size: 12px;
  text-align:center;
}

.wwlfb-footer-nav-list {
  display: grid;
  gap: var(--page-gap-reduced);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.wwlfb-footer-nav-list a {
  transition: var(--transition);
}

.wwlfb-footer-nav-list a:hover {
  color: var(--primary);
}

@media screen and (min-width: 320px) {
  .wwlfb-stats-list {
    grid-template-columns: 1fr;
  }
  .wwlfb-stats-list__block{
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 650px) {
  .wwlfb-stats-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 800px) {
  :root {
    --page-gap: 40px;
    --section-gap: 60px;
    --radius: 8px;
  }

  .wwlfb-footer-nav-list {
    grid-auto-flow: column;
    justify-content: end;
    font-size: 18px;
  }



  .wwlfb-btn-primary,
  .wwlfb-btn-secondary {
    width: auto;
  }


  .wwlfb-img {
    margin: 0 0 0 20px;
    flex: 1 0 50%;
    min-width: 360px;
  }


  .wwlfb-navigation-list {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    overflow: auto;
    padding-top: 0;
  }
  
  


  .wwlfb-navigation-list li {
    margin-left: 10px;
  }


  .wwlfb-navigation-link:after {
    display: none;
  }


  .wwlfb-navigation-link {
    margin: 10px 0;
    min-height: 0;
    padding: 6px;
    color: var(--dark);
    border-radius: var(--radius);
    transition: var(--transition);
  }


  .wwlfb-navigation-btn {
    display: none;
  }


  .wwlfb-main-section {
    padding: var(--page-gap) 0;
  }


  .wwlfb-btn {
    margin: 0 auto;
    padding: 10px;
    min-width: 240px;
    width: auto;
    min-height: 60px;
  }


  .wwlfb-offer {
    flex-direction: row;
  }


  .wwlfb-offer-picture {
    width: 50%;
  }


  .wwlfb-offer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }


  .wwlfb-info-section .wwlfb-center {
    padding: 0 20px;
  }


  .wwlfb-info-section:last-child {
    padding-bottom: var(--section-gap);
    text-align: center;
  }


  .wwlfb-info-section {
    display: flex;
    text-align: left;
  }


  .wwlfb-info-section-decorate .wwlfb-info-text {
    padding-top: 70px;
  }


  .wwlfb-info-section-decorate:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: var(--accent-transparent);
  }


  .wwlfb-info-inner {
    display: flex;
    align-items: flex-start;
  }


  .wwlfb-info-text {
    padding: 0;
  }


  .wwlfb-info-img:before {
    display: none;
  }


  .wwlfb-info-img:after {
    width: 300px;
    height: 300px;
    border-left: none;
    border-right: 5px solid var(--primary);
    left: auto;
    right: 0;
    bottom: 0;
  }


  .wwlfb-info-img {
    padding: 0 20px 20px 0;
    margin: 0 0 0 20px;
    flex: 1 0 50%;
    min-width: 360px;
  }


  .wwlfb-action-section .wwlfb-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .wwlfb-collage-block {
    grid-template-columns: 100px 1fr;
    grid-template-rows: repeat(2, max-content);
  }


  .wwlfb-action-inner {
    flex: 1 0 50%;
    align-self: flex-start;
    max-width: 530px;
    margin-top: 45px;
  }


  .wwlfb-action-inner .wwlfb-page-title {
    text-align: left;
    margin-bottom: 20px;
  }


  .wwlfb-collage-image:last-child {
    grid-row: 2 / 3;
    margin-top: -85px;
  }


  .wwlfb-tips-list {
    grid-template-columns: repeat(2, 1fr);
  }


  .wwlfb-tips-list {
    grid-template-columns: repeat(3, 1fr);
  }


  .wwlfb-slider-section {
    background: url('circle-o.svg') 14% 19% / 13% no-repeat, var(--accent);
  }


  .slider-view {
    justify-content: space-between;
  }


  .slider-item {
    flex-grow: 1;
    margin-right: 20px;
    cursor: initial;
  }

  .slider-item:last-child {
    margin-right: 0;
  }


  

  .wwlfb-benefits-section .wwlfb-img {
    max-width: 1220px;
    margin: 0 auto var(--page-gap);
    padding: 0 20px 10px;
  }


  .wwlfb-benefits-inner {
    display: flex;
    justify-content: center;
  }


  .wwlfb-benefit {
    margin: 0 var(--page-gap) 0 0;
    max-width: 480px;
    min-height: 260px;
  }


  .wwlfb-benefit-title {
    font-size: 24px;
  }


  .wwlfb-footer .wwlfb-center {
    grid-template-columns: 120px 1fr;
  }


  .wwlfb-footer-nav-list {
    grid-auto-flow: column;
    justify-content: end;
    font-size: 18px;
  }
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 18px;
    line-height: 1.67;
  }

  .wwlfb-page-title {
    font-size: 30px;
  }

  .wwlfb-main-section {
    padding: 140px 0;
    background-position: top 5% left 14%,
      bottom 6% right 15%;
    background-size: 18%,
      13%;
  }

  .wwlfb-offer-title {
    font-size: 40px;
  }

  .wwlfb-info-section-first .wwlfb-page-title {
    font-size: 72px;
  }

  .wwlfb-info-section-first {
    background-size: 100% 90%;
  }

  .wwlfb-action-section {
    padding: 120px 0 90px;
    background-size: 16%;
    background-position: 47% 60px;
  }

  .wwlfb-stats-list {
    grid-template-columns: repeat(2, 1fr);
  }
    .wwlfb-stats-list__block{
    grid-template-columns: repeat(4, 1fr);
  }

  .wwlfb-stats-number {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .wwlfb-stats-number.wwlfb-stats-number__block{
    font-size: 60px;
  }

  .wwlfb-tips-section .wwlfb-page-title {
    font-size: 72px;
  }

  .wwlfb-tips-list li:before {
    font-size: 36px;
    line-height: 1.2;
  }

  .wwlfb-slider-section .wwlfb-page-title {
    font-size: 72px;
  }

  .slider-logo {
    padding-bottom: 72%;
  }

  .slider-link {
    font-size: 24px;
  }

  .slider-list li:before {
    top: 14px;
  }

  .wwlfb-benefits-section .wwlfb-page-title {
    font-size: 60px;
    font-weight: 600;
    max-width: 800px;
    line-height: 1.3;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) and (max-height: 800px) {
  .wwlfb-main-section {
    padding: 50px 0;
  }
}
.logo{
  width:80%;
}