* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

@font-face {
  font-family: 'Sora';
  src: url('/fonts/Sora/woff2/Sora-Regular.woff2') format('woff2');
  src: url('/fonts/Sora/woff/Sora-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Sora';
  src: url('/fonts/Sora/woff2/Sora-Bold.woff2') format('woff2');
  src: url('/fonts/Sora/woff/Sora-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Sora';
  src: url('/fonts/Sora/woff2/Sora-SemiBold.woff2') format('woff2');
  src: url('/fonts/Sora/woff/Sora-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Sora';
  src: url('/fonts/Sora/woff2/Sora-ExtraBold.woff2') format('woff2');
  src: url('/fonts/Sora/woff/Sora-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Mulish';
  src: url('/fonts/Mulish/woff2/Mulish-Regular.woff2') format('woff2');
  src: url('/fonts/Mulish/woff/Mulish-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Mulish';
  src: url('/fonts/Mulish/woff2/Mulish-Bold.woff2') format('woff2');
  src: url('/fonts/Mulish/woff/Mulish-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
:root {
  --white: #ffffff;
  --dark: #1e1e1e;
  --white-text: #f9f9f9;
  --grey-text: #514f4f;
}

body {
  background: var(--white);
  font-family: 'Sora';
  scroll-behavior: smooth;
  scroll-margin-top: 300px;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 300px;
}

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

.title {
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  font-weight: 600;
}

.header {
  background: var(--dark);
  padding: 30px 0;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-text {
  margin-left: 20px;
  margin-top: 10px;
  color: var(--white-text);
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
}
.nav__list {
  margin-top: 10px;
  display: flex;
  gap: 35px;
  text-transform: uppercase;
}
.nav__list_link a {
  color: var(--white-text);
  text-align: right;
  transition: color 0.5s ease;
}
.nav__list_link a:hover {
  transition: color 0.5s ease;
  color: white;
}

.hero__row {
  margin-top: 90px;
  margin-bottom: 90px;
  display: flex;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.hero__text {
  max-width: 570px;
}
.hero__title {
  line-height: 1.3;
}
.hero__description {
  font-family: 'Mulish';
  margin-top: 68px;
  font-size: clamp(16px, 5vw, 20px);
  line-height: 1.5;
  font-weight: 800;
}
.hero__description span {
  font-weight: 800;
  display: block;
  margin-top: 20px;
}
.hero__card {
  margin-left: 20px;
  background: url('/img/card.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 33px 29px;
  border-radius: 10px;
  box-shadow: 3px 4px 6px;
  max-width: 472px;
  min-height: 636px;
  height: 100%;
  width: 100%;
}

.card__row {
  display: flex;
  justify-content: space-between;
}
.card__text {
  display: flex;
  flex-direction: column;
  color: #201f1f;
  font-weight: 800;
  line-height: 1.5;
  font-size: 18px;
}
.card__links {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.card__links_tlf {
  padding: 5px 5px;
  background: black;
  color: white;
  border-radius: 5px;
  font-size: clamp(10px, 5vw, 12px);
}
.card__links_mail {
  font-size: clamp(10px, 5vw, 12px);
  margin-top: 5px;
  padding: 5px 5px;
  background: black;
  color: white;
  border-radius: 5px;
  text-align: center;
  position: relative;
  max-width: 139px;
}
.card__links_row {
  margin-top: 7px;
  display: flex;
  justify-content: end;
  gap: 10px;
}
.card__services {
  margin-top: 20px;
}
.card__services p {
  font-size: 24px;
  color: black;
  font-weight: 800;
  text-transform: uppercase;
}
.card__services ul {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-left: -5px;
}
.card__services ul li {
  margin-top: 20px;
  position: relative;
  margin-left: 20px;
}
.card__services ul li::before {
  content: '';
  background: #000;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.card__video {
  margin-top: 120px;
}
.card__frame {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}

.info {
  background-color: var(--dark);
  padding: 80px 0;
}
.info__title {
  text-align: center;
  color: var(--white-text);
}
.info__row {
  margin-top: 79px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
}
.info__image {
  align-items: center;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 200px;
  min-height: 300px;
}
.info__text {
  font-family: 'Mulish';
  margin-left: 10px;
  margin-bottom: 20px;
  max-width: 571px;
  line-height: 1.8;
  color: white;
  font-size: clamp(16px, 5vw, 18px);
  text-align: justify;
}
.info__text span {
  display: block;
  margin-top: 10px;
}
.info__text span:last-child {
  display: block;
  margin-top: -10px;
}
.info__description {
  font-family: 'Mulish';
  margin-top: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-text);
  line-height: 1.3;
}

.opinions {
  padding: 80px 0;
}
.opinions__title {
  text-align: center;
  margin-bottom: 50px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 40px;
}

.swiper-button-prev {
  color: black;
}

.swiper-button-next {
  color: black;
}

.slide__block {
  max-width: 512px;
  padding: 15px 37px 21px 16px;
  background: var(--dark);
  border-radius: 10px;
  min-width: 200px;
}
.slide__row {
  display: flex;
}
.slide__info {
  margin-top: 12px;
  margin-left: 12px;
}
.slide__name {
  font-family: 'sora';
  font-size: 15px;
  color: var(--white-text);
  line-height: 1.3;
}
.slide__date {
  font-family: 'sora';
  font-size: 15px;
  color: var(--grey-text);
  line-height: 1.3;
}
.slide__rainting {
  margin-top: 10px;
}
.slide__description {
  margin-top: 10px;
  color: var(--white-text);
  font-family: 'Mulish';
  line-height: 1.3;
}

.servicios {
  padding: 80px 0;
  background: var(--dark);
}
.servicios__title {
  text-align: center;
  color: #f9f9f9;
}
.servicios__row {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.servicios__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-top: 60px;
  max-width: 584px;
  background: white;
  border-radius: 10px;
  min-height: 100%;
}

.card__image img {
  max-width: 584px;
  max-height: 286px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.card__title {
  padding: 0px 32px 15px 32px;
  margin-top: 20px;
  font-size: 24px;
  font-family: 'sora';
  text-transform: uppercase;
  font-weight: 600;
}
.card__description {
  padding: 0px 32px 15px 32px;
  margin-top: 10px;
  font-family: 'Mulish';
  line-height: 1.4;
  font-size: 16px;
  text-align: justify;
}

.contactos {
  padding: 180px 0;
  background: url('/img/bgcontact.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
}
.contactos__image {
  background: url('/img/Map.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  aspect-ratio: 1261/642;
}
.contactos__links {
  background: var(--dark);
  height: 161px;
}

.links__row {
  display: flex;
  margin-left: -72px;
  padding: 40px 20px 40px 100px;
}
.links__block {
  margin-left: 72px;
}

.info__block_title {
  font-family: 'sora';
  font-size: calc(10px + 0.625vw);
  font-weight: 600;
  color: var(--grey-text);
  margin-bottom: 10px;
}
.info__block_subtitle {
  margin-top: 10px;
  font-family: 'sora';
  font-size: calc(10px + 0.625vw);
  font-weight: 600;
  color: var(--white-text);
}

.footer {
  background: var(--dark);
  padding: 35px 0;
}
.footer__row {
  display: flex;
  align-items: start;
}
.footer__text {
  margin-top: 25px;
  display: flex;
  margin-left: -40px;
}
.footer__text_block {
  display: flex;
  flex-direction: column;
  margin-left: 145px;
}
.footer__text_header {
  font-size: 18px;
  color: var(--grey-text);
  font-weight: 600px;
  margin-bottom: 5px;
}
.footer__text_links {
  font-size: 18px;
  color: var(--white-text);
  font-weight: 600px;
  margin-top: 10px;
}
.footer__copyright {
  margin-top: 55px;
  text-align: center;
  color: white;
  font-size: 24px;
} /*# sourceMappingURL=style.css.map */
