@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&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: #005cb9;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: rgb(0, 66.6378378378, 134);
}

.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: 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: #005cb9;
  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: #005cb9;
  background: rgba(0, 92, 185, 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;
}
@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: #005cb9;
  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: #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: 31/27;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  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: #EEEEEE;
  border: 1px solid #EEEEEE;
  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 #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: #005cb9;
  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: #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: #005cb9;
  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: #005cb9;
  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: 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: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #005cb9;
}
.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 #EEEEEE;
  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.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: #005cb9;
  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: 10px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #005cb9;
  background: rgba(0, 92, 185, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #005cb9;
  background: rgba(0, 92, 185, 0.1);
  border-radius: 5px;
  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: #005cb9;
  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: 10px;
}
.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(0, 92, 185, 0.03);
  border-radius: 10px;
  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;
  }
}

/*
font-family: 'Chakra Petch', sans-serif;
font-family: 'Poppins', sans-serif;
*/
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #141D25;
}

a {
  color: #141D25;
  transition: color 0.3s ease;
}
a:hover {
  color: #005CB9;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Chakra Petch", sans-serif;
}

.catalog {
  max-width: 325px;
  display: flex;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.062745098);
  border-radius: 8px;
  border: 1px solid #EEEEEE;
}
@media (max-width: 480px) {
  .catalog {
    max-width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .catalog {
    max-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .catalog {
    max-width: 100%;
  }
}
.catalog > i {
  font-size: 46px;
  color: #005CB9;
}
.catalog__wrapper {
  display: flex;
  flex-direction: column;
}
.catalog__wrapper span:first-child {
  font-size: 22px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
}
.catalog__wrapper span:last-child {
  font-size: 14px;
  font-weight: 300;
}

.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.title__container {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 480px) {
  .title__container {
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title__container {
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title__container {
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.title__container > h6 {
  font-size: 54px;
  font-weight: 700;
  font-family: "Chakra Petch", sans-serif;
}
@media (max-width: 480px) {
  .title__container > h6 {
    font-size: 36px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title__container > h6 {
    font-size: 36px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title__container > h6 {
    font-size: 36px;
  }
}
.title__container > span {
  opacity: 0.6;
  max-width: 320px;
}
@media (max-width: 480px) {
  .title__container > span {
    max-width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .title__container > span {
    max-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .title__container > span {
    max-width: 100%;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Chakra Petch", sans-serif;
  position: relative;
  z-index: 999;
  background: #11181e;
}
.header__container {
  width: 100%;
  max-width: 1360px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__container {
    padding: 15px;
  }
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 55px;
  filter: grayscale(100) brightness(100);
}
@media (max-width: 480px) {
  .header__logo img {
    height: 40px;
  }
}
.header__nav {
  width: 100%;
  max-width: 640px;
  display: flex;
}
@media (max-width: 480px) {
  .header__nav {
    display: none;
    position: absolute;
    left: 0px;
    top: 75px;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    left: 0px;
    top: 75px;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav {
    display: none;
    position: absolute;
    left: 0px;
    top: 75px;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
}
.header__nav > ul {
  display: flex;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .header__nav > ul {
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul {
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul {
    flex-direction: column;
    gap: 15px;
  }
}
.header__nav > ul > li {
  display: flex;
  position: relative;
}
.header__nav > ul > li:hover .sub-menu {
  display: block;
}
.header__nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  color: #FFFFFF;
  font-size: 18px;
}
@media (max-width: 480px) {
  .header__nav > ul > li > a {
    width: 100%;
    font-size: 16px;
    color: #141D25;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul > li > a {
    width: 100%;
    font-size: 16px;
    color: #141D25;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul > li > a {
    width: 100%;
    font-size: 16px;
    color: #141D25;
  }
}
.header__nav > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 5px;
  border-radius: 5px;
  background: #FFC700;
  width: 0%;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header__nav > ul > li > a::before {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul > li > a::before {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul > li > a::before {
    display: none;
  }
}
.header__nav > ul > li > a:hover::before {
  width: 65%;
}
.header__nav > ul > li > a > i {
  font-size: 14px;
  opacity: 0.5;
}
@media (max-width: 480px) {
  .header__nav > ul > li > a > i {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul > li > a > i {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul > li > a > i {
    display: none;
  }
}
.header__nav > ul > li .sub-menu {
  width: 300px;
  display: none;
  position: absolute;
  top: 25px;
  padding-top: 10px;
  left: 0;
}
@media (max-width: 480px) {
  .header__nav > ul > li .sub-menu {
    display: none !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__nav > ul > li .sub-menu {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav > ul > li .sub-menu {
    display: none !important;
  }
}
.header__nav > ul > li .sub-menu ul {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}
.header__lang {
  display: flex;
  font-size: 18px;
  gap: 10px;
  text-transform: uppercase;
}
.header__lang li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header__lang li::before {
  display: none;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #FFFFFF;
}
.header__lang li:first-child::before {
  display: none;
}
.header__lang li a.active {
  font-weight: 700;
}
.header__lang a {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header__lang a img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.header__mobile-menu {
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  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 {
  width: 100%;
  margin-top: -115px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero::before {
  width: 100%;
  height: 255px;
  position: absolute;
  z-index: 2;
  content: "";
  background: linear-gradient(180deg, #141D25 0%, rgba(20, 29, 37, 0) 100%);
  top: 0px;
  left: 0px;
  pointer-events: none;
}
.hero__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero__slider-wrapper {
  width: 100%;
  display: flex;
}
.hero__slider-slide {
  width: 100%;
  display: flex;
  position: relative;
}
.hero__slider-slide img {
  width: 100%;
  min-height: 600px;
  aspect-ratio: 1920/1200;
  object-fit: cover;
}
@media (max-width: 480px) {
  .hero__slider-slide img {
    height: auto;
    min-height: initial;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__slider-slide img {
    height: auto;
    min-height: initial;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__slider-slide img {
    height: auto;
    min-height: initial;
    aspect-ratio: 1/1;
  }
}
.hero__slider-slide video {
  width: 100%;
  min-height: 600px;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 480px) {
  .hero__slider-slide video {
    height: auto;
    min-height: initial;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__slider-slide video {
    height: auto;
    min-height: initial;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__slider-slide video {
    height: auto;
    min-height: initial;
    aspect-ratio: 1/1;
  }
}
.hero__slider-slide span {
  font-family: "Chakra Petch", sans-serif;
  position: absolute;
  bottom: 50px;
  right: 50px;
  font-size: 4vw;
  font-weight: 700;
  color: #FFFFFF;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
@media (max-width: 480px) {
  .hero__slider-slide span {
    bottom: 30px;
    right: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__slider-slide span {
    bottom: 30px;
    right: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__slider-slide span {
    bottom: 30px;
    right: 30px;
  }
}
.hero__pagination {
  width: auto !important;
  position: absolute;
  left: 50px !important;
  bottom: 50px !important;
  display: flex;
  gap: 10px;
  z-index: 99;
}
@media (max-width: 480px) {
  .hero__pagination {
    left: 30px !important;
    bottom: 30px !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__pagination {
    left: 30px !important;
    bottom: 30px !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__pagination {
    left: 30px !important;
    bottom: 30px !important;
  }
}
.hero__pagination span {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: #FFFFFF;
  opacity: 1;
  cursor: pointer;
  margin: 0px !important;
  transition: all 0.3s ease;
}
.hero__pagination span.swiper-pagination-bullet-active {
  width: 45px;
  background: #FFC700;
}

.products {
  display: flex;
  align-items: center;
  justify-content: center;
}
.products__container {
  width: 100%;
  max-width: 1360px;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .products__container {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .products__container {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products__container {
    padding: 50px 15px;
  }
}
.products__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.products__slider-wrapper {
  width: 100%;
  display: flex;
}
.products__pagination {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 99;
  position: relative !important;
  bottom: initial !important;
  top: initial !important;
  left: initial !important;
  right: initial !important;
  margin-top: 30px;
}
.products__pagination span {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: #141D25;
  opacity: 1;
  cursor: pointer;
  margin: 0px !important;
  transition: all 0.3s ease;
}
.products__pagination span.swiper-pagination-bullet-active {
  width: 45px;
  background: #FFC700;
}

.product {
  width: 100%;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product__img {
  display: flex;
  border-bottom: 1px solid #EEEEEE;
}
.product__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 31/27;
  object-fit: contain;
}
.product__text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Chakra Petch", sans-serif;
}
.product__text h2 {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.6;
}
.product__text h3 {
  font-size: 18px;
  font-weight: 700;
}

.experience {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F7F8;
}
.experience__container {
  width: 100%;
  max-width: 1360px;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .experience__container {
    padding: 50px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .experience__container {
    padding: 50px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .experience__container {
    padding: 50px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.experience__container > h6 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 86px;
  font-weight: 700;
  -webkit-text-stroke: 1px #005CB9;
  color: transparent;
}
@media (max-width: 480px) {
  .experience__container > h6 {
    font-size: 54px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .experience__container > h6 {
    font-size: 54px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .experience__container > h6 {
    font-size: 54px;
  }
}
.experience__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Chakra Petch", sans-serif;
}
@media (max-width: 480px) {
  .experience__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .experience__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .experience__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.experience__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.experience__item:nth-child(1) span:first-child {
  width: 55px;
}
.experience__item:nth-child(2) span:first-child {
  width: 105px;
}
.experience__item:nth-child(3) span:first-child {
  width: 140px;
}
.experience__item span:first-child {
  font-size: 86px;
  font-weight: 700;
}
.experience__item span:last-child {
  font-size: 22px;
  max-width: 140px;
  color: #005CB9;
}

.about {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 480px) {
  .about {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about__img {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0px;
  object-fit: cover;
}
@media (max-width: 480px) {
  .about__img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.about__container {
  width: 100%;
  max-width: 1360px;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 9;
}
@media (max-width: 480px) {
  .about__container {
    padding: 50px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__container {
    padding: 50px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__container {
    padding: 50px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.about__text {
  width: 750px;
  padding: 50px;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
@media (max-width: 480px) {
  .about__text {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__text {
    width: 100%;
    padding: 0px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__text {
    width: 100%;
    padding: 0px;
  }
}
.about__text > h5 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 54px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .about__text > h5 {
    font-size: 36px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .about__text > h5 {
    font-size: 36px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .about__text > h5 {
    font-size: 36px;
  }
}

.blogs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #11181E;
  color: #FFFFFF;
}
.blogs a {
  color: #FFFFFF;
}
.blogs__container {
  width: 100%;
  max-width: 1360px;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .blogs__container {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs__container {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs__container {
    padding: 50px 15px;
  }
}
.blogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 480px) {
  .blogs__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .blogs__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blogs__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Chakra Petch", sans-serif;
}
.blog__img {
  display: flex;
  margin-bottom: 10px;
}
.blog__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.blog__meta {
  display: flex;
  font-size: 14px;
  gap: 10px;
  margin-bottom: 5px;
}
.blog__meta a {
  color: #FFC700;
  font-weight: 500;
}
.blog__meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.blog__meta span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #FFFFFF;
}
.blog > h2 {
  font-size: 22px;
  font-weight: 600;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #F5F7F8;
}
.footer__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__top-container {
  width: 100%;
  max-width: 1360px;
  padding: 70px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__top-container {
    padding: 50px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__top-container {
    padding: 50px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top-container {
    padding: 50px 15px;
    flex-direction: column;
    gap: 30px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Chakra Petch", sans-serif;
}
.footer__menu li {
  display: flex;
}
.footer__menu a {
  display: flex;
}
.footer__products {
  width: 530px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .footer__products {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__products {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__products {
    width: 100%;
  }
}
.footer__products > h6 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Chakra Petch", sans-serif;
  margin-bottom: 15px;
}
.footer__products > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 480px) {
  .footer__products > ul {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__products > ul {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__products > ul {
    grid-template-columns: 1fr;
  }
}
.footer__middle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #E9ECED;
  border-bottom: 1px solid #E9ECED;
}
.footer__middle-container {
  width: 100%;
  max-width: 1360px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer__middle-container {
    padding: 15px;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__middle-container {
    padding: 15px;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__middle-container {
    padding: 15px;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
  }
}
.footer__logo {
  display: flex;
}
.footer__logo img {
  height: 55px;
}
@media (max-width: 480px) {
  .footer__logo img {
    height: 45px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__logo img {
    height: 45px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__logo img {
    height: 45px;
  }
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social li {
  display: flex;
}
.footer__social a {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #E9ECED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #005CB9;
  background: rgba(255, 255, 255, 0.062745098);
}
.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__bottom-container {
  width: 100%;
  max-width: 550px;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 480px) {
  .footer__bottom-container {
    padding: 30px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__bottom-container {
    padding: 30px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__bottom-container {
    padding: 30px 15px;
  }
}
.footer__bottom-container p {
  margin-bottom: 10px;
}
.footer__bottom-container p:last-child {
  margin-bottom: 0px;
}
.footer__bottom-container a {
  color: #005CB9;
  text-decoration: underline;
}

/***********/
.contact {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 480px) {
  .contact {
    flex-direction: column;
    gap: 20px;
  }
}
.contact iframe {
  width: 600px;
  height: 460px;
  border-radius: 5px;
  overflow: hidden;
  background: #EEEEEE;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .contact iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.contact__info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact__info > h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0B0033;
  font-family: "Chakra Petch", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__info > h2 img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.contact__info-text {
  font-weight: 300;
  margin-bottom: 15px;
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__item {
  width: 400px;
  display: flex;
  gap: 15px;
}
@media (max-width: 480px) {
  .contact__item {
    width: 100%;
  }
}
.contact__item i {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: #005cb9;
  background: rgba(0, 92, 185, 0.0509803922);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact__item > div {
  display: flex;
  flex-direction: column;
}
.contact__item > div span:first-child {
  font-size: 12px;
  font-weight: 300;
}
.contact__item > div p {
  margin-bottom: 5px;
}
.contact__item > div p:last-child {
  margin-bottom: 0px;
}

.social-media-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
  color: #fff;
}
.social-media-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 30, 0.6);
  z-index: 1;
}
.social-media-section__container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .social-media-section__container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
.social-media-section__phone {
  flex: 0 0 auto;
  width: 300px;
}
@media (max-width: 768px) {
  .social-media-section__phone {
    width: 200px;
  }
}
.social-media-section__phone img {
  width: 100%;
  height: auto;
  display: block;
}
.social-media-section__content {
  flex: 1;
}
.social-media-section__subtitle {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.9;
}
.social-media-section__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Chakra Petch", sans-serif;
}
@media (max-width: 768px) {
  .social-media-section__title {
    font-size: 36px;
  }
}
.social-media-section__description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
  max-width: 500px;
}
@media (max-width: 768px) {
  .social-media-section__description {
    margin-left: auto;
    margin-right: auto;
  }
}
.social-media-section__icons {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .social-media-section__icons {
    justify-content: center;
  }
}
.social-media-section__icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-media-section__icons li a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.hero-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: -20px;
}
@media (max-width: 480px) {
  .hero-bottom {
    margin-top: 0px;
    padding: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero-bottom {
    margin-top: 0px;
    padding: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-bottom {
    margin-top: 0px;
    padding: 15px;
  }
}
.hero-bottom__container {
  width: 100%;
  max-width: 1360px;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .hero-bottom__container {
    padding: 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero-bottom__container {
    padding: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-bottom__container {
    padding: 0;
  }
}
.hero-bottom__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero-bottom__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero-bottom__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-bottom__wrapper {
    grid-template-columns: 1fr;
  }
}
.hero-bottom__item {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width: 480px) {
  .hero-bottom__item {
    min-height: 300px;
    padding: 30px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero-bottom__item {
    min-height: 300px;
    padding: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-bottom__item {
    min-height: 300px;
    padding: 30px;
  }
}
.hero-bottom__item:hover .hero-bottom__bg {
  transform: scale(1.1);
}
.hero-bottom__item:hover h3 {
  color: #FFC700;
}
.hero-bottom__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}
.hero-bottom__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background 0.3s ease;
}
.hero-bottom__content {
  position: relative;
  z-index: 3;
}
.hero-bottom__content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  font-family: "Chakra Petch", sans-serif;
}
.hero-bottom__content h3 i {
  font-size: 20px;
}
.hero-bottom__content span {
  color: white !important;
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}

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