* {
  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: 0.6666666667px;
  background: #154161;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: rgb(11.9237288136, 36.906779661, 55.0762711864);
}

.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 #EEEEEE;
  background: white;
  border-radius: 2px;
  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: #154161;
  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: 2px;
  color: #154161;
  background: rgba(21, 65, 97, 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: 2px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
.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 #EEEEEE;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #154161;
  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: 2px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: #EEEEEE;
}
@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: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
}
.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: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  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: 2px;
  border: 1px solid #EEEEEE;
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid #EEEEEE;
  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 #EEEEEE;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #154161;
  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: 2px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
}

.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: #154161;
  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 #EEEEEE;
  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: #154161;
  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: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
}
.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: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 1px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #154161;
}
.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 {
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid #EEEEEE;
  border-radius: 1px;
  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.active .cms-product__item-content ul {
  margin: 15px;
}
.cms-product__item.active .cms-product__item-content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}
.cms-product__item h2 {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #EEEEEE;
  color: #154161;
  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 #EEEEEE;
  border-radius: 2px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #154161;
  background: rgba(21, 65, 97, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #154161;
  background: rgba(21, 65, 97, 0.1);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

.cms-img-content {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-img-content {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-img-content__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__container {
    width: 100%;
  }
}
.cms-img-content__item {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item {
    flex-direction: column !important;
  }
}
.cms-img-content__item:hover .cms-img-content__item-text {
  background: #154161;
  color: white;
}
.cms-img-content__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.cms-img-content__item-img {
  width: calc(50% - 5px);
  height: auto;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .cms-img-content__item-img {
    width: 100%;
  }
}
.cms-img-content__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
}
.cms-img-content__item-text {
  width: calc(50% - 5px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  font-size: 18px;
  background: rgba(21, 65, 97, 0.03);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .cms-img-content__item-text {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
}
.cms-img-content__item-text h1,
.cms-img-content__item-text h2,
.cms-img-content__item-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item-text h1,
  .cms-img-content__item-text h2,
  .cms-img-content__item-text h3 {
    font-size: 18px;
  }
}

body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #343434;
  background: #F5F5F7;
}

a {
  color: #2E353D;
  transition: color 0.3s ease;
}
a:hover {
  color: #F74545;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.button {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 5px;
  transition: all 0.3s ease;
}
.button--contact i {
  color: #F74545;
}
.button--360 {
  background: #4D606D;
  color: white;
  padding: 8px 15px;
  border-radius: 35px;
}
.button--360:hover {
  background: #F74545;
  color: white;
}
.button--360:hover i {
  color: white;
}
.button--360 i {
  color: #F74545;
  transition: all 0.3s ease;
}
.button--mobile {
  width: 45px;
  height: 45px;
  justify-content: center;
  background: #4D606D;
  color: white;
  padding: 8px 15px;
  border-radius: 35px;
  font-size: 24px;
}
.button--mobile:hover {
  background: #F74545;
  color: white;
}
.button--lang {
  background: #4D606D;
  color: white;
  padding: 8px 10px;
  border-radius: 35px;
}
.button--lang:hover {
  background: #F74545;
  color: white;
}
.button--lang:hover i {
  color: white;
}
.button--lang img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}
.button--lang i {
  color: #F74545;
}
.button--detail {
  background: #4D606D;
  color: white;
  padding: 8px 15px;
  border-radius: 35px;
}
@media (max-width: 480px) {
  .button--detail {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.button--detail:hover {
  background: #F74545;
  color: white;
}
.button--detail:hover i {
  color: white;
}
.button--detail i {
  color: #F74545;
  transition: all 0.3s ease;
}
.button--section i {
  color: #F74545;
  transition: all 0.3s ease;
}

.title-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.title-main > h5 {
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .title-main > h5 {
    font-size: 24px;
  }
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
  z-index: 99;
  background: white;
}
@media (max-width: 480px) {
  .header {
    padding: 15px;
  }
}
.header::before {
  content: "";
  width: 100%;
  height: 350px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
  display: none;
}
.header__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 100px;
  width: auto;
}
.header__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.header__menu-top {
  display: flex;
  position: relative;
  z-index: 2;
}
.header__menu-top > ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 480px) {
  .header__menu-top > ul {
    gap: 5px;
  }
}
.header__menu-top > ul > li {
  display: flex;
}
@media (max-width: 480px) {
  .header__menu-top > ul > li {
    display: none;
  }
  .header__menu-top > ul > li.lang {
    display: flex;
  }
}
.header__menu-top > ul > li.mobile-menu {
  display: none;
}
@media (max-width: 480px) {
  .header__menu-top > ul > li.mobile-menu {
    display: flex;
  }
}
.header__menu-top > ul > li.lang {
  position: relative;
}
.header__menu-top > ul > li.lang:hover .button--lang {
  background: #F74545;
  color: white;
}
.header__menu-top > ul > li.lang:hover .button--lang i {
  color: white;
}
.header__menu-top > ul > li.lang:hover .sub-menu {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  opacity: 1;
}
.header__menu-top > ul > li.lang .sub-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header__menu-top > ul > li.lang .sub-menu > ul {
  display: flex;
  flex-direction: column;
}
.header__menu-top > ul > li.lang .sub-menu > ul > li {
  display: flex;
}
.header__menu-top > ul > li.lang .sub-menu > ul > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  white-space: nowrap;
}
.header__menu-top > ul > li.lang .sub-menu > ul > li > a:hover {
  background: #F5F5F7;
}
.header__menu-top > ul > li.lang .sub-menu > ul > li > a img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}
.header__menu-main {
  display: flex;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .header__menu-main {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 15px;
    border-top: 1px solid #F0F0F0;
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .header__menu-main.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
.header__menu-main > ul {
  display: flex;
  gap: 60px;
}
@media (max-width: 480px) {
  .header__menu-main > ul {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
.header__menu-main > ul > li {
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .header__menu-main > ul > li {
    width: 100%;
  }
}
.header__menu-main > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .header__menu-main > ul > li > a {
    padding: 8px 0;
    width: 100%;
  }
}
.header__menu-main > ul > li > a i {
  color: #F74545;
}
@media (max-width: 480px) {
  .header__menu-main > ul > li > a i {
    display: none;
  }
}
.header__menu-main > ul > li:hover > a {
  color: #F74545;
}
.header__menu-main > ul > li:hover > a i {
  color: #F74545;
}
.header__menu-main > ul > li:hover .sub-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.header__menu-main > ul > li .sub-menu {
  position: absolute;
  top: 120%;
  transform: translateY(-10px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header__menu-main > ul > li .sub-menu {
    display: none;
  }
}
.header__menu-main > ul > li .sub-menu > ul {
  display: flex;
  flex-direction: column;
}
.header__menu-main > ul > li .sub-menu > ul > li {
  width: 100%;
  display: flex;
}
.header__menu-main > ul > li .sub-menu > ul > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  white-space: nowrap;
}
.header__menu-main > ul > li .sub-menu > ul > li > a:hover {
  background: #F5F5F7;
}
.header__menu-main > ul > li .sub-menu > ul > li > a img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.hero {
  width: 100%;
  display: flex;
  margin-top: -140px;
}
.hero__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.hero__slider-wrapper {
  width: 100%;
  display: flex;
}
.hero__slider-pagination {
  position: absolute;
  bottom: 30px !important;
  left: 50% !important;
  width: auto !important;
  top: initial !important;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 99;
  margin: 0 !important;
}
.hero__slider-pagination span {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: white;
  cursor: pointer;
  margin: 0 !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}
.hero__slider-pagination span.swiper-pagination-bullet-active {
  width: 35px;
  background: #F74545;
}
.hero__item {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/940;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero__item {
    min-height: 650px;
  }
}
.hero__item::before {
  content: "";
  width: 100%;
  height: 350px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(23, 82, 124, 0) 0%, rgba(23, 82, 124, 0.5019607843) 100%);
  z-index: 2;
}
.hero__item-container {
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 3;
}
.hero__item-texts {
  width: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
}
@media (max-width: 480px) {
  .hero__item-texts {
    padding: 60px 15px;
  }
}
.hero__item-texts > h2 {
  font-size: 38px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .hero__item-texts > h2 {
    font-size: 28px;
  }
}
.hero__item-texts > span {
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 480px) {
  .hero__item-texts > span {
    font-size: 16px;
  }
}
.hero__item-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}

.services {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .services {
    padding: 50px 15px;
  }
}
.services__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}
.services__wrapper {
  width: 100%;
  display: grid;
  grid-template-areas: "service1 service2 service3" "service1 service4 service5" "service6 service6 service6";
  gap: 1px;
}
@media (max-width: 480px) {
  .services__wrapper {
    grid-template-areas: "service1" "service2" "service3" "service4" "service5" "service6";
  }
}

.service {
  width: 100%;
  min-width: 350px;
  display: flex;
  align-items: flex-end;
  color: white;
  min-height: 275px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .service {
    width: 100%;
  }
}
.service::before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(23, 82, 124, 0) 0%, rgba(23, 82, 124, 0.5019607843) 100%);
  z-index: 2;
}
.service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.service__texts {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.service__texts > h2 {
  font-size: 22px;
  font-weight: 600;
  color: white;
}
.service__texts > span {
  font-weight: 300;
  color: white;
}
.service--1 {
  grid-area: service1;
}
.service--2 {
  grid-area: service2;
}
.service--3 {
  grid-area: service3;
}
.service--4 {
  grid-area: service4;
}
.service--5 {
  grid-area: service5;
}
.service--6 {
  grid-area: service6;
}

.sections {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/sections-bg.png") top center no-repeat #0C334F;
}
@media (max-width: 480px) {
  .sections {
    padding: 50px 15px;
  }
}
.sections__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .sections__container {
    flex-direction: column;
  }
}

.section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: white;
  width: 100%;
  position: relative;
  height: auto;
  aspect-ratio: 380/450;
}
.section__texts {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.section__texts > h3 {
  font-size: 28px;
  font-weight: 600;
}
.section__texts > span {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
}
.section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.blogs {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .blogs {
    padding: 50px 15px;
  }
}
.blogs__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}
.blogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .blogs__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.blog {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: white;
}
.blog__img {
  display: flex;
  width: 100%;
}
.blog__img > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.blog__texts {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.blog__texts > h3 {
  font-size: 18px;
  font-weight: 600;
}
.blog__texts > span {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}
.blog__info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.blog__info > span {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.7;
}
.blog__info > a {
  font-size: 18px;
  color: #F74545;
}

.journey {
  width: 100%;
  padding: 100px 0;
  background: #EEF1F4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 480px) {
  .journey {
    margin-bottom: 50px;
    padding: 50px 10px;
  }
}
.journey__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.journey__container > h4 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 850px;
  text-align: center;
}
@media (max-width: 480px) {
  .journey__container > h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.journey__wrapper {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
}
.journey__item {
  width: 100%;
  position: relative;
  display: flex;
  padding: 20px 0;
}
@media (max-width: 480px) {
  .journey__item {
    flex-direction: column;
  }
}
.journey__item:hover::after {
  border-color: #F74545;
  outline: 10px solid rgba(247, 69, 69, 0.1254901961);
}
.journey__item:first-child {
  padding-top: 0;
}
.journey__item:first-child::before {
  top: 10px;
}
.journey__item:first-child::after {
  top: 15px;
}
.journey__item:last-child {
  padding-bottom: 0;
}
.journey__item:last-child::before {
  height: 30px;
}
.journey__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 480px) {
  .journey__item:nth-child(even) {
    flex-direction: column;
  }
}
.journey__item:nth-child(even) .journey__item-date {
  text-align: left;
}
.journey__item:nth-child(even) .journey__item-text {
  text-align: right;
}
@media (max-width: 480px) {
  .journey__item:nth-child(even) .journey__item-text {
    text-align: left;
  }
}
.journey__item:nth-child(even) .journey__item-text > img {
  border-radius: 16px 0 16px 16px;
}
.journey__item::before {
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, #0C334F 5px, transparent 5px);
  background-size: 100% 10px;
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  opacity: 0.1;
  border-radius: 1px;
}
@media (max-width: 480px) {
  .journey__item::before {
    left: 10px;
  }
}
.journey__item::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FAF7F6;
  border: 5px solid #0C334F;
  content: "";
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translate(-50%, -50%);
  z-index: 2;
  outline: 5px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .journey__item::after {
    left: 0px;
    transform: translate(0, -50%);
  }
}
.journey__item-date {
  width: 50%;
  padding: 0 40px;
  text-align: right;
  font-size: 26px;
  font-weight: 700;
  color: #F74545;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .journey__item-date {
    width: 100%;
    text-align: left;
    padding: 0 0 0 40px;
    font-size: 18px !important;
  }
}
.journey__item-text {
  width: 50%;
  padding: 0 40px;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .journey__item-text {
    width: 100%;
    padding: 0 0 0 40px;
    font-size: 16px;
  }
}
.journey__item-text > img {
  width: 100%;
  height: auto;
  aspect-ratio: 75/50;
  border-radius: 0 16px 16px 16px;
  margin-bottom: 15px;
  object-fit: cover;
}

.sectors {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .sectors {
    padding: 50px 15px;
  }
}
.sectors__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sectors__container > h4 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 850px;
  text-align: center;
}
@media (max-width: 480px) {
  .sectors__container > h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.sectors__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .sectors__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.sectors__items {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .sectors__items {
    width: 100%;
  }
}
.sectors__items--left {
  text-align: right;
}
@media (max-width: 480px) {
  .sectors__items--left {
    text-align: left;
  }
}
.sectors__item {
  padding: 20px;
  background: white;
}
.sectors__item > h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.sectors__item > span {
  font-weight: 300;
}
.sectors__img {
  width: 460px;
  height: 580px;
  object-fit: cover;
}
.sectors__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .sectors__img {
    width: 100%;
    height: auto;
  }
}

.brands {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eef1f4;
}
@media (max-width: 480px) {
  .brands {
    padding: 50px 15px;
  }
}
.brands__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brands__wrapper {
  width: 100%;
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .brands__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.brands__item {
  display: flex;
  width: 100%;
}
.brands__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 275/130;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 15px solid #F74545;
  color: white;
}
.footer__top {
  width: 100%;
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0C334F;
}
@media (max-width: 480px) {
  .footer__top {
    padding: 50px 15px;
  }
}
.footer__top-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__top-container {
    flex-direction: column;
    gap: 50px;
  }
}
.footer__menus {
  display: flex;
  gap: 120px;
}
@media (max-width: 480px) {
  .footer__menus {
    flex-direction: column;
    gap: 50px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__menu > h5 {
  font-size: 20px;
  font-weight: 600;
}
.footer__menu > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu > ul > li {
  display: flex;
}
.footer__menu > ul > li > a {
  color: white;
  font-weight: 300;
}
.footer__menu > ul > li > a:hover {
  color: #F74545;
}
.footer__contact {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}
.footer__contact-item {
  display: flex;
}
.footer__contact > a {
  color: white;
}
.footer__contact > a:hover {
  color: #F74545;
}
.footer__social {
  display: flex;
  gap: 15px;
}
.footer__social li {
  display: flex;
}
.footer__social li a {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1254901961);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}
.footer__social li a:hover {
  border-color: #F74545;
  color: #F74545;
}
.footer__bottom {
  width: 100%;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #072236;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 480px) {
  .footer__bottom {
    padding: 30px 15px;
  }
}
.footer__bottom-container {
  width: 100%;
  max-width: 600px;
}
.footer__bottom-container p:last-child {
  margin-bottom: 0;
}
.footer__bottom-container a {
  color: #F74545;
}
.footer__bottom-container a:hover {
  text-decoration: underline;
}

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