@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
/* USER VARIABLES SECTION */
:root {
  --base-color: #158085;
  --yellow: #fbc50b;
  --red: #BE0000;
  --accent: #006db8;
  --secondary: #45ccd1;
  --boxshadow-accent: 0 7px 15px 0 rgba(0,109,184, .4);
  --text: #222;
  --black: #000;
  --black-rgb: 0,0,0;
  --white: #FFF;
  --white-rgb: 255, 255, 255;
  --gray-400: #CED4DA;
  --regular-text: 16px;
  --lineheight: 1.65;
  --userfont: "Manrope", sans-serif;
  --headingfont: "Manrope", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --radius: 10px;
  --radius-pill: 50rem;
  --transition: .25s ease-out;
  --section-p: 60px;
  --section-bg: #EFF1F4;
  --sliderjs-title: 51px;
  --sliderjs-title-lg: 42px;
  --title: 51px;
  --title-lg: 42px;
}

/* BOOTSTRAP SETTINGS SECTION */
/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: .625rem;
}

.row, .row > * {
  --bs-gutter-x: 2rem;
}

/* GENERAL CSS SETTINGS */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #f0eae2;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--accent);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}

::-moz-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

::-moz-selection {
  background-color: var(--accent);
  color: #fff;
}

::selection {
  background-color: var(--accent);
  color: #fff;
}

input, textarea {
  outline: none;
}

input:focus:required:invalid, textarea:focus:required:invalid {
  border-color: red;
}

input:required:valid, textarea:required:valid {
  border-color: green;
}

body {
  font-family: var(--userfont);
  font-size: var(--regular-text);
  line-height: var(--lineheight);
  color: var(--text);
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding-top: var(--section-p);
  padding-bottom: var(--section-p);
}

.section-bg {
  background-color: var(--section-bg);
}

.rounded {
  border-radius: var(--radius);
}

.rounded-pill {
  border-radius: 50%;
}

.position-relative {
  position: relative;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.bg-primary {
  background-color: var(--accent);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-red {
  background-color: var(--red);
}

.text-muted {
  color: #6c757d;
}

.text-red {
  color: var(--red);
}

.text-secondary {
  color: var(--secondary);
}

.text-white {
  color: var(--white);
}

.text-light {
  color: rgba(var(--white-rgb), 0.85);
}

.text-black {
  color: var(--black);
}

.shadow-4 {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.list-icon-check {
  padding: 0;
  list-style: none;
}
.list-icon-check li {
  position: relative;
  padding-left: 24px;
}
.list-icon-check li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath fill='%23006db8' d='M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3e%3c/svg%3e");
}

.list-number {
  padding-left: 0;
  list-style: none;
}
.list-number li {
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
  counter-increment: mycount;
}
.list-number li::before {
  content: "0" counter(mycount) ".";
  font-weight: 700;
  color: var(--accent);
  transition: all 0.3s;
  position: absolute;
  left: 0px;
  top: 0px;
}

.breadcrumb {
  margin: 0;
  padding: 6px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}
.breadcrumb li + li {
  padding-left: 0.5rem;
}
.breadcrumb li + li::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 20px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.navbar__row {
  display: flex;
  align-items: center;
}
.navbar__left {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.navbar__logo {
  margin-right: auto;
  display: inline-flex;
}
.navbar__phone {
  display: flex;
  align-items: center;
  color: var(--white);
  background-color: var(--accent);
  border-radius: var(--radius);
  padding: 10px;
  white-space: nowrap;
}
.navbar__phone-img {
  width: 24px;
  height: auto;
}
.navbar__phone-num {
  margin-left: 4px;
  font-weight: 500;
  line-height: 1;
}
.navbar__phone:hover, .navbar__phone:focus {
  color: inherit;
}
.navbar__lang {
  margin-left: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 4px 5px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.navbar__lang-link {
  display: inline-block;
  padding: 5px;
}
.navbar__lang span {
  opacity: 0.6;
}
.navbar--scrolled {
  padding: 10px 0 !important;
  background-color: var(--white);
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
}
.navbar--scrolled .logo {
  color: var(--text);
}
.navbar--scrolled .logo:hover, .navbar--scrolled .logo:focus {
  color: var(--text);
}
.navbar--scrolled .logo__white {
  display: none;
  opacity: 0;
  transition: var(--transition);
}
.navbar--scrolled .logo__accent {
  display: block;
  opacity: 1;
  transition: var(--transition);
}
.navbar--scrolled .navbar__lang {
  background-color: rgba(0, 0, 0, 0.1);
}
.navbar--scrolled .menu__link {
  color: var(--base-color);
}
.navbar--scrolled .menu__link.active, .navbar--scrolled .menu__link:hover, .navbar--scrolled .menu__link:focus {
  color: var(--base-color);
}
.navbar--scrolled .menu__toggle {
  background-color: rgba(0, 0, 0, 0.1);
}
.navbar--scrolled .menu__toggle span {
  background-color: var(--text);
}
.navbar--hidden {
  transform: translate(0, -100%);
}

@media (min-width: 1200px) {
  .uz-index .menu {
    font-size: 14px;
  }
}
.review-sliderjs-arrow {
  display: flex;
  gap: 10px;
}
.review-sliderjs-arrow > button {
  width: 40px;
  height: 40px;
  border: 0;
  background-color: var(--section-bg);
  border-radius: var(--radius);
}

/* LOGO */
.logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  text-align: center;
  color: var(--white);
  line-height: 1.4;
}
.logo__name {
  font-size: 32px;
  letter-spacing: 2px;
}
.logo__slogan {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}
.logo:hover, .logo:focus, .logo:active {
  color: var(--white);
}
.logo > img {
  max-height: 80px;
}
.logo__accent {
  display: none;
  opacity: 0;
  transition: var(--transition);
}
.logo__text {
  margin-left: 15px;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.menu__list {
  display: flex;
  align-items: center;
}
.menu__link {
  white-space: nowrap;
  color: var(--base-color);
  margin: 0 2px;
  padding: 10px 8px;
  opacity: 0.8;
  border-radius: var(--radius);
  transition: var(--transition);
}
.menu__link.active, .menu__link:hover, .menu__link:focus {
  color: var(--base-color);
  opacity: 1;
}
.menu__dropdown {
  position: relative;
}
.menu__dropdown > .menu__link {
  display: block;
}
.menu__dropdown:hover .menu__dropdownbody {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.menu__dropdownbody {
  position: absolute;
  transform: translateY(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.1s ease-in;
  min-width: 200px;
  top: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  padding: 5px 0;
}
.menu__dropdownbody .menu__link {
  color: var(--text);
  padding: 4px 8px;
}
.menu__dropdownbody .menu__link:hover {
  color: var(--accent);
}
.menu__toggle {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 9px;
  display: none;
  flex-direction: column;
  cursor: pointer;
  justify-content: center;
}
.menu__toggle span {
  width: 100%;
  height: 4px;
  margin: 2px 0;
  background-color: #fff;
  border-radius: var(--radius);
  transition: var(--transition);
}
.menu__toggle span:nth-child(2) {
  width: 80%;
}
.menu__toggle span:nth-child(3) {
  width: 50%;
}
.menu__toggle:hover span:nth-child(2), .menu__toggle:hover span:nth-child(3), .menu__toggle:focus span:nth-child(2), .menu__toggle:focus span:nth-child(3) {
  width: 100%;
}
.menu__toggle-close span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu__toggle-close span:nth-child(2) {
  transform: scale(0);
}
.menu__toggle-close span:nth-child(3) {
  width: 100%;
  transform: translateY(-8px) rotate(-45deg);
}

/* HOME SLIDER */
.home-slider {
  position: relative;
  background-color: #3F66A4;
}
.home-slider::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
}
.home-slider__container {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.home-slider__logo {
  margin-bottom: 40px;
}
.home-slider__social {
  position: absolute;
  bottom: 40px;
  left: 15px;
}
.home-slider__arrows {
  position: absolute;
  bottom: 40px;
  right: 15px;
}
.home-slider__arrows-arrow {
  border-radius: var(--radius);
  background-color: transparent;
  border: none;
  transition: var(--transition);
  width: 80px;
  height: 42px;
}
.home-slider__arrows-arrow svg {
  fill: var(--white);
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.home-slider__arrows-arrow:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.home-slider__row {
  display: flex;
  align-items: center;
}
.home-slider__content {
  flex-grow: 1;
}
.home-slider__title {
  color: var(--white);
  font-family: var(--headingfont);
  font-size: 46px;
  margin-bottom: 0;
  font-weight: 400;
  margin-bottom: 30px;
}
.home-slider__subtitle {
  line-height: 1.2;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 0;
  font-weight: 400;
}
.home-slider__form {
  flex-shrink: 0;
  max-width: 400px;
  width: 100%;
  padding: 30px;
  margin-left: 60px;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}
.home-slider__form-title {
  text-align: center;
  font-weight: 500;
  color: var(--white);
  font-size: 22px;
  margin: -30px -30px 30px;
  padding: 10px 0;
  background-color: var(--red);
}
.home-slider__form-btn {
  margin-top: 30px;
  text-transform: uppercase;
}
.home-slider__sliderjs {
  display: flex;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}
.home-slider__sliderjs .slick-slider {
  display: flex;
}
.home-slider__sliderjs .slick-list {
  flex-grow: 1;
}
.home-slider__sliderjs .slick-track {
  display: flex;
  height: 100%;
}
.home-slider__sliderjs-image {
  position: relative;
  display: flex;
  height: 100%;
}
.home-slider__sliderjs-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.gallery-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  opacity: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm-3-7h6m-3-3v6m11 8-6-6' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-img img {
  transform: scale(1);
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-img:hover img {
  transform: scale(1.04);
}
.gallery-img:hover::before, .gallery-img:hover::after {
  opacity: 1;
}

.gallery-sliderjs__item {
  margin: 0 var(--bs-gutter-x);
}
.gallery-sliderjs__item img {
  width: 100%;
  height: auto;
}

/* ABOUT */
.home-about__row {
  display: flex;
}
.home-about__content {
  align-self: center;
  flex: 0 0 50%;
}
.home-about__image {
  position: relative;
  padding-left: 30px;
}
.home-about__work {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  gap: 20px;
}
.home-about__work-item {
  background-color: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  flex-basis: 150px;
  text-align: center;
}
.home-about__work-year {
  margin-bottom: 10px;
  font-family: var(--headingfont);
  font-size: 36px;
  line-height: 1;
}
.home-about__work-text {
  line-height: 1.2;
}

/* Advantage */
.home-advantage__list {
  padding-left: 0;
  list-style: none;
}
.home-advantage__list li {
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}
.home-advantage__list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-pill);
}
.home-advantage .container {
  position: relative;
}
.home-advantage .rellax {
  position: absolute;
  top: -100px;
  right: -220px;
}

/* testimonial */
.testimonial-sliderjs__item {
  margin-left: -100px;
  margin-right: -100px;
}
.testimonial-sliderjs__item-box {
  padding: 0 30px;
  text-align: center;
  opacity: 0.6;
  transform: scale(0.65);
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.85);
}
.testimonial-sliderjs__item-photo {
  border-radius: var(--radius-pill);
  width: 100px;
  height: 100px;
  margin: 0px auto 10px auto;
  border: 5px solid var(--white);
}
.testimonial-sliderjs__item-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.testimonial-sliderjs__item-text {
  color: rgba(0, 0, 0, 0.8);
}
.testimonial-sliderjs__item-answer {
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  padding-top: 20px;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
}
.testimonial-sliderjs__item-answer span {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  padding: 0 10px;
  color: var(--accent);
}
.testimonial-sliderjs .slick-slide {
  position: relative;
  z-index: 1;
}
.testimonial-sliderjs .slick-center {
  z-index: 2;
}
.testimonial-sliderjs .slick-center .testimonial-sliderjs__item-box {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* certificate */
.certificate-sliderjs__item {
  text-align: center;
  margin: 0 var(--bs-gutter-x);
}
.certificate-sliderjs__item a {
  display: inline-block;
}

/* SERVICE */
.price-list-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed;
  padding: 10px 0;
}
.price-list-item__price {
  white-space: nowrap;
  font-weight: 600;
  margin-left: 10px;
}
.price-list-item__price span {
  font-weight: 400;
}

.home-service {
  position: relative;
}
.home-service::before {
  position: absolute;
  content: "";
  background-color: var(--accent);
  width: 100%;
  height: 100%;
  transform: translateX(50%);
  z-index: 1;
}
.home-service .container {
  position: relative;
  z-index: 2;
}
.home-service__left {
  padding-top: var(--section-p);
  padding-bottom: var(--section-p);
  background-image: url(../images/girl.png);
  background-size: 380px;
  background-repeat: no-repeat;
  background-position: center right -176px;
}
.home-service__right {
  background-color: var(--accent);
  padding-top: var(--section-p);
  padding-bottom: var(--section-p);
  padding-left: 40px;
  padding-right: 40px;
}
.home-service__list {
  padding-left: 0;
  list-style: none;
}
.home-service__list li {
  margin: 10px 0;
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  counter-increment: mycount;
}
.home-service__list li::before {
  content: "0" counter(mycount) ".";
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  transition: all 0.3s;
  position: absolute;
  left: 0px;
  top: -5px;
}

/* TITLE */
.title {
  color: var(--text);
  font-family: var(--headingfont);
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 700;
}
.title::after {
  content: "";
  width: 60px;
  height: 4px;
  border-radius: var(--radius);
  display: block;
  background-color: var(--accent);
  margin-top: 4px;
}
.title--center {
  text-align: center;
}
.title--center::after {
  margin-left: auto;
  margin-right: auto;
}
.title--white {
  color: var(--white);
}
.title--white::after {
  background-color: rgba(var(--white-rgb), 0.8);
}

.subtitle {
  font-size: 18px;
  margin-top: -15px;
  margin-bottom: 30px;
}

/* SOCIAL */
.social a {
  height: 42px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  border-radius: var(--radius);
  border-color: rgba(0, 0, 0, 0.2);
}
.social a svg {
  width: 26px;
  height: 26px;
}
.social a:hover, .social a:focus {
  color: var(--white);
}
.social__telegram {
  color: var(--white);
  background-color: #0088CC;
}
.social__instagram {
  color: var(--white);
  background: #d92e7f;
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}
.social__viber {
  color: var(--white);
  background-color: #7E529F;
}
.social__whatsapp {
  color: var(--white);
  background-color: #2FB34D;
}
.social__facebook {
  color: var(--white);
  background-color: #1877f2;
}
.social__ok {
  color: var(--white);
  background-color: #EE8208;
}

/* BTN */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: var(--radius);
  background-color: var(--accent);
  color: var(--white);
  border: none;
  box-shadow: var(--boxshadow-accent);
  transition: var(--transition);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.btn:hover {
  color: var(--white);
  background-color: var(--secondary);
}
.btn:active {
  background-color: var(--secondary);
}
.btn--block {
  display: block;
  width: 100%;
}

.btn-link {
  display: inline-block;
  position: relative;
  color: var(--text);
  font-weight: 600;
  margin-top: 10px;
  padding: 5px 0;
}
.btn-link::after {
  content: "";
  background: url(../images/border.svg) no-repeat;
  position: absolute;
  bottom: 0px;
  left: 0;
  margin-bottom: 0;
  width: 100%;
  height: 4px;
  transition: bottom 0.3s ease;
}
.btn-link:hover {
  color: var(--accent);
}
.btn-link:hover::after {
  bottom: 3px;
}
.btn-link--white {
  color: var(--white);
}
.btn-link--white::after {
  background: url(../images/border-white.svg) no-repeat;
}
.btn-link--white:hover {
  color: rgba(var(--white-rgb), 0.8);
}

.btn-call {
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
  cursor: pointer;
  height: 60px;
  width: 60px;
  text-align: center;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  transition: var(--transition);
  animation: hoverWave linear 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.btn-call__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 1200ms ease 0s normal none 1 running callshake;
  animation-iteration-count: infinite;
  color: white;
  transition: var(--transition);
}
.btn-call svg,
.btn-call path {
  width: 40px;
  height: auto;
  fill: var(--white);
}
.btn-call:hover {
  background-color: #fff;
}
.btn-call:hover svg,
.btn-call:hover path {
  fill: var(--secondary);
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
  cursor: pointer;
  height: 80px;
  width: 80px;
  text-align: center;
  transition: var(--transition);
  animation: hoverWave linear 1s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.btn-play__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 1200ms ease 0s normal none 1 running callshake;
  animation-iteration-count: infinite;
  color: white;
  transition: var(--transition);
}
.btn-play svg,
.btn-play path {
  margin-left: 5px;
  width: 60px;
  height: auto;
  fill: var(--white);
}
.btn-play:hover {
  background-color: #fff;
}
.btn-play:hover svg,
.btn-play:hover path {
  fill: var(--secondary);
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-label {
  margin-bottom: 8px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: var(--regular-text);
  border: 1px solid var(--gray-400);
  color: var(--text);
  border-radius: var(--radius);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--accent);
  outline: 0;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input {
  float: left;
  margin-left: -1.5em;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

/* RANGE */
.range {
  margin-bottom: 20px;
}
.range__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.range__label {
  line-height: 1;
}
.range__value {
  white-space: nowrap;
  flex-basis: 70px;
  text-align: right;
}
.range__num {
  font-size: 18px;
  font-weight: 700;
}

/* .rangeslider  */
.rangeslider__fill {
  background-color: var(--accent);
}
.rangeslider__handle {
  width: 30px;
  height: 30px;
}
.rangeslider--horizontal {
  height: 10px;
}

/* Magnific Popup */
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 500px;
  margin: 20px auto;
  border-radius: var(--radius);
}

/* slick-custom */
.slick-custom-arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: none;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.slick-custom-arrow svg {
  fill: var(--white);
}
.slick-custom-arrow.slick-prev {
  left: -0.625rem;
}
.slick-custom-arrow.slick-next {
  right: -0.625rem;
}

/* Alert */
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.footer {
  background-color: var(--section-bg);
  position: relative;
  padding-top: 60px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.footer::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  top: 0;
  z-index: -1;
}
.footer__form {
  padding-left: 5%;
  padding-top: 6%;
  padding-right: 5%;
  padding-bottom: 6%;
  background-color: var(--white);
  border-radius: 10px;
}
.footer__phone {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
}

.footer-top {
  color: var(--text);
  padding-bottom: 40px;
}
.footer-top__contact {
  padding-left: 0;
  list-style: none;
}
.footer-top__contact li + li {
  margin-top: 15px;
}
.footer-top__contact-text {
  font-size: 18px;
}
.footer-top__contact-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footer-top__phone-num {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}
.footer-top__phone-num:hover {
  color: var(--text);
}
.footer-top__form {
  max-width: 380px;
  width: 100%;
  margin-left: 30px;
}
.footer-top__form-title {
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-bottom {
  margin-top: auto;
  background-color: var(--accent);
  padding: 30px 0;
}
.footer-bottom__copyright a {
  color: var(--white);
}

ul.accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.accordion-list li {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #FFF;
  padding: 20px;
  margin: 0 auto 10px auto;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
ul.accordion-list li.active h3:after {
  transform: rotate(45deg);
}
ul.accordion-list li h3 {
  font-weight: 700;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  margin: 0;
  font-size: var(--regular-text);
  cursor: pointer;
}
ul.accordion-list li h3:after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--accent);
  transition: all 0.3s ease-in-out;
  font-size: 20px;
}
ul.accordion-list li div.answer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
ul.accordion-list li div.answer p {
  position: relative;
  display: block;
  font-weight: 300;
  padding: 10px 0 0 0;
  cursor: pointer;
  line-height: 150%;
  margin: 0 0 15px 0;
  font-size: var(--regular-text);
}

.rating-ico {
  display: inline-block;
  color: var(--yellow);
  font-size: 20px;
  line-height: 1;
}
.rating-ico::before {
  content: "★";
  position: absolute;
  opacity: 0;
}
.rating-ico--active::before {
  opacity: 1;
}

.form-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  vertical-align: bottom;
}
.form-rating > input {
  display: none;
}
.form-rating > label {
  position: relative;
  font-size: 36px;
  line-height: 0.7;
  color: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
}
.form-rating > label::before {
  content: "★";
  position: absolute;
  opacity: 0;
}
.form-rating > label:hover:before,
.form-rating > label:hover ~ label:before {
  opacity: 1 !important;
}
.form-rating > input:checked ~ label:before {
  opacity: 1;
}
.form-rating:hover > input:checked ~ label:before {
  opacity: 0;
}

.review-card {
  background-color: #fff;
  border: 1px solid var(--section-bg);
  border-radius: 10px;
  position: relative;
  padding: 20px;
}
.review-card__info {
  display: flex;
  align-items: center;
}
.review-card__avatar {
  width: 80px;
  height: 80px;
  margin-right: 22px;
  position: relative;
}
.review-card__avatar img {
  border-radius: 50%;
  border: 1px solid var(--section-bg);
}
.review-card__avatar::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -13px;
  width: 30px;
  height: 30px;
  line-height: 26px;
  border-radius: 50%;
  background: var(--accent) url(../images/double-quotes.svg) no-repeat center/50%;
  text-align: center;
}
.review-card__name {
  font-weight: 700;
  color: var(--black);
}
.review-card__name a {
  color: var(--black);
}
.review-card__name a:hover {
  color: var(--accent);
}
.review-card__desc {
  margin-top: 15px;
}
.review-card__answer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--section-bg);
  position: relative;
}
.review-card__answer-title {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  background-color: var(--section-bg);
  padding: 5px 6px 3px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
  border-radius: 3px;
}

.form-review {
  background-color: var(--section-bg);
  border-radius: 10px;
  position: relative;
}

.avatar-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  background: var(--white);
  border: 1px solid var(--gray-400);
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
.avatar-upload__input {
  display: none;
}
.avatar-upload__icon {
  position: absolute;
  top: 0;
  left: 0;
}
.avatar-upload--image .avatar-upload__icon {
  display: none;
}
.avatar-upload__upload {
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  color: inherit;
  pointer-events: none;
  font-weight: 500;
  z-index: 1;
}
.avatar-upload--image .avatar-upload__upload {
  display: none;
}
.avatar-upload__delete {
  display: none;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 32px;
  height: 32px;
  background: var(--gray-400);
  text-indent: -9999px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.avatar-upload__delete::after, .avatar-upload__delete::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 14px;
  background-color: #ff231f;
  content: "";
}
.avatar-upload__delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.avatar-upload__delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.avatar-upload--image .avatar-upload__delete {
  display: block;
}
.avatar-upload--image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: default;
}

.scrollup {
  position: fixed;
  color: #fff;
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  line-height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  text-align: center;
  z-index: 10;
}
.scrollup:hover {
  background-color: var(--white);
  color: var(--secondary);
}
/* Animation */
@keyframes hoverWave {
  0% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2);
  }
  40% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2);
  }
  80% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067);
  }
  100% {
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0);
  }
}
@keyframes callshake {
  0% {
    transform: rotateZ(0deg);
  }
  10% {
    transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.28571deg);
  }
  80% {
    transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.33333deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}