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

html, body {
  scroll-behavior: smooth;
}

header {
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: #000;
}
header .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 50px;
}
header .left .logo {
  display: flex;
  justify-content: start;
  align-items: center;
}
header .left .logo a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
}
header .left .logo a img {
  height: 3.5rem;
}
header .left nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 30px;
}
header .left nav .dropdown {
  position: relative;
}
header .left nav .dropdown .dropdown-main-link svg {
  height: 19px;
  width: 19px;
  margin-left: 0.25rem;
  stroke-width: 3;
}
header .left nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: white;
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
header .left nav .dropdown-menu a {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-decoration: none;
  color: #000;
  display: block;
  font-size: 15px;
}
header .left nav .dropdown-menu a::after {
  background: #000;
  bottom: -2px;
}
header .left nav .dropdown-menu a:hover::after {
  width: 90%;
}
header .left nav .dropdown:hover .dropdown-menu {
  display: flex;
}
header .left nav a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .left nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.25s ease;
}
header .left nav a:hover::after, header .left nav a.active::after {
  width: 70%;
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 40px;
}
header .right #search-btn {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .right #search-btn svg {
  height: 29px;
  width: 29px;
  color: #fff;
  stroke-width: 2.5;
}
header .right #lang-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
}
header .right #lang-switch span {
  font-size: 19px;
  color: #fff;
  font-weight: 600;
}
header .right #lang-switch svg {
  height: 19px;
  width: 19px;
  color: #fff;
  stroke-width: 3;
}
header .right .btn a {
  font-size: 16px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #fff;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #fff;
  height: 30px;
  width: 30px;
}

.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: #0b0b0b;
}
.offcanvas#offcanvas2, .offcanvas#offcanvas3, .offcanvas#offcanvas4 {
  z-index: 41;
}
.offcanvas #close__offcanvas, .offcanvas #close__offcanvas2, .offcanvas #close__offcanvas3, .offcanvas #close__offcanvas4 {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg, .offcanvas #close__offcanvas2 svg, .offcanvas #close__offcanvas3 svg, .offcanvas #close__offcanvas4 svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header {
    height: 5rem;
  }
  header .left {
    gap: 35px;
  }
  header .left .logo a img {
    height: 2.5rem;
  }
  header .left nav {
    gap: 15px;
  }
  header .left nav a {
    font-size: 14px;
  }
  header .right {
    gap: 25px;
  }
  header .right #search-btn svg {
    height: 25px;
    width: 25px;
  }
  header .right #lang-switch span {
    font-size: 17px;
  }
  header .right #lang-switch svg {
    height: 17px;
    width: 17px;
  }
  header .right .btn a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1000px) {
  header .left nav {
    display: none;
  }
  header .right .btn {
    display: none;
  }
  header .right #ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.black a {
  color: #fff;
  background: #000;
}
.btn a {
  font-size: 1em;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  background: #fff;
  border-radius: 7px;
  text-decoration: none;
  padding: 0.5em 1.25em;
  transition: 0.2s ease;
  font-weight: 600;
}
.btn:hover a {
  outline: 1px solid #fff;
}

footer {
  padding: 5rem 7.5%;
  background: #000;
}
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 img {
  height: 100px;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left .footer__contacts {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
  margin-top: 2rem;
}
footer .footer__content .left .footer__contacts a {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: center;
  color: #fff;
  text-decoration: none;
  gap: 10px;
}
footer .footer__content .left .footer__contacts a svg {
  height: 27px;
  width: 27px;
}
footer .footer__content .left .footer__contacts a span {
  font-size: 20px;
}
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;
  line-height: 1.1em;
  margin-bottom: 0.75rem;
  color: #fff;
}
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:hover svg {
  transform: translateX(5px);
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #fff;
  stroke-width: 3;
  transition: 0.25s ease;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left img {
    height: 70px;
  }
  footer .footer__content .left .footer__contacts a svg {
    height: 23px;
    width: 23px;
  }
  footer .footer__content .left .footer__contacts a span {
    font-size: 17px;
  }
  footer .footer__content .right {
    justify-content: center;
    gap: 10px;
  }
  footer .footer__content .right h3 {
    font-size: 28px;
  }
  footer .footer__content .right a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) {
  footer .footer__content .left {
    width: 60%;
  }
  footer .footer__content .left .footer__contacts a {
    grid-template-columns: 21px 1fr;
  }
  footer .footer__content .left .footer__contacts a svg {
    height: 21px;
    width: 21px;
  }
  footer .footer__content .left .footer__contacts a span {
    font-size: 15px;
  }
  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%;
  }
}
h2.h2 {
  font-size: 60px;
  font-weight: 700;
  font-weight: -3px;
  color: #000;
}
h2.h2.white {
  color: #fff;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 27px;
  }
}
.blog {
  padding: 5rem 7.5% 12rem;
}
.blog .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.blog .heading .btn a {
  font-size: 20px;
}
.blog .blog__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  row-gap: 100px;
}
.blog .blog__content .item {
  height: 100%;
  height: 400px;
  position: relative;
}
.blog .blog__content .item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  border: 3px solid rgba(0, 0, 0, 0.2);
}
.blog .blog__content .item .item__content {
  position: absolute;
  bottom: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  transform: translateY(50%);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
}
.blog .blog__content .item .item__content .date {
  background: #000;
  padding: 6px 13px;
  border-radius: 7px;
}
.blog .blog__content .item .item__content .date span {
  font-size: 13px;
  color: #fff;
}
.blog .blog__content .item .item__content h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1em;
  margin-top: 1rem;
}
.blog .blog__content .item .item__content p {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0.25rem 0 0.75rem;
}
.blog .blog__content .item .item__content a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.blog .blog__content .item .item__content a svg {
  height: 22px;
  width: 22px;
  color: #000;
  stroke-width: 2.5;
}
.blog .blog__content .item .item__content a span {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .blog .heading {
    flex-flow: column;
    align-items: start;
  }
  .blog .heading .btn a {
    font-size: 18px;
  }
  .blog .blog__content {
    grid-template-columns: 1fr 1fr;
    row-gap: 125px;
  }
  .blog .blog__content .item {
    height: 300px;
  }
}
@media only screen and (max-width: 900px) {
  .blog {
    padding: 3.5rem 7.5% 10rem;
  }
  .blog .heading .btn a {
    font-size: 14px;
  }
  .blog .blog__content .item .item__content .date {
    padding: 3px 12px;
  }
  .blog .blog__content .item .item__content .date span {
    font-size: 11px;
  }
  .blog .blog__content .item .item__content h3 {
    font-size: 20px;
    margin-top: 0.75rem;
  }
}
@media only screen and (max-width: 700px) {
  .blog .heading .btn a {
    font-size: 13px;
  }
  .blog .blog__content {
    grid-template-columns: 1fr;
  }
  .blog .blog__content .item img {
    height: 250px;
  }
}
.films__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 50px;
}
.films__content .item {
  width: 100%;
  display: flex;
  justify-items: start;
  align-items: start;
  flex-flow: column;
}
.films__content .item .banner {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.films__content .item .item__heading {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 10px;
  margin-top: 1rem;
  width: 100%;
}
.films__content .item .item__heading .left h3 {
  color: #fff;
  font-size: 35px;
  line-height: 1em;
  margin-bottom: 10px;
}
.films__content .item .item__heading .left h5 {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.films__content .item .item__heading .right {
  display: flex;
  justify-content: start;
  align-items: start;
}
.films__content .item .item__heading .right .category {
  width: calc(100% - 15px);
  padding: 7px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  position: relative;
}
.films__content .item .item__heading .right .category::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 9px;
  width: 9px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(15px);
}
.films__content .item .item__heading .right .category span {
  font-weight: 600;
}
.films__content .item .attributes {
  display: grid;
  grid-template-columns: 0.5fr 0.25fr 0.25fr;
  align-items: start;
  margin-top: 1rem;
  width: 100%;
}
.films__content .item .attributes.award {
  grid-template-columns: 1fr;
}
.films__content .item .attributes .item {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  align-items: center;
}
.films__content .item .attributes .item img {
  height: 25px;
  width: 25px;
}
.films__content .item .attributes .item span {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}
.films__content .item .desc {
  margin: 1rem 0;
}
.films__content .item .desc p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.films__content .item .link {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.films__content .item .link:hover svg {
  transform: translateX(5px);
}
.films__content .item .link svg {
  height: 31px;
  width: 31px;
  stroke-width: 2.5;
  transition: 0.25s ease;
}
.films__content .item .link span {
  font-weight: 600;
  font-size: 20px;
}

@media only screen and (max-width: 1550px) {
  .films__content .item .banner {
    height: 250px;
  }
  .films__content .item .item__heading {
    grid-template-columns: 65% 30%;
    gap: 5%;
  }
  .films__content .item .item__heading .left h3 {
    font-size: 25px;
  }
  .films__content .item .item__heading .left h5 {
    font-size: 14px;
  }
  .films__content .item .item__heading .right .category {
    width: calc(100% - 5px);
  }
  .films__content .item .item__heading .right .category::after {
    height: 7px;
    width: 7px;
  }
  .films__content .item .item__heading .right .category span {
    font-size: 13px;
  }
  .films__content .item .attributes {
    gap: 5px;
  }
  .films__content .item .attributes .item {
    grid-template-columns: 21px 1fr;
  }
  .films__content .item .attributes .item img {
    height: 21px;
    width: 21px;
  }
  .films__content .item .attributes .item span {
    font-size: 15px;
  }
  .films__content .item .desc p {
    font-size: 13px;
  }
  .films__content .item .link {
    grid-template-columns: 25px 1fr;
  }
  .films__content .item .link svg {
    height: 25px;
    width: 25px;
  }
  .films__content .item .link span {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1300px) {
  .films__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 900px) {
  .films__content .item .banner {
    height: 200px;
  }
  .films__content .item .item__heading {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .films__content .item .item__heading .left h3 {
    margin-bottom: 5px;
  }
  .films__content .item .item__heading .right .category {
    width: auto;
    padding: 6px 14px;
  }
  .films__content .item .attributes {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
  .films__content .item .attributes .item {
    grid-template-columns: 19px 1fr;
  }
  .films__content .item .attributes .item img {
    height: 19px;
    width: 19px;
  }
  .films__content .item .attributes .item span {
    font-size: 14px;
  }
  .films__content .item .desc p {
    font-size: 12px;
  }
  .films__content .item .link {
    grid-template-columns: 21px 1fr;
  }
  .films__content .item .link svg {
    height: 21px;
    width: 21px;
  }
  .films__content .item .link span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .films__content {
    grid-template-columns: 1fr;
  }
}
.newsletter {
  padding: 8rem 10%;
}
.newsletter .logo {
  height: 10rem;
}
.newsletter .newsletter__content {
  background: #222222;
  background: linear-gradient(126deg, rgb(34, 34, 34) 0%, rgb(0, 0, 0) 100%);
  padding: 1.5rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 70% 30%;
}
.newsletter .newsletter__content .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}
.newsletter .newsletter__content .left .icon {
  height: 200px;
}
.newsletter .newsletter__content .left .text h3 {
  font-size: 35px;
  line-height: 1.1em;
  margin-bottom: 0.75rem;
  color: #fff;
}
.newsletter .newsletter__content .left .text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.newsletter .newsletter__content .left .text p a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.25s ease;
}
.newsletter .newsletter__content .left .text p a:hover {
  color: #fff;
}
.newsletter .newsletter__content .right {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  row-gap: 10px;
  padding-left: 100px;
}
.newsletter .newsletter__content .right input {
  width: 100%;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.newsletter .newsletter__content .right .btn {
  width: 100%;
}
.newsletter .newsletter__content .right .btn a {
  background: transparent;
  color: #fff;
  font-size: 20px;
  border: 2px solid #fff;
}

@media only screen and (max-width: 1550px) {
  .newsletter {
    padding: 5rem 10%;
  }
  .newsletter .newsletter__content .left .icon {
    height: 150px;
  }
  .newsletter .newsletter__content .left .text h3 {
    font-size: 30px;
  }
  .newsletter .newsletter__content .right {
    padding-left: 50px;
  }
  .newsletter .newsletter__content .right input {
    padding: 10px 20px;
  }
  .newsletter .newsletter__content .right .btn a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .newsletter {
    padding: 5rem 10%;
  }
  .newsletter .newsletter__content {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
  .newsletter .newsletter__content .right input {
    font-size: 13px;
    padding: 10px 15px;
  }
  .newsletter .newsletter__content .right .btn a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 700px) {
  .newsletter {
    padding: 3.5rem 10%;
  }
  .newsletter .logo {
    height: 5rem;
  }
  .newsletter .newsletter__content .left {
    flex-flow: column;
    gap: 0;
  }
  .newsletter .newsletter__content .left .text h3 {
    font-size: 20px;
    text-align: center;
  }
  .newsletter .newsletter__content .left .text p {
    font-size: 13px;
    text-align: center;
  }
}
.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.filters .search-bar {
  position: relative;
  width: 300px;
  height: 50px;
}
.filters .search-bar .placeholder {
  position: absolute;
  top: 0;
  left: 5%;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.filters .search-bar .placeholder svg {
  height: 19px;
  width: 19px;
  color: #fff;
}
.filters .search-bar .placeholder span {
  color: #fff;
  font-size: 17px;
}
.filters .search-bar input {
  height: 100%;
  width: 100%;
  background: #292929;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.25s ease;
  padding: 0 5%;
  color: #fff;
}
.filters .search-bar input:focus {
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.filters .select {
  height: 50px;
  position: relative;
}
.filters .select select {
  height: 100%;
  width: auto;
  padding: 0 5%;
  background: #292929;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.25s ease;
  padding: 0 5%;
  color: #fff;
  font-size: 17px;
}
.filters .select select:focus {
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.filters .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}
.filters .right {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}

@media only screen and (max-width: 1300px) {
  .filters .search-bar {
    width: 270px;
    height: 45px;
  }
  .filters .search-bar .placeholder svg {
    height: 17px;
    width: 17px;
  }
  .filters .search-bar .placeholder span {
    font-size: 15px;
  }
  .filters .select {
    height: 45px;
  }
  .filters .select select {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .filters {
    gap: 30px;
    align-items: start;
  }
  .filters .left, .filters .right {
    flex-flow: row wrap;
    row-gap: 10px;
    width: 45%;
  }
  .filters .right {
    height: 100%;
  }
  .filters .search-bar {
    width: 100%;
  }
  .filters .select {
    width: 100%;
  }
  .filters .select select {
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  .filters {
    gap: 15px;
  }
  .filters .left, .filters .right {
    width: 47.5%;
  }
  .filters .search-bar {
    height: 40px;
  }
  .filters .search-bar .placeholder svg {
    height: 15px;
    width: 15px;
  }
  .filters .search-bar .placeholder span {
    font-size: 13px;
  }
  .filters .select select {
    height: 40px;
    font-size: 13px;
  }
}
.slider {
  padding: 5rem 7.5%;
  overflow: hidden;
}
.slider .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.slider .heading .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider .heading .buttons button {
  background: none;
  border: none;
  cursor: pointer;
}
.slider .heading .buttons button:hover {
  transform: scale(1.1);
}
.slider .heading .buttons button svg {
  height: 51px;
  width: 51px;
  stroke-width: 2.5;
}
.slider .swiper {
  width: 100%;
  height: 300px;
}
.slider .swiper .swiper-slide {
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.slider .swiper .swiper-slide:hover img {
  transform: scale(1.05);
}
.slider .swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.slider .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.25s ease;
}
.slider .swiper .swiper-slide .item__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-flow: column;
  z-index: 3;
}
.slider .swiper .swiper-slide .item__content h3 {
  font-size: 35px;
  color: #fff;
  width: 100%;
  white-space: wrap;
  line-height: 1.25em;
}

@media only screen and (max-width: 1300px) {
  .slider .heading .buttons button svg {
    height: 35px;
    width: 35px;
  }
  .slider .swiper .swiper-slide {
    width: 25vw;
    height: 300px;
  }
  .slider .swiper .swiper-slide .item__content h3 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 900px) {
  .slider {
    padding: 3.5rem 10%;
  }
  .slider .heading .buttons {
    justify-content: start;
  }
  .slider .heading .buttons button svg {
    height: 29px;
    width: 29px;
  }
  .slider .swiper .swiper-slide {
    width: 35vw;
    height: 250px;
  }
  .slider .swiper .swiper-slide .item__content h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 700px) {
  .slider .heading {
    flex-flow: column;
    align-items: start;
    gap: 10px;
    margin-bottom: 1rem;
  }
  .slider .heading .buttons {
    display: none;
  }
  .slider .swiper .swiper-slide {
    width: 45vw;
  }
  .slider .swiper .swiper-slide .item__content {
    padding: 15px;
  }
  .slider .swiper .swiper-slide .item__content h3 {
    font-size: 18px;
  }
}
.contact-form {
  display: grid;
  grid-template-columns: 0.65fr 0.35fr;
  gap: 200px;
  background: #202020;
  background: linear-gradient(180deg, rgb(32, 32, 32) 0%, rgb(12, 12, 12) 100%);
  border-radius: 25px;
}
.contact-form form {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 25px;
  padding: 50px;
}
.contact-form form input {
  padding: 0 10px 20px 10px;
  background: none;
  border: none;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 20px;
  width: 100%;
}
.contact-form form textarea {
  padding: 0 10px 20px 10px;
  background: none;
  border: none;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 20px;
  width: 100%;
  height: 10rem;
  resize: none;
}
.contact-form form input:focus, .contact-form form textarea:focus {
  border-bottom: 2px solid #fff;
  outline: none;
}
.contact-form form .btn a {
  font-size: 18px;
}
.contact-form .image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
  position: relative;
}
.contact-form .image img {
  height: 450px;
}
.contact-form .image .host {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  background: #fff;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 10px 20px;
}

@media only screen and (max-width: 1550px) {
  .contact-form {
    gap: 100px;
  }
  .contact-form .image img {
    height: 400px;
  }
}
@media only screen and (max-width: 1300px) {
  .contact-form {
    gap: 50px;
  }
  .contact-form form input {
    font-size: 17px;
  }
  .contact-form form textarea {
    font-size: 17px;
    height: 7.5rem;
  }
  .contact-form form .btn a {
    font-size: 16px;
  }
  .contact-form .image img {
    height: 290px;
  }
}
@media only screen and (max-width: 900px) {
  .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form .image .host {
    right: inherit;
    left: 0;
    top: inherit;
    bottom: 0;
  }
  .contact-form .image .host b {
    font-size: 15px;
  }
  .contact-form .image .host span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 700px) {
  .contact-form {
    border-radius: 15px;
  }
  .contact-form form {
    padding: 50px 30px;
  }
  .contact-form form input {
    font-size: 14px;
  }
  .contact-form form textarea {
    font-size: 14px;
  }
  .contact-form form .btn a {
    font-size: 13px;
  }
}
.partners {
  padding: 5rem 7.5%;
  background: #000;
}
.partners h3 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #fff;
}
.partners p {
  width: 50%;
  color: #fff;
}
.partners .partners__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  margin-top: 50px;
}
.partners .partners__content .left {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.partners .partners__content .left img {
  height: 365px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: 0.25s ease;
}
.partners .partners__content .left img:hover {
  border: 3px solid #fff;
}
.partners .partners__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.partners .partners__content .right .right__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partners .partners__content .right .right__content .item {
  width: 100%;
}
.partners .partners__content .right .right__content .item img {
  width: 100%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: 0.25s ease;
}
.partners .partners__content .right .right__content .item img:hover {
  border: 3px solid #fff;
}

@media only screen and (max-width: 1550px) {
  .partners .partners__content .left img {
    height: 325px;
  }
  .partners .partners__content .right .right__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1300px) {
  .partners p {
    font-size: 14px;
    width: 70%;
  }
  .partners h3 {
    font-size: 27px;
  }
  .partners .partners__content {
    gap: 75px;
  }
  .partners .partners__content .left img {
    height: 235px;
  }
  .partners .partners__content .right .right__content {
    gap: 10px;
  }
}
@media only screen and (max-width: 900px) {
  .partners p {
    font-size: 13px;
  }
  .partners .partners__content {
    grid-template-columns: 1fr;
  }
  .partners .partners__content .right .right__content {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 700px) {
  .partners {
    padding: 2.5rem 10%;
  }
  .partners p {
    font-size: 13px;
    width: 100%;
  }
  .partners .partners__content {
    grid-template-columns: 1fr;
  }
  .partners .partners__content .left img {
    height: inherit;
    width: 100%;
  }
  .partners .partners__content .right .right__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
#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: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.text__image {
  padding: 5rem 7.5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.text__image .text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 15px;
  padding: 2rem 0;
}
.text__image .text p {
  font-size: 20px;
}
.text__image .text ul {
  padding-left: 20px;
}
.text__image .text ul li {
  font-size: 18px;
}
.text__image .image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.text__image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 25px;
  border: 3px solid #000;
}

@media only screen and (max-width: 1550px) {
  .text__image .text p {
    font-size: 18px;
  }
  .text__image .text ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .text__image {
    padding: 2.5rem 7.5vw;
    gap: 15px;
    grid-template-columns: 1fr;
  }
  .text__image .text p {
    font-size: 16px;
  }
  .text__image .text ul {
    padding-left: 15px;
  }
  .text__image .text ul li {
    font-size: 15px;
  }
  .text__image .image {
    height: 350px;
  }
}
@media only screen and (max-width: 900px) {
  .text__image .text p {
    font-size: 14px;
  }
  .text__image .text ul li {
    font-size: 13px;
  }
  .text__image .image {
    height: 250px;
  }
}
main {
  padding: 0 20vw 5rem;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
main .image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
main .date {
  padding: 10px 20px;
  background: #000;
  margin-top: 50px;
  border-radius: 10px;
}
main .date span {
  font-size: 17px;
  color: #fff;
}
main .h2 {
  margin: 10px 0 0;
}
main .desc p {
  font-size: 20px;
  margin-top: 10px;
}
main .desc p a {
  font-weight: 600;
  color: #000;
}

@media only screen and (max-width: 700px) {
  main {
    padding: 0 5% 5rem;
  }
  main .date span {
    font-size: 13px;
  }
  main .desc p {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */