@charset "UTF-8";
/* CSS INDEXING */
:root {
  --foreground-color: #212326;
  --foreground-sub-color: #6b7177;
  --primary-color: #212326;
  --secondary-color: #008060;
  --dark-green-color: #2b654e;
  --yellow-color: #ffc107;
  --text-gray-color: #666666;
  --white-color: #ffffff;
  --black-color: #000000;
  --border-color: #cdd6de;
  --inter-fonts: "Inter", sans-serif;
  --body-font-size: 1.6rem;
  --body-font-weight: 400;
  --body-line-height: 2.7rem;
  --headings-weight: 600;
  --transition: all 0.3s ease 0s;
  --container-fluid-offset: 8rem;
}

/* Common Style */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  margin: 0;
  font-size: 62.5%;
  padding: 0;
}

body {
  font-family: var(--inter-fonts);
  font-size: var(--body-font-size, 1.6rem);
  font-weight: var(--body-font-weight);
  font-style: normal;
  line-height: var(--body-line-height, 27px);
  position: relative;
  visibility: visible;
  overflow-x: hidden;
  color: var(--foreground-color);
  background-color: var(--white-color);
}
@media only screen and (max-width: 1599px) {
  body {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 992px) {
  body {
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  margin: 0;
}

h1,
.h1 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 480px) {
  h1,
  .h1 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
@media only screen and (min-width: 576px) {
  h1,
  .h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
@media only screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 3rem;
    line-height: 4.2rem;
  }
}
@media only screen and (min-width: 992px) {
  h1,
  .h1 {
    font-size: 3.5rem;
    line-height: 4.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 4rem;
    line-height: 5.8rem;
  }
}
@media only screen and (min-width: 1366px) {
  h1,
  .h1 {
    font-size: 4.5rem;
    line-height: 6.8rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
  line-height: 2.6rem;
}
@media only screen and (min-width: 576px) {
  h2,
  .h2 {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 2.3rem;
    line-height: 3.4rem;
  }
}
@media only screen and (min-width: 992px) {
  h2,
  .h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 3.5rem;
    line-height: 5rem;
  }
}
@media only screen and (min-width: 1366px) {
  h2,
  .h2 {
    font-size: 4rem;
    line-height: 6rem;
  }
}

h3,
.h3 {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: 500;
}
@media only screen and (min-width: 992px) {
  h3,
  .h3 {
    font-size: 1.7rem;
    line-height: 2.6rem;
  }
}
@media only screen and (min-width: 1366px) {
  h3,
  .h3 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

h4,
.h4 {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media only screen and (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

h5,
.h5 {
  font-weight: 400;
}

h6,
.h6 {
  font-weight: 400;
}

p,
.p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 2.6rem;
  color: var(--foreground-sub-color);
}
@media only screen and (max-width: 767px) {
  p,
  .p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

p:last-child {
  margin-bottom: 0;
}

a,
button {
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

a,
button,
img,
input,
textarea {
  transition: var(--transition);
}

*:focus {
  outline: none;
  box-shadow: none;
}

:focus-visible {
  box-shadow: 0 0 5px 2px rgba(19, 19, 19, 0.15);
}

a:focus {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

button,
input[type="submit"] {
  cursor: pointer;
  font-family: var(--inter-fonts);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

input[type="number"] {
  -moz-appearance: textfield;
}

img {
  max-width: 100%;
  height: auto;
}

span {
  display: inline-block;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

ul {
  margin: 0;
  padding: 0;
}

ul:last-child {
  margin-bottom: 0;
}

li {
  list-style: none;
  line-height: 1;
}

hr {
  border-top-width: 2px;
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.container-fluid {
  --offset-fluid: 1.5rem;
  padding-right: var(--offset-fluid);
  padding-left: var(--offset-fluid);
}
@media only screen and (min-width: 992px) {
  .container-fluid {
    --offset-fluid: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 3.8);
  }
}
@media only screen and (min-width: 1366px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 2.5);
  }
}
@media only screen and (min-width: 1500px) {
  .container-fluid {
    --offset-fluid: var(--container-fluid-offset);
  }
}

@media only screen and (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1366px) {
  .container {
    max-width: 1330px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1470px;
  }
}
@media only screen and (max-width: 767px) {
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .row > * {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .row {
    margin-right: -8px;
    margin-left: -8px;
  }
  .row > * {
    padding-right: 8px;
    padding-left: 8px;
  }
}
.row-reverse {
  flex-direction: column-reverse;
}

@media only screen and (max-width: 991px) {
  .row-md-reverse {
    flex-direction: column-reverse;
  }
}

.primary__btn {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 3.4rem;
  display: inline-block;
  height: 3.4rem;
  padding: 0 1.8rem;
  border-radius: 2.5rem;
  background: var(--secondary-color);
  color: var(--white-color);
  border: 0;
}
.primary__btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
@media only screen and (min-width: 768px) {
  .primary__btn {
    line-height: 4rem;
    height: 4rem;
    padding: 0 2.5rem;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) {
  .primary__btn {
    font-weight: 500;
    line-height: 4.5rem;
    height: 4.5rem;
    padding: 0 3rem;
  }
}

select {
  word-wrap: normal;
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

#scroll__top {
  position: fixed;
  bottom: 50px;
  right: 25px;
  z-index: 99;
  outline: none;
  background-color: var(--secondary-color);
  color: var(--white-color);
  box-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  line-height: 1;
  width: 4.3rem;
  height: 4.3rem;
  line-height: 1;
  border-radius: 50%;
  border: 0;
}
#scroll__top:hover {
  background: var(--primary-color);
}

#scroll__top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

#scroll__top svg {
  width: 25px;
  line-height: 1;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.line-height-1 {
  line-height: 1;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.overflow-hidden {
  overflow: hidden;
}

.break {
  word-break: break-word;
}

.bg__primary {
  background: var(--primary-color);
}

.bg__secondary {
  background: var(--secondary-color);
}

.text__primary {
  color: var(--primary-color);
}

.text__secondary {
  color: var(--secondary-color);
}

.border-radius-50 {
  border-radius: 50%;
}

/* Tab */
.tab_content {
  display: block;
}

.tab_pane {
  display: none;
  transition: var(--transition);
}

.tab_pane:not(.show) {
  opacity: 0;
}

.tab_pane.show {
  opacity: 1;
}

.tab_pane.active {
  display: block;
}

body.overlay__active,
.mobile_menu_open {
  overflow-y: hidden;
}

body.overlay__active::before,
.mobile_menu_open::before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0.5;
  cursor: crosshair;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate-fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* Section padding */
.section--padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .section--padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
@media only screen and (min-width: 992px) {
  .section--padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section--padding {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

/* Section margin */
.section--nargin {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 768px) {
  .section--nargin {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
@media only screen and (min-width: 992px) {
  .section--nargin {
    margin-top: 9rem;
    margin-bottom: 9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .section--nargin {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

/* Padding */
.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

/* Margin */
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb--n30 {
  margin-bottom: -3rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mb--n40 {
  margin-bottom: -3rem;
}
@media only screen and (min-width: 768px) {
  .mb--n40 {
    margin-bottom: -3.5em;
  }
}
@media only screen and (min-width: 992px) {
  .mb--n40 {
    margin-bottom: -4rem;
  }
}

.mb-40 {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .mb-40 {
    margin-bottom: 3.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .mb-40 {
    margin-bottom: 4rem;
  }
}

.mb--n60 {
  margin-bottom: -3rem;
}
@media only screen and (min-width: 768px) {
  .mb--n60 {
    margin-bottom: -4rem;
  }
}
@media only screen and (min-width: 992px) {
  .mb--n60 {
    margin-bottom: -6rem;
  }
}

.mb-60 {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .mb-60 {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 992px) {
  .mb-60 {
    margin-bottom: 6rem;
  }
}

/*
  header css
*/
.header__topbar {
  padding: 1rem 0;
}

.header__top--features {
  gap: 1.5rem;
}
@media only screen and (max-width: 575px) {
  .header__top--features {
    gap: 1rem;
    flex-direction: column-reverse;
  }
}
.header__top--features__text {
  color: var(--white-color);
  font-size: 1.4rem;
}
.header__top--features__link {
  background: var(--dark-green-color);
  color: var(--white-color);
  font-size: 1.4rem;
  padding: 0.1rem 1.5rem;
  border-radius: 1.5rem;
}
.header__top--features__link:hover {
  color: var(--white-color);
}

.main__header {
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.header__menu--link {
  font-size: 1.5rem;
  font-weight: 500;
}
.header__menu--wrapper {
  gap: 3.2rem;
}

@media only screen and (max-width: 575px) {
  .main__logo img {
    max-width: 130px;
  }
}

.mobile__menu--open {
  display: none;
}
@media only screen and (max-width: 991px) {
  .mobile__menu--open {
    display: block;
  }
}

@media only screen and (max-width: 575px) {
  .purchase__now--btn {
    padding: 0 1rem;
    text-align: center;
    width: 110px;
  }
}

.offcanvas__header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  transition: var(--transition);
  transform: translateX(-100%);
  background-color: var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  display: block;
}
@media only screen and (min-width: 480px) {
  .offcanvas__header {
    max-width: 320px;
  }
}

.offcanvas__header.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.offcanvas__header.open ~ .offcanvas-overlay {
  visibility: visible;
  opacity: 0.75;
}

.offcanvas-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  opacity: 0;
  background-color: var(--black-color);
}

.offcanvas__inner {
  position: relative;
  height: 100%;
}

/* Offacnvas Logo */
.offcanvas__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
}

.offcanvas__close--btn {
  position: relative;
  align-self: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  text-indent: -9999px;
  border: none;
  background-color: transparent;
}

.offcanvas__close--btn::before,
.offcanvas__close--btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  content: "";
  transform: rotate(45deg);
  background-color: var(--black-color);
}

.offcanvas__close--btn::after {
  transform: rotate(-45deg);
}

/* Mobile Menu */
.offcanvas__menu {
  overflow-y: auto;
  height: 100%;
}

.offcanvas__menu_ul {
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas__menu_li {
  position: relative;
  border-bottom: 1px solid var(--border-color2);
}

.offcanvas__menu_li:first-child {
  border-top: 1px solid var(--border-color2);
}

.offcanvas__menu_item {
  line-height: 1;
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
}

/*
    hero section css
*/
.hero__section--inner {
  padding: 10rem 0 5rem;
}
@media only screen and (min-width: 768px) {
  .hero__section--inner {
    padding: 7rem 0;
  }
}
@media only screen and (min-width: 992px) {
  .hero__section--inner {
    padding: 11rem 0;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__section--inner {
    padding: 13rem 0;
  }
}
@media only screen and (min-width: 1366px) {
  .hero__section--inner {
    padding: 16rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero__section--inner .row {
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 767px) {
  .hero__thumbnail {
    margin: 0 6rem;
  }
}
@media only screen and (max-width: 575px) {
  .hero__thumbnail {
    margin: 0 auto;
    max-width: 340px;
  }
}
.hero__thumbnail--items.img-one {
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .hero__thumbnail--items.img-one {
    padding: 0 6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero__thumbnail--items.img-one {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--items.img-one {
    padding: 0 4.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .hero__thumbnail--items.img-one {
    padding: 0 1rem;
  }
}
.hero__thumbnail--items.img-two {
  position: absolute;
  top: -19%;
  left: 0;
}
@media only screen and (min-width: 1366px) {
  .hero__thumbnail--items.img-two {
    top: -22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero__thumbnail--items.img-two {
    max-width: 175px;
    top: -15%;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--items.img-two {
    top: -14%;
    max-width: 130px;
  }
}
@media only screen and (max-width: 575px) {
  .hero__thumbnail--items.img-two {
    top: -16%;
    max-width: 95px;
  }
}
.hero__thumbnail--items.img-three {
  position: absolute;
  bottom: -14%;
  right: 0;
}
@media only screen and (min-width: 1366px) {
  .hero__thumbnail--items.img-three {
    bottom: -22%;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--items.img-three {
    bottom: -16%;
    max-width: 127px;
  }
}
@media only screen and (max-width: 575px) {
  .hero__thumbnail--items.img-three {
    max-width: 86px;
  }
}

.hero__content {
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  .hero__content {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero__content {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .hero__content {
    padding-top: 5rem;
  }
}
.hero__content--subtitle {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .hero__content--subtitle {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__content--subtitle {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__content--subtitle {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1366px) {
  .hero__content--subtitle {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.hero__content--title.cd-headline {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 480px) {
  .hero__content--title.cd-headline {
    font-size: 2.6rem;
    line-height: 3.5rem;
  }
}
@media only screen and (min-width: 576px) {
  .hero__content--title.cd-headline {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero__content--title.cd-headline {
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 4.2rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__content--title.cd-headline {
    font-size: 3.5rem;
    line-height: 4.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__content--title.cd-headline {
    font-size: 4rem;
    line-height: 5.8rem;
    margin-bottom: 2.7rem;
  }
}
@media only screen and (min-width: 1366px) {
  .hero__content--title.cd-headline {
    font-size: 4.5rem;
    line-height: 6.8rem;
  }
}
.hero__content--title.cd-headline span b {
  font-weight: 700;
}
.hero__content--desc {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media only screen and (min-width: 768px) {
  .hero__content--desc {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__content--desc {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__content--desc {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
@media only screen and (min-width: 1366px) {
  .hero__content--desc {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
.hero__content--footer {
  margin-top: 2rem;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .hero__content--footer {
    margin-top: 2.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__content--footer {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .hero__content--footer {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero__content--footer {
    justify-content: center;
  }
}
.hero__content--btn {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background: none;
  line-height: 3.2rem;
}
@media only screen and (min-width: 992px) {
  .hero__content--btn {
    line-height: 3.8rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero__content--btn {
    line-height: 4.3rem;
  }
}
.hero__content--btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}
.hero__content--btn.active {
  background: var(--secondary-color);
  color: var(--white-color);
}
.hero__content--btn.active:hover {
  color: var(--secondary-color);
  background: none;
}

.hero__thumbnail--shape1 {
  position: absolute;
  bottom: -46px;
  left: 15px;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .hero__thumbnail--shape1 {
    bottom: -64px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape1 {
    max-width: 85px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape1 {
    bottom: -46px;
    left: 15px;
    max-width: 85px;
  }
}
@media only screen and (max-width: 575px) {
  .hero__thumbnail--shape1 {
    bottom: -37px;
    max-width: 54px;
  }
}

.hero__thumbnail--shape2 {
  position: absolute;
  top: -102px;
  right: -4px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero__thumbnail--shape2 {
    top: -92px;
    right: 0;
    max-width: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape2 {
    top: -62px;
    right: 0;
    max-width: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .hero__thumbnail--shape2 {
    top: -33px;
    max-width: 55px;
  }
}

.hero__thumbnail--shape3 {
  position: absolute;
  top: -27%;
  left: 58px;
  z-index: -1;
}
@media only screen and (min-width: 1200px) {
  .hero__thumbnail--shape3 {
    top: -28%;
  }
}
@media only screen and (min-width: 1366px) {
  .hero__thumbnail--shape3 {
    top: -33%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero__thumbnail--shape3 {
    max-width: 170px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape3 {
    top: -23%;
    left: 58px;
    max-width: 150px;
  }
}

.hero__thumbnail--shape4 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 1200px) {
  .hero__thumbnail--shape4 {
    bottom: 12%;
  }
}
@media only screen and (max-width: 1199px) {
  .hero__thumbnail--shape4 {
    max-width: 130px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape4 {
    max-width: 100px;
  }
}

.hero__thumbnail--shape5 {
  position: absolute;
  top: 2rem;
  left: 2rem;
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape5 {
    max-width: 50px;
  }
}

.hero__thumbnail--shape6 {
  position: absolute;
  bottom: 14%;
  left: 39%;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: animateUpDown;
  animation-name: animateUpDown;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape6 {
    max-width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__thumbnail--shape6 {
    display: none;
  }
}

.hero__thumbnail--shape7 {
  position: absolute;
  top: 15%;
  left: 40%;
}
@media only screen and (max-width: 991px) {
  .hero__thumbnail--shape7 {
    max-width: 40px;
  }
}

.hero__thumbnail--shape8 {
  position: absolute;
  top: 10%;
  left: 20%;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: animateUpDown;
  animation-name: animateUpDown;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hero__thumbnail--shape9 {
  position: absolute;
  top: 4%;
  right: 23%;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: animateLeftRight;
  animation-name: animateLeftRight;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cd-headline.clip span {
  padding: 0;
}

@-webkit-keyframes animateUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes animateUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes animateLeftRight {
  0% {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    -moz-transform: translatex(0px);
    -ms-transform: translatex(0px);
    -o-transform: translatex(0px);
  }
  50% {
    transform: translatex(-30px);
    -webkit-transform: translatex(-30px);
    -moz-transform: translatex(-30px);
    -ms-transform: translatex(-30px);
    -o-transform: translatex(-30px);
  }
  100% {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    -moz-transform: translatex(0px);
    -ms-transform: translatex(0px);
    -o-transform: translatex(0px);
  }
}
@keyframes animateLeftRight {
  0% {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    -moz-transform: translatex(0px);
    -ms-transform: translatex(0px);
    -o-transform: translatex(0px);
  }
  50% {
    transform: translatex(-30px);
    -webkit-transform: translatex(-30px);
    -moz-transform: translatex(-30px);
    -ms-transform: translatex(-30px);
    -o-transform: translatex(-30px);
  }
  100% {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    -moz-transform: translatex(0px);
    -ms-transform: translatex(0px);
    -o-transform: translatex(0px);
  }
}
/*
    guarantee section css
*/
.guarantee__section {
  background: #f7fbfa;
}

.guarantee__title {
  margin-bottom: 1.2rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .guarantee__title {
    margin-bottom: 1.6rem;
  }
}
.guarantee__title svg {
  margin-right: 5px;
}

.guarantee__desc {
  line-height: 2.6rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .guarantee__desc {
    width: 95%;
  }
}
@media only screen and (min-width: 1366px) {
  .guarantee__desc {
    width: 88%;
  }
}

/* Preloader */
div#preloader {
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  position: fixed;
}

.addloaded {
  opacity: 0;
  transition: 1s ease-out;
  -webkit-transition: 1s ease-out;
  -moz-transition: 1s ease-out;
  -ms-transition: 1s ease-out;
  -o-transition: 1s ease-out;
  pointer-events: none;
}

/* Animación del preloader */
@-webkit-keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
/* Animación de las letras cargando del preloader */
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.loader {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 40px;
  font-family: arial;
  position: fixed;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .loader {
    width: 100%;
    padding: 0 2rem;
    text-align: center;
  }
}

.loader span {
  position: relative;
  top: 30px;
  border-radius: 8px;
  padding: 0px 10px;
  background-color: var(--secondary-color);
  -webkit-animation: 0.7s ease-in-out infinite alternate;
  animation: 0.7s ease-in-out infinite alternate;
  -webkit-animation-name: loading-txt;
  animation-name: loading-txt;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .loader span {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.6rem;
  }
}

@-webkit-keyframes loading-txt {
  to {
    top: 0px;
  }
}

@keyframes loading-txt {
  to {
    top: 0px;
  }
}
/*-- Loading delay and smoothness CSS --*/
.loader span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.loader span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loader span:nth-child(4) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.loader span:nth-child(5) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loader span:nth-child(6) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.loader span:nth-child(7) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

/*
    guarantee section css
*/
.section__heading--title del {
  color: var(--secondary-color);
}

.features__card--title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.2rem;
}
@media only screen and (min-width: 992px) {
  .features__card--title {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .features__card--title {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .features__card--thumbnail__img {
    width: 100%;
  }
}

.features__btn {
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .features__btn {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .features__btn {
    margin-top: 5rem;
  }
}

.features__table--inner table {
  width: 100%;
}

.features__table--section {
  background: #f7fbfa;
}

.features__table--inner {
  background: var(--white-color);
  padding: 3rem 2rem 0;
  border-radius: 10px;
}
@media only screen and (min-width: 576px) {
  .features__table--inner {
    padding: 4rem 4rem 0;
  }
}
.features__table table thead tr th {
  text-align: center;
  background: #f5f5f5;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.2rem 0.8rem;
}
@media only screen and (min-width: 992px) {
  .features__table table thead tr th {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1200px) {
  .features__table table thead tr th {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .features__table table thead tr th {
    min-width: 155px;
  }
}
.features__table table tbody tr td {
  padding: 1.2rem 0.8rem;
  font-size: 1.4rem;
  text-align: center;
  border-right: 1px solid #f5f5f5;
}
.features__table table tbody tr td:last-child {
  border-right: 0;
}
.features__table table tbody tr td .mark_icon {
  margin-right: 0.6rem;
}
@media only screen and (min-width: 992px) {
  .features__table table tbody tr td {
    font-size: 1.5rem;
  }
}
.features__table table tbody tr:nth-child(2n) td {
  background: #f5f5f5;
}
.features__table table tfoot tr th {
  text-align: center;
  border-right: 1px solid #f5f5f5;
  font-size: 1.6rem;
  padding: 2rem 1rem;
}
@media only screen and (min-width: 768px) {
  .features__table table tfoot tr th {
    font-size: 1.8rem;
    padding: 2.5rem 1.5rem 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .features__table table tfoot tr th {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .features__table table tfoot tr th {
    font-size: 2.2rem;
  }
}
.features__table table tfoot tr th:last-child {
  border-right: 0;
}
.features__table table tfoot tr th h2 {
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .features__table table tfoot tr th h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .features__table table tfoot tr th h2 {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .features__table table tfoot tr th h2 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
}
.features__table table tfoot tr th p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .features__table table tfoot tr th p {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .features__table table tfoot tr th p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .features__table table tfoot tr th p {
    font-size: 1.8rem;
  }
}

/*
    theme performance css
*/
.theme__performance--section {
  background: #fafcfc;
}

@media only screen and (max-width: 767px) {
  .theme__performance--content {
    text-align: center;
    margin-top: 2rem;
  }
}

.performance__content--title {
  margin-bottom: 1rem;
}
.performance__content--desc {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .performance__content--desc {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .performance__content--desc {
    font-size: 1.8rem;
    margin-bottom: 4.5rem;
  }
}

/*
    exclusive feature css
*/
.exclusive__feature--section .container-fluid {
  padding: 0;
}

.exclusive__feature--section {
  background: #fafcfc;
}

.exclusive__feature--btn {
  margin-top: 3rem;
}

.exclusive__column6--style2 {
  margin-top: 3rem;
}
@media only screen and (min-width: 1200px) {
  .exclusive__column6--style2 {
    margin-top: 4rem;
  }
}

/*
     template css here
*/
.template__page--number {
  font-weight: 900;
  color: var(--secondary-color);
  position: relative;
  font-size: 5rem;
  line-height: 4.5rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 576px) {
  .template__page--number {
    font-size: 6rem;
    line-height: 5.5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .template__page--number {
    font-size: 7rem;
    line-height: 6.5rem;
  }
}
@media only screen and (min-width: 992px) {
  .template__page--number {
    font-size: 8rem;
    line-height: 7.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .template__page--number {
    font-size: 9rem;
    line-height: 8.5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 1366px) {
  .template__page--number {
    font-size: 10rem;
    line-height: 9rem;
    margin-bottom: 1.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .template__page--number {
    font-size: 12rem;
    line-height: 12rem;
  }
}
.template__page--name {
  font-weight: 700;
  color: var(--primary-color);
  transform: rotate(-90deg);
  display: flex;
  position: absolute;
  font-size: 1.3rem;
  line-height: 2.2rem;
  top: -28%;
  right: -65px;
}
@media only screen and (min-width: 576px) {
  .template__page--name {
    font-size: 1.4rem;
    top: -12%;
    right: -70px;
  }
}
@media only screen and (min-width: 768px) {
  .template__page--name {
    top: 2%;
    right: -73px;
  }
}
@media only screen and (min-width: 992px) {
  .template__page--name {
    font-size: 1.5rem;
    line-height: 2.4rem;
    top: 10%;
    right: -76px;
  }
}
@media only screen and (min-width: 1200px) {
  .template__page--name {
    line-height: 2.8rem;
    top: 12%;
    right: -82px;
  }
}
@media only screen and (min-width: 1366px) {
  .template__page--name {
    font-size: 2rem;
    line-height: 3.2rem;
    top: 12%;
    right: -85px;
  }
}
@media only screen and (min-width: 1600px) {
  .template__page--name {
    top: 22%;
    right: -90px;
  }
}
.template__page--plus {
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  bottom: 3px;
}
@media only screen and (min-width: 1200px) {
  .template__page--plus {
    font-size: 3rem;
  }
}

.tab__btn--wrapper {
  gap: 3rem;
}
@media only screen and (min-width: 992px) {
  .tab__btn--wrapper {
    gap: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .tab__btn--wrapper {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.tab__btn--link {
  padding: 0;
  border: 0;
  background: inherit;
  font-size: 1.7rem;
  font-weight: 500;
  padding-bottom: 0.3rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .tab__btn--link {
    font-size: 1.6rem;
    padding-bottom: 0.2rem;
  }
}
.tab__btn--link:hover {
  color: #008060;
}
.tab__btn--link.active {
  color: #008060;
}
.tab__btn--link.active::before {
  width: 100%;
}
.tab__btn--link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #008060;
  left: 0;
  bottom: 0;
  transition: var(--transition);
}

.template__card {
  padding: 2rem;
  background: #fafafa;
  border-radius: 10px;
  transition: var(--transition);
}
.template__card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}
.template__card:hover .core__features--icon {
  background: var(--primary-color);
}
.template__card--link {
  width: 100%;
}
.template__card--thumbnail {
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 10px;
}
.template__card--thumbnail__img {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .template__card--thumbnail {
    margin-bottom: 2rem;
  }
}
.template__card--btn {
  height: 3.4rem;
  line-height: 3.4rem;
  font-size: 1.2rem;
  padding: 0 2rem;
}
@media only screen and (min-width: 1200px) {
  .template__card--btn {
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 1199px) {
  .template__card--btn {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 1199px) {
  .template__card--content {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
.template__card--title {
  font-weight: 600;
}
.template__card--subtitle {
  line-height: 2.2rem;
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.6rem;
}
@media only screen and (min-width: 992px) {
  .template__card--subtitle {
    line-height: 2.2rem;
    font-size: 1.6rem;
  }
}

h2.section__heading--title {
  font-weight: 600;
}

span.purchase__price {
  background: #ff7800;
  padding: 1rem;
  display: block;
  border-radius: 0.5rem;
}

span.purchase__price > * {
  --secondary-color: #fff;
  color: #fff;
}

/*
    video card css
*/
.video__card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  transition: var(--transition);
}
.video__card--section {
  background: #fafcfc;
}
.video__card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}
.video__card:hover .video__card--thumbnail img {
  transform: scale(1.04);
}
.video__card--link {
  display: block;
}
@media only screen and (max-width: 575px) {
  .video__card--link img {
    width: 100%;
  }
}
.video__card--content {
  padding-top: 1.2rem;
}
.video__card--title {
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.video__card--desc {
  font-size: 1.4rem;
  line-height: 2.3rem;
}
@media only screen and (min-width: 992px) {
  .video__card--desc {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.video__card--thumbnail {
  overflow: hidden;
}

.video__play--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.5rem;
  height: 4.5rem;
  background: #ff7800;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translatey(-50%) translatex(-50%);
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
}
@media only screen and (min-width: 992px) {
  .video__play--icon {
    width: 5rem;
    height: 5rem;
  }
}

@-webkit-keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(165, 100, 50, 0.7);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(165, 100, 50, 0);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(165, 100, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 rgba(165, 100, 50, 0);
  }
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(165, 100, 50, 0.7);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(165, 100, 50, 0);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(165, 100, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 rgba(165, 100, 50, 0);
  }
}
.video__card--btn {
  margin-top: 3rem;
}
@media only screen and (min-width: 992px) {
  .video__card--btn {
    margin-top: 5rem;
  }
}

.assistance__card--inner {
  flex-wrap: wrap;
  gap: 3rem;
}

.assistance__card--items {
  background: #fafcfc;
  border: 1px solid #008060;
  width: 100%;
  border-radius: 1rem;
}
@media only screen and (min-width: 480px) {
  .assistance__card--items {
    width: 46%;
  }
}
@media only screen and (min-width: 768px) {
  .assistance__card--items {
    width: 44%;
  }
}
.assistance__card--link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .assistance__card--link {
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }
}
@media only screen and (min-width: 992px) {
  .assistance__card--link {
    padding: 3rem 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .assistance__card--link {
    padding: 3.5rem 3rem;
  }
}
@media only screen and (min-width: 1366px) {
  .assistance__card--link {
    gap: 3rem;
    padding: 4rem 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .assistance__card--link img {
    max-width: 4rem;
  }
}
.assistance__card--title {
  font-size: 1.6rem;
  line-height: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .assistance__card--title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) {
  .assistance__card--title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .assistance__card--title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media only screen and (min-width: 1366px) {
  .assistance__card--title {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

/*
    mobile design card css
*/
.mobile__design--card__thumbnail {
  background: #f7fbfa;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #dbd9d9;
}
@media only screen and (max-width: 575px) {
  .mobile__design--card__thumbnail img {
    width: 100%;
  }
}
.mobile__design--card__title {
  font-weight: 700;
  margin-top: 1.5rem;
  text-align: center;
}

/*
    why faster css
*/
.why__faster--card {
  background: #fafcfc;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
}
@media only screen and (min-width: 768px) {
  .why__faster--card {
    padding: 3rem 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .why__faster--card {
    padding: 4rem;
    min-height: 21rem;
  }
}
.why__faster--card__title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.why__faster--card__title svg {
  margin-right: 0.6rem;
}

.why__faster--card {
  transition: 0.3s;
}

.why__faster--card:hover {
  background: var(--secondary-color);
  color: #fff;
  --foreground-sub-color: #fff;
}

.footer__section {
  background: url(../img/other/footer-bg.png);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

.footer__logo {
  margin-bottom: 3rem;
}
.footer__logo--img {
  margin: 0 auto;
}

.footer__content--desc {
  font-size: 1.5rem;
  line-height: 2.8rem;
  margin: 0 auto 2.2rem;
}
@media only screen and (min-width: 768px) {
  .footer__content--desc {
    font-size: 1.6rem;
    line-height: 3rem;
    margin: 0 auto 3rem;
  }
}
@media only screen and (min-width: 992px) {
  .footer__content--desc {
    width: 70%;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__content--desc {
    width: 50%;
    font-size: 1.8rem;
  }
}

.footer__info {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .footer__info {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__info {
    margin-bottom: 5rem;
  }
}
.footer__info--wrapper {
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .footer__info--wrapper {
    gap: 3rem;
  }
}
@media only screen and (max-width: 575px) {
  .footer__info--wrapper {
    flex-direction: column;
  }
}
.footer__info--list svg {
  margin-right: 0.5rem;
}
.footer__info--text {
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .footer__info--text {
    font-size: 1.5rem;
  }
}

h2.footer__content--heading {
  font-weight: bold;
  margin-bottom: 3rem;
}

@media screen and (min-width: 1200px) {
  h2.footer__content--heading {
    font-size: 3.2rem;
  }
} /*# sourceMappingURL=style.css.map */

/* Mobile design card */
.mobile__video--card {
  padding: 1.5rem;
  border: 0.3rem solid #70707033;
  border-radius: 1rem;
  background: #fff;
}
.mobile__video--card-inner {
  position: relative;
  height: 600px;
}
.mobile__video--card-inner > video {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 2rem 0.2rem rgba(0, 0, 0, 0.1);
}
