@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.text {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 800px) {
  .text {
    font-size: 14px;
  }
}

.line {
  border: 1px solid #d9d9d9;
  width: 100%;
  margin-bottom: 100px;
  margin-top: 100px;
}
@media (max-width: 800px) {
  .line {
    margin-bottom: 60px;
    margin-top: 60px;
  }
}

.flex {
  display: flex;
}

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

:root {
  --font-family: "Lato", sans-serif;
  --second-family: "Inter", sans-serif;
}

.text-white {
  color: #ffffff;
}

.text-dark {
  color: #3f3f3f;
}

* {
  padding: 0;
  margin: 0;
}

body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 1100px) {
  body.active {
    overflow: hidden;
  }
}
body.active-popup {
  overflow-y: hidden;
}
body.bg {
  position: relative;
}
body.bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(66.3000030518px);
          backdrop-filter: blur(66.3000030518px);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.container {
  margin: 0 auto;
  max-width: 1416px;
  padding-left: 10px;
  padding-right: 10px;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 16px 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  z-index: 3;
}
@media (max-width: 1200px) {
  .header nav {
    position: absolute;
    top: 0;
    left: -9999px;
  }
  .header.active {
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    -webkit-backdrop-filter: blur(66.3000030518px);
            backdrop-filter: blur(66.3000030518px);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  }
  .header.active nav {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header.active nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .header.active nav ul li {
    margin: 0;
  }
  .header.active nav ul a {
    text-align: center;
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .header-btn {
    display: none;
  }
  .header-btn.active {
    display: block;
    position: absolute;
    top: 90%;
    width: calc(100% - 20px);
  }
}

.burger {
  display: none;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
@media (max-width: 1200px) {
  .burger {
    display: block;
  }
}
.burger svg {
  width: 100% !important;
  height: 100% !important;
}

.menu-list {
  display: flex;
}
.menu-list li {
  margin-right: 30px;
}
.menu-list li:last-child {
  margin-right: 30px;
}
.menu-list li a {
  transition: 0.3s all ease;
}
.menu-list li a:hover {
  color: #FFAF00;
}

.btn {
  outline: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(0, 160, 227, 0.01);
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 14px 32px;
  text-align: center;
  transition: 0.3s all ease;
}
.btn:hover {
  opacity: 0.7;
}

.btn-more {
  border-radius: 30px;
  padding: 18px 48px;
  outline: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: #E39C00;
  border: none;
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  transition: 0.3s all ease;
}
.btn-more:hover {
  opacity: 0.9;
}
@media (max-width: 600px) {
  .btn-more {
    width: 100%;
  }
}

.hero {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 800px) {
  .hero-top {
    flex: 0 0 20%;
  }
}
@media (max-width: 450px) {
  .hero-top {
    flex: 0 0 12%;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 42, 70, 0.5) 0%, rgba(3, 42, 70, 0.2) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}
.hero-center__title {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 35px;
  text-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1000px) {
  .hero-center__title {
    font-size: 70px;
    margin-bottom: 25px;
  }
}
@media (max-width: 800px) {
  .hero-center__title {
    font-size: 48px;
    margin-bottom: 24px;
  }
}
.hero-center__subtitle {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 80px;
}
@media (max-width: 1000px) {
  .hero-center__subtitle {
    font-size: 26px;
    margin-bottom: 50px;
  }
}
@media (max-width: 800px) {
  .hero-center__subtitle {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
.hero-bottom {
  margin-bottom: 80px;
  border-radius: 40px;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: #ffffff;
}
@media (max-width: 800px) {
  .hero-bottom {
    margin-bottom: 40px;
  }
}
.form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.form.column {
  grid-template-columns: 1fr;
}
@media (max-width: 1100px) {
  .form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .form {
    grid-template-columns: 1fr;
  }
}
.form h2 {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #123747;
}
.form input, .form textarea {
  width: 100%;
  border: 1px solid #c8c8c8;
  border-radius: 20px;
  padding: 14px 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(0, 160, 227, 0.01);
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3f3f3f;
}
.form input::-moz-placeholder, .form textarea::-moz-placeholder {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3f3f3f;
}
.form input::placeholder, .form textarea::placeholder {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3f3f3f;
}
.form button {
  width: 100%;
  border-radius: 20px;
  padding: 14px 32px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: #E39C00;
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  border: none;
  outline: none;
  text-align: center;
  transition: 0.3s all ease;
}
.form button:hover {
  opacity: 0.7;
}

.title {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: #123747;
}
@media (max-width: 800px) {
  .title {
    font-size: 36px;
  }
}

.subtitle {
  font-family: var(--font-family), sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #123747;
}
@media (max-width: 800px) {
  .subtitle {
    font-size: 16px;
  }
}

.service {
  margin-top: 120px;
}
@media (max-width: 800px) {
  .service {
    margin-top: 60px;
  }
}
.service-title {
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 800px) {
  .service-title {
    margin-bottom: 24px;
  }
}
.service-subtitle {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .service-subtitle {
    margin-bottom: 40px;
  }
}
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) {
  .service-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service-item {
  background-repeat: no-repeat;
  min-height: 432px;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  background-size: cover;
}
@media (max-width: 800px) {
  .service-item {
    min-height: 300px;
  }
}
@media (max-width: 600px) {
  .service-item {
    min-height: 230px;
  }
}
.service-item__wrapper {
  border-radius: 10px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 32px;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 800px) {
  .service-item__wrapper {
    padding: 20px;
  }
}
.service-item__wrapper:hover .service-item__bottom {
  max-height: 1000px;
}
.service-item__bottom {
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.3s ease;
}
.service-item__title {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  width: 250px;
}
@media (max-width: 1000px) {
  .service-item__title {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .service-item__title {
    font-size: 18px;
  }
}
.service-item__subtitle {
  margin-bottom: 30px;
  margin-top: 24px;
}
.service-item__btn {
  border-radius: 30px;
  padding: 18px 48px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: #E39C00;
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.3s all ease;
}
.service-item__btn:hover {
  opacity: 0.8;
}

.about {
  margin-top: 120px;
}
@media (max-width: 800px) {
  .about {
    margin-top: 80px;
  }
}
.about-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .about-top {
    margin-top: 40px;
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.about-top__title {
  flex: 1 1 50%;
}
@media (max-width: 1100px) {
  .about-top__title {
    flex: 1 1 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .about-top__subtitle {
    flex: 1 1 100%;
  }
}
.about-center {
  border-radius: 30px;
  padding: 120px 20px 20px;
  margin-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
@media (max-width: 1100px) {
  .about-center {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .about-center {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.about-center__item {
  border-radius: 10px;
  padding: 32px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 800px) {
  .about-center__item {
    padding: 20px;
  }
}
.about-center__item--title {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .about-center__item--title {
    font-size: 18px;
  }
}
.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1100px) {
  .about-bottom {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .about-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about-bottom__item {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}
.about-bottom__item--number {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #C9C9C9;
  margin-bottom: 29px;
}
@media (max-width: 800px) {
  .about-bottom__item--number {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.about-bottom__item--title {
  margin-bottom: 24px;
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #123747;
}
@media (max-width: 800px) {
  .about-bottom__item--title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.about-bottom__item--description {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #123747;
}
@media (max-width: 800px) {
  .about-bottom__item--description {
    font-size: 14px;
  }
}

.works-top {
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .works-top {
    margin-bottom: 40px;
  }
}
.works-top__title {
  margin-bottom: 24px;
}
.works-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1000px) {
  .works-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.works-left__img {
  border-radius: 30px;
  margin-bottom: 24px;
}
@media (max-width: 1000px) {
  .works-left__img {
    width: 100%;
  }
}
.works-date {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #C9C9C9;
  margin-bottom: 16px;
}
.works-title {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #123747;
  margin-bottom: 18px;
}
@media (max-width: 800px) {
  .works-title {
    font-size: 18px;
  }
}
.works-subtitle {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #123747;
}
@media (max-width: 800px) {
  .works-subtitle {
    font-size: 14px;
  }
}
.works-right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1000px) {
  .works-right {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .works-right {
    grid-template-columns: 1fr;
  }
}
.works-right__item {
  cursor: pointer;
}
.works-right__item img {
  border-radius: 30px;
  width: 190px;
  height: 190px;
}
@media (max-width: 1000px) {
  .works-right__item img {
    width: 100%;
  }
}
.works-right .works-date {
  margin-top: 16px;
  margin-bottom: 0;
}
.works-right .works-title {
  margin-top: 12px;
  margin-bottom: 0;
}

.review-title {
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .review-title {
    margin-bottom: 40px;
  }
}
.review-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1100px) {
  .review-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .review-inner {
    grid-template-columns: 1fr;
  }
}
.review-item {
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  background: #ffffff;
  padding: 30px;
}
@media (max-width: 800px) {
  .review-item {
    padding: 20px;
  }
}
.review-item__top {
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 800px) {
  .review-item__top {
    margin-bottom: 20px;
  }
}
.review-item__top--left {
  margin-right: 26px;
}
@media (max-width: 800px) {
  .review-item__top--left {
    margin-right: 16px;
  }
}
.review-item__top--left img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 800px) {
  .review-item__top--left img {
    width: 50px;
    height: 50px;
  }
}
.review-item__top--right {
  font-family: var(--font-family), sans-serif;
  font-weight: 700;
  color: #123747;
  display: flex;
  flex-direction: column;
}
.review-item__top--right .fio {
  margin-bottom: 6px;
  font-size: 24px;
}
@media (max-width: 800px) {
  .review-item__top--right .fio {
    font-size: 18px;
  }
}
.review-item__top--right span:nth-child(2) {
  font-size: 20px;
}
@media (max-width: 800px) {
  .review-item__top--right span:nth-child(2) {
    font-size: 16px;
  }
}
.review-item__bottom, .review-item a {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #123747;
  text-align: justify;
}
@media (min-width: 800px) {
  .review-item__bottom, .review-item a {
    font-size: 14px;
  }
}
.review-item__bottom p, .review-item a p {
  margin-bottom: 16px;
}
@media (max-width: 800px) {
  .review-item__bottom p, .review-item a p {
    margin-bottom: 12px;
  }
}
.review-item__bottom p:last-child, .review-item a p:last-child {
  margin-bottom: 0;
}

.consultation {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media (max-width: 1100px) {
  .consultation {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 800px) {
  .consultation {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .consultation {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.consultation-inner {
  border: 1px solid #d9d9d9;
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
.consultation .social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}
.consultation .social-whatsapp {
  width: 40px;
  height: 40px;
}
.consultation .social .phone {
  font-weight: 800;
  font-size: 25px;
}

.footer {
  background: #3c4043;
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (max-width: 800px) {
  .footer {
    padding-top: 40px;
  }
}
@media (max-width: 500px) {
  .footer-btn {
    width: 100%;
  }
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
@media (max-width: 1000px) {
  .footer-top .footer-menu__list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-line {
  width: 100%;
  border: 1px solid #646464;
  margin-top: 50px;
  margin-bottom: 40px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
}
.footer-bottom .law {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555657;
}
@media (max-width: 800px) {
  .footer-bottom .law {
    font-size: 14px;
  }
}
.footer-bottom .socials {
  display: flex;
  gap: 18px;
}
.footer-bottom .socials a {
  width: 24px;
  height: 24px;
}
.footer-bottom .socials a:hover svg path {
  fill: #ffffff;
}
.footer-bottom .socials a:hover svg circle {
  fill: #FFAF00;
}
.footer-bottom .web-design {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555657;
}
@media (max-width: 800px) {
  .footer-bottom .web-design {
    font-size: 14px;
  }
}
.footer-bottom .web-design span {
  color: #7c7c7c;
}

.success {
  font-family: var(--font-family), sans-serif;
}

.error {
  font-family: var(--font-family), sans-serif;
}

.button-disabled {
  pointer-events: none; /* Отключает все взаимодействия с кнопкой */
  opacity: 0.5; /* Делаем кнопку полупрозрачной, чтобы показать, что она отключена */
}

.contact-popup {
  position: fixed;
  width: 50%;
  border-radius: 40px;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  background: #ffffff;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  opacity: 0;
  top: -99999px;
  transition: 0.2s all ease;
}
@media (max-width: 1000px) {
  .contact-popup {
    width: 70%;
  }
}
@media (max-width: 700px) {
  .contact-popup {
    width: 90%;
  }
  .contact-popup .form {
    gap: 12px;
  }
}
.contact-popup.active {
  top: 50%;
  opacity: 1;
}

button.wh-ap-btn {
  outline: none;
  width: 60px;
  height: 60px;
  border: 0;
  background-color: #2ecc71;
  padding: 0;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
  content: "";
  background-image: url("../images/png/whatsapp.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60%;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}

button.wh-ap-btn:hover {
  opacity: 1;
  background-color: #20bf6b;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100000;
}

.wh-fixed {
  margin-right: 15px;
  margin-bottom: 15px;
}
.wh-fixed > a {
  display: block;
  text-decoration: none;
}

.whatsapp-pulse {
  width: 60px;
  height: 60px;
  right: 5px;
  bottom: 20px;
  background: #10b418;
  position: fixed;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;
  display: inline-block;
  line-height: 65px;
}
.whatsapp-pulse:before {
  position: absolute;
  content: " ";
  z-index: -1;
  bottom: -15px;
  right: -15px;
  background-color: #10b418;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  animation: pulse 1.8s ease-out;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 450px) {
  .whatsapp-pulse {
    left: 10px;
    bottom: 100px;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  25% {
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  75% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.header-phone {
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 450px) {
  .header-phone {
    display: none;
  }
}

.biodesign-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1100px) {
  .biodesign-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .biodesign-inner {
    gap: 20px;
  }
}
.biodesign-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 500px) {
  .biodesign-left {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.biodesign-left__item p {
  font-family: "Lato";
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  color: #123747;
  margin-top: 16px;
}
.biodesign-right img {
  width: 100%;
  border-radius: 30px;
}/*# sourceMappingURL=main.css.map */