@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;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
}
header nav a {
  color: #000;
}
header nav .language__parent {
  border-left: 2px solid #000;
}
header nav .language__parent span {
  color: #000;
}
header nav .language__parent .language__btn {
  color: #000;
  border: 2px solid #000;
}

main {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 100vh;
}
main .image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .image img {
  height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .text {
  padding: 8rem 10% 5rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
main .text h1 {
  font-size: 3em;
}
main .text section {
  margin: 1rem 0;
}
main .text section h2 {
  font-size: 1.5em;
  margin-bottom: 0.25rem;
}
main .text section p, main .text section ul li {
  font-size: 1em;
  line-height: 1.5em;
}
main .text section p a, main .text section ul li a {
  color: #000;
}
main .text section ul {
  margin-left: 25px;
}
main .text section ul li {
  margin: 0.25rem 0;
}
main .text section img {
  max-height: 25rem;
  max-width: 100%;
  border-radius: 15px;
}

@media only screen and (max-width: 1300px) {
  main {
    grid-template-columns: 0.4fr 0.6fr;
  }
  main .text {
    padding: 5rem 15% 2rem;
  }
  main .text h1 {
    font-size: 2.5em;
  }
  main .text ul li {
    font-size: 1em;
  }
}
@media only screen and (max-width: 850px) {
  main {
    grid-template-columns: 1fr;
  }
  main .image {
    order: 2;
  }
  main .text {
    order: 1;
  }
  main .text h1 {
    font-size: 2em;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 700px) {
  main .image {
    order: 2;
    height: 20rem;
  }
  main .text {
    order: 1;
    padding: 5rem 10% 2rem;
  }
  main .text h1 {
    font-size: 1.5em;
    margin-bottom: 0.5rem;
  }
  main .text ul {
    padding-left: 15px;
  }
  main .text ul li {
    font-size: 0.8em;
  }
  main .text section h2 {
    font-size: 1.2em;
  }
  main .text section p {
    font-size: 0.8em;
  }
}/*# sourceMappingURL=style.css.map */