:root {
  --font-family-text: 'PT Sans', sans-serif;
  --font-family-heading: 'Open Sans', sans-serif;

  --color-text: #272c2e;
  --color-heading: #102a33;
  --color-link: #005F83;
  --color-link-hover: #004863;
  
  --color-white: #fff;
  --color-black: #000;
  --color-blue-dark: #1d3557;
  --color-blue-light: #457b9d;
  --color-orient: #005F83;
  --color-orient-hover: #004863;
  --color-aqua: #cdeaeb;
  --color-aqua-light: #eef6f7;
  --color-mint: #eef4fa;
  --color-red: #e63946;
  --color-red-hard: #c02936;
  --color-gray: #747687;
}



/* BG's */
.bg-standart {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-white {
  background-color: var(--color-white);
}
.bg-orient {
  background-color: var(--color-orient);
}
.bg-aqua {
  background-color: var(--color-aqua);
}
.bg-red {
  background-color: var(--color-red);
}



/* General Normilize */
input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}
button {
  cursor: pointer;
}



/* General */
html {
  font-family: var(--font-family-text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-mint);
  box-sizing: border-box;
  height: 100vh;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-size: 1em;
  overflow: hidden;
}

@media (min-width: 825px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 1023px) {
  html.st--nav-open {
    overflow: hidden;
  }
}

@media (min-width: 1250px) {
  html {
    font-size: 19px;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 20px;
  }
}



/* Typogrphy */
h1, .h1, h2, .h2,
h3, .h3, h4, .h4,
h5, .h5 {
  font-family: var(--font-family-heading);
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-heading);
  transition: color .2s ease-in-out;
}

h1, .h1 {
  font-size: 2.3rem;
  font-weight: 900;
}
h2, .h2 {
  font-size: 1.95rem;
  font-weight: 900;
}
h3, .h3 {
  font-size: 1.75rem;
  font-weight: 700;
}
h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}
h5, .h5 {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 700;
}
h6, .h6 {
  font-size: 1.07rem;
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin: 0;
  transition: color .2s ease-in-out;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.image {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color .1s ease-in-out;
  font-weight: 700;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

@media (min-width: 825px) {
  h1, .h1 {
    font-size: 3.75rem;
  }
  h2, .h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1250px) {
  h1, .h1 {
    font-size: 5rem;
  }
  h2, .h2 {
    font-size: 3rem;
  }
  h3, .h3 {
    font-size: 2.25rem;
  }
  h4, .h4 {
    font-size: 1.75rem;
  }
  h5, .h5 {
    font-size: 1.4rem;
  }
  h6, .h6 {
    font-size: 1.17rem;
  }
}



/* Colors */
body .c-white {
  color: var(--color-white);
}


/* Positions */
.p-r {
  position: relative;
}


/* Display */
.d-block {
  display: block;
}

.w-100 {
  width: 100%;
}


/* Z-Index */
.zi-1 {
  z-index: 1;
}


/* Align */
.ta-c {
  text-align: center;
}
.ta-r {
  text-align: right;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}



/* Text */
.ff-text {
  font-family: var(--font-family-text);
}
.ff-heading {
  font-family: var(--font-family-heading);
}
.fz-biggest {
  font-size: 1.28em;
  line-height: 1.4;
}
.fz-big {
  font-size: 1.17em;
  list-style: 1.5;
}
.fz-small {
  font-size: 0.85em;
  line-height: 1.4;
}
.fz-smallest {
  font-size: 0.77em;
  line-height: 1.4;
}
.fw-600 {
  font-weight: 600;
}
.fw-500 {
  font-weight: 500;
}
.fw-400 {
  font-weight: 400;
}
.lh-12 {
  line-height: 1.2;
}
.ts-1 {
  text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.6),
  0px 6px 10px rgba(0, 0, 0, 0.15),
  0px 15px 20px rgba(0, 0, 0, 0.15);
}
.ts-2 {
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6),
    0px 6px 10px rgba(0, 0, 0, 0.15),
    0px 15px 20px rgba(0, 0, 0, 0.15);
}



/* Content */
.max-cw {
  max-width: 600px;
}

@media (min-width: 1024px) {
  .max-cw {
    max-width: 720px;
  }
}



/* Margins */
.mt-d {
  margin-top: 26px;
}
.mb-d {
  margin-bottom: 26px;
}
.mt-b {
  margin-top: 32px;
}
.mb-b {
  margin-bottom: 32px;
}
.mt-s {
  margin-top: 15px;
}
.mb-s {
  margin-bottom: 15px;
}
.mt-sec {
  margin-top: 35px;
}
.mb-sec {
  margin-bottom: 35px;
}

@media (min-width: 460px) {
  .mt-sec {
    margin-top: 40px;
  }
  .mb-sec {
    margin-bottom: 40px;
  }
}

@media (min-width: 1250px) {
  .mt-d {
    margin-top: 34px;
  }
  .mb-d {
    margin-bottom: 34px;
  }
  .mt-b {
    margin-top: 56px;
  }
  .mb-b {
    margin-bottom: 56px;
  }
  .mt-s {
    margin-top: 20px;
  }
  .mb-s {
    margin-bottom: 20px;
  }
  .mt-sec {
    margin-top: 55px;
  }
  .mb-sec {
    margin-bottom: 55px;
  }
}

@media (min-width: 1600px) {
  .mt-sec {
    margin-top: 70px;
  }
  .mb-sec {
    margin-bottom: 70px;
  }
}



/* Paddings */
div.pt-0 {
  padding-top: 0;
}
div.pb-0 {
  padding-bottom: 0;
}



/* Image */
.image {
  display: block;
  width: 100%;
}



/* Section, Container */
.section {
  position: relative;
  padding-top: 35px;
  padding-bottom: 35px;
}
.section.section--pt-half {
  padding-top: 17px;
}
.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 460px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section.section--pt-half {
    padding-top: 20px;
  }
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1250px) {
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .section.section--pt-half {
    padding-top: 27px;
  }
}

@media (min-width: 1600px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section.section--pt-half {
    padding-top: 35px;
  }
}



/* Main */
.main {
  margin-top: 56px;
}

@media (min-width: 1024px) {
  .main {
    margin-top: 72px;
  }
}



/* Button */


/* Button Small */
.button {
  align-items: center;
  border: none;
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  padding: 18px 36px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-family-heading);
  text-align: center;
  text-decoration: none;
  transition: all .3s ease-in-out;
  vertical-align: middle;
  font-weight: 700;
}
.button:hover {
  text-decoration: none;
  background-color: var(--color-red-hard);
  color: var(--color-white);
}
.button.button--orient {
  background-color: var(--color-orient);
}
.button.button--orient:hover {
  background-color: var(--color-orient-hover);
}
.button--icon svg {
  fill: var(--color-white);
  width: 15px;
  height: 15px;
  margin-right: 13px;
}

@media (min-width: 825px) {
  .button {
    font-size: 0.9rem;
    padding: 20px 40px;
  }
}

@media (min-width: 1250px) {
  .button--icon svg {
    width: 16px;
    height: 16px;
    margin-right: 15px;
  }
}



/* CF */
.cf {
  display: block;
  padding: 30px;
  background-color: var(--color-white);
}
.cf__row {
  margin-bottom: 12px;
}
.cf__row--message {
  margin-bottom: 18px;
}
.cf__row:last-child {
  margin-bottom: 0;
}
.cf__row--buttons {
  display: flex;
  justify-content: space-between;
}
.cf__row--buttons button {
  width: 48%;
}
.cf__input {
  width: 100%;
  border: 1px solid var(--color-black);
  padding: 13px 20px 11px;
  line-height: 1.1;
  font-weight: 500;
  transition: border-color .3s ease-in-out;
}
.cf__input--textarea {
  display: block;
  min-width: 100%;
  max-width: 100%;
  height: 160px;
  max-height: 160px;
  min-height: 160px;
  line-height: 1.4;
}
.cf__input:focus {
  border-color: var(--color-black);
}
.cf__label {
  display: block;
  font-weight: 400;
  color: var(--color-text);
}
.cf__alert {
  display: block;
  color: red;
  font-weight: 400;
  font-size: 0.87rem;
}

@media (min-width: 1250px) {
  .cf {
    padding: 40px;
  }
  .cf__input,
  .cf__label {
    font-size: 0.87rem;
  }
  .cf__alert {
    font-size: 0.7rem;
  }
}


/* Calendly Widget */
.calendly-inline-widget,
.calendly-inline-widget *,
.calendly-badge-widget,
.calendly-badge-widget *,
.calendly-overlay,
.calendly-overlay * {
  font-size: 16px;
  line-height: 1.2em;
}
.calendly-inline-widget iframe, .calendly-badge-widget iframe, .calendly-overlay iframe {
  /*
  Values other than `display: inline` cause a scrolling bug on iOS where the underlying page
  scrolls instead of the iframe
  */
  display: inline;
  width: 100%;
  height: 100%;
}
.calendly-popup-content {
  /* Any updates in this section should be updated for inline mode */
  position: relative;
}
.calendly-popup-content.calendly-mobile {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.calendly-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 7;
  background-color: #a5a5a5;
  background-color: rgba(31, 31, 31, .4);
}
.calendly-overlay .calendly-close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.calendly-overlay .calendly-popup {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 80%;
  min-width: 900px;
  max-width: 1000px;
  height: 90%;
  max-height: 680px;
}
@media (max-width: 975px) {
  .calendly-overlay .calendly-popup {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: auto;
    min-width: 0;
    max-height: none
  }
}
.calendly-overlay .calendly-popup .calendly-popup-content {
  height: 100%;
}
.calendly-overlay .calendly-popup-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fff;
  width: 19px;
  height: 19px;
  cursor: pointer;
  background: url(../../assets/external/close-icon.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 975px) {
  .calendly-overlay .calendly-popup-close {
      top: 15px;
      right: 15px
  }
}
.calendly-badge-widget {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 6;
}
.calendly-badge-widget .calendly-badge-content {
  display: table-cell;
  width: auto;
  height: 45px;
  padding: 0 30px;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px;
  font-family: sans-serif;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.calendly-badge-widget .calendly-badge-content.calendly-white {
  color: #666a73;
}
.calendly-badge-widget .calendly-badge-content span {
  display: block;
  font-size: 12px;
}
.calendly-spinner {
  display: none;
}



/* Calendly Widget, Calendly Toggler */
.calendly-widget-toggler {
  display: flex;
}
.calendly-widget-toggler__item {
  width: 50%;
  text-align: center;
}
.calendly-widget-toggler__item:first-child {
  border-right: 1px solid #e4e4e4;
}
.calendly-widget-link {
  display: block;
  padding: 20px;
  transition: all .3s ease-in-out;
  background-color: #fff;
}
.calendly-widget-toggler__item:first-child .calendly-widget-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.calendly-widget-toggler__item:last-child .calendly-widget-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.calendly-widget-link {
  color: var(--color-heading);
  font-weight: 500;
}
.calendly-widget-link:hover {
  color: #005f83;
  text-decoration: none;
}
.calendly-widget-link.active {
  color: #005f83;
  background-color: #f2f7f9;
  text-decoration: none;
}
.calendly-widget {
	height: 932px;
}

@media (min-width: 1000px) {
	.calendly-widget {
		height: 795px;
	}
}



/* Intro */
.intro {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.intro .section {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 460px) {
  .intro .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 825px) {
  .intro .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (min-width: 1024px) {
  .intro .section {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}

@media (min-width: 1250px) {
  .intro .section {
    padding-top: 220px;
    padding-bottom: 220px;
  }
}



/* Logo */
.logo {
  position: relative;
  z-index: 9;
  display: inline-block;
  width: 64px;
  height: 46px;
  margin-top: 6px;
  margin-bottom: 6px;
}
.logo svg {
  width: 64px;
  height: 44px;
}
.logo__tm {
  position: absolute;
  top: -3px;
  right: -11px;
  font-size: 7px;
  color: var(--color-orient);
}
.logo--white .logo__tm {
  color: var(--color-orient);
}

@media (min-width: 1024px) {
  .logo {
    width: 87px;
    height: 63px;
  }
  .logo svg {
    width: 87px;
    height: 63px;
  }
}


/* Nav */
@media (max-width: 1023px) {
  .nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 100px;
    padding-bottom: 30px;
    position: absolute;
    z-index: 8;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100vh;
    background-color: var(--color-white);
    transform: translate3d(0, -150%, 0);
    transition: transform .3s ease-in-out .3s, padding .3s ease-in-out 0s;
  }
  .st--nav-open .nav {
    transform: translate3d(0, 0, 0);
    transition: transform .3s ease-in-out 0s, padding .3s ease-in-out .3s;
    padding-left: 6%;
    padding-right: 6%;
  }
  .nav-list {
    order: 1;
    margin-bottom: 60px;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-left: 24px;
  }
  .nav .nav-list {
    order: 1;
  }
}

@media (min-width: 1100px) {
  .nav {
    margin-left: 30px;
  }
}

@media (min-width: 1250px) {
  .nav {
    margin-left: 45px;
  }
}

@media (min-width: 1400px) {
  .nav {
    margin-left: 60px;
  }
}



/* Nav List */
@media (max-width: 1023px) {
  .nav-list li {
    margin-bottom: 10px;
  }
  .nav-list li:nth-last-child(2) {
    margin-top: 30px;
  }
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
    height: 100%;
  }
  .nav-list li:last-child {
    margin-right: 0;
  }
}



/* Nav Link */
.nav-link {
  font-family: var(--font-family-heading);
  letter-spacing: 0.5px;
  color: var(--color-heading);
  transition: all .2s ease-in-out;
  display: block;
  width: 100%;
}
.nav-link.active {
  text-decoration: none;
  font-weight: 700;
}
.nav-link:hover {
  text-decoration: none;
}

@media (max-width: 1023px) {
  .nav-link {
    font-size: 1.27em;
  }
  .nav-link--super {
    color: var(--color-white);
    background-color: var(--color-red);
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-link--super:hover {
    color: var(--color-white);
  }
  .nav-link--super.nav-link--super--orient {
    background-color: var(--color-orient);
  }
}

@media (min-width: 1024px) {
  .nav-link {
    font-size: 15px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    height: 100%;
    font-weight: 400;
    align-items: center;
    color: var(--color-heading);
  }
  .nav-link:hover {
    background-color: var(--color-aqua-light);
  }
  .nav-link.active {
    background-color: var(--color-aqua);
    font-weight: 700;
  }
  .nav-link--super {
    color: var(--color-white);
    background-color: var(--color-red);
    font-weight: 700;
  }
  .nav-link--super:hover {
    color: var(--color-white);
    background-color: var(--color-red-hard);
  }
  .nav-link--super.nav-link--super--orient {
    background-color: var(--color-orient);
  }
  .nav-link--super.nav-link--super--orient:hover {
    background-color: var(--color-orient-hover);
  }
}

@media (min-width: 1100px) {
  .nav-link {
    font-size: 17px;
  }
}

@media (min-width: 1250px) {
  .nav-link {
    font-size: 18px;
  }
}



/* Burger Button */
.burger-button {
  padding: 0;
  border: none;
  background-color: transparent;
  width: 56px;
  height: 56px;
  display: block;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.burger-button span {
  display: block;
  position: absolute;
  left: 16px;
  width: 24px;
  height: 2px;
  background-color: var(--color-heading);
  opacity: 1;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}
.burger-button span:nth-child(1) {
  top: 19px;
}
.burger-button span:nth-child(2) {
  top: 27px;
}
.burger-button span:nth-child(3) {
  top: 35px;
}
.st--nav-open .burger-button span:nth-child(1) {
  top: 28px;
  transform: rotate(135deg);
}
.st--nav-open .burger-button span:nth-child(2) {
  opacity: 0;
  left: -50px;
}
.st--nav-open .burger-button span:nth-child(3) {
  top: 28px;
  transform: rotate(-135deg);
}

@media (min-width: 1024px) {
  .burger-button {
    display: none;
  }
}



/* Header */
.header {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header .logo {
  margin-left: 20px;
}



/* Footer */
.footer {
  background-color: var(--color-heading);
  color: var(--color-white);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 26px;
}
.footer h4 {
  color: var(--color-aqua);
}
.footer a {
  color: #cfcfcf;
}
.footer a:hover {
  color: var(--color-white);
}
.footer .logo {
  cursor: default;
  pointer-events: none;
}
.footer .logo__tm {
  color: #cfcfcf;
}
.cpr {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #071418;
  color: var(--color-white);
}

@media (min-width: 600px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }
}

@media (min-width: 825px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* Link With Icon */
.link-with-icon {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.link-with-icon svg {
  width: 19px;
  height: 19px;
  margin-right: 5px;
  margin-bottom: 1px;
  fill: #cfcfcf;
}
.fz-small .link-with-icon svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 1300px) {
  .link-with-icon svg {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
  .fz-small .link-with-icon svg {
    width: 16px;
    height: 16px;
  }
}


/* Social List, Social Link */
.social-list {
  display: inline-flex;
}
.social-list li {
  margin-right: 10px;
}
.social-list li:last-child {
  margin-right: 0;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-orient);
  border-radius: 10px;
  transition: all .3s ease-in;
}
.social-link:hover {
  background-color: var(--color-heading);
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
  transition: fill .3s ease-in-out;
}
.social-link:hover svg {
  fill: var(--color-white);
}



/* Slark Card */
.slark-card {
  display: flex;
  flex-direction: column;
}
.slark-card:hover {
  text-decoration: none;
}
.slark-card:hover .slark-card__label {
  top: 50%;
  background-color: var(--color-red);
  color: var(--color-white);
}
.slark-card:hover .slark-card__header {
  background-color: var(--color-red);
}
.slark-card:hover .slark-card__title {
  color: var(--color-white);
}
.slark-card__header {
  flex: 1;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--color-aqua);
  text-align: center;
  padding: 10px 20px;
  transition: all .3s;
}
.slark-card__title {
  transition: all .3s;
}
.slark-card__main {
  position: relative;
}
.slark-card__label {
  position: absolute;
  z-index: 1;
  top: 90%;
  left: 50%;
  font-weight: 400;
  transform: translate(-50%, -50%);
  background-color: var(--color-aqua);
  padding: 5px 10px;
  color: var(--color-text);
  transition: all .3s;
}



/* Grid Shach */
.grid-shach>* {
  margin-bottom: 10px;
}
.grid-shach>*:last-child {
  margin-bottom: 0;
}
@media (min-width: 825px) {
  .grid-shach {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .grid-shach > * {
    width: 49.55%;
    margin-bottom: 7px;
  }
  .grid-shach>*:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .grid-shach>* {
    margin-bottom: 8px;
  }
}

@media (min-width: 1250px) {
  .grid-shach>* {
    margin-bottom: 11px;
  }
}



/* Featured Products Slider */
.fp-slider-wrapper {
  padding-left: 32px;
  padding-right: 32px;
}
.fp-slider-wrapper .swiper-button-prev {
  left: 10px;
  top: 55%;
}
.fp-slider-wrapper .swiper-button-next {
  right: 10px;
  top: 55%;
}

@media (min-width: 1380px) {
  .fp-slider-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 1500px) {
  .fp-slider-wrapper .swiper-button-prev {
    left: 5%;
  }
  .fp-slider-wrapper .swiper-button-next {
    right: 5%;
  }
}

@media (min-width: 1700px) {
  .fp-slider-wrapper .swiper-button-prev {
    left: 13%;
  }
  .fp-slider-wrapper .swiper-button-next {
    right: 13%;
  }
}

@media (min-width: 2300px) {
  .fp-slider-wrapper .swiper-button-prev {
    left: 20%;
  }
  .fp-slider-wrapper .swiper-button-next {
    right: 20%;
  }
}

@media (min-width: 2600px) {
  .fp-slider-wrapper .swiper-button-prev {
    left: 24%;
  }
  .fp-slider-wrapper .swiper-button-next {
    right: 24%;
  }
}

@media (min-width: 3100px) {
  .fp-slider-wrapper .swiper-button-prev {
    left: 28%;
  }
  .fp-slider-wrapper .swiper-button-next {
    right: 28%;
  }
}



/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  text-decoration: none;
}
.product-card:hover .product-card__label {
  text-decoration: underline;
}
.product-card__header {
  position: relative;
  display: block;
  height: 210px;
  text-align: center;
}
.product-card--on-white-bg .product-card__header {
  background-color: var(--color-aqua);
}
.product-card__header img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 200px;
  max-width: 96%;
}
.product-card__main p {
  color: var(--color-text);
  font-weight: 400;
}
.product-card__main .product-card__price {
  color: var(--color-orient);
  font-weight: 700;
}


/* Product Card List */
.product-card-list {
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.17;
}
.product-card-list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
}
.product-card-list li:last-child {
  margin-bottom: 0;
}
.product-card-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 1px;
  background-color: var(--color-text);
}

@media (min-width: 825px) {
  .product-card-list li::before {
    top: 8px;
  }
}

@media (min-width: 1250px) {
  .product-card-list li::before {
    top: 9px;
  }
}




/* Banner */
.banner__img {
  background-color: var(--color-orient);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
}
.banner__img img {
  width: 70%;
}
.banner__main {
  background-color: var(--color-white);
  padding: 32px;
}

@media (min-width: 825px) {
  .banner {
    display: flex;
  }
  .banner__img {
    width: 33.33%;
  }
  .banner__main {
    width: 66.66%;
  }
}

@media (min-width: 1024px) {
  .banner__main {
    padding: 40px;
  }
}



/* User Photo */
.user-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.user-photo img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}



/* Three Grid */
.three-grid > * {
  margin-bottom: 26px;
}
.three-grid>*:last-child {
  margin-bottom: 0;
}

@media (min-width: 825px) {
  .three-grid {
    display: flex;
    justify-content: space-between;
  }
  .three-grid>* {
    margin-bottom: 0;
    width: 30%;
  }
}


/* Intro Grid */
.intro-grid > *:first-child {
  margin-bottom: 26px;
}
.intro-grid--bb {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--color-aqua);
}

@media (min-width: 825px) {
  .intro-grid {
    display: flex;
    justify-content: space-between;
  }
  .intro-grid>*:first-child {
    margin-bottom: 0;
    width: 32%;
  }
  .intro-grid>*:last-child {
    margin-bottom: 0;
    width: 65%;
  }
}

@media (min-width: 1250px) {
  .intro-grid--bb {
    padding-bottom: 34px;
  }
}

/* Two Grid */
.two-grid>*:first-child {
  margin-bottom: 26px;
}
.two-grid--bb {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--color-aqua);
}

@media (min-width: 825px) {
  .two-grid {
    display: flex;
    justify-content: space-between;
  }
  .two-grid>*:first-child {
    margin-bottom: 0;
    width: 49%;
  }
  .two-grid>*:last-child {
    margin-bottom: 0;
    width: 44%;
  }
}

@media (min-width: 1250px) {
  .two-grid--bb {
    padding-bottom: 34px;
  }
}


/* Full Width Banner */
.fw-banner {
  padding-top: 26px;
  padding-bottom: 26px;
  text-align: center;
}
.fw-banner h4 {
  margin-bottom: 15px;
}

@media (min-width: 825px) {
  .fw-banner__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .fw-banner h4 {
    margin-bottom: 0;
  }
}


/* Page Intro */
.page-intro {
  padding-top: 26px;
  padding-bottom: 26px;
}



/* Box */
.box {
  padding: 32px;
}

@media (min-width: 1024px) {
  .box {
    padding: 40px;
  }
}



/* Grid Contact */
.grid-contact__item:first-child {
  margin-bottom: 26px;
}

@media (max-width: 824px) {
  .grid-contact--invert-on-mobile {
    display: flex;
    flex-direction: column;
  }
  .grid-contact--invert-on-mobile .grid-contact__item:first-child {
    order: 2;
    margin-bottom: 0;
  }
  .grid-contact--invert-on-mobile .grid-contact__item:last-child {
    order: 1;
    margin-bottom: 26px;
  }
}

@media (min-width: 825px) {
  .grid-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .grid-contact--full-height {
    align-items: stretch;
  }
  .grid-contact__item {
    width: 47%;
  }
  .grid-contact__item:first-child {
    margin-bottom: 0;
  }
}



/* T Card */
.t-card {
  padding: 37px 20px;
  background-color: var(--color-white);
  box-shadow: 0px 58px 115px rgb(0 6 70 / 4%);
  height: 100%;
}
.t-card.t-card--bs {
  box-shadow: 0px 58px 115px rgb(0 6 70 / 8%);
}
.t-card.t-card--ws {
  box-shadow: none;
}
.t-card.t-card--wp {
  padding: 0;
}
.t-card__main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.t-card__main p:first-child {
  flex: 1;
}
.t-card__image {
  background-position: center center;
  background-size: cover;
}

@media (min-width: 460px) {
  .t-card {
    padding: 37px;
  }
}

@media (min-width: 1024px) {
  .t-card {
    display: flex;
    justify-content: space-between;
  }
  .t-card__main {
    width: 70%;
  }
  .t-card__image {
    width: 25%;
  }
}



/* inline-btns */
.inline-btns > div {
  margin-bottom: 10px;
}
.inline-btns>div:last-child {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .inline-btns {
    display: inline-flex;
  }
  .inline-btns>div {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .inline-btns>div:last-child {
    margin-right: 0;
  }
}




/* Prod List */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 26px;
}

@media (min-width: 600px) {
  .prod-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .prod-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1250px) {
  .prod-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}




/* Tabs */
.hide {
  display: none;
}
.tabber__tabs {
  margin-bottom: 26px;
}
.tabs {
  border: 1px solid var(--color-aqua);
  padding: 30px;
}
.tabs li {
  margin-bottom: 5px;
}
.tabs li:last-child {
  margin-bottom: 0;
}
.tabs a {
  display: block;
  padding: 1px 7px;
}
.tabs a.selected {
  color: var(--color-white);
  background-color: var(--color-link);
}
.tabs a.selected:hover {
  text-decoration: none;
}

@media (min-width: 825px) {
  .tabber {
    display: flex;
  }
  .tabber__tabs {
    margin-bottom: 0;
    width: 282px;
  }
  .tabber__content {
    flex: 1;
    padding-left: 20px;
  }
}

@media (min-width: 1024px) {
  .tabber__content {
    padding-left: 40px;
  }
}

@media (min-width: 1250px) {
  .tabber__tabs {
    width: 305px;
  }
  .tabber__content {
    padding-left: 60px;
  }
}

@media (min-width: 1600px) {
  .tabber__tabs {
    width: 316px;
  }
  .tabber__content {
    padding-left: 80px;
  }
}


/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 26px;
}

@media (min-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}

@media (min-width: 1250px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}




/* Swiper Gallery with Thumbs */
.swiper-gal-main {
  margin-bottom: 10px;
}
.swiper-gal-main img,
.swiper-gal-thumbs img {
  display: block;
  width: 100%;
}




/* List */
.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.list .list {
  margin-top: 8px;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 11px;
  height: 2px;
  background-color: var(--color-orient);
}

@media (min-width: 1250px) {
  .list li {
    margin-bottom: 11px;
    padding-left: 29px;
  }
  .list li::before {
    top: 12px;
    width: 15px;
  }
  .list .list {
    margin-top: 11px;
  }
}

@media (min-width: 1600px) {
  .list li::before {
    top: 13px;
  }
}



/* Res Table */
.rwd-table {
  width: 100%;
  padding: 30px;
  background-color: var(--color-white);
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:before {
  content: attr(data-th);
  font-weight: bold;
  width: 50%;
  display: inline-block;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

@media (max-width: 480px) {
  .rwd-table td:first-child {
    padding-top: 7px;
  }
  .rwd-table td:last-child {
    border-bottom: 1px solid var(--color-aqua);
    padding-bottom: 7px;
  }
  .rwd-table tr:last-child td:last-child {
    border-bottom: none;
  }
}

@media (min-width: 480px) {
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th {
    border-bottom: 1px solid var(--color-aqua);
    padding-bottom: 7px;
  }
  .rwd-table td {
    border-bottom: 1px solid var(--color-aqua);
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .rwd-table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (min-width: 1250px) {
  .rwd-table {
    padding: 40px;
  }
}



/* ACCORDION */
/* Panel style */
.accordion .a-container .a-panel {
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  height: auto;
  max-height: 0;
  overflow: hidden;
}

/* Panel style when active */
.accordion .a-container.active .a-panel {
  opacity: 1;
  height: auto;
  max-height: 1500px;
}
.a-btn {
  font-size: 1.17rem;
  position: relative;
  padding: 20px 20px 20px 60px;
  cursor: pointer;
  transition: all .3s;
  border: 1px solid var(--color-aqua);
  border-radius: 10px;
}
.a-btn:hover {
  border-color: var(--color-blue-light);
}
.a-container {
  margin-bottom: 10px;
}
.a-container:last-child {
  margin-bottom: 0;
}
.a-container:last-child .a-panel__inner {
  padding-bottom: 0;
}
.a-panel__inner {
  position: relative;
  padding: 20px;
}
.a-panel__inner p {
  margin-bottom: 16px;
}
.a-panel__inner p:last-child {
  margin-bottom: 0;
}

@media (min-width: 460px) {
  .a-panel__inner {
    position: relative;
    padding: 20px 60px;
  }
}

@media (min-width: 1250px) {
  .accordion.max-cw {
    max-width: 900px;
  }
}



/* Chevron */
.chevron {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.chevron span {
  display: inline-block;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  width: 3px;
  height: 12px;
  background-color: #0e1723;
  border-radius: 9999px;
}
.chevron span:first-child {
  transform: rotate(-45deg);
  margin-right: 4px;
}
.chevron span:last-child {
  transform: rotate(-135deg);
}
.a-container.active .chevron span:first-child {
  transform: rotate(-135deg);
}
.a-container.active .chevron span:last-child {
  transform: rotate(-45deg);
}



/* Grid Two */
.grid-two__item:first-child {
  margin-bottom: 26px;
}

@media (min-width: 825px) {
  .grid-two {
    display: flex;
    justify-content: space-between;
  }
  .grid-two__item {
    width: 47%;
  }
  .grid-two__item:first-child {
    margin-bottom: 0;
  }
  .grid-two__item:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.mb--d {
  margin-bottom: 20px;
}
.d--n {
  display: none;
}
.fw--700 {
  font-weight: 700;
}


.ghl-widget {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}