/* =================================
	Base
================================= */
:root {
  --color-light: white;
  --color-dark: black;
}

* {
  margin: 0;
  padding: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body[data-theme=light],
body[data-theme=dark] {
  --theme-dot-margin: 14px;
  background-color: #fff;
}

body {
  height: auto;
  overflow: auto;
  position: relative;
}

.grecaptcha-badge {
  position: fixed;
  right: -266px !important;
}

/* ====================================
	Custom Fonts 
==================================== */
.font-light {
  font-family: "Light";
}

body,
button,
input,
select,
textarea,
.font-regular {
  font-family: "Regular";
}

.font-medium {
  font-family: "Medium";
}

.font-bold {
  font-family: "Bold";
}

.font-heavy {
  font-family: "Heavy";
}

/* ====================================
	Custom Fonts 
==================================== */
h1 {
  font-size: 52px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 18px;
  line-height: 1.4;
}

.large {
  font-size: 20px;
}

.small {
  font-size: 16px;
}

.tiny {
  font-size: 14px;
}

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

/* ====================================
	Colors
==================================== */
.color-white,
.hover-color-white:hover {
  color: #ffffff;
}

.background-white,
.hover-background-white:hover {
  background-color: #ffffff;
}

.color-primary,
.hover-color-primary:hover {
  color: #2f80ed;
}

.color-secondary,
.hover-color-secondary:hover {
  color: #1a1a1a;
}

.color-tertiary,
.hover-color-tertiary:hover {
  color: #e53935;
}

.background-primary,
.hover-background-primary:hover {
  background-color: #2f80ed;
}

.background-secondary,
.hover-background-secondary:hover {
  background-color: #1a1a1a;
}

.background-tertiary,
.hover-background-tertiary:hover {
  background-color: #e53935;
}

.hover-color-primary-path:hover,
.color-primary-path path {
  fill: #2f80ed;
}

.hover-color-secondary-path:hover,
.color-secondary-path path {
  fill: #1a1a1a;
}

.hover-color-tertiary-path:hover,
.color-tertiary-path path {
  fill: #e53935;
}

.background-faded {
  background-color: #eaf3ff;
}

.color-light {
  color: #404041;
}

/* ====================================
	Layouts
==================================== */
.container {
  max-width: 1320px;
}

.container-medium {
  max-width: 1248px;
}

.container-small {
  max-width: 1080px;
}

.container,
.container-medium,
.container-small {
  margin: 0 auto;
}

/* ====================================
	Custom Classes 
==================================== */
.cover-img {
  background: url(../images/icons//default-image.jpg) no-repeat center center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.h-100vh {
  height: 100vh;
}

.w-100vw {
  width: 100vw;
}

.of-hid {
  overflow: hidden;
}

.transition {
  transition: all 0.2s;
}

.t-a-c {
  text-align: center;
}

.t-a-l {
  text-align: left;
}

.t-a-r {
  text-align: right;
}

.l-s-n {
  list-style: none;
}

.col-1-1 {
  width: 100%;
}

.col-4-5 {
  width: 80%;
}

.col-3-4 {
  width: 75%;
}

.col-2-3 {
  width: 75%;
}

.col-3-5 {
  width: 66.66%;
}

.col-1-2 {
  width: 50%;
}

.col-2-5 {
  width: 40%;
}

.col-1-3 {
  width: 33.33%;
}

.col-1-4 {
  width: 25%;
}

.mar-l-a {
  margin-left: auto;
}

.b-r-0 {
  border-radius: 0px;
}

.b-r-10 {
  border-radius: 10px;
}

.b-r-100 {
  border-radius: 100%;
}

.opacity-0 {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

.opacity-1 {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.display-block {
  display: block;
}

.mar-0-a {
  margin: 0 auto;
}

.flex {
  display: flex;
}

.top-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.top-center {
  justify-content: center;
  align-items: flex-start;
}

.top-right {
  justify-content: right;
  align-items: flex-start;
}

.center-left {
  justify-content: flex-start;
  align-items: center;
}

.center-center {
  justify-content: center;
  align-items: center;
}

.center-right {
  justify-content: flex-end;
  align-items: center;
}

.bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}

.bottom-center {
  justify-content: center;
  align-items: flex-end;
}

.bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-1 {
  flex: 1;
}

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

.l-h-1-1 {
  line-height: 1.1;
}

.l-h-1-2 {
  line-height: 1.2;
}

.l-h-1-5 {
  line-height: 1.5;
}

.l-h-2 {
  line-height: 2;
}

.cursor-pointer {
  cursor: pointer;
}

.pos-rel {
  position: relative;
}

.pos-fixed {
  position: fixed;
}

.pos-abs {
  position: absolute;
}

.inset-0 {
  inset: 0;
}

.width-auto {
  width: auto;
}

.height-auto {
  height: auto;
}

.t-t-u {
  text-transform: uppercase;
}

.t-t-l {
  text-transform: lowercase;
}

.t-d-ul {
  text-decoration: underline;
}

.hover-t-d-none:hover {
  text-decoration: none;
}

/* ====================================
	Form Elements
==================================== */
input,
select,
textarea,
button {
  border: none;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner {
  outline: none !important;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #ffffff;
}

textarea {
  -webkit-rtl-ordering: logical;
  -moz-rtl-ordering: logical;
  -o-rtl-ordering: logical;
  -ms-rtl-ordering: logical;
  rtl-ordering: logical;
  -webkit-user-select: text;
  -moz-user-select: text;
  -o-user-select: text;
  user-select: text;
}

textarea::-ms-expand {
  display: none;
}

::-webkit-input-placeholder {
  color: #8f8f8f;
}

::-moz-placeholder {
  color: #8f8f8f;
}

::-o-placeholder {
  color: #8f8f8f;
}

:-ms-input-placeholder {
  color: #8f8f8f;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 100px #131313 inset !important;
  -webkit-text-fill-color: #444 !important;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0 28px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 24px;
}
button span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
button span svg {
  height: 16px;
  width: 16px;
}
button span svg path {
  stroke-width: 1;
}
button span img {
  height: 16px;
  width: 16px;
}

input,
select,
textarea {
  color: #8f8f8f;
  background: #fafafa;
  border: solid 1px;
  border-color: #f0f0f0;
  padding: 0 16px;
  line-height: 46px;
  height: 48px;
  font-size: 13px;
  font-weight: 300;
  border-radius: 6px;
  width: 100%;
  display: block;
  transition: all 0.2s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #1a1a1a;
}
input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  background: transparent !important;
  -ms-box-shadow: 0 0 0 50px white inset !important;
  -o-box-shadow: 0 0 0 50px white inset !important;
  box-shadow: 0 0 0 50px white inset !important;
  -webkit-text-fill-color: #8f8f8f !important;
  -moz-text-fill-color: #8f8f8f !important;
  -ms-text-fill-color: #8f8f8f !important;
  -o-text-fill-color: #8f8f8f !important;
  text-fill-color: #8f8f8f !important;
}
input:-webkit-autofill:focus, input:-webkit-autofill:active, input:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
select:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
textarea:-webkit-autofill:hover {
  background: transparent !important;
  -ms-box-shadow: 0 0 0 50px white inset !important;
  -o-box-shadow: 0 0 0 50px white inset !important;
  box-shadow: 0 0 0 50px white inset !important;
  -webkit-text-fill-color: #8f8f8f !important;
  -moz-text-fill-color: #8f8f8f !important;
  -ms-text-fill-color: #8f8f8f !important;
  -o-text-fill-color: #8f8f8f !important;
  text-fill-color: #8f8f8f !important;
}

.error {
  color: red;
  border-color: #1a1a1a;
  animation: shake 0.6s linear;
}

.error::-webkit-input-placeholder {
  color: red;
}

.error::-moz-placeholder {
  color: red;
}

.error::-o-placeholder {
  color: red;
}

.error:-ms-input-placeholder {
  color: red;
}

input[type=checkbox] {
  height: 20px;
  width: 20px;
  padding: 0;
  position: relative;
  cursor: pointer;
}
input[type=checkbox]:focus {
  border-color: #2f80ed;
}
input[type=checkbox]:checked:after {
  position: absolute;
  content: "";
  top: 1px;
  left: 5px;
  height: 11px;
  width: 5px;
  transform: rotate(45deg);
  border-right: solid 2px #1a1a1a;
  border-bottom: solid 2px #1a1a1a;
}

select {
  padding: 0 68px 0 16px;
}

select {
  background: white url("/images/icons/select.svg") right center no-repeat;
  cursor: pointer;
}

select[disabled] {
  background: #8f8f8f url("/images/icons/select.svg") right center no-repeat;
  cursor: not-allowed;
}

textarea {
  padding: 12px 16px;
  height: 240px;
  line-height: 22px;
}

.transparent-menu-active {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.68);
  z-index: 99991;
  display: none;
}

header {
  z-index: 999999 !important;
  padding: 36px 0 28px 0;
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
}
header .logo,
header .btn-holder {
  width: 312px;
}
header .logo svg {
  height: 16px;
}
header .btn-holder {
  gap: 32px;
}
header .btn-holder .phone {
  gap: 8px;
}
header nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
header nav ul li {
  font-size: 18px;
  cursor: pointer;
  position: relative;
  list-style: none;
}
header nav ul li a {
  line-height: 48px;
  font-family: "Regular";
  display: block;
  transition: all 0.2s;
  color: white;
}
header nav ul li ul {
  position: absolute;
  transition-timing-function: ease-in;
  animation: menu-open 0.2s;
  animation-fill-mode: both;
  display: none;
  width: auto;
  border: solid 1px #f0f0f0;
  background: white;
  border-radius: 4px;
  -ms-box-shadow: 0 0 6px rgba(0,0,0,0.06);
  -o-box-shadow: 0 0 6px rgba(0,0,0,0.06);
  box-shadow: 0 0 6px rgba(0,0,0,0.06);
}
header nav ul li ul li {
  display: block;
  border-bottom: solid 1px #f0f0f0;
  font-size: 16px;
  white-space: nowrap;
}
header nav ul li ul li:last-child {
  border-bottom: none;
}
header nav ul li ul li a {
  padding: 0 16px 0 16px;
  line-height: 40px;
  color: #131313;
}
header nav ul li ul li:hover {
  background-color: #f7f9fc;
}
header nav ul li ul li:hover span span {
  color: #2f80ed;
}
header nav ul li:hover ul {
  display: block;
}
header nav ul li.menu-item-has-children {
  position: relative;
}
header nav ul li.menu-item-has-children:after {
  position: absolute;
  content: url(../images//icons/menu-arrow.svg);
  height: 0px;
  width: 8px;
  top: 50%;
  margin-top: -9px;
  right: -16px;
}
header nav ul li.current_page_item a {
  font-family: "Medium";
}
header nav ul li.current_page_item ul li a {
  font-family: "Regular";
}
header .menu-btn {
  height: 32px;
  width: 32px;
  background-color: #2f80ed;
  position: absolute;
  top: 16px;
  left: 12px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 999999;
  display: none;
  padding: 0 4px;
}
header .menu-btn svg {
  width: 100%;
  height: auto;
  display: block;
}
header .menu-btn svg path {
  fill: white;
}

footer .top {
  padding: 120px 0 40px 0;
}
footer .top .row {
  justify-content: space-between;
}
footer .top .row .col .title {
  border-left: solid 4px #2f80ed;
  padding-left: 12px;
}
footer .top .row .col ._link {
  padding: 6px 0;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.52);
}
footer .top .row .col ul li {
  list-style: none;
  padding: 6px 0;
  line-height: 1.2;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.52);
}
footer .top .row .col ul li a {
  transition: all 0.2s;
}
footer .top .row .col ul li a:hover {
  color: #2f80ed;
}
footer .bottom {
  background-color: rgba(0, 0, 0, 0.32);
  padding: 48px 0;
  margin-top: 48px;
}

#calendar-booking {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: none;
}
#calendar-booking .wrap {
  height: 100vh;
  width: 100vw;
  background: rgba(26, 26, 26, 0.86);
  padding: 16px;
}
#calendar-booking .wrap .close {
  position: absolute;
  top: -12px;
  right: -12px;
  cursor: pointer;
  z-index: 999;
}
#calendar-booking .wrap .close svg path {
  fill: #2f80ed;
}
#calendar-booking .wrap video {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

input.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: red;
  animation: shake 0.6s linear;
}

span.wpcf7-list-item {
  margin: 0;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0;
  margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: transparent;
  font-size: 12px;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  padding: 10px;
  font-size: 11px;
  color: #2f80ed;
  background: #141414;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 10px;
}

span.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background: #f5f5ff;
  padding: 10px !important;
  font-size: 13px;
  color: red !important;
  text-align: center;
  margin-bottom: 10px !important;
  border-color: transparent !important;
}

.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  border-radius: 100%;
}

.flex-direction-nav a {
  display: block;
  width: 32px;
  height: 32px;
  z-index: 99;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  text-shadow: none;
  color: transparent;
  outline: none;
}

.flex-direction-nav a,
.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  cursor: pointer;
}

.flex-direction-nav .flex-prev {
  left: 0px;
}

.flex-direction-nav .flex-next {
  right: 0px;
}

.flex-direction-nav li {
  list-style: none;
}

.flex-direction-nav .flex-prev {
  background: #2f80ed url(../images/icons/sliders/prev.svg) no-repeat 50% 50%;
}

.flex-direction-nav .flex-next {
  background: #2f80ed url(../images/icons/sliders/next.svg) no-repeat 50% 50%;
}

.flex-direction-nav .flex-prev,
.flex-direction-nav .flex-next {
  position: absolute;
  list-style: none;
  transition: all 0.2s;
}

.flex-control-nav {
  height: 12px;
  width: 200px;
  position: absolute;
  text-align: center;
  z-index: 99;
  bottom: -24px;
  overflow: hidden;
  left: 50%;
  margin-left: -100px;
}

.flex-control-nav ul {
  overflow: hidden;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 4px;
  display: inline-block;
  vertical-align: top;
  list-style: none;
}

.flex-control-nav li a {
  display: block;
  position: relative;
  height: 12px;
  width: 12px;
  line-height: 12px;
  background: transparent;
  border: solid 1px;
  border-color: #eaf3ff;
  color: transparent;
}

.flex-control-nav li a,
.flex-control-nav li a:after {
  border-radius: 100%;
  transition: all 0.2s;
  cursor: pointer;
}

.flex-control-nav li a:after {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  top: 1px;
  left: 1px;
}

.flex-control-nav li a.flex-active:after {
  background: #2f80ed;
}/*# sourceMappingURL=base.css.map */