@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Merriweather Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

header {
  padding: 0 10%;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 5rem;
  width: 100%;
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2.5rem;
}
header nav a {
  color: #000;
  text-decoration: none;
}
header nav a:last-child {
  font-weight: 800;
}
header nav .dropdown {
  position: relative;
  display: inline-block;
}
header nav .dropdown-content {
  display: none;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.5rem;
  padding: 1rem 15px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
header nav .dropdown-content a {
  font-size: 0.8em;
}
header nav .dropdown-content a:last-child {
  font-weight: 400;
}
header nav .dropdown:hover .dropdown-content {
  display: flex;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: flex-end;
  flex-flow: column wrap;
  height: 2.5rem;
  width: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}
header .ham div {
  height: 0.25rem;
  width: 100%;
  background: #CE242B;
  margin: 0.2rem 0;
  border-radius: 1rem;
  transition: 0.5s ease-in-out;
}
header .ham .ham-active:nth-child(1) {
  transform: translate(0, 10px) rotate(45deg);
  background: #CE242B;
}
header .ham .ham-active:nth-child(2) {
  opacity: 0;
}
header .ham .ham-active:nth-child(3) {
  width: 100%;
  transform: translate(0, -10px) rotate(-45deg);
  background: #CE242B;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #fff;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #CE242B;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 0.2rem solid #CE242B;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  transition: 0.25s ease;
}
.btn:hover {
  transform: scale(1.05);
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  background: #CE242B;
  padding: 0.75em 1.5em;
  border-radius: 10px;
}

footer {
  background: #181818;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: relative;
  padding-bottom: 2.5rem;
  border-top: 5px solid #fff;
}
footer .text {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  width: 40%;
}
footer .text img {
  width: 7.5rem;
}
footer .text .text__content h2 {
  color: #fff;
  font-size: 2.5em;
}
footer .text .text__content .contacts {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-weight: 400;
}
footer .text .text__content .contacts a, footer .text .text__content .contacts p {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
footer .footer__nav {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  padding: 2rem 0 0;
}
footer .footer__nav h2 {
  font-size: 1.75em;
  color: #fff;
}
footer .footer__nav nav {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  margin-top: 1rem;
  gap: 0.75rem;
}
footer .footer__nav nav a {
  color: #fff;
  text-decoration: none;
  padding-left: 25px;
  position: relative;
  font-weight: 400;
}
footer .footer__nav nav a::after {
  content: "";
  height: 12px;
  width: 12px;
  background: #CE242B;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1300px) {
  footer .text {
    width: 50%;
  }
  footer .text .text__content h2 {
    font-size: 1.5em;
  }
  footer .text .text__content .contacts p, footer .text .text__content .contacts a {
    font-size: 0.8em;
  }
  footer .footer__nav h2 {
    font-size: 1.5em;
  }
  footer .footer__nav nav a {
    font-size: 0.9em;
  }
  footer .footer__nav nav a::after {
    height: 8px;
    width: 8px;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    flex-flow: column;
    padding: 3rem 5%;
  }
  footer .text {
    width: 100%;
    gap: 1rem;
  }
  footer .text img {
    width: 5rem;
  }
  footer .text .text__content h2 {
    font-size: 1.35em;
  }
  footer .text .text__content .contacts p, footer .text .text__content .contacts a {
    font-size: 0.7em;
  }
  footer .footer__nav h2 {
    font-size: 1.35em;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #000;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #000;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.title {
  height: calc(100vh - 5rem);
  width: 100%;
  position: relative;
}
.title .bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title .bg #bg-video {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.title .circle {
  height: 450px;
  width: 450px;
  border-radius: 50%;
  background: rgb(126, 34, 29);
  background: linear-gradient(45deg, rgb(126, 34, 29) 0%, rgb(206, 36, 43) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  transform: translateY(-2.5rem);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  margin-left: 5%;
}
.title .circle h1 {
  font-size: 4.2em;
  color: #fff;
  font-weight: 800;
}
.title .circle p {
  font-size: 1.5em;
  color: #fff;
  line-height: 40px;
  letter-spacing: 2px;
  text-align: center;
}
.title .logo {
  width: 10rem;
  position: absolute;
  right: 7.5%;
  top: 0;
  filter: drop-shadow(3px 10px 10px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

h2.heading {
  color: #CE242B;
  font-size: 4em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}

.services {
  padding: 5rem 10%;
}
.services .services__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  padding: 2rem 0;
}
.services .services__content .item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
}
.services .services__content .item img {
  width: 15rem;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.services .services__content .item h3 {
  font-size: 1.75em;
  font-weight: 500;
  margin: 1rem 0 0.25rem;
  text-align: center;
}
.services .services__content .item .link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1em;
  color: #000;
  text-decoration: none;
}
.services .services__content .item .link svg {
  height: 1.35em;
  width: 1.35em;
}
.services .btn {
  margin: 0.5rem auto 0;
  display: block;
}
.services .btn a {
  font-size: 1.5em;
}

.reviews {
  padding: 5rem 10%;
  background: #CE242B;
}
.reviews h2.heading {
  color: #fff;
}
.reviews .reviews__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 10vw;
  margin-top: 3rem;
  position: relative;
}
.reviews .reviews__content .item {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-flow: column;
  height: 100%;
}
.reviews .reviews__content .item .bubble {
  padding: 3rem;
  background: #F8F8F8;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: visible; /* Ensure the triangle is visible outside the parent */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews .reviews__content .item .bubble .quote__mark {
  color: #CE242B;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4em;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 900;
}
.reviews .reviews__content .item .bubble .text {
  font-size: 0.85em;
  line-height: 1.5em;
  padding-left: 1rem;
}
.reviews .reviews__content .item .bubble::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-180deg);
  border-width: 0 35px 35px 35px; /* Adjust the size of the triangle */
  border-style: solid;
  border-color: transparent transparent #F8F8F8 transparent; /* Change the fill color */
  z-index: 2;
  filter: drop-shadow(-4px -4px 2px rgba(0, 0, 0, 0.25));
}
.reviews .reviews__content .item .customer {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.reviews .reviews__content .item .customer .customer__image {
  height: 130px;
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: -5px 0px 4px 0px rgba(0, 0, 0, 0.65) inset;
}
.reviews .reviews__content .item .customer .customer__image img {
  min-width: 100%;
  min-height: 100%;
}
.reviews .reviews__content .item .customer .customer__name {
  font-size: 1.1em;
  color: #fff;
  margin-top: 1rem;
  text-align: center;
}

@media only screen and (max-width: 1500px) {
  .title .circle {
    height: 350px;
    width: 350px;
  }
  .title .circle h1 {
    font-size: 3em;
  }
  .title .circle p {
    font-size: 1.2em;
    line-height: 1.5em;
  }
  .title .logo {
    width: 8rem;
  }
}
@media only screen and (max-width: 1300px) {
  .title .circle {
    width: 275px;
    height: 275px;
  }
  .title .circle h1 {
    font-size: 2.25em;
  }
  .title .circle p {
    font-size: 1em;
  }
  h2.heading {
    font-size: 3em;
  }
  .services {
    padding: 5rem 7.5%;
  }
  .services .services__content .item h3 {
    font-size: 1.4em;
  }
  .services .btn a {
    font-size: 1.35em;
  }
  .reviews .reviews__content {
    gap: 5vw;
  }
  .reviews .reviews__content .item .bubble {
    padding: 1.5rem;
  }
  .reviews .reviews__content .item .bubble .quote__mark {
    display: none;
  }
  .reviews .reviews__content .item .bubble .text {
    font-size: 0.75em;
    padding-left: 0;
  }
  .reviews .reviews__content .item .customer .customer__image {
    height: 100px;
    width: 100px;
  }
  .reviews .reviews__content .item .customer .customer__name {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  .title {
    height: 35rem;
    padding: 0 5%;
  }
  .title .circle {
    height: 225px;
    width: 225px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  }
  .title .circle h1 {
    font-size: 1.75em;
  }
  .title .circle p {
    font-size: 0.8em;
  }
  .title .logo {
    width: 6rem;
    right: 5%;
  }
  .services .services__content {
    padding: 1rem 0;
  }
  .services .services__content .item img {
    height: 10rem;
    width: 10rem;
  }
  .reviews .reviews__content {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
  .reviews .reviews__content .item {
    padding: 0 10%;
  }
}
@media only screen and (max-width: 700px) {
  .title {
    height: 25rem;
  }
  .title .circle {
    height: 150px;
    width: 150px;
  }
  .title .circle h1 {
    font-size: 20px;
  }
  .title .circle p {
    font-size: 0.6em;
    margin-top: 0.25rem;
  }
  .title .logo {
    width: 5rem;
    top: inherit;
    bottom: 0;
    right: 2px;
    filter: none;
  }
  h2.heading {
    font-size: 2em;
  }
  .services .services__content {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .services .services__content .item img {
    width: 150px;
    height: 150px;
  }
  .services .services__content .item h3 {
    font-size: 1.2em;
  }
  .services .services__content .item .link {
    font-size: 0.8em;
  }
  .services .btn a {
    font-size: 1.1em;
  }
  .reviews .reviews__content {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
  .reviews .reviews__content .item .customer .customer__image {
    width: 85px;
    height: 85px;
  }
  .reviews .reviews__content .item .customer .customer__name {
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */