@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,200;1,300;1,400;1,500&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}

.place-items-start {
  place-items: start;
}
.place-items-end {
  place-items: end;
}
.place-items-center {
  place-items: center;
}
.place-items-baseline {
  place-items: baseline;
}
.place-items-stretch {
  place-items: stretch;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.cms-button {
  padding: 10px 20px;
  border: none;
  border-radius: 3.3333333333px;
  background: #133575;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: #0c2149;
}

.cms-title {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 480px) {
  .cms-title {
    padding: 50px 15px;
  }
}
.cms-title__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cms-title__container h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-title__container h1 {
    font-size: 28px;
  }
}
.cms-title__container span {
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-title__container span {
    font-size: 14px;
  }
}

.cms-category {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-category {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-category__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__container {
    width: 100%;
  }
}
.cms-category__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .cms-category__wrapper.mobile-1cols {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cms-team {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-team {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-team__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__container {
    width: 100%;
  }
}
.cms-team__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cms-contact {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-contact {
    padding: 20px 15px;
  }
}
.cms-contact__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .cms-contact__container {
    width: 100%;
  }
}
.cms-contact__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 50px 0 50px;
  gap: 60px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 30px;
    margin-top: 20px;
  }
}
.cms-contact__wrapper-text {
  display: flex;
  flex-direction: column;
}
.cms-contact__wrapper-text h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h1 {
    font-size: 24px;
  }
}
.cms-contact__wrapper-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h4 {
    font-size: 18px;
  }
}
.cms-contact__wrapper-form {
  padding: 40px;
  border: 1px solid #eee;
  background: white;
  border-radius: 10px;
  width: 650px;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-form {
    width: 100%;
    margin-top: 0px;
    padding: 20px;
  }
}
.cms-contact__wrapper-form > h3 {
  font-size: 26px;
  font-weight: 600;
}
.cms-contact__wrapper-form > button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #133575;
  color: white;
}
.cms-contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.cms-contact__items > li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cms-contact__items > li i {
  width: 65px;
  height: 65px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #133575;
  background: rgba(19, 53, 117, 0.1);
  flex-shrink: 0;
  font-size: 30px;
}
.cms-contact__items > li div {
  display: flex;
  flex-direction: column;
}
.cms-contact__items > li div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__social {
  display: flex;
  gap: 15px;
}
.cms-contact__social li {
  display: flex;
}
.cms-contact__social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white !important;
  transition: all 0.3s ease;
}
.cms-contact__social a.uil-facebook-f {
  background: #3b5998;
}
.cms-contact__social a.uil-instagram {
  background: #e4405f;
}
.cms-contact__social a.uil-youtube {
  background: #cd201f;
}
.cms-contact__social a.uil-twitter-alt {
  background: #55acee;
}
.cms-contact__social a.fa-x-twitter {
  background: #262829;
}
.cms-contact__social a.uil-linkedin-alt {
  background: #0077b5;
}
.cms-contact__social a:hover {
  transform: scale(1.1);
}
.cms-contact__map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 10px;
  overflow: hidden;
}
.cms-contact__form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-contact__form-row label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__form-row input, .cms-contact__form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #133575;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-contact__form-row textarea {
  height: 150px;
  resize: none;
}

.cms-page {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-page {
    padding: 20px 15px;
  }
}
.cms-page__container {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-page__container {
    width: 100%;
  }
}
.cms-page__container svg.not-found {
  max-height: 450px;
}
.cms-page__title {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-page__title h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}
.cms-page__title span {
  font-size: 18px;
  font-weight: 300;
}
.cms-page__title span img {
  max-width: 100% !important;
  height: auto !important;
}
.cms-page__img {
  width: calc(100% + 170px);
  margin-left: -85px;
  border-radius: 10px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: #eee;
}
@media (max-width: 480px) {
  .cms-page__img {
    width: 100%;
    margin-left: 0px;
  }
}
.cms-page__content {
  width: 100%;
  line-height: 1.5;
}
.cms-page__content img {
  max-width: 100% !important;
  height: auto !important;
}

.cms-post {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-post__img {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}
.cms-post__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 10px;
}
.cms-post__category {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cms-post__category:hover {
  opacity: 1;
}
.cms-post > h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-post > h2 {
    font-size: 16px;
  }
}
.cms-user {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-user img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 13/16;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
}
.cms-user > h2 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-user > h2 {
    font-size: 16px;
  }
}
.cms-user > span {
  font-weight: 300;
  font-size: 14px;
}

.cms-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #eee;
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  font-size: 14px;
  gap: 10px;
  align-items: center;
}
.cms-comment__header span {
  font-weight: 700;
}
.cms-comment__text {
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 480px) {
  .cms-comment__text {
    font-size: 16px;
    padding: 15px;
  }
}

.cms-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cms-pagination a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #eee;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #133575;
  color: white;
  border: none;
  opacity: 1;
}

.cms-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cms-gallery__item {
  display: flex;
}
.cms-gallery__item img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: #eee;
  border: 1px solid #eee;
}

.cms-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.cms-form h2 {
  font-size: 24px;
  font-weight: 600;
}
.cms-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #133575;
  color: white;
}
.cms-form__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-form__item label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-form__item input, .cms-form__item textarea, .cms-form__item select {
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-form__item input:focus, .cms-form__item textarea:focus, .cms-form__item select:focus {
  border-color: #133575;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-form__item input:required, .cms-form__item textarea:required, .cms-form__item select:required {
  border-left: 2px solid #cd201f;
}
.cms-form__item textarea {
  height: 150px;
  resize: none;
}

.cms-product {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-product {
    padding: 20px 15px;
  }
}
.cms-product__container {
  width: 1200px;
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .cms-product__container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.cms-product__gallery {
  width: 610px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 15px;
  align-self: flex-start;
  position: sticky;
  top: 150px;
}
@media (max-width: 480px) {
  .cms-product__gallery {
    width: 100%;
    position: relative;
    top: 0px;
  }
}
.cms-product__top {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__top-wrapper {
  display: flex;
}
.cms-product__top-img {
  display: flex;
  width: 100%;
}
.cms-product__top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 10px;
}
.cms-product__bottom {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__bottom-wrapper {
  display: flex;
}
.cms-product__bottom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #133575;
}
.cms-product__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cms-product__content h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-product__content h1 {
    font-size: 28px;
  }
}
.cms-product__content-description {
  font-size: 18px;
  font-weight: 300;
}
.cms-product__content-description p:last-child {
  margin-bottom: 0px;
}
.cms-product__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}
.cms-product__item.active h2 i {
  transform: rotate(180deg);
}
.cms-product__item.active .cms-product__item-content {
  max-height: 1000px;
  padding: 20px;
  line-height: 1.5;
}
.cms-product__item.active .cms-product__item-content h1 {
  font-size: 24px;
  font-weight: 600;
}
.cms-product__item.active .cms-product__item-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content h3, .cms-product__item.active .cms-product__item-content h4, .cms-product__item.active .cms-product__item-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item h2 {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  color: #133575;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cms-product__item h2 i {
  transition: all 0.3s ease;
}
.cms-product__item-content {
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cms-catalogs {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-catalogs {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-catalogs__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__container {
    width: 100%;
  }
}
.cms-catalogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__wrapper {
    grid-template-columns: 1fr;
  }
}

.cms-catalog {
  display: flex;
  width: 100%;
  border: 1px solid rgba(238, 238, 238, 0.1019607843);
  border-radius: 10px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #133575;
  background: rgba(19, 53, 117, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #133575;
  background: rgba(19, 53, 117, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

body {
  font-size: 18px;
  font-family: "Saira", sans-serif;
  min-width: 1200px;
  color: #2D2D2D;
  background: white;
}
@media (max-width: 480px) {
  body {
    min-width: 100%;
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  body {
    min-width: 100%;
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    min-width: 100%;
    font-size: 16px;
  }
}

a {
  color: #292929;
  transition: color 0.3s ease;
}
a:hover {
  color: #76e5df;
}

p {
  margin-bottom: 15px;
}

@keyframes fly {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.button svg {
  max-height: 24px;
  max-width: 16px;
}
.button--detail-white {
  color: white;
}
.button--detail-white:hover span {
  opacity: 1;
  color: white;
}
.button--detail-white span {
  transition: all 0.3s ease;
  opacity: 0.5;
}
.button--detail {
  color: #151D29;
}
.button--detail span {
  opacity: 0.5;
}
.button--ghost {
  padding: 10px 20px;
  border: 1px solid rgba(21, 29, 41, 0.1019607843);
  border-radius: 50px;
}
.button--ghost:hover {
  background: #151D29;
  color: white;
}
.button--ghost:hover path {
  fill: white;
}
.button--ghost-white {
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  color: white;
  border-radius: 50px;
}
.button--ghost-white:hover {
  background: #76e5df;
  color: #151D29;
}
.button--ghost-white:hover path {
  fill: #151D29;
}
.button--main-red {
  padding: 10px 20px;
  background: #76e5df;
  color: #151D29;
  border-radius: 50px;
}
.button--main-red path {
  fill: #151D29;
}
.button--main-red:hover {
  background: white;
  color: #151D29;
}

.title-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-main h5 {
  font-size: 28px;
  font-weight: 500;
  color: #133575;
}
@media (max-width: 480px) {
  .title-main h5 {
    font-size: 18px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-main h5 {
    font-size: 18px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-main h5 {
    font-size: 18px;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151D29;
  color: white;
  position: relative;
  z-index: 9;
}
.header__container {
  width: 100%;
  max-width: 1340px;
  padding: 0 25px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__container {
    padding: 15px;
    height: 65px;
  }
}
.header__container nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 480px) {
  .header__container nav {
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container nav {
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container nav {
    gap: 20px;
  }
}
.header__menu {
  display: flex;
  gap: 45px;
}
@media (max-width: 480px) {
  .header__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: 65px;
    background: white;
    padding: 20px 15px;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.031372549);
    gap: 0px;
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: 65px;
    background: white;
    padding: 20px 15px;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.031372549);
    gap: 0px;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0px;
    top: 65px;
    background: white;
    padding: 20px 15px;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.031372549);
    gap: 0px;
    width: 100%;
  }
}
.header__menu > li {
  display: flex;
  position: relative;
}
.header__menu > li > a {
  height: 95px;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
@media (max-width: 480px) {
  .header__menu > li > a {
    height: auto;
    width: 100%;
    color: #133575;
    padding: 5px 0;
    border-bottom: 1px solid rgba(244, 244, 244, 0.9294117647);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__menu > li > a {
    height: auto;
    width: 100%;
    color: #133575;
    padding: 5px 0;
    border-bottom: 1px solid rgba(244, 244, 244, 0.9294117647);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__menu > li > a {
    height: auto;
    width: 100%;
    color: #133575;
    padding: 5px 0;
    border-bottom: 1px solid rgba(244, 244, 244, 0.9294117647);
  }
}
.header__menu > li > a:hover::before {
  height: 25px;
}
.header__menu > li > a i {
  font-size: 16px;
  color: #76e5df;
}
@media (max-width: 480px) {
  .header__menu > li > a i {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__menu > li > a i {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__menu > li > a i {
    display: none;
  }
}
.header__menu > li > a::before {
  position: absolute;
  width: 100%;
  height: 0px;
  background: #76e5df;
  content: "";
  top: 0px;
  left: 0px;
  border-radius: 0 0 3px 3px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header__menu > li > a::before {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__menu > li > a::before {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__menu > li > a::before {
    display: none;
  }
}
.header__menu > li .sub-menu {
  position: absolute;
  left: 0px;
  top: 65px;
  display: none;
  font-size: 16px;
}
@media (max-width: 480px) {
  .header__menu > li .sub-menu {
    display: none !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__menu > li .sub-menu {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__menu > li .sub-menu {
    display: none !important;
  }
}
.header__menu > li .sub-menu ul {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  gap: 10px;
}
.header__menu > li:hover > a::before {
  height: 25px;
}
.header__menu > li:hover .sub-menu {
  display: block;
}
.header__lang {
  display: flex;
  gap: 5px;
  font-size: 16px;
  text-transform: uppercase;
}
.header__lang li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__lang li:first-child:after {
  content: "/";
  opacity: 0.5;
}
.header__lang a {
  font-weight: 300;
  color: white;
}
.header__lang a:hover {
  color: #76e5df;
}
.header__lang a.active {
  font-weight: 600;
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 45px;
}
@media (max-width: 480px) {
  .header__logo img {
    height: 35px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__logo img {
    height: 35px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__logo img {
    height: 35px;
  }
}
.header__mobile-menu {
  display: none;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #76e5df;
  color: #151D29;
  border-radius: 10px;
  font-size: 24px;
}
@media (max-width: 480px) {
  .header__mobile-menu {
    display: flex;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__mobile-menu {
    display: flex;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__mobile-menu {
    display: flex;
  }
}

.hero {
  margin-top: -95px;
  background: #151D29;
  color: white;
  position: relative;
}
@media (max-width: 480px) {
  .hero {
    margin-top: -65px;
  }
}
.hero__slider {
  display: flex;
  overflow: hidden;
}
.hero__slider-wrapper {
  width: 100%;
  display: flex;
}
.hero__item {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 600px;
  min-width: 1200px;
}
@media (max-width: 480px) {
  .hero__item {
    min-width: 100%;
    min-height: 500px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item {
    min-width: 100%;
    min-height: 500px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item {
    min-width: 100%;
    min-height: 500px;
  }
}
.hero__item-container {
  width: 1200px;
  display: flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .hero__item-container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item-container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item-container {
    width: 100%;
  }
}
.hero__item-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .hero__item-text {
    padding: 0 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item-text {
    padding: 0 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item-text {
    padding: 0 15px;
  }
}
.hero__item-text h2 {
  font-size: 32px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .hero__item-text h2 {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item-text h2 {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item-text h2 {
    font-size: 28px;
  }
}
.hero__item > img {
  width: 100%;
  height: 100%;
  position: absolute;
}
.hero__item > img.desktop {
  display: block;
}
@media (max-width: 480px) {
  .hero__item > img.desktop {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item > img.desktop {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item > img.desktop {
    display: none;
  }
}
.hero__item > img.mobile {
  display: none;
}
@media (max-width: 480px) {
  .hero__item > img.mobile {
    display: block;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item > img.mobile {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item > img.mobile {
    display: block;
  }
}
.hero__item > video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  opacity: 0.3;
}
.hero__pagination {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 9;
  width: max-content !important;
  left: 50% !important;
  bottom: 30px !important;
}
.hero__pagination span {
  width: 15px;
  height: 15px;
  background: white;
  transition: width 0.3s ease;
  margin: 0 !important;
  border-radius: 15px !important;
}
.hero__pagination span.swiper-pagination-bullet-active {
  width: 35px;
}

.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: rgba(244, 244, 244, 0.9294117647);
}
@media (max-width: 480px) {
  .partners {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .partners {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .partners {
    padding: 50px 15px;
  }
}
.partners__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1200px;
}
@media (max-width: 480px) {
  .partners__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .partners__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .partners__container {
    width: 100%;
  }
}
.partners__wrapper {
  display: flex;
  position: relative;
  width: 100%;
}
.partners__slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.partners__slider-wrapper {
  display: flex;
  width: 100%;
}
.partners__arrow {
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .partners__arrow {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .partners__arrow {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .partners__arrow {
    display: none;
  }
}
.partners__arrow:hover {
  opacity: 1;
}
.partners__arrow--left {
  left: -40px;
}
.partners__arrow--left:hover {
  padding-right: 5px;
  left: -45px;
}
.partners__arrow--right {
  right: -40px;
}
.partners__arrow--right:hover {
  padding-left: 5px;
  right: -45px;
}

.partner {
  display: flex;
  border: 1px solid #eee;
}
.partner img {
  width: 100%;
  height: auto;
  aspect-ratio: 28/16;
  background: white;
  aspect-ratio: cover;
}

.sectors {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
@media (max-width: 480px) {
  .sectors {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .sectors {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sectors {
    padding: 50px 15px;
  }
}
.sectors__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1200px;
}
@media (max-width: 480px) {
  .sectors__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .sectors__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sectors__container {
    width: 100%;
  }
}
.sectors__wrapper {
  display: flex;
  position: relative;
  width: 100%;
}
.sectors__slider {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.sectors__slider-wrapper {
  display: flex;
  width: 100%;
}
.sectors__arrow {
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .sectors__arrow {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .sectors__arrow {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sectors__arrow {
    display: none;
  }
}
.sectors__arrow:hover {
  opacity: 1;
}
.sectors__arrow--left {
  left: -40px;
}
.sectors__arrow--left:hover {
  padding-right: 5px;
  left: -45px;
}
.sectors__arrow--right {
  right: -40px;
}
.sectors__arrow--right:hover {
  padding-left: 5px;
  right: -45px;
}

.sector {
  display: flex;
  flex-direction: column;
}
.sector__img {
  display: flex;
  margin-bottom: 10px;
}
.sector__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border: 1px solid rgba(21, 29, 41, 0.1019607843);
}
.sector h3 {
  font-size: 22px;
  font-weight: 600;
}
.sector h3 a {
  color: #133575;
}
.sector h3 a:hover {
  color: #76e5df;
}
.sector > span {
  font-size: 18px;
  font-weight: 300;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 480px) {
  .about {
    padding-bottom: 0px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about {
    padding-bottom: 0px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding-bottom: 0px;
  }
}
.about__container {
  width: 1200px;
  padding-left: 480px;
  display: flex;
  gap: 100px;
  position: relative;
}
@media (max-width: 480px) {
  .about__container {
    width: 100%;
    padding-left: 0px;
    flex-direction: column;
    gap: 0px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__container {
    width: 100%;
    padding-left: 0px;
    flex-direction: column;
    gap: 0px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__container {
    width: 100%;
    padding-left: 0px;
    flex-direction: column;
    gap: 0px;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .about__text {
    order: 1;
    padding: 50px 15px;
    background: rgba(244, 244, 244, 0.9294117647);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__text {
    order: 1;
    padding: 50px 15px;
    background: rgba(244, 244, 244, 0.9294117647);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__text {
    order: 1;
    padding: 50px 15px;
    background: rgba(244, 244, 244, 0.9294117647);
  }
}
.about__text > h2 {
  font-size: 32px;
  color: #133575;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .about__text > h2 {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__text > h2 {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__text > h2 {
    font-size: 22px;
  }
}
.about__text-description {
  font-weight: 300;
}

.title-products {
  width: 380px;
  height: calc(100% + 200px);
  position: absolute;
  left: 0px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  color: white;
  background: #133575;
  overflow: hidden;
}
@media (max-width: 480px) {
  .title-products {
    position: relative;
    height: 400px;
    order: 2;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .title-products {
    width: 100%;
  }
}
@media (max-width: 480px) and (min-width: 481px) and (max-width: 768px) {
  .title-products {
    width: 100%;
  }
}
@media (max-width: 480px) and (min-width: 769px) and (max-width: 1024px) {
  .title-products {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-products {
    position: relative;
    height: 400px;
    order: 2;
  }
}
@media (min-width: 481px) and (max-width: 768px) and (max-width: 480px) {
  .title-products {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) and (min-width: 481px) and (max-width: 768px) {
  .title-products {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) and (min-width: 769px) and (max-width: 1024px) {
  .title-products {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-products {
    position: relative;
    height: 400px;
    order: 2;
  }
}
@media (min-width: 769px) and (max-width: 1024px) and (max-width: 480px) {
  .title-products {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) and (min-width: 481px) and (max-width: 768px) {
  .title-products {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) and (min-width: 769px) and (max-width: 1024px) {
  .title-products {
    width: 100%;
  }
}
.title-products::before {
  width: 200%;
  height: 50px;
  content: "";
  background: #0D2757;
  position: absolute;
  transform: rotate(135deg);
  bottom: 0px;
  right: -50%;
  pointer-events: none;
}
@media (max-width: 480px) {
  .title-products::before {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-products::before {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-products::before {
    display: none;
  }
}
.title-products::after {
  width: 200%;
  height: 50px;
  content: "";
  background: #0D2757;
  position: absolute;
  transform: rotate(135deg);
  bottom: -20%;
  right: -50%;
  pointer-events: none;
}
@media (max-width: 480px) {
  .title-products::after {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title-products::after {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title-products::after {
    display: none;
  }
}
.title-products__container {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.title-products__container span:first-child {
  font-weight: 300;
  opacity: 0.5;
}
.title-products__container span:last-child {
  font-size: 30px;
  font-weight: 600;
}
.title-products__container span:last-child strong {
  color: #76e5df;
}
.title-products svg {
  position: absolute;
  bottom: 30px;
  left: 30px;
  animation: fly 2s infinite;
}

.products {
  background: url("../images/products-bg.png") top center #151D29 no-repeat;
  padding: 130px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 480px) {
  .products {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products {
    padding: 50px 15px;
  }
}
.products__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .products__container {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__container {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__container {
    width: 100%;
  }
}
.products__wrapper {
  display: flex;
  position: relative;
  width: 100%;
}
.products__slider {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.products__slider-wrapper {
  display: flex;
  width: 100%;
}
.products__info {
  display: flex;
  position: relative;
}
.products__info-img {
  position: absolute;
  left: 0px;
  top: 30px;
  width: 380px;
  height: calc(100% + 170px);
}
@media (max-width: 480px) {
  .products__info-img {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__info-img {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__info-img {
    display: none;
  }
}
.products__info-img img {
  position: absolute;
  right: 0px;
  top: -20px;
}
.products__info-wrapper {
  padding: 100px 0 0 480px;
  color: white;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .products__info-wrapper {
    padding: 50px 0 0 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__info-wrapper {
    padding: 50px 0 0 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__info-wrapper {
    padding: 50px 0 0 0;
  }
}
.products__info-wrapper > h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .products__info-wrapper > h3 {
    font-size: 22px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__info-wrapper > h3 {
    font-size: 22px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__info-wrapper > h3 {
    font-size: 22px;
  }
}
.products__info-wrapper > span {
  font-weight: 300;
  margin-bottom: 20px;
}
.products__arrow {
  color: white;
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .products__arrow {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__arrow {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__arrow {
    display: none;
  }
}
.products__arrow:hover {
  opacity: 1;
}
.products__arrow--left {
  left: -40px;
}
.products__arrow--left:hover {
  padding-right: 5px;
  left: -45px;
}
.products__arrow--right {
  right: -40px;
}
.products__arrow--right:hover {
  padding-left: 5px;
  right: -45px;
}

.product {
  display: flex;
  flex-direction: column;
  background: white;
}
.product__text {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.product__text > h3 {
  font-size: 28px;
  font-weight: 600;
}
.product__text > h3 a {
  color: #133575;
}
.product__text > h3 a:hover {
  color: #76e5df;
}
.product__text > span {
  font-weight: 300;
  margin-bottom: 10px;
}
.product__img {
  display: flex;
}
.product__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-bottom: 1px solid rgba(21, 29, 41, 0.1019607843);
}

.slogans {
  padding: 130px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .slogans {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans {
    padding: 50px 15px;
  }
}
.slogans__container {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .slogans__container {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .slogans__container {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .slogans__container {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.slogan {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(21, 29, 41, 0.1019607843);
  transition: all 0.3s ease;
}
.slogan:hover {
  border: 1px solid #151D29;
}
.slogan > h6 {
  font-size: 22px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 30px;
}
.slogan > img {
  width: auto;
  height: 100px;
  margin-bottom: 30px;
}
.slogan > h5 {
  font-size: 28px;
  font-weight: 600;
  color: #133575;
  margin-bottom: 5px;
}
.slogan > span {
  font-weight: 300;
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer__nav {
  background: #151D29;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
@media (max-width: 480px) {
  .footer__nav {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__nav {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__nav {
    padding: 50px 15px;
  }
}
.footer__nav-container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 480px) {
  .footer__nav-container {
    width: 100%;
    gap: 50px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__nav-container {
    width: 100%;
    gap: 50px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__nav-container {
    width: 100%;
    gap: 50px;
  }
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__top {
    justify-content: center;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top {
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top {
    justify-content: center;
  }
}
.footer__top-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 480px) {
  .footer__top-left {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top-left {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top-left {
    display: none;
  }
}
.footer__top-lang {
  display: flex;
  gap: 5px;
  font-size: 16px;
  text-transform: uppercase;
}
.footer__top-lang li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__top-lang li:first-child:after {
  content: "/";
  opacity: 0.5;
}
.footer__top-lang a {
  font-weight: 300;
  color: white;
}
.footer__top-lang a:hover {
  color: #76e5df;
}
.footer__top-lang a.active {
  font-weight: 600;
}
.footer__top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 480px) {
  .footer__top-right .button--main-red {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top-right .button--main-red {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top-right .button--main-red {
    display: none;
  }
}
.footer__social {
  display: flex;
  gap: 15px;
}
.footer__social li {
  display: flex;
}
.footer__social a {
  display: flex;
}
.footer__social a i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  transition: all 0.3s ease;
}
.footer__social a i:hover {
  background: white;
  color: #151D29;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__bottom {
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__bottom {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__menu {
  display: flex;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__menu ul li {
  display: flex;
}
.footer__menu ul a {
  color: white;
}
.footer__menu ul a:hover {
  color: #76e5df;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  width: 330px;
  gap: 5px;
}
@media (max-width: 480px) {
  .footer__contact {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__contact {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__contact-address {
  display: flex;
  flex-direction: column;
}
.footer__contact-address > span {
  font-weight: 300;
}
.footer__contact-address > strong {
  font-weight: 600;
  margin-bottom: 15px;
}
.footer__contact > a {
  color: white;
}
.footer__contact > a:hover {
  color: #76e5df;
}
.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  font-size: 16px;
}
@media (max-width: 480px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__copyright {
    padding: 30px 15px;
  }
}
.footer__copyright-container {
  max-width: 600px;
  text-align: center;
  font-weight: 300;
}
.footer__copyright-container p {
  margin-bottom: 10px;
}
.footer__copyright-container p:last-child {
  margin-bottom: 0;
}
.footer__copyright-container a {
  color: #76e5df;
  font-weight: 600;
}
.footer__copyright-container a:hover {
  color: #151D29;
}

/*# sourceMappingURL=main.css.map */
