@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oxanium", sans-serif;
  color: #18171C;
}

html, body {
  scroll-behavior: smooth;
  background: #EEE9E4;
}

h2.h2 {
  font-size: 70px;
  font-weight: 600;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 41px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 28px;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5% 20px;
  border-bottom: 2px solid rgba(24, 23, 28, 0.5);
}

header .ham {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 7px;
  cursor: pointer;
}

header .ham div {
  height: 3px;
  width: 40px;
  background: rgba(24, 23, 28, 0.5);
  border-radius: 100px;
}

header .logo a {
  font-size: 30px;
  color: #18171C;
  text-decoration: none;
}

header .btn.secondary a {
  font-size: 18px;
  box-shadow: inset 0 0 0 2px #18171C; /* simuluje border uvnitř */
}

.offcanvas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100vh;
  transform: translateX(-100%);
  z-index: 40;
  background: #18171C;
  background: linear-gradient(125deg, rgb(24, 23, 28) 0%, rgb(54, 52, 52) 100%);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}

.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
}

.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}

.offcanvas #close__offcanvas svg * {
  color: #fff;
}

.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.25s ease;
}

.offcanvas a:hover {
  border-bottom: 2px solid white;
}

.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header {
    padding: 20px 5% 15px;
  }
  header .ham div {
    width: 31px;
  }
  header .logo a {
    font-size: 24px;
  }
  header .btn.secondary a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) {
  header .logo {
    font-size: 1.5em;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
}
@media only screen and (max-width: 700px) {
  header .logo a {
    font-size: 20px;
  }
  header .btn {
    display: none;
  }
  .offcanvas {
    width: 100%;
  }
}
.btn {
  border: none;
  background: none;
}

.btn.primary a {
  background: #18171C;
  background: linear-gradient(90deg, rgb(24, 23, 28) 0%, rgb(92, 88, 87) 100%);
}

.btn.secondary a {
  color: #18171C;
  box-shadow: inset 0 0 0 3px #18171C; /* simuluje border uvnitř */
}

.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  padding: 0.8em 1.5em;
  font-weight: 600;
  transition: 0.2s ease;
  border-radius: 100px;
  cursor: pointer;
}

.btn:hover a {
  transform: scale(1.025);
}

@media only screen and (max-width: 900px) {
  .btn.secondary a {
    box-shadow: inset 0 0 0 2px #18171C; /* simuluje border uvnitř */
  }
}
footer {
  padding: 5rem 7.5%;
  background: #181818;
}

footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}

footer .footer__content .left {
  width: 40%;
}

footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
}

footer .footer__content .left p, footer .footer__content .left a {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}

footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}

footer .footer__content .right h3 {
  font-size: 35px;
  color: #fff;
  font-weight: 500;
}

footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}

footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #fff;
  stroke-width: 3;
}

footer .footer__content .right a svg * {
  color: #fff;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right h3 {
    font-size: 27px;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
  footer .footer__content .left h2 {
    font-size: 25px;
  }
  footer .footer__content .left p {
    font-size: 13px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
  footer .footer__content .right a {
    font-size: 14px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin: 20px 0;
}

#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}

#gdpr__parent label {
  color: #18171C;
  cursor: pointer;
}

#gdpr__parent label a {
  color: #18171C;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.contacts {
  padding: 100px 7.5%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 100px;
  position: relative;
  overflow: hidden;
}

.contacts .details {
  width: 100%;
}

.contacts .details h3 {
  font-size: 30px;
  color: #18171C;
}

.contacts .details .details__content {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
  margin: 25px 0 40px;
}

.contacts .details .details__content .item {
  display: grid;
  grid-template-columns: 81px 1fr;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.contacts .details .details__content .item .icon {
  height: 71px;
  width: 71px;
  background: linear-gradient(90deg, rgb(24, 23, 28) 0%, rgb(92, 88, 87) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.contacts .details .details__content .item .icon svg {
  height: 27px;
  width: 27px;
  color: #fff;
  stroke-width: 1.75;
}

.contacts .details .details__content .item .icon svg * {
  color: #fff;
}

.contacts .details .details__content .item .item__text span, .contacts .details .details__content .item .item__text p {
  font-size: 19px;
  font-weight: 600;
}

.contacts .details .details__content .item .item__text span {
  color: rgba(24, 23, 28, 0.7);
}

.contacts .details .socials .socials__content {
  margin-top: 10px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
}

.contacts .details .socials .socials__content .item {
  height: 61px;
  width: 61px;
  background: linear-gradient(90deg, rgb(24, 23, 28) 0%, rgb(92, 88, 87) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.contacts .details .socials .socials__content .item svg {
  height: 27px;
  width: 27px;
}

.contacts .details .socials .socials__content .item svg * {
  color: #fff;
}

.contacts form {
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  position: relative;
}

.contacts form h2 {
  font-size: 50px;
  color: #18171C;
  font-weight: 500;
  margin-bottom: 25px;
}

.contacts form .inputs {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
}

.contacts form .inputs input {
  width: 100%;
  padding: 15px;
  font-size: 22px;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.contacts form .inputs textarea {
  width: 100%;
  padding: 15px;
  font-size: 22px;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.contacts form .btn a {
  font-size: 18px;
}

.contacts form .decor {
  position: absolute;
  top: 25px;
  right: 25px;
  height: 65px;
  width: 65px;
  transform: rotate(20deg);
}

@media only screen and (max-width: 1550px) {
  .contacts {
    gap: 75px;
  }
  .contacts .details h3 {
    font-size: 26px;
  }
  .contacts form h2 {
    font-size: 43px;
  }
  .contacts form .inputs input {
    font-size: 20px;
  }
  .contacts form .inputs textarea {
    font-size: 20px;
  }
  .contacts form .decor {
    height: 57px;
    width: 57px;
  }
}
@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 75px 7.5%;
  }
  .contacts .details h3 {
    font-size: 23px;
  }
  .contacts .details .details__content .item {
    grid-template-columns: 61px 1fr;
  }
  .contacts .details .details__content .item .icon {
    height: 61px;
    width: 61px;
  }
  .contacts .details .details__content .item .icon svg {
    height: 23px;
    width: 23px;
  }
  .contacts .details .details__content .item .item__text span, .contacts .details .details__content .item .item__text p {
    font-size: 16px;
  }
  .contacts .details .socials .socials__content .item {
    height: 51px;
    width: 51px;
  }
  .contacts .details .socials .socials__content .item svg {
    height: 23px;
    width: 23px;
  }
  .contacts form {
    padding: 35px;
  }
  .contacts form h2 {
    font-size: 31px;
  }
  .contacts form .inputs input {
    font-size: 17px;
  }
  .contacts form .inputs textarea {
    font-size: 17px;
  }
  .contacts form .btn a {
    font-size: 16px;
  }
  .contacts form .decor {
    height: 41px;
    width: 41px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    grid-template-columns: 1fr;
  }
  .contacts .details {
    order: 2;
  }
}
@media only screen and (max-width: 700px) {
  .contacts {
    grid-template-columns: 1fr;
  }
  .contacts form h2 {
    font-size: 25px;
  }
  .contacts form .inputs input {
    font-size: 15px;
  }
  .contacts form .inputs textarea {
    font-size: 15px;
  }
  .contacts form .btn a {
    font-size: 15px;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(238, 233, 228, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
}
.loading svg {
  height: 7.5vw;
  width: 7.5vw;
  animation: loading 1.5s linear infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.hero {
  padding: 80px 5% 220px;
  position: relative;
  overflow: hidden;
}
.hero .text {
  max-width: 55vw;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.hero .text h2 {
  font-size: 35px;
  color: rgba(24, 23, 28, 0.5);
  font-weight: 500;
}
.hero .text h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1em;
}
.hero .text p {
  font-size: 22px;
  color: rgba(24, 23, 28, 0.6);
  line-height: 1.45em;
}
.hero .text .buttons {
  margin-top: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}
.hero .text .buttons .btn a {
  font-size: 23px;
}
.hero .hero-img {
  position: absolute;
  width: 850px;
  right: 0;
  bottom: 0;
}

.offer {
  padding: 100px 5%;
  background: #EEEEEE;
}
.offer .offer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}
.offer .offer__content .item {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 25px;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
}
.offer .offer__content .item:hover img {
  transform: scale(1.025);
}
.offer .offer__content .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.25s ease;
}
.offer .offer__content .item h3 {
  position: relative;
  z-index: 2;
  font-size: 35px;
  color: #fff;
}

.about {
  padding: 100px 5% 0;
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1em;
  margin-top: 20px;
}
.about .charts {
  width: 25%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 20px;
}
.about .charts .chart {
  width: 100%;
}
.about .charts .chart.chart1 {
  height: 300px;
  background: #DBD5CD;
  background: linear-gradient(180deg, rgb(219, 213, 205) 0%, rgb(192, 188, 177) 100%);
}
.about .charts .chart.chart2 {
  height: 400px;
  background: #D0D4CF;
  background: linear-gradient(180deg, rgb(208, 212, 207) 0%, rgb(173, 172, 177) 100%);
}
.about .charts .chart.chart3 {
  height: 200px;
  background: #BFACA5;
  background: linear-gradient(180deg, rgb(191, 172, 165) 0%, rgb(161, 142, 135) 100%);
}
.about .clients {
  width: 35%;
  padding: 0 35px 0 60px;
}
.about .clients .circle {
  height: 80px;
  width: 80px;
}
.about .clients .clients__pics {
  display: flex;
  justify-content: start;
  align-items: start;
  margin: 35px 0 0;
}
.about .clients .clients__pics img {
  width: 100px;
  height: 100px;
  position: relative;
  border: 1px solid #000;
  border-radius: 50%;
}
.about .clients .clients__pics img:nth-child(2) {
  transform: translateX(-35%);
}
.about .clients .clients__pics img:nth-child(3) {
  transform: translateX(-70%);
}
.about .clients .clients__pics img:nth-child(4) {
  transform: translateX(-105%);
}
.about .clients .clients__pics img:nth-child(5) {
  transform: translateX(-140%);
}
.about .intro {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 55px;
  width: 40%;
  height: 100%;
  min-height: 400px;
}
.about .intro .image {
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: end;
}
.about .intro .image .about__img {
  width: 100%;
}
.about .intro .text {
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.about .intro .text .star {
  height: 71px;
  width: 71px;
}
.about .intro .text p {
  font-size: 17px;
  margin: 10px 0 20px;
}
.about .intro .text .btn a {
  font-size: 18px;
  box-shadow: inset 0 0 0 2px #18171C; /* simuluje border uvnitř */
}

@media only screen and (max-width: 1550px) {
  .hero .text h2 {
    font-size: 30px;
  }
  .hero .text h1 {
    font-size: 70px;
  }
  .hero .text p {
    font-size: 20px;
  }
  .hero .text .buttons .btn a {
    font-size: 21px;
  }
  .hero .hero-img {
    width: 750px;
  }
  .offer .offer__content .item {
    height: 250px;
  }
  .offer .offer__content .item h3 {
    font-size: 28px;
  }
  .about h3 {
    font-size: 31px;
  }
  .about .charts {
    width: 20%;
    gap: 10px;
  }
  .about .charts .chart.chart1 {
    height: 250px;
  }
  .about .charts .chart.chart2 {
    height: 320px;
  }
  .about .charts .chart.chart3 {
    height: 200px;
  }
  .about .clients {
    width: 40%;
  }
  .about .clients .circle {
    height: 61px;
    width: 61px;
  }
  .about .clients .clients__pics img {
    width: 81px;
    height: 81px;
  }
  .about .intro {
    grid-template-columns: 200px 1fr;
    min-height: 320px;
  }
  .about .intro .text .star {
    height: 61px;
    width: 61px;
  }
  .about .intro .text p {
    font-size: 15px;
  }
  .about .intro .text .btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    padding: 60px 5% 140px;
  }
  .hero .text h2 {
    font-size: 26px;
  }
  .hero .text h1 {
    font-size: 47px;
  }
  .hero .text p {
    font-size: 17px;
  }
  .hero .text .buttons {
    gap: 10px;
  }
  .hero .text .buttons .btn a {
    font-size: 17px;
  }
  .hero .hero-img {
    width: 475px;
  }
  .offer {
    padding: 75px 5%;
  }
  .offer .offer__content {
    margin-top: 20px;
    gap: 15px;
  }
  .offer .offer__content .item {
    padding: 15px;
  }
  .offer .offer__content .item h3 {
    font-size: 23px;
  }
  .about {
    justify-content: space-between;
  }
  .about h3 {
    font-size: 26px;
  }
  .about .charts {
    display: none;
  }
  .about .clients {
    width: 40%;
  }
  .about .clients .clients__pics {
    margin-top: 20px;
  }
  .about .clients .clients__pics img {
    height: 65px;
    width: 65px;
  }
  .about .intro {
    width: 55%;
    grid-template-columns: 150px 1fr;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    padding: 55px 5% 150px;
  }
  .hero .text {
    max-width: 100%;
    gap: 10px;
  }
  .hero .text h2 {
    font-size: 20px;
  }
  .hero .text h1 {
    font-size: 40px;
  }
  .hero .text p {
    font-size: 16px;
  }
  .hero .text .buttons {
    flex-flow: column;
    align-items: start;
    gap: 15px;
    margin-top: 10px;
  }
  .hero .hero-img {
    width: 300px;
  }
  .offer {
    padding: 50px 5%;
  }
  .offer .offer__content {
    grid-template-columns: 1fr 1fr;
  }
  .offer .offer__content .item {
    height: 175px;
  }
  .about {
    padding: 50px 10%;
    flex-flow: column;
    row-gap: 50px;
  }
  .about .clients {
    width: 100%;
    order: 2;
    padding: 0;
  }
  .about .clients .clients__pics img {
    height: 80px;
    width: 80px;
  }
  .about .intro {
    width: 100%;
    order: 1;
    min-height: auto;
  }
}
@media only screen and (max-width: 700px) {
  .hero .text h2 {
    font-size: 18px;
  }
  .hero .text h1 {
    font-size: 30px;
  }
  .hero .text p {
    font-size: 14px;
  }
  .hero .text .buttons {
    gap: 10px;
  }
  .hero .text .buttons .btn a {
    font-size: 15px;
  }
  .hero .hero-img {
    width: 250px;
  }
  .offer .offer__content {
    gap: 7px;
  }
  .offer .offer__content .item {
    height: 150px;
    border-radius: 10px;
  }
  .offer .offer__content .item h3 {
    font-size: 20px;
  }
  .about .intro {
    grid-template-columns: 1fr;
  }
  .about .intro .image {
    order: 2;
    justify-content: end;
  }
  .about .intro .image .about__img {
    width: 60%;
  }
  .about .intro .text .star {
    height: 51px;
    width: 51px;
  }
}
.reviews {
  padding: 5rem 5%;
  background: #EEEEEE;
  position: relative;
}
.reviews .reviews__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews .reviews__heading .btn a {
  font-size: 22px;
}
.reviews .reviews__content {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  width: 100%;
  gap: 25px;
}
.reviews .reviews__content .item {
  width: 100%;
}
.reviews .reviews__content .item .item__content {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.reviews .reviews__content .item .item__content img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews .reviews__content .item .item__content .item__text {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding: 10px 20px 20px;
}
.reviews .reviews__content .item .item__content .item__text h3 {
  font-size: 27px;
  text-align: start;
}
.reviews .reviews__content .item .item__content .item__text h4 {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  text-align: start;
}
.reviews .reviews__content .item .item__content .item__text .item__benefits {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  width: 100%;
  padding: 15px 0;
}
.reviews .reviews__content .item .item__content .item__text .item__benefits .benefit {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 7px;
}
.reviews .reviews__content .item .item__content .item__text .item__benefits .benefit svg {
  height: 25px;
  width: 25px;
}
.reviews .reviews__content .item .item__content .item__text .item__benefits .benefit span {
  font-size: 18px;
  text-align: start;
}
.reviews .reviews__content .item .item__content .item__text .btn a {
  font-size: 18px;
}
.reviews .reviews__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.reviews .reviews__wrapper__wrapper {
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 1550px) {
  .reviews .reviews__heading .btn a {
    font-size: 20px;
  }
  .reviews .reviews__content .item .item__content img {
    height: 250px;
  }
  .reviews .reviews__content .item .item__content .item__text h3 {
    font-size: 24px;
  }
  .reviews .reviews__content .item .item__content .item__text h4 {
    font-size: 17px;
  }
  .reviews .reviews__content .item .item__content .item__text .item__benefits .benefit svg {
    height: 23px;
    width: 23px;
  }
  .reviews .reviews__content .item .item__content .item__text .item__benefits .benefit span {
    font-size: 17px;
  }
  .reviews .reviews__content .item .item__content .item__text .btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .reviews {
    padding: 50px 5%;
  }
  .reviews .reviews__heading .btn a {
    font-size: 18px;
  }
  .reviews .reviews__content {
    gap: 15px;
  }
  .reviews .reviews__content .item .item__content img {
    height: 175px;
  }
  .reviews .reviews__content .item .item__content .item__text h3 {
    font-size: 20px;
  }
  .reviews .reviews__content .item .item__content .item__text .item__benefits {
    gap: 10px;
    flex-flow: column;
  }
  .reviews .reviews__content .item .item__content .item__text .item__benefits .benefit svg {
    height: 21px;
    width: 21px;
  }
  .reviews .reviews__content .item .item__content .item__text .btn a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .reviews .reviews__heading .btn a {
    font-size: 16px;
  }
  .reviews .reviews__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reviews .reviews__content .item .item__content img {
    height: 300px;
  }
}
@media only screen and (max-width: 700px) {
  .reviews {
    padding: 50px 5%;
  }
  .reviews .reviews__heading {
    flex-flow: column;
    justify-content: start;
    align-items: start;
  }
  .reviews .reviews__heading .btn a {
    font-size: 14px;
  }
  .reviews .reviews__content .item .item__content {
    border-radius: 10px;
  }
  .reviews .reviews__content .item .item__content img {
    height: 200px;
  }
  .reviews .reviews__content .item .item__content .item__text h3 {
    font-size: 18px;
  }
  .reviews .reviews__content .item .item__content .item__text h4 {
    font-size: 15px;
  }
  .reviews .reviews__content .item .item__content .item__text .item__benefits .benefit {
    grid-template-columns: 17px 1fr;
  }
  .reviews .reviews__content .item .item__content .item__text .item__benefits .benefit svg {
    height: 17px;
    width: 17px;
  }
  .reviews .reviews__content .item .item__content .item__text .item__benefits .benefit span {
    font-size: 14px;
  }
  .reviews .reviews__content .item .item__content .item__text .btn a {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */