@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import "./animate.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  -webkit-user-drag: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cabin", sans-serif;
}

header {
  box-shadow: 2px 2px 7.5px rgba(0, 0, 0, 0.1450980392);
  position: sticky;
  top: 43px;
  z-index: 40;
  background-color: #fff;
}

.top-header {
  background-color: #e5e5e7;
  color: #565f65;
  font-size: 14px;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 40;
}
.top-header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  height: 43px;
}
.top-header ul li a {
  display: flex;
  gap: 10px;
  transition: 0.2s;
}
.top-header ul li a:hover {
  opacity: 0.6;
}
.top-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}
.top-content ul {
  margin-left: auto;
}
.top__tab {
  display: flex;
  align-items: bottom;
  gap: 20px;
}
.top__tab-bg {
  width: 168px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-45%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__tab-bg svg {
  width: 100%;
  fill: #fff;
  z-index: -1;
}
.top__tab-logo {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3572a4;
  z-index: 1;
}
.top__tab-logo svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.top__tab-logo._green {
  color: #6fa963;
}
.top__tab-logo._red {
  color: #f63333;
}
.top__tab-text {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  z-index: 1;
}
.top__tab-text span {
  font-weight: 300;
}
.top__tab-text strong {
  color: #3670a1;
}
.top__tab-text hr {
  width: 1px;
  height: 12px;
  background-color: #000;
  margin: unset;
  opacity: 1;
  border: unset;
}
.top__tab-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 15px;
  min-width: 120px;
  cursor: pointer;
  transition: 0.3s ease;
}
.top__tab-button:hover {
  opacity: 0.7;
}

.text-indented {
  text-indent: 20px;
}

main {
  overflow: hidden;
}

.header-content {
  display: flex;
  gap: 40px;
  min-height: 76px;
  align-items: center;
  background-color: #fff;
  color: #3572a4;
  position: relative;
}
.header-content nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 500;
}
.header-content nav ul {
  display: flex;
  gap: 20px;
}
.header-content nav ul li {
  display: flex;
}
.header-content nav ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.2s;
}
.header-content nav ul li a:hover {
  opacity: 0.6;
}
.header-content ._hideDesktop {
  display: none;
}
.header-content .top__tab-button {
  padding: 0;
}
.header-content .top__tab-logo {
  width: 20px;
  height: 20px;
}
.header-content .top__tab-text {
  font-size: 16px;
}

.menu-btn {
  all: unset;
  width: 25px;
  height: 25px;
}
.menu-btn span {
  border-top: 3px solid #898989;
  display: flex;
  position: relative;
  transition: 0.2s ease-out;
  width: 100%;
}
.menu-btn span::before {
  content: "";
  width: 100%;
  border-top: 3px solid #898989;
  position: absolute;
  top: -11px;
  transition: 0.2s linear;
}
.menu-btn span::after {
  content: "";
  width: 100%;
  border-top: 3px solid #898989;
  position: absolute;
  top: 5.5px;
  transition: 0.2s linear;
}

.menu-btn.active span {
  border-color: transparent;
}
.menu-btn.active span::before {
  transform: rotate(45deg);
  transform-origin: center;
  top: 50%;
}
.menu-btn.active span::after {
  transform: rotate(-45deg);
  transform-origin: center;
  top: 50%;
}

.benefits {
  position: relative;
  padding-block: 80px;
  color: #3572a4;
}
.benefits__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.benefits__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefits__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}
.benefits__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.benefits__content {
  flex-grow: 1;
}
.benefits__content-text h2 {
  display: inline;
  margin-bottom: 0 !important;
}
.benefits__content h2 {
  font-size: 55px;
  font-weight: 700;
}
.benefits__content h2:first-child {
  margin-bottom: 100px;
}
.benefits__content small {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 400;
}
.benefits__grid {
  flex-shrink: 0;
  width: 540px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 40px;
}

.benefit {
  padding: 0 12px 40px;
  width: calc(50% - 25px);
  max-width: 250px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  border-radius: 28px;
  border: 4px solid #3572a4;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.benefit__icon {
  margin-top: -37px;
  width: 74px;
  height: 74px;
  background: #3572a4;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefit__title {
  font-size: 22px;
  font-weight: 700;
}
.benefit p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.benefit:hover {
  transform: translateY(-10px);
}

.testimonials {
  padding-block: 100px;
  background: #f9fafc;
}
.testimonials__inner {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.testimonials__content {
  width: calc(60% - 20px);
  font-family: "Poppins", sans-serif;
}
.testimonials__content h5 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #3572a4;
}
.testimonials__content h3 {
  margin-bottom: 20px;
  font-size: 29px;
  line-height: 1.5;
  font-weight: 600;
  color: #7fb528;
}
.testimonials__content h6 {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  font-style: italic;
  color: #898989;
}
.testimonials__content p {
  font-size: 1rem;
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.testimonials__image {
  width: calc(40% - 20px);
}

.tabs {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tabs a {
  padding-inline: 10px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background: #d9e0f1;
  box-shadow: 0 -5px 7px rgba(255, 255, 255, 0.7);
  border: 0;
  transition: transform 0.3s ease-in-out;
}
.tabs a.hidden {
  transform: translateX(120px);
}
.tabs a.hidden span {
  opacity: 0;
}
.tabs a.hidden:hover {
  transform: translateX(0);
}
.tabs a.hidden:hover span {
  opacity: 1;
}
.tabs a span {
  font-size: 16px;
  color: #3572a4;
  transition: opacity 0.3s ease-in-out;
}

.home #tabScroll a:last-child {
  opacity: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  font-size: 28px;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero .container {
  position: relative;
}
.hero__phone {
  position: absolute;
  bottom: -30px;
  right: 0;
  z-index: 3;
  width: 17%;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .content {
  width: 48%;
  position: relative;
  z-index: 3;
}
.hero .content img {
  margin-bottom: 36px;
}
.hero .content h2 {
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1;
}
.hero .content__text p {
  font-size: 18px;
  font-weight: 600;
}
.hero .content__text p:first-child {
  margin-bottom: 40px;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(90deg, #3670a1 3.76%, rgba(18, 36, 51, 0) 115.49%);
}
.hero__content-text {
  font-size: 90px;
  line-height: 1;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: rgba(12, 21, 29, 0.7);
}
.hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.hero__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.59), rgba(255, 255, 255, 0.59));
  box-shadow: inset -10px -10px 20px #ffffff, inset 10px 10px 20px #ffffff;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero--about {
  min-height: 68vh;
  margin-top: 40px;
}
.hero--about-dark .hero__bg::after {
  box-shadow: unset;
  background: rgba(0, 0, 0, 0.4);
}
.hero--about-dark .hero__content-text {
  color: #fff;
}
.hero--about-gradient .hero__bg::after {
  box-shadow: unset;
  background-image: linear-gradient(90deg, #3670a1 3.76%, rgba(18, 36, 51, 0) 115.49%);
}
.hero--about-gradient .hero__content-text {
  color: #fff;
}
.hero--about .container {
  margin: auto auto 0 auto;
  padding: 20px 12px 40px;
}
.hero--about h2 {
  width: 68%;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.what-pop {
  color: #80da24;
  font-weight: 600;
  background-color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 4;
}
.what-pop .title {
  font-size: 22px;
}
.what-pop .title-btn {
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.what-pop .title-btn:hover {
  text-decoration: underline;
}
.what-pop .border-l {
  border-left: 1px solid #0078aa;
}

.foot-article {
  position: relative;
  z-index: 5;
  background: #fff;
  scroll-margin: 120px;
}

.safety-information {
  scroll-margin: 120px;
}

.dosing .title {
  font-size: 55px;
  text-transform: uppercase;
  color: #7fb828;
  line-height: 1.1;
  font-weight: bold;
}
.dosing .text {
  color: #6f747e;
  font-size: 22px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
}
.dosing .image {
  height: 100%;
}
.dosing .mg-title {
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  padding-left: 22px;
  position: relative;
  margin-bottom: 7px;
}
.dosing .mg-title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #000;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.dosing .mg-text {
  font-size: 13px;
  color: #70737a;
  font-weight: 500;
}
.dosing .prr {
  margin-top: 18px;
}
.dosing .see-btn {
  position: absolute;
  right: 0;
  top: 19px;
}

.progress-item {
  margin-bottom: 26px;
}
.progress-item .progress-title {
  color: #000;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 5px;
  margin-bottom: 7px;
}
.progress-item .progress-l {
  height: 21px;
  font-weight: bold;
  color: #000;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.progress-item .progress-l .bg {
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  align-items: center;
  justify-content: flex-end;
  border-radius: 2px;
  padding: 0 5px;
}
.progress-item .progress-l .bg::after {
  content: attr(value);
}

.see-btn {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background-color: #ff7a00;
  height: 50px;
  min-width: 140px;
  width: -moz-max-content;
  width: max-content;
  transition: 0.2s;
}
.see-btn:hover {
  opacity: 0.8;
  box-shadow: 0px 26px 79px -6px rgba(153, 153, 153, 0.3);
}

.chose {
  background: linear-gradient(90deg, #fff 3.76%, rgba(18, 36, 51, 0) 115.49%), url("../images/Ra-PSD-Slides-Edited-2 1.png");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 22px;
  color: #7b7d7e;
  transition: 1s ease;
}
.chose .title {
  text-transform: uppercase;
  font-size: 65px;
  font-weight: bold;
  color: #7fb828;
  margin-bottom: 14px;
  line-height: 1;
}
.chose .text-content {
  max-width: 340px;
}
.chose .frame {
  width: 100%;
  max-width: 523px;
  height: 100%;
  transition: 1s ease;
  position: relative;
}
.chose .frame .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 1s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/DMSA-Male-testimony-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 2.5rem;
  z-index: 2;
  box-shadow: 10px 10px 10.5px rgba(0, 0, 0, 0.1450980392);
}
.chose .frame .overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.chose .frame .overlay .fa-play {
  position: relative;
  z-index: 2;
}
.chose .frame .overlay:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
}
.chose video {
  transition: 1s ease;
  box-shadow: 10px 10px 10.5px rgba(0, 0, 0, 0.1450980392);
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chose video.show {
  opacity: 1;
  z-index: 3;
}
.chose .overlay.hide {
  opacity: 0;
  z-index: 0;
}

article {
  font-size: 1rem;
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
article h3 {
  font-size: 24px;
  font-weight: bold;
  color: #7fb828;
  margin-bottom: 26px;
  font-family: "Cabin", sans-serif;
}
article h5 {
  font-size: 22px;
  font-weight: 500;
  color: #5f5f5f;
}
article h4 {
  font-size: 22px;
  font-weight: 500;
  color: #5f5f5f;
}
article h4 b {
  font-size: 20px;
}
article ul {
  list-style: circle;
  padding-left: 16px;
  margin-bottom: 1rem;
}
article strong {
  color: #4b4b4b;
  font-weight: 500;
}

.what-popup {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  background-color: #fff;
  transition: all 0.4s ease;
  transform: translateY(100%);
}
.what-popup-close {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 39px;
  cursor: pointer;
}
.what-popup.active {
  transform: translateY(0);
}
.what-popup .container {
  overflow-y: auto;
  height: 80vh;
}
.what-popup footer {
  margin-top: 20px;
}

.brr {
  border-right: 2px solid #3570a3;
}

footer {
  font-size: 1rem;
  color: #8a8a8a;
  position: relative;
  z-index: 50;
  background-color: #fff;
  margin-top: auto;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  color: #ffad27;
  font-size: 1rem;
  font-weight: bold;
  gap: 20px;
}
.foot-links a {
  font-weight: bold;
  transition: 0.2s;
}
.foot-links a:hover {
  opacity: 0.6;
}

.practitioner {
  background-image: url(../images/Doctor-Male-and-Female-to-Left-v1-1\ 1.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 1440px;
  margin: 0 auto;
}
.practitioner .empty {
  min-height: 20vh;
}
.practitioner .box {
  max-width: 366px;
  background-color: #edf0f4;
  padding: 50px 36px;
  font-size: 1rem;
  color: #898989;
}
.practitioner ul {
  margin-bottom: 12px;
}
.practitioner li {
  font-size: 22px;
  font-weight: bold;
  color: #3570a3;
}
.practitioner .text {
  line-height: 1.3;
}
.practitioner .title {
  font-size: 30px;
  text-transform: uppercase;
  color: #7fb42d;
  font-weight: 500;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1450980392);
  margin-bottom: 16px;
}

.go-btn {
  background-color: #7fb42d;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  min-height: 24px;
  padding: 10px 20px;
  transition: 0.2s;
  box-shadow: 4px 4px 11.3px rgba(0, 0, 0, 0.1450980392);
  border-radius: 35px;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}
.go-btn:hover {
  background-color: #012863;
}

.order-from {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100% !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.order-from .overlay {
  background-color: rgba(0, 0, 0, 0.3333333333);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
          backdrop-filter: saturate(180%) blur(5px);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.order-from .box-form {
  position: relative;
  z-index: 12;
  width: 100%;
  max-width: 733px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  font-size: 0.9rem;
  color: #787878;
  border-radius: 7px;
}
.order-from .box-form .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  color: #898989;
  transition: 0.2s;
  font-size: 1.5rem;
}
.order-from .box-form .close-btn:hover {
  opacity: 0.8;
  transform: rotate(45deg);
}
.order-from .box-form .title {
  text-align: center;
  font-size: 30px;
  color: #3570a3;
  font-weight: 500;
  margin-bottom: 40px;
}
.order-from .box-form label {
  color: #6b6b6b;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 7px;
  font-weight: bold;
  margin-bottom: 3px;
}
.order-from .box-form label span {
  color: #f63333;
}
.order-from .box-form .field {
  width: 555px;
  max-width: 100%;
  margin-bottom: 40px;
}
.order-from .box-form .field input,
.order-from .box-form .field textarea {
  width: 100%;
  background-color: #ededed;
  border: 0.8px solid #777771;
  border-radius: 2px;
  min-height: 32px;
  padding: 5px 10px;
  transition: 0.2s ease;
  display: flex;
}
.order-from .box-form .field input:focus,
.order-from .box-form .field textarea:focus {
  outline: 0;
  border-color: #17a8e3;
}
.order-from .box-form form {
  width: 100%;
}
.order-from .box-form .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.order-from .box-form textarea {
  overflow: auto;
  min-height: 95px !important;
  max-height: 300px !important;
}
.order-from .box-form button {
  color: #fff;
  background-color: #17a8e3;
  border-radius: 3px;
  height: 32px;
  text-align: center;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-size: 12px;
  transition: 0.2s ease;
  outline: none;
  font-weight: 400;
  min-width: 92px;
  box-shadow: 2px 2px 10px transparent;
}
.order-from .box-form button:hover {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3137254902);
}

.order-from.show {
  display: flex;
}

@media only screen and (max-width: 992px) {
  body.hidebar {
    overflow: hidden;
  }
}
body.hidebar::-webkit-scrollbar {
  width: 17px;
}
body.hidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3333333333);
  -webkit-backdrop-filter: saturate(180%) blur(5px);
          backdrop-filter: saturate(180%) blur(5px);
}
body.hidebar::-webkit-scrollbar-thumb {
  -webkit-backdrop-filter: saturate(180%) blur(5px);
          backdrop-filter: saturate(180%) blur(5px);
}

.faq-item {
  font-size: 1rem;
  position: relative;
  background-color: #fff;
  min-height: 59px;
  overflow: hidden;
  border-bottom: 1px solid #d7e3ed;
  padding: 16px 24px;
}
.faq-item .title {
  font-size: 24px;
  min-height: 3em;
  color: #5f5f5f;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
  background: transparent;
  z-index: 5;
  padding-right: 30px;
}
.faq-item .title span {
  transition: 0.2s;
  text-wrap: nowrap;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.faq-item .title .icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s;
}
.faq-item .title .fa-minus {
  opacity: 0;
}
.faq-item .title:hover span {
  opacity: 0.7;
}
.faq-item .text {
  font-size: 20px;
  color: #2c2c2c;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
}
.faq-item .text p {
  font-size: 1rem;
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}

.faq-item.open {
  background-color: #fbfbfb;
}
.faq-item.open .title .fa-minus {
  opacity: 1;
}
.faq-item.open .title .fa-plus {
  opacity: 0;
}
.faq-item.open .text {
  opacity: 1;
  padding: 0 0 16px;
}

.faq {
  padding: 100px 0;
}
.faq__content {
  width: 300px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.faq__content-title {
  display: flex;
  flex-direction: column;
}
.faq__content-title strong {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  color: #3572a4;
}
.faq__content-title .ico {
  display: inline-flex;
}
.faq__content-title .ico img {
  width: 0.5em;
  transform: translateY(0.05em);
}
.faq__content-title small {
  font-size: 16px;
  line-height: 1;
  color: #7cb328;
}
.faq__content-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq__content-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__content-image img {
  width: 100%;
}
.faq__content p {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(44, 44, 44, 0.5);
  margin-bottom: unset;
}
.faq__content p a {
  color: #2c2c2c;
  text-decoration: underline;
}
.faq__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.faq__container {
  width: calc(100% - 360px);
  border: 1px solid #d7e3ed;
}

.cart .head .title {
  font-weight: bold;
  color: #3572a4;
  font-size: 30px;
}

.cart-btn {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border: 2px solid #e5e5e7;
  color: #d4d4d4;
  min-width: 178px;
  transition: 0.2s;
  padding: 10px 30px;
  border-radius: 2px;
  max-width: -moz-max-content;
  max-width: max-content;
  gap: 7px;
}
.cart-btn .fa-solid {
  font-size: 0;
  transition: 0.2s;
}
.cart-btn:hover {
  color: #17a8e3;
  border-color: #17a8e3;
}
.cart-btn:hover .fa-solid {
  font-size: 20px;
}

.coupon-btn {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border: 2px solid #e5e5e7;
  color: #d4d4d4;
  min-width: 178px;
  transition: 0.2s;
  padding: 10px 30px;
  border-radius: 2px;
  max-width: -moz-max-content;
  max-width: max-content;
  gap: 7px;
}
.coupon-btn .fa-solid {
  font-size: 0;
  transition: 0.2s;
}
.coupon-btn:hover {
  color: #17a8e3;
  border-color: #17a8e3;
}
.coupon-btn:hover .fa-solid {
  font-size: 20px;
}

.empty-cart-box {
  min-height: 58px;
  background-color: #e5e5e7;
  font-size: 20px;
  color: #fff;
  padding: 10px 17px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  max-width: 697px;
}

.cart-items {
  color: #969696;
  font-weight: 400;
}
.cart-items .name {
  color: #2c2c2c;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  display: flex;
}
.cart-items .br {
  border-bottom: 1px solid rgba(150, 150, 150, 0.3137254902);
}
.cart-items .br:last-child {
  border: 0;
}
.cart-items .cartCol {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-items .el {
  min-height: 50px;
  display: flex;
  align-items: center;
}
.cart-items .el:not(:last-child) {
  margin-bottom: 15px;
}
.cart-items .el input {
  border: 0;
  outline: 0;
  width: 51px;
  height: 51px;
  background-color: #f3f3f3;
  text-align: center;
}

.delete-item {
  all: unset;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f63333;
  transition: 0.2s;
  font-size: 1.2rem;
  border-radius: 50%;
}
.delete-item:hover {
  background-color: #f63333;
  color: #fff;
}

.coupon-field {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-align: left;
  height: 58px;
  border: 2px solid #e5e5e7;
  background-color: #f3f3f3;
  color: #969696;
  transition: 0.2s;
  padding: 10px 30px;
  border-radius: 2px;
  width: 178px;
  max-width: -moz-max-content;
  max-width: max-content;
  outline: 0;
}
.coupon-field:focus {
  outline: 0;
  border-color: #17a8e3;
}

.total .total-title {
  font-size: 30px;
  color: #2b2b2b;
  font-weight: 400;
}
.total .amont-el {
  display: flex;
  gap: 50px;
  color: #969696;
  font-weight: bold;
}
.total .amont-el .amont-name {
  width: 100%;
  max-width: 100px;
}
.total .amont-el b {
  color: #363636;
}

.proceed-btn {
  border: 1px solid #26d8ff;
  font-weight: 400;
  border-radius: 2px;
  outline: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 444px;
  max-width: 100%;
  font-size: 19px;
  color: #c3c3c3;
  background-color: transparent;
  transition: 0.2s;
  gap: 7px;
}
.proceed-btn .fa-solid {
  font-size: 0;
  transition: 0.2s;
}
.proceed-btn:hover {
  color: #17a8e3;
  border-color: #17a8e3;
}
.proceed-btn:hover .fa-solid {
  font-size: 20px;
}

.pay-btn {
  border: 1px solid #151515;
  font-weight: 400;
  border-radius: 2px;
  outline: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 444px;
  max-width: 100%;
  font-size: 19px;
  color: #fff;
  background-color: #151515;
  transition: 0.2s;
  gap: 7px;
}
.pay-btn:hover {
  opacity: 0.8;
}

.product .images-content {
  position: relative;
}
.product .images-content .img-1 {
  opacity: 0.7;
}
.product .images-content .img-2 {
  position: absolute;
  left: -50px;
  bottom: -70px;
  width: 383px;
}
.product .images-content .img-3 {
  width: 375px;
  position: relative;
  left: -40px;
  bottom: 10px;
}
.product .circle {
  background-color: #dbe0f1;
  width: 182px;
  height: 182px;
  border-radius: 50%;
  position: absolute;
  top: 100px;
  left: -100px;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 5px;
  line-height: 1.1;
  text-align: center;
}
.product .circle .top-name {
  text-transform: uppercase;
  font-size: 14px;
  color: #3572a4;
  font-weight: 400;
}
.product .circle .name {
  font-size: 22px;
  color: #3572a4;
  font-weight: bold;
}
.product .circle__button {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 57px;
  height: 57px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  border: 0;
  justify-content: center;
  align-items: center;
}
.product .circle-orange {
  background-color: #ff7a00;
  color: #fff;
  top: 50px;
}
.product .circle-orange .name,
.product .circle-orange .top-name {
  color: #fff;
  font-size: 22px;
}
.product .text-content .top-title {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.product .text-content .top-title img {
  display: none;
}
.product .text-content .title {
  font-size: 36px;
  font-weight: bold;
  color: #3572a4;
}
.product .text-content .sub-title {
  color: #6e727a;
  font-style: italic;
  line-height: 1.3;
  font-size: 1.07rem;
}
.product .text-content .metal-title {
  font-weight: bold;
  color: #3572a4;
  font-size: 25px;
}
.product .text-content .toxic {
  font-size: 22px;
  color: #f63333;
  font-weight: bold;
}
.product .text-content .essential {
  font-size: 22px;
  color: #7fb828;
  font-weight: bold;
}
.product .text-content ul {
  color: #565f65;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}
.product .text-content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product .text-content .text-btn {
  font-size: 1.1rem;
  color: #ffad27;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.product .text-content .text-btn:hover {
  opacity: 0.8;
}
.product .text-content .text-btn-2 {
  font-size: 1.1rem;
  color: #1178a3;
  font-weight: 500;
  font-style: italic;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.product .text-content .text-btn-2:hover {
  opacity: 0.8;
}

.pr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 203px;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  min-height: 55px;
  gap: 8px;
  outline: 0;
  border: 0;
  border-radius: 35px;
  box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.062745098);
  transition: 0.2s;
  background-color: #ccc;
  padding: 10px 20px;
}
.pr-btn:hover {
  background-color: #012863;
}

.bg-orange {
  background-color: #ffad00;
}

.bg-online {
  background-color: #7fb42d;
}

.results {
  color: #3572a4;
  background-color: #fff977;
  border-radius: 45px;
  min-width: 166px;
  min-height: 70px;
  line-height: 1.3;
  padding: 10px 20px;
  box-shadow: 7px 17px 39.1px rgba(0, 0, 0, 0.062745098);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.results .label {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
}
.results .days {
  font-size: 25px;
  font-weight: bold;
}

.buy-product .title {
  font-size: 50px;
  color: #3572a4;
  font-weight: bold;
}
.buy-product .image img {
  width: 100%;
}
.buy-product .count {
  background-color: #f4f4f4;
  width: 70px;
  height: 70px;
  font-size: 1.2rem;
  border: 0;
  outline: 0;
  text-align: center;
  padding: 10px;
  transition: 0.2s;
  border: 1px solid #f4f4f4;
}
.buy-product .count:focus {
  outline: 0;
  border-color: #17a8e3;
}
.buy-product-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.buy-product-box h2 {
  margin: 0 auto;
  word-break: break-all;
}
.buy-product p {
  margin-bottom: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #5f5f5f;
}

.add-to-cart-btn {
  font-size: 25px;
  color: #fff;
  background-color: #7fb42d;
  padding: 10px 20px;
  height: 52px;
  font-weight: bold;
  text-align: center;
  border-radius: 13px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-to-cart-btn:hover {
  background-color: #012863;
}

.research {
  padding: 70px 0;
}
.research__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.research__tabs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}
.research__tabs-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.research__tabs-button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3572a4;
  border: 2px solid #3572a4;
  border-radius: 12px;
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s ease;
  padding: 0.45em 1em;
  cursor: pointer;
  position: relative;
}
.research__tabs-button::after {
  content: "";
  width: 70%;
  height: 4px;
  background-color: #7fb42d;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
.research__tabs-button:hover {
  background: rgba(53, 114, 164, 0.05);
}
.research__tabs-button .ico {
  width: 20px;
}
.research__tabs-button .ico._edta {
  color: #6fa963;
}
.research__tabs-button .ico._dmps {
  color: #f63333;
}
.research__tabs-button.active::after {
  opacity: 1;
}
.research__tabs-text {
  font-size: 30px;
  line-height: 1;
  color: #5f5f5f;
  text-align: center;
}
.research__tabs-text ._blue {
  color: #3572a4;
}
.research-item {
  display: flex;
  align-items: baseline;
  gap: 35px;
  transition: 0.2s;
}
.research-item:not(:last-child) {
  margin-bottom: 20px;
}
.research-item .num {
  color: #5f5f5f;
  font-size: 44px;
  line-height: 1;
  font-weight: bold;
  min-width: 82px;
}
.research-item a {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #5f5f5f;
}
.research-item a:hover {
  color: #3572a4;
}
.research-item p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #898989;
}

.steps {
  position: relative;
  scroll-margin: 120px;
  padding-block: 100px;
}
.steps__inner {
  display: flex;
  justify-content: flex-end;
}
.steps__content {
  width: 510px;
}
.steps__content h2 {
  margin-bottom: 80px;
  font-size: 40px;
  font-weight: 700;
  color: #3572a4;
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.steps__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 46%;
  height: 100%;
}
.steps__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.steps__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.step.active .step__icon::after {
  display: none;
}
.step.active .step__content {
  opacity: 1;
}
.step__top {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid rgba(53, 114, 164, 0.48);
  cursor: pointer;
  transition: 0.3s ease;
}
.step__top:hover {
  transform: translateY(-5px);
}
.step__title {
  font-size: 25px;
  font-weight: 600;
  color: #3572a4;
}
.step__icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.step__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: #3572a4;
}
.step__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #3572a4;
}
.step__content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.step__content-inner {
  padding-top: 20px;
}
.step__content p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #898989;
}

.swiper-slide-number {
  position: fixed;
  top: 57%;
  left: 48%;
  z-index: 10;
  transform: translate(-48%, -57%);
}
.swiper-button-prev {
  position: fixed;
  top: 65%;
  left: 8%;
  color: #3572a4;
  font-weight: 900;
}
.swiper-button-prev::after {
  content: "";
  width: 33px;
  height: 58px;
  background: url("../images/arrow-left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next {
  position: fixed;
  top: 65%;
  right: 8%;
  color: #3572a4;
  font-weight: 900;
}
.swiper-button-next::after {
  content: "";
  width: 33px;
  height: 58px;
  background: url("../images/arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-pagination {
  position: fixed;
  bottom: unset !important;
  top: 65% !important;
  left: 48% !important;
  transform: translate(-48%, -65%);
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #3572a4;
}
.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
}
.popup.active .popup__inner {
  transform: scale(1);
}
.popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background: #fff;
  border: 0;
}
.popup__inner {
  position: relative;
  overflow-y: auto;
  padding: 50px 30px 30px;
  width: 572px;
  height: 90%;
  background: #fff;
  border-radius: 10px;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
}
.popup__content h2 {
  margin-bottom: 20px;
  color: #3572a4;
}
.popup__content p,
.popup__content ul {
  color: #565f65;
  list-style-type: disc;
  list-style-position: inside;
}
.popup__content ul {
  margin-bottom: 20px;
}

.mission {
  padding: 40px 0 60px;
}
.mission__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.mission__inner-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mission__inner-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mission__inner-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mission__inner-image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}
.mission__inner-image._light:after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  box-shadow: inset -10px -10px 20px #ffffff, inset 10px 10px 20px #ffffff;
}
.mission__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mission__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.mission__list-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 4px;
}
.mission__list-ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mission h3 {
  font-size: 48px;
  font-weight: 700;
  color: #7fb828;
  margin-bottom: 0 !important;
}
.mission p {
  flex: 1;
  font-size: 28px;
  line-height: 1.5;
  color: #5284b0;
  margin-bottom: 0 !important;
}

.error {
  position: relative;
  min-height: calc(100vh - 119px);
  display: flex;
  flex-direction: column;
}
.error__inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: auto;
  align-items: flex-end;
}
.error__inner-text {
  color: #3570a3;
  font-weight: 900;
  font-size: 300px;
  line-height: 0.8;
  font-family: "Inter", sans-serif;
}
.error__inner h4 {
  color: #7fb828;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}
.error__inner .pr-btn {
  gap: 16px;
}
.error__bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.error__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.error__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.75);
}
.error .container {
  margin: auto;
  padding: 20px 12px 25vh;
  display: flex;
  flex-direction: column;
}

.terms {
  padding: 50px 0 150px;
}
.terms__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0px 4rem;
}
.terms__inner-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.terms__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.terms__content-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.terms__content-box._contact p span {
  color: inherit;
}
.terms__content-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.terms__content-group hr {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #3572a4 0%, #7fb42d 100%);
  display: none;
  opacity: 1;
  border-top: unset;
  margin: unset;
}
.terms__content-group._border {
  padding-bottom: 30px;
}
.terms__content-group._border hr {
  display: block;
}
.terms__content-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 26px;
}
.terms h2 {
  font-size: 80px;
  font-weight: 500;
  color: #3572a4;
  margin-bottom: 0;
}
.terms h3 {
  font-weight: 500;
  color: #7fb42d;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0;
}
.terms h5 {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  color: #7fb42d;
  margin-bottom: 0;
}
.terms p {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  color: #898989;
  margin-bottom: 0;
}
.terms p span {
  color: #7fb42d;
}
.terms ul {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 500;
  color: #898989;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
  list-style-type: decimal;
}

.about {
  padding: 42px 0 66px;
}
.about__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__inner-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.about__inner-row p {
  flex: 1;
  max-width: 700px;
}
.about__inner-row p span {
  color: #7fb828;
}
.about__inner-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 420px;
  flex: 1;
}
.about__inner-image {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__inner-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__inner-image._sm {
  width: 90%;
}
.about__inner-button {
  font-family: "Cabin", sans-serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  padding: 12px 22px;
  background: #3572a4;
  color: #fff;
  border: unset;
  margin-right: auto;
  cursor: pointer;
  transition: 0.3s ease;
}
.about__inner-button:hover {
  opacity: 0.7;
}
.about p {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 500;
  color: #898989;
  margin-bottom: 0;
}

.h2 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 500;
  color: #3572a4;
  margin-bottom: 0;
}

.ico {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ico svg {
  width: 100%;
  height: 100%;
  stroke: transparent;
  fill: currentColor;
}
.ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ico--stroke svg {
  fill: transparent;
  stroke: currentColor;
}

.input {
  display: flex;
}
.input__outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.input__outer label {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
}
.input input,
.input .input__selected {
  width: 100%;
  font-size: 15px;
  line-height: 1;
  padding: 1em;
  color: #000;
  border-radius: 8px;
  background: #fff;
  border: 1px solid transparent;
  transition: 0.3s ease;
  width: 100%;
  outline: unset;
}
.input input::-moz-placeholder, .input .input__selected::-moz-placeholder {
  color: rgba(137, 137, 137, 0.5);
}
.input input::placeholder,
.input .input__selected::placeholder {
  color: rgba(137, 137, 137, 0.5);
}
.input input:hover,
.input .input__selected:hover {
  border-color: #3572a4;
}
.input input:focus, .input input:focus-visible,
.input .input__selected:focus,
.input .input__selected:focus-visible {
  border-color: #3572a4;
}
.input--select {
  position: relative;
  z-index: 1;
}
.input--select .input__selected-placeholder {
  font-weight: 500;
  color: #cecece;
}
.input--select .input__selected-container {
  position: relative;
  width: 100%;
}
.input--select .input__selected-arrow {
  width: 30px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.input--select .input__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
  border-radius: 10px;
  border: 2px solid #7fb828;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}
.input--select .input__dropdown-item {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  padding: 10px;
  transition: 0.3s ease;
  cursor: pointer;
}
.input--select .input__dropdown-item:hover {
  color: #7fb828;
}
.input--select.active .input__selected-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.input--select.active .input__dropdown {
  opacity: 1;
  pointer-events: all;
}
.input--radio {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  line-height: 1;
  color: #898989;
  position: relative;
}
.input--radio label {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  color: #898989;
  cursor: pointer;
}
.input--radio span {
  flex: 1;
}
.input--radio .circle {
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid #3572a4;
  border-radius: 50%;
  flex: unset;
  position: relative;
  transition: 0.3s ease;
}
.input--radio .circle::before {
  content: "";
  width: 66%;
  height: 66%;
  background: #3572a4;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: 0.3s ease;
}
.input--radio input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  cursor: pointer;
}
.input--radio input:checked + label .circle::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.detox {
  padding: 40px 0 65px;
  scroll-margin-top: 100px;
}
.detox__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.detox__inner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.detox__inner-title .ico {
  width: 50px;
}
.detox__inner-title h2 {
  margin-bottom: 0;
}
.detox__inner-row {
  display: flex;
  gap: 30px;
  position: relative;
  padding-top: 50px;
}
.detox__line {
  width: 100%;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.detox__line::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, #d7e3ed, #d7e3ed 6px, transparent 6px, transparent 10px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -2;
}
.detox__line-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  width: 1.4em;
  height: 1.4em;
  border: 1.5px solid #d7e3ed;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.detox__line-circle span {
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: #7fb828;
}
.detox__line-circle:nth-child(1) {
  left: 0;
}
.detox__line-circle:nth-child(2) {
  left: 50%;
  transform: translate(-50%, -50%);
}
.detox__line-circle:nth-child(3) {
  right: 0;
}
.detox__line-chevron {
  position: absolute;
  width: 8px;
  height: 12px;
  top: 44%;
  left: 26%;
  transform: translateY(-50%);
  color: #7fb828;
}
.detox__line-chevron svg {
  fill: currentColor;
  stroke: currentColor;
}
.detox__line-chevron._n2 {
  left: unset;
  right: 26%;
}
.detox__item {
  width: calc(33.3% - 15px);
  padding: 16px 16px 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fbfbfb;
  border: 1px solid #d7e3ed;
  border-radius: 8px;
}
.detox__item-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.detox__item-box h4 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0;
}
.detox__item-number {
  font-size: 80px;
  line-height: 0.9;
  font-weight: 700;
  color: #7fb42d;
}
.detox__item p {
  color: rgba(44, 44, 44, 0.5);
  line-height: 1.5;
  margin-bottom: 0;
}

.taking {
  padding: 30px 0 40px;
  display: flex;
  flex-direction: column;
  scroll-margin: 120px;
}
.taking__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.taking__inner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.taking__inner-title .ico {
  width: 50px;
}
.taking__inner-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.taking__item {
  width: calc(33.33% - 10px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 2px solid #3572a4;
  padding: 30px 30px 40px;
  border-radius: 32px;
  position: relative;
}
.taking__item-num {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1em;
  height: 2.1em;
  background: #3572a4;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}
.taking__item-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.taking__item-box {
  display: flex;
  gap: 14px;
}
.taking__item-button {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  padding: 0.55em 0.8em;
  color: #fff;
  background: #3572a4;
  border: unset;
  outline: unset;
  border-radius: 12px;
  min-width: 6.6em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
  transition: 0.3s ease;
  cursor: pointer;
}
.taking__item-button:hover {
  background: #25557d;
}
.taking__item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  max-width: 190px;
  margin: 0 auto;
}
.taking__item-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.taking__item-image._sm {
  max-width: 95px;
}
.taking__item-title {
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  color: #3572a4;
  text-align: center;
}
.taking__item-options {
  display: flex;
  flex-direction: column;
  gap: 38px;
  position: relative;
}
.taking__item-options::before {
  content: "";
  width: 2px;
  height: 80%;
  position: absolute;
  left: 14px;
  top: 0;
  background-image: repeating-linear-gradient(180deg, #6dbcff, #6dbcff 7px, transparent 7px, transparent 11px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 100%;
}
.taking__item._form {
  gap: 20px;
  background: #f4f4f4;
}
.taking__item._options {
  padding-right: 50px;
}
.taking__item._options .taking__item-num {
  top: 50%;
  right: 0;
  transform: translate(62%, -50%);
  width: 3em;
  height: 3em;
  z-index: 1;
}
.taking__item .input._space {
  margin-bottom: 10px;
}
.taking h3 {
  color: #565f65;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  position: relative;
  padding: 0.5em 0 1em;
}
.taking h3:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #7fb828;
}
.taking h4 {
  margin-bottom: 18px;
  font-weight: 600;
  color: #565f65;
  text-align: center;
}
.taking h5 {
  font-size: 20px;
  line-height: 1.2;
  color: #3572a4;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
}
.taking P {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #898989;
  margin-bottom: 0;
}
.taking .input--radio label {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
  gap: 1em;
}
.taking .input--radio .circle {
  background: #f4f4f4;
}

.test {
  position: relative;
  text-align: center;
  padding: 95px 0;
  scroll-margin-top: 100px;
}
.test__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.test__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.test__bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border: unset;
  outline: unset;
}
.test__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #fff;
  opacity: 0.8;
}
.test__content {
  width: 100%;
  margin-left: auto;
  max-width: 600px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.test__info {
  width: calc(45% - 25px);
  max-width: 504px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  text-align: left;
}
.test__info-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test__item {
  width: calc(50% - 15px);
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
  max-width: 200px;
  border: 1px solid #fff;
  overflow: hidden;
  padding-bottom: 25px;
  transition: transform 300ms ease 0ms, box-shadow 300ms ease 0ms;
  display: flex;
  flex-direction: column;
}
.test__item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 26px 79px -6px rgba(153, 153, 153, 0.3);
}
.test__item-head {
  background-color: #f63333;
  padding: 18.5px 15px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}
.test__item-head .name {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}
.test__item-best {
  color: #84bb30;
  font-weight: bold;
  font-size: 19px;
  margin-top: 5px;
  padding: 0 15px;
}
.test__item-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  margin-top: 2px;
  padding: 0 15px;
}
.test__item-price {
  color: #1178a3;
  font-size: 36px;
  font-weight: bold;
  margin-top: 2px;
}
.test__item-btn {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #7fb828;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 127px;
  min-height: 37px;
  margin: auto auto 0;
  transition: 0.2s;
  border: 0;
  cursor: pointer;
}
.test__item-btn:hover {
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.1450980392);
}
.test__item-red .test__item-head {
  background-color: #f63333;
}
.test__item-red .test__item-text {
  color: #f63333;
}
.test__item-khaki .test__item-head {
  background-color: #cdbf5c;
}
.test__item-khaki .test__item-text {
  color: #cdbf5c;
}
.test__item-brown .test__item-head {
  background-color: #b2896a;
}
.test__item-brown .test__item-text {
  color: #b2896a;
}
.test__item-yellow .test__item-head {
  background-color: #fff866;
}
.test__item-yellow .test__item-text {
  color: #cec848;
}
.test-box {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.test-box p {
  margin-bottom: 0;
}
.test h2 {
  margin-bottom: 0;
}
.test p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0;
  color: #777b83;
}
.test p._spaceTop {
  margin-top: 10px;
}

.support {
  padding: 90px 0 90px;
}
.support__inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0px 4rem;
}
.support__inner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.support__inner-title .ico {
  width: 50px;
}
.support__inner-title h2 {
  margin-bottom: 0;
}
.support__inner-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 5px;
}
.support__inner-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.support__item {
  display: flex;
  flex-direction: row;
  gap: 20px 60px;
  position: relative;
  align-items: flex-start;
}
.support__item-box {
  display: flex;
  align-items: center;
  gap: 65px;
  min-width: 160px;
}
.support__item strong {
  color: #7fb42d;
  font-size: 22px;
  line-height: 1.2;
}
.support__item span {
  color: #3572a4;
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 7px;
}
.support__data ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.support__data ul li {
  position: relative;
  padding-left: 1.5em;
}
.support__data ul li::before {
  content: "•";
  color: #74b72e;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 2rem;
  line-height: 23px;
}
.support__data ul li::marker {
  font-size: 0px;
}
.support__footer {
  font-size: 20px;
  line-height: 1.4;
  color: #898989;
  margin-top: 1em;
}
.support h4 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: #7fb42d;
  margin-bottom: unset;
}
.support ul {
  list-style-position: inside;
  list-style-type: disc;
}
.support p {
  margin-bottom: unset;
}
.support p a {
  color: #3572a4;
}
.support li {
  font-size: 14px;
}
.support p,
.support li {
  font-size: 1rem;
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.support--sm {
  padding: 50px 0;
}

.intake__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.intake__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.intake__form-box {
  display: flex;
  gap: 30px;
  max-width: 612px;
}
.intake__form-submit {
  font-size: 18px;
  line-height: 1;
  padding: 0.9em 2em;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background: #ff7a00;
  color: #fff;
  border: unset;
  outline: unset;
  margin-right: auto;
  transition: 0.3s ease;
  cursor: pointer;
}
.intake__form-submit:hover {
  opacity: 0.7;
}
.intake .input input,
.intake .input .input__selected,
.intake .input textarea {
  border: 2px solid #7fb42d;
  border-radius: 12px;
  font-size: 20px;
  padding: 1em;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.intake .input input::-moz-placeholder, .intake .input .input__selected::-moz-placeholder, .intake .input textarea::-moz-placeholder {
  color: #cecece;
}
.intake .input input::placeholder,
.intake .input .input__selected::placeholder,
.intake .input textarea::placeholder {
  color: #cecece;
}
.intake .input textarea {
  outline: unset;
}
.intake .input textarea:focus-visible {
  border-color: #7fb42d;
}
.intake .input .input__selected {
  padding: 1.25em 1em;
}
.intake .input--date input {
  padding: 1.15em 1em;
  transition: 0.3s ease;
}
.intake .input--date input._hide {
  color: #cecece;
}
.intake .input--date input._hide::-webkit-calendar-picker-indicator {
  opacity: 0.5;
}
.intake .input--textarea textarea {
  min-height: 164px;
  width: 100%;
}
.intake .input--textarea._sm textarea {
  min-height: 112px;
}
.intake .input__outer {
  gap: 14px;
}
.intake .input__outer label {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 700;
  color: #3572a4;
}
.intake .input__outer._sm {
  max-width: 190px;
}
.intake .input__outer._radio {
  gap: 25px;
}
.intake .input__outer._lg {
  max-width: 612px;
  gap: 32px;
}
.intake .input__outer._static {
  max-width: 390px;
}
.intake .input__outer._height {
  max-width: 148px;
}
.intake .input__choice {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.emptyCart {
  padding: 54px 0;
}
.emptyCart__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.emptyCart__inner-text {
  background: #e5e5e7;
  padding: 18px 22px;
  border-radius: 2px;
  max-width: 698px;
}
.emptyCart__inner-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  color: #e5e5e7;
  font-size: 20px;
  line-height: 1.2;
  border: 1px solid #e5e5e7;
  background: transparent;
  padding: 0.8em 2.7em;
  border-radius: 2px;
  margin-right: auto;
  transition: 0.3s ease;
  cursor: pointer;
}
.emptyCart__inner-button:hover {
  opacity: 0.7;
}
.emptyCart p {
  font-size: 20px;
  color: #fff;
  margin-bottom: unset;
}
.emptyCart h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #3572a4;
  margin-bottom: 10px;
}

.minHeight {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.advice {
  padding: 50px 0;
}
.advice__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.advice__inner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.advice__inner-title .ico {
  width: 60px;
}
.advice__inner-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 20px;
}
.advice__inner-row p {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 600;
  color: #777b83;
  margin-bottom: unset;
}
.advice__inner-footer {
  font-size: 30px;
  font-style: italic;
  line-height: 1.4em;
  font-weight: 600;
  color: #3572a4;
  text-align: center;
}

@media only screen and (max-width: 1600px) {
  .swiper-slide-number {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1600px) {
  .what-pop .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1400px) {
  .swiper-button-prev {
    left: 30px;
    width: 23px;
    height: 48px;
  }
  .swiper-button-next {
    right: 30px;
    width: 23px;
    height: 48px;
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
  .support {
    padding: 80px 0;
  }
  .support--sm {
    padding: 50px 0;
  }
  .benefits__content h2 {
    font-size: 40px;
  }
  .benefits__content small {
    font-size: 28px;
  }
  .benefits p {
    margin-bottom: 0;
  }
  .benefit {
    padding: 0 12px 30px;
    gap: 10px;
  }
  .benefit__title {
    font-size: 20px;
  }
  .header-content {
    min-height: 70px;
  }
  .advice__inner-row p {
    font-size: 20px;
  }
  .advice__inner-title .ico {
    width: 45px;
  }
  .advice__inner-footer {
    font-size: 20px;
  }
  .detox__inner-title .ico {
    width: 40px;
  }
  .taking__inner-title .ico {
    width: 40px;
  }
  .test__content {
    gap: 20px;
  }
  .test__item {
    gap: 5px;
  }
  .test__item-price {
    font-size: 24px;
  }
  .test__item-text {
    font-size: 16px;
  }
  .test__item-head {
    padding: 15px;
  }
  .test__item-head .name {
    font-size: 18px;
  }
  .test__item-btn {
    font-size: 16px;
  }
  .dosing .title {
    font-size: 45px;
  }
  .dosing .text {
    font-size: 20px;
  }
  .dosing .prr {
    margin-top: 10px;
  }
  .dosing .image {
    max-width: 300px;
    max-height: 350px;
    align-items: center !important;
    margin: 0 auto;
  }
  .dosing .image img {
    height: 100%;
  }
  .progress-item {
    margin-bottom: 18px;
  }
  .hero--about h2 {
    font-size: 40px;
  }
  .about__inner-logos {
    max-width: 370px;
    margin: 0 auto;
  }
  .about p {
    font-size: 20px;
  }
  .h2 {
    font-size: 40px;
  }
  .product .circle {
    width: 150px;
    height: 150px;
    left: -50px;
  }
  .product .circle .name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1340px) {
  .hero .main-logo {
    width: 260px;
  }
  .hero .content h2 {
    font-size: 32px;
  }
  .hero .content__text p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .menu-btn {
    display: none;
  }
  .container {
    max-width: 1240px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-content {
    justify-content: space-between;
  }
  .header-content nav {
    position: absolute;
    background: #fff;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: -moz-max-content;
    width: max-content;
    right: 0;
    top: 76px;
    padding: 25px;
    gap: 30px;
    transition: 0.2s ease-in-out;
    border: 0.3px solid #898989;
    border-top: 0;
    box-shadow: 2px 2px 15.7px 0px rgba(0, 0, 0, 0.1019607843);
    opacity: 0;
    z-index: -5;
    visibility: hidden;
  }
  .header-content nav.active {
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
  .header-content nav ul {
    flex-direction: column;
    min-width: 140px;
  }
  .header-content nav ul:last-child {
    padding-top: 26px;
    border-top: 0.3px solid #898989;
  }
  .header-content nav ul .icon img {
    width: 20px;
  }
  .header-content ._hideDesktop {
    display: flex;
  }
  .top__tab {
    display: none;
  }
  .top-content {
    justify-content: flex-end;
  }
  .benefits__content h2 {
    font-size: 40px;
  }
  .benefits__content h2:first-child {
    margin-bottom: 50px;
  }
  .benefits__content small {
    font-size: 30px;
  }
  .benefits__grid {
    width: 480px;
    gap: 50px 20px;
  }
  .benefit {
    width: calc(50% - 10px);
  }
  .benefit__title {
    font-size: 20px;
  }
  .benefit p {
    font-size: 12px;
  }
  .steps {
    padding-block: 80px;
  }
  .steps__content {
    width: 440px;
  }
  .steps__content h2 {
    font-size: 34px;
  }
  .step__title {
    font-size: 22px;
  }
  .swiper-slide-number {
    font-size: 60px;
    left: 48.5%;
    transform: translate(-48.5%, -59%);
  }
  .swiper-pagination {
    left: 48.5% !important;
    transform: translate(-48.5%, -65%);
  }
  .swiper-pagination-bullet {
    margin: 0 2px !important;
    width: 6px;
    height: 6px;
  }
  .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }
  .hero__content-text {
    font-size: 75px;
  }
  .mission h3 {
    font-size: 40px;
  }
  .mission p {
    font-size: 26px;
  }
  .error__inner-text {
    font-size: 280px;
  }
  .error h4 {
    font-size: 30px;
  }
  .terms {
    padding-bottom: 120px;
  }
  .terms__inner {
    gap: 40px;
  }
  .terms__content {
    gap: 40px;
  }
  .terms__content-group._border {
    padding-bottom: 25px;
  }
  .terms__content-info {
    gap: 20px;
    padding-left: 26px;
  }
  .terms h2 {
    font-size: 70px;
  }
  .terms h3 {
    font-size: 35px;
  }
  .terms h5 {
    font-size: 23px;
  }
  .terms p {
    font-size: 23px;
  }
  .terms ul {
    font-size: 23px;
    padding-left: 30px;
  }
  .about__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .about__inner-logos {
    max-width: 350px;
  }
  .about__inner-button {
    font-size: 22px;
  }
  .detox {
    padding-bottom: 40px;
  }
  .detox__inner-row {
    gap: 20px;
  }
  .detox__inner-title .ico {
    width: 40px;
  }
  .detox__item {
    width: calc(33.3% - 10px);
  }
  .detox__item-number {
    font-size: 75px;
  }
  .detox h4 {
    font-size: 24px;
  }
  .taking__inner-title .ico {
    width: 40px;
  }
  .taking__item-title {
    font-size: 30px;
  }
  .taking__item._options {
    padding-right: 35px;
  }
  .taking__item._options .taking__item-num {
    width: 3em;
    height: 3em;
  }
  .taking .input--radio label {
    font-size: 18px;
  }
  .test {
    padding: 80px 0;
  }
  .test p {
    font-size: 16px;
  }
  .test__item-head .name {
    font-size: 18px;
  }
  .test__item-text {
    font-size: 1rem;
  }
  .test__item-best {
    font-size: 1rem;
  }
  .test__item-price {
    font-size: 26px;
  }
  .test__item-btn {
    font-size: 14px;
  }
  .support {
    padding: 70px 0 70px;
  }
  .support__inner-box {
    margin-bottom: 10px;
  }
  .support__item-box span {
    font-size: 20px;
  }
  .support__item-box strong {
    font-size: 20px;
  }
  .support__footer {
    font-size: 18px;
  }
  .support h4 {
    font-size: 22px;
  }
  .support--sm {
    padding: 50px 0;
  }
  .benefits__content h2 {
    font-size: 35px;
  }
  .benefits__content h2:first-child {
    margin-bottom: 70px;
  }
  .benefits__content small {
    font-size: 25px;
  }
  .benefits p {
    margin-bottom: 0;
  }
  .advice__inner-title .ico {
    width: 50px;
  }
  .testimonials {
    padding: 90px 0;
  }
}
@media only screen and (max-width: 992px) {
  .hero .container {
    position: static;
  }
  .hero .content {
    width: 75%;
  }
  .hero__phone {
    right: 30px;
    width: 25%;
  }
  .hero__content-text {
    font-size: 65px;
  }
  .hero--about h2 {
    width: 100%;
    font-size: 35px;
  }
  .mission__inner {
    gap: 40px;
  }
  .mission h3 {
    font-size: 35px;
  }
  .mission p {
    font-size: 24px;
  }
  .terms {
    padding-bottom: 90px;
  }
  .terms__inner {
    gap: 35px;
  }
  .terms__content-group {
    gap: 35px;
  }
  .terms__content-group._border {
    padding-bottom: 20px;
  }
  .terms__content-info {
    gap: 15px;
    padding-left: 20px;
  }
  .terms h2 {
    font-size: 60px;
  }
  .terms h3 {
    font-size: 30px;
  }
  .terms h5 {
    font-size: 20px;
  }
  .terms p {
    font-size: 20px;
  }
  .terms ul {
    font-size: 20px;
    padding-left: 25px;
  }
  .benefits {
    padding-block: 50px;
  }
  .benefits__inner {
    flex-direction: column;
    gap: 80px;
  }
  .benefits__content {
    text-align: center;
  }
  .benefits__content h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .benefits__content h2:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .benefits__content h2:first-child img {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
  }
  .benefits__content small {
    font-size: 25px;
  }
  .benefits__grid {
    width: unset;
    gap: 50px;
  }
  .benefit {
    width: calc(50% - 25px);
  }
  .steps__inner {
    justify-content: center;
  }
  .steps__content h2 {
    text-align: center;
    font-size: 28px;
  }
  .steps__image {
    width: 100%;
  }
  .steps__image::after {
    background: rgba(255, 255, 255, 0.9);
  }
  .error__inner-text {
    font-size: 250px;
  }
  .error h4 {
    font-size: 28px;
  }
  .about__inner-row {
    flex-direction: column;
  }
  .about__inner-row p {
    width: 100%;
  }
  .about__inner-logos {
    max-width: 420px;
    width: 80%;
    gap: 20px;
    margin: 0 auto;
  }
  .about__inner-button {
    font-size: 22px;
  }
  .about p {
    font-size: 20px;
  }
  .detox__inner-row {
    flex-direction: column;
    padding: 0 0 0 0;
  }
  .detox__inner-title .ico {
    width: 30px;
  }
  .detox__item {
    width: 100%;
    padding: 16px 16px 20px;
  }
  .detox__item-number {
    font-size: 65px;
  }
  .detox__line {
    position: absolute;
    width: 50px;
    height: 100%;
    display: none;
  }
  .detox__line-circle {
    transform: unset;
  }
  .detox__line-circle:nth-child(1) {
    left: 0;
    top: 0;
  }
  .detox__line-circle:nth-child(2) {
    left: 0%;
    top: 50%;
    transform: translate(0%, -50%);
  }
  .detox__line-circle:nth-child(3) {
    right: unset;
    left: 0;
    top: unset;
    bottom: 0;
  }
  .detox h4 {
    font-size: 20px;
  }
  .detox p {
    font-size: 14px;
  }
  .taking {
    padding: 40px 0 30px;
  }
  .taking__inner-title .ico {
    width: 30px;
  }
  .taking__inner-row {
    flex-wrap: wrap;
    gap: 50px 30px;
  }
  .taking__item {
    width: calc(50% - 15px);
  }
  .taking__item-title {
    font-size: 30px;
  }
  .taking__item._options .taking__item-num {
    transform: translate(71%, -50%);
  }
  .taking h4 {
    font-size: 18px;
  }
  .taking h3 {
    font-size: 24px;
  }
  .test {
    padding: 70px 0;
  }
  .test__inner {
    flex-direction: column;
    gap: 40px;
  }
  .test__info {
    width: 100%;
    max-width: unset;
    text-align: center;
  }
  .test__content {
    width: 100%;
    justify-content: center;
    margin: unset;
  }
  .test__bg {
    width: 100%;
  }
  .test h2 br {
    display: none;
  }
  .h2 {
    font-size: 32px;
  }
  .support {
    padding: 50px 0 50px;
  }
  .support__item-box span {
    font-size: 18px;
  }
  .support__item-box strong {
    font-size: 18px;
  }
  .support__footer {
    font-size: 16px;
  }
  .support h4 {
    font-size: 20px;
  }
  .support p {
    font-size: 16px;
  }
  .support--sm {
    padding: 50px 0;
  }
  .intake__inner {
    gap: 30px;
  }
  .intake__form {
    gap: 30px;
  }
  .intake .input input,
  .intake .input textarea,
  .intake .input .input__selected {
    font-size: 18px;
  }
  .intake .input__outer label {
    font-size: 20px;
  }
  .faq {
    padding: 50px 0;
  }
  .faq__content {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
  .faq__content-image {
    display: none;
  }
  .faq__content-title strong {
    font-size: 35px;
  }
  .faq__container {
    width: 100%;
  }
  .faq__row {
    flex-direction: column;
    gap: 30px;
  }
  .faq .title {
    font-size: 20px;
  }
  .faq .text {
    font-size: 16px;
  }
  .advice__inner-title .ico {
    width: 40px;
  }
  .advice__inner-row p {
    font-size: 20px;
  }
  .advice__inner-footer {
    font-size: 24px;
  }
  .testimonials {
    padding: 70px 0;
  }
  .testimonials__inner {
    align-items: flex-start;
  }
  .dosing .title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-slide-number {
    display: none;
  }
  .hero .main-logo {
    width: 200px;
  }
  .hero__content-text {
    font-size: 50px;
  }
  .mission__inner-info {
    gap: 25px;
  }
  .mission h3 {
    font-size: 32px;
  }
  .mission p {
    font-size: 22px;
  }
  .error__inner-text {
    font-size: 230px;
  }
  .error h4 {
    font-size: 26px;
  }
  .terms {
    padding-bottom: 70px;
  }
  .terms__inner {
    gap: 30px;
  }
  .terms__content-box {
    gap: 20px;
  }
  .terms__content-group {
    gap: 25px;
  }
  .terms__content-info {
    padding-left: 10px;
  }
  .terms h2 {
    font-size: 50px;
  }
  .terms h3 {
    font-size: 26px;
  }
  .terms h5 {
    font-size: 18px;
  }
  .terms p {
    font-size: 18px;
  }
  .terms ul {
    font-size: 18px;
    padding-left: 18px;
  }
  .about__inner-button {
    font-size: 18px;
  }
  .about p {
    font-size: 18px;
  }
  .product .text-content .top-title {
    position: relative;
  }
  .product .text-content .top-title img {
    display: block;
    position: absolute;
    bottom: 120%;
    right: 30px;
  }
  .research {
    padding: 40px 0;
  }
  .research__tabs-button {
    font-size: 20px;
  }
  .research__tabs-text {
    font-size: 28px;
  }
  .research-item {
    gap: 20px;
  }
  .research-item .num {
    font-size: 25px;
    min-width: 40px;
  }
  .research-item a {
    font-size: 25px;
  }
  .research-item p {
    font-size: 16px;
  }
  .coupon-field,
  .proceed-btn,
  .pay-btn,
  .cart-btn {
    width: 100%;
    max-width: 100%;
  }
  .delete-item {
    margin: 0 auto;
  }
  .top-header ul {
    gap: 25px;
    font-size: 12px;
    width: 100%;
    justify-content: space-between;
  }
  .cart-items .cartCol {
    flex-direction: row;
    align-items: center;
  }
  .cart-items .cartColM {
    flex-direction: column;
    align-items: start;
  }
  .product-icon {
    width: 50px;
    height: 50px;
  }
  .total .amont-el .amont-name {
    max-width: 100%;
  }
  .amonts hr {
    max-width: 100% !important;
  }
  .product .images-content {
    text-align: center;
    margin-bottom: 130px;
  }
  .product .images-content .img-1 {
    width: 90%;
  }
  .product .images-content .img-2,
  .product .images-content .img-3 {
    position: absolute;
    bottom: -130px;
    max-width: 240px;
  }
  .product .circle {
    height: 150px;
    width: 150px;
    left: -20px;
    top: 50px;
  }
  .product .circle .top-name {
    font-size: 12px;
  }
  .product .circle .name {
    font-size: 18px;
  }
  .product .text-content .sub-title {
    font-size: 1rem;
  }
  .product .text-content .title {
    font-size: 25px;
  }
  .product .text-content .metal-title {
    font-size: 18px;
  }
  .product .text-content .toxic,
  .product .text-content .essential {
    font-size: 1rem;
  }
  .product .text-content ul {
    font-size: 14px;
  }
  .product .text-content .text-btn-2 {
    font-size: 0.9rem;
  }
  .product .text-content .text-btn {
    font-size: 12px;
  }
  .swiper-pagination {
    display: none;
  }
  .pr-btn {
    font-size: 1rem;
    min-width: 150px;
    padding: 5px 10px;
  }
  .results {
    min-width: 124px;
    min-height: 53px;
    padding: 5px 10px;
  }
  .results .label {
    font-size: 10px;
  }
  .results .days {
    font-size: 18px;
  }
  .order-from .box-form {
    padding: 50px 30px;
  }
  .order-from .box-form .title {
    font-size: 20px;
  }
  .buy-product .title {
    font-size: 30px;
  }
  .buy-product .count {
    height: 63px;
    width: 63px;
  }
  .add-to-cart-btn {
    font-size: 18px;
    height: auto;
  }
  .pay-btn {
    font-size: 14px;
  }
  article {
    font-size: 12px;
    padding: 0 16px;
  }
  article h3 {
    font-size: 1rem;
    text-align: center;
  }
  article h4 {
    font-size: 1rem;
  }
  article h4 b {
    font-size: 1rem;
  }
  article h5 {
    font-size: 14px;
  }
  .dosing .title {
    font-size: 25px;
  }
  .dosing .text {
    font-size: 18px;
  }
  .dosing .mg-title {
    font-size: 14px;
  }
  .dosing .mg-text {
    font-size: 12px;
  }
  .dosing .progress-item .progress-title {
    font-size: 12px;
  }
  .dosing .see-btn {
    font-size: 14px;
    padding: 14px 25px;
    min-width: auto;
    height: auto;
    top: 5px;
  }
  .chose {
    text-align: center;
    font-size: 15px;
  }
  .chose .text-content {
    margin: 0 auto;
  }
  .chose br {
    display: none;
  }
  .chose .title {
    font-size: 25px;
  }
  footer {
    font-size: 12px;
  }
  .foot-links a {
    font-size: 12px;
  }
  .brr {
    border: 0;
  }
  .practitioner .box {
    padding: 40px 30px;
  }
  .practitioner .title {
    font-size: 25px;
  }
  .practitioner li {
    font-size: 15px;
  }
  .practitioner .text {
    font-size: 12px;
  }
  .go-btn {
    font-size: 12px;
  }
  .testimonials {
    position: relative;
    padding-block: 30px;
  }
  .testimonials__inner {
    flex-direction: column;
  }
  .testimonials__content {
    width: 100%;
    text-align: center;
  }
  .testimonials__image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  .testimonials__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .testimonials__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
  }
  .taking {
    padding: 40px 0 20px;
  }
  .taking__inner {
    gap: 20px;
  }
  .taking__inner-row {
    gap: 40px;
  }
  .taking__item {
    width: 90%;
    margin: 0 auto;
  }
  .taking__item-num {
    font-size: 22px;
  }
  .taking__item-button {
    font-size: 20px;
  }
  .taking__item._options {
    padding: 40px 30px 70px;
  }
  .taking__item._options .taking__item-num {
    top: unset;
    right: unset;
    left: 0;
    bottom: 0%;
    transform: translate(0%, 82%);
  }
  .taking p {
    font-size: 14px;
  }
  .taking h5 {
    font-size: 20px;
  }
  .support {
    padding: 50px 0;
  }
  .support__item {
    padding-bottom: 20px;
    gap: 15px;
  }
  .support--sm {
    padding: 50px 0;
  }
  .intake__form {
    gap: 20px;
  }
  .intake__form-box {
    flex-direction: column;
    gap: 20px;
  }
  .intake .input__outer {
    max-width: unset !important;
    gap: 20px;
  }
  .intake .input__outer._lg {
    gap: 20px;
  }
  .intake .input__outer._radio {
    gap: 20px;
  }
  .emptyCart__inner {
    gap: 20px;
  }
  .emptyCart__inner-text {
    background: #e5e5e7;
    padding: 16px 20px;
  }
  .emptyCart__inner-button {
    font-size: 18px;
    line-height: 1.2;
  }
  .emptyCart p {
    font-size: 18px;
  }
  .emptyCart h2 {
    font-size: 25px;
  }
  .advice__inner-title .ico {
    width: 40px;
  }
  .advice__inner-row {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    margin-bottom: 10px;
  }
  .advice__inner-row p {
    font-size: 18px;
  }
  .advice__inner-footer {
    font-size: 20px;
  }
  .test {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 576px) {
  .tabs a {
    width: 52px;
    height: 36px;
  }
  .tabs a:nth-child(1) img, .tabs a:nth-child(2) img {
    width: 20px;
    height: 20px;
  }
  .tabs a:nth-child(3) img {
    width: 30px;
    height: 30px;
  }
  .tabs a span {
    display: none;
  }
  .hero {
    min-height: unset;
  }
  .hero .content {
    width: 65%;
  }
  .hero .content img {
    margin-bottom: 18px;
    width: 120px;
  }
  .hero .content h2 {
    margin-bottom: 18px;
    font-size: 16px;
  }
  .hero .content__text p {
    font-size: 12px;
  }
  .hero .content__text p:first-child {
    margin-bottom: 18px;
  }
  .hero__phone {
    width: 30%;
    right: 15px;
    bottom: -15px;
  }
  .hero__content-text {
    font-size: 50px;
  }
  .hero--about {
    min-height: 60vh;
    margin-top: 20px;
  }
  .mission {
    padding: 20px 0 40px;
  }
  .mission__inner {
    gap: 30px;
  }
  .mission__inner-info {
    gap: 20px;
  }
  .mission__list-ico {
    width: 25px;
    height: 25px;
  }
  .mission h3 {
    font-size: 28px;
  }
  .mission p {
    font-size: 18px;
  }
  .error__inner {
    margin: auto;
    align-items: center;
  }
  .error__inner-text {
    font-size: 42vw;
  }
  .error h4 {
    font-size: 4.5vw;
  }
  .terms__content-group {
    gap: 20px;
  }
  .terms h2 {
    font-size: 40px;
  }
  .terms h3 {
    font-size: 24px;
  }
  .terms h5 {
    font-size: 16px;
  }
  .terms p {
    font-size: 16px;
  }
  .terms ul {
    font-size: 16px;
  }
  .about {
    padding: 20px 0 40px;
  }
  .about__inner-button {
    font-size: 16px;
  }
  .about p {
    font-size: 16px;
  }
  .benefits {
    padding-top: 30px;
  }
  .benefits__content h2 {
    font-size: 25px;
  }
  .benefits__content h2:first-child {
    margin-bottom: 20px;
    gap: 5px;
  }
  .benefits__content h2:first-child img {
    width: 20px;
    height: 20px;
  }
  .benefits__content small {
    font-size: 20px;
  }
  .benefits__grid {
    width: 100%;
    gap: 80px;
    flex-direction: column;
    align-items: center;
  }
  .benefit {
    width: 100%;
  }
  .benefit__icon {
    margin-top: -32px;
    width: 64px;
    height: 64px;
  }
  .testimonials {
    padding-block: 30px;
  }
  .testimonials__content h5 {
    margin-bottom: 14px;
  }
  .testimonials__content h3 {
    margin-bottom: 14px;
    font-size: 25px;
  }
  .steps {
    padding-block: 50px;
  }
  .steps__content {
    width: 100%;
  }
  .steps__content h2 {
    margin-bottom: 40px;
    font-size: 25px;
  }
  .steps__list {
    gap: 14px;
  }
  .step {
    padding: 6px 12px;
  }
  .step__title {
    font-size: 15px;
  }
  .step__icon {
    width: 12px;
    height: 12px;
  }
  .step__content p {
    font-size: 10px;
  }
  .product .images-content {
    margin-bottom: 100px;
  }
  .product .images-content .img-2,
  .product .images-content .img-3 {
    max-width: 180px;
    bottom: -100px;
    left: 0;
  }
  .product .circle {
    top: -65px;
  }
  .product .circle__button {
    bottom: -5px;
    right: 15px;
    width: 32px;
    height: 32px;
  }
  .product .circle__button img {
    width: 25px;
    height: 25px;
  }
  .swiper-button-prev {
    left: 5px;
    width: 14px;
    height: 25px;
  }
  .swiper-button-next {
    right: 5px;
    width: 14px;
    height: 25px;
  }
  .research__tabs {
    gap: 20px;
  }
  .research__tabs-group {
    gap: 20px;
  }
  .research__tabs-button {
    font-size: 14px;
    border-radius: 8px;
  }
  .research__tabs-button::after {
    height: 2px;
    bottom: -12px;
  }
  .research__tabs-button .ico {
    width: 16px;
    height: 16px;
  }
  .research__tabs-text {
    font-size: 16px;
  }
  .research-item .num {
    font-size: 14px;
    min-width: 30px;
  }
  .research-item a {
    font-size: 14px;
  }
  .research-item p {
    font-size: 10px;
  }
  .popup__inner {
    width: 90%;
  }
  .what-popup-close {
    right: 10px;
    width: 24px;
  }
  .detox__inner-title {
    gap: 10px;
  }
  .detox__inner-title .ico {
    width: 25px;
  }
  .detox__item-number {
    font-size: 50px;
  }
  .detox h4 {
    font-size: 18px;
  }
  .taking {
    padding: 40px 0 20px;
  }
  .taking__item-box {
    flex-direction: column;
  }
  .taking h3 {
    font-size: 20px;
  }
  .taking h4 {
    font-size: 18px;
  }
  .h2 {
    font-size: 25px;
  }
  .support {
    padding: 40px 0;
  }
  .support__item-box span {
    font-size: 16px;
  }
  .support__item-box strong {
    font-size: 16px;
  }
  .support h4 {
    font-size: 18px;
  }
  .support--sm {
    padding: 40px 0;
  }
  .faq {
    padding: 40px 0;
  }
  .faq__content {
    width: 100%;
  }
  .faq__content-title strong {
    font-size: 30px;
  }
  .faq-item.open .text {
    padding: 10px 0;
  }
  .faq .title {
    font-size: 18px;
    min-height: 2em;
  }
  .faq .text {
    font-size: 16px;
  }
  .advice__inner-title .ico {
    width: 35px;
  }
  .test {
    padding: 50px 0;
  }
}
@media (max-width: 390px) {
  .test__content {
    flex-direction: column;
  }
  .test__item {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}
.login {
  padding: 40px 0px 60px 0px;
}
.login__inner {
  border: 2px solid #3572A4;
  border-radius: 33px;
}
.login__inner-title h2.h2 {
  font-size: 40px;
  padding-bottom: 3rem;
}
.login__content h2 {
  font-size: 40px;
}
.login__content_p_right {
  color: #a9a9a9;
}
.login__content small {
  font-size: 28px;
}
.login .login_p_left,
.login .login_p_right {
  font-size: 1rem;
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.login .login_p_right {
  color: #3572A4;
}
.login .login_or_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.login .login_or_container .login_or_line {
  height: 100%;
  width: 1px;
  background: #EDEDED;
}
.login .login_or_container .login_or {
  font-size: 15px;
  font-weight: 300;
  color: #949494;
  border: 1px solid #EDEDED;
  border-radius: 50%;
  width: 40px;
  min-height: 38px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  background: #f5f5f5;
  border: none;
  padding: 15px;
  cursor: pointer;
}
.login .btn img {
  width: 20px;
}
.login .btn .login_btn {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}
.login .g_btn {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.1294117647);
}
.login .g_btn .login_btn {
  color: #777B83;
}
.login .apple_btn {
  background-color: #7FB828;
}
.login .apple_btn .login_btn {
  color: #FFFFFF;
}
.login .fb_btn {
  background-color: #1778EE;
}
.login .fb_btn .login_btn {
  color: #FFFFFF;
}
.login .login_form .form-group input {
  background: #EDEDED;
  padding: 15px;
  color: #777B83;
  margin-bottom: 0.5rem;
}
.login .login_form .form-group input[type=email] {
  margin-bottom: 1rem;
}
.login .login_form .form-group a p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3572a4 !important;
}
.login .login_form input[type=checkbox] {
  background-color: #ededed;
  height: 23px;
  width: 25px;
  margin-top: 0px;
  margin-right: 4px;
}
.login .btn-mc {
  margin-left: auto;
  padding: 15px 2rem;
  background: #3572a4 !important;
}
.login .red_p {
  color: #F63333;
}

.purchase {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.purchase .input--radio label {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #000 !important;
  gap: 1em;
}
.purchase .input--radio label span {
  background: white;
  color: #000 !important;
}
.purchase .taking__item-options::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  left: 14px;
  top: 0;
  background-image: repeating-linear-gradient(180deg, #6dbcff, #6dbcff 7px, transparent 7px, transparent 11px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 100%;
}

.purchase-top {
  width: auto !important;
  border: 2px solid #3572a4;
  padding: 30px 30px 40px !important;
  border-radius: 32px !important;
}

.optionsbg {
  background: #f4f4f4;
}

.taking__item-numc {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1em;
  height: 2.1em;
  background: #3572a4;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  position: absolute;
  left: -3.5em;
  top: 0;
  transform: translate(50%, -50%);
}

/* CONTACT PAGE */
.contact-hero {
  position: relative;
  background: url("/assets/images/steps/image.png") center/cover no-repeat;
  min-height: 520px;
}
.contact-hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  /* If you want a slightly stronger overlay, bump the alpha to .9 */
}
.contact-hero .container,
.contact-hero .row,
.contact-hero .card {
  position: relative;
  z-index: 2;
}
.contact-hero .lead {
  font-size: 25px;
  color: #878787 !important;
}
.contact-hero .inputs-heading {
  text-align: center;
}
.contact-hero .inputs-heading .border-success {
  border-color: #7FB42D !important;
  border-radius: 40px;
  padding: q0px;
}
.contact-hero .inputs-heading input, .contact-hero .inputs-heading textarea {
  background: #EDEDED;
  padding: 15px;
  color: #777B83;
  margin-bottom: 0.5rem;
}
.contact-hero .inputs-heading .heading-right {
  color: #3572A4;
  font-size: 23px;
  line-height: 27px;
  font-weight: 700;
}
.contact-hero .inputs-heading .custom-control {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: start;
  align-items: flex-start;
  background: rgba(53, 114, 164, 0.0509803922);
  padding: 13px;
  border-radius: 12px;
}
.contact-hero .inputs-heading .btn {
  background-color: #3572A4 !important;
}
.contact-hero .card-body {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-hero .card-body .contact-ico {
  width: 38px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}
.contact-hero .card-body .contact-ico i {
  font-size: 36px;
  color: #7FB42D;
}
.contact-hero .card-body ul li a {
  color: #3572A4;
  font-size: 25px;
  font-weight: 500;
  text-decoration: none;
}
.contact-hero .contact-list {
  font-size: 1.1rem;
}
.contact-hero .contact-list a, .contact-hero .contact-list span {
  color: #1a1a1a;
}
.contact-hero input[type=checkbox] {
  width: 125px;
  height: 32px;
  border-radius: 38px;
}
.contact-hero .contact-form-card {
  border-width: 2px;
  border-radius: 12px;
}
.contact-hero .contact-form-card .card-body {
  padding: 1.5rem;
}
.contact-hero .contact-form-card p {
  margin-bottom: 1rem;
}
.contact-hero .contact-form-card .form-control {
  border-radius: 8px;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
}
.contact-hero .contact-form-card .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(53, 114, 164, 0.15);
  border-color: #3572a4;
}
.contact-hero .contact-form-card .custom-control-label {
  line-height: 1.4;
}
.contact-hero .contact-form-card .btn {
  border-radius: 10px;
  font-weight: 600;
}

/* Optional: keep it tight on small screens */
@media (max-width: 767.98px) {
  .contact-hero {
    min-height: auto;
  }
  .contact-hero .contact-form-card .card-body {
    padding: 1.25rem;
  }
}
.btn-menu {
  background: #3572A4;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
}/*# sourceMappingURL=style.css.map */