:root {
  --default-color: #434343;
  --orange: #FFAB23;
  --green: #6C8167;
  --white: #FFFFFF;
  --brown: #BA8C6C;
  --gray: #B4B4B4;
  --stroke: #E6E6E6;
  --dark-stroke: #BCBCBC;
  --pink-gradient: linear-gradient(180deg, rgba(254, 235, 221, 1) 0%, rgba(239, 232, 240, 1) 100%);
  --green-gradient: linear-gradient(90deg, rgba(108, 129, 103, 1) 0%, rgba(139, 171, 132, 1) 50%, rgba(108, 129, 103, 1) 100%);
  --light-green: #F3FBF4;
}

html {
  /* scroll-behavior: smooth; */
}

html,
body,
.post,
.page {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
}

body.open-menu {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  color: var(--default-color);
}

p {
  margin-top: 0;
  font-size: 20px;
  color: var(--default-color);
  line-height: 1.3;
}

ul,
ol {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

a {
  font-family: "Montserrat", sans-serif;
  transition: .2s;
  color: var(--default-color);
  outline: none !important;
}

a:visited {
  color: inherit;
}

h1 {
  margin: 0 0 20px 0;
  font-size: 70px;
  line-height: 72px;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}

h2 {
  font-size: 48px;
  font-weight: 900;
  margin-top: 0;
}

h2 span {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
}

h3 {
  /* font-size: 32px; */
  font-size: 40px;
  line-height: 1.1;
  color: var(--default-color);
  font-weight: 700;
  margin-top: 0;
}

h3 span {
  font-size: 32px;
  font-weight: 700;
  color: var(--brown);
}

h4 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: var(--default-color);
  margin-top: 0;
}

.grid-sizer {
  /* width: calc(33% - 10px); */
  width: 33%;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.wrap {
  position: relative;
  z-index: 9;
}

/* HEADER  */

.header {
  padding: 27px 0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99999;
  box-shadow: 0px 1px 30px rgba(0, 0, 0, .1);
}

.header__socials a {
  transition: .2s;
}

.header__socials a:hover {
  opacity: .8;
}

.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-navigation {
  width: auto;
}

.main-navigation a {
  font-size: 20px;
  color: var(--default-color);
  transition: .2s;
  margin-right: 25px;
  padding: 15px 0;
  position: relative;
  font-weight: 600;
}

.site-branding a {
  display: flex;
  align-items: center;
}

.burger {
  display: none;
}

.main-navigation li.menu-item-has-children>a:after {
  content: '';
  width: 8px;
  height: 4px;
  background: url(../images/drop-arr1.svg) 0 0 no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  right: -13px;
  top: 50%;
}

.main-navigation li.menu-item-has-children>a:hover:after {
  transform: rotate(180deg);
}

.main-navigation li.current-menu-item>a {
  color: var(--green);
}

.main-navigation li:last-child a {
  margin-right: 0;
}

.main-navigation a:visited {
  color: var(--default-color)
}

.main-navigation a:hover {
  color: var(--green)
}

.main-navigation .sub-menu {
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(119, 152, 181, 0.4);
  width: 300px;
  z-index: 9999999;
}

.main-navigation .sub-menu li {
  border-bottom: 1px solid #D9E4ED;
}

.main-navigation .sub-menu li:last-child {
  border-bottom: 0;
}

.main-navigation .sub-menu li:first-child a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.main-navigation .sub-menu li:last-child a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.main-navigation .sub-menu li a {
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: .2s;
  margin-right: 0;
  width: 100%;
}

.main-navigation .sub-menu li a:hover {
  color: var(--white);
  background: var(--green)
}

.header__contacts {
  display: flex;
  align-items: center;
}

.header__contacts-left {
  display: flex;
  gap: 15px;
}

.header__contacts-phone {
  color: var(--default-color);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

.header__contacts-phone:hover {
  color: var(--green);
}

.header__socials {
  gap: 6px;
  display: flex;
  justify-content: flex-end;
}

.header__contacts-right {
  margin-left: 23px;
}

.header-btn {
  font-size: 18px;
  font-weight: 600;
  padding: 19px 43px;
  border: 1px solid var(--green);
  text-align: center;
  border-radius: 100px;
  color: var(--default-color);
  text-decoration: none;
  transition: .2s;
}

.header-btn:hover {
  background-color: var(--green);
  color: var(--white);
}

/* END OF HEADER */

/* FIRST SECTION  */

.first-screen {
  background: var(--light-green);
  padding: 50px 0 80px 0;
  position: relative;
}

.first-screen h2 {
  font-weight: 900;
  color: var(--default-color);
  font-size: 70px;
  line-height: 75px;
  margin-bottom: 20px;
  animation-delay: 0.2s;
}

.first-screen h3 {
  margin-bottom: 0px;
  animation-delay: 0.3s;
}

.first-screen ul {
  padding-left: 20px;
}

.first-screen ul li {
  margin-bottom: 5px;
}

.first-screen .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.first-screen__left,
.first-screen__right {
  width: 50%;
}

.first-screen__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 90px;
}

.first-screen__left .btn-bx {
  margin-top: 10px;
}

.first-screen__left p {
  font-size: 20px;
  font-weight: 500;
}

.first-screen__right {
  position: relative;
  text-align: center;
}

.first-screen__right>img {
  max-width: 660px;
  animation-delay: 0.2s;
}

.first-screen__dots {
  gap: 10px;
  display: flex;
  margin-bottom: 38px;
}

.first-screen__dots img {
  animation-delay: 0.4s;
  animation-iteration-count: 2;
}

.first-screen__dots img:first-child {
  animation-delay: 0.2s;
  animation-iteration-count: 2;
}

.first-screen__dots img:last-child {
  animation-delay: 0.6s;
  animation-iteration-count: 2;
}

.first-screen__dots img {
  transition: .2s;
}

.first-screen-el-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.first-screen-el-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.first-screen__right-el {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  max-width: 280px;
  text-align: left;
  box-shadow: 9px 12px 20px rgba(0, 0, 0, .1)
}

.first-screen__right-el-1 {
  top: 10%;
  left: 60px;
  animation-delay: 0.5s;
}

.first-screen__right-el-2 {
  top: 41%;
  right: -65px;
  max-width: 240px;
  animation-delay: 0.7s;
}

.first-screen__right-el-3 {
  bottom: 1%;
  right: 0;
  animation-delay: 0.9s;
  max-width: 390px;
}

.first-screen__right-el-4 {
  bottom: 15%;
  left: 0;
  max-width: 300px;
  animation-delay: 1.1s;
}

.first-screen__right-el-5 {
  top: 3%;
  right: -50px;
  max-width: 380px;
  animation-delay: 1.3s;
}

.first-screen__right-el-6 {
  bottom: 40%;
  left: 0;
  max-width: 300px;
  animation-delay: 1.5s;
}

.first-screen__right-el .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  display: flex;
  flex-direction: column;
}

.first-screen__right-el .title span {
  font-size: 15px;
  line-height: 15px;
  color: var(--gray);
  font-weight: 600;
}

.btn {
  transition: .2s !important;
  width: 100%;
  min-width: 290px;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--green-gradient);
  gap: 10px;
  transition: .2s;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  z-index: 1;
  position: relative;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, .25)
}

.btn:visited {
  color: #fff;
}

.btn:hover {
  color: var(--green);
  background: var(--white);
  border-color: var(--green)
}

.btn-arrow {
  width: 100%;
  min-width: 290px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--green);
  gap: 10px;
  transition: .2s;
  border: 1px solid var(--green);
  border-radius: 100px;
  text-decoration: none;
  color: var(--white);
}

.btn-arrow:visited {
  color: var(--white)
}

.btn-arrow:hover {
  color: var(--green);
  background: var(--white);
}

.btn-arrow path {
  transition: .2s;
}

.btn-arrow:hover path {
  stroke: var(--green)
}

.btn-bx {
  position: relative;
}

.arrow-image {
  position: absolute;
  right: -35%;
  top: -15%;
}

.btn-to-bottom {
  background: radial-gradient(closest-side, #F9F9F9 80%, white 80%, white 95%, #fff 95%, transparent 100%);
  width: 75px;
  height: 75px;
  position: absolute;
  bottom: -87.5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 9px 14px 20px rgba(0, 0, 0, .1);
  border-radius: 50%
}

.arrow-to-bottom {
  width: 75px;
  height: 75px;
  position: absolute;
  bottom: -125px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  outline: none !important;
}

.parallax-el {
  transition: transform 0.3s ease-out;
}

.first-screen-el-3 {
  position: absolute;
  left: 0px;
  top: 0px;
}

.first-screen-el-4 {
  position: absolute;
  right: 100px;
  bottom: -168px;
}

.first-screen-el-5 {
  position: absolute;
  right: -50px;
  top: 50px;
}

.first-screen-el-6 {
  position: absolute;
  right: -100px;
  top: 85px;
}

/* END OF FIRST SECTION */

/* ABOUT SECTION WITH IMAGE ON THE LEFT */

.wrap.wrap_2 ul {
  padding-left: 20px;
}

.about-wrap__left {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-wrap__left,
.about-wrap__right {
  width: 50%;
}

.about-wrap__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wrap:not(.wrap_2) .about-wrap__right {
  padding-top: 80px;
}

.about-bx {
  overflow: hidden;
  padding-top: 173px;
  padding-bottom: 80px;
}

.about-bx .btn-arrow {
  width: auto;
}

.about-bx .container {
  position: relative;
}

.about-bx .container>h2 {
  text-align: center;
  margin-bottom: 86px;
}

.about-bx .quote {
  margin-bottom: 30px;
}

.about-bx .arrow-image {
  right: -70%;
  top: -40%;
}

.about-bx h3 {
  color: var(--brown);
  line-height: 35px;
  margin-bottom: 15px;
}

.about-bx h2 {
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.about-bx p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}

.about-bx .btn-bx {
  margin-top: 35px;
}

.about-bx__left-el-1 {
  position: absolute;
  top: -16%;
  left: 2%;
  z-index: 9999;
}

.about-bx__left-el-2 {
  position: absolute;
  top: 6%;
  left: 33%;
  z-index: 9999;
}

.about-bx__left-el-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
}

.about-bx__left-el-4 {
  position: absolute;
  bottom: -90px;
  right: -50px;
  z-index: 9999;
}

.about-bx__left-el-5 {
  position: absolute;
  bottom: -90px;
  left: -50px;
  z-index: 9999;
}

.about-bx .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-bx .wrap_2 {
  gap: 40px;
  align-items: flex-start
}

.about-bx .wrap_2 li {
  margin-bottom: 20px;
  font-weight: 500;
}

.about-bx.about-bx__right {
  padding-bottom: 80px;
}

.about-bx.about-bx__right .wrap {
  flex-direction: row-reverse;
  align-items: flex-start;
}

.single-specialists .about-bx.about-bx__right .wrap {
  align-items: flex-start
}

.about-bx.about-bx__right .about-wrap__right {
  padding-right: 30px;
}

.about-wrap__left-img {
  max-width: 590px;
  position: relative;
  z-index: 9999;
  max-width: 590px;
}

.about-bx__left-el-21 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-bx.about-bx__right .about-bx__left-el-5 {
  z-index: 99999;
}

/* END OF ABOUT SECTION WITH IMAGE ON THE LEFT */

/* VALUES SECTION */

.values-section {
  position: relative;
  z-index: 9999;
  padding: 80px 0;
}

.page-template-page-main .values-section {
  /* transform: translateY(-280px); */
  padding: 0;
  padding-top: 127px;
  padding-bottom: 205px;
}

.values-section .wrap {
  /* background: url(../images/orange-bg.jpg) 0 0 no-repeat;
  background-size: cover; */
  border-radius: 30px;
  padding: 97px 0 207px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  background: url("../images/green-bg7.jpg") 0 0 no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 110%;
  transition: all 0.1s ease;
  border-radius: 30px;
  top: 0;
}

.values-section .title {
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  color: var(--white);
  z-index: 999;
  margin-bottom: 100px;
}

.values-section .tiles {
  gap: 37px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
}

.values-section .tiles .tile {
  width: calc(50% - 37px);
  min-height: 140px;
  background: var(--white);
  border-radius: 15px;
  padding: 40px 33px 40px 33px;
  position: relative;
  margin-bottom: 0;
  box-shadow: 9px 12px 20px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
}

.values-section .tiles .tile:last-child {
  width: calc(100% - 37px);
}

.values-section .tiles .tile p {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

/* .circle-bx {
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  top: -40px;
  border-radius: 30px 30px 0 0;
  background-image: radial-gradient(circle at 145px 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 40px, #fff 40px);
} */

.circle-check {
  position: relative;
  top: 13px;
}

/* END OF VALUES SECTION */

/* SERVICES SECTION */

.services-section {
  /* background: var(--light-green); */
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.section.services-section.archive {
  padding: 80px 0 120px 0;
}

.page-template-page-main .services-section {
  /* margin-top: -650px; */
  padding-top: 80px;
  background: var(--light-green)
}

.services-section .parallax-bg {
  position: absolute;
  background: url("../images/pink-bg-with-elements.jpg") 0 0 no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 110%;
  transition: all 0.1s ease;
  border-radius: 30px;
  top: 0;
}

.services-section .title {
  text-align: center;
  color: var(--default-color);
}

.services-section .tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.services-section .tiles .tile {
  border-radius: 30px;
  background: var(--white);
  padding: 25px 20px;
  width: 100%;
  box-shadow: 9px 12px 20px rgba(0, 0, 0, .1);
  text-decoration: none;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.services-section .tiles .tile .order {
  padding-top: 18px;
  min-width: 342px;
}

.services-section .tiles .tile .order,
.services-section .tiles .tile .order .prices,
.services-section .tiles .tile .order .prices .bx {
  display: flex;
  flex-direction: column;
  align-items: center
}

.services-section .tiles .tile .order .prices .bx {
  margin-bottom: 30px;
}

.services-section .tiles .tile .order .prices .consultation {
  text-align: center;
  line-height: 1;
}

.services-section .tiles .tile .order .prices .price {
  font-size: 26px;
  font-weight: 700;
  color: rgba(67, 67, 67, .5);
  text-transform: uppercase;
  text-decoration: line-through;
}

.services-section .tiles .tile .order .prices .price2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.services-section .tiles .tile .order .prices .price2rub {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.services-section .tiles .tile .order .prices .text1 {
  margin-bottom: 27px;
  text-align: center;
}

.services-section .tiles .tile .order .btn {
  max-width: 240px;
  min-width: auto;
  margin-bottom: 40px;
}

.services-section .tiles .tile .description h4 {
  font-size: 24px;
  margin-bottom: 24px;
}

.services-section .tiles .tile .description p {
  margin-bottom: 15px;
  font-size: 18px;
}

.services-section .tiles .tile .details {
  padding: 12px 19px 4px 12px;
  background: #F3FBF4;
  border-radius: 15px;
  margin-bottom: 10px;
  display: inline-block;
}

.services-section .tiles .tile .details strong {
  font-weight: 600;
}

.services-section .tiles .tile .details p {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
}

.services-section .tiles .tile img {
  max-width: 355px;
  border-radius: 23px;
}

.services-section .tiles .tile h3 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
}

.services-section .tiles .tile ul {
  padding-left: 20px;
}

.services-section .tiles .tile li {
  margin-bottom: 10px;
  font-weight: 500;
}

.services-section .tiles .tile li::marker {
  color: #6C8167;
}

.services-section .tiles .tiles-title {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.services-section .tiles .tile .content {
  width: 70%;
}

.services-section .tiles-link {
  width: 100%;
  font-size: 18px;
  line-height: 20px;
  padding: 16px;
  border-radius: 100px;
  border: 1px solid var(--green);
  text-decoration: none;
  font-weight: bold;
  display: block;
  text-align: center;
  transition: .2s;
}

.services-section .tiles .tile:hover .tiles-link {
  color: var(--white);
  background: var(--green)
}

/* END OF SERVICES SECTION */

/* EDUCATION SECTION */

.education-section {
  padding: 120px 0;
}

.education-section .title {
  text-align: center;
  margin-bottom: 40px;
}

.education-section .tiles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 90px;
  margin-top: 80px;
}

.education-section .tiles .tile {
  width: calc(33.3% - 90px);
  background: var(--green-gradient);
  /* border: 1px solid var(--stroke); */
  border-radius: 25px;
  text-align: center;
  padding: 85px 0;
  box-shadow: 9px 12px 20px rgba(0, 0, 0, .1);
  position: relative;
}

.education-section .el {
  position: absolute;
  top: -70px;
  right: 0;
  width: 120px;
  height: 70px;
  border: 1px solid var(--stroke);
  border-radius: 20px 30px 0 0;
  /* box-shadow: 9px 12px 20px rgba(0, 0, 0, .1) */
  box-shadow: 9px 3px 20px rgba(0, 0, 0, .1)
}

.education-section .el:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/e4.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  left: -20px;
  bottom: -1px;
  transform: rotate(180deg);
}

.education-section .el:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 35px;
  background: var(--white);
}

.education-section .tiles .tile p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.education-section .tiles .tile .years-bx {
  padding: 0px 15px 15px 0;
  display: none;
}

.education-section .tiles .tile .years-text {
  color: var(--white);
  background: var(--green);
  border-radius: 20px 20px 11px 20px;
  padding: 5px 0;
  width: 239px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  box-shadow: 7px 10px 15px rgba(0, 0, 0, .1);
  position: absolute;
  top: -71px;
  z-index: 999;
}

.education-line {
  width: 100%;
  margin-left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(141, 170, 122, 1) 50%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  margin-top: 20px;
  justify-content: center;
}

.education-line__bx {
  overflow: hidden;
  height: 40px;
}

.education-line__circle {
  width: calc(33.3% - 90px);
  position: relative;
}

.education-line__circle:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--green);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
}

.education-section .container {
  position: relative;
}

.education-section__el-1 {
  position: absolute;
  top: 0;
  right: -50px
}

.education-section__el-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
}

/* END OF EDUCATION SECTION */

/* CERTIFICATES SECTION */

.certificates-section {
  background: var(--light-green);
  position: relative;
  overflow: hidden;
}

.certificates-section .container {
  position: relative;
  padding: 120px 0;
}

.certificates-section .title {
  text-align: center;
  position: relative;
  z-index: 9;
}

.certificates-section .tiles {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.certificates-section .tiles .tile {
  width: calc(20% - 20px);
  text-align: center;
  padding-top: 146px;
  z-index: 9;
}

.certificates-section .tiles .tile:nth-child(2n + 1),
.certificates-section .tiles .tile:nth-child(6n),
.certificates-section .tiles .tile:nth-child(8n),
.certificates-section .tiles .tile:nth-child(10n),
.certificates-section .tiles .tile:nth-child(11n),
.certificates-section .tiles .tile:nth-child(16n),
.certificates-section .tiles .tile:nth-child(18n),
.certificates-section .tiles .tile:nth-child(20n) {
  padding-top: 0px;
}

.certificates-section .tiles .tile:nth-child(7n),
.certificates-section .tiles .tile:nth-child(9n),
.certificates-section .tiles .tile:nth-child(12n),
.certificates-section .tiles .tile:nth-child(17n),
.certificates-section .tiles .tile:nth-child(19n),
.certificates-section .tiles .tile:nth-child(22n),
.certificates-section .tiles .tile:nth-child(29n),
.certificates-section .tiles .tile:nth-child(32n),
.certificates-section .tiles .tile:nth-child(37n),
.certificates-section .tiles .tile:nth-child(39n) {
  padding-top: 146px;
}

.certificates-section .tiles .tile:nth-child(18n),
.certificates-section .tiles .tile:nth-child(21n),
.certificates-section .tiles .tile:nth-child(26n),
.certificates-section .tiles .tile:nth-child(28n),
.certificates-section .tiles .tile:nth-child(30n),
.certificates-section .tiles .tile:nth-child(35n),
.certificates-section .tiles .tile:nth-child(38n),
.certificates-section .tiles .tile:nth-child(45n),
.certificates-section .tiles .tile:nth-child(46n),
.certificates-section .tiles .tile:nth-child(48n),
.certificates-section .tiles .tile:nth-child(51n),
.certificates-section .tiles .tile:nth-child(58n),
.certificates-section .tiles .tile:nth-child(60n) {
  padding-top: 0;
}

.certificates-section .tiles .tile:nth-child(34n),
.certificates-section .tiles .tile:nth-child(42n),
.certificates-section .tiles .tile:nth-child(47n),
.certificates-section .tiles .tile:nth-child(52n),
.certificates-section .tiles .tile:nth-child(54n),
.certificates-section .tiles .tile:nth-child(59n) {
  padding-top: 146px;
}

/* .certificates-section .tiles .tile:nth-child(2n) {
  padding-top: 146px;
}

.certificates-section .tiles .tile:nth-child(4n + 1) {
  padding-top: 0;
} */

/* 
.certificates-section .tiles .tile:nth-child(7n + 5) {
  padding-top: 146px;
} */

/* 
.certificates-section .tiles .tile:nth-child(6n + 6),
.certificates-section .tiles .tile:nth-child(8n + 8),
.certificates-section .tiles .tile:nth-child(10n + 10) {
  padding-top: 0;
} */


.certificates-section .tiles .img-bx {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F5F5F5;
  border: 20px solid #E2E2E2;
  height: 292px;
  margin-bottom: 15px;
  transition: .2s;
  animation-duration: 1s;
}

.certificates-section .tiles .img-bx:hover {
  border-color: var(--white);
  background: var(--green);
}

.certificates-section .btn-arrow {
  width: auto;
  margin-top: 20px;
}

.certificates-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

.certificates-section .tiles .title {
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}

.certificates-section .tiles .description {
  font-size: 16px;
  line-height: 18px;
}

.certificates-section__el-1 {
  position: absolute;
  top: 10%;
  left: 12%;
  z-index: 9;
}

.certificates-section__el-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.certificates-section__el-3 {
  position: absolute;
  top: 0;
  left: -60px;
}

.certificates-section__el-4 {
  position: absolute;
  bottom: 0;
  left: -20px;
}

.certificates-section__el-5 {
  position: absolute;
  bottom: 8%;
  left: -50px;
}

.certificates-section__el-6 {
  position: absolute;
  bottom: 13%;
  right: 0;
}

/* END OF CERTIFICATES SECTION */

/* REVIEWS SECTION */

.reviews-section {
  padding: 120px 0;
  position: relative;
}

.reviews-section .title {
  text-align: center;
}

.reviews-section #slick-slide00 .slide-item__bx,
.reviews-section [data-slick-index="0"] .slide-item__bx {
  /* margin-left: 200px; */
  position: relative;
}

.slick-list {
  margin-left: 200px;
}

.reviews-section .slide-item {
  padding: 0 10px 40px 10px;
  position: relative;
}

.reviews-section .slide-item__bx {
  border-radius: 20px;
  box-shadow: 0px 13px 13px rgba(0, 0, 0, .1);
  padding: 20px;
  border: 1px solid var(--stroke);
  position: relative;
  /* max-width: 350px; */
  max-width: 500px;
}

.reviews-section .slide-item__bx:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -64px;
  left: 35px;
  width: 64px;
  height: 64px;
  background: url(../images/Union6.svg) 0 0 no-repeat;
  background-size: 100%;
}

.reviews-section .slide-item:focus-visible {
  outline: 0;
}

.slick-arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slick-arrows a {
  text-decoration: none;
  border: 1px solid var(--dark-stroke);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.slick-arrows a:hover {
  border-color: var(--green);
  background: var(--green);
}

.slick-arrows a path {
  transition: .3s;
}

.slick-arrows a:focus {
  outline: none;
}

.slick-arrows a:hover path {
  stroke: var(--white)
}

.slick-arrows a.next svg {
  transform: rotate(180deg);
}

.reviews-section__el-1 {
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.reviews-section__el-2 {
  position: absolute;
  right: 5%;
  top: 5%;
}

.reviews-section__el-3 {
  position: absolute;
  right: 8%;
  bottom: -10%;
}

/* END OF REVIEWS SECTION */

/* SPECIALISTS SECTION */

.specialists-section {
  background: var(--light-green);
  padding: 120px 0;
  position: relative;
}

.specialists-section .title {
  text-align: center;
}

.specialists-section .slide-item {
  padding: 0 10px 90px 10px;
  position: relative;
  /* flex: 1 0 auto; */
  height: auto;
}

.specialists-section .slide-item__bx {
  border-radius: 20px 20px 0 0;
  box-shadow: 2px 53px 13px rgba(0, 0, 0, .1);
  padding: 20px;
  border: 1px solid var(--stroke);
  position: relative;
  margin-bottom: 10px;
  max-width: 375px;
  background: var(--white);
  padding-bottom: 10px;
}

.slide-item:focus-visible {
  outline: 0;
}

.specialists-section .slick-track {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.specialists-section .slide-item__bx img {
  border-radius: 5px;
  margin-bottom: 10px;
}

.slide-item__title {
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  max-width: 270px;
}

.slide-item__subtitle {
  font-size: 16px;
  line-height: 18px;
  color: #BA8C6C;
  min-height: 36px;
  margin-bottom: 5px;
  position: absolute;
  z-index: 9999;
  max-width: 220px;
}

.specialists-section .circle-bx {
  width: 100%;
  height: 40px;
  position: absolute;
  top: auto;
  left: 0;
  bottom: -40px;
  border-radius: 20px 20px 0 0;
  transform: rotate(180deg);
  background-image: radial-gradient(circle at 75px 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 40px, #fff 40px);
}

.specialists-section .circle-bx .plus-bx {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  right: -45px;
  top: -31px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 1px 4px 10px rgba(0, 0, 0, .1); */
  box-shadow: -9px -12px 20px rgba(0, 0, 0, .1);
  border: 1px solid var(--green)
}

.specialists-section .circle-bx .plus-bx:hover {
  background: var(--white);
}

.specialists-section .circle-bx .plus-bx:hover path {
  stroke: var(--green);
}

.specialists-section__el-1 {
  position: absolute;
  left: 15%;
  top: 5%;
}

.specialists-section__el-2 {
  position: absolute;
  right: 6.5%;
  top: 16%;
}

.specialists-section__el-3 {
  position: absolute;
  left: 5%;
  bottom: 5%;
}

/* END OF SPECIALISTS SECTION */

/* FORM SECTION 1 */

.form-section-1 {
  padding-top: 0px;
  position: relative;
}

.form-section-1 .wrap {
  overflow: hidden;
}

.form-section-1 .container {
  position: relative;
}

.form-section-1 .wrap__inner {
  display: flex;
  padding: 50px 0 50px 0;
  position: relative;
}

.form-section-1 .wrap__inner .wrap__left {
  width: 50%;
}

.form-section-1 .wrap__inner p,
.form-section-1 .wrap__inner a {
  width: 60%;
}

.form-section-1 .wrap__inner a {
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--white);
}

.form-section-1 .wrap__inner a path {
  stroke: var(--green);
}

.form-section-1 .wrap__inner a:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.form-section-1 .wrap__inner a:hover path {
  stroke: var(--white);
}

.form-section-1 .parallax-bg {
  background: url(../images/green-form-bg.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 0;
}

.form-section-1 h2 {
  color: var(--green);
  margin-bottom: 10px;
}

.form-section-1 p {
  color: var(--green);
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: bold;
}

.form-section-1 .wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-section-1 .wpcf7-form input {
  background: transparent;
  outline: none;
  border: 0;
  border-bottom: 1px solid var(--green);
  font-family: 'Montserrat';
}

.form-section-1 .wpcf7-form input::placeholder {
  color: #434343
}

.form-section-1 .wpcf7-form-control-wrap {
  margin-bottom: 20px;
}

.form-section-1 input.wpcf7-submit {
  text-align: center;
  background: var(--green-gradient);
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 30px 60px;
  outline: none;
  border: 1px solid transparent;
  transition: .2s;
  font-weight: 700;
  width: auto;
  display: inline-flex;
  margin-top: 20px;
}

.form-section-1 input.wpcf7-submit:hover {
  border-color: var(--green);
  color: var(--green);
  background: #fff;
}

/* END OF FORM SECTION 1 */

/* CONTACTS SECTION */

.contacts-section .wrap__right>div,
.contacts-section .wrap__right>iframe {
  border-radius: 30px 0 0 30px;
}

.contacts-section {
  padding: 160px 0 120px 0;
}

.contacts-section .wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contacts-section .wrap__left {
  border-radius: 0 30px 30px 0;
  background: var(--light-green);
  padding: 40px 0 0 0;
  width: calc(50% - 10px);
  position: relative;
  padding-left: 17.2%;
}

.contacts-section .wrap__right {
  border-radius: 30px 0px 0px 30px;
  width: calc(50% - 10px);
  position: relative;
}

.contacts-section .contact-image {
  position: absolute;
  bottom: 0;
  right: -40px;
  z-index: 9;
}

.contacts-section h2 {
  margin-bottom: 23px;
}

.contacts-section .contacts-bx {
  margin-bottom: 23px;
}

.contacts-section .contacts-bx .contacts-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 5px;
}

.contacts-section .contacts-bx .contacts-el,
.contacts-section .contacts-bx .contacts-el a {
  font-size: 32px;
  line-height: 35px;
  font-weight: bold;
  text-decoration: none;
}

.contacts-section__el-1 {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 9;
}

.contacts-section__el-2 {
  position: absolute;
  top: 5%;
  right: 25%;
  z-index: 9;
}

.contacts-section__el-3 {
  position: absolute;
  top: -5%;
  right: 15%;
  z-index: 9;
}

/* END OF CONTACTS SECTION */

/* FOOTER  */

.footer {
  background: var(--green);
  position: relative;
}

.footer>.container {
  position: relative;
  /* background: radial-gradient(circle at 96% 0, #fff 60px, var(--green) 60px) */
}

.footer .arrow-bx {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 13px;
  top: 50px;
  z-index: 99;
  border: 1px solid #fff;
}

.footer .arrow-bx:hover {
  background: var(--green);
}

.footer .arrow-bx:hover path {
  fill: #fff;
}

.footer .wrap {
  padding-top: 65px;
  padding-bottom: 23px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .footer__left {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer .footer__left>img {
  margin-bottom: 10px;
}

.footer .footer__left p {
  color: var(--white);
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 20px;
}

.footer .footer__right {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer .footer__right .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px
}

.footer .footer__right .menu li {
  list-style: none;
}

.footer .footer__right .menu a {
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
}

.footer .footer__right .menu a:hover {
  text-decoration: underline;
}

.footer .wrap__inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-left: 52px;
}

.footer .wrap__inner .wrap__inner-right {
  display: flex;
  gap: 50px
}

.footer .wrap__inner h3 {
  color: var(--white);
  font-size: 32px;
  line-height: 35px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer .wrap__inner h4 {
  color: var(--white);
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer .wrap__inner .contacts-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  text-align: right;
}

.footer .wrap__inner .contacts-bx,
.footer .wrap__inner .contacts-el {
  display: flex;
  gap: 10px;
  align-items: center
}

.footer .wrap__inner .contacts-el,
.footer .wrap__inner .contacts-el a {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  color: var(--white);
  text-decoration: none;
}

.footer .wrap__inner .contacts-el a:hover {
  text-decoration: underline;
}

.menu-footer-menu-container {
  margin-bottom: 42px;
}

.footer .wpcf7 input[type="tel"] {
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  background: transparent;
  border-radius: 100px;
  padding: 18px 30px;
  border: 2px solid var(--white);
  outline: none;
  line-height: 21px;
  margin-right: 20px;
}

.footer .wpcf7 button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100px;
  color: var(--green);
  outline: none;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  border: none;
  padding: 5px 25px;
  cursor: pointer;
  transition: .2s;
  border: 1px solid var(--white);
}

.footer .btn-arrow {
  background: var(--white);
  color: var(--green);
  width: 70%;
}

.footer .wpcf7 button:hover,
.footer .btn-arrow:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--white)
}

.footer .wpcf7 svg {
  margin-left: 8px;
}

.footer .wpcf7 path,
.footer .btn-arrow path {
  stroke: var(--green);
}

.footer .wpcf7 button:hover path,
.footer .btn-arrow:hover path {
  stroke: var(--white)
}

.footer .wpcf7 .wpcf7-form {
  display: flex;
}

.footer .wpcf7 input[type="tel"]::placeholder {
  color: var(--white);
}

.footer-bottom {
  background: #ABC699;
}

.footer-bottom .wrap {
  padding: 20px 0 23px 0;
  align-items: center;
}

.footer-bottom .wrap p,
.footer-bottom .wrap a,
.footer-bottom .wrap .dev {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
  color: var(--white)
}

.footer-bottom .wrap .dev {
  display: flex;
  align-items: center;
}

.footer-bottom .wrap .dev img {
  margin-left: 7px;
}

.footer-bottom .wrap a {
  text-decoration: underline;
}

.footer-bottom .wrap a:hover {
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

/* END OF FOOTER */

.mobile-menu {
  display: none;
}

.inner-first-screen {
  padding: 155px 0 73px 0;
  background-size: contain;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.single .inner-first-screen .container {
  position: relative;
}

.kama_breadcrumbs {
  text-align: left;
}

.single .kama_breadcrumbs {
  margin-bottom: 0;
}

.kama_breadcrumbs a,
.kama_breadcrumbs span {
  color: var(--gray);
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-decoration: none;
}

.kama_breadcrumbs .kb_title {
  color: var(--default-color)
}


.kama_breadcrumbs a:hover {
  text-decoration: underline;
}

.kama_breadcrumbs>span {
  margin-right: 10px;
}

.kama_breadcrumbs .kb_sep {
  position: relative;
  top: 1px;
}

/* GALLERY SECTION */

.gallery-section {
  padding: 80px 0;
}

.gallery-section .container {
  position: relative;
}

.gallery-section h2 {
  text-align: center;
}

.gallery-section .tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-section .tiles .tile {
  width: calc(33% - 10px);
  /* width: 33%; */
  /* padding: 10px; */
  border-radius: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
  /* justify-content: center;
  align-items: center */
}

.gallery-section .tiles .tile img {
  /* width: 100%; */
  border-radius: 20px;
  object-fit: cover;
}

.gallery-section .tiles .tile:first-child,
.gallery-section .tiles .tile:nth-child(2) {
  width: calc(50% - 10px);
  max-height: 450px;
}

.gallery-section .tiles .tile:not(:first-child):not(:nth-child(2)) {
  max-height: 326px;
}

.gallery-section .tiles .tile:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  /* width: calc(100% - 20px); */
  /* height: calc(100% - 20px); */
  position: absolute;
  /* left: 10px; */
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, .5);
  transition: .2s;
  opacity: 0;
  border-radius: 20px;
}

.gallery-section .tiles .tile:after {
  content: '';
  display: block;
  width: 65px;
  height: 65px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/zoom-in.svg) 0 0 no-repeat;
  transition: .2s;
  opacity: 0;
}

.gallery-section .tiles .tile:hover:before,
.gallery-section .tiles .tile:hover:after {
  opacity: 1;
}

.gallery-section__el-22 {
  position: absolute;
  right: -5%;
  top: -2%;
}

.gallery-section .btn-arrow {
  width: calc(33% - 10px);
  margin: 0 auto;
  background: var(--white);
  color: var(--default-color);
  cursor: pointer
}

.gallery-section .btn-arrow path {
  stroke: var(--default-color);
}

.gallery-section .btn-arrow:hover {
  background: var(--green);
  color: var(--white);
}

.gallery-section .btn-arrow:hover path {
  stroke: var(--white);
}

.gallery-section__el-23 {
  position: absolute;
  left: -10%;
  bottom: -11%;
}


/* END OF GALLERY SECTION */

.about-wrap__right.description ul,
.about-wrap__right.description ol {
  padding-left: 20px;
}

.section.contacts-section.page>.container>.wrap {
  width: 100%;
  background: var(--light-green);
  gap: 0;
  padding: 40px 120px;
  border-radius: 30px;
}

.section.contacts-section.page>.container>.wrap .parallax-bx {
  width: 100%;
}

.section.contacts-section.page .contacts-section__el-3 {
  right: 5%;
}

.section.contacts-section.page .img {
  position: absolute;
  right: 5%;
  bottom: 0;
}

.section.contacts-section.page .contacts-section__el-2 {
  right: 40%
}

.section.contacts-section.page .contacts-section__el-1 {
  bottom: 30%;
}

.section.contacts-section.page .wrap_map {
  margin-top: -65px;
}

.section.form-section-1.form-bx {
  padding-top: 0;
}

.section.form-section-1.form-bx .wrap {
  border-radius: 30px;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section.form-section-1.form-bx .wrap__inner .wrap__left {
  width: 100%;
}

.wrap__form {
  display: flex;
  gap: 20px;
}

.wrap__form-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wrap__form-left input[type="tel"],
.wrap__form-left input[type="text"],
.wrap__form-right textarea {
  width: 100%;
  font-size: 18px;
  color: var(--white);
  background: transparent;
  padding: 16px 30px;
  font-weight: bold;
  border-radius: 100px;
  border: 2px solid var(--white);
}

.wrap__form-right textarea {
  border-radius: 20px;
}

.wrap__form-left input::placeholder,
.wrap__form-right textarea::placeholder {
  color: var(--white)
}

.wrap__form-left input:focus,
.wrap__form-right textarea:focus {
  background: var(--white);
  color: var(--default-color);
  outline: none;
}

.wrap__form-right textarea {
  max-height: 273px;
}

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

.wrap__form button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100px;
  color: var(--green);
  outline: none;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  border: none;
  padding: 17px 25px;
  cursor: pointer;
  transition: .2s;
  border: 1px solid var(--white);
}

.wrap__form button:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--white)
}

.wrap__form svg {
  margin-left: 8px;
}

.wrap__form path {
  stroke: var(--green);
}

.wrap__form button:hover path {
  stroke: var(--white)
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label a {
  background: transparent;
  text-decoration: underline;
  color: var(--white);
  border: 0;
  width: auto;
  font-size: 14px;
  margin-left: 6px;
  font-weight: 600;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label a:hover {
  text-decoration: none;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:before {
  width: 20px;
  height: 20px;
  content: '';
  display: block;
  border-radius: 2px;
  border: 1px solid var(--white);
  margin-right: 10px;
  position: relative;
  top: -1px;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label:after {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  display: none;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked~.wpcf7-list-item-label:after {
  display: block;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--white);
  margin-left: 0;
  margin-right: 0;
}

.wrap__form-left,
.wrap__form-right {
  width: 50%;
}

.section.other-services {
  background: var(--light-green);
  padding: 80px 0 120px 0;
}

.section.other-services .title {
  margin-left: 200px;
  text-align: left;
}

.section.other-services .tiles .tile {
  width: auto;
  max-width: 376px;
}

.section.other-services .slick-track {
  display: flex;
  gap: 20px;
  padding: 30px 0;
  /* margin-left: -14px; */
}

.section.other-services .slick-list {
  padding-left: 0px;
}

.section.other-services .tiles .tiles-title {
  min-height: 44px;
}

.single-services .gallery-section {
  padding: 80px 0 140px 0;
}

.single-section__el-18,
.single-section__el-4 {
  position: absolute;
}

.single-section__el-18 {
  bottom: 15%;
  left: 5%;
}

.single-section__el-4 {
  bottom: -19%;
  right: 15%;
  z-index: 99;
}

.single-services .footer>.container,
.error404 .footer>.container {
  background: radial-gradient(circle at 96% 0, #EFE8F0 60px, var(--green) 60px);
}

.text-section {
  padding: 80px 0 120px 0;
}

.text-section .container {
  max-width: 700px;
  padding: 0 15px;
}

.text-section h4 {
  position: relative;
  color: var(--green);
}

.text-section h4 strong {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: inherit
}

.text-section p {
  font-size: 16px;
}

.text-section p strong {
  font-size: inherit;
}

.section-404 {
  background: var(--light-green);
  padding: 120px 0
}

.section-404 .wrap {
  display: flex;
  flex-direction: column;
  align-items: center
}

.section-404 img {
  margin-bottom: 30px;
}

.section-404 h3 {
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 10px;
}

.section-404 p {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 35px;
  max-width: 500px;
  text-align: center;
}

.section-404 .btn-arrow {
  width: auto;
}

.menu-bx,
.burger-checkbox {
  display: none;
}

body #sbi_mod_error,
.sb_instagram_header,
#sbi_load {
  display: none !important;
}

.sbi_follow_btn span,
.sbi_btn_text {
  color: var(--white);
  font-size: 16px;
}

.sbi_follow_btn path {
  fill: var(--white)
}

.instagram-section {
  padding-bottom: 120px;
}

.instagram-section .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-section .container {
  width: 100%;
  position: relative;
}

.inst-link {
  display: inline-block;
  position: relative;
  border-bottom: 7px solid var(--green);
  font-size: 40px;
  font-weight: 900;
  text-decoration: none;
}

.inst-link:before {
  width: 59px;
  height: 59px;
  content: '';
  display: block;
  left: -70px;
  top: 65%;
  position: absolute;
  transform: translateY(-50%);
  background: url(../images/inst-icon-big.svg) 0 0 no-repeat;
  background-size: 100%;
}

#sb_instagram .sbi_photo {
  border-radius: 15px;
  overflow: hidden;
}

.inst-arrow-1 {
  position: absolute;
  left: -22%;
  bottom: -10%;
}

.inst-arrow-2 {
  position: absolute;
  right: -30%;
}

.popup-container,
.popup-overlay {
  opacity: 0;
  z-index: -1;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  transition: .2s;
}

.popup-overlay.show {
  z-index: 9999;
  opacity: 1;
}

.popup-container {
  transition: .2s;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 600px;
  height: 100%;
  max-height: 610px;
  padding: 40px 60px;
  background: #fff;
  border-radius: 10px;
  overflow: auto;
}

.popup-container.show {
  z-index: 99999;
  opacity: 1;
}

.popup-container h3 {
  font-size: 36px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 20px;
}

.popup-container h4 {
  font-size: 22px;
  text-align: center;
  color: rgba(67, 67, 67, .5);
  font-weight: 500;
}

.popup-container .close {
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px
}

.popup-container .close svg {
  width: 20px;
  height: 20px;
}

.popup-container .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-container input {
  width: 100%;
  font-family: 'Montserrat';
  padding: 9px 15px;
  font-size: 18px;
  border-radius: 10px;
}

.popup-container input.hidden {
  display: none;
}

.popup-container .wpcf7-submit {
  background: var(--green-gradient);
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 14.5px;
  outline: none;
  border: 1px solid transparent;
  transition: .2s;
  font-weight: 700;
}

.popup-container .wpcf7-submit:hover {
  border-color: var(--green);
  color: var(--green);
  background: #fff;
}

.popup-item {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.popup-container .wpcf7 form .wpcf7-response-output {
  margin: 0;
  font-size: 12px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--green);
  background: #fff;
}

.wpcf7-spinner {
  display: none;
}

.section.quiz .wrap {
  display: flex;
}

.section.quiz .wrap__left,
.section.quiz .wrap__right {
  width: 50%;
}

.section.quiz .wrap__right {
  padding-top: 108px;
}

.section.quiz {
  padding: 120px 0;
}

.section.quiz h3 {
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
}

.section.quiz h4 {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 66px;
  line-height: 1.2;
  text-align: center;
}

.section.quiz h3,
.section.quiz h4 {
  display: none;
}

.section.quiz .btn-bx {
  width: auto;
  display: inline-flex;
}

.section.quiz .arrow-image {
  top: 50%;
  right: -55%;
}

.item92 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.section.articles {
  padding-top: 270px;
  padding-bottom: 210px;
}

.category .section.articles,
.single .section.articles {
  padding-top: 0;
}

.section.articles .container {
  position: relative;
}

.section.articles .wrap {
  display: flex;
  gap: 20px;
}

.section.articles .wrap .item {
  background: #fff;
  border-radius: 30px;
  box-shadow: 10px 13px 22px rgba(0, 0, 0, .1);
  width: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 46px;
}

.section.articles .wrap .item .bx>a {
  width: 100%;
  display: block;
}

.section.articles .wrap .item .bx>a img {
  width: 100%;
}

.section.articles .wrap .item .btn {
  display: inline-flex;
  width: auto;
  text-transform: uppercase;
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
  min-width: 230px;
}

.section.articles .wrap .item .btn:hover {
  color: #fff;
  background: var(--green-gradient)
}

.section.articles .content {
  padding: 26px;
}

.section.articles h2 {
  text-align: center;
  margin-bottom: 120px;
}

.section.articles h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 17px;
  line-height: 1.2;
}

.section.articles h4 a {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.section.articles h4 a:hover {
  color: var(--green)
}

.section.articles .description {
  font-size: 16px;
}

.section.articles .btn-bx {
  display: flex;
  justify-content: center;
  margin-top: 74px;
}

.section.articles .btn-bx .btn {
  display: inline-flex;
  width: auto;
  text-transform: uppercase;
}

.articles-item-1 {
  position: absolute;
  top: -20%;
  left: 0;
}

.articles-item-2 {
  position: absolute;
  top: -6%;
  right: 0;
}

.categories {
  display: flex;
  gap: 20px;
  margin-top: 120px;
}

.categories a {
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--green);
  padding: 18px 38px;
  border-radius: 30px;
}

.categories a.active {
  background: var(--green);
  color: #fff;
}

.section.articles.single h2 {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 57px;
}

.single>.container>.content {
  padding: 0;
}

.single>.container {
  max-width: 1300px;
}

.section.articles.single {
  position: relative;
}

.section.articles.single img:not(.parallax-el) {
  width: 100%;
}

.section.articles.single .content ul,
.section.articles.single .content ol {
  padding-left: 20px;
}

.section.articles.single .content li {
  font-size: 20px;
}

.section.articles.single .container {
  position: relative;
}

.single-item-1 {
  position: absolute;
  top: -50px;
  right: 0;
}

.single-item-2 {
  position: absolute;
  top: 140px;
  right: 140px;
}

.single-item-3 {
  position: absolute;
  top: 0px;
  right: 280px;
}

.single-item-4 {
  position: absolute;
  top: 110px;
  left: 0px;
}

.single-item-5 {
  position: absolute;
  bottom: 0%;
  left: 65px;
}

.single-item-6 {
  position: absolute;
  bottom: 0%;
  right: 100px;
}

.footer .sub-menu {
  display: none;
}

/* MEDIA */

@media (min-width: 576px) {

  .container,
  .instagram-section .container {
    width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .instagram-section .container {
    width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .instagram-section .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1340px;
  }

  .instagram-section .container {
    width: 1024px;
  }
}

@media (min-width: 1600px) {
  .container {
    width: 1560px;
  }
}

@media (max-width: 1920px) {
  .contacts-section .wrap__left {
    padding-left: 9.6%;
  }

  .education-section .el {
    right: -1px;
  }
}

@media (max-width: 1900px) {

  .first-screen-el-5,
  .about-bx__left-el-4 {
    right: 0px;
  }

  .first-screen-el-6 {
    right: -20px;
  }

  .education-section {
    overflow: hidden;
  }

  .contacts-section .wrap__left {
    padding-left: 4.4%;
  }

  .contacts-section__el-1 {
    left: 3%;
  }

  .slick-list {
    margin-left: 4.4%;
  }

  .section.other-services .title {
    margin-left: 4.4%;
  }
}

@media (max-width: 1740px) {
  .reviews-section img {
    max-width: 400px;
  }

  .gallery-section__el-22 {
    right: 0;
  }

  .inst-arrow-1 {
    max-width: 20%;
    bottom: 0;
  }

  .inst-arrow-2 {
    right: -23%;
    max-width: 20%;
  }
}

@media (max-width: 1680px) {

  .first-screen__right-el-5,
  .first-screen__right-el-2 {
    right: 0;
  }

  .first-screen-el-4 {
    right: 0;
  }

  .first-screen-el-5,
  .about-bx__left-el-4 {
    right: 30px;
  }

  .first-screen-el-6 {
    right: 0;
  }

  .gallery-section .btn-arrow {
    max-width: 50%;
    width: 30%;
  }
}

@media (max-width: 1600px) {
  /* font sizes */
  /* 14 > 12 */
  /* 15 > 13 */
  /* 16 > 14 */
  /* 18 > 16 */
  /* 20 > 18 */
  /* 24 > 20 */
  /* 32 > 26 */
  /* 48 > 42 */
  /* 70 > 50 */

  .single>.container>.content p,
  .single>.container>.content li,
  .section.articles.single .content li {
    font-size: 16px;
  }

  .single-item-3 {
    top: -100px;
  }

  .single-item-1 {
    z-index: -1;
  }

  .single-item-4 {
    left: -50px;
  }

  .inst-arrow-1 {
    left: -14%;
    bottom: 0;
  }

  .inst-arrow-2 {
    right: -10%;
    bottom: 0;
  }

  .header .custom-logo-link img {
    max-width: 200px;
  }

  .main-navigation a,
  .header-btn,
  .btn-arrow,
  .values-section .tiles .tile p,
  .services-section .tiles-link,
  p,
  .education-section .tiles .tile p,
  .form-section-1 p,
  .contacts-section .contacts-bx .contacts-title,
  .footer .footer__right .menu a,
  .footer .wrap__inner .contacts-title {
    font-size: 16px;
  }

  .header__contacts-phone,
  .first-screen__right-el .title,
  h4,
  .certificates-section .tiles .title,
  .slide-item__title,
  .footer .wrap__inner h4 {
    font-size: 18px;
    line-height: 20px;
  }

  .header-btn {
    padding: 19px 33px;
  }

  .first-screen-el-3 {
    left: 0;
  }

  .first-screen-el-5,
  .about-bx__left-el-4 {
    right: 50px
  }

  .first-screen-el-6 {
    right: 20px;
  }

  .first-screen__right>img {
    max-width: 450px;
  }

  .header {
    padding: 17px 0;
  }

  .first-screen {
    padding: 80px 0 120px 0;
  }

  .first-screen__right-el {
    padding: 15px;
  }

  .first-screen__right-el img {
    max-width: 30px;
  }

  .first-screen__right-el .title span {
    font-size: 13px;
    line-height: 13px;
  }

  .first-screen h2 {
    font-size: 50px;
    line-height: 55px;
  }

  h3,
  .footer .wrap__inner h3 {
    font-size: 26px;
    line-height: 30px;
  }

  .education-section .tiles .tile .years-text {
    font-size: 26px;
    line-height: 50px;
  }

  .contacts-section .contacts-bx .contacts-el,
  .contacts-section .contacts-bx .contacts-el a {
    font-size: 26px;
    line-height: 30px;
  }

  .btn-arrow,
  .first-screen-el-1 {
    max-width: 270px;
  }

  .first-screen-el-2,
  .certificates-section__el-2 {
    max-width: 160px;
  }

  .first-screen-el-4,
  .first-screen-el-3,
  .about-bx__left-el-3,
  .about-bx__left-el-4,
  .reviews-section .reviews-section__el-1,
  .reviews-section .reviews-section__el-2 {
    max-width: 80px;
  }

  .first-screen-el-5,
  .about-bx__left-el-1,
  .reviews-section .reviews-section__el-3,
  .slick-arrows a.next svg,
  .contacts-section__el-3 {
    max-width: 100px;
  }

  .reviews-section img {
    max-width: 320px;
  }

  .first-screen-el-6,
  .about-bx__left-el-2 {
    max-width: 15px;
  }

  .about-wrap__left {
    max-width: 40%;
  }

  .about-wrap__right {
    max-width: 60%;
  }

  .arrow-to-bottom {
    bottom: -164.5px;
  }

  .about-bx h2,
  .values-section .title,
  h2 {
    font-size: 42px;
    line-height: 42px;
  }

  .quote {
    max-width: 50px;
  }

  .circle-bx {
    background-image: radial-gradient(circle at 123px 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 40px, #fff 40px)
  }

  .education-section .tiles .tile .years-text {
    width: 187px;
  }

  .about-bx__left-el-5,
  .education-section__el-2,
  .certificates-section__el-1,
  .certificates-section__el-5 {
    max-width: 80px;
    left: 0;
  }

  .education-section__el-1 {
    max-width: 80px;
    right: 0;
  }

  .certificates-section__el-3,
  .certificates-section__el-4 {
    max-width: 250px;
  }

  .certificates-section__el-6 {
    max-width: 30px;
  }

  .certificates-section .tiles .img-bx {
    height: 248px;
  }

  .certificates-section .tiles .img-bx img {
    max-width: 40%;
  }

  .certificates-section .tiles .description,
  .slide-item__subtitle,
  .footer .footer__left p {
    font-size: 14px;
    line-height: 16px;
  }

  .specialists-section .slide-item__bx {
    padding-bottom: 20px;
  }

  .slick-arrows a {
    width: 55px;
    height: 55px;
  }

  .slick-arrows a.next svg,
  .slick-arrows a.prev svg {
    max-width: 29px;
  }

  .specialists-section__el-2 {
    max-width: 60px;
    right: 7.5%;
    top: 15%;
  }

  .specialists-section .slide-item__bx {
    max-width: 280px;
  }

  .specialists-section .circle-bx {
    background-image: radial-gradient(circle at 75px 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 30px, #fff 30px);
  }

  .specialists-section .circle-bx .plus-bx {
    right: -53px;
    top: -23px;
    width: 45px;
    height: 45px;
  }

  .specialists-section .circle-bx .plus-bx svg {
    max-width: 31px;
  }

  .contacts-section .wrap__right>div,
  .contacts-section .wrap__right>iframe {
    height: 468px !important;
  }

  .footer .wrap__inner .contacts-el,
  .footer .wrap__inner .contacts-el a {
    font-size: 20px;
  }

  .footer .btn-arrow {
    max-width: 310px;
    padding: 20px;
  }

  .footer-bottom .wrap p,
  .footer-bottom .wrap a,
  .footer-bottom .wrap .dev {
    font-size: 12px;
    line-height: 14px;
  }

  .footer-bottom .wrap .dev img {
    max-width: 80px;
  }

  .footer-bottom .wrap {
    padding: 15px 0 18px 0
  }

  /* .footer .arrow-bx {
    width: 58px;
    height: 58px;
    right: 25px;
    top: -29.5px;
  } */

  .footer .arrow-bx svg {
    max-width: 35px;
  }

  /* .footer>.container {
    background: radial-gradient(circle at 96% 0, #fff 35px, var(--green) 35px);
  }

  .single-services .footer>.container,
  .error404 .footer>.container {
    background: radial-gradient(circle at 96% 0, #EFE8F0 35px, var(--green) 35px)
  } */

  .footer .footer__right .menu li {
    padding-right: 36px;
  }

  .contacts-section__el-1,
  .contacts-section__el-2 {
    max-width: 25px;
  }

  .description p {
    font-size: 18px;
    line-height: 1.3;
  }

  .arrow-image {
    width: 180px;
    right: -25%;
    top: 40%;
  }

  .first-screen__right-el-5 {
    max-width: 330px;
  }

  .first-screen__right-el-2 {
    right: 15px;
  }

  .first-screen__left p {
    font-size: 18px;
  }

  .about-bx__left-el-4,
  .about-bx__left-el-5 {
    bottom: -70px;
  }

  .education-section .tiles .tile p {
    font-size: 20px;
  }

  .services-section .tiles .tile h3 {
    font-size: 30px;
  }

  .header__contacts-left {
    align-items: center
  }
}

@media (max-width: 1400px) {

  .about-wrap__left-img {
    width: 100%;
  }

  .about-bx .wrap:not(.wrap2) {
    margin-bottom: 50px;
  }

  .education-section {
    padding-top: 50px;
  }

  .first-screen ul li,
  .first-screen li strong {
    font-size: 16px;
    font-weight: 600;
  }

  .inst-arrow-1 {
    left: -5%;
    max-width: 15%;
  }

  .inst-arrow-2 {
    right: -5%;
    max-width: 15%;
  }

  /* font sizes */
  /* 16 > 14 */
  /* 18 > 16 */
  /* 26 > 22 */
  /* 42 > 34 */

  /* 50 > 45 */
  .main-navigation a,
  .header-btn,
  .btn-arrow,
  .values-section .tiles .tile p,
  .services-section .tiles-link,
  p,
  .education-section .tiles .tile p,
  .form-section-1 p,
  .contacts-section .contacts-bx .contacts-title,
  .footer .footer__right .menu a,
  .footer .wrap__inner .contacts-title {
    font-size: 14px;
  }

  .education-section .tiles .tile p {
    font-size: 20px;
  }

  .header__contacts-phone,
  .first-screen__right-el .title,
  h4,
  .certificates-section .tiles .title,
  .slide-item__title,
  .footer .wrap__inner h4 {
    font-size: 16px;
    line-height: 18px;
  }

  h3,
  .footer .wrap__inner h3,
  h3 span,
  .contacts-section .contacts-bx .contacts-el,
  .contacts-section .contacts-bx .contacts-el a {
    font-size: 22px;
    line-height: 26px;
  }

  .about-bx h2,
  .values-section .title,
  h2,
  h2 span {
    font-size: 34px;
    line-height: 34px;
  }

  .header-btn {
    padding: 14px 28px;
  }

  .header .custom-logo-link img {
    max-width: 180px;
  }

  .btn-arrow {
    max-width: 240px;
    padding: 15px 20px;
  }

  .arrow-image {
    max-width: 150px;
    right: -70%;
    top: -90%;
  }

  .about-bx__left-el-1 {
    left: 0;
  }

  .about-bx__left-el-2 {
    top: 7%;
    left: 25%;
  }

  .about-bx p {
    margin-bottom: 30px;
  }

  .about-bx .arrow-image {
    max-width: 120px;
    right: -50%;
    top: -40%;
  }

  .values-section .tiles {
    width: 95%;
  }

  .education-section .tiles .tile .years-text {
    width: 137px;
    font-size: 22px;
  }

  .certificates-section .tiles .img-bx {
    height: 208px;
  }

  .certificates-section .tiles .img-bx img {
    max-width: 35%;
  }

  .reviews-section img {
    max-width: 260px;
  }

  .specialists-section .slide-item__bx {
    max-width: 240px;
  }

  .contacts-section {
    padding: 120px 0;
  }

  .footer .arrow-bx {
    right: 17px
  }

  .circle-check {
    /* transform: translateX(-43%); */
    max-width: 80px;
  }

  .values-section .wrap {
    padding-bottom: 120px;
  }

  .values-section .tiles .tile {
    padding: 30px 23px 30px 23px;
  }

  .first-screen__right-el-5 {
    max-width: 230px;
  }

  .first-screen__right-el-4 {
    max-width: 240px;
  }

  .section.contacts-section.page .img {
    width: 30%;
  }

  .page-template-page-main .values-section {
    padding-bottom: 127px;
  }

  .services-section .tiles .tile .order {
    min-width: 312px;
  }
}

@media (max-width: 1200px) {
  /* font sizes */
  /* 14 > 12 */
  /* 16 > 14 */
  /* 22 > 20 */
  /* 50 > 38 */

  .about-wrap__left {
    max-width: 46%;
  }

  .wrap:not(.wrap_2) .about-wrap__right {
    padding-top: 0px;
  }

  .inst-arrow-1 {
    left: 0;
    max-width: 15%;
  }

  .inst-arrow-2 {
    right: 0;
    max-width: 15%;
  }

  .inst-link {
    font-size: 30px;
  }

  .inst-link:before {
    width: 49px;
    height: 49px;
  }

  h1 {
    font-size: 50px;
    line-height: 1.2;
  }

  .kama_breadcrumbs a,
  .kama_breadcrumbs span {
    font-size: 18px;
  }

  .gallery-section .tiles {
    gap: 19px;
  }

  .gallery-section__el-22 {
    top: -8%;
  }

  .inner-first-screen {
    padding: 60px 0;
  }

  .education-section .tiles .tile .years-text {
    width: 122px;
    font-size: 18px;
  }

  .education-section .el {
    width: 90px;
  }

  .header .custom-logo-link img {
    max-width: 140px;
  }

  .main-navigation a,
  .header-btn,
  .btn-arrow,
  .values-section .tiles .tile p,
  .services-section .tiles-link,
  p,
  .education-section .tiles .tile p,
  .form-section-1 p,
  .contacts-section .contacts-bx .contacts-title,
  .footer .footer__right .menu a,
  .footer .wrap__inner .contacts-title {
    font-size: 12px;
  }

  .header__contacts-phone,
  .first-screen__right-el .title,
  h4,
  .certificates-section .tiles .title,
  .slide-item__title,
  .footer .wrap__inner h4 {
    font-size: 14px;
    line-height: 18px;
  }

  h3,
  .footer .wrap__inner h3,
  h3 span,
  .contacts-section .contacts-bx .contacts-el,
  .contacts-section .contacts-bx .contacts-el a {
    font-size: 20px;
    line-height: 24px;
  }

  .first-screen h2 {
    font-size: 38px;
    line-height: 40px;
  }

  .header__socials {
    gap: 5px;
  }

  .header__socials a {
    display: flex;
    align-items: center
  }

  .header__socials img {
    max-width: 80px;
  }

  .btn-arrow {
    max-width: 220px;
    min-width: 220px;
    padding: 9.5px 20px;
  }

  .btn-arrow svg {
    max-width: 20px;
  }

  .first-screen h3 {
    margin-bottom: 0px;
  }

  .first-screen__right-el-4 {
    max-width: 220px;
  }

  .about-bx .arrow-image {
    max-width: 90px;
  }

  .btn-arrow {
    max-width: 220px;
    min-width: 220px;
  }

  .circle-bx {
    background: radial-gradient(circle at 103px 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 40px, #fff 40px);
  }

  .values-section .tiles .tile {
    min-height: 90px;
  }

  .certificates-section .tiles .img-bx {
    height: 172px;
  }

  .reviews-section img {
    max-width: 220px;
  }

  .specialists-section .slide-item__bx {
    max-width: 260px;
  }

  .slide-item__title {
    max-width: 190px;
  }

  .footer .wrap__inner .contacts-el,
  .footer .wrap__inner .contacts-el a {
    font-size: 18px;
  }

  /* .footer>.container {
    background: radial-gradient(circle at 95% 0, #fff 30px, var(--green) 30px);
  }

  .single-services .footer>.container,
  .error404 .footer>.container {
    background: radial-gradient(circle at 95% 0, #EFE8F0 30px, var(--green) 30px)
  } */

  /* .footer .arrow-bx {
    top: -26.5px;
    right: 23px;
    width: 50px;
    height: 50px;
  } */

  /* .footer .arrow-bx svg {
    max-width: 30px;
  } */

  .footer .btn-arrow {
    padding: 15px 20px;
  }

  /* .footer-socials img {
    max-width: 20%;
  } */

  .footer .footer__left>img {
    max-width: 80%;
  }

  .form-section-1 .wrap__inner {
    padding: 60px 0 90px 0;
  }

  .section.contacts-section.page .img {
    max-width: 40%;
  }

  .form-section-1 .wrap__inner {
    padding: 60px 20px 90px 20px;
  }

  .first-screen__right-el-3 {
    bottom: -3%;
    max-width: 230px;
  }

  .first-screen__right-el-2 {
    top: 61%;
  }

  .first-screen__right-el-5 {
    top: 35%;
  }

  .arrow-image {
    max-width: 130px;
    right: -10%;
    top: 60%;
  }

  .first-screen__right-el-1 {
    top: 10%;
    left: 10px;
  }

  .first-screen__right-el-5 {
    top: -10%;
  }

  .first-screen__right-el-2 {
    top: 50%;
  }

  .first-screen__right-el-3 {
    bottom: 0;
  }

  .arrow-to-bottom {
    bottom: -164.5px;
  }

  .education-section .tiles .tile p {
    font-size: 20px;
  }

  .education-section .tiles,
  .education-line {
    gap: 50px;
  }

  .services-section .tiles .tile .description h4 {
    line-height: 1;
  }

  .services-section .tiles .tile .order {
    min-width: auto;
  }
}

@media (max-width: 991px) {
  .btn {
    font-size: 15px;
  }

  .gallery-section__el-23 {
    max-width: 30%;
    bottom: -1%;
  }

  .gallery-section__el-22 {
    max-width: 30%;
  }

  .gallery-section .btn-arrow {
    width: 40%;
  }

  .gallery-section .tiles {
    gap: 18px;
  }

  .custom-logo-link {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .header .wrap>.main-navigation {
    display: none;
  }

  .header__contacts-left {
    gap: 5px;
    flex-direction: column;
    align-items: flex-end;
  }

  .header__socials img {
    max-width: 25px;
  }

  .header .header__contacts-phone {
    font-size: 14px !important;
  }

  .header__contacts {
    position: absolute;
    right: 70px;
  }

  .header .wrap {
    position: static;
  }

  .burger-checkbox {
    position: absolute;
    visibility: hidden;
  }

  .burger {
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block;
    position: relative;
    border: none;
    background: transparent;
    width: 20px;
    height: 16px;
  }

  .burger::before,
  .burger::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #000;
  }

  .burger::before {
    top: 0;
    box-shadow: 0 7px 0 #000;
    transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
  }

  .burger::after {
    bottom: 0;
    transition: bottom .3s .15s, transform .3s;
  }

  .burger-checkbox:checked+.burger::before {
    top: 7px;
    transform: rotate(45deg);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
    transition: box-shadow .15s, top .3s, transform .3s .15s;
  }

  .burger-checkbox:checked+.burger::after {
    bottom: 7px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
  }

  .menu-bx {
    /* top: 47.2px; */
    top: 59.2px;
    left: 0;
    position: absolute;
    /* position: fixed; */
    z-index: 999;
    display: grid;
    gap: 12px;
    margin: 0;
    background: var(--green);
    list-style-type: none;
    transform: translateX(-100%);
    transition: .3s;
    width: 100%;
    padding: 20px 15px;
    height: 100vh;
    display: block;
  }

  .menu-item {
    display: block;
    padding: 8px;
    color: white;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
  }

  /* 
  .menu-item:hover {
    background: rgba(255, 255, 255, .2)
  } */

  .burger-checkbox:checked~.menu-bx {
    transform: translateX(0);
  }

  .menu-bx .menu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start
  }

  .menu-bx .sub-menu {
    display: none;
    padding-top: 10px;
    gap: 10px;
  }

  .menu-bx .menu-item-has-children {
    position: relative;
  }

  .menu-bx .menu-item-has-children svg {
    position: relative;
    right: -16px;
    top: 6px;
    padding: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer
  }

  .menu-bx .menu-item-has-children.open svg {
    transform: rotate(180deg);
  }

  .menu-bx .menu-item-has-children path {
    fill: var(--white);
  }

  .menu-bx li.open .sub-menu {
    display: flex;
    flex-direction: column;
  }

  .menu-bx .menu-item {
    text-align: left;
    padding-top: 0;
  }

  .menu-bx .menu-item a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
  }

  .header__contacts.mobile {
    flex-direction: column;
  }

  .footer .footer__right .menu {
    margin-left: 10px;
  }

  .footer .footer__right .menu li {
    padding-right: 15px;
  }

  .first-screen__right>img {
    max-width: 360px;
  }

  .first-screen h2 {
    font-size: 30px;
    line-height: 32px;
  }

  h3,
  .footer .wrap__inner h3,
  h3 span,
  .contacts-section .contacts-bx .contacts-el,
  .contacts-section .contacts-bx .contacts-el a {
    font-size: 17px;
    line-height: 22px;
  }

  .first-screen__right-el-1 {
    top: 5%;
    left: -15%;
  }

  .first-screen__right-el-2 {
    max-width: 163px;
    top: 30%
  }

  .first-screen__right-el-3 {
    bottom: 7%;
  }

  .first-screen__right-el-4 {
    bottom: 28%;
    left: -6%;
  }

  .arrow-image {
    max-width: 120px;
    /* right: -66%; */
    /* top: -100%; */
  }

  .header {
    padding: 7px 0;
  }

  .about-bx h2,
  .values-section .title,
  h2,
  h2 span {
    font-size: 28px;
    line-height: 30px;
  }

  .about-bx h3 {
    margin-bottom: 5px;
  }

  .about-bx__left-el-4 {
    margin-bottom: -90px;
  }

  .values-section .tiles .tile {
    width: calc(33.3% - 20px);
    margin-bottom: 70px !important;
  }

  .values-section .tiles .tile:last-child {
    margin-bottom: 0 !important;
  }

  .circle-bx {
    background: radial-gradient(circle at 103px 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 30px, #fff 30px);
  }

  .circle-check {
    top: -30%;
    max-width: 38%;
  }

  .services-section {
    margin-top: -680px;
  }

  .education-section,
  .reviews-section,
  .specialists-section,
  .contacts-section {
    padding: 80px 0;
  }

  .education-section__el-2 {
    bottom: -75px;
  }

  .certificates-section .tiles .tile {
    width: calc(33% - 20px);
  }

  .certificates-section .tiles .img-bx {
    height: 217px;
  }

  .certificates-section .tiles .tile:last-child {
    position: relative;
    left: 30%;
    top: -80px
  }

  .certificates-section .tiles .tile:nth-child(2n) {
    padding-top: 106px;
  }

  .certificates-section .tiles .tile:nth-child(4) {
    padding-top: 0;
    top: -80px;
    position: relative;
  }

  .form-section-1 .wrap__inner .wrap__left {
    width: 60%;
  }

  .contacts-section__el-3 {
    top: -16%;
  }

  .footer .footer__left>img {
    max-width: 60%;
  }

  .footer .footer__left {
    width: 15%;
  }

  .footer .footer__left>img {
    max-width: 80%;
  }

  .certificates-section .tiles .description,
  .slide-item__subtitle,
  .footer .footer__left p {
    font-size: 12px;
  }

  .menu-item {
    padding: 0 8px;
  }

  .footer .wrap__inner {
    padding-left: 17px;
  }

  .footer .btn-arrow {
    width: 75%;
  }

  .footer .footer__right {
    width: 84%;
  }

  .footer .arrow-bx {
    right: 11px;
  }

  .footer-bottom .wrap p,
  .footer-bottom .wrap a,
  .footer-bottom .wrap .dev {
    font-size: 10px;
  }

  .footer-bottom .wrap .dev img {
    max-width: 60px;
  }

  .education-section .slick-list {
    margin-left: 0;
    padding: 100px 0 80px 0;
  }

  .education-section .slick-list .slick-track {
    display: flex;
    gap: 10px;
  }

  .education-section .container {
    width: 100%;
  }

  .education-section .el {
    width: 43%;
    top: -60px;
    height: 60px;
  }

  .education-section .tiles .tile .years-text {
    width: 53%;
    font-size: 18px;
    line-height: 40px;
    top: -61px;
  }

  .education-section .tiles {
    margin-top: 0;
  }

  /* .education-line__circle {
    display: none;
  } */

  .education-section .tiles .tile .years-text:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--green);
    position: absolute;
    left: 0;
    top: -40px;
  }

  /* .education-line {
    display: none;
  } */

  .education-section .slick-list:before {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(251, 189, 88, 1) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .circle-check {
    top: -75%;
    transform: translateX(-42%);
  }

  .footer .footer__right .menu {
    padding: 0;
  }

  .services-section {
    margin-top: 0;
  }

  .section.contacts-section.page>.container>.wrap {
    padding: 40px 70px;
  }

  .wrap__form {
    flex-direction: column;
  }

  .wrap__form-left,
  .wrap__form-right {
    width: 100%;
  }

  .form-section-1.form-bx .wrap__inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .first-screen__right-el {
    bottom: 7%;
    right: 0;
    top: auto;
    left: auto;
    opacity: 0 !important;
    transition: .3s;
  }

  .first-screen__right-el.show {
    opacity: 1 !important;
  }

  .first-screen__left p {
    font-size: 16px;
  }

  h3,
  .footer .wrap__inner h3,
  h3 span,
  .contacts-section .contacts-bx .contacts-el,
  .contacts-section .contacts-bx .contacts-el a {
    font-size: 18px;
  }

  .about-bx .wrap {
    flex-direction: column;
  }

  .about-wrap__left,
  .about-wrap__right {
    width: 100%;
    max-width: 100%;
  }

  .wrap.wrap_2.about-wrap__left {
    margin-bottom: 50px;
  }

  .about-bx .container>h2 {
    margin-bottom: 30px;
  }

  .about-bx .wrap_2 {
    gap: 0;
  }

  .wrap.wrap_2 {
    margin-bottom: 0;
  }

  .wrap.wrap_2 ul {
    margin-bottom: 0;
  }

  .about-bx__left-el-4 {
    margin-bottom: 0;
  }

  .education-section .tiles,
  .education-line {
    gap: 20px;
  }

  .education-line__circle,
  .education-section .tiles .tile {
    width: calc(33.3% - 20px);
  }

  .services-section .tiles .tile {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .services-section .tiles .tile .content {
    width: 100%;
  }

  .values-section .tiles {
    width: 100%;
    gap: 20px;
  }

  .circle-check {
    top: 0;
    transform: translateX(-10%);
    max-width: 50px;
  }

  .values-section .tiles .tile {
    padding: 20px 13px 20px 13px;
    margin-bottom: 0 !important;
  }

  .values-section .title {
    margin-bottom: 50px;
  }

  .values-section .wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .values-section .tiles .tile:last-child {
    width: calc(100% - 20px);
  }

  .form-section-1 .wrap__inner {
    justify-content: space-between;
  }

  .form-section-1 .wrap__inner .wrap__right img {
    max-width: 220px;
  }

  .section.articles h4 {
    font-size: 22px;
  }

  .section.articles .content {
    padding: 20px;
  }

  .section.articles .wrap .item {
    padding-bottom: 26px;
  }

  .section.articles {
    padding-bottom: 100px;
    padding-top: 130px;
  }

  .articles-item-1 {
    top: -10%;
  }

  .section.articles h2 {
    margin-bottom: 80px;
  }

  .footer .wrap {
    flex-direction: column;
  }

  .footer .footer__left,
  .footer .footer__right {
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
  }

  .footer .footer__right .menu {
    margin-left: 0;
  }

  .footer .wrap__inner .contacts-el,
  .footer .wrap__inner .contacts-el a,
  .footer .footer__right .menu a {
    font-size: 14px;
  }

  .footer .wrap {
    gap: 10px;
  }

  .footer .footer__right {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .popup-container {
    width: 520px;
  }

  h3 {
    font-size: 24px;
  }

  .services-section .tiles .tile h3 {
    font-size: 24px;
  }

  .about-bx h2,
  .values-section .title,
  h2,
  h2 span {
    font-size: 26px;
  }

  .section.quiz h3 {
    font-size: 24px;
  }

  .section.quiz h4 {
    font-size: 20px;
    margin-bottom: 36px;
  }

  .categories {
    margin-top: 60px;
  }

  .categories a {
    padding: 18px 20px;
  }

  .categories {
    gap: 10px;
  }

  .inst-link {
    font-size: 24px;
  }

  .inst-link:before {
    width: 39px;
    height: 39px;
    left: -55px;
  }

  .specialists-section .slide-item__bx img {
    width: 100%;
  }

  .gallery-section .tiles {
    gap: 17px;
  }

  .first-screen__right>img {
    max-width: 100%;
  }

  .gallery-section .btn-arrow {
    width: 50%;
  }

  .contacts-section .wrap__left,
  .contacts-section .wrap__right {
    width: 100%;
  }

  section.section:not(.education-section, .services-section, .form-section-1) {
    padding-left: 15px;
    padding-right: 15px;
  }

  .form-section-1 .wrap .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer .footer__right .menu {
    /* flex-direction: column; */
    align-items: flex-start;
    margin-left: 0;
  }

  .footer .footer__right .menu li {
    border-right: 0;
    padding-right: 8px;
    padding-left: 0;
  }

  .footer .arrow-bx {
    right: 7px;
  }

  .menu-footer-menu-container {
    margin-bottom: 0;
  }

  .footer-bottom .wrap {
    flex-direction: column;
    gap: 10px;
  }

  .contacts-section .wrap__left {
    border-radius: 30px;
  }

  .contacts-section__el-1 {
    left: auto;
    right: 20px;
  }

  .form-section-1 .wrap__inner {
    padding: 30px 0 50px 0;
  }

  .slick-list {
    margin-left: 0;
  }

  .certificates-section .tiles .img-bx {
    height: 158px;
  }

  .circle-bx {
    background: radial-gradient(circle at 117px 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 30px, #fff 30px)
  }

  .about-bx .wrap {
    flex-direction: column;
  }

  .about-wrap__left {
    max-width: 50%;
    width: 100%;
  }

  .about-wrap__right {
    max-width: 70%;
    width: 100%;
  }

  .about-bx .btn-bx {
    margin-top: 0;
  }

  .education-section .el:before {
    bottom: -2px
  }

  .education-section .tiles .tile .years-text {
    width: 54%;
  }

  .education-section__el-1 {
    right: 15px;
  }

  .about-bx__left-el-5,
  .education-section__el-2,
  .certificates-section__el-1,
  .certificates-section__el-5 {
    left: 15px;
  }

  .services-section {
    border-radius: 30px 30px 0 0;
  }

  .footer .wrap {
    flex-direction: column;
  }

  .footer .footer__left {
    width: 100%;
    align-items: center;
  }

  .footer .footer__right {
    width: 100%;
    border-left: 0;
  }

  .footer .wrap__inner {
    padding-left: 0;
  }

  .footer .footer__left {
    margin-bottom: 20px;
  }

  .first-screen-el-3 {
    left: auto;
    right: 0
  }

  .first-screen__right>img {
    max-width: 90%;
  }

  .about-bx__left-el-5 {
    bottom: -90px;
  }

  .services-section .tiles .tiles-title {
    font-size: 16px;
  }

  .inner-first-screen h1 {
    font-size: 42px;
  }

  .about-wrap__left,
  .about-wrap__right {
    width: 100%;
    max-width: 100%;
  }

  .first-screen__left {
    padding-top: 0;
  }

  .btn {
    min-width: 340px;
    padding: 20px;
  }

  .education-section .tiles .tile {
    padding: 45px 0;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .values-section .tiles .tile {
    width: calc(100% - 20px);
  }

  .section.articles .wrap .item {
    width: 100%;
  }

  .section.articles .wrap {
    flex-direction: column;
  }

  .footer .wrap__inner .wrap__inner-right {
    flex-direction: column;
  }

  .footer .wrap__inner .wrap__inner-right {
    flex-direction: column;
    align-items: center;
  }

  .footer .wrap__inner .wrap__inner-right {
    gap: 20px;
  }
}

@media (max-width: 576px) {

  .section.quiz h3,
  .section.quiz h4 {
    display: block;
  }

  .section.articles.single h2 {
    margin-bottom: 10px;
  }

  .single-item-1 {
    max-width: 62px;
  }

  .single-item-2 {
    top: 90px;
    max-width: 62px;
  }

  .single-item-2 {
    left: 0;
    max-width: 62px;
  }

  .single-item-6 {
    max-width: 62px;
    right: 30px;
    bottom: 10px;
  }

  .single-item-5 {
    max-width: 62px;
    left: 30px;
    bottom: 10px;
  }

  .form-section-1 input.wpcf7-submit {
    display: flex;
    text-align: center;
    justify-content: center;
  }

  .parallax-bg {
    left: 0;
  }

  .values-section .tiles .tile:last-child {
    width: 100%;
  }

  .popup-container {
    width: 90%;
    max-height: min-content;
    padding: 40px 15px;
    padding-bottom: 160px;
  }

  .fancybox__toolbar.is-absolute,
  .is-compact .fancybox__toolbar {
    top: 80px;
  }

  .popup-container h3 {
    font-size: 26px;
  }

  .popup-container h4 {
    font-size: 18px;
  }

  .popup-container input {
    font-size: 16px;
  }

  *,
  .services-section .tiles .tile .details p {
    font-size: 16px;
  }

  .first-screen__right-el-2 {
    max-width: 213px;
  }

  .categories a {
    font-size: 14px;
    padding: 13px 20px;
  }

  .categories {
    flex-wrap: wrap;
  }

  .section.quiz {
    padding: 30px 0;
  }

  .form-section-1 .wrap__inner .wrap__right {
    display: none;
  }

  .form-section-1 .wpcf7-form input {
    width: 100%;
  }

  .form-section-1 input.wpcf7-submit {
    padding: 20px 0;
    width: 100%;
  }

  .articles-item-1 {
    top: -88px;
  }

  .section.articles h2 {
    margin-bottom: 50px;
  }

  .articles-item-2 {
    display: none;
  }

  .inst-arrow-1,
  .inst-arrow-2 {
    display: none;
  }

  .section.other-services .slick-track {
    gap: 0;
  }

  .section.other-services .tiles .tile {
    max-width: 100%;
    width: 100%;
  }

  .services-section .tiles .tile img {
    max-width: 100%;
    width: 100%;
  }

  .first-screen .wrap {
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column-reverse;
    width: 100%;
  }

  .first-screen__left,
  .first-screen__right {
    width: 100%;
  }

  .first-screen .arrow-image {
    display: none;
  }

  .first-screen .btn-bx {
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .footer .footer__right .menu {
    flex-direction: column;
  }

  .footer .wrap__inner {
    flex-direction: column;
  }

  .footer__right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer>.container {
    background: radial-gradient(circle at 50% 0, #fff 30px, var(--green) 30px);
  }

  .single-services .footer>.container,
  .error404 .footer>.container {
    background: radial-gradient(circle at 50% 0, #EFE8F0 30px, var(--green) 30px)
  }

  .footer .arrow-bx {
    right: 50%;
    transform: translateX(50%);
    top: -24px;
  }

  .footer .footer__right .menu {
    gap: 15px;
  }

  .footer .footer__right .menu {
    align-items: center;
  }

  .footer .footer__right .menu li {
    padding-right: 0;
  }

  .footer .wrap__inner .wrap__inner-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
  }

  .footer .wrap__inner .wrap__inner-left h4 {
    text-align: center;
  }

  .footer .btn-arrow {
    width: 100%;
  }

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

  .footer .footer__left p {
    text-align: center;
  }

  .footer .wrap__inner .contacts-title,
  .footer .wrap__inner .contacts-el,
  .footer .wrap__inner .contacts-el a {
    text-align: center;
  }

  .footer .wrap__inner .contacts-el,
  .footer .wrap__inner .contacts-el a {
    font-size: 16px;
  }

  .footer__right .wrap__inner-right {
    width: 100%;
  }

  .quote {
    max-width: 40px;
  }

  .specialists-section .slide-item__bx {
    max-width: 100%;
  }

  .about-bx h2,
  .values-section .title,
  h2,
  h2 span,
  .slick-arrows {
    z-index: 9999;
    position: relative
  }

  .slick-arrows {
    margin-top: 0;
  }

  .reviews-section img {
    max-width: 100%;
  }

  .certificates-section .tiles .tile {
    width: calc(50% - 20px);
  }

  .certificates-section .tiles .tile:nth-child(2n) {
    padding-top: 60px;
  }

  .certificates-section .tiles .img-bx {
    height: 130px;
    border: 10px solid #E2E2E2;
  }

  .certificates-section .tiles .tile:nth-child(4) {
    top: 0;
  }

  .certificates-section .tiles .tile:last-child {
    left: 0;
    top: 0;
  }

  .certificates-section .tiles .tile:nth-child(2n) {
    padding-top: 0;
  }

  .certificates-section .tiles {
    justify-content: center;
  }

  .certificates-section__el-1 {
    top: 3%;
  }

  .certificates-section__el-5 {
    bottom: 3%;
  }

  .certificates-section__el-3 {
    left: -12%;
  }

  .certificates-section__el-3,
  .certificates-section__el-4 {
    max-width: 150px;
  }

  .certificates-section .tiles .tile {
    z-index: 99;
  }

  .first-screen-el-4 {
    bottom: auto;
    right: auto;
    top: 10px;
    left: 10px;
  }

  h3,
  .footer .wrap__inner h3,
  h3 span,
  .contacts-section .contacts-bx .contacts-el,
  .contacts-section .contacts-bx .contacts-el a {
    font-size: 16px;
    line-height: 1.2;
  }

  .first-screen h3 {
    margin-bottom: 00px;
  }

  .first-screen ul li,
  .first-screen li strong {
    font-size: 14px;
  }

  .first-screen h2 {
    margin-bottom: 10px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-wrap__left,
  .about-wrap__right {
    max-width: 100%;
  }

  .about-bx .arrow-image {
    max-width: 60px;
    right: -35%;
    top: 0%
  }

  .about-bx__left-el-5 {
    bottom: auto;
    right: 0;
    left: auto;
  }

  .values-section .tiles {
    width: 100%;
    gap: 7px;
  }

  .values-section .tiles .tile {
    width: calc(50% - 10px);
    padding: 10px;
    margin-bottom: 10px !important;
  }

  .values-section .tiles .tile p {
    /* word-break: break-all; */
  }

  .circle-bx {
    background: radial-gradient(circle at 50% 0px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 20px, #fff 20px);
    height: 30px;
    top: -30px;
  }

  .values-section .tiles {
    margin-bottom: 0;
  }

  .services-section .tiles {
    gap: 10px;
  }

  .services-section .tiles.slick-slider {
    padding: 0 15px
  }

  .services-section .tiles .tile {
    padding: 10px;
    border-radius: 20px;
  }

  .header__contacts-phone,
  .first-screen__right-el .title,
  h4,
  .certificates-section .tiles .title,
  .slide-item__title,
  .footer .wrap__inner h4 {
    font-size: 12px;
    line-height: 1.2;
  }

  .services-section .tiles .tile img {
    margin-bottom: 5px;
  }

  .services-section .tiles .tiles-title {
    margin-bottom: 15px;
  }

  .services-section .tiles-link {
    padding: 10px;
  }

  .education-section__el-1 {
    top: -73px;
  }

  .education-section .title {
    margin-bottom: 0;
  }

  .education-section .slick-list {
    padding: 100px 0 20px 0;
  }

  .certificates-section .tiles .img-bx {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  .certificates-section .tiles {
    gap: 10px;
  }

  .certificates-section .tiles .tile {
    width: calc(50% - 10px);
  }

  .reviews-section__el-3 {
    right: -10%;
  }

  .form-section-1 {
    padding-top: 80px;
  }

  .form-section-1 .wrap__inner .wrap__left {
    width: 100%;
  }

  .form-section-1 .wrap__inner p,
  .form-section-1 .wrap__inner a,
  .form-section-1 h2 {
    width: 100%;
    text-align: center;
  }

  .form-section-1 .wrap__inner a {
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-section {
    overflow: hidden;
  }

  .about-bx.about-bx__right {
    padding-bottom: 20px;
  }

  .about-bx.about-bx__right .wrap {
    flex-direction: column;
  }

  .about-bx.about-bx__right .about-wrap__right {
    margin-top: 20px;
  }

  .gallery-section .btn-arrow {
    width: 50%;
  }

  h1 {
    font-size: 40px;
  }

  .kama_breadcrumbs a,
  .kama_breadcrumbs span {
    font-size: 16px;
  }

  .about-bx.about-bx__right .about-bx__left-el-5 {
    top: -70px;
  }

  .section.contacts-section.page>.container>.wrap {
    padding: 40px 20px;
  }

  .contacts-section .contacts-bx .contacts-el {
    max-width: 60%;
  }

  .main-navigation a,
  .header-btn,
  .btn-arrow,
  .values-section .tiles .tile p,
  .services-section .tiles-link,
  p,
  .education-section .tiles .tile p,
  .form-section-1 p,
  .contacts-section .contacts-bx .contacts-title,
  .footer .footer__right .menu a,
  .footer .wrap__inner .contacts-title {
    font-size: 14px;
    line-height: 1.2;
  }

  .gallery-section .btn-arrow {
    width: 100%;
    max-width: 100%;
  }

  .gallery-section .tiles .tile:after {
    width: 45px;
    height: 45px;
    background-size: 100%;
  }

  .about-wrap__right.description ul li,
  .about-wrap__right.description ol li {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 6px;
  }

  .about-bx p {
    margin-bottom: 20px;
  }

  .single-section__el-4 {
    bottom: -40%;
    right: 0;
  }

  .certificates-section .tiles .tile {
    padding-top: 0 !important;
  }

  .menu-bx .menu {
    gap: 10px;
  }

  .gallery-section .tiles {
    gap: 16px;
  }

  .services-section .tiles .tiles-title {
    font-size: 14px;
  }

  .inner-first-screen h1 {
    font-size: 30px;
  }

  .description p,
  .description li {
    font-size: 16px;
  }

  .values-section .tiles .tile {
    width: 100%;
  }
}

@media (max-width: 400px) {

  .services-section .tiles .tiles-title,
  .services-section .tiles-link,
  .main-navigation a,
  .header-btn,
  .btn-arrow,
  .values-section .tiles .tile p,
  .services-section .tiles-link,
  p,
  .education-section .tiles .tile p,
  .form-section-1 p,
  .contacts-section .contacts-bx .contacts-title,
  .footer .footer__right .menu a,
  .footer .wrap__inner .contacts-title {
    font-size: 11px;
  }

  .inner-first-screen h1 {
    font-size: 22px;
  }

  .description p,
  .description li {
    font-size: 14px;
  }

  .about-bx h2,
  .values-section .title,
  h2,
  h2 span {
    font-size: 20px;
    line-height: 25px;
  }
}