* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
}

html {
  scroll-behavior: smooth;
}

*::before, *::after {
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

.header {
  background-color: #FBFBFB;
  position: relative;
}
.header .paws_1 {
  position: absolute;
  top: 240px;
  left: 18px;
  z-index: 0;
}
.header .paws_2 {
  position: absolute;
  bottom: 160px;
  right: 30px;
  z-index: 1;
}
.header .header__body {
  padding-top: 40px;
  padding-bottom: 80px;
  display: block;
}
@media (max-width: 768px) {
  .header .header__body {
    padding-top: 0px;
  }
}
.header .header__body .col-1 {
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header .header__body .col-1 {
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0px 1px 20px 1px rgba(155, 155, 155, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 12;
  }
}
.header .header__body .col-1 .menu-icon {
  content: "Menu";
  color: #fff;
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: none;
}
@media (max-width: 768px) {
  .header .header__body .col-1 .menu-icon {
    display: block;
  }
}
.header .header__body .col-1 .menu-icon .fa-bars {
  padding: 10px 0px 0px 10px;
  font-size: 24px;
  color: #000000;
}
.header .header__body .col-1 .location {
  display: flex;
  align-items: center;
}
.header .header__body .col-1 .location .fa-solid {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .header .header__body .col-1 .location {
    display: none;
  }
}
.header .header__body .col-1 .logo a {
  align-items: center;
  text-decoration: none;
}
.header .header__body .col-1 .logo a img {
  max-width: 35px;
}
.header .header__body .col-1 .logo a .color__yellow {
  font-size: 36px;
  font-weight: bold;
  color: #F9A81B;
}
.header .header__body .col-1 .logo a .color__green {
  font-size: 36px;
  font-weight: bold;
  color: #21A183;
}
.header .header__body .col-1 .phone {
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}
.header .header__body .col-1 .phone .fa-solid {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .header .header__body .col-1 .phone .fa-solid {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .header .header__body .col-1 .phone p {
    display: none;
  }
}
@media (max-width: 768px) {
  .header .header__body .menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 15;
  }
}
@media (max-width: 768px) {
  .header .header__body .menu--visible {
    pointer-events: auto;
  }
}
.header .header__body .nav {
  margin-top: 40px;
  height: 80px;
  background: radial-gradient(113.35% 138.75% at 50% 50%, #21A183 0%, #B7DFD6 0.01%, #FBFBFB 39.06%);
}
@media (max-width: 768px) {
  .header .header__body .nav {
    margin-top: 0px;
    color: #fff;
    position: relative;
    max-width: 168px;
    width: 90%;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transform: translateX(-103%);
    display: flex;
    flex-direction: column;
    will-change: transform;
    z-index: 16;
    pointer-events: auto;
    box-shadow: none;
    background: linear-gradient(180deg, #21A183 0%, #1FB591 45.49%, #1FB994 100%);
  }
}
.header .header__body .nav ul {
  padding-top: 32px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .header .header__body .nav ul {
    padding: 40px 0px 0px 36px;
    display: block;
  }
}
.header .header__body .nav ul li {
  margin-left: 55px;
  margin-right: 55px;
  list-style: none;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li {
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 24px;
  }
}
.header .header__body .nav ul li a {
  position: relative;
  color: black;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
  }
}
.header .header__body .nav ul li a:hover {
  font-weight: 600;
}
.header .header__body .nav ul li a:hover::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1b0";
  position: absolute;
  top: 28px;
  right: 16px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li a:hover::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .header .header__body .nav ul li a:hover {
    font-weight: 400;
  }
}
.header .header__body .nav ul li a.active {
  font-weight: bold;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li a.active {
    font-weight: 400;
  }
}
.header .header__body .nav ul li a.active::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1b0";
  position: absolute;
  top: 28px;
  right: 9px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li a.active::after {
    display: none;
  }
}
.header .header__body .nav ul li a.active-rev {
  font-weight: bold;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li a.active-rev {
    font-weight: 400;
  }
}
.header .header__body .nav ul li a.active-rev::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1b0";
  position: absolute;
  top: 28px;
  right: 16px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li a.active-rev::after {
    display: none;
  }
}
.header .header__body .nav ul li .home:hover {
  font-weight: 600;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li .home:hover {
    font-weight: 400;
  }
}
.header .header__body .nav ul li .home:hover::after {
  font-family: "Font Awesome 6 Free";
  content: "\f1b0";
  position: absolute;
  top: 28px;
  right: 9px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .header .header__body .nav ul li .home:hover::after {
    display: none;
  }
}
.header .header__body .menu--visible .nav {
  transform: none;
}
.header .header__body .menu--animatable .nav {
  transition: all 130ms ease-in;
}
.header .header__body .menu--visible.menu--animatable .nav {
  transition: all 330ms ease-out;
}
@media (max-width: 768px) {
  .header .header__body .menu:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    will-change: opacity;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
  }
}
.header .header__body .menu--visible.menu:after {
  opacity: 1;
  pointer-events: auto;
}
.header .header__body .header__center {
  padding-top: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .header .header__body .header__center {
    display: block;
    text-align: center;
    padding-top: 0px;
  }
}
.header .header__body .header__center .text h1 {
  font-weight: 700;
  font-size: 72px;
  color: #000000;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .header .header__body .header__center .text h1 {
    padding-top: 100px;
    font-size: 62px;
  }
}
.header .header__body .header__center .text h1 .color__yellow {
  font-weight: 700;
  font-size: 72px;
  color: #F9A81B;
}
@media (max-width: 768px) {
  .header .header__body .header__center .text h1 .color__yellow {
    font-size: 62px;
  }
}
.header .header__body .header__center .text h1 .color__green {
  font-weight: 700;
  font-size: 72px;
  color: #21A183;
}
@media (max-width: 768px) {
  .header .header__body .header__center .text h1 .color__green {
    font-size: 62px;
  }
}
.header .header__body .header__center .text p {
  margin-bottom: 32px;
  width: 320px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .header .header__body .header__center .text p {
    width: auto;
  }
}
.header .header__body .header__center .text .button__make {
  width: 280px;
  height: 60px;
  background: linear-gradient(90deg, #21A183 0%, #1FB994 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 240px) {
  .header .header__body .header__center .text .button__make {
    width: 240px;
  }
}
.header .header__body .header__center .text .button__make:hover {
  background: linear-gradient(90deg, #147B63 0%, #17AD89 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
}
.header .header__body .header__center .text .button__make .p {
  padding-left: 24px;
  float: left;
}
.header .header__body .header__center .text .button__make .l {
  width: 1px;
  height: 60px;
  background-color: #259B7F;
  position: absolute;
  top: 0;
  right: 50px;
  z-index: 2;
}
.header .header__body .header__center .text .button__make .fa-solid {
  padding-right: 18px;
  float: right;
}
.header .header__body .header__center .img img {
  max-width: 462px;
  position: relative;
  z-index: 10;
}
@media (max-width: 992px) {
  .header .header__body .header__center .img img {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .header .header__body .header__center .img img {
    padding-top: 60px;
    max-width: 360px;
  }
}
@media (max-width: 374px) {
  .header .header__body .header__center .img img {
    max-width: 260px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 12;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  position: relative;
  background: #FFFFFF;
  box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.25);
  border-radius: 38px;
  margin: auto;
  padding: 0;
  width: 420px;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 340px;
  }
}
@media (max-width: 374px) {
  .modal .modal-content {
    width: 260px;
  }
}
.modal .modal-content .modal-header {
  padding: 2px 16px;
}
.modal .modal-content .modal-body {
  padding: 2px 16px;
}
@media (max-width: 374px) {
  .modal .modal-content .modal-body {
    padding: 2px 2px;
  }
}
.modal .modal-content .modal-body h3 {
  margin-top: 42px;
  margin-bottom: 36px;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  text-align: center;
}
.modal .modal-content .modal-body form {
  display: block;
  margin: 0 auto;
  width: 320px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-body form {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .modal .modal-content .modal-body form {
    width: 240px;
  }
}
.modal .modal-content .modal-body form input[type=text] {
  margin-bottom: 12px;
  padding-left: 26px;
  width: 320px;
  height: 50px;
  border: 1px solid #1FB994;
  box-sizing: border-box;
  border-radius: 30px;
  outline: 0;
  background-color: transparent;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-body form input[type=text] {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .modal .modal-content .modal-body form input[type=text] {
    width: 240px;
  }
}
.modal .modal-content .modal-body form input[type=tel] {
  margin-bottom: 12px;
  padding-left: 26px;
  width: 320px;
  height: 50px;
  border: 1px solid #1FB994;
  box-sizing: border-box;
  border-radius: 30px;
  outline: 0;
  background-color: transparent;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-body form input[type=tel] {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .modal .modal-content .modal-body form input[type=tel] {
    width: 240px;
  }
}
.modal .modal-content .modal-body form input[type=checkbox] {
  margin: 6px 12px 0;
}
.modal .modal-content .modal-body form input[type=submit] {
  margin-top: 24px;
  margin-bottom: 62px;
  width: 320px;
  height: 50px;
  background: linear-gradient(90deg, #21A183 0%, #1FB994 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-body form input[type=submit] {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .modal .modal-content .modal-body form input[type=submit] {
    width: 240px;
  }
}
.modal .modal-content .modal-body form input[type=submit]:hover {
  background: linear-gradient(90deg, #147B63 0%, #17AD89 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.modal .close {
  color: #21A183;
  float: right;
  padding: 20px 6px 0 0;
  font-weight: bold;
}
.modal .close .fa-solid {
  font-size: 18px;
}
.modal .close:hover,
.modal .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.servicess {
  padding: 120px 0px 100px 0px;
  text-align: center;
}
.servicess h2 {
  font-weight: 700;
  font-size: 64px;
  color: #21A183;
}
@media (max-width: 768px) {
  .servicess h2 {
    font-size: 42px;
  }
}
.servicess .text {
  margin-top: 20px;
  margin-bottom: 60px;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
@media (max-width: 768px) {
  .servicess .text {
    margin-top: 12px;
  }
}
.servicess .services__body {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .servicess .services__body {
    display: block;
  }
}
.servicess .services__body .services__card {
  padding: 0px 30px 60px 30px;
  max-width: 33.33333%;
}
@media (max-width: 768px) {
  .servicess .services__body .services__card {
    max-width: 100%;
  }
}
.servicess .services__body .services__card img {
  max-width: 60px;
}
.servicess .services__body .services__card h5 {
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}
.servicess .services__body .services__card p {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.servicess .button__services {
  margin-top: 20px;
  width: 280px;
  height: 60px;
  background: linear-gradient(90deg, #21A183 0%, #1FB994 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.servicess .button__services:hover {
  background: linear-gradient(90deg, #147B63 0%, #17AD89 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
}
.servicess .button__services .p {
  padding-left: 24px;
  float: left;
}
.servicess .button__services .l {
  width: 1px;
  height: 60px;
  background-color: #259B7F;
  position: absolute;
  top: 0;
  right: 50px;
  z-index: 2;
}
.servicess .button__services .fa-solid {
  padding-right: 18px;
  float: right;
}

.online {
  padding-top: 60px;
  padding-bottom: 120px;
}
.online .online__body {
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .online .online__body {
    display: block;
  }
}
@media (max-width: 768px) {
  .online .online__body .img {
    text-align: center;
  }
}
.online .online__body .img img {
  max-width: 464px;
}
@media (max-width: 992px) {
  .online .online__body .img img {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .online .online__body .img img {
    max-width: 360px;
  }
}
@media (max-width: 374px) {
  .online .online__body .img img {
    max-width: 260px;
  }
}
.online .online__body .title__text {
  padding: 70px 0px 70px 50px;
  background: linear-gradient(269.45deg, #E9E9E9 -108.73%, rgba(196, 196, 196, 0) 97.43%);
  border-radius: 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .online .online__body .title__text {
    padding-left: 10px;
  }
}
.online .online__body .title__text h2 {
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  line-height: 1;
}
.online .online__body .title__text p {
  margin: 20px 120px 28px 0px;
  font-weight: 400;
  font-size: 14px;
  max-width: 400px;
}
.online .online__body .title__text .button__make-yellow {
  margin-top: 20px;
  width: 280px;
  height: 60px;
  background: linear-gradient(90deg, #F9A81B 0%, #FAD164 100%);
  box-shadow: 0px 7px 20px rgba(255, 220, 128, 0.8);
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 374px) {
  .online .online__body .title__text .button__make-yellow {
    width: 240px;
  }
}
.online .online__body .title__text .button__make-yellow:hover {
  background: linear-gradient(90deg, #D18500 0%, #F9A81B 100%);
  box-shadow: 0px 7px 20px rgba(255, 220, 128, 0.8);
}
.online .online__body .title__text .button__make-yellow .p {
  padding-left: 24px;
  float: left;
}
.online .online__body .title__text .button__make-yellow .l {
  width: 1px;
  height: 60px;
  background-color: #E0A237;
  position: absolute;
  top: 0;
  right: 50px;
  z-index: 2;
}
.online .online__body .title__text .button__make-yellow .fa-solid {
  padding-right: 18px;
  float: right;
}

.aboutt {
  padding: 120px 0 100px;
  background-color: #F5F5F5;
  position: relative;
}
.aboutt .paws_1 {
  position: absolute;
  top: 620px;
  left: 18px;
  z-index: 1;
}
.aboutt .paws_2 {
  position: absolute;
  top: 240px;
  right: 30px;
  z-index: 1;
}
.aboutt .paws_3 {
  position: absolute;
  bottom: 160px;
  right: 30px;
  z-index: 1;
}
.aboutt h2 {
  text-align: center;
  font-weight: 700;
  font-size: 64px;
  color: #21A183;
}
@media (max-width: 768px) {
  .aboutt h2 {
    font-size: 42px;
  }
}
.aboutt .text {
  margin: 20px auto 60px;
  max-width: 732px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
@media (max-width: 768px) {
  .aboutt .text {
    margin-top: 12px;
  }
}
.aboutt .about__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.aboutt .about__body-card {
  margin: 0px 40px 32px 40px;
  width: 280px;
  background: #FFFFFF;
  box-shadow: 3px 3px 20px rgba(177, 177, 177, 0.8);
  border-radius: 30px;
  transition: transform 0.3s;
}
.aboutt .about__body-card:hover {
  transform: scale(1.1);
}
.aboutt .about__body-card img {
  border-radius: 30px 30px 0 0;
  max-width: 280px;
}
.aboutt .about__body-card h5 {
  padding: 22px 16px 18px 22px;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.aboutt .about__body-card p {
  padding-left: 22px;
  padding-right: 16px;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.aboutt .about__body-card .bott {
  padding-bottom: 14px;
}
.aboutt .about__body-card button {
  margin: 16px 0 16px 22px;
  width: 220px;
  height: 40px;
  background: linear-gradient(90deg, #21A183 0%, #1FB994 94.62%);
  box-shadow: 0px 7px 12px rgba(115, 197, 178, 0.78);
  color: #fff;
  border-radius: 30px;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.aboutt .about__body-card button:hover {
  background: linear-gradient(90deg, #147B63 0%, #17AD89 94.62%);
}

.reviewss {
  padding: 120px 0 100px;
}
.reviewss h2 {
  text-align: center;
  font-weight: 700;
  font-size: 64px;
  color: #21A183;
}
@media (max-width: 768px) {
  .reviewss h2 {
    font-size: 42px;
  }
}
.reviewss .text {
  margin: 20px auto 60px;
  max-width: 732px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
@media (max-width: 768px) {
  .reviewss .text {
    margin-top: 12px;
  }
}
.reviewss .swiper {
  width: 100%;
  height: 100%;
}
.reviewss .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviewss .swiper .swiper-wrapper .swiper-slide .reviews-card {
  margin: 20px 30px 62px 30px;
  width: 280px;
  background: #FFFFFF;
  box-shadow: 3px 3px 20px rgba(177, 177, 177, 0.8);
  border-radius: 30px;
}
.reviewss .swiper .swiper-wrapper .swiper-slide .reviews-card .img {
  max-height: 180px;
  overflow: hidden;
}
.reviewss .swiper .swiper-wrapper .swiper-slide .reviews-card .img img {
  max-width: 280px;
  border-radius: 30px 30px 0 0;
}
.reviewss .swiper .swiper-wrapper .swiper-slide .reviews-card .text__reviews {
  height: 220px;
}
.reviewss .swiper .swiper-wrapper .swiper-slide .reviews-card .text__reviews h5 {
  text-align: left;
  padding: 22px 16px 18px 22px;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}
.reviewss .swiper .swiper-wrapper .swiper-slide .reviews-card .text__reviews .date {
  color: #808080;
  text-align: left;
  padding-bottom: 12px;
}
.reviewss .swiper .swiper-wrapper .swiper-slide .reviews-card .text__reviews p {
  text-align: left;
  padding-left: 22px;
  padding-right: 16px;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.reviewss .swiper .swiper-button-prev, .reviewss .swiper .swiper-button-next {
  color: #21A183;
  background: #FFFFFF;
  box-shadow: 0px 6px 9px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
.reviewss .swiper .swiper-button-prev {
  top: 200px;
  left: 30px;
  padding: 5px 22px;
}
@media (max-width: 1250px) {
  .reviewss .swiper .swiper-button-prev {
    left: 10px;
  }
}
@media (max-width: 992px) {
  .reviewss .swiper .swiper-button-prev {
    left: 180px;
  }
}
@media (max-width: 660px) {
  .reviewss .swiper .swiper-button-prev {
    left: 28px;
  }
}
.reviewss .swiper .swiper-button-prev::after {
  content: "";
}
.reviewss .swiper .swiper-button-prev .fa-angle-left {
  font-size: 28px;
}
.reviewss .swiper .swiper-button-next {
  top: 200px;
  right: 30px;
  padding: 5px 22px;
}
@media (max-width: 1250px) {
  .reviewss .swiper .swiper-button-next {
    right: 10px;
  }
}
@media (max-width: 992px) {
  .reviewss .swiper .swiper-button-next {
    right: 180px;
  }
}
@media (max-width: 660px) {
  .reviewss .swiper .swiper-button-next {
    right: 28px;
  }
}
.reviewss .swiper .swiper-button-next::after {
  content: "";
}
.reviewss .swiper .swiper-button-next .fa-angle-right {
  font-size: 28px;
}
.reviewss .swiper .swiper-pagination-bullet-active {
  background-color: #E0A237;
}
.reviewss .btn {
  padding-top: 40px;
  text-align: center;
}
.reviewss .btn a {
  padding: 18px 56px;
  background-color: transparent;
  border: 1px solid #1FB994;
  border-radius: 35px;
  outline: 0;
  color: #1FB994;
  cursor: pointer;
  text-decoration: none;
}
.reviewss .btn a:hover {
  background: linear-gradient(90deg, #147B63 0%, #17AD89 94.62%);
  color: #fff;
}

.contactt {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .contactt {
    padding: 100px 0;
    background-color: #F5F5F5;
  }
}
.contactt .paws {
  display: none;
}
@media (max-width: 992px) {
  .contactt .paws {
    display: block;
  }
}
.contactt .paws .paws_1 {
  position: absolute;
  top: 42px;
  left: 18px;
  z-index: 1;
}
.contactt .paws .paws_2 {
  position: absolute;
  bottom: 32px;
  right: 30px;
  z-index: 1;
}
.contactt .map {
  display: block;
}
@media (max-width: 992px) {
  .contactt .map {
    display: none;
  }
}
.contactt .contact__body {
  padding: 46px;
  position: absolute;
  top: 100px;
  right: 140px;
  z-index: 10;
  background: #FFFFFF;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
}
@media (max-width: 1250px) {
  .contactt .contact__body {
    right: 68px;
  }
}
@media (max-width: 992px) {
  .contactt .contact__body {
    padding: 46px 22px;
    margin: 0 auto;
    max-width: 326px;
    position: relative;
    top: 0;
    right: 0;
  }
}
.contactt .contact__body h5 {
  padding-bottom: 12px;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #000000;
}
.contactt .contact__body p {
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #000000;
}
.contactt .contact__body p span {
  padding-top: 20px;
  font-weight: 500;
}
.contactt .contact__body .button__make {
  margin-top: 20px;
  width: 280px;
  height: 60px;
  background: linear-gradient(90deg, #21A183 0%, #1FB994 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 374px) {
  .contactt .contact__body .button__make {
    width: 240px;
  }
}
.contactt .contact__body .button__make:hover {
  background: linear-gradient(90deg, #147B63 0%, #17AD89 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
}
.contactt .contact__body .button__make .p {
  padding-left: 24px;
  float: left;
}
.contactt .contact__body .button__make .l {
  width: 1px;
  height: 60px;
  background-color: #259B7F;
  position: absolute;
  top: 0;
  right: 50px;
  z-index: 2;
}
.contactt .contact__body .button__make .fa-solid {
  padding-right: 18px;
  float: right;
}

.footer {
  padding: 40px 0 20px;
}
@media (max-width: 580px) {
  .footer {
    padding: 20px 0 20px;
  }
}
.footer .footer__body {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .footer .footer__body {
    display: none;
  }
}
.footer .footer__body .logo a {
  text-decoration: none;
}
.footer .footer__body .logo a img {
  max-width: 35px;
}
.footer .footer__body .logo a .color__yellow {
  font-size: 36px;
  font-weight: bold;
  color: #F9A81B;
}
.footer .footer__body .logo a .color__green {
  font-size: 36px;
  font-weight: bold;
  color: #21A183;
}
.footer .footer__body .stov ul li {
  padding-bottom: 18px;
  list-style: none;
}
.footer .footer__body .stov ul li a {
  text-decoration: none;
  color: #000000;
}
.footer .footer__body .stov ul li a:hover {
  font-weight: 700;
}
.footer .footer__body .stov .col {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
}
.footer .footer__body .stov .col .fa-solid {
  padding-right: 8px;
}
.footer .line {
  width: 100%;
  height: 1px;
  background-color: #C6C6C6;
}
@media (max-width: 580px) {
  .footer .line {
    display: none;
  }
}
.footer .footer__f {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .footer .footer__f {
    padding-top: 0px;
  }
}
.footer .footer__f p {
  color: #C6C6C6;
}

/*Reviews*/
.header .header__center-reviews {
  padding: 100px 0 60px;
}
@media (max-width: 768px) {
  .header .header__center-reviews {
    padding: 120px 0 30px;
  }
}
.header .header__center-reviews h3 {
  padding-bottom: 12px;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  text-align: center;
  position: relative;
  z-index: 10;
}
.header .header__center-reviews p {
  padding-bottom: 40px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  position: relative;
  z-index: 10;
}
.header .header__center-reviews form {
  display: block;
  margin: 0 auto;
  width: 360px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .header .header__center-reviews form {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .header .header__center-reviews form {
    width: 260px;
  }
}
.header .header__center-reviews form input[type=text] {
  margin-bottom: 12px;
  padding-left: 26px;
  width: 360px;
  height: 60px;
  border: 1px solid #1FB994;
  box-sizing: border-box;
  border-radius: 30px;
  outline: 0;
  background-color: transparent;
}
@media (max-width: 768px) {
  .header .header__center-reviews form input[type=text] {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .header .header__center-reviews form input[type=text] {
    width: 260px;
  }
}
.header .header__center-reviews form input[type=tel] {
  margin-bottom: 12px;
  padding-left: 26px;
  width: 360px;
  height: 60px;
  border: 1px solid #1FB994;
  box-sizing: border-box;
  border-radius: 30px;
  outline: 0;
  background-color: transparent;
}
@media (max-width: 768px) {
  .header .header__center-reviews form input[type=tel] {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .header .header__center-reviews form input[type=tel] {
    width: 260px;
  }
}
.header .header__center-reviews form textarea {
  width: 360px;
  height: 150px;
  margin-bottom: 12px;
  padding: 18px 12px 0px 26px;
  box-sizing: border-box;
  border: 1px solid #1FB994;
  border-radius: 30px;
  background-color: transparent;
  resize: none;
  outline: 0;
}
@media (max-width: 768px) {
  .header .header__center-reviews form textarea {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .header .header__center-reviews form textarea {
    width: 260px;
  }
}
.header .header__center-reviews form .input__file {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.header .header__center-reviews form .input__file-icon-wrapper {
  height: 60px;
  width: 60px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #1FB994;
}
.header .header__center-reviews form .input__file-icon-wrapper .fa-download {
  color: #1FB994;
}
.header .header__center-reviews form .input__file-button-text {
  line-height: 1;
  margin-top: 1px;
}
.header .header__center-reviews form .input__file-button {
  width: 100%;
  max-width: 360px;
  height: 60px;
  background: transparent;
  font-size: 1.125rem;
  font-weight: 700;
  border: 1px solid #1FB994;
  color: #1FB994;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .header__center-reviews form .input__file-button {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .header .header__center-reviews form .input__file-button {
    width: 260px;
  }
}
.header .header__center-reviews .btn__send {
  margin: 24px auto 0;
  width: 360px;
}
@media (max-width: 768px) {
  .header .header__center-reviews .btn__send {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .header .header__center-reviews .btn__send {
    width: 260px;
  }
}
.header .header__center-reviews .btn__send .button__send {
  width: 360px;
  height: 60px;
  background: linear-gradient(90deg, #21A183 0%, #1FB994 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .header__center-reviews .btn__send .button__send {
    width: 280px;
  }
}
@media (max-width: 374px) {
  .header .header__center-reviews .btn__send .button__send {
    width: 260px;
  }
}
.header .header__center-reviews .btn__send .button__send:hover {
  background: linear-gradient(90deg, #147B63 0%, #17AD89 94.62%);
  box-shadow: 0px 7px 20px #73C5B2;
}/*# sourceMappingURL=style.css.map */