html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, button {
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--black-text);
}
body.act {
  overflow: hidden;
}
body.act .header {
  z-index: 3;
}
body section:nth-child(2) {
  padding-top: 110px;
}
@media (max-width: 991px) {
  body section:nth-child(2) {
    padding-top: 80px;
  }
}

a, button {
  cursor: pointer;
}

.big-container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}

h1 {
  font-size: 70px;
  line-height: 110px;
}
h1 span {
  color: var(--red);
  text-decoration: underline;
}
@media (max-width: 992px) {
  h1 {
    font-size: 56px;
    line-height: 80px;
  }
}
@media (max-width: 767px) {
  h1 {
    text-align: center;
  }
}

h2 {
  font-size: 32px;
  line-height: 1.2;
}
h2 span {
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 992px) {
  h2 {
    font-size: 28px;
  }
}
h3 {
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 992px) {
  h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}

h4 {
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 992px) {
  h4 {
    font-size: 16px;
  }
}

h5, h6 {
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 992px) {
  h5, h6 {
    font-size: 14px;
  }
}

.more-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.more-link span {
  width: auto;
  white-space: nowrap;
}
.more-link .img {
  width: 25px;
  height: 20px;
}

p {
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
  color: var(--text);
  font-family: "Inter", sans-serif;
}
@media (max-width: 992px) {
  p {
    font-size: 14px;
    line-height: 22px;
  }
}

li {
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
}
@media (max-width: 992px) {
  li {
    font-size: 14px;
    line-height: 22px;
  }
}

blockquote {
  background: var(--purple);
  padding: 15px 30px;
  border-radius: 8px;
  margin: 10px 0;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Light") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-ExtraLight") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-thin") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
:root {
  --black: #000000;
  --white: #ffffff;
  --footer: #f0f0f0;
  --red: #b40000;
  --light-red: #f06167;
  --text: #685f78;
  --black-text: #3e3d3d;
  --footer-text: #685f78;
  --dashboard-text: #26292c;
  --gray: #989898;
  --gray2: #e0e0e0;
  --purple: #f7c1c1;
  --light-purple: #fff7f6;
  --orange: #ffbba2;
  --orange2: #ff875a;
}

.modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to left, #eff2f7, #f3eae9);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.modal__wrap {
  background: var(--white);
  max-width: 684px;
  width: 100%;
  max-height: 100vh;
  padding: 40px;
  font-size: 14px;
  line-height: 29px;
  font-weight: 500;
  color: var(--black-text);
}
.modal__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
}
.modal__head a,
.modal__head button {
  font-size: 14px;
  line-height: 29px;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s;
  color: var(--black-text);
  cursor: pointer;
}
.modal__head a:hover,
.modal__head button:hover {
  transition: all 0.3s;
  color: var(--red);
}
.modal__head .logo {
  width: 100%;
  max-width: 200px;
}
.modal__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.modal__content h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
}
.modal__content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__content form textarea,
.modal__content form input {
  outline: none;
  box-shadow: none;
  border: none;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}
.modal__content form textarea:hover, .modal__content form textarea:focus,
.modal__content form input:hover,
.modal__content form input:focus {
  transition: all 0.3s;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.34);
}
.modal__content .form-control-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.modal__content .form-control-wrap .pass-group {
  width: 100%;
}
.modal__content .form-control-wrap .important {
  color: var(--red);
}
.modal__content .form-control-wrap .select2-container--default .select2-selection--single,
.modal__content .form-control-wrap .form-control {
  width: 100%;
  font-size: 15px;
  min-height: 42px;
  padding: 6px 15px;
  border: 1px solid #5a1d16;
  border-radius: 5px;
}
.modal__content .form-control-wrap .select2-container--default .select2-selection--single:hover,
.modal__content .form-control-wrap .form-control:hover {
  transition: all 0.3s;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.34);
}
.modal__content .form-control-wrap .form-check-label {
  cursor: pointer;
}
.modal__content .form-control-wrap a {
  color: var(--red);
}
.modal__content .form-control-wrap a:hover {
  text-decoration: underline;
}
.modal__content .form-control-wrap .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
  padding-right: 10px;
}
.modal__content .form-control-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__content .form-control-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  content: url(../images/icon/down-chevron.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  margin: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.modal__content .form-control-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: translate(-50%, -50%) rotate(180deg);
}
.modal__content .btn {
  border: 2px solid var(--red);
  background-color: var(--red);
  border-radius: 7px;
  transition: all 0.3s;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  padding: 12px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.modal__content .btn:hover {
  color: var(--red);
  background-color: var(--white);
}
.modal__content .form-control-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 580px) {
  .modal__content .form-control-double {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.modal__footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.modal__footer a {
  color: var(--red);
  text-decoration: underline;
}

.modal.act {
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
  transition: all 0.3s;
}

.breadcrumbs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  padding: 15px 0;
}
.breadcrumbs__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  border-top: 1px solid #dfdfe0;
}
.breadcrumbs__list {
  width: 100%;
  padding-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 6px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.breadcrumbs__item {
  position: relative;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.3s;
}
.breadcrumbs__item:last-child {
  color: var(--black-text);
}
.breadcrumbs__item:not(:last-child)::before {
  content: url(../images/icon/down-chevron.svg);
  position: absolute;
  left: calc(100% + 15px);
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  filter: grayscale(1) invert(0.5);
  transition: all 0.3s;
}
.breadcrumbs__item:not(:last-child):hover {
  transition: all 0.3s;
  color: var(--red);
  font-weight: 500;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 10;
  padding: 20px 0;
}
@media (max-width: 991px) {
  .header {
    padding: 8px 0;
  }
}
.header li {
  list-style: none;
}
.header.bg-white {
  transition: all 0.5s;
  padding: 10px 0;
  background: var(--white);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.34);
}
.header__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.header__logo {
  width: 100%;
  max-width: 200px;
  margin-right: 10px;
}
@media (max-width: 991px) {
  .header__logo {
    margin-right: 0px;
    z-index: 19;
    max-width: 160px;
  }
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  grid-gap: 2.083vw;
  transition: all 0.3s;
  width: 100%;
  z-index: 9;
}
@media (max-width: 991px) {
  .header__nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: absolute;
    right: calc(-100% - 15px);
    background-color: var(--white);
    top: 75px;
    padding: 0 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--red);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }
  .header__nav::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 45%;
    z-index: -1;
    transition: all 0.3s;
  }
}
@media (max-width: 991px) and (max-width: 479px) {
  .header__nav::after {
    opacity: 0.1;
    background-size: 90%;
  }
}
@media (max-width: 991px) {
  .header__nav.act {
    right: 0;
  }
}
@media (max-width: 479px) {
  .header__nav {
    padding: 20px 0;
  }
}
.header__burger-icon {
  display: none;
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .header__burger-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
  }
  .header__burger-icon span {
    height: 4px;
    width: 100%;
    background: var(--red);
    position: relative;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .header__burger-icon span::before, .header__burger-icon span::after {
    transition: all 0.3s;
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    left: 50%;
    background: var(--red);
    transform: translate(-50%, -50%);
    border-radius: 2px;
  }
  .header__burger-icon span::before {
    bottom: calc(100% + 2px);
  }
  .header__burger-icon span::after {
    top: calc(100% + 6px);
  }
  .header__burger-icon.act span {
    background: transparent;
  }
  .header__burger-icon.act span::before {
    bottom: calc(50% - 4px);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__burger-icon.act span::after {
    top: calc(50% - 0px);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.header__nav-list {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.083vw;
  transition: all 0.3s;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
}
@media (max-width: 1279px) {
  .header__nav-list {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header__nav-list {
    text-align: start;
    gap: 10px;
    flex-direction: column;
    font-size: 16px;
    margin: 0;
    width: 100%;
  }
  .header__nav-list .list-item-text {
    display: none;
  }
}
@media (max-width: 479px) {
  .header__nav-list {
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
.header__nav-list__item {
  position: relative;
  color: var(--black-text);
  transition: all 0.3s;
  width: -moz-max-content;
  width: max-content;
}
.header__nav-list__item svg {
  fill: var(--black-text);
  transition: all 0.3s;
}
.header__nav-list__item.act {
  color: var(--red);
  transition: all 0.3s;
}
.header__nav-list__item:hover {
  cursor: pointer;
  color: var(--red);
  transition: all 0.3s;
}
.header__nav-list__item:hover svg {
  fill: var(--red);
  transition: all 0.3s;
}
.header__nav-list__item:hover .header__nav-sub-list {
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}
.header__nav-list__item.laptop .laptop-more {
  display: none;
}
.header__nav-list__item.laptop svg {
  margin-left: 6px;
}
@media (max-width: 1439px) {
  .header__nav-list__item.laptop .laptop-more {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header__nav-list__item.laptop .laptop-more:hover {
    cursor: pointer;
    color: var(--red);
    transition: all 0.3s;
  }
  .header__nav-list__item.laptop .laptop-more:hover svg {
    fill: var(--red);
    transition: all 0.3s;
  }
  .header__nav-list__item.laptop:hover {
    cursor: pointer;
    color: var(--red);
    transition: all 0.3s;
  }
  .header__nav-list__item.laptop:hover a:hover {
    color: var(--red);
    transition: all 0.3s;
  }
  .header__nav-list__item.laptop:hover svg {
    margin-left: 6px;
    fill: var(--red);
    transition: all 0.3s;
  }
  .header__nav-list__item.laptop:hover .header__nav-sub-list.adaptive-list {
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .header__nav-list__item.laptop .list-item-text {
    display: none;
  }
}
.header__nav-list__item.laptop .header__nav-sub-list.adaptive-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: 2.083vw;
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
  background: transparent;
  border-radius: 0px;
  position: relative;
  min-width: unset;
  left: unset;
  top: unset;
  box-shadow: none;
}
.header__nav-list__item.laptop .header__nav-sub-list.adaptive-list::after, .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list::before {
  content: none;
}
.header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item {
  position: relative;
  color: var(--black-text);
  transition: all 0.3s;
  width: -moz-max-content;
  width: max-content;
  border-bottom: none;
  padding: 0;
}
.header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item a, .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item span {
  white-space: nowrap;
}
@media (max-width: 1439px) {
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list {
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background: var(--white);
    border-radius: 8px;
    position: absolute;
    min-width: 200px;
    left: -8px;
    top: calc(100% + 18px);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.34);
    grid-gap: 5px;
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list::before {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 100%;
    width: 16px;
    height: 24px;
    border: 7px solid transparent;
    border-top: 12px solid transparent;
    border-bottom: 12px solid var(--white);
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list::after {
    content: "";
    position: absolute;
    bottom: 100%;
    height: 24px;
    width: 100%;
    left: 0px;
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item {
    width: 100%;
    padding: 6px 15px;
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item:hover .header__nav-second-sub-list {
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1439px) and (max-width: 991px) {
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item {
    border-bottom: none;
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item:not(:last-child) {
    border-bottom: none;
  }
}
@media (max-width: 991px) {
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list {
    text-align: center;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border-radius: 0px;
    position: relative;
    min-width: unset;
    left: unset;
    top: unset;
    box-shadow: none;
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item {
    position: relative;
    color: var(--black-text);
    transition: all 0.3s;
    width: -moz-max-content;
    width: max-content;
    border-bottom: none;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 479px) {
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list {
    text-align: center;
    align-items: center;
    width: 100%;
  }
  .header__nav-list__item.laptop .header__nav-sub-list.adaptive-list .header__nav-sub-list__sub-item {
    align-items: center;
  }
}
.header__nav-sub-list {
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  min-width: 200px;
  left: -8px;
  top: calc(100% + 18px);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.34);
}
.header__nav-sub-list::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 100%;
  width: 16px;
  height: 24px;
  border: 7px solid transparent;
  border-top: 12px solid transparent;
  border-bottom: 12px solid var(--white);
}
.header__nav-sub-list::after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 24px;
  width: 100%;
  left: 0px;
}
.header__nav-sub-list a:hover {
  color: var(--red);
}
.header__nav-sub-list__sub-item {
  width: 100%;
  padding: 6px 15px;
}
.header__nav-sub-list__sub-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header__nav-sub-list__sub-item:hover .header__nav-second-sub-list {
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}
@media (max-width: 991px) {
  .header__nav-sub-list__sub-item {
    border-bottom: none;
  }
  .header__nav-sub-list__sub-item:not(:last-child) {
    border-bottom: none;
  }
}
@media (max-width: 479px) {
  .header__nav-sub-list {
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
.header__nav-second-sub-list {
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: var(--white);
  border-radius: 8px;
  position: absolute;
  min-width: 200px;
  left: -8px;
  top: calc(100% + 18px);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.34);
}
.header__nav-second-sub-list::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 100%;
  width: 16px;
  height: 24px;
  border: 7px solid transparent;
  border-top: 12px solid transparent;
  border-bottom: 12px solid var(--white);
}
.header__nav-second-sub-list::after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 24px;
  width: 100%;
  left: 0px;
}
.header__nav-second-sub-list__sub-item {
  width: 100%;
  padding: 6px 15px;
}
.header__nav-second-sub-list__sub-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header__nav-second-sub-list__sub-item:hover .header__nav-second-sub-list {
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}
@media (max-width: 991px) {
  .header__nav-second-sub-list__sub-item {
    border-bottom: none;
  }
  .header__nav-second-sub-list__sub-item:not(:last-child) {
    border-bottom: none;
  }
}
@media (max-width: 1439px) {
  .header__nav-second-sub-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border-radius: 0px;
    position: relative;
    min-width: unset;
    left: unset;
    top: unset;
    box-shadow: none;
  }
  .header__nav-second-sub-list::after, .header__nav-second-sub-list::before {
    content: none;
  }
  .header__nav-second-sub-list .header__nav-second-sub-list__sub-item {
    position: relative;
    color: var(--black-text);
    transition: all 0.3s;
    width: -moz-max-content;
    width: max-content;
    border-bottom: none;
    padding: 0;
  }
  .header__nav-second-sub-list .header__nav-second-sub-list__sub-item a, .header__nav-second-sub-list .header__nav-second-sub-list__sub-item span {
    white-space: pre-wrap;
  }
}
@media (max-width: 991px) {
  .header__nav-second-sub-list {
    gap: 10px;
  }
}
@media (max-width: 479px) {
  .header__nav-second-sub-list {
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
.header__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: 10px;
  gap: 10px;
}
@media (max-width: 991px) {
  .header__buttons {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .header__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 479px) {
  .header__buttons {
    align-items: center;
    width: 100%;
  }
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 6px;
  white-space: nowrap;
  border: 2px solid var(--red);
  border-radius: 24px;
  padding: 12px;
  min-width: 150px;
  color: var(--red);
  fill: var(--red);
  background: var(--white);
  transition: all 0.3s;
}
.header__btn:hover {
  color: var(--white);
  fill: var(--white);
  background: var(--red);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .header__btn {
    min-width: 200px;
  }
}
.header__profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
}
@media (max-width: 991px) {
  .header__profile {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .header__profile .avatar {
    display: none;
  }
}
@media (max-width: 479px) {
  .header__profile {
    padding: 20px;
    padding-bottom: 0;
    border-top: 2px solid var(--gray);
    margin-top: 10px;
  }
}
.header__profile .icon {
  height: auto;
  width: 100%;
  max-width: 20px;
  max-height: 20px;
}
.header__profile a:hover {
  color: var(--red);
  cursor: pointer;
}
.header__profile__location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 150px;
  pointer-events: none;
}
@media (max-width: 991px) {
  .header__profile__location {
    justify-content: flex-start;
    width: 100%;
  }
}
.header__profile__user {
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .header__profile__user {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
}
.header__profile__user img {
  border-radius: 50%;
  max-width: 50px;
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header__profile__user .icon {
  border-radius: 0;
}
.header__profile__user:hover .header__profile__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}
.header__profile__menu {
  padding: 10px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--white);
  border-radius: 8px;
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 200px;
  top: calc(100% + 18px);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.34);
}
.header__profile__menu::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 100%;
  width: 16px;
  height: 24px;
  border: 7px solid transparent;
  border-top: 12px solid transparent;
  border-bottom: 12px solid var(--white);
}
.header__profile__menu::after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 24px;
  width: 100%;
  left: 0px;
  right: 0;
}
@media (max-width: 991px) {
  .header__profile__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border-radius: 0px;
    position: relative;
    min-width: unset;
    left: unset;
    top: unset;
    box-shadow: none;
    pointer-events: unset;
    padding: 0;
    width: 100%;
  }
  .header__profile__menu::after, .header__profile__menu::before {
    content: none;
  }
}
.header__profile__menu__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 6px;
       column-gap: 6px;
  cursor: pointer;
}
.header__profile__menu__item span {
  max-width: calc(100% - 30px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.header__profile__menu__item:hover span {
  color: var(--red);
}
.header__profile__menu .user-profile img {
  border-radius: 50%;
  max-width: 50px;
  width: 100%;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header__profile__menu .user-profile .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.header__profile__menu .user-profile .info span {
  color: var(--gray);
  font-weight: normal;
}
.header__profile__menu .user-profile .info .name {
  color: var(--black-text);
  font-weight: 600;
}
.header__profile__menu a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .agent-list {
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: 100%;
  padding-left: 26px;
  font-size: 14px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.header .agent-list.act {
  padding-top: 8px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.footer {
  padding: 30px 0 35px 0;
  position: relative;
  color: var(--footer-text);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  background: var(--footer);
}
@media (max-width: 991px) {
  .footer {
    padding: 20px 0 20px 0;
  }
}
.footer li {
  list-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer a {
  transition: all 0.3s;
}
.footer a:hover {
  transition: all 0.3s;
  color: var(--red);
}
.footer__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0px;
}
@media (max-width: 991px) {
  .footer__wrap {
    gap: 20px;
  }
}
.footer__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 1279px) {
  .footer__head {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .footer__head {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}
.footer__bottom p {
  text-align: end;
  margin: 0;
}
.footer__bottom .terms {
  text-transform: capitalize;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1ch;
}
@media (max-width: 991px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__bottom p {
    text-align: center;
  }
}
.footer__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 24%;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer__box p {
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .footer__box {
    max-width: 30%;
  }
}
@media (max-width: 991px) {
  .footer__box {
    max-width: 500px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__box h3 {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
  color: #22100d;
}
@media (max-width: 991px) {
  .footer__box h3 {
    margin-bottom: 15px;
  }
}
.footer__box.middle {
  max-width: 40%;
}
@media (max-width: 991px) {
  .footer__box.middle {
    width: auto;
    max-width: unset;
  }
}
.footer__logo {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}
.footer__socials {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .footer__socials {
    gap: 24px;
  }
}
.footer__social {
  transition: all 0.3s;
}
.footer__social:hover {
  transition: all 0.3s;
  filter: invert(1);
}
.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
  width: 100%;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 1279px) {
  .footer__nav-list {
    grid-column-gap: 20px;
  }
}
@media (max-width: 991px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
  }
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  line-height: 22px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer__contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
@media (max-width: 991px) {
  .footer__contact-item {
    text-align: start;
  }
}

.banner {
  position: relative;
  height: 26.667vw;
  min-height: 450px;
  max-height: 500px;
}
@media (max-width: 767px) {
  .banner {
    min-height: 300px;
  }
}
.banner__wrap {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.banner__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
.banner__bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .banner__bg-img img {
    width: 125%;
    height: 125%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 479px) {
  .banner__bg-img img {
    width: 108%;
    height: 108%;
  }
}
.banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: start;
}
@media (max-width: 767px) {
  .banner__content {
    max-width: 560px;
    align-items: center;
    margin: auto;
  }
}
.banner__content h1 {
  font-size: 60px;
  line-height: 80px;
  font-weight: 700;
  text-align: start;
  max-width: 860px;
  margin-bottom: 40px;
}
@media (max-width: 1439px) {
  .banner__content h1 {
    margin-bottom: 40px;
    line-height: 80px;
    font-size: 60px;
  }
}
@media (max-width: 992px) {
  .banner__content h1 {
    max-width: 740px;
    font-size: 56px;
    line-height: 80px;
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .banner__content h1 {
    margin-bottom: 20px;
    line-height: 50px;
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .banner__content h1 {
    line-height: 40px;
    font-size: 30px;
  }
}
.banner__content h1 span {
  color: var(--red);
  text-decoration: underline;
}
.banner__content .more-link {
  background: var(--red);
  padding: 22px 50px;
  border-radius: 50px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: var(--white);
  fill: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.34);
  transition: all 0.3s;
}
.banner__content .more-link:hover {
  background: var(--black-text);
  transition: all 0.3s;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.34);
}
@media (max-width: 1439px) {
  .banner__content .more-link {
    padding: 16px 30px;
    font-size: 20px;
    line-height: 18px;
  }
}
.banner ul, .banner ol {
  padding-left: 18px;
}

.banner.simple {
  height: auto;
  background: var(--purple);
  min-height: unset;
}
@media (max-width: 767px) {
  .banner.simple {
    padding: 20px 0;
  }
}
.banner.simple .banner__wrap {
  padding: 15px 0;
}
@media (max-width: 767px) {
  .banner.simple .banner__wrap {
    padding: 0;
  }
}
.banner.simple .banner__content {
  width: 100%;
  align-items: center;
}
.banner.simple .banner__content h1 {
  text-align: center;
  font-size: 50px;
  line-height: normal;
  font-weight: 600;
  margin: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .banner.simple .banner__content h1 {
    line-height: 50px;
    font-size: 40px;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .banner.simple .banner__content h1 {
    line-height: 40px;
    font-size: 30px;
  }
}
.banner.simple ul, .banner.simple ol {
  padding-left: 18px;
}

.banner.small {
  height: auto;
  min-height: unset;
}
.banner.small .banner__wrap {
  padding: 25px 0 18px;
}
.banner.small .banner__content {
  width: 100%;
  align-items: center;
}
.banner.small .banner__content h1 {
  text-align: center;
  font-size: 50px;
  line-height: normal;
  font-weight: 600;
  margin: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .banner.small .banner__content h1 {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .banner.small .banner__content h1 {
    font-size: 30px;
  }
}

.nav-section {
  background-color: var(--black-text);
  height: 105px;
  position: relative;
  margin-bottom: 95px;
}
@media (max-width: 1279px) {
  .nav-section {
    padding: 40px 0;
    height: auto;
  }
}
.nav-section__wrap {
  transform: translateX(-50%);
  left: 50%;
  top: 15px;
  width: 100%;
  position: absolute;
}
@media (max-width: 1279px) {
  .nav-section__wrap {
    position: relative;
    transform: none;
    left: unset;
    top: unset;
    margin-bottom: -95px;
  }
}
.nav-section__list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1279px) {
  .nav-section__list {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.nav-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 48px 10px;
  background-color: var(--white);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  border-radius: 10px;
  width: 100%;
  transition: all 0.3s;
  pointer-events: none;
}
@media (max-width: 1279px) {
  .nav-section__item {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .nav-section__item {
    width: 45%;
    padding: 20px 10px;
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .nav-section__item {
    width: 100%;
  }
}
.nav-section__item img {
  transition: all 0.3s;
}
.nav-section__item:hover {
  background-color: var(--red);
  color: var(--white);
}
.nav-section__item:hover img {
  transition: all 0.3s;
  filter: grayscale(1) invert(1) brightness(200%);
}

.content-box {
  padding: 70px 0 100px 0;
}
@media (max-width: 991px) {
  .content-box {
    padding: 40px 0;
  }
}
.content-box__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
@media (max-width: 991px) {
  .content-box__wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .content-box__wrap {
    gap: 20px;
  }
}
.content-box__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .content-box__content {
    gap: 20px;
    flex-direction: column;
  }
}
.content-box__img {
  width: 100%;
}
.content-box__img img {
  width: 100%;
}
@media (max-width: 767px) {
  .content-box__img {
    padding: 0 20px;
  }
}
.content-box__text {
  width: 100%;
}
.content-box__text p {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .content-box__text p {
    margin-bottom: 10px;
  }
}
.content-box__text .more-link {
  gap: 6px;
  color: var(--red);
  fill: var(--red);
  transition: all 0.4s;
  letter-spacing: normal;
}
.content-box__text .more-link span {
  text-decoration: underline;
}
.content-box__text .more-link:hover {
  letter-spacing: 1.1px;
  font-weight: 700;
  transition: all 0.4s;
}
.content-box ul, .content-box ol {
  padding-left: 18px;
}

.content-fade-box {
  position: relative;
}
.content-fade-box.reverse .content-fade-box__wrap {
  align-items: flex-end;
  justify-content: flex-end;
  background: linear-gradient(to left, var(--white), transparent);
}
@media (max-width: 1279px) {
  .content-fade-box.reverse .content-fade-box__wrap {
    background: linear-gradient(to left, var(--white) 40%, transparent);
  }
}
@media (max-width: 991px) {
  .content-fade-box.reverse .content-fade-box__wrap {
    background: linear-gradient(to left, var(--white) 60%, transparent);
  }
}
@media (max-width: 767px) {
  .content-fade-box.reverse .content-fade-box__wrap {
    background: rgba(255, 255, 255, 0.65);
  }
}
.content-fade-box.reverse .content-fade-box__img {
  right: unset;
  left: 0;
}
.content-fade-box__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  min-height: 400px;
  background: linear-gradient(to right, var(--white), transparent);
}
@media (max-width: 1279px) {
  .content-fade-box__wrap {
    background: linear-gradient(to right, var(--white) 40%, transparent);
  }
}
@media (max-width: 991px) {
  .content-fade-box__wrap {
    padding: 20px;
    background: linear-gradient(to right, var(--white) 60%, transparent);
  }
}
@media (max-width: 767px) {
  .content-fade-box__wrap {
    background: rgba(255, 255, 255, 0.65);
  }
}
.content-fade-box__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 55%;
  color: var(--black);
}
@media (max-width: 1279px) {
  .content-fade-box__content {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .content-fade-box__content {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .content-fade-box__content {
    max-width: 100%;
  }
}
.content-fade-box__content p {
  color: var(--black);
}
.content-fade-box__img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.content-fade-box__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 1279px) {
  .content-fade-box__img img {
    margin-right: -100px;
  }
}
.content-fade-box__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.content-fade-box__list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: start;
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
}
.content-fade-box__list__item img {
  max-width: 35px;
  max-height: 35px;
  width: 100%;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .content-fade-box__list {
    grid-template-columns: 1fr;
  }
}
.content-fade-box ul, .content-fade-box ol {
  padding-left: 18px;
}

.coach-resource {
  background: linear-gradient(to left, #eff2f7, #f3eae9);
  padding-top: 70px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .coach-resource {
    padding: 40px 0;
  }
}
.coach-resource__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .coach-resource__wrap {
    gap: 30px;
  }
}
.coach-resource__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1279px) {
  .coach-resource__list {
    gap: 20px;
  }
}
.coach-resource__item {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 35px;
  background: var(--white);
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 1279px) {
  .coach-resource__item {
    width: 48%;
  }
}
@media (max-width: 991px) {
  .coach-resource__item {
    padding: 20px;
  }
}
@media (max-width: 579px) {
  .coach-resource__item {
    width: 100%;
  }
}
.coach-resource__item__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  height: 100%;
}
@media (max-width: 991px) {
  .coach-resource__item__text {
    gap: 15px;
  }
}
.coach-resource__item__text h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 992px) {
  .coach-resource__item__text h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
  }
}
.coach-resource__item__text p {
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .coach-resource__item__text p {
    font-size: 14px;
    line-height: 20px;
  }
}
.coach-resource__item__text .more-link {
  margin-top: auto;
  font-size: 16px;
  line-height: 29px;
  font-weight: 500;
  border: 2px solid var(--red);
  border-radius: 30px;
  padding: 6px 25px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--red);
  fill: var(--red);
  background: var(--white);
  transition: all 0.3s;
}
.coach-resource__item__text .more-link:hover {
  color: var(--white);
  fill: var(--white);
  background: var(--red);
  transition: all 0.3s;
}

.reviews {
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url(../images/testimonials-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reviews__wrap {
  max-width: 970px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.reviews__wrap span {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
.reviews__wrap h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}
.reviews__slider {
  width: 100%;
  position: relative;
  height: inherit;
}
.reviews__slider .slick-track {
  display: flex;
}
.reviews__slider__item {
  position: relative;
  margin: 0 20px;
  text-align: center;
  display: flex;
  height: inherit;
}
@media (max-width: 480px) {
  .reviews__slider__item {
    margin: 0 10px;
  }
}
.reviews__slider__item__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: pre-wrap;
  margin-top: 27px;
  padding: 80px 70px;
  background: linear-gradient(0deg, #ffedda 0%, #b40000 100%);
  border: 10px solid var(--white);
  box-shadow: 0px 0px 25px -10px rgba(0, 0, 0, 0.3);
  border-radius: 40px;
  height: calc(100% - 30px);
}
.reviews__slider__item__wrap::after {
  content: url(../images/qute-01.png);
  position: absolute;
  right: 40px;
  top: 55px;
}
@media (max-width: 767px) {
  .reviews__slider__item__wrap {
    margin-top: 17px;
    padding: 50px 35px;
    padding-bottom: 58px;
    border: 5px solid var(--white);
    height: calc(100% - 19px);
  }
  .reviews__slider__item__wrap::after {
    transform: scale(0.6);
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 480px) {
  .reviews__slider__item__wrap {
    padding: 50px 20px;
    padding-bottom: 58px;
  }
}
.reviews__slider__item .quote {
  position: absolute;
  left: 15px;
  top: 0px;
}
@media (max-width: 767px) {
  .reviews__slider__item .quote {
    max-width: 80px;
  }
}
.reviews__slider__item p {
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
}
@media (max-width: 992px) {
  .reviews__slider__item p {
    font-size: 16px;
    line-height: 24px;
  }
}
.reviews__slider__item .author {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews__slider__item .author .name {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #22100d;
}
@media (max-width: 992px) {
  .reviews__slider__item .author .name {
    font-size: 20px;
    line-height: 26px;
  }
}
.reviews__slider__item .author .position {
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  color: #22100d;
}
@media (max-width: 992px) {
  .reviews__slider__item .author .position {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .reviews__slider__item .author {
    padding-top: 10px;
  }
}
.reviews__slider .slick-arrow {
  position: absolute;
  z-index: 5;
  bottom: 120px;
  font-size: 1px;
}
.reviews__slider .slick-arrow::before {
  content: url(../images/icon/arrow-right.svg);
  background: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 4px;
}
.reviews__slider .slick-arrow:hover::before {
  transition: all 0.3s;
  filter: invert(1);
}
@media (max-width: 767px) {
  .reviews__slider .slick-arrow {
    bottom: 32px;
  }
}
.reviews__slider .slick-next {
  right: 125px;
}
@media (max-width: 767px) {
  .reviews__slider .slick-next {
    right: 50px;
  }
  .reviews__slider .slick-next::before {
    border-radius: 4px 0px 40px 0px;
  }
}
@media (max-width: 480px) {
  .reviews__slider .slick-next {
    right: 40px;
  }
}
.reviews__slider .slick-prev {
  left: 125px;
}
@media (max-width: 767px) {
  .reviews__slider .slick-prev {
    left: 50px;
  }
  .reviews__slider .slick-prev::before {
    border-radius: 0px 40px 0px 4px;
  }
}
@media (max-width: 480px) {
  .reviews__slider .slick-prev {
    left: 40px;
  }
}
.reviews__slider .slick-prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.our-coach {
  padding: 70px 0 90px 0;
}
@media (max-width: 991px) {
  .our-coach {
    padding: 40px 0;
  }
}
.our-coach__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.our-coach__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  width: 100%;
}
@media (max-width: 991px) {
  .our-coach__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .our-coach__list {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 480px) {
  .our-coach__list {
    grid-template-columns: 1fr;
  }
}
.our-coach__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.our-coach__item img {
  width: 100%;
}
.our-coach__item__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.our-coach__item__text h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.our-coach__item__text p {
  font-size: 16px;
  font-weight: 500;
}
.our-coach__item__text .more-link {
  margin-top: 20px;
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: 30px;
  padding: 11.5px 25px;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--orange);
  transition: all 0.3s;
}
.our-coach__item__text .more-link:hover {
  border: 2px solid var(--red);
  background: var(--red);
  transition: all 0.3s;
}

.simple-box {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .simple-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.simple-box a {
  color: var(--red);
}
.simple-box a:hover {
  text-decoration: underline;
}
.simple-box img {
  max-width: 100%;
}
.simple-box table {
  display: table;
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: auto;
  cursor: default;
  outline-width: 0;
  overflow-x: auto;
  transition: all 0.3s;
}
.simple-box table td, .simple-box table th {
  font-size: 15px;
  line-height: 24px;
  padding: 6px 10px;
  border: 1px solid var(--gray2);
  text-align: start;
  min-width: 140px;
  width: auto;
  transition: all 0.3s;
  color: var(--black-text);
}
@media (max-width: 992px) {
  .simple-box table td, .simple-box table th {
    font-size: 14px;
    line-height: 22px;
  }
}
.simple-box table th {
  background: var(--red);
  color: var(--white);
}
.simple-box table tr {
  background-color: transparent;
  transition: all 0.3s;
}
.simple-box table tr:hover {
  background: var(--purple);
}
.simple-box ul, .simple-box ol {
  padding-left: 18px;
}

.dashboard__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 306px auto;
  gap: 35px;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  .dashboard__wrap {
    grid-template-columns: 270px auto;
  }
}
@media (max-width: 991px) {
  .dashboard__wrap {
    grid-template-columns: 1fr;
  }
}
.dashboard__aside {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  gap: 25px;
}
.dashboard__aside__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--gray2);
  border-radius: 10px;
  padding-bottom: 30px;
  width: 100%;
}
.dashboard__aside__profile-bg {
  width: 100%;
}
.dashboard__aside__profile-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 146px;
  max-height: 146px;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 5px solid #f3f3f3;
  margin-top: -73px;
  overflow: hidden;
}
.dashboard__aside__profile-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.dashboard__aside__profile-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dashboard__aside__profile-name h4 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: var(--dashboard-text);
}
.dashboard__aside__profile-name p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--footer-text);
  /*
  styles for "6 days ago"
  */
}
.dashboard__aside__profile-name p span {
  color: var(--gray);
}
.dashboard__aside__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 15px;
  border: 1px solid var(--gray2);
  border-radius: 10px;
  color: var(--dashboard-text);
  gap: 20px;
}
.dashboard__aside__nav h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
}
.dashboard__aside__nav ul {
  width: 100%;
}
.dashboard__aside__nav-item {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: -1px;
  transition: all 0.3s;
}
.dashboard__aside__nav-item:not(:last-child) .dashboard__aside__nav-link {
  border-bottom: 1px solid var(--gray2);
}
.dashboard__aside__nav-item.act .dashboard__aside__nav-link {
  border-top: 1px solid var(--gray2);
  background: var(--light-purple);
}
.dashboard__aside__nav-item.act .dashboard__aside__nav-link::before {
  height: calc(100% - 20px);
  background: var(--orange2);
}
.dashboard__aside__nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 17px;
  line-height: normal;
  font-weight: 400;
  width: 100%;
  padding: 20px;
  background: transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.dashboard__aside__nav-link::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 2px;
  background: transparent;
  transition: all 0.3s;
}
.dashboard__aside__nav-link:hover {
  border-top: 1px solid var(--gray2);
  background: var(--light-purple);
  border-bottom: 1px solid var(--gray2);
}
.dashboard__aside__nav-link:hover::before {
  height: calc(100% - 20px);
  background: var(--orange2);
}
.dashboard__aside__nav-link img {
  max-width: 20px;
  width: 100%;
}
.dashboard__aside__nav-link span {
  width: 100%;
}
@media (max-width: 991px) {
  .dashboard__aside {
    display: none;
  }
}
.dashboard__main {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  gap: 25px;
  padding: 30px 0 80px;
}
.dashboard__main__title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.dashboard__main__title .title-icon {
  max-width: 26px;
  width: 100%;
}
.dashboard__main__title h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: var(--dashboard-text);
}
.dashboard__main__title__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.dashboard__main__title__wrap .description {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: var(--footer-text);
}
.dashboard__main__title .title-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  background: var(--white);
  color: var(--orange2);
  border-radius: 50px;
  transition: all 0.3s;
  padding: 8px 15px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
}
.dashboard__main__title .title-btn img {
  transition: all 0.3s;
}
.dashboard__main__title .title-btn:hover {
  background: var(--orange2);
  color: var(--white);
}
.dashboard__main__title .title-btn:hover img {
  filter: grayscale(1) brightness(200%);
}
.dashboard__main__stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.dashboard__main__stats__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 1279px) {
  .dashboard__main__stats__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 580px) {
  .dashboard__main__stats__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .dashboard__main__stats__list {
    grid-template-columns: 1fr;
  }
}
.dashboard__main__stats__list__item {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  background-color: var(--light-purple);
  background: linear-gradient(to top, var(--light-purple) 55%, var(--white));
  border-bottom: 4px solid var(--red);
  border-radius: 10px 10px 0 0;
  min-height: 120px;
  text-align: start;
  padding: 10px 10px 10px 60px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
  flex-wrap: wrap;
  cursor: default;
}
.dashboard__main__stats__list__item::after, .dashboard__main__stats__list__item::before {
  content: "";
  position: absolute;
  bottom: -35px;
  height: 40px;
  width: 40px;
  transform: rotate(45deg);
  background: var(--red);
  transition: all 0.5s;
}
.dashboard__main__stats__list__item::after {
  left: -20px;
}
.dashboard__main__stats__list__item::before {
  right: -20px;
}
.dashboard__main__stats__list__item__grey {
    border-bottom: 4px solid var(--gray);
}
.dashboard__main__stats__list__item__grey::after, .dashboard__main__stats__list__item__grey::before {
    background: var(--gray);
 }
.dashboard__main__stats__list__item:hover::after, .dashboard__main__stats__list__item:hover::before {
  bottom: -20px;
}
.dashboard__main__stats__list__item img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 50px;
}
.dashboard__main__stats__list__item .name {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  opacity: 0.9;
  color: var(--gray);
}
.dashboard__main__stats__list__item .counter {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--red);
}
.dashboard__main__stats__list__item.doble-item {
  grid-column: span 2;
}
@media (max-width: 1279px) {
  .dashboard__main__stats__list__item.doble-item {
    grid-column: span 3;
  }
}
@media (max-width: 580px) {
  .dashboard__main__stats__list__item.doble-item {
    grid-column: span 1;
  }
}
.dashboard__main__stats__list__item.no-border {
  padding: 10px 30px;
  align-items: center;
  text-align: center;
  box-shadow: none;
  gap: 15px;
  border: none;
  background: transparent;
}
.dashboard__main__stats__list__item.no-border::after, .dashboard__main__stats__list__item.no-border::before {
  display: none;
}
.dashboard__main__stats__list__item.no-border .name {
  color: var(--dashboard-text);
}
.dashboard__main__stats__list__item.no-border img {
  position: relative;
}
.dashboard__main__stats__link {
  margin: auto;
  margin-top: 30px;
}
.dashboard__main__coach {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.dashboard__main__coach__item {
  display: grid;
  grid-template-columns: 290px auto;
  gap: 25px;
  padding: 22px;
  background-color: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 10px;
}
@media (max-width: 1279px) {
  .dashboard__main__coach__item {
    grid-template-columns: 200px auto;
  }
}
@media (max-width: 767px) {
  .dashboard__main__coach__item {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}
.dashboard__main__coach__item p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
.dashboard__main__coach__item p a {
  color: var(--orange2);
  text-decoration: underline;
  transition: all 0.3s;
}
@media (max-width: 360px) {
  .dashboard__main__coach__item p a {
    word-break: break-all;
  }
}
.dashboard__main__coach__item p a:hover {
  color: var(--red);
}
.dashboard__main__coach__item__main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.dashboard__main__coach__item__main img {
  max-width: 100%;
  height: auto;
}
.dashboard__main__coach__item__main .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dashboard__main__coach__item__main .text .name {
  margin-top: 8px;
  font-size: 24px;
  line-height: 22px;
  font-weight: 600;
  color: var(--dashboard-text);
}
.dashboard__main__coach__item__main .text .description {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: var(--gray);
}
.dashboard__main__coach__item__additional {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.dashboard__main__coach__item__additional p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--black-text);
}
.dashboard__main__coach__item__additional ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dashboard__main__coach__item__additional ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.dashboard__main__coach__item__additional ul li .list-icon {
  max-width: 28px;
  width: 100%;
}
.dashboard__main__coach__item__additional ul li .text {
  display: flex;
  flex-direction: column;
}
.dashboard__main__coach__item__additional ul li .text span {
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: var(--orange2);
}
.dashboard__main__notifications {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.dashboard__main__notifications__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background-color: var(--white);
  border: 1px solid var(--gray2);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .dashboard__main__notifications__list {
    padding: 10px;
  }
}
.dashboard__main__notifications__list__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.dashboard__main__notifications__list__item:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray2);
}
.dashboard__main__notifications__list__item .item-icon {
  margin-top: 3px;
  width: 100%;
  max-width: 15px;
}
.dashboard__main__notifications__list__item .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.dashboard__main__notifications__list__item .text p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--dashboard-text);
}
.dashboard__main__notifications__list__item .text span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}
.dashboard__main__notifications__list__item .buttons .dis-btn {
  padding: 8px 15px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  background: var(--orange2);
  max-width: 100px;
}
.dashboard__main__notifications__list__item .buttons .dis-btn img {
  filter: grayscale(1) brightness(200%);
}
.dashboard__main__notifications__list__item .buttons .dis-btn:hover {
  background: var(--red);
}
.dashboard .btn {
  cursor: pointer;
  background: var(--light-red);
  color: var(--white);
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  max-width: 350px;
  width: 100%;
}
@media (max-width: 1439px) {
  .dashboard .btn {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .dashboard .btn {
    padding: 10px 15px;
  }
}
.dashboard .btn img, .dashboard .btn svg {
  transition: all 0.3s;
  max-width: 28px;
  width: 100%;
}
.dashboard .btn:hover {
  background: var(--red);
}
.dashboard .btn-sm {
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  padding: 15px;
}
@media (max-width: 1279px) {
  .dashboard .btn-sm {
    font-size: 12px;
    padding: 10px;
  }
  .dashboard .btn-sm img, .dashboard .btn-sm svg {
    display: none;
  }
}
@media (max-width: 767px) {
  .dashboard .btn-sm img, .dashboard .btn-sm svg {
    display: block;
  }
}
@media (max-width: 580px) {
  .dashboard .btn-sm {
    width: 100%;
  }
}
.dashboard .white-link {
  background: var(--white);
  color: var(--light-red);
}
@media (max-width: 580px) {
  .dashboard .white-link {
    width: 100%;
  }
}
.dashboard .white-link img, .dashboard .white-link svg {
  max-width: 18px;
  width: 100%;
}
.dashboard .white-link:hover {
  background: var(--light-red);
  color: var(--white);
}
.dashboard .white-link:hover img {
  filter: grayscale(1) brightness(200%);
}

.js-tab-content:not(:first-child) {
  display: none;
}
/* Ensure active tab content always shows, even if not the first child */
.js-tab-content {
  display: none;
}
.js-tab-content.act {
  display: block;
}

.js-tabs.email-template .js-tab-content {
  display: none;
}

.tabs__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tabs__buttons-list {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 20px;
}
.tabs__content__list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.tabs .category__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1279px) {
  .tabs .category__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .tabs .category__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .tabs .category__list {
    grid-template-columns: 1fr;
  }
}
.tabs .category__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 347px;
  position: relative;
  transition: all 0.3s;
}
.tabs .category__list__item .file-icon {
  max-height: 70px;
  max-width: 70px;
  min-height: 70px;
  height: auto;
}
.tabs .category__list__item h4 {
  text-align: center;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tabs .category__list__item p {
  text-indent: unset;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s;
}
.tabs .category__list__item__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  background: var(--gray2);
  position: relative;
  background-color: #000000;
}
.tabs .category__list__item__video-btn {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3137254902);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}
.tabs .category__list__item__video-btn img {
  transition: all 0.4s;
  width: 40px;
}
.tabs .category__list__item__video-btn:hover img {
  transform: scale(1.3);
}
.tabs .category__list__item__video video {
  max-width: 100%;
  width: 100%;
  max-height: 153px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.tabs .category__list__item__video video.act ~ .category__list__item__video-btn {
  display: none;
}
.tabs .category__list__item__video.act .category__list__item__video-btn {
  display: none;
}
.tabs .category__list__item__wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray2);
  min-height: 100%;
  transition: all 0.3s;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.14);
}
.tabs .category__list__item__wrap.act {
  position: fixed;
  background: rgba(0, 0, 0, 0.54);
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  z-index: 40;
  padding: 0;
}
.tabs .category__list__item__wrap.act .category__list__item__video-btn {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
  background: transparent;
}
.tabs .category__list__item__wrap.act .category__list__item__video-btn img {
  display: none;
}
.tabs .category__list__item__wrap.act .category__list__item__video-btn::before {
  content: "";
  filter: brightness(400%) grayscale(1);
  border-radius: 50%;
  background-color: var(--black);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.34);
  position: absolute;
  top: 60px;
  right: 80px;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/dismiss-white.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  cursor: pointer;
  pointer-events: none;
}
@media (max-width: 991px) {
  .tabs .category__list__item__wrap.act .category__list__item__video-btn::before {
    top: 30px;
    right: 30px;
  }
}
.tabs .category__list__item__wrap.act .category__list__item__video {
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 22;
}
.tabs .category__list__item__wrap.act .category__list__item__video video {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  max-width: 70%;
  max-height: 90%;
  height: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .tabs .category__list__item__wrap.act .category__list__item__video video {
    max-width: 90%;
    max-height: 90%;
  }
}
@media (max-width: 767px) {
  .tabs .category__list__item__wrap.act .category__list__item__video video {
    max-width: 100%;
    max-height: 90%;
  }
}
.tabs .category__list__item__wrap.act .category__list__item__text {
  display: none;
}
.tabs .category__list__item__wrap.act ~ .category__list__item__wrap {
  z-index: 1;
}
.tabs .category__list__item__text {
  margin-bottom: auto;
}
.tabs .category__list__item:hover .category__list__item__wrap, .tabs .category__list__item:focus .category__list__item__wrap {
  z-index: 3;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.24);
}
.tabs .category__list__item:hover h4,
.tabs .category__list__item:hover p, .tabs .category__list__item:focus h4,
.tabs .category__list__item:focus p {
  transition: all 0.3s;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.tabs .category__list.video .category__list__item {
  height: 340px;
  gap: 0px;
}
.tabs .category__list.video .category__list__item .category__list__item__wrap {
  gap: 10px;
}
.tabs .category__list.video .category__list__item h4 {
  font-size: 18px;
}
.tabs .template__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.tabs .template__item__description {
  border: 2px solid var(--gray2);
  padding: 20px;
  border-radius: 10px;
}
.tabs .template__item__description :first-child {
  color: var(--red);
}
.tabs .template__item__body {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--gray2);
  background: var(--gray2);
}
.tabs .template__item__body :first-child {
  /*color: var(--red);*/
}
.tabs .template__item__body p {
  text-indent: unset;
}
.tabs .template__item__body textarea,
.tabs .template__item__body input {
  outline: none;
  box-shadow: none;
  border: none;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", sans-serif;
  width: 100%;
  min-height: 42px;
  padding: 6px 15px;
  border: 1px solid #5a1d16;
  border-radius: 5px;
}
.tabs .template__item__body textarea:hover, .tabs .template__item__body textarea:focus,
.tabs .template__item__body input:hover,
.tabs .template__item__body input:focus {
  transition: all 0.3s;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.34);
}
.tabs .template__item ul, .tabs .template__item ol {
  padding-left: 18px;
}
.tabs a.btn,
.tabs .btn {
  cursor: pointer;
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 250px;
  text-decoration: none;
}
@media (max-width: 1439px) {
  .tabs a.btn,
  .tabs .btn {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .tabs a.btn,
  .tabs .btn {
    min-width: 160px;
    font-size: 14px;
    padding: 10px 15px;
  }
}
.tabs a.btn img, .tabs a.btn svg,
.tabs .btn img,
.tabs .btn svg {
  transition: all 0.3s;
  max-width: 28px;
  width: 100%;
  margin: 0;
}
@media (max-width: 580px) {
  .tabs a.btn img, .tabs a.btn svg,
  .tabs .btn img,
  .tabs .btn svg {
    max-width: 20px;
  }
}
.tabs a.btn.act, .tabs a.btn:hover,
.tabs .btn.act,
.tabs .btn:hover {
  background: var(--red);
  color: var(--white);
}
.tabs a.btn.act img, .tabs a.btn.act svg, .tabs a.btn:hover img, .tabs a.btn:hover svg,
.tabs .btn.act img,
.tabs .btn.act svg,
.tabs .btn:hover img,
.tabs .btn:hover svg {
  filter: invert(1) brightness(200%) grayscale(1);
}
@media(max-width: 1024px) {
    .tabs .tabs__control {
        width: 100%;
    }
}
.tabs .tabs__control {
    text-align: center;
}
.tabs .tabs__control .select2 {
  width: 100%;
}
.tabs .select2-container--default .select2-selection--single {
  width: 100%;
  font-size: 18px;
  min-height: 42px;
  padding: 6px 15px;
  border: 2px solid var(--red);
  border-radius: 20px;
}
.tabs .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
  padding-right: 10px;
}
.tabs .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  content: url(../images/icon/down-chevron.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  margin: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.tabs .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: translate(-50%, -50%) rotate(180deg);
}

.contact-form {
  padding: 40px;
}
@media (max-width: 991px) {
  .contact-form {
    padding: 20px 0 30px;
  }
}
.contact-form__wrap {
  width: 100%;
}
.contact-form h2 {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 992px) {
  .contact-form h2 {
    margin-top: 8px;
    margin-top: 14px;
  }
}
.contact-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form form textarea,
.contact-form form input {
  outline: none;
  box-shadow: none;
  border: none;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", sans-serif;
}
.contact-form form textarea:hover, .contact-form form textarea:focus,
.contact-form form input:hover,
.contact-form form input:focus {
  transition: all 0.3s;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.34);
}
.contact-form .form-control-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.contact-form .form-control-wrap .pass-group {
  width: 100%;
}
.contact-form .form-control-wrap .important {
  color: var(--red);
}
.contact-form .form-control-wrap .select2-container--default .select2-selection--single,
.contact-form .form-control-wrap .form-control {
  width: 100%;
  font-size: 15px;
  min-height: 42px;
  padding: 6px 15px;
  border: 1px solid #5a1d16;
  border-radius: 5px;
}
.contact-form .form-control-wrap .select2-container--default .select2-selection--single:hover,
.contact-form .form-control-wrap .form-control:hover {
  transition: all 0.3s;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.34);
}
.contact-form .form-control-wrap .select2-container--default .select2-selection--single.textarea,
.contact-form .form-control-wrap .form-control.textarea {
  min-height: 100px;
  resize: none;
}
.contact-form .form-control-wrap .form-check-label {
  cursor: pointer;
}
.contact-form .form-control-wrap a {
  color: var(--red);
}
.contact-form .form-control-wrap a:hover {
  text-decoration: underline;
}
.contact-form .form-control-wrap .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
  padding-right: 10px;
}
.contact-form .form-control-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form .form-control-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  content: url(../images/icon/down-chevron.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  margin: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.contact-form .form-control-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: translate(-50%, -50%) rotate(180deg);
}
.contact-form .btn {
  border: 2px solid var(--red);
  background-color: var(--red);
  border-radius: 7px;
  transition: all 0.3s;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  padding: 12px;
  width: 100%;
  text-align: center;
  max-width: 300px;
  margin: auto;
  cursor: pointer;
  box-shadow: 0px 0px 0px var(--red);
}
.contact-form .btn:focus {
  box-shadow: 0px 0px 8px var(--red);
}
.contact-form .btn:hover {
  color: var(--red);
  background-color: var(--white);
}
.contact-form .btn.white {
  color: var(--red);
  background-color: var(--white);
}
.contact-form .btn.white:hover {
  border: 2px solid var(--red);
  background-color: var(--red);
  color: var(--white);
}
.contact-form .form-control-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 580px) {
  .contact-form .form-control-double {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.contact-form .form-control-double.center {
  margin: auto;
  width: 50%;
}
@media (max-width: 767px) {
  .contact-form .form-control-double.center {
    width: 100%;
  }
}
.contact-form .form-control-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.contact-form .form-control-grid .form-control-grid-item {
  min-height: 42px;
  width: 100%;
}
.contact-form .form-control-grid .form-control-grid-item .form-control-wrap {
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}
.contact-form .form-control-grid .form-control-grid-item p {
  width: 100%;
}
.contact-form .form-control-grid .form-control-grid-item p.description {
  text-align: end;
}
.contact-form .form-control-grid .form-control-grid-item p.description span:not(.important) {
  color: var(--gray);
}
.contact-form .form-control-grid .form-control-grid-item .column-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--red);
  font-size: 18px;
}
.contact-form .form-control-grid .form-control-grid-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.contact-form .form-control-grid .form-control-grid-column.description .form-control-grid-item .form-control-wrap {
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}
.contact-form .form-control-grid .form-control-grid-column.description .form-control-grid-item .form-control-wrap p {
  text-align: end;
}
.contact-form .form-control-grid .form-control-grid-column.description .form-control-grid-item .form-control-wrap p span:not(.important) {
  color: var(--gray);
}
@media (max-width: 991px) {
  .contact-form .form-control-grid {
    min-width: 900px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .contact-form .form-control-grid {
    min-width: 700px;
  }
}
.contact-form .form-control-grid-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
}
.table-wrap .btn {
  cursor: pointer;
  background: var(--light-red);
  color: var(--white);
  border-radius: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 12px 30px;
  max-width: 350px;
  width: 100%;
}
.table-wrap .btn.absolute-btn {
  text-align: center;
  position: absolute;
  right: 0;
  top: 7px;
}
@media (max-width: 768px) {
  .table-wrap .btn.absolute-btn {
    position: relative;
    margin: auto;
    margin-bottom: 10px;
    position: sticky;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1279px) {
  .table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.table-wrap .dataTables_wrapper .dataTables_info {
  display: none;
}
.table-wrap .office_header {
  background: #e4e8ec;
}
.table-wrap .dataTables_wrapper .dataTables_filter input {
  border-radius: 25px;
  min-height: 50px;
  min-width: 260px;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .table-wrap .dataTables_wrapper .dataTables_filter input {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .table-wrap .dataTables_wrapper .dataTables_filter input {
    max-width: 100%;
    margin-top: 6px;
    margin-left: 0;
  }
}
.table-wrap .dataTables_wrapper .dataTables_filter {
  margin: 0;
  padding: 15px 0;
}
@media (max-width: 1279px) {
  .table-wrap .dataTables_wrapper .dataTables_filter {
    text-align: start;
  }
}
@media (max-width: 768px) {
  .table-wrap .dataTables_wrapper .dataTables_filter {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    position: sticky;
    left: 0;
  }
}

.contact-form .form-control-grid {
    display: grid;
    grid-template-columns: 0.6fr 1fr 1fr;
    gap: 10px;
    width: 100%;
}
.contact-form .form-control-grid .form-control-grid-item {
    min-height: 42px;
    width: 100%;
}
.contact-form .form-control-grid .form-control-grid-item .form-control-wrap {
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}
.contact-form .form-control-grid .form-control-grid-item p {
    width: 100%;
}
.contact-form .form-control-grid .form-control-grid-item p.description {
    text-align: end;
}
.contact-form .form-control-grid .form-control-grid-item p.description span:not(.important) {
    color: var(--gray);
}
.contact-form .form-control-grid .form-control-grid-item .column-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    color: var(--red);
    font-size: 18px;
}
.contact-form .form-control-grid .form-control-grid-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}
.contact-form .form-control-grid .form-control-grid-column.description .form-control-grid-item .form-control-wrap {
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}
.contact-form .form-control-grid .form-control-grid-column.description .form-control-grid-item .form-control-wrap p {
    text-align: end;
}
.contact-form .form-control-grid .form-control-grid-column.description .form-control-grid-item .form-control-wrap p span:not(.important) {
    color: var(--gray);
}
@media (max-width: 991px) {
    .contact-form .form-control-grid {
        min-width: 900px;
        padding-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .contact-form .form-control-grid {
        min-width: 700px;
    }
}

.contact-form .form-control-grid-wrap {
    margin-left: 50px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form .btn {
    box-shadow: 0px 0px 0px var(--red);
}
.contact-form .btn:focus {
    box-shadow: 0px 0px 8px var(--red);
}

body.act .header {
    z-index: 3;
}
.tabs .category__list__item__wrap.act {
    z-index: 40;
}
.tabs.simple-box {
    padding-top: 20px;
}
.header .agent-list {
    scrollbar-width: thin;
    scrollbar-color: var(--light-red) var(--purple);
}
.header .agent-list.act {
    overflow: hidden;
    overflow-y: auto;
    max-height: 152px;
}
.header .agent-list::-webkit-scrollbar {
    width: 12px;
}
.header .agent-list::-webkit-scrollbar-track {
    background: var(--purple);
    border-radius: 20px;
}
.header .agent-list::-webkit-scrollbar-thumb {
    background-color: var(--light-red);
    border-radius: 20px;
    border: 3px solid var(--purple);
}

.contact-form .form-control-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1375px) {
    .contact-form .form-control-grid-wrap {
        margin-left: 0;
    }
}

.feather-eye {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    align-items: center;
    align-content: center;
    height: 42px;
    padding: 7px;
    width: 60px;
    cursor: pointer;
}
.feather-eye svg {
    width: 100%;
    height: 100%;
}
.benefits {
    width: 100%;
    padding: 60px 0;
}
.benefits .section-title, .benefits h2 {
    text-align: center;
    width: 100%;
}
.benefits__wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.benefits__bg {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 20%;
    z-index: -1;
}
.benefits__bg img {
    max-height: 700px;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}
.benefits__content {
    position: relative;
    padding-top: 80px;
    margin-bottom: 50px;
}
@media (max-width: 580px) {
    .benefits__content {
        margin-bottom: 0px;
    }
}
.benefits__list {
    padding: 0 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 30px;
}
@media (max-width: 1279px) {
    .benefits__list {
        padding: 0 5%;
    }
}
@media (max-width: 991px) {
    .benefits__list {
        flex-wrap: wrap;
    }
}
.benefits__list__item {
    flex: 0 0 23%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 30px 15px;
    background: var(--white);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.34);
    text-align: center;
}
@media (max-width: 991px) {
    .benefits__list__item {
        flex: 0 0 45%;
    }
}
@media (max-width: 580px) {
    .benefits__list__item {
        flex: 0 0 100%;
    }
}
.benefits__list__item h3, .benefits__list__item .title {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}
.benefits .icon {
    border-radius: 50px;
    background-color: var(--red);
    width: 100%;
    max-width: 50px;
    padding: 10px;
    height: auto;
}
.benefits .icon img {
    filter: brightness(200%) grayscale(1);
    width: 100%;
}

.certified__content {
    width: 80%;
    margin: auto;
    padding: 40px 20px;
    border-radius: 20px;
    border: 2px solid var(--red);
    margin-bottom: 50px;
}
@media (max-width: 1279px) {
    .certified__content {
        width: 100%;
    }
}
.certified__content h2 {
    text-align: center;
    width: 100%;
}
.certified__content .decore-box {
    margin: 20px 0;
    margin-left: auto;
    margin-right: -100px;
}
@media (max-width: 1279px) {
    .certified__content .decore-box {
        margin-right: auto;
    }
}
.certified form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.certified form textarea,
.certified form input {
    outline: none;
    box-shadow: none;
    border: none;
    transition: all 0.3s;
    font-family: "Inter", sans-serif;
}
.certified form textarea:hover, .certified form textarea:focus,
.certified form input:hover,
.certified form input:focus {
    transition: all 0.3s;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.34);
}
.certified .form-control-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.certified .form-control-wrap .pass-group {
    width: 100%;
}
.certified .form-control-wrap .important {
    color: var(--red);
}
.certified .form-control-wrap .select2-container--default .select2-selection--single,
.certified .form-control-wrap .form-control {
    width: 100%;
    font-size: 15px;
    min-height: 42px;
    padding: 6px 15px;
    border: 1px solid #5a1d16;
    border-radius: 5px;
}
.certified .form-control-wrap .select2-container--default .select2-selection--single:hover,
.certified .form-control-wrap .form-control:hover {
    transition: all 0.3s;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.34);
}
.certified .form-control-wrap .form-check-label {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}
.certified .form-control-wrap .form-check-label input {
    margin-right: 10px;
}
.certified .form-control-wrap .form-check-label input:focus, .certified .form-control-wrap .form-check-label input:hover {
    background: transparent;
    box-shadow: none;
}
.certified .form-control-wrap .form-check-label:focus, .certified .form-control-wrap .form-check-label:hover {
    background: transparent;
    box-shadow: none;
}
.certified .form-control-wrap .form-check-label:focus input:focus, .certified .form-control-wrap .form-check-label:focus input:hover, .certified .form-control-wrap .form-check-label:hover input:focus, .certified .form-control-wrap .form-check-label:hover input:hover {
    background: transparent;
    box-shadow: none;
}
.certified .form-control-wrap .form-check-label:focus span, .certified .form-control-wrap .form-check-label:hover span {
    color: var(--red);
}
.certified .form-control-wrap .form-check {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.certified .form-control-wrap .form-check .btn {
    margin-left: 25px;
}
@media (max-width: 480px) {
    .certified .form-control-wrap .form-check .btn {
        margin-left: 0px;
    }
}
.certified .form-control-wrap a {
    color: var(--red);
}
.certified .form-control-wrap a:hover {
    text-decoration: underline;
}
.certified .form-control-wrap .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
    padding-right: 10px;
}
.certified .form-control-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.certified .form-control-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    content: url(../images/icon/down-chevron.svg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    margin: 0;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
.certified .form-control-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translate(-50%, -50%) rotate(180deg);
}
.certified a.btn,
.certified .btn {
    max-width: 300px;
    min-height: 50px;
    border: 2px solid var(--red);
    background-color: var(--red);
    border-radius: 25px;
    transition: all 0.3s;
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    padding: 12px;
    width: 100%;
    margin: auto;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.certified a.btn p, .certified a.btn span,
.certified .btn p,
.certified .btn span {
    font-weight: 700;
    color: var(--white);
    line-height: normal;
}
.certified a.btn:hover,
.certified .btn:hover {
    color: var(--red);
    background-color: var(--white);
}
.certified a.btn:hover p, .certified a.btn:hover span,
.certified .btn:hover p,
.certified .btn:hover span {
    color: var(--red);
}
.certified a.btn.white,
.certified .btn.white {
    color: var(--red);
    background-color: var(--white);
}
.certified a.btn.white p, .certified a.btn.white span,
.certified .btn.white p,
.certified .btn.white span {
    color: var(--red);
}
.certified a.btn.white:hover,
.certified .btn.white:hover {
    color: var(--white);
    background-color: var(--red);
}
.certified a.btn.white:hover p, .certified a.btn.white:hover span,
.certified .btn.white:hover p,
.certified .btn.white:hover span {
    color: var(--white);
}
.certified a.btn img, .certified a.btn svg,
.certified .btn img,
.certified .btn svg {
    transition: all 0.3s;
    max-width: 22px;
    width: 100%;
    margin: 0;
    margin-left: 10px;
    filter: invert(1) brightness(200%) grayscale(1);
}
@media (max-width: 580px) {
    .certified a.btn img, .certified a.btn svg,
    .certified .btn img,
    .certified .btn svg {
        max-width: 20px;
    }
}
.certified a.btn.act, .certified a.btn:hover,
.certified .btn.act,
.certified .btn:hover {
    text-decoration: none;
}
.certified a.btn.act img, .certified a.btn.act svg, .certified a.btn:hover img, .certified a.btn:hover svg,
.certified .btn.act img,
.certified .btn.act svg,
.certified .btn:hover img,
.certified .btn:hover svg {
    filter: none;
}
.certified .form-control-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
@media (max-width: 580px) {
    .certified .form-control-double {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.certified .form-video {
    max-width: 100%;
    width: 100%;
    height: auto;
    position: relative;
}
.certified .form-video-btn {
    max-width: 300px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s;
    border: 2px solid var(--red);
    background-color: var(--red);
    border-radius: 25px;
    transition: all 0.3s;
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    padding: 12px;
    width: 100%;
    margin-right: auto;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
}
@media (max-width: 480px) {
    .certified .form-video-btn {
        margin-left: 0px;
    }
}
.certified .form-video-btn p, .certified .form-video-btn span {
    font-weight: 700;
    color: var(--white);
    line-height: normal;
}
.certified .form-video-btn img {
    transition: all 0.4s;
    width: 40px;
}
.certified .form-video-btn:hover {
    color: var(--red);
    background-color: var(--white);
    text-decoration: none;
}
.certified .form-video-btn:hover img, .certified .form-video-btn:hover svg {
    filter: none;
}
.certified .form-video-btn:hover p, .certified .form-video-btn:hover span {
    color: var(--red);
}
.certified .form-video video {
    display: none;
    max-width: 100%;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.certified .form-video video.act {
    display: block;
}
.certified .form-video video.act ~ .category__list__item__video-btn {
    display: none;
}
.certified .form-video.act {
    max-width: 100%;
    width: 100%;
    height: auto;
    background: var(--gray2);
    position: relative;
    background-color: #000000;
}
.certified .form-video.act .category__list__item__video-btn {
    display: none;
}
.certified .form-video-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    background: var(--white);
    border-radius: 10px;
    min-height: 100%;
    transition: all 0.3s;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.14);
}
.certified .form-video-wrap video {
    display: none;
}
.certified .form-video-wrap.act {
    position: fixed;
    background: rgba(0, 0, 0, 0.54);
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 40;
    padding: 0;
    margin-left: 0px;
}
.certified .form-video-wrap.act .category__list__item__video-btn {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: -1;
    background: transparent;
    max-width: unset;
    min-height: unset;
    border: none;
}
.certified .form-video-wrap.act .category__list__item__video-btn img {
    display: none;
}
.certified .form-video-wrap.act .category__list__item__video-btn::before {
    content: "";
    filter: brightness(400%) grayscale(1);
    border-radius: 50%;
    background-color: var(--black);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.34);
    position: absolute;
    top: 60px;
    right: 80px;
    width: 40px;
    height: 40px;
    background-image: url(../images/icon/dismiss-white.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    cursor: pointer;
    pointer-events: none;
}
@media (max-width: 991px) {
    .certified .form-video-wrap.act .category__list__item__video-btn::before {
        top: 30px;
        right: 30px;
    }
}
.certified .form-video-wrap.act .category__list__item__video {
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 22;
}
.certified .form-video-wrap.act .category__list__item__video video {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 70%;
    max-height: 90%;
    height: auto;
    width: 100%;
}
@media (max-width: 991px) {
    .certified .form-video-wrap.act .category__list__item__video video {
        max-width: 90%;
        max-height: 90%;
    }
}
@media (max-width: 767px) {
    .certified .form-video-wrap.act .category__list__item__video video {
        max-width: 100%;
        max-height: 90%;
    }
}
.certified .form-video-wrap.act .category__list__item__text {
    display: none;
}
.certified .form-video-wrap.act ~ .category__list__item__wrap {
    z-index: 1;
}
input[type=checkbox] {
    width: 1px;
    height: auto;
    margin: 0;
    padding: 0;
    display: none;
    color: transparent;
    border: transparent;
    background: transparent;
    position: relative;
    margin-right: 25px !important;
}
input[type=checkbox]:checked ~ .custom-checkbox::before {
    background-color: var(--red);
    border: 1px solid var(--red);
}
input[type=checkbox]:checked ~ .custom-checkbox::after {
    background-image: url(../images/icon/tick-checkbox.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
input[type=checkbox]:disabled ~ ::before {
    background-color: var(--gray2);
    border: 1px solid var(--gray);
}

.form-check-label {
    position: relative;
    padding-left: 25px;
}

.custom-checkbox {
    position: absolute;
    top: 50%;
    transform: translateY(-8px);
    left: 0;
    width: 100%;
    height: 100%;
}
.custom-checkbox::after, .custom-checkbox::before {
    transition: all 0.3s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
}
.custom-checkbox::before {
    border: 1px solid var(--black-text);
    border-radius: 3px;
}
.custom-checkbox::after {
    border-radius: 3px;
}
input[type=checkbox]:checked:disabled::before {
    background-color: var(--red);
    border: 1px solid var(--red);
}
@media (max-width: 767px) {
    .content-fade-box figure.table {
        margin-left: 0;
        margin-right: 0;
    }
}


.supplemental-resources-text {
    color: #000 !important;
}
.supplemental-resources-text:hover {
    color: var(--red) !important;
}

.tabs .category__list__item__wrap {
    gap: 8px;
}
@media (max-width: 580px) {
    .tabs .category__list__item__wrap {
        padding: 20px 10px;
    }
}

.tabs .category__list__item .file-icon {
    margin-bottom: 10px;
}

.tabs .category__list__item {
    height: 340px;
}
@media (max-width: 991px) {
    .tabs .category__list__item {
        height: 320px;
    }
}
@media (max-width: 580px) {
    .tabs .category__list__item {
        height: 300px;
    }
}

.tabs .category__list__item__wrap .description {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
}

.tabs a.btn, .tabs .btn {
    margin-bottom: 8px;
}

.tabs .category__list__item h4 {
    -webkit-line-clamp: 2;
    margin-bottom: 5px;
}

.tabs .category__list__item p {
    -webkit-line-clamp: 3;
}
.tabs .category__list__item p span {
    display: block;
    margin-top: 13px;
    color: var(--red);
}
@media (max-width: 580px) {
    .tabs .category__list__item p span {
        margin-top: 8px;
    }
}
.tabs .category__list__item p .supplemental-resources-text {
    color: #000 !important;
    transition: all 0.3s;
    text-decoration: none;
}
.tabs .category__list__item p .supplemental-resources-text:hover {
    text-decoration: underline;
    color: var(--red) !important;
}
/*# sourceMappingURL=main.css.map */
