/* 
Theme Name: Doctor Dent
Author: Dauren Bekuzakov
Version: done
*/

@import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Nunito Sans";
}

body,
html {
  scroll-behavior: smooth;
}

::-moz-selection {
  background: #15A64B;
  color: #FFF;
}

::selection {
  background: #15A64B;
  color: #FFF;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.container__big {
  max-width: 1380px;
}

hr {
  width: 100%;
  height: 1px;
  border: 0;
  outline: none;
  background: #EDF5F0;
  margin-bottom: 10px;
}

.simple-btn {
  padding: 10px 25px;
  border-radius: 6px;
  background: #15A64B;
  color: #FFF;
  border: 0;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.simple-btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  background: #50D177;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.navbar {
  padding: 20px 0;
}

.navbar_white {
  width: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8) !important;
  z-index: 89;
  -webkit-animation: coloring;
  animation: coloring;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  position: fixed;
  top: 0;
  padding: 0;
}

.navbar_white hr {
  display: none;
}

@-webkit-keyframes coloring {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes coloring {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.navbar__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}

.navbar__logo {
  width: 20%;
}

.navbar__logo img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 50px;
}

.navbar__menu a {
  text-decoration: none;
  margin: 0 15px;
  color: #4F4F4F;
}

.navbar__menu a:hover {
  color: #147d3b;
}

@media (max-width: 870px) {
  .navbar__body {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .navbar__menu a {
    margin: 0 5px;
  }
}

.navbar__menu_mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.navbar__menu_mobile.show {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.navbar__menu_mobile.show a {
  text-decoration: none;
  margin: 10px 0;
  color: #4F4F4F;
}

.navbar__menu_mobile.show a:hover {
  color: #15A64B;
  text-decoration: underline;
}

.navbar__menu_mobile.show a:first-child {
  margin-top: 30px;
}

.burger-btn {
  display: none;
  cursor: pointer;
}

@media (max-width: 745px) {
  .navbar__menu {
    display: none;
  }

  .burger-btn {
    display: block;
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 18px;
    background: #15a64a;
  }

  .navbar__logo {
    width: 70%;
  }

  .navbar__logo img {
    width: 110px;
    height: 45px;
  }

  .navbar__body {
    padding: 10px 0;
  }

  .navbar__button button {
    width: 170px;
    margin-right: 10px;
  }
}

.content-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.content-overlay.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 365px) {
  .navbar__button button {
    width: 135px;
    padding: 5px;
    margin-right: 5px;
  }
}

.header {
  padding: 10px 0;
}

.header__body {
  position: relative;
  width: 100%;
}

.header__body img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 650px;
  border-radius: 15px;
  -o-object-position: center 70%;
  object-position: center 70%;
}

.header__body_main {
  padding: 40px 80px;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  border-radius: 16px;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
  transform: translate(-50%, -60%);
}

.header__body_main h1 {
  text-transform: uppercase;
  color: #222222;
  font-weight: 700;
  margin-bottom: 10px;
}

.header__body_main h1 span {
  color: #15A64B;
  font-weight: 900;
}

.header__body_main p {
  margin: 10px 0 15px;
  color: #222222;
  font-weight: 600;
  font-size: 17px;
}

.header__body_main p span {
  color: #15A64B;
}

.header__body_main button {
  width: 75%;
  padding: 12px 0;
  font-size: 17px;
}

.loan__body {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loan__body p {
  font-weight: 600;
  color: #222222;
  font-size: 15px;
  margin-right: 10px;
  margin-top: 7px;
  margin-bottom: 7px;
}

.loan__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  border-radius: 5px;
  padding: 0 5px;
  background: #15A64B;
}

.loan__item img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.loan__item:nth-child(2) {
  background: #FF4431;
}

.loan__item p {
  color: #FFF;
  margin: 0;
}

.loan__item p:nth-child(3) {
  position: relative;
  padding: 0 5px;
}

.loan__item p:nth-child(3)::after {
  position: absolute;
  right: -2px;
  top: -6%;
}

.loan__item p:nth-child(3)::before {
  position: absolute;
  left: -2px;
  top: -6%;
}

@media (max-width: 1140px) {
  .header__body_main {
    width: 75%;
  }
}

@media (max-width: 770px) {
  .header__body_main {
    width: 85%;
  }
}

@media (max-width: 680px) {
  .header__body_main {
    padding: 30px 25px;
  }
}

@media (max-width: 550px) {
  .loan__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
  }

  .header__body_main h1 {
    font-size: 20px;
  }

  .header__body_main {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px 5px;
  }

  .loan__item {
    padding: 5px;
    margin-bottom: 5px;
  }

  .simple-btn {
    font-size: 15px !important;
  }
}

@media (max-width: 500px) {
  .header__body_main {
    width: 95%;
  }

  .header__body_main h1 br {
    display: none;
  }

  .header__body_main p {
    font-size: 15px;
  }

  .header__body_main button {
    width: 90%;
    font-size: 15px;
  }
}

.services {
  padding: 20px 0 45px;
}

.services__title {
  text-align: center;
}

.services__title h2 {
  text-transform: uppercase;
  color: #222222;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 15px;
}

.services__title p {
  width: 50%;
  color: #222222;
  margin: 0 auto;
  padding-bottom: 15px;
}

.services__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.services__item {
  overflow: hidden;
  width: 35%;
  margin: 5px;
  position: relative;
  border-radius: 16px;
}

.services__item img {
  border-radius: 16px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center bottom;
  object-position: center bottom;
  width: 100%;
  height: 350px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.services__item .services__text {
  top: 60px;
  left: 40px;
  position: absolute;
}

.services__item .services__text h3 {
  padding-bottom: 5px;
  color: #333333;
  font-weight: 700;
  font-size: 25px;
}

.services__item .services__text ul {
  margin-left: 20px;
}

.services__item .services__text ul li {
  font-weight: 400;
  color: #222222;
}

.services__item .services__text p {
  margin: 10px 0;
}

.services__item:last-child {
  background: linear-gradient(145.24deg, #15A64B 5.87%, #000000 138.11%);
  height: 350px;
}

.services__item:last-child h3 {
  color: #FFF;
}

.services__item:last-child p {
  color: #FFF;
  margin-bottom: 20px;
}

.services__item:last-child button {
  background: #FFF;
  color: #222;
  padding: 15px 20px;
}

.services__item:last-child button:hover {
  background: #50D177;
}

.services__item .tooth {
  position: absolute;
  right: -30px;
  width: 260px;
  height: 260px;
  -o-object-fit: contain;
  object-fit: contain;
  bottom: -30px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.services__item .shape-01 {
  position: absolute;
  left: 170px;
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
  top: 10px;
}

.services__item .shape-02 {
  position: absolute;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  right: 15px;
  top: 15px;
}

@media (max-width: 1140px) {
  .services__title p {
    width: 90%;
  }

  .why-us .container__big {
    width: 90%;
  }

  .services__item {
    width: 45%;
  }
}

@media (max-width: 910px) {
  .services__item {
    width: 100%;
    margin: 5px;
    margin-bottom: 10px;
  }

  .why-us .container__big {
    width: 95% !important;
  }
}

@media (max-width: 500px) {
  .services__item .services__text {
    left: 20px;
    width: 90%;
  }

  .services__item img {
    height: 340px;
  }

  .services__item:last-child {
    height: 340px;
  }

  .services__item .tooth {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 425px) {
  .services__item .services__text {
    top: 45px;
  }

  .services__title p {
    width: 100%;
  }

  .services__item {
    margin-bottom: 0;
  }

  .services__item img {
    height: 300px;
  }

  .services__item:last-child {
    height: 300px;
  }
}

@media (max-width: 380px) {
  .services__item .tooth {
    width: 170px;
    height: 160px;
  }
}

.why-us {
  padding-bottom: 20px;
}

.why-us .container__big {
  border-radius: 15px;
  padding: 60px 30px;
  background: #F3F7F8;
}

.why-us .container__big {
  width: 90%;
}

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

.why-us__title h2 {
  text-transform: uppercase;
  color: #222222;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 15px;
}

.why-us__title h2 span {
  color: #15A64B;
  font-weight: 800;
}

.why-us__title p {
  width: 50%;
  color: #222222;
  margin: 0 auto;
  padding-bottom: 15px;
}

.why-us__body {
  padding: 25px 100px;
  position: relative;
  overflow: hidden;
}

.why-us__item {
  width: 400px;
  margin-right: 10px;
}

.why-us__item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #222222;
  font-weight: 700;
}

.why-us__item h3 span {
  color: #15A64B;
  font-size: 28px;
  font-weight: 800;
  margin-right: 15px;
}

.why-us__item p {
  font-size: 17px;
  font-weight: 400;
  color: #222222;
}

.why-us__slide {
  min-width: 400px;
  max-width: 400px;
  margin-right: 15px;
  margin-left: 5px;
}

.why-us__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0 10px;
  margin: 0 100px;
}

.why-us__buttons a {
  margin: 0 10px;
}

.why-us__scrollbar {
  height: 2px;
}

.back img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.scrollbar__body {
  height: 2px;
  width: 320px;
  background-color: #ACDDC1;
  border-radius: 20px;
}

.swiper-scrollbar-drag {
  background: #15A64B;
}

.why-us__button a {
  text-decoration: none;
  color: #15A64B;
}

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

.why-us__request button {
  width: 15%;
}

@media (max-width: 1024px) {
  .why-us__title p {
    width: 90%;
  }

  .why-us__request button {
    width: 200px;
  }
}

@media (max-width: 895px) {
  .why-us__body {
    padding: 25px 30px;
  }

  .why-us__buttons {
    margin: 0 40px;
  }
}

@media (max-width: 725px) {
  .why-us__body {
    padding: 25px 5px;
  }

  .why-us__buttons {
    margin: 0 10px;
  }
}

@media (max-width: 675px) {
  .why-us__button {
    display: none;
  }

  .why-us__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .why-us__request {
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .why-us .container__big {
    padding: 40px 20px;
  }

  .why-us__title p {
    width: 100%;
  }
}

@media (max-width: 475px) {
  .why-us__body {
    padding: 15px 5px;
  }

  .why-us__slide {
    max-width: 100%;
    min-width: auto;
  }

  .why-us__item {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .why-us__title h2 {
    font-size: 20px;
  }

  .why-us__title p {
    font-size: 15px;
  }
}

.action {
  padding: 20px 0;
}

.action__title {
  text-align: center;
}

.action__title h2 {
  text-transform: uppercase;
  color: #222222;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 25px;
}

.action__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.action__left {
  width: 60%;
  margin-right: 20px;
}

.action__item {
  overflow: hidden;
  padding: 25px 20px;
  width: 100%;
  height: 100%;
  position: relative;
  background: #F3F7F8;
  border-radius: 16px;
}

.action__item h3 {
  color: #222222;
  font-weight: 700;
  font-size: 20px;
  padding: 5px 0;
}

.action__item h4 {
  color: #222;
  padding: 5px 0;
  font-size: 15px;
}

.action__item p {
  color: #222;
  padding: 5px 0;
  font-weight: 600;
  font-size: 15px;
}

.action__item img {
  right: 0;
  bottom: 20px;
  position: absolute;
  height: 110px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.action__item .action__text {
  margin-right: 50px;
}

.action__right {
  width: 40%;
}

.action__right div {
  background: #15A64B;
}

.action__right div h3,
.action__right div h4,
.action__right div p {
  color: #FFF;
}

.action__right div img {
  bottom: 10px;
  right: -20px;
  height: 130px;
}

.action__form_body {
  width: 80%;
  margin: 0 auto;
  padding: 25px 20px;
  height: 100%;
  position: relative;
  background: #F6F6FF;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.action__form_body h3 {
  color: #222222;
  width: 65%;
  margin: 0 auto;
  font-size: 23px;
  line-height: 30px;
  padding: 5px 0 15px;
}

.action__form_body img {
  right: 0px;
  bottom: -60px;
  position: absolute;
  height: 220px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.action__form {
  padding: 10px 0;
}

.action__form input {
  border-radius: 6px;
  padding: 20px 15px;
  width: 19%;
  margin: 0 10px;
  outline: none;
  border: 0;
  font-size: 15px;
  color: red;
}

.action__form input[placeholder] {
  color: #333333;
}

.action__form .form-submit {
  background: #15A64B;
  color: #FFF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.action__form .form-submit:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  background: #50D177;
}

@media (max-width: 1000px) {
  .action__body {
    width: 95%;
  }

  .action__form_body {
    width: 95%;
  }

  .action__form_body h3 {
    width: 95%;
  }

  .action__form input {
    width: 170px;
  }

  .action__form_body img {
    height: 120px;
    bottom: -30px;
  }
}

@media (max-width: 810px) {
  .action__form_body img {
    height: 140px;
    bottom: -60px;
    right: -50px;
  }
}

@media (max-width: 800px) {
  .action__item img {
    bottom: 30px;
    height: 90px;
  }

  .action__right div img {
    height: 100px;
    bottom: 30px;
  }

  .action__item .action__text {
    margin-right: 80px;
  }
}

@media (max-width: 710px) {
  .action__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .action__left,
  .action__right {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .action__right div img {
    bottom: 10px;
  }

  .action__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .action__form input {
    width: 80%;
    margin-bottom: 20px;
    text-align: center;
  }

  /*   .action__form .form-submit {
    width: 60%;
  } */

  .action__form_body {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .action__body {
    margin-bottom: 0;
  }
}

@media (max-width: 425px) {
  .action__item .action__text {
    margin-right: 10px;
    width: 80%;
  }

  .action__item img {
    margin-left: 0;
  }

  .action__form_body {
    padding: 25px 5px;
  }

  .action__form_body h3 {
    width: 100%;
    font-size: 20px;
    line-height: normal;
  }
}

@media (max-width: 380px) {
  .action__title h2 {
    font-size: 20px;
  }

  .action__item img {
    bottom: -20px;
    height: 80px;
  }

  .action__item .action__text {
    width: 100%;
  }

  .action__item .action__text p {
    width: 80%;
  }

  .action__right .action__item .action__text h4 {
    width: 80%;
  }
}

.contacts {
  padding: 30px 0 5px;
}

.contacts__title {
  text-align: center;
}

.contacts__title h2 {
  text-transform: uppercase;
  color: #222222;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 15px;
}

.contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts__body a {
  color: #000;
  margin: 0 30px;
  font-size: 17px;
  text-decoration: none;
}

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

@media (max-width: 455px) {
  .contacts__body {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .contacts__body a {
    margin: 0 5px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .contacts__title h2 {
    font-size: 20px;
  }
}

.address {
  padding: 10px 0 30px;
}

.adress__title {
  text-align: center;
}

.adress__title h2 {
  color: #222222;
  font-size: 21px;
  font-weight: 700;
  padding-bottom: 15px;
}

.address__body {
  text-align: center;
}

.address__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.address__buttons a {
  margin: 0 20px;
  padding-bottom: 5px;
  text-decoration: none;
  color: #222222;
}

.address__buttons a:hover {
  border-bottom: 1px solid #15A64B;
  color: #15A64B;
}

.address__buttons_body {
  display: none;
  margin-top: 20px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.address__buttons_body iframe {
  border-radius: 16px;
  width: 100%;
  height: 240px;
  outline: none;
}

.address__buttons a.active {
  color: #15A64B;
  border-bottom: 1px solid #15A64B;
  font-weight: 600;
}

@media (max-width: 550px) {
  .address__buttons_body {
    width: 90%;
  }

  .address__buttons a {
    margin: 0 5px;
    font-size: 15px;
  }
}

@media (max-width: 440px) {
  .address__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }

  .address__buttons a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}

.testiomnials {
  padding: 10px 0 50px;
}

.testimonials__title {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  margin-top: 30px;
}

.testimonials__title h2 {
  text-transform: uppercase;
  color: #222222;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 25px;
}

.testimonials__body {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding: 50px 50px 0 50px;
  background: #F6F6FF;
  border-radius: 16px;
}

.testimonials__left {
  width: 40%;
}

.testimonials__left h3 {
  color: #222222;
  font-weight: 400;
  font-size: 21px;
}

.testimonials__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.links__item {
  margin-right: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.links__item img {
  width: 30px;
  margin-bottom: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.links__item a {
  text-decoration: none;
  color: #222222;
}

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

.testimonials__right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials_left {
  margin-right: 10px;
}

.testimonials_right {
  margin-left: 10px;
}

.testimonials_main {
  position: relative;
  overflow: hidden;
  margin-top: -150px;
}

.testimonials__item {
  text-align: center;
  width: 100%;
  height: 340px;
}

.testimonials__item img {
  height: 340px;
  width: 100%;
  -o-object-position: top;
  object-position: top;
  -o-object-fit: contain;
  object-fit: contain;
}

.testimonials__slide {
  min-width: 100%;
  max-width: 235px;
}

.testimonials_left svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 1035px) {
  .testimonials__body {
    padding: 50px 20px 0 20px;
  }

  .testimonials__right {
    width: 50%;
  }
}

@media (max-width: 876px) {
  .testimonials__left h3 {
    font-size: 16px;
  }

  .testimonials__links {
    margin-top: 20px;
  }

  .links__item a {
    font-size: 14px;
  }

  .links__item img {
    width: 20px;
  }
}

@media (max-width: 810px) {
  .testimonials__item img {
    height: 280px;
  }

  .testimonials__item {
    height: 280px;
  }

  .testimonials_main {
    margin-top: -120px;
  }
}

@media (max-width: 772px) {
  .testimonials__right {
    width: 45%;
  }
}

@media (max-width: 750px) {
  .testimonials__title h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
}

@media (max-width: 745px) {
  .testimonials__body {
    padding: 20px 20px 0 20px;
  }

  .testimonials__body .testimonials__item {
    height: 250px;
  }

  .testimonials__body .testimonials__item img {
    height: 250px;
  }

  .testimonials_main {
    margin-top: -100px;
  }
}

@media (max-width: 690px) {
  .links__item {
    margin-right: 10px;
  }

  .testimonials__title {
    text-align: center;
  }

  .testimonials__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #FFF;
    padding: 0;
  }

  .testimonials__left {
    width: 100%;
    text-align: center;
  }

  .testimonials__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .links__item {
    margin-right: 20px;
  }

  .testimonials__right {
    width: 100%;
  }

  .testimonials_main {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .testimonials__title h2 {
    font-size: 20px;
  }

  .testimonials__title h2 br {
    display: none;
  }

  .testimonials__body {
    width: 90%;
  }
}

.footer {
  padding: 20px 0 35px;
}

.footer__body {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__logo img {
  width: 100px;
  height: 40px;
}

.footer__menu a {
  text-decoration: none;
  margin: 0 20px;
  color: #4F4F4F;
}

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

@media (max-width: 858px) {
  .footer__body {
    width: 95%;
  }
}

@media (max-width: 730px) {
  .footer {
    padding: 0px 0 25px;
  }

  .footer__menu a {
    margin: 0 10px;
    font-size: 14px;
  }
}

@media (max-width: 580px) {
  .footer__menu a {
    margin: 0 5px;
  }
}

@media (max-width: 524px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 425px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .footer__menu a {
    margin-bottom: 5px;
  }
}

/* The Modal (background) */
.modal {
  /*   display: none; */
  visibility: hidden;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 15%;
}

/* Modal Content/Box */
.modal-content {
  border-radius: 16px;
  background-color: #fefefe;
  margin: -100px auto;
  padding: 30px 30px 5px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
}

.modal-content h2 {
  font-size: 20px;
  color: #031A0A;
  margin-bottom: 20px;
  font-weight: 500;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.form-group {
  width: 80%;
  margin: 80px auto;
  margin-top: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 15px 20px;
  background: #F0F5F1;
  border-radius: 13px;
  outline: none;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.submit-btn {
  margin: 20px auto;
  margin-top: 30px;
  border-radius: 16px;
  width: 25%;
  padding: 15px 15px;
  font-size: 16px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #50D177;
  /* Green */
  color: white;
  border: none;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .modal-content {
    margin: 15% auto;
  }

  .modal-content .submit-btn {
    width: 240px;
  }
}

@media (max-width: 425px) {
  .modal-content {
    padding: 10px 15px 5px;
    width: 90%;
  }

  .form-group {
    width: 90%;
    margin: 20% auto;
    margin-top: 5px;
  }

  .modal-content .submit-btn {
    margin-top: 20px;
    width: 160px;
    padding: 10px 15px;
  }
}

/*  Widgets */
.widgets {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 900;
}

.widgets a:hover {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  left: -10px;
}

.dropbtn>svg {
  fill: #4F4F4F;
  width: 10px;
}

.dropbtn:hover>svg {
  fill: #147d3b;
}

.dropdown-content a {
  color: black;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  margin-left: 0;
  margin-right: 0;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* .navbar__menu_mobile a, */
.navbar__menu a {
  position: relative;
}

/* .navbar__menu_mobile a::after, */
.navbar__menu a::after {
  content: "";
  width: 0%;
  height: 1.3px;
  position: absolute;
  bottom: 0;
  background: #147d3b;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* .navbar__menu_mobile a:hover::after, */
.navbar__menu a:hover::after {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* .navbar__menu_mobile, */
.navbar__menu button {
  background: transparent;
  font-size: 17px;
  border: 0;
  outline: none;
  cursor: pointer;
  font-weight: 400;
  position: relative;
}

/* .navbar__menu_mobile::after, */
.navbar__menu button::after {
  content: "";
  width: 0%;
  height: 1.3px;
  position: absolute;
  bottom: 0;
  background: #147d3b;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* .navbar__menu_mobile:hover::after, */
.navbar__menu button:hover::after {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.dropdown-content-mobile {
  left: 20px;
}

.dropdown-content-mobile a:first-child {
  margin-top: 0 !important;
}

.dropdown-content-mobile a {
  margin: 0;
}

.dropdown-mobile {
  margin-top: 50px;
}

/* Info 01 */
.info {
  padding: 15px 0;
}

.info .container__big {
  padding: 30px;
  background: #F3F7F8;
  border-radius: 15px;
  width: 90%;
}

.info__body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info__left {
  width: 50%;
  margin-right: 30px;
}

.info__left h2 {
  color: #15A64B;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
}

.info__left p {
  color: #222222;
  margin: 5px 0 20px;
  line-height: 25px;
}

.info__right {
  width: 30%;
}

.info__right img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
}

@media(max-width:768px) {
  .info .container__big {
    padding: 25px;
    width: 95%;
  }

  .info__body {
    flex-direction: column;
  }

  .info__left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .info__left h2 {
    font-size: 20px;
  }

  .info__left p {
    font-size: 15px;
    line-height: normal;
    margin-top: 10px;
  }

  .info__right {
    width: 100%;
  }
}

/* Почему это */
.why-this {
  padding: 20px 0;
}

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

.why-this__title h2 {
  color: #222222;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 10px;
}

.why-this__title h2 span {
  color: #15A64B;
}

.why-this__title p {
  width: 45%;
  color: #222222;
  margin: 0 auto;
  text-align: center;
}

.why-this__body {
  padding: 5px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.why-this__item {
  margin: 10px;
  width: 22%;
  text-align: center;
  background: #F3F7F8;
  padding: 60px 10px;
  border-radius: 16px;
  color: #222222;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-this__item:hover {
  background: #15A64B;
  transition: 0.4s;
  color: #FFF;
}

@media(max-width:768px) {
  .why-this__title h2 {
    font-size: 20px;
  }

  .why-this__title p {
    font-size: 15px;
    width: 100%;
  }

  .why-this__item {
    width: 45%;
  }
}

@media(max-width:500px) {
  .why-this__item {
    width: 100%;
    margin: 5px 0;
    padding: 50px 10px;
  }
}

/* PRIcE */
.price .container__big {
  padding: 30px;
  background: #F3F7F8;
  border-radius: 15px;
  width: 90%;
}

.price__title {
  text-align: center;
}

.price__title h2 {
  color: #222222;
  text-transform: uppercase;
  font-size: 25px;
}

.price__body {
  padding: 10px 0;
  width: 80%;
  margin: 0 auto;
}

.price__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #15A64B;
}

.price__left {
  width: 70%;
}

.price__right h3,
.price__left h3 {
  color: #222222;
  font-weight: bold;
  font-size: 17px;
}

.price__left p,
.price__right p {
  color: #222222;
  font-weight: 600;
  font-size: 15px;
}

@media(max-width:500px) {
  .price__title h2 {
    font-size: 20px;
  }

  .price__body {
    width: 100%;
  }

  .price__right {
    text-align: right;
  }

  .price .container__big {
    padding: 30px 10px;
  }

  .price__right h3,
  .price__left h3 {
    font-size: 15px;
  }

  .price__left p,
  .price__right p {
    font-size: 14px;
  }

  .price__item {
    padding: 10px 0;
  }
}

/* Info text */
.info-text__body {
  text-align: center;
}

.info-text__body h2 {
  color: #15A64B;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
}

.info-text__body p {
  color: #222222;
  margin: 5px auto 20px;
  line-height: 25px;
  width: 60%;
}

@media(max-width:500px) {
  .info-text__body h2 {
    font-size: 20px;
  }

  .info-text__body p {
    font-size: 15px;
    line-height: normal;
    margin-top: 10px;
    width: 100%;
  }
}

/* Брекеты */

.bracket-info {
  padding: 20px 0;
}

.bracket-info__body {
  background: #F3F7F8;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 30px;
  border-radius: 16px;
}

.bracket-info__left {
  width: 40%;
}
.bracket-info__left h2 {
  color: #222222;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.3;
}
.bracket-info__left h2 span {
  color: #15A64B;
}
.bracket-info__left p {
  color: #222222;
  margin-top: 10px;
  margin-bottom: 20px;
}
.bracket-info__left button {
  font-size: 16px;
}

.bracket-info__right {
  width: 30%;
}
.bracket-info__right img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 955px) {
  .bracket-info__left {
    width: 50%;
  }
  .bracket-info__right {
    width: 40%;
  }
}
@media (max-width: 620px) {
  .bracket-info__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bracket-info__left {
    width: 100%;
  }
  .bracket-info__right {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .bracket-info__body {
    padding: 20px;
  }
  .bracket-info__left h2 {
    font-size: 20px;
  }
  .bracket-info__right img {
    height: 250px;
  }
}
.bracket-system {
  padding: 50px 0;
}

.bracket-system__title {
  text-align: center;
}
.bracket-system__title h3 {
  color: #15A64B;
  font-weight: 700;
  font-size: 30px;
}
.bracket-system__title p {
  width: 70%;
  margin: 10px auto;
}

.bracket-system__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  gap: 15px;
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
}

.bracket-system__item {
  width: 30%;
  text-align: center;
  background: #F3F7F8;
  padding: 20px 50px;
  border-radius: 6px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.bracket-system__item img {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.bracket-system__item:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #15A64B;
  color: #FFF;
}

.bracket-system-system_infotext {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1000px) {
  .bracket-system__item {
    padding: 20px 10px;
  }
}
@media (max-width: 647px) {
  .bracket-system {
    padding: 25px 0;
  }
  .bracket-system__title p {
    width: 100%;
  }
  .bracket-system-system_infotext {
    width: 90%;
  }
  .bracket-system__body {
    width: 100%;
    padding: 15px 0;
  }
}
@media (max-width: 450px) {
  .bracket-system__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bracket-system__item {
    width: 100%;
  }
}
.whybracket__scrollbar {
  height: 2px;
}

.back-2 img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.bracket-why {
  padding: 30px 0;
  background: #F3F7F8;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.bracket-why__title {
  text-align: center;
  padding: 10px 0 30px;
}
.bracket-why__title h3 {
  color: #222222;
  text-transform: uppercase;
  font-size: 28px;
  padding-bottom: 5px;
}
.bracket-why__title h3 span {
  color: #15A64B;
}
.bracket-why__title p {
  color: #222222;
}

.bracket-why__body {
  padding: 30px 100px;
  overflow: hidden;
}

.whybracket__slider-btn button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
}

@media (max-width: 500px) {
  .bracket-why__body {
    padding: 10px;
  }
  .bracket-why__title h3 {
    font-size: 22px;
  }
  .bracket-why__title {
    padding: 10px 0;
  }
}
.bracket-info-text {
  text-align: center;
  width: 40%;
  margin: 50px auto;
  color: #222222;
  font-size: 17px;
}
.bracket-info-text span {
  font-weight: 700;
  color: #15A64B;
}

@media (max-width: 800px) {
  .bracket-info-text {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .bracket-info-text {
    width: 100%;
    margin: 30px auto;
  }
}
.services__text h4 {
  width: 95%;
  font-size: 20px;
  line-height: 1.2;
}

.green-title {
  color: #15A64B;
}

.bracket-text {
  padding: 20px 0 50px;
}

.bracket-text__body {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.bracket-text__body p {
  margin-bottom: 25px;
  font-size: 17px;
}
.bracket-text__body h4 {
  font-size: 24px;
  font-weight: 500;
}
.bracket-text__body h4 span {
  font-weight: 700;
}

@media (max-width: 500px) {
  .services__title h2 {
    font-size: 20px;
  }
  .services__text h4 {
    font-size: 18px;
    width: 98%;
  }
  .bracket-text__body {
    width: 100%;
  }
  .bracket-text {
    padding-top: 0;
  }
}