a,
abbr,
acronym,
address,
applet,
article,
aside,
b,
big,
blockquote,
body,
center,
cite,
code,
dd,
del,
dfn,
div,
div pre,
dl,
dt,
em,
figcaption,
figure,
font,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
ins,
kbd,
li,
nav,
object,
ol,
p,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
sup,
tt,
u,
ul,
var {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
li,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
article,
aside,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
* {
  box-sizing: border-box;
}
.text-center {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.flex {
  display: flex;
  gap: 1rem;
}
p {
  font-size: 18px;
  color: #1e1e1e;
  line-height: 30px;
}
a {
  text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
img {
  width: 100%;
}
body,
html {
  font-family: Overpass, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-color: var(--white);
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
html {
  height: 100%;
}
body {
  min-height: 100%;
}
:root {
  --main-color: #00c882;
  --secondary: #00ac94;
  --dark: #393939;
  --darkest: #131313;
  --white: #fff;
  --dark-light: #bbb;
}
::-moz-selection {
  background: var(--main-color);
  color: var(--white);
}
::selection {
  background: var(--main-color);
  color: var(--white);
}
::-moz-selection {
  background: var(--main-color);
  color: var(--white);
}
.container {
  width: 100%;
}
.container.padding {
  padding-top: 60px;
}
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
}
.main-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.main-nav li {
  display: inline-block;
  float: left;
  margin-right: 1px;
}
.main-nav li a {
  display: block;
  min-width: 130px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
}
.main-nav li a:focus,
.main-nav li a:hover {
  color: var(--main-color);
}
.main-nav.fixed li a {
  color: var(--white);
}
.main-nav.fixed li a:hover {
  color: var(--main-color);
}
.main-nav li a.active,
.main-nav.fixed .main-nav li:hover a {
  color: var(--main-color);
}
.main-nav .main-navli:hover ul a {
  background: #f3f3f3;
  color: #2f3036;
  height: 40px;
  line-height: 40px;
}
.main-nav li:hover ul a:hover {
  background: var(--main-color);
  color: var(--white);
}
.main-nav li ul {
  display: none;
}
.main-nav li ul li {
  display: block;
  float: none;
}
.main-nav li ul li a {
  width: auto;
  min-width: 100px;
  padding: 0 20px;
}
.hidden:hover,
.main-nav ul li a:hover + .hidden {
  display: block;
}
.main-nav .show-menu {
  text-decoration: none;
  color: #1e1e1e;
  text-align: center;
  padding: 10px 0;
  display: none;
}
.main-nav input[type="checkbox"] {
  display: none;
  -webkit-appearance: none;
}
.main-nav input[type="checkbox"]:checked ~ #menu {
  display: block;
  position: relative;
  left: 0;
}
@media screen and (max-width: 985px) {
  .main-nav ul {
    position: static;
    display: none;
  }
  .main-nav ul li,
  li a {
    width: 100%;
  }
  .main-nav li a {
    color: var(--dark);
    font-size: 30px;
  }
  .main-nav .show-menu {
    display: block;
  }
  .main-nav.fixed li a {
    color: var(--dark);
  }
  .main-nav input[type="checkbox"]:checked ~ #menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.1);
  }
}
.menu-icon {
  transform: scale(var(--ggs, 1));
  cursor: pointer;
}
.menu-icon,
.menu-icon::after,
.menu-icon::before {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 25px;
  height: 4px;
  border-radius: 3px;
  transition: 1s all ease;
  z-index: 99;
  cursor: pointer;
  background: #1e1e1e;
  color: #fff;
}
.main-nav.fixed .menu-icon,
.main-nav.fixed .menu-icon::after,
.main-nav.fixed .menu-icon::before {
  color: #fff;
  background: #fff;
}
.main-nav input[type="checkbox"]:checked ~ .show-menu .menu-icon {
  transform: rotate(130deg);
  background: var(--dark);
}
.main-nav input[type="checkbox"]:checked ~ .show-menu .menu-icon:after {
  top: -4px;
  width: 25px;
  transform: rotate(93deg);
  background: var(--dark);
}
.main-nav input[type="checkbox"]:checked ~ .show-menu .menu-icon:before {
  opacity: 0;
}
.fixed .menu-icon,
.fixed .menu-icon::after,
.fixed .menu-icon::before {
  background-color: var(--dark);
}
.menu-icon::after,
.menu-icon::before {
  content: "";
  position: relative;
  top: -10px;
  width: 13px;
}
.menu-icon::after {
  top: 6px;
  width: 14px;
}
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 100px;
  transition: all 0.3s ease 0s;
}
.header-area.header-sticky {
  min-height: 60px;
}
.header-area .main-nav {
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  background-color: var(--white);
  border-radius: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
}
.header-area .main-nav.fixed {
  background: rgba(255, 255, 255, 0.1);
}
.header-area .main-nav.fixed #logo {
  opacity: 1;
}
.header-area .main-nav.fixed #logo-dark {
  opacity: 0;
}
.header-area .main-nav .logo {
  transition: all 0.3s ease 0s;
  width: 150px;
  /* height: 48px; */
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.header-area .main-nav .logo img {
  transition: all 0.3s ease 0s;
  position: absolute;
  max-width: 150px;
}
.header-area.header-sticky nav {
  margin-top: 0;
  display: flex;
}
.header-area .main-nav .nav {
  float: right;
  margin-top: 27px;
  margin-left: 0;
  margin-right: 30px;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}
.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}
.header-area.header-sticky .nav li a {
  color: var(--dark);
}
.carousel h1 {
  font-size: 25px;
}
.swiper {
  width: 100%;
  height: 600px;
}
.swiper .overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  margin: 0;
}
.big-logo {
  position: absolute;
  width: 350px;
  z-index: 999;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
@media (min-width: 640px) {
  .carousel h1 {
    font-size: 40px;
  }
  .swiper-slide .content-wrapper .btn {
    margin-top: 25px;
  }
  .swiper .overlay {
    background: rgba(0, 0, 0, 0.6);
  }
}
.swiper .swiper-image {
  position: absolute;
  width: 100vw;
  height: 100vh;
  margin: 0;
  transform: scale3d(1, 1, 1);
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  will-change: transform;
  transition: transform 1.5s ease;
  transition-delay: 0.4s;
}
.swiper .content-wrapper {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ".";
  justify-items: start;
  align-items: end;
  color: var(--white);
  bottom: 6%;
  left: 6%;
  right: 6%;
  max-width: 330px;
  z-index: 9999999;
}
@media (min-width: 810px) {
  .swiper .content-wrapper {
    max-width: 550px;
  }
}
.swiper .content-wrapper p {
  color: var(--white);
}
.swiper .content-wrapper .sub {
  color: var(--main-color);
  font-weight: 700;
}
.swiper .content-wrapper .btn {
  color: var(--white);
}
@media (min-width: 640px) {
  .swiper .content-wrapper.content-right {
    justify-items: end;
  }
}
.swiper .content-wrapper .content {
  padding: 1.5em;
  color: #fff;
  opacity: 0;
  width: 100%;
  max-width: 300px;
  transition-duration: 1.5s, 0.6s;
  transition-property: opacity, transform;
  transition-delay: 0.4s;
}
.swiper .content-wrapper .content :first-child {
  margin: 0;
}
@media (min-width: 640px) {
  .swiper .content-wrapper .content {
    padding: 0 5%;
  }
}
.swiper .swiper-slide {
  margin: 0;
  overflow: hidden !important;
}
.swiper .swiper-slide.swiper-slide-active .swiper-image {
  transform: scale3d(1.02, 1.02, 1);
  will-change: transform;
}
.swiper .swiper-slide.swiper-slide-active .content {
  opacity: 1;
}
.swiper .swiper-nav-wrapper {
  position: absolute;
  bottom: 6%;
  right: 6%;
  z-index: 999;
  display: flex;
}
.swiper .swiper-nav-wrapper .swiper-button-next,
.swiper .swiper-nav-wrapper .swiper-button-prev {
  position: relative;
}
.swiper .swiper-nav-wrapper .swiper-button-next:hover,
.swiper .swiper-nav-wrapper .swiper-button-prev:hover {
  background: e60012b5;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  left: 10px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 60px !important;
  height: 60px !important;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' transform='translate(4.508789, 7.870605) rotate(-180.000000) translate(-4.508789, -7.870605) translate(-0.000000, -0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 60px !important;
  height: 60px !important;
}
.welcome-area {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 36vh;
}
.welcome-area.tips {
  background-image: url(../images/banner-bg.jpg);
}
.welcome-area.meditation {
  background-image: url(../images/banner-meditation.jpg);
}
.welcome-area.recipes {
  background-image: url(../images/banner-recipes.jpg);
}
.welcome-area.videos {
  background-image: url(../images/banner-videos.jpg);
}
.welcome-area:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
}
@media (min-width: 1800px) {
  .welcome-area {
    height: 40vh;
    background-position: center center;
  }
}
.welcome-area .header-text {
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 80%;
  margin-top: 35px;
  flex-wrap: wrap;
  position: relative;
  z-index: 9998;
}
.welcome-area .header-text img {
  max-width: 520px;
}
.welcome-area .header-text h1 {
  font-weight: 600;
  font-size: 50px;
  line-height: 42px;
  letter-spacing: 1.4px;
  margin-bottom: 30px;
  color: var(--white);
  margin-top: 80px !important;
  position: relative;
  text-transform: uppercase;
}
.welcome-area .header-text h2 {
  color: var(--white);
}
.welcome-area .header-text p {
  font-weight: 500;
  font-size: 18px;
  padding: 18px 0;
  color: var(--white);
  line-height: 25px;
  letter-spacing: 0.25px;
  position: relative;
}
@media (max-width: 320px) {
  .welcome-area .header-text h1 {
    margin-top: -20px;
  }
  .welcome-area .header-text img {
    display: none;
  }
}
@media (min-width: 811px) {
  .welcome-area .header-text {
    flex-wrap: nowrap;
  }
  .welcome-area .header-text h1 {
    margin-top: 0;
  }
  .welcome-area .header-text p {
    display: block;
  }
}
@media (min-width: 980px) {
  .welcome-area .header-text img {
    max-width: 670px;
  }
}
a.main-button-slider {
  -webkit-animation: heartbeat 3.5s ease-in-out infinite both;
  animation: heartbeat 3.5s ease-in-out infinite both;
  text-transform: uppercase;
  color: var(--main-color);
  letter-spacing: 0.25px;
  transition: all 0.3s ease 0s;
  font-weight: 700;
  margin: 20px auto;
  width: 100%;
  display: block;
  max-width: 230px;
  background-image: radial-gradient(100% 100% at 100% 0, #f7b127 0, #e6dd69 100%);
  border: 0;
  border-radius: 6px;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
  box-sizing: border-box;
  text-shadow: 0 0 10px #8a7647;
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 18px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
@-webkit-keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.home-feature {
  padding-bottom: 0;
  padding-top: 30px;
  margin-top: -220px;
  z-index: 9;
}
.home-feature .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home-feature .container {
    flex-wrap: nowrap;
  }
  .carousel-section img {
    width: 430px;
  }
}
.features-small-item {
  cursor: pointer;
  display: block;
  background: var(--white);
  box-shadow: 0 2px 48px 0 rgb(0 0 0 / 10%);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease 0s;
  position: relative;
  margin-bottom: 30px;
  width: 290px;
}
.features-small-item .icon {
  transition: all 0.3s ease 0s;
  width: 90px;
  height: 90px;
  margin: auto;
  position: relative;
  margin-bottom: 30px;
  background: #2776dc;
  background: linear-gradient(45deg, #2776dc 0, #569fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-small-item .icon img {
  height: 50px;
  width: 50px;
}
.features-small-item .features-title {
  font-weight: 500;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: 0.7px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.features-small-item .icon i {
  font-size: 18px;
  color: var(--white);
}
.features-small-item p {
  font-weight: 400;
  font-size: 13px;
  color: var(--dark-light);
  letter-spacing: 0.5px;
  line-height: 25px;
  position: relative;
  z-index: 2;
}
.about-section .container {
  margin: 80px auto 50px;
  max-width: 940px;
  width: 90%;
}
.about-section h2 {
  margin: 10px 0;
}
.about-section p {
  font-size: 18px;
  line-height: 32px;
}
.carousel-section {
  background: var(--white);
}
.carousel-section .container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 1110px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (min-width: 810px) {
  .carousel-section .container {
    flex-wrap: nowrap;
  }
}
.carousel-section .container .text {
  max-width: 500px;
  margin: auto;
}
.carousel-section .container .text p {
  line-height: 28px;
  color: var(--dark-light);
}
.carousel {
  position: relative;
  box-shadow: 0 1px 20px rgb(0 0 0 / 25%);
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-open:checked + .carousel-item {
  position: static;
  opacity: 100;
}
.carousel-item {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.carousel-item img {
  display: block;
  height: auto;
  max-width: 100%;
}
.carousel-control {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: none;
  font-size: 40px;
  height: 40px;
  line-height: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  cursor: pointer;
  transform: translate(0, -50%);
  text-align: center;
  width: 40px;
  z-index: 10;
}
.carousel-control.prev {
  left: 2%;
}
.carousel-control.next {
  right: 2%;
}
.carousel-control:focus,
.carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #aaa;
}
#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3,
#carousel-3:checked ~ .control-4,
#carousel-3:checked ~ .control-5,
#carousel-3:checked ~ .control-6 {
  display: block;
}
.carousel-indicators {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}
.carousel-indicators li {
  display: inline-block;
  margin: 0 5px;
}
.carousel-bullet {
  color: var(--white);
  cursor: pointer;
  display: block;
  font-size: 35px;
}
.carousel-bullet:focus,
.carousel-bullet:hover {
  color: #aaa;
}
#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
  color: var(--main-color);
}
#title {
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 27px;
  color: rgba(255, 255, 255, 1);
  z-index: 9999;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.33), -1px 0 2px rgba(255, 255, 255, 0);
}
.page-title,
.section-title {
  font-weight: 600;
  font-size: 40px;
  color: var(--dark);
  letter-spacing: 0.25px;
  margin: 0 auto 30px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 4px solid var(--main-color);
  padding-bottom: 10px;
}
.page-title.black {
  color: var(--dark);
  margin-bottom: 30px;
}
.section-title span {
  color: var(--main-color);
}
section {
  background: var(--white);
  min-height: 215px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  overflow-x: hidden;
}
section.grey {
  background: rgba(0, 0, 0, 0.05);
  margin: 50px auto;
}
.article-section {
  text-align: left;
  padding: 0 20px;
  max-width: 1056px;
  margin: 40px auto;
}
.article-section li {
  padding: 0;
  margin: 0;
  list-style: square;
  margin: 14px auto;
  margin-left: 8px;
  font-size: 18px;
  font-style: italic;
  line-height: 25px;
}
.article-section h2 {
  margin: 10px 0;
}
.article-section img {
  margin-bottom: 20px;
}
.multicontent-section .container,
.tips-section .container {
  color: var(--white);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}
.material-container,
.material-single {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  position: relative;
}
@media (min-width: 1600px) {
  .material-container,
  .material-single {
    max-width: 1056px;
    margin: 20px auto -16px;
  }
}
.material-single.free:after {
  content: "FREE";
  display: block;
  font-family: inherit;
  position: absolute;
  background: var(--main-color);
  width: 100%;
  height: 16px;
  max-width: 60px;
  padding: 5px 0;
  color: var(--white);
  right: 12px;
  border-radius: 30px;
  font-size: 14px;
  top: 14px;
  text-align: center;
  font-weight: 400;
}
.material-container .mini-box,
.material-container .mini-box-free {
  padding: 0;
  border-radius: 20px;
  transition: all 0.3s ease 0s;
  text-align: center;
  width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  top: 0;
  transition: all 0.5s ease;
}
.material-container .mini-box-free:hover,
.material-container .mini-box:hover,
.mini-box-free:focus,
.mini-box:focus {
  top: -5px;
}
.material-container .mini-box-free::before,
.material-container .mini-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--white);
  width: 100%;
  opacity: 0.15;
  height: 100%;
  bottom: -10px;
  left: 0;
  right: -20px;
  margin: auto;
  border-radius: 20px;
  flex: 1;
}
.material-container .mini-box i,
.material-container .mini-box-free i {
  margin: 10px auto;
  color: #2776dc;
}
.material-container .mini-box strong,
.material-container .mini-box-free strong {
  display: block;
  font-weight: 700;
  font-size: 24px;
  color: #1e1e1e;
  letter-spacing: 0.25px;
  margin-bottom: 5px;
  margin-top: 20px;
  min-height: 50px;
  padding: 0 15px;
}
.material-container .mini-box span,
.material-container .mini-box-free span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.75px;
}
.slider-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.multicontent-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.multicontent-section .container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 1.2rem;
}
.multicontent-section .container .section-title {
  color: var(--white);
}
.multicontent-section .container .text {
  max-width: 600px;
}
.video-bg {
  background: var(--darkest);
}
.video-wrapper {
  max-width: 1056px;
  margin: 0 auto;
}
.mini-box img,
.mini-box-free img,
video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}
.mini-box-free.premium img,
.mini-box-free.premium video,
.mini-box.premium img,
.mini-box.premium video {
  -webkit-filter: grayscale(50%) brightness(30%);
  filter: grayscale(50%) brightness(30%);
}
.mini-box.premium img:after,
.mini-box.premium video:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
.locked {
  box-sizing: border-box;
  position: absolute;
  display: block;
  transform: scale(var(--ggs, 2));
  width: 12px;
  height: 11px;
  border: 2px solid;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom: transparent;
  margin-top: -12px;
  z-index: 99;
  left: 0;
  right: 0;
  top: 32%;
}
.locked::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 16px;
  height: 10px;
  border-radius: 2px;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px;
  left: -4px;
  top: 9px;
}
.material-container .mini-box i.locked {
  margin: 10px auto;
  color: #fff;
}
.carousel-section img {
  max-width: 550px;
}
.faqs {
  display: grid;
  gap: 2rem;
}
.faq__question {
  outline: 0;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  padding: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.faq__question::before {
  display: inline-block;
  content: "×";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 5px;
  color: var(--main-color);
  font-weight: 900;
  transform: rotate(-135deg);
  transition: all 0.4s ease-in-out;
  transform-origin: center;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__answer {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.05);
}
.faq[open] {
  outline: 0;
}
.faq[open] .faq__question::before {
  transform: rotate(0);
}
.faq[open] .faq__answer {
  -webkit-animation: slide-down 0.5s ease-in-out;
  animation: slide-down 0.5s ease-in-out;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
h2.contact {
  margin-top: 50px;
}
.content-button {
  display: flex;
  align-items: center;
}
footer {
  background: #171717;
  color: var(--white);
  position: absolute;
  margin-top: 100px;
  left: 0;
  right: 0;
}
footer .flex {
  align-items: center;
  text-align: left;
}
footer .mini-box-free img {
  width: 78px;
  height: 78px;
}
footer .section-title {
  font-weight: 600;
  font-size: 42px;
  color: var(--white);
}
footer h2 {
  margin-bottom: 10px;
}
footer a,
footer p {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}
footer .container {
  width: 90%;
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}
.footer-links {
  margin: 20px auto;
}
.footer-links li {
  display: inline-block;
  padding: 0 8px;
}
summary::-webkit-details-marker {
  display: none;
}
a {
  color: var(--main-color);
}
a:active,
a:focus,
a:hover {
  color: var(--main-color);
  text-decoration: none;
}
.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.visible-on-focus {
  display: block;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.visible-on-focus:focus {
  overflow: visible;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  background-color: var(--white);
}
.hidden {
  display: none !important;
}
.js-tab-panel[aria-hidden="true"] {
  display: none;
}
@media screen and (max-width: 480px) {
  body {
    padding: 0;
  }
  .material-container .mini-box strong,
  .material-container .mini-box-free strong {
    font-size: 18px;
  }
}
.tab {
  display: inline-block;
}
.tab a {
  display: flex;
  align-items: center;
  color: #000;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.15s ease-out;
  border-radius: 4px 4px 0 0;
  border-width: 2px 2px 0 2px;
}
.tab a i {
  transform: scale(var(--ggs, 1));
  color: var(--main-color);
  margin-right: 8px;
}
@media screen and (max-width: 480px) {
  .tab a {
    border-radius: 0;
  }
}
.tab a .fa {
  font-size: 16px;
}
@media screen and (max-width: 810px) {
  .tab a span {
    display: none;
  }
}
.tab a:focus,
.tab a:hover {
  background-color: var(--white);
  padding: 15px 30px;
  font-weight: 700;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.tab.active a {
  padding: 15px 25px;
}
@media screen and (max-width: 810px) {
  .tab.active a {
    padding: 15px 30px;
  }
}
.tab + .tab {
  margin-left: 5px;
}
@media screen and (max-width: 480px) {
  .tab:first-child a {
    border-radius: 4px 0 0 0;
  }
}
@media screen and (max-width: 480px) {
  .tab:last-child a {
    border-radius: 0 4px 0 0;
  }
}
.tab__wrapper {
  margin: 25px auto 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .tab__wrapper {
    text-align: center;
  }
}
.panel__wrapper {
  width: 100%;
  color: var(--dark);
  margin: 0 auto;
  border-radius: 0 4px 4px 4px;
}
.title {
  color: var(--main-color);
  font-size: 40px;
  font-weight: 100;
  margin: 0 auto 30px;
}
@media screen and (max-width: 480px) {
  .title {
    padding: 50px 20px 0;
  }
}
.modal {
  margin: auto;
  position: fixed;
  top: 20%;
  left: 0;
  right: 0;
  width: 50%;
  max-width: 630px;
  min-width: 320px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.modal .btn {
  color: #fff;
}
.modal-show {
  visibility: visible;
}
.md-content {
  text-align: center;
  position: relative;
}
.md-content h3,
.md-content p,
.md-content ul li {
  color: var(--white);
}
.md-content h3 {
  font-size: 2rem;
}
.md-content p {
  line-height: 35px;
}
.modal-close {
  position: absolute;
  top: -68px;
  right: 20px;
  background: 0 0;
  color: var(--white);
  font-size: 28px;
  border: 2px solid var(--white);
  border-radius: 100%;
  padding: 5px 13px;
  cursor: pointer;
}
.modal-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.3s;
}
img.lock {
  max-width: 220px;
  margin: 20px auto;
}
.contact-section .flex {
  max-width: 1056px;
  display: flex;
  margin: 15px auto 40px;
  justify-content: center;
  text-align: center;
}
.contact-section .flex .text {
  padding: 0 20px;
}
.btn {
  cursor: pointer;
  width: 100%;
  font: inherit;
  max-width: 200px;
  padding: 15px 40px;
  background-color: transparent;
  border: 2px solid var(--main-color);
  transition: all 0.3s ease;
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  margin: 10px auto;
  border-radius: 30px;
  display: block;
  text-transform: uppercase;
}
.btn:focus,
.btn:hover {
  background: var(--main-color);
  color: var(--white);
}
.contact-section .flex .btn {
  border: none;
}
.contact-input {
  position: relative;
}
.contact-input input {
  outline-color: var(--main-color);
  background: var(--white);
  padding: 28px 70px 28px 20px;
  font-size: 18px;
  border-radius: 20px;
  box-shadow: 0 2px 48px 0 rgb(0 0 0 / 8%);
  border: none;
  width: 100%;
  margin: 15px auto;
}
.contact-section .btn {
  background: 0 0;
  position: absolute;
  width: 100%;
  max-width: 30px;
  padding: 0;
  margin: 0;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
}
.mail,
.mail::after {
  display: block;
  box-sizing: border-box;
  height: 14px;
  border: 2px solid;
}
.mail {
  overflow: hidden;
  transform: scale(var(--ggs, 1.5));
  position: relative;
  width: 18px;
  border-radius: 2px;
  color: var(--main-color);
}
.mail::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  width: 14px;
  transform: rotate(-45deg);
  bottom: 3px;
  left: 0;
}
