:root {
  --font-family: "OpenSans", sans-serif;
  --content-width: 1350px;
  --content-width-fluid: 1680px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-width-fluid: calc(var(--content-width-fluid) + (var(--container-offset) * 2));
  --light--color: #ffffff;
  --dark--color: #333333;
  --accent--color: #268BE8;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "Kanit";
  src: url("../fonts/../fonts/Kanit-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Kanit";
  src: url("../fonts/../fonts/Kanit-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Kanit";
  src: url("../fonts/../fonts/Kanit-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none !important;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.container__fluid {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width-fluid);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

/* .dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
} */
.btn--light {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
  border: 2px solid var(--accent--color);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn--light:hover {
  background-color: var(--accent--color);
  -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  color: var(--light--color);
}

.btn--dark {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--dark--color);
  border: 2px solid var(--accent--color);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn--dark:hover {
  background-color: var(--accent--color);
  -webkit-box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  color: var(--light--color);
}

.btn--dsbl {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #999999;
  border: 2px solid #CCCCCC;
  border-radius: 5px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn--dsbl:hover {
  border: 2px solid var(--accent--color);
}

.title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  color: var(--light--color);
}
@media (max-width: 992px) {
  .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 32px;
    line-height: 42px;
  }
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
  color: #fff;
}
.all_pages ul {
  background: #00D2FF;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

body.lock {
  overflow: hidden;
}

.header-profile .header {
  background-color: #03111D;
}
.header-profile .header__registration {
  display: none;
}
.header-profile .header__avatar {
  display: block;
}

.header {
  padding: 40px 0;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 992px) {
  .header {
    padding: 20px 0;
  }
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .header__wrap {
    position: relative;
  }
  .header__wrap .header__registration {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    margin-left: 0;
    bottom: 10%;
    z-index: 102;
  }
}
@media (max-height: 480px) {
  .header__wrap .header__registration {
    padding: 2px 20px;
    font-size: 12px;
    left: auto;
    right: -5%;
    bottom: 3%;
  }
}
.header__logo {
  position: relative;
  z-index: 101;
  margin-right: auto;
}
.header__logo img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .header__logo img {
    max-width: 70%;
  }
}
.header__registration {
  margin-left: 60px;
}
@media (max-width: 1200px) {
  .header__registration {
    margin-left: 40px;
  }
}
@media (max-width: 992px) {
  .header__registration {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
}
.header__avatar {
  margin-left: 60px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header__avatar {
    margin-right: 30px;
    width: 40px;
    height: 40px;
  }
}
.header__avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .header__avatar {
    margin-left: 40px;
  }
}
.header .nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.header .nav > ul > li {
  margin-right: 30px;
}
.header .nav > ul > li:nth-child(4) {
  font-family: "Kanit";
  font-style: normal;
  font-size: 16px !important;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  cursor: pointer;
  padding-right: 15px;
}
@media (max-width: 992px) {
  .header .nav > ul > li:nth-child(4) {
    padding-right: 0;
    font-size: 20px !important;
  }
}
@media (max-width: 480px) {
  .header .nav > ul > li:nth-child(4) {
    text-align: center;
  }
}
.header .nav > ul > li:nth-child(4):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 7px;
  -webkit-transform-origin: 50% 75%;
  -ms-transform-origin: 50% 75%;
  transform-origin: 50% 75%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  background: 2px solid var(--light--color);
  border: 2px solid var(--light--color);
  border-left: none;
  border-top: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .header .nav > ul > li:nth-child(4):after {
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 992px) {
  .header .nav > ul > li:nth-child(4):after {
    width: 8px;
    height: 8px;
    right: -15px;
    top: 10px;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@media (max-width: 480px) {
  .header .nav > ul > li:nth-child(4):after {
    width: 6px;
    height: 6px;
    top: 8px;
    right: -10px;
  }
}
@media (max-width: 480px) {
  .header .nav > ul > li:nth-child(4).active:after {
    right: -5px;
  }
}
.header .nav > ul > li:nth-child(4) > ul {
  position: absolute;
  top: calc(100% + 10px);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 10px;
  width: 140%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header .nav > ul > li:nth-child(4) > ul {
    position: static;
    width: 100%;
    text-align: center;
    display: inline;
    padding: 0;
    display: none;
  }
}
.header .nav > ul > li:nth-child(4) > ul > li {
  margin-bottom: 5px;
}
.header .nav > ul > li:nth-child(4) > ul > li:last-child {
  margin-bottom: 0;
}
.header .nav > ul > li:nth-child(4) > ul > li > a {
  display: inline-block;
  font-family: "Kanit";
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header .nav > ul > li:nth-child(4) > ul > li > a:hover {
  color: var(--accent--color);
}
@media (max-width: 992px) {
  .header .nav > ul > li:nth-child(4) > ul > li > a:hover {
    color: var(--light--color);
  }
}
@media (max-width: 1200px) {
  .header .nav > ul > li:nth-child(4) > ul > li > a {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .header .nav > ul > li:nth-child(4) > ul > li > a {
    font-size: 12px;
  }
}
.header .nav > ul > li:nth-child(4).active > ul {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
@media (max-width: 992px) {
  .header .nav > ul > li:nth-child(4).active > ul {
    display: block;
  }
  .header .nav > ul > li:nth-child(4).active > ul > li {
    margin-bottom: 0;
    line-height: 110%;
  }
}
.header .nav > ul > li:nth-child(4).active:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media (max-width: 1200px) {
  .header .nav > ul > li:nth-child(4) {
    font-size: 14px !important;
    line-height: 25px !important;
  }
}
@media (max-width: 992px) {
  .header .nav > ul > li:nth-child(4) {
    font-size: 20px !important;
    line-height: 32px !important;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .header .nav > ul > li:nth-child(4) {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}
.header .nav > ul > li:last-child {
  margin-right: 0;
}
.header .nav > ul > li > a {
  display: inline-block;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header .nav > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 0%;
  background-color: var(--accent--color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header .nav > ul > li > a:hover:after {
  width: 100%;
}
@media (max-width: 992px) {
  .header .nav > ul > li > a:hover:after {
    width: 0%;
  }
}
.header .nav > ul > li > a.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 100%;
  background-color: var(--accent--color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header .nav > ul > li > a.active:after {
    width: 0%;
  }
}
@media (max-width: 992px) {
  .header .nav {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header .nav > ul {
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header .nav > ul > li {
    margin-right: 0 !important;
  }
  .header .nav > ul > li > a {
    font-size: 20px !important;
    line-height: 32px !important;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .header .nav > ul > li > a {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}
@media (max-width: 992px) {
  .header .nav.menu--active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@media (max-height: 280px) {
  .header .nav > ul > li > a {
    font-size: 12px !important;
    line-height: 24px !important;
  }
}
.header .burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: var(--light--color);
  background-color: transparent;
  cursor: pointer;
  display: none;
  z-index: 101;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  top: calc(100% - var(--burger-line-height));
}
.header .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
  }
}
.header__btn {
  font-size: 16px;
  padding: 8px 53px;
}
@media (max-width: 1200px) {
  .header__btn {
    font-size: 14px;
    padding: 6px 40px;
  }
}
@media (max-height: 280px) {
  .header__btn {
    padding: 4px 30px !important;
    font-size: 12px !important;
  }
}
.header.scroll {
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.header.scroll nav > ul > li:nth-child(4) {
  line-height: 25px;
}
.header.scroll nav > ul > li:nth-child(4) > ul > li > a {
  font-size: 12px;
}
.header.scroll nav > ul > li > a {
  font-size: 14px;
}
.header.scroll nav > ul > li > a:after {
  bottom: -1px;
  height: 2px;
}
.header.scroll nav > ul > li > a.active:after {
  bottom: -1px;
  height: 2px;
}
.header.scroll a.header__btn {
  padding: 6px 40px;
  font-size: 14px;
}
.header.scroll a.header__logo img {
  max-width: 70%;
}
.header.scroll .header__avatar, .header.scroll .header__avatar_dashboard {
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .header .nav > ul > li {
    margin-right: 20px;
  }
  .header .nav > ul > li > a {
    font-size: 14px;
  }
}
.header .header__avatar_dashboard {
  margin-left: 60px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header .header__avatar_dashboard {
    margin-right: 30px;
    width: 40px;
    height: 40px;
  }
}
.header .header__avatar_dashboard img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .header .header__avatar_dashboard {
    margin-left: 40px;
  }
}

.promo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 370px;
  padding-bottom: 390px;
}
@media (max-width: 1200px) {
  .promo {
    padding-top: 300px;
    padding-bottom: 300px;
  }
}
@media (max-width: 992px) {
  .promo {
    padding-top: 250px;
    padding-bottom: 250px;
  }
}
@media (max-width: 480px) {
  .promo {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
.promo__wrap {
  padding-left: 80px;
  position: relative;
}
.promo__wrap:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 10px;
  height: calc(100% - 10px);
  background-color: var(--accent--color);
}
@media (max-width: 768px) {
  .promo__wrap {
    padding-left: 50px;
  }
}
@media (max-width: 576px) {
  .promo__wrap {
    padding-left: 30px;
  }
  .promo__wrap:after {
    width: 6px;
  }
}
.promo__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  color: var(--light--color);
  max-width: 992px;
}
@media (max-width: 1200px) {
  .promo__title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 992px) {
  .promo__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .promo__title {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  .promo__title {
    font-size: 32px;
    line-height: 45px;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .promo__title {
    font-size: 25px;
    line-height: 35px;
  }
}
.promo__btn {
  display: inline-block;
  margin-top: 60px;
  padding: 13px 75px;
}
@media (max-width: 768px) {
  .promo__btn {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .promo__btn {
    padding: 10px 45px;
    font-size: 14px;
  }
}

.courses {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .courses {
    padding-top: 50px;
  }
}
.courses__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 768px) {
  .courses__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 480px) {
  .courses__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.courses__descr {
  margin-top: 20px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--dark--color);
}
@media (max-width: 480px) {
  .courses__descr {
    font-size: 14px;
    line-height: 26px;
  }
}
.courses__btn-all {
  background-color: transparent;
  outline: none;
  cursor: pointer;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark--color);
  padding: 10px 50px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 480px) {
  .courses__btn-all {
    font-size: 12px;
    padding: 8px 30px;
  }
}
.courses .cards {
  list-style: none;
  margin-top: 60px;
  margin-bottom: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  overflow-y: hidden;
  padding-left: 0 !important;
}
@media (max-width: 1400px) {
  .courses .cards {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media (max-width: 1200px) {
  .courses .cards {
    justify-items: center;
    row-gap: 50px;
  }
}
@media (max-width: 768px) {
  .courses .cards {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 480px) {
  .courses .cards {
    -ms-grid-columns: (1fr)[8];
    grid-template-columns: repeat(8, 1fr);
    margin-top: 35px;
    margin-bottom: 50px;
    row-gap: 35px;
  }
}
.courses .cards__item {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
@media (max-width: 1200px) {
  .courses .cards__item {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    max-width: 315px;
  }
}
@media (max-width: 768px) {
  .courses .cards__item {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  }
}
@media (max-width: 480px) {
  .courses .cards__item {
    -ms-grid-column-span: 8;
    grid-column: span 8;
  }
}
.courses .cards__item:hover {
  cursor: pointer;
}
.courses .cards__item:hover .card-item__name {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}
.courses .cards__item:hover .card-item__label-price {
  color: #09559b;
}
.courses .cards__item:hover .card-item__image img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.courses .card-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.courses .card-item__image {
  height: 230px;
  position: relative;
  margin-bottom: 10px;
}
.courses .card-item__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses .card-item__label-price {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--accent--color);
  width: 80px;
  height: 30px;
  padding-left: 30px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses .card-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.courses .card-item__name {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark--color);
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.courses .card-item__indiv {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: var(--light--color);
  font-variant: small-caps;
  background-color: #0D4579;
  border-radius: 2px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.courses .card-item__text {
  padding: 0;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark--color);
  margin-bottom: 20px;
}
.courses .card-item__btn {
  margin-top: auto;
  padding: 8px 49px;
}
@media (max-width: 768px) {
  .courses .card-item__btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .courses .card-item__btn {
    margin-left: auto;
    margin-right: auto;
    padding: 6px 35px;
    font-size: 14px;
  }
}

.books {
  padding-top: 120px;
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .books {
    padding-bottom: 75px;
  }
}
@media (max-width: 768px) {
  .books {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.books__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 768px) {
  .books__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 480px) {
  .books__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.books .cards {
  margin-top: 40px;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding-left: 0 !important;
}
@media (max-width: 768px) {
  .books .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.books .cards__item {
  background-color: #F9F9F9;
  padding: 60px 50px 70px 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 15px);
  flex: 0 1 calc(50% - 15px);
  cursor: pointer;
}
.books .cards__item:hover {
  border-color: var(--light--color);
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
}
@media (max-width: 1400px) {
  .books .cards__item {
    padding: 60px 50px 60px 20px;
  }
}
@media (max-width: 1200px) {
  .books .cards__item {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .books .cards__item {
    border-color: var(--light--color);
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  }
  .books .cards__item:hover {
    border-color: var(--light--color);
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) {
  .books .cards__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (max-width: 480px) {
  .books .cards__item {
    padding: 40px 15px;
  }
}
.books .card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
  height: 100%;
}
@media (max-width: 1400px) {
  .books .card-item {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 1400px) {
  .books .card-item {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 1200px) {
  .books .card-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.books .card-item__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 228px;
  flex: 0 1 228px;
  max-height: 290px !important;
}
@media (max-width: 1200px) {
  .books .card-item__image {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .books .card-item__image img {
    max-width: 70%;
  }
}
.books .card-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 260px;
  flex: 1 1 260px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .books .card-item__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.books .card-item__name {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--dark--color);
}
@media (max-width: 576px) {
  .books .card-item__name {
    line-height: 24px;
  }
}
.books .card-item__text {
  margin: 0;
  padding: 0;
  margin-top: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark--color);
}
@media (max-width: 480px) {
  .books .card-item__text {
    margin-top: 13px;
  }
}
.books .card-item__price {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--accent--color);
}
.books .card-item__btn {
  display: inline-block;
  margin-top: auto;
  padding: 8px 49px;
}
@media (max-width: 480px) {
  .books .card-item__btn {
    margin-left: auto;
    margin-right: auto;
    padding: 6px 35px;
    font-size: 14px;
  }
}

.security {
  background-color: #F9F9F9;
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .security {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
.security__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 136px;
  -moz-column-gap: 136px;
  column-gap: 136px;
}
@media (max-width: 1200px) {
  .security__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 1200px) {
  .security__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.security__image {
  -ms-flex-preferred-size: 400px;
  flex-basis: 400px;
  margin-left: 40px;
  position: relative;
  max-height: 500px;
}
.security__image img {
  height: 100%;
}
.security__image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 40px;
  height: 80%;
  background-color: var(--accent--color);
}
@media (max-width: 1200px) {
  .security__image {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 440px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .security__image {
    max-width: 60%;
  }
  .security__image:after {
    content: none;
  }
}
@media (max-width: 480px) {
  .security__image {
    max-width: 80%;
  }
}
.security__content {
  -ms-flex-preferred-size: calc(100% - 576px);
  flex-basis: calc(100% - 576px);
}
@media (max-width: 1200px) {
  .security__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 50px 150px;
    border-color: var(--light--color);
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 992px) {
  .security__content {
    padding: 50px 100px;
  }
}
@media (max-width: 768px) {
  .security__content {
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
  .security__content {
    padding: 0;
    border-color: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.security__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 768px) {
  .security__title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .security__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.security__name {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--dark--color);
  margin-top: 30px;
}
@media (max-width: 480px) {
  .security__name {
    font-size: 22px;
    margin-top: 20px;
  }
}
.security__prof {
  margin-top: 5px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--accent--color);
}
@media (max-width: 480px) {
  .security__prof {
    font-size: 14px;
    line-height: 25px;
  }
}
.security__text {
  margin-top: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark--color);
}
.security__btn {
  margin-top: 60px;
  display: inline-block;
  padding: 8px 52px;
}
@media (max-width: 1200px) {
  .security__btn {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .security__btn {
    margin-left: auto;
    margin-right: auto;
    padding: 6px 35px;
    font-size: 14px;
  }
}

.testimonials {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1200px) {
  .testimonials {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
.testimonials__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
  text-align: center;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .testimonials__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.testimonials__slider {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .testimonials__slider {
    margin-top: 40px;
  }
}
.testimonials__slide {
  padding-left: 45px;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-right: 1px solid #DDDDDD;
}
@media (max-width: 992px) {
  .testimonials__slide {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (max-width: 576px) {
  .testimonials__slide {
    padding: 15px;
    border: 1px solid rgba(221, 221, 221, 0.2);
    -webkit-box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #ffffff;
  }
}
@media (max-width: 480px) {
  .testimonials__slide {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 480px) {
  .testimonials__image img {
    width: 35px;
    height: 35px;
  }
}
.testimonials__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 480px) {
  .testimonials__content {
    margin-top: 20px;
  }
}
.testimonials__text {
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark--color);
  margin-bottom: 45px;
}
@media (max-width: 480px) {
  .testimonials__text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 25px;
  }
}
.testimonials__date {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--accent--color);
  margin-top: auto;
}
@media (max-width: 480px) {
  .testimonials__date {
    font-size: 15px;
    line-height: 23px;
  }
}
.testimonials .swiper {
  padding-bottom: 60px;
}
.testimonials .swiper-slide-next {
  border-right: none;
}
.testimonials .swiper-slide-prev {
  padding-left: 0 !important;
}
.testimonials .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  background-color: #DDDDDD;
  border-radius: 2px;
}
.testimonials .swiper-pagination-bullet-active {
  width: 60px;
  height: 5px;
  background-color: var(--accent--color);
  border-radius: 2px;
}

.services {
  padding-top: 110px;
  padding-bottom: 200px;
  overflow-y: hidden;
}
@media (max-width: 1200px) {
  .services {
    padding-top: 75px;
    padding-bottom: 125px;
  }
}
.services__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
  text-align: center;
}
@media (max-width: 768px) {
  .services__title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .services__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.services .cards {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding-left: 0 !important;
}
@media (max-width: 1200px) {
  .services .cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .services .cards {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 40px;
  }
}
.services .cards__item {
  background-color: var(--light--color);
  padding: 30px 30px 40px 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.services .cards__item:hover {
  border-color: var(--light--color);
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
@media (max-width: 992px) {
  .services .cards__item:hover {
    border-color: var(--light--color);
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media (max-width: 1200px) {
  .services .cards__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.3333333333%;
    flex: 0 1 33.3333333333%;
    max-width: 315px;
  }
}
@media (max-width: 992px) {
  .services .cards__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    border-color: var(--light--color);
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) {
  .services .cards__item {
    padding: 30px 20px;
    max-width: 45%;
  }
}
@media (max-width: 576px) {
  .services .cards__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.services .card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.services .card-item__name {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--dark--color);
  max-width: 70%;
  min-height: 50px;
}
@media (max-width: 1400px) {
  .services .card-item__name {
    max-width: 100%;
  }
}
.services .card-item__text {
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: 10px;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark--color);
}
.services .card-item__btn {
  margin-top: auto;
  padding: 8px 48px;
  font-size: 14px;
  line-height: 20px;
}

.footer {
  padding-top: 140px;
}
.footer .container {
  position: relative;
}
@media (max-width: 992px) {
  .footer .logo__footer {
    display: inline-block;
    padding-top: 30px;
  }
}
.footer__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #0D4579;
}
.footer__navigation > nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: right;
}
.footer__navigation > nav > ul {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.footer__navigation > nav > ul > li {
  margin-right: 30px;
}
.footer__navigation > nav > ul > li:nth-child(4) {
  font-family: "Kanit";
  font-style: normal;
  font-size: 16px !important;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  cursor: pointer;
  padding-right: 15px;
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li:nth-child(4) {
    padding-right: 0;
    font-size: 20px !important;
  }
}
@media (max-width: 480px) {
  .footer__navigation > nav > ul > li:nth-child(4) {
    text-align: center;
  }
}
.footer__navigation > nav > ul > li:nth-child(4):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 7px;
  -webkit-transform-origin: 50% 75%;
  -ms-transform-origin: 50% 75%;
  transform-origin: 50% 75%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  background: 2px solid var(--light--color);
  border: 2px solid var(--light--color);
  border-left: none;
  border-top: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .footer__navigation > nav > ul > li:nth-child(4):after {
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li:nth-child(4):after {
    width: 6px;
    height: 6px;
    right: -10px;
    top: 14px;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@media (max-width: 480px) {
  .footer__navigation > nav > ul > li:nth-child(4):after {
    width: 6px;
    height: 6px;
    top: 8px;
    right: -10px;
  }
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li:nth-child(4).active:after {
    top: 14px;
    right: 5px;
  }
}
@media (max-width: 480px) {
  .footer__navigation > nav > ul > li:nth-child(4).active:after {
    right: 5px;
    top: 10px;
  }
}
.footer__navigation > nav > ul > li:nth-child(4) > ul {
  position: absolute;
  bottom: calc(100% + 10px);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 10px;
  width: 140%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  text-align: left;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li:nth-child(4) > ul {
    position: static;
    width: 100%;
    text-align: center;
    padding: 0;
    display: none;
  }
}
.footer__navigation > nav > ul > li:nth-child(4) > ul > li {
  margin-bottom: 5px;
}
.footer__navigation > nav > ul > li:nth-child(4) > ul > li:last-child {
  margin-bottom: 0;
}
.footer__navigation > nav > ul > li:nth-child(4) > ul > li > a {
  display: inline-block;
  font-family: "Kanit";
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__navigation > nav > ul > li:nth-child(4) > ul > li > a:hover {
  color: var(--accent--color);
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li:nth-child(4) > ul > li > a:hover {
    color: var(--light--color);
  }
}
@media (max-width: 1200px) {
  .footer__navigation > nav > ul > li:nth-child(4) > ul > li > a {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer__navigation > nav > ul > li:nth-child(4) > ul > li > a {
    font-size: 12px;
  }
}
.footer__navigation > nav > ul > li:nth-child(4).active > ul {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li:nth-child(4).active > ul {
    display: block;
    background-color: transparent !important;
  }
  .footer__navigation > nav > ul > li:nth-child(4).active > ul > li {
    margin-bottom: 0;
    line-height: 110%;
  }
}
.footer__navigation > nav > ul > li:nth-child(4).active:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media (max-width: 1200px) {
  .footer__navigation > nav > ul > li:nth-child(4) {
    font-size: 14px !important;
    line-height: 25px !important;
  }
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li:nth-child(4) {
    font-size: 20px !important;
    line-height: 32px !important;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .footer__navigation > nav > ul > li:nth-child(4) {
    font-size: 16px !important;
    line-height: 26px !important;
  }
}
.footer__navigation > nav > ul > li:last-child {
  margin-right: 0;
}
@media (max-width: 1200px) {
  .footer__navigation > nav > ul > li {
    margin-right: 20px;
  }
}
.footer__navigation > nav > ul > li > a {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__navigation > nav > ul > li > a:hover {
  text-decoration: underline !important;
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li > a:hover {
    text-decoration: none !important;
  }
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li > a:hover {
    color: var(--light--color);
  }
}
@media (max-width: 1200px) {
  .footer__navigation > nav > ul > li > a {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul > li {
    margin-right: 0;
    margin-bottom: 7px;
  }
}
@media (max-width: 992px) {
  .footer__navigation > nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media (max-width: 992px) {
  .footer__navigation > nav {
    text-align: center;
  }
}
.footer__navigation > ul {
  padding-left: 0;
  margin-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__navigation > ul > li {
  margin-right: 10px;
}
.footer__navigation > ul > li:last-child {
  margin-right: 0;
}
.footer__navigation > ul > li > a {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__navigation > ul > li > a:hover {
  -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .footer__navigation > ul {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .footer__navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.footer__copyright {
  padding-top: 24px;
  padding-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__design {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #AAAAAA;
}
.footer__design a {
  color: var(--light--color) !important;
}
.footer__design a:hover {
  color: var(--light--color) !important;
  text-decoration: underline !important;
}
@media (max-width: 768px) {
  .footer__design {
    margin-bottom: 7px;
    font-size: 12px;
    text-align: center;
  }
}
.footer__policy a {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light--color) !important;
}
.footer__policy a:last-of-type {
  margin-left: 10px;
}
.footer__policy a:hover {
  color: var(--light--color) !important;
  text-decoration: underline !important;
}
@media (max-width: 768px) {
  .footer__policy a {
    font-size: 12px;
  }
}
.footer .subscribe {
  max-width: 1350px;
  padding: 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: calc(100% + 1px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -220px;
}
@media (max-width: 1200px) {
  .footer .subscribe {
    padding: 60px 20px;
  }
}
@media (max-width: 992px) {
  .footer .subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}
.footer .subscribe__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--light--color);
  max-width: 480px;
}
@media (max-width: 1200px) {
  .footer .subscribe__title {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 992px) {
  .footer .subscribe__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.footer .subscribe__form {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .footer .subscribe__form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer .subscribe__form form {
  position: relative;
  width: 460px;
}
@media (max-width: 480px) {
  .footer .subscribe__form form {
    width: 100%;
  }
}
.footer .subscribe__form label {
  width: 100%;
}
.footer .subscribe__form input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 10px 30px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--light--color);
  border-radius: 0 !important;
}
.footer .subscribe__form input::-webkit-input-placeholder {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .subscribe__form input::-moz-placeholder {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .subscribe__form input:-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .subscribe__form input::-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .subscribe__form input::placeholder {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 480px) {
  .footer .subscribe__form input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .subscribe__form input::-moz-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .subscribe__form input:-ms-input-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .subscribe__form input::-ms-input-placeholder {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .subscribe__form input::placeholder {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 992px) {
  .footer .subscribe__form input {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .footer .subscribe__form input {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px 10px 0;
  }
}
@media (max-width: 992px) {
  .footer .subscribe__form {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 100%;
    text-align: center;
  }
}
.footer .subscribe__btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .footer .subscribe__btn {
    width: 18px;
    height: 18px;
  }
}
.footer .subscribe__btn:hover {
  -webkit-transform: translate(5px, -12px);
  -ms-transform: translate(5px, -12px);
  transform: translate(5px, -12px);
}

.footer-login .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: transparent !important;
  padding-top: 0;
}
.footer-login .footer .footer__navigation, .footer-login .footer .subscribe {
  display: none;
}
.footer-login .footer .footer__copyright {
  border-top: 1px solid #0D4579;
}

.hero {
  padding-top: 240px;
  padding-bottom: 160px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-height: 500px;
}
@media (max-width: 992px) {
  .hero {
    padding-top: 180px;
  }
}
.hero__wrap {
  padding-left: 80px;
  position: relative;
}
.hero__wrap nav {
  margin-top: 10px;
}
.hero__wrap nav > ol {
  color: var(--light--color) !important;
}
.hero__wrap nav > ol > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero__wrap nav > ol > li::before {
  color: var(--light--color) !important;
}
.hero__wrap nav > ol > li > a {
  padding-top: 0;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  display: inline-block;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--light--color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.hero__wrap nav > ol > li > a:hover {
  color: var(--accent--color);
}
@media (max-width: 576px) {
  .hero__wrap nav > ol > li > a {
    font-size: 12px;
  }
}
.hero__wrap nav > ol > li.active {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light--color);
}
.hero__wrap nav > ol > li.active::before {
  color: var(--light--color);
}
@media (max-width: 576px) {
  .hero__wrap nav > ol > li.active {
    font-size: 12px;
  }
}
.hero__wrap:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 10px;
  height: calc(100% - 10px);
  background-color: var(--accent--color);
}
@media (max-width: 768px) {
  .hero__wrap {
    padding-left: 50px;
  }
}
@media (max-width: 576px) {
  .hero__wrap {
    padding-left: 30px;
  }
  .hero__wrap:after {
    width: 6px;
  }
}
.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 768px) {
  .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.filters__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.3333333333%;
  flex: 0 1 33.3333333333%;
}
@media (max-width: 768px) {
  .filters__item:last-child .select2 {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .filters__item {
    width: 100%;
  }
}
.filters__item .select2 {
  width: 100% !important;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .filters__item .select2 {
    margin-bottom: 15px;
  }
}
.filters__item .select2.select2-container--open .select2-selection {
  border-bottom: 1px solid #cccccc;
}
.filters__item .select2.select2-container--open .select2-selection__arrow {
  -webkit-transform-origin: 75% 50%;
  -ms-transform-origin: 75% 50%;
  transform-origin: 75% 50%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filters__item .select2-selection {
  border: none;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}
.filters__item .select2-selection__arrow {
  background-image: url("../img/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.filters__item .select2-selection__arrow > b {
  display: none !important;
}
.filters__item .select2-selection__rendered {
  padding-left: 0 !important;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
}
.filters__title {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}

.training {
  padding-top: 60px !important;
  padding-bottom: 230px !important;
}
@media (max-width: 1200px) {
  .training {
    padding-bottom: 150px !important;
  }
}
@media (max-width: 576px) {
  .training {
    padding-bottom: 100px !important;
  }
}
.training .cards {
  row-gap: 60px;
}

.individual {
  padding-top: 60px;
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .individual {
    padding-bottom: 100px;
  }
}
@media (max-width: 480px) {
  .individual {
    padding-bottom: 50px;
  }
}
.individual__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1300px) {
  .individual__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .individual__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.individual__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 890px;
  flex: 0 1 890px;
}
.individual__content h2 {
  margin-bottom: 10px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.individual__content h2:nth-of-type(2) {
  margin-top: 60px;
}
@media (max-width: 480px) {
  .individual__content h2 {
    font-size: 22px;
  }
}
.individual__content p {
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark--color);
}
.individual__content ul {
  margin-bottom: 16px;
  list-style: disc;
  padding-left: 32px;
}
.individual__content ul li {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: var(--dark--color);
}
@media (max-width: 1300px) {
  .individual__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 70%;
    flex: 0 1 70%;
  }
}
@media (max-width: 992px) {
  .individual__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.individual__booking {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 315px;
  flex: 0 1 315px;
}
@media (max-width: 1300px) {
  .individual__booking {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 70%;
    flex: 0 1 70%;
    max-width: 315px;
  }
}
@media (max-width: 992px) {
  .individual__booking {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 0 auto;
  }
}
.individual .accordion {
  margin-bottom: 60px;
}
.individual .accordion-item {
  border: none;
  border-top: 1px solid #DDDDDD;
}
.individual .accordion-item:last-child {
  border-bottom: 1px solid #DDDDDD;
}
.individual .accordion-item:first-of-type,
.individual .accordion-item:last-of-type {
  border-radius: 0 !important;
}
.individual .accordion-header {
  margin-bottom: 0;
}
.individual .accordion-button {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--dark--color) !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding-left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 0;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.individual .accordion-button:after {
  background-image: url("../img/plus.svg");
  background-size: 15px 15px;
  width: 15px !important;
  height: 15px !important;
}
.individual .accordion-button:not(.collapsed)::after {
  background-image: url("../img/minus.svg");
}
@media (max-width: 480px) {
  .individual .accordion-body {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.individual .accordion-button:not(.collapsed) {
  color: var(--dark--color) !important;
  background-color: transparent;
}
.individual .form {
  margin-top: 50px;
}
.individual .form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 15px 20px;
}
.individual .form__label:first-child {
  border: 1px solid var(--accent--color);
}
.individual .form__label > span {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  position: relative;
}
.individual .form__label > span:before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #dddddd;
  display: inline-block;
  border-radius: 50%;
  margin-right: 16px;
}
.individual .form__label > span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: var(--accent--color);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.66, 0.08, 0.83, 0.67);
  -o-transition: opacity 0.3s cubic-bezier(0.66, 0.08, 0.83, 0.67);
  transition: opacity 0.3s cubic-bezier(0.66, 0.08, 0.83, 0.67);
}
.individual .form__label input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.individual .form__label input[type=radio]:checked + span:after {
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.11, 0.83, 0.46, 0.97) 0.1s;
  -o-transition: opacity 0.3s cubic-bezier(0.11, 0.83, 0.46, 0.97) 0.1s;
  transition: opacity 0.3s cubic-bezier(0.11, 0.83, 0.46, 0.97) 0.1s;
}
.individual .form__startd-days {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark--color);
}
@media (max-width: 480px) {
  .individual .form__startd-days {
    font-size: 12px;
  }
}
.individual .form__startd-days a {
  font-family: "OpenSans";
  display: block;
  background-color: var(--accent--color);
  color: var(--light--color);
  font-style: normal;
  font-weight: 900;
  font-size: 8px;
  line-height: 12px;
  text-transform: uppercase;
  padding: 2px 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 2px;
  margin-top: 1px;
}
.individual .form__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 20px;
}
.individual .form__count-days {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  text-align: right;
}
.individual .form input[type=submit] {
  margin-top: 30px;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}
.individual .form-price {
  width: 80px;
  height: 30px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--light--color);
  background-image: url("../img/price-individual.png");
  background-size: 80px 30px;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 27px;
}
@media (max-width: 480px) {
  .individual .form-price {
    width: 60px;
    height: 25px;
    background-size: 60px 25px;
    font-size: 16px;
    line-height: 24px;
    padding-left: 22px;
  }
}
.individual .individual__contact-us {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 40px;
}
@media (max-width: 768px) {
  .individual .individual__contact-us {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .individual .individual__contact-us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.individual .individual__contact-us-title {
  max-width: 315px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--light--color);
}
@media (max-width: 1200px) {
  .individual .individual__contact-us-title {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .individual .individual__contact-us-title {
    font-size: 19px;
  }
}
@media (max-width: 576px) {
  .individual .individual__contact-us-title {
    max-width: none;
    text-align: center;
    margin-bottom: 15px;
  }
}
.individual .individual__contact-us-btn {
  padding: 8px 64px;
  cursor: pointer;
}
.individual .individual__contact-us-btn a {
  color: var(--light--color);
}
@media (max-width: 1200px) {
  .individual .individual__contact-us-btn {
    padding: 8px 45px;
  }
}
@media (max-width: 768px) {
  .individual .individual__contact-us-btn {
    padding: 8px 30px;
  }
}

.individual-testimonials {
  background-color: #F9F9F9 !important;
}

.books-page {
  padding-top: 90px !important;
  padding-bottom: 230px !important;
}
@media (max-width: 768px) {
  .books-page {
    padding-top: 40px !important;
    padding-bottom: 150px !important;
  }
}

.about {
  padding-top: 90px;
  padding-bottom: 230px;
}
@media (max-width: 992px) {
  .about {
    padding-top: 90px;
    padding-bottom: 150px;
  }
}
@media (max-width: 768px) {
  .about {
    padding-top: 60px;
  }
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 135px;
  -moz-column-gap: 135px;
  column-gap: 135px;
  margin-bottom: 90px;
}
.about__item:last-child {
  margin-bottom: 0;
}
.about__item:last-child .about__image {
  padding-right: 40px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.about__item:last-child .about__image:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 80%;
  background-color: var(--accent--color);
}
@media (max-width: 992px) {
  .about__item:last-child .about__image:after {
    right: -40px;
  }
}
@media (max-width: 992px) {
  .about__item:last-child .about__image {
    padding-right: 0;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
@media (max-width: 768px) {
  .about__item:last-child .about__image {
    max-width: 60%;
  }
  .about__item:last-child .about__image:after {
    content: none;
  }
}
@media (max-width: 480px) {
  .about__item:last-child .about__image {
    max-width: 80%;
  }
}
.about__item:first-child img {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .about__item:first-child img {
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .about__item {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .about__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .about__item {
    margin-bottom: 30px;
  }
}
.about__image {
  -ms-flex-preferred-size: 440px;
  flex-basis: 440px;
  position: relative;
  max-height: 500px;
}
.about__image img {
  height: 100%;
}
.about__image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 80%;
  background-color: var(--accent--color);
}
@media (max-width: 992px) {
  .about__image:after {
    left: -40px;
  }
}
@media (max-width: 1200px) {
  .about__image {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 440px;
  }
}
@media (max-width: 992px) {
  .about__image {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .about__image {
    margin-bottom: 0;
    max-width: 60%;
  }
  .about__image:after {
    content: none;
  }
}
@media (max-width: 480px) {
  .about__image {
    max-width: 80%;
  }
}
.about__content {
  -ms-flex-preferred-size: calc(100% - 491px);
  flex-basis: calc(100% - 491px);
}
@media (max-width: 768px) {
  .about__content {
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
  .about__content {
    padding: 25px 5px;
    border-color: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.about__content p {
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  color: var(--dark--color);
}
.about__content p:last-of-type {
  margin-bottom: 0;
}
.about__title {
  margin-bottom: 20px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 992px) {
  .about__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .about__title {
    font-size: 25px;
    line-height: 30px;
  }
}
.login {
  height: 100vh;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.login__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--light--color);
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .login__title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .login__title {
    font-size: 25px;
    line-height: 30px;
  }
}
.login .form-login {
  max-width: 550px;
  padding: 80px;
  background-color: rgba(0, 0, 0, 0.5);
}
.login .form-login * {
  display: block;
}
.login .form-login input:not([type=submit]) {
  border: none;
  outline: none;
  width: 100%;
  background-color: transparent;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--light--color);
  padding: 5px 10px 5px 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  border-radius: 0 !important;
}
.login .form-login input:not([type=submit])::-webkit-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.3);
}
.login .form-login input:not([type=submit])::-moz-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.3);
}
.login .form-login input:not([type=submit]):-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.3);
}
.login .form-login input:not([type=submit])::-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.3);
}
.login .form-login input:not([type=submit])::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.3);
}
.login .form-login input[type=submit] {
  background-color: transparent;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-bottom: 30px;
}
.login .form-login input[type=submit]:hover {
  background-color: var(--accent--color);
}
.login .form-login label span {
  margin-bottom: 5px;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--light--color);
}
.login .form-login label:first-of-type input {
  margin-bottom: 30px;
}
.login .form-login label:last-of-type input {
  margin-bottom: 20px;
}
.login .form-login__forgot {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-decoration: underline !important;
  color: var(--light--color);
  margin-bottom: 28px;
}
.login .form-login__forgot:hover {
  text-decoration: none !important;
}
.login .form-login__create {
  text-align: center;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #CCCCCC;
}
.login .form-login__link {
  display: inline-block;
  color: var(--light--color);
}
.login .form-login__link:hover {
  text-decoration: underline !important;
}
@media (max-width: 1400px) {
  .login .form-login {
    padding: 60px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .login .form-login {
    padding: 50px 40px;
  }
}
@media (max-width: 480px) {
  .login .form-login {
    padding: 30px 25px;
  }
}

.create {
  padding-top: 60px;
  padding-bottom: 230px;
}
@media (max-width: 768px) {
  .create {
    padding-bottom: 150px;
  }
}
.create__form {
  max-width: 890px;
  margin: 0 auto;
}
.create__form form {
  margin-top: 60px;
}
.create__form form input:not([type=submit]) {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 5px 10px 5px 0;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  border-radius: 0 !important;
}
.create__form form input:not([type=submit])::-webkit-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.create__form form input:not([type=submit])::-moz-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.create__form form input:not([type=submit]):-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.create__form form input:not([type=submit])::-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.create__form form input:not([type=submit])::placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.create__form form input:not([type=password], [type=submit], [type=checkbox]) {
  margin-bottom: 30px;
}
.create__form form input[type=password] {
  margin-bottom: 20px;
}
.create__form form input[type=checkbox] {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.create__form form label {
  width: 100%;
}
.create__form form label > span {
  display: block;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.create__form input[type=submit] {
  display: block;
  margin: 40px auto 0;
  background-color: transparent;
  color: var(--dark--color);
  padding: 8px 85px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.create__form input[type=submit]:hover {
  background-color: var(--accent--color);
  -webkit-box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  color: var(--light--color);
}
@media (max-width: 768px) {
  .create__form input[type=submit] {
    padding: 8px 45px;
  }
}
@media (max-width: 480px) {
  .create__form input[type=submit] {
    width: 100%;
  }
}
.create__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
  text-align: center;
}
.create__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 576px) {
  .create__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.create__group:last-of-type label:first-child input {
  margin-bottom: 30px;
}
.create__label-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--dark--color);
}
.create__label-checkbox a {
  display: inline-block;
  margin-left: 5px;
  text-decoration: underline !important;
  color: var(--dark--color);
}
.create__label-checkbox a:hover {
  text-decoration: none !important;
}
.create__label-checkbox input {
  width: 0px;
  height: 0px;
  opacity: 0;
  display: none;
}
.create__label-checkbox input:checked + span:after {
  opacity: 1;
}
.create__label-checkbox > span {
  width: 16px;
  height: 16px;
  border: 1px solid #cccccc;
  position: relative;
  margin-right: 14px;
}
.create__label-checkbox > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent--color);
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.reset {
  padding-top: 60px;
  padding-bottom: 230px;
}
@media (max-width: 768px) {
  .reset {
    padding-bottom: 150px;
  }
}
.reset__form {
  max-width: 430px;
  margin: 0 auto;
}
.reset__form form {
  margin-top: 30px;
}
.reset__form form input {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 5px 10px 5px 0;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  border-radius: 0 !important;
}
.reset__form form input::-webkit-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.reset__form form input::-moz-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.reset__form form input:-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.reset__form form input::-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.reset__form form input::placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.reset__form form label {
  width: 100%;
}
.reset__form form label > span {
  display: block;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.reset__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
  text-align: center;
}
.reset__subtitle {
  margin-top: 20px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--dark--color);
}
.reset__btn {
  display: block;
  margin: 70px auto 0 auto;
  background-color: transparent;
  color: var(--dark--color);
  padding: 8px 85px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.reset__btn:hover {
  background-color: var(--accent--color);
  -webkit-box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  color: var(--light--color);
}
@media (max-width: 768px) {
  .reset__btn {
    padding: 8px 45px;
  }
}
@media (max-width: 480px) {
  .reset__btn {
    width: 100%;
    margin-top: 50px;
  }
}

.contact {
  padding-top: 60px;
  padding-bottom: 230px;
}
@media (max-width: 768px) {
  .contact {
    padding-bottom: 150px;
  }
}
.contact__form {
  max-width: 890px;
  margin: 0 auto;
}
.contact__form form {
  margin-top: 60px;
}
.contact__form form input:not([type=submit]), .contact__form form textarea, .contact__form form select {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 5px 10px 5px 0;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  border-radius: 0 !important;
}
.contact__form form input:not([type=submit])::-webkit-input-placeholder, .contact__form form textarea::-webkit-input-placeholder, .contact__form form select::-webkit-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form input:not([type=submit])::-moz-placeholder, .contact__form form textarea::-moz-placeholder, .contact__form form select::-moz-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form input:not([type=submit]):-ms-input-placeholder, .contact__form form textarea:-ms-input-placeholder, .contact__form form select:-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form input:not([type=submit])::-ms-input-placeholder, .contact__form form textarea::-ms-input-placeholder, .contact__form form select::-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form input:not([type=submit])::placeholder, .contact__form form textarea::placeholder, .contact__form form select::placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.contact__form form input:not([type=submit]) {
  margin-bottom: 30px;
}
.contact__form form label {
  width: 100%;
}
.contact__form form label > span {
  display: block;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.contact__form form textarea {
  resize: vertical;
  height: 100px !important;
}
.contact__form form .select2 {
  width: 100% !important;
  margin-top: 5px;
  margin-bottom: 30px;
  text-transform: none;
}
.contact__form form .select2.select2-container--open .select2-selection {
  border-bottom: 1px solid #cccccc;
}
.contact__form form .select2.select2-container--open .select2-selection__arrow {
  -webkit-transform-origin: 75% 50%;
  -ms-transform-origin: 75% 50%;
  transform-origin: 75% 50%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.contact__form form .select2-selection {
  border: none;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}
.contact__form form .select2-selection__arrow {
  background-image: url("../img/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact__form form .select2-selection__arrow > b {
  display: none !important;
}
.contact__form form .select2-selection__rendered {
  padding-left: 0 !important;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
}
@media (max-width: 768px) {
  .contact__form form {
    margin-top: 40px;
  }
}
.contact__form input[type=submit] {
  display: block;
  margin: 60px auto 0;
  background-color: transparent;
  color: var(--dark--color);
  padding: 8px 122px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact__form input[type=submit]:hover {
  background-color: var(--accent--color);
  -webkit-box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  color: var(--light--color);
}
@media (max-width: 768px) {
  .contact__form input[type=submit] {
    padding: 8px 80px;
  }
}
@media (max-width: 480px) {
  .contact__form input[type=submit] {
    width: 100%;
  }
}
.contact__form .tabs__header {
  margin: 30px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--accent--color);
  border: 2px solid #268BE8;
  border-radius: 5px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .contact__form .tabs__header {
    margin-top: 20px;
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .contact__form .tabs__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 350px;
  }
}
.contact__form .tabs__item {
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.contact__form .tabs__item.active {
  background-color: var(--accent--color);
  color: var(--light--color);
}
.contact__form .tabs__info {
  display: none;
}
.contact__form .tabs__info.active {
  display: block;
}
.contact__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
  text-align: center;
}
@media (max-width: 480px) {
  .contact__title {
    line-height: 30px;
  }
}
.contact__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 576px) {
  .contact__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.private {
  padding-top: 60px;
  padding-bottom: 230px;
}
@media (max-width: 768px) {
  .private {
    padding-bottom: 150px;
  }
}
.private__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 992px) {
  .private__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.private__about {
  max-width: 775px;
}
.private__about > p {
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .private__about > p {
    margin-top: 20px;
  }
}
.private__about > ul > li {
  position: relative;
  padding-left: 20px;
}
.private__about > ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: var(--dark--color);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .private__about {
    max-width: 100%;
  }
}
.private__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 480px) {
  .private__title {
    line-height: 30px;
  }
}
.private__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--dark--color);
  margin-top: 10px;
}
@media (max-width: 576px) {
  .private__subtitle {
    line-height: 25px;
  }
}
.private__form {
  max-width: 545px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 40px 40px 64px 40px;
  background-color: #F9F9F9;
}
.private__form .private__title {
  text-align: center;
}
.private__form form {
  margin-top: 40px;
}
.private__form form input:not([type=submit]), .private__form form textarea {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 5px 10px 5px 0;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  background-color: #F9F9F9;
  border-radius: 0 !important;
}
.private__form form input:not([type=submit])::-webkit-input-placeholder, .private__form form textarea::-webkit-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.private__form form input:not([type=submit])::-moz-placeholder, .private__form form textarea::-moz-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.private__form form input:not([type=submit]):-ms-input-placeholder, .private__form form textarea:-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.private__form form input:not([type=submit])::-ms-input-placeholder, .private__form form textarea::-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.private__form form input:not([type=submit])::placeholder, .private__form form textarea::placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.private__form form input:not([type=submit]) {
  margin-bottom: 30px;
}
.private__form form label {
  width: 100%;
}
.private__form form label > span {
  display: block;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.private__form form textarea {
  resize: vertical;
  height: 100px !important;
}
@media (max-width: 576px) {
  .private__form form {
    margin-top: 25px;
  }
}
.private__form input[type=submit] {
  display: block;
  margin: 60px auto 0;
  background-color: transparent;
  color: var(--dark--color);
  padding: 8px 122px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.private__form input[type=submit]:hover {
  background-color: var(--accent--color);
  -webkit-box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  color: var(--light--color);
}
@media (max-width: 768px) {
  .private__form input[type=submit] {
    padding: 8px 80px;
  }
}
@media (max-width: 480px) {
  .private__form input[type=submit] {
    margin-top: 40px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .private__form {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .private__form {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .private__form {
    padding: 20px 10px;
  }
}
.profile {
  padding-top: 190px;
  padding-bottom: 230px;
  /* Tooltip container */
  /* Tooltip text */
  /* Tooltip arrow */
  /* Show the tooltip text when you mouse over the tooltip container */
}
@media (max-width: 768px) {
  .profile {
    padding-top: 140px;
    padding-bottom: 150px;
  }
}
.profile__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 110px;
  -moz-column-gap: 110px;
  column-gap: 110px;
}
@media (max-width: 1200px) {
  .profile__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 768px) {
  .profile__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.profile__activity {
  padding: 50px 50px 40px 50px;
  background-color: #F9F9F9;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 350px;
  flex: 0 1 350px;
  max-width: 350px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.profile__activity:hover {
  border-color: var(--light--color);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
.profile__activity > button {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 80px;
}
@media (max-width: 480px) {
  .profile__activity > button {
    margin-top: 60px;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}
@media (max-width: 992px) {
  .profile__activity {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 280px;
    flex: 0 1 280px;
    max-width: 280px;
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .profile__activity {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 1 100% !important;
    flex: 0 1 100% !important;
    max-width: none;
    min-width: 350px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    margin: 0 auto 40px auto;
    padding: 50px 50px 40px 50px;
  }
}
@media (max-width: 480px) {
  .profile__activity {
    min-width: 100%;
    width: 100%;
  }
}
.profile__avatar {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 0 auto;
  position: relative;
}
.profile__avatar input[type=file] {
  display: none;
}
.profile__avatar label {
  background-image: url("../img/edit-button.svg");
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
  cursor: pointer;
}
.profile__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.profile__name {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: var(--dark--color);
  margin-top: 25px;
}
.profile__cloud {
  font-family: "OpenSans";
  display: block;
  background-color: var(--accent--color);
  color: var(--light--color);
  font-style: normal;
  font-weight: 900;
  font-size: 8px;
  line-height: 12px;
  text-transform: uppercase;
  padding: 2px 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-radius: 2px;
  margin: 10px auto 0 auto;
}
.profile__cloud:hover {
  color: var(--light--color);
}
.profile__account-profile {
  display: block;
  margin-top: 20px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--accent--color);
}
.profile__account-profile:hover {
  color: var(--accent--color);
}
.profile__my-orders {
  display: block;
  margin-top: 10px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.profile__my-orders:hover {
  color: var(--dark--color);
}
.profile__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 460px);
  flex: 0 1 calc(100% - 460px);
}
.profile__form form {
  margin-top: 30px;
}
.profile__form form input:not([type=submit]) {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 5px 10px 5px 0;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  border-radius: 0 !important;
}
.profile__form form input:not([type=submit])::-webkit-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.profile__form form input:not([type=submit])::-moz-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.profile__form form input:not([type=submit]):-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.profile__form form input:not([type=submit])::-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.profile__form form input:not([type=submit])::placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: rgba(51, 51, 51, 0.5);
}
.profile__form form input:not([type=password], [type=submit], [type=checkbox]) {
  margin-bottom: 30px;
}
.profile__form form input[type=password] {
  margin-bottom: 20px;
}
.profile__form form input[type=checkbox] {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.profile__form form label {
  width: 100%;
}
.profile__form form label > span {
  display: block;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.profile__form input[type=submit] {
  display: block;
  margin: 40px auto 0;
  background-color: transparent;
  color: var(--dark--color);
  padding: 8px 85px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.profile__form input[type=submit]:hover {
  background-color: var(--accent--color);
  -webkit-box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  box-shadow: 0 0 15px rgba(38, 139, 232, 0.6);
  color: var(--light--color);
}
@media (max-width: 768px) {
  .profile__form input[type=submit] {
    padding: 8px 45px;
  }
}
@media (max-width: 480px) {
  .profile__form input[type=submit] {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .profile__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 330px);
    flex: 0 1 calc(100% - 330px);
  }
}
@media (max-width: 768px) {
  .profile__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.profile__form nav {
  margin-top: 30px;
}
.profile__form nav .pagination {
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.profile__form nav .pagination .page-link {
  width: 40px;
  height: 40px;
  border: 2px solid #CCCCCC;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #999999;
}
.profile__form nav .pagination .page-link:hover {
  background-color: transparent !important;
  border: 2px solid var(--accent--color) !important;
}
.profile__form nav .pagination .page-link.active {
  border: 2px solid var(--accent--color) !important;
}
@media (max-width: 768px) {
  .profile__form nav .pagination .page-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
    line-height: 22px;
  }
}
.profile__form nav .pagination .page-item:first-child .page-link, .profile__form nav .pagination .page-item:last-child .page-link {
  border: 2px solid #CCCCCC;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .profile__form nav .pagination {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
.profile__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 768px) {
  .profile__title {
    text-align: center;
  }
}
.profile__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 576px) {
  .profile__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.profile .copy-link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile .copy-link__wrap span {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.profile .tooltip__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile .tooltip__wrap span {
  margin-left: 10px;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  cursor: pointer;
}
.profile .tooltips {
  margin-left: 10px;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  display: inline-block;
  cursor: pointer;
}
.profile .tooltips .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #ffffff;
  color: var(--dark--color);
  text-align: center;
  padding: 15px 10px;
  -webkit-filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.4));
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 0%;
  margin-left: -140px;
  /* Fade in tooltip */
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 576px) {
  .profile .tooltips .tooltiptext {
    width: 180px;
    font-size: 14px;
    padding: 10px;
  }
}
.profile .tooltips .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 148px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
@media (max-width: 576px) {
  .profile .tooltips .tooltiptext::after {
    left: 148px;
  }
}
.profile .tooltips:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.profile__referal {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.profile__example {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
}
.profile__example:hover {
  text-decoration: underline !important;
  color: var(--dark--color);
}
.profile__btns {
  margin-top: 40px;
}
.profile__btns button:first-child {
  padding: 8px 60px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-right: 10px;
}
.profile__btns button:first-child:hover {
  background-color: var(--accent--color);
}
@media (max-width: 992px) {
  .profile__btns button:first-child {
    padding: 8px 40px;
  }
}
.profile__btns button:last-child {
  padding: 8px 60px;
  background-color: transparent;
}
@media (max-width: 768px) {
  .profile__btns {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .profile__btns button {
    width: 100%;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .profile__btns button:first-child {
    margin-bottom: 10px;
  }
}
.profile__orders {
  margin-top: 30px !important;
}
.profile__orders > ul > li {
  padding: 10px 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: var(--dark--color);
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.profile__orders > ul > li:hover {
  background-color: #F9F9F9;
}
.profile__orders > ul > li:hover .profile__order, .profile__orders > ul > li:hover .profile__date {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}
.profile__orders > ul > li:first-child {
  background-color: #F9F9F9;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark--color);
  border-bottom: none;
}
.profile__orders > ul > li:first-child .profile__zoom-link {
  color: var(--dark--color);
}
@media (max-width: 992px) {
  .profile__orders > ul > li {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .profile__orders > ul {
    width: 570px;
  }
}
@media (max-width: 480px) {
  .profile__orders > ul {
    width: 500px;
  }
}
@media (max-width: 576px) {
  .profile__orders {
    overflow-x: auto;
  }
}
.profile__order {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  padding-left: 20px !important;
}
@media (max-width: 992px) {
  .profile__order {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    padding-left: 10px !important;
  }
}
.profile__date {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
}
@media (max-width: 992px) {
  .profile__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
  }
}
.profile__zoom-link {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  color: var(--accent--color);
}
.profile__zoom-link:hover {
  text-decoration: underline !important;
}

.cart {
  padding-top: 190px;
  padding-bottom: 230px;
}
@media (max-width: 768px) {
  .cart {
    padding-top: 140px;
    padding-bottom: 150px;
  }
}
.cart__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 768px) {
  .cart__title {
    text-align: center;
  }
}
.cart__list {
  margin-top: 40px;
}
.cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.cart__item:first-child {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--dark--color);
  background-color: #F9F9F9;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 480px) {
  .cart__item:first-child {
    display: none;
  }
}
.cart__item:not(:first-child) {
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}
@media (max-width: 480px) {
  .cart__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 30% 30%;
    grid-template-columns: 40% 30% 30%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
}
@media (max-width: 480px) {
  .cart__item:nth-child(2) {
    border-top: 1px solid rgba(204, 204, 204, 0.3);
  }
}
.cart__training {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33%;
  flex: 0 1 33%;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 992px) {
  .cart__training {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
}
@media (max-width: 768px) {
  .cart__training {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 35%;
    flex: 0 1 35%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 10px;
  }
}
@media (max-width: 480px) {
  .cart__training {
    padding-left: 0;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
.cart__start {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 28%;
  flex: 0 1 28%;
}
@media (max-width: 992px) {
  .cart__start {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 21%;
    flex: 0 1 21%;
  }
}
@media (max-width: 768px) {
  .cart__start {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 20%;
    flex: 0 1 20%;
  }
}
@media (max-width: 480px) {
  .cart__start {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.cart__persons {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 22%;
  flex: 0 1 22%;
}
@media (max-width: 768px) {
  .cart__persons {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 20%;
    flex: 0 1 20%;
  }
}
@media (max-width: 480px) {
  .cart__persons {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.cart__price {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 12%;
  flex: 0 1 12%;
}
.cart__price-price {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: var(--accent--color);
}
@media (max-width: 768px) {
  .cart__price {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 20%;
    flex: 0 1 20%;
  }
}
@media (max-width: 480px) {
  .cart__price {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}
.cart__delete {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 5%;
  flex: 0 1 5%;
  cursor: pointer;
}
@media (max-width: 480px) {
  .cart__delete {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    text-align: right;
    align-self: flex-start;
  }
}
.cart__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 82px;
  height: 60px;
}
.cart__image img {
  width: 82px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cart__image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 10px;
  }
}
.cart__name {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark--color);
  max-width: 135px;
}
.cart__name:hover {
  text-decoration: underline !important;
}
@media (max-width: 768px) {
  .cart__name {
    line-height: 16px;
  }
}
@media (max-width: 480px) {
  .cart__name {
    font-size: 12px;
    max-width: 80%;
  }
}
.cart__date {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark--color);
}
@media (max-width: 480px) {
  .cart__date {
    font-size: 12px;
    line-height: 18px;
  }
}
.cart__counter {
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  width: 80px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart__counter button {
  outline: none;
  border: none;
  background-color: transparent !important;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #CCCCCC;
}
.cart__counter input {
  width: 100%;
  outline: none;
  border: none;
  text-align: center;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--dark--color);
  border-radius: 0 !important;
}
.cart__counter input[type=number] {
  -moz-appearance: textfield;
}
.cart__counter input::-webkit-outer-spin-button,
.cart__counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.cart__prices {
  margin-top: 30px;
  max-width: 315px;
  margin-left: auto;
}
@media (max-width: 480px) {
  .cart__prices {
    max-width: none;
  }
}
.cart__item-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: var(--dark--color);
  margin-bottom: 10px;
}
.cart__item-prices:last-child {
  margin-bottom: 0;
}
.cart__vat-name {
  text-transform: uppercase;
}
.cart__total-name {
  font-size: 18px;
  color: var(--accent--color);
}
.cart__total-price {
  font-size: 18px;
  color: var(--accent--color);
}
.cart__buttons {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cart__buttons {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .cart__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }
}
.cart__btn:first-child {
  padding: 8px 85px;
}
.cart__btn:last-child {
  padding: 8px 115px;
  background-color: transparent !important;
}
.cart__btn:last-child:hover {
  background-color: var(--accent--color) !important;
}
@media (max-width: 768px) {
  .cart__btn {
    padding: 6px 0 !important;
    width: 100%;
  }
}

.checkout {
  padding-top: 190px;
  padding-bottom: 230px;
  /* Tooltip container */
  /* Tooltip text */
  /* Tooltip arrow */
  /* Show the tooltip text when you mouse over the tooltip container */
}
@media (max-width: 768px) {
  .checkout {
    padding-top: 140px;
    padding-bottom: 150px;
  }
}
.checkout__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 110px;
  -moz-column-gap: 110px;
  column-gap: 110px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .checkout__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 1200px) {
  .checkout__wrap {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 768px) {
  .checkout__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.checkout__pay {
  -ms-flex-preferred-size: 890px;
  flex-basis: 890px;
}
@media (max-width: 1400px) {
  .checkout__pay {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
  }
}
@media (max-width: 992px) {
  .checkout__pay {
    -ms-flex-preferred-size: 58%;
    flex-basis: 58%;
  }
}
@media (max-width: 768px) {
  .checkout__pay {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.checkout__title {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.checkout__form {
  margin-top: 30px;
}
.checkout__form input, .checkout__form label {
  width: 100%;
}
.checkout__form input {
  outline: none;
  border: none;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
  margin-bottom: 30px;
  border-radius: 0 !important;
}
.checkout__form input::-webkit-input-placeholder {
  color: #cccccc;
}
.checkout__form input::-moz-placeholder {
  color: #cccccc;
}
.checkout__form input:-ms-input-placeholder {
  color: #cccccc;
}
.checkout__form input::-ms-input-placeholder {
  color: #cccccc;
}
.checkout__form input::placeholder {
  color: #cccccc;
}
.checkout__form form > .checkout__label-div {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(204, 204, 204, 0.3);
  padding: 20px 30px;
  cursor: pointer;
}
.checkout__form form > .checkout__label-div:last-child {
  margin-bottom: 0;
}
.checkout__form form > .checkout__label-div .card-images {
  position: absolute;
  top: 20px;
  right: 30px;
}
@media (max-width: 576px) {
  .checkout__form form > .checkout__label-div .card-images {
    top: 10px;
    right: 10px;
    width: 70px;
  }
}
.checkout__form form > .checkout__label-div > span {
  width: 30px;
  height: 30px;
  position: relative;
}
@media (max-width: 480px) {
  .checkout__form form > .checkout__label-div > span {
    width: 24px;
    height: 24px;
  }
}
.checkout__form form > .checkout__label-div > span:before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #dddddd;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .checkout__form form > .checkout__label-div > span:before {
    width: 24px;
    height: 24px;
  }
}
.checkout__form form > .checkout__label-div > span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: var(--accent--color);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.66, 0.08, 0.83, 0.67);
  -o-transition: opacity 0.3s cubic-bezier(0.66, 0.08, 0.83, 0.67);
  transition: opacity 0.3s cubic-bezier(0.66, 0.08, 0.83, 0.67);
}
@media (max-width: 480px) {
  .checkout__form form > .checkout__label-div > span:after {
    width: 12px;
    height: 12px;
  }
}
.checkout__form form > .checkout__label-div input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.checkout__form form > .checkout__label-div input[type=radio]:checked + span:after {
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.11, 0.83, 0.46, 0.97) 0.1s;
  -o-transition: opacity 0.3s cubic-bezier(0.11, 0.83, 0.46, 0.97) 0.1s;
  transition: opacity 0.3s cubic-bezier(0.11, 0.83, 0.46, 0.97) 0.1s;
}
.checkout__form form > .checkout__label-div input[type=radio]:checked + span:before {
  border: 1px solid var(--accent--color);
}
@media (max-width: 1200px) {
  .checkout__form form > .checkout__label-div {
    padding: 20px 15px;
  }
}
@media (max-width: 480px) {
  .checkout__form form > .checkout__label-div {
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
}
.checkout__form form span {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: var(--dark--color);
}
.checkout .tooltip__wrap span {
  cursor: pointer;
}
.checkout .tooltips {
  width: 14px;
  height: 14px;
  margin-left: 5px;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  display: inline-block;
  cursor: pointer;
}
.checkout .tooltips .tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: #ffffff;
  color: var(--dark--color);
  text-align: center;
  padding: 15px 10px;
  -webkit-filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.4));
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 0%;
  margin-left: -140px;
  /* Fade in tooltip */
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 576px) {
  .checkout .tooltips .tooltiptext {
    width: 180px;
    font-size: 14px;
    padding: 10px;
  }
}
.checkout .tooltips .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 148px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
@media (max-width: 576px) {
  .checkout .tooltips .tooltiptext::after {
    left: 148px;
  }
}
.checkout .tooltips:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.checkout__inputs-wrap {
  max-width: 700px;
}
.checkout__name {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--dark--color);
}
@media (max-width: 480px) {
  .checkout__name {
    margin-left: 10px;
  }
}
.checkout__descr {
  margin-top: 5px;
  margin-bottom: 35px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}
@media (max-width: 1200px) {
  .checkout__descr {
    max-width: 350px;
  }
}
.checkout__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.checkout__label-wrap label:first-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 62.5%;
  flex: 0 1 62.5%;
}
.checkout__label-wrap label {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 18.75%;
  flex: 0 1 18.75%;
}
@media (max-width: 992px) {
  .checkout__label-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.checkout__buttons {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 890px;
}
@media (max-width: 1400px) {
  .checkout__buttons {
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 480px) {
  .checkout__buttons {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }
}
.checkout__btn:first-child {
  padding: 8px 65px;
}
.checkout__btn:last-child {
  padding: 8px 90px;
  background-color: transparent;
}
.checkout__btn:last-child:hover {
  background-color: var(--accent--color) !important;
}
@media (max-width: 768px) {
  .checkout__btn {
    padding-right: 0 !important;
    padding-left: 0 !important;
    width: 100%;
  }
}
.checkout__order {
  -ms-flex-preferred-size: calc(100% - 1000px);
  flex-basis: calc(100% - 1000px);
  background-color: #F9F9F9;
  padding: 20px 30px;
}
@media (max-width: 1400px) {
  .checkout__order {
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
  }
}
@media (max-width: 992px) {
  .checkout__order {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-flex-preferred-size: 42%;
    flex-basis: 42%;
    padding: 20px 20px 100px 20px;
  }
}
@media (max-width: 768px) {
  .checkout__order {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    margin-bottom: 40px;
  }
}
.checkout__order-list {
  margin-top: 20px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}
.checkout__order-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 20px;
}
.checkout__image {
  width: 82px;
  height: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 82px;
  flex: 0 1 82px;
}
.checkout__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.checkout__order-descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 102px);
  flex: 0 1 calc(100% - 102px);
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--dark--color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 3px;
}
.checkout__order-descr a {
  color: var(--dark--color);
}
.checkout__order-descr a:hover {
  text-decoration: underline !important;
}
.checkout__prices {
  margin-top: 20px;
}
.checkout__item-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: "Kanit";
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: var(--dark--color);
}
.checkout__item-prices:last-child {
  margin-bottom: 0;
}
.checkout__vat-name {
  text-transform: uppercase;
}
.checkout__total-name {
  font-size: 18px;
  color: var(--accent--color);
}
.checkout__total-price {
  font-size: 18px;
  color: var(--accent--color);
}
/*# sourceMappingURL=main.css.map */