@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: 2rem 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 .text .text__content .socials {
  margin-top: 1rem;
}
footer .text .text__content .socials h3 {
  color: #fff;
  font-size: 1em;
}
footer .text .text__content .socials .icons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
footer .text .text__content .socials .icons .icon {
  transition: 0.25s ease;
}
footer .text .text__content .socials .icons .icon img {
  height: 24px;
  width: 24px;
}
footer .text .text__content .socials .icons .icon:hover {
  transform: scale(1.05);
}
footer .footer__nav {
  display: flex;
  justify-content: start;
  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%);
}
footer .footer__nav .review__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 15rem;
  margin-top: 1.5rem;
  color: #000;
  text-decoration: none;
  transition: 0.25s ease;
}
footer .footer__nav .review__banner:hover {
  transform: scale(1.05);
}
footer .footer__nav .review__banner img {
  width: 100%;
}
footer .footer__nav .review__banner p {
  font-size: 0.8em;
  width: 100%;
  padding: 0.25rem 0.75rem 0.75rem;
  text-align: center;
  background: #fff;
  transform: translateY(-2px);
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  font-weight: 600;
}

@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;
  }
}
main {
  padding: 3rem 10%;
}
main .blog__image {
  height: 30rem;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
main .blog__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .content {
  width: 80%;
  padding: 5rem;
  background: #fff;
  margin: 0 auto;
  transform: translateY(-7rem);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}
main .content .date {
  color: rgba(0, 0, 0, 0.35);
}
main .content .blog__title {
  margin: 0.5rem 0;
}
main .content .text__content {
  opacity: 0.5;
}
main .content .text__content * {
  line-height: 1.5em;
}

@media only screen and (max-width: 1300px) {
  main .blog__image {
    height: 22rem;
  }
  main .content {
    padding: 3.5rem;
  }
  main .content .blog__title {
    font-size: 1.65em;
  }
  main .content .text__content {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 700px) {
  main {
    padding: 1rem 5%;
  }
  main .blog__image {
    height: 15rem;
  }
  main .content {
    padding: 3.5rem;
    width: 90%;
    padding: 2rem;
  }
  main .content .date {
    font-size: 0.7em;
  }
  main .content .blog__title {
    font-size: 1em;
  }
  main .content .text__content {
    font-size: 0.7em;
  }
}/*# sourceMappingURL=style.css.map */