@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&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-title {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 600px) {
  .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: 600px) {
  .cms-title__container h1 {
    font-size: 28px;
  }
}
.cms-title__container span {
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .cms-category__container {
    width: 100%;
  }
}
.cms-category__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .cms-category__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .cms-team__container {
    width: 100%;
  }
}
.cms-team__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .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: 600px) {
  .cms-contact {
    padding: 20px 15px;
  }
}
.cms-contact__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .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: 600px) {
  .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: 600px) {
  .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: 600px) {
  .cms-contact__wrapper-text h4 {
    font-size: 18px;
  }
}
.cms-contact__wrapper-form {
  padding: 40px;
  border: 1px solid #EEEEEE;
  background: white;
  border-radius: 20px;
  width: 650px;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .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: #005baa;
  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: 20px;
  color: #005baa;
  background: rgba(0, 91, 170, 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 {
  background: #55acee;
}
.cms-contact__social a:hover {
  transform: scale(1.1);
}
.cms-contact__map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 20px;
  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 #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: #005baa;
  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: 600px) {
  .cms-page {
    padding: 20px 15px;
  }
}
.cms-page__container {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .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: 20px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: #EEEEEE;
}
@media (max-width: 600px) {
  .cms-page__img {
    width: 100%;
    margin-left: 0px;
  }
}
.cms-page__content {
  width: 100%;
}
.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: 20px;
}
.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;
}
@media (max-width: 600px) {
  .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: 20px;
  margin-bottom: 10px;
}
.cms-user > h2 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .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: 20px;
  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: 600px) {
  .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: #005baa;
  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: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: #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: #005baa;
  color: white;
}
.cms-form__row {
  width: 100%;
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .cms-form__row {
    flex-direction: column;
    gap: 20px;
  }
}
.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: #005baa;
  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;
}

body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  min-width: 1200px;
  color: #141414;
}
@media (max-width: 600px) {
  body {
    min-width: 100%;
  }
}

a {
  color: #00203C;
}
a:hover {
  color: #005BAA;
}

p {
  margin-bottom: 15px;
}

.button {
  display: flex;
  width: max-content;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.button--main {
  background: #005BAA;
  color: white;
}
.button--main:hover {
  background: #0073d8;
  color: white;
}
.button--main-white {
  background: white;
}
.button--main-white:hover {
  background: #00203C;
  color: white;
}
.button--ghost {
  border: 1px solid #00203C;
}
.button--ghost:hover {
  background: #00203C;
  color: white;
}
.button--ghost-white {
  border: 1px solid white;
  color: white;
}
.button--ghost-white:hover {
  background: white;
  color: #005BAA;
}
.button--ghost-mini {
  border: 1px solid #00203C;
  padding: 5px 15px;
  font-size: 14px;
}
.button--ghost-mini:hover {
  background: #00203C;
  color: white;
}

.title-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.title-main h5 {
  font-size: 22px;
  color: #00203C;
  font-weight: 600;
}
@media (max-width: 600px) {
  .title-main h5 {
    font-size: 18px;
  }
}

.title-page {
  display: flex;
  height: auto;
  padding: 30px 0;
  width: 100%;
  background: #013668;
  color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .title-page {
    height: auto;
    padding: 30px 15px;
  }
}
.title-page__container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
}
.title-page__container h1 {
  font-size: 46px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .title-page__container h1 {
    font-size: 26px;
  }
}
.title-page__container span {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 600px) {
  .title-page__container span {
    font-size: 14px;
  }
}

.title-slider {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  background: #141414;
}
.title-slider__wrapper {
  width: 100%;
  display: flex;
}
.title-slider__item {
  width: 100%;
  height: auto;
  aspect-ratio: 16/6;
  position: relative;
}
@media (max-width: 600px) {
  .title-slider__item {
    min-height: 300px;
  }
}
.title-slider__item::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 250px;
  z-index: 2;
  background: linear-gradient(180deg, #000D19 0%, rgba(0, 13, 25, 0) 100%);
}
.title-slider__item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 250px;
  z-index: 2;
  background: linear-gradient(0deg, #000D19 0%, rgba(0, 13, 25, 0) 100%);
}
.title-slider__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
}
.title-slider__text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 2;
}
.title-slider__text h1 {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .title-slider__text h1 {
    font-size: 26px;
  }
}
.title-slider__text span {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 600px) {
  .title-slider__text span {
    font-size: 14px;
  }
}

.breadcrumb {
  display: flex;
  height: 50px;
  border-bottom: 1px solid #EEEEEE;
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__container {
  width: 1200px;
  display: flex;
}
.breadcrumb__container ul {
  display: flex;
  gap: 30px;
}
.breadcrumb__container ul li {
  display: flex;
}
.breadcrumb__container ul a {
  display: flex;
}
.breadcrumb__container ul i {
  opacity: 0.5;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  height: 100px;
  position: relative;
  z-index: 99;
  background: #013668;
  order: 1;
  z-index: 999;
}
@media (max-width: 600px) {
  .header {
    display: none;
  }
}
.header__container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__menu {
  display: flex;
  gap: 30px;
}
.header__menu > li {
  display: flex;
}
.header__menu > li:hover .sub-menu {
  display: flex;
}
.header__menu > li:hover .sub-menu-products {
  visibility: visible;
  opacity: 1;
}
.header__menu > li:hover .sub-menu-about {
  visibility: visible;
  opacity: 1;
}
.header__menu > li:hover .sub-menu-mega {
  visibility: visible;
  opacity: 1;
}
.header__menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  position: relative;
}
.header__menu > li > a:hover {
  color: #fff;
}
.header__menu > li > a:hover::before {
  width: 25px;
}
.header__menu > li > a i {
  font-size: 14px;
}
.header__menu > li > a::before {
  content: "";
  width: 0px;
  height: 5px;
  background: #0073d8;
  border-radius: 5px;
  position: absolute;
  bottom: -5px;
  left: 0px;
  transition: all 0.3s ease;
}
.header__menu > li > a.ecommerce {
  padding: 8px 20px;
  border-radius: 5px;
  background: #c51900;
  color: white;
  transition: all 0.3s ease;
}
.header__menu > li > a.ecommerce:hover {
  background: #ff3d00;
}
.header__menu > li > a.ecommerce::before {
  display: none;
}
.header__menu > li .sub-menu {
  position: absolute;
  top: 20px;
  padding-top: 20px;
  display: none;
}
.header__menu > li .sub-menu ul {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 5px;
  width: 240px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
}
.header__menu > li .sub-menu ul li {
  display: flex;
  width: 100%;
}
.header__menu > li .sub-menu ul li:last-child > a {
  border-bottom: none;
}
.header__menu > li .sub-menu ul a {
  padding: 8px 0;
  width: 100%;
  border-bottom: 1px solid #EEEEEE;
}
.header__menu > li .sub-menu-products {
  position: absolute;
  top: 40px;
  left: 0px;
  padding-top: 20px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: all 0.3s ease;
}
.header__menu > li .sub-menu-products ul {
  background: white;
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: 5px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
}
.header__menu > li .sub-menu-products ul li {
  display: flex;
  width: 100%;
}
.header__menu > li .sub-menu-products ul a {
  width: 100%;
  display: flex;
  text-align: center;
  gap: 10px;
  padding: 5px;
  border-radius: 5px;
  flex-direction: column;
  transition: all 0.3s ease;
}
.header__menu > li .sub-menu-products ul a:hover {
  background: #005BAA;
  color: white;
}
.header__menu > li .sub-menu-products ul a:hover img {
  border: 1px solid white;
}
.header__menu > li .sub-menu-products ul a img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  object-fit: cover;
}
.header__menu > li .sub-menu-products ul a span {
  font-size: 14px;
  font-weight: 600;
}
.header__menu > li .sub-menu-about {
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0px;
  padding-top: 20px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: all 0.3s ease;
}
.header__menu > li .sub-menu-about__wrapper {
  width: 100%;
  background: white;
  border-radius: 5px;
  display: flex;
  gap: 120px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
}
.header__menu > li .sub-menu-about .sub-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__menu > li .sub-menu-about .sub-list h4 {
  font-size: 16px;
  font-weight: 600;
}
.header__menu > li .sub-menu-about .sub-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__menu > li .sub-menu-about .sub-list ul li {
  display: flex;
}
.header__menu > li .sub-menu-about .sub-list ul a {
  display: flex;
  color: #005BAA;
}
.header__menu > li .sub-menu-mega {
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0px;
  padding-top: 20px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: all 0.3s ease;
}
.header__menu > li .sub-menu-mega__wrapper {
  width: 100%;
  background: white;
  border-radius: 5px;
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
}
.header__menu > li .sub-menu-mega__sidebar {
  width: 430px;
  padding: 20px;
  background: #EEEEEE;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.header__menu > li .sub-menu-mega__sidebar-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
}
.header__menu > li .sub-menu-mega__sidebar-item.active {
  color: white;
  background: #005BAA;
}
.header__menu > li .sub-menu-mega__sidebar-item img {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  object-fit: contain;
  background: white;
}
.header__menu > li .sub-menu-mega__sidebar-item > div {
  display: flex;
  flex-direction: column;
}
.header__menu > li .sub-menu-mega__sidebar-item > div h5 {
  font-size: 22px;
  font-weight: 600;
}
.header__menu > li .sub-menu-mega__sidebar-item > div span {
  font-weight: 300;
}
.header__menu > li .sub-menu-mega__items {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.header__menu > li .sub-menu-mega__items-wrapper {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.header__menu > li .sub-menu-mega__items-wrapper.active {
  display: grid;
}
.header__menu > li .sub-menu-mega__items-wrapper > a {
  width: 100%;
  display: flex;
  gap: 5px;
  align-items: center;
}
.header__menu > li .sub-menu-mega__items-wrapper > a img {
  width: 130px;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  object-fit: contain;
}
.header__menu > li .sub-menu-mega__items-wrapper > a > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header__menu > li .sub-menu-mega__items-wrapper > a > div h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.header__menu > li .sub-menu-mega__items-wrapper > a > div span {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #005BAA;
}
.header__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header__lang {
  display: flex;
  position: relative;
}
.header__lang-item {
  display: flex;
  gap: 5px;
  color: white !important;
  text-transform: uppercase;
}
.header__lang-item > i {
  font-size: 14px;
}
.header__lang:hover .sub-menu {
  display: flex;
}
.header__lang .sub-menu {
  position: absolute;
  top: 20px;
  right: 0px;
  padding-top: 20px;
  display: none;
}
.header__lang .sub-menu ul {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 5px;
  width: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
}
.header__lang .sub-menu ul li {
  display: flex;
  width: 100%;
}
.header__lang .sub-menu ul li:last-child > a {
  border-bottom: none;
}
.header__lang .sub-menu ul a {
  width: 100%;
  font-size: 14px;
}
.header__search {
  position: relative;
}
.header__search i.uil-search {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  background: white;
}
.header__search-form {
  position: absolute;
  right: 0px;
  top: 55px;
  display: flex;
  padding: 15px;
  background: white;
  border-radius: 5px;
  gap: 5px;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.header__search-form.active {
  height: 70px;
  opacity: 1;
}
.header__search-form input {
  border: 1px solid #EEEEEE;
  padding: 0 10px;
  height: 40px;
  width: 200px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}
.header__search-form button {
  padding: 0 15px;
  border: none;
  background: #005BAA;
  color: white;
  border-radius: 5px;
}

.header-mobile {
  width: 100%;
  padding: 15px;
  position: relative;
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #141414;
  z-index: 999;
}
@media (max-width: 600px) {
  .header-mobile {
    display: flex;
  }
}
.header-mobile__logo {
  display: flex;
}
.header-mobile__logo img {
  height: 40px;
}
.header-mobile__menu {
  width: 45px;
  height: 45px;
  display: flex;
  font-size: 30px;
  color: white;
  background: #005BAA;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile__nav {
  position: absolute;
  left: 0px;
  width: 100%;
  top: 75px;
  background: white;
  padding: 15px;
  display: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1019607843);
}
.header-mobile__nav-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.header-mobile__nav-menu > li {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header-mobile__nav-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #EEEEEE;
}
.header-mobile__nav-menu > li > a.ecommerce {
  background: #c51900;
  color: white;
  border-top: none;
  padding: 10px 15px;
  border-radius: 5px;
}
.header-mobile__nav-menu > li .sub-menu-about {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  height: 0;
  max-height: 0;
  overflow: hidden;
}
.header-mobile__nav-menu > li .sub-menu-about.active {
  visibility: visible;
  opacity: 1;
  height: auto;
  max-height: 450px;
}
.header-mobile__nav-menu > li .sub-menu-about .sub-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
.header-mobile__nav-menu > li .sub-menu-about .sub-list h4 {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.5;
}
.header-mobile__nav-menu > li .sub-menu-about .sub-list ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.header-mobile__nav-menu > li .sub-menu-about .sub-list ul li {
  width: 100%;
}
.header-mobile__nav-menu > li .sub-menu-about .sub-list ul a {
  display: flex;
  width: 100%;
}
.header-mobile__nav-lang {
  display: flex;
  gap: 10px;
}
.header-mobile__nav-lang li {
  display: flex;
}
.header-mobile__nav-lang a {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
}
.header-mobile__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  width: 100%;
  position: relative;
  background: black;
  margin-top: -100px;
  position: relative;
  order: 2;
}
@media (max-width: 600px) {
  .hero {
    margin-top: -75px;
  }
}
.hero__sticky {
  position: absolute;
  top: 0px;
  width: 100%;
  height: auto;
  aspect-ratio: 2.2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 600px) {
  .hero__sticky {
    min-height: 600px;
  }
}
.hero__sticky-wrapper {
  width: 1200px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .hero__sticky-wrapper {
    width: 100%;
  }
}
.hero__sticky-text {
  width: 500px;
  display: flex;
  color: white;
  flex-direction: column;
}
@media (max-width: 600px) {
  .hero__sticky-text {
    width: 100%;
    padding: 0 15px;
  }
}
.hero__sticky-text h4 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .hero__sticky-text h4 {
    font-size: 18px;
  }
}
.hero__sticky-text span {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .hero__sticky-text span {
    font-size: 14px;
  }
}
.hero__sticky-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 600px) {
  .hero__sticky-buttons {
    flex-direction: column;
    gap: 10px;
    display: none;
  }
}
@media (max-width: 600px) {
  .hero__sticky-buttons .button {
    width: 100%;
  }
}
.hero__slider {
  width: 100%;
  overflow: hidden;
}
.hero__slider-wrapper {
  display: flex;
  width: 100%;
}
.hero__item {
  height: auto;
  aspect-ratio: 2.2/1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero__item {
    min-height: 600px;
  }
}
.hero__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00203C;
  opacity: 0.6;
  z-index: 2;
}
.hero__item-container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .hero__item-container {
    width: 100%;
    padding: 15px;
    flex-direction: column;
    gap: 15px;
  }
}
.hero__item-container img-comparison-slider {
  max-width: 600px;
}
.hero__item-container img-comparison-slider img {
  width: 600px;
  height: 500px;
}
@media (max-width: 600px) {
  .hero__item-container img-comparison-slider img {
    width: 100%;
    height: auto;
    aspect-ratio: 600/500;
  }
}
.hero__item-container img-comparison-slider:focus {
  outline: none;
}
.hero__item-text {
  max-width: 500px;
  color: white;
}
@media (max-width: 600px) {
  .hero__item-text {
    width: 100%;
    padding: 0 15px;
  }
}
.hero__item-text h3 {
  font-size: 45px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .hero__item-text h3 {
    font-size: 18px;
    text-align: center;
  }
}
.hero__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0px;
  left: 0px;
}
.hero__item video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
}
.hero__pagination {
  width: auto !important;
  position: absolute;
  right: 50px !important;
  top: 50% !important;
  left: initial !important;
  bottom: initial !important;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}
@media (max-width: 600px) {
  .hero__pagination {
    top: initial !important;
    right: 50% !important;
    bottom: 30px !important;
    transform: translateX(50%);
    flex-direction: row;
  }
}
.hero__pagination span {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1450980392);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.hero__pagination span::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.hero__pagination span.active::before, .hero__pagination span:hover::before {
  width: 20px;
  height: 20px;
}

.quick-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
  margin-top: -50px;
  order: 3;
}
@media (max-width: 600px) {
  .quick-menu {
    margin-top: 30px;
    padding: 0 15px;
  }
}
.quick-menu__container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 20px 30px;
  background: #005BAA;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .quick-menu__container {
    width: 100%;
    flex-direction: column;
  }
}
.quick-menu__buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .quick-menu__buttons {
    width: 100%;
    gap: 10px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .quick-menu__buttons .button {
    width: 100%;
  }
}

.brands {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  order: 4;
}
@media (max-width: 600px) {
  .brands {
    padding: 30px 15px 0 15px;
  }
}
.brands__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 600px) {
  .brands__container {
    width: 100%;
  }
}
.brands__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.brands__slider-wrapper {
  display: flex;
}
.brands__slider-arrow-left {
  position: absolute;
  left: -30px;
  font-size: 30px;
  color: #00203C;
  opacity: 0.5;
  cursor: pointer;
  top: 80px;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .brands__slider-arrow-left {
    display: none;
  }
}
.brands__slider-arrow-left:hover {
  opacity: 1;
}
.brands__slider-arrow-right {
  position: absolute;
  right: -30px;
  font-size: 30px;
  color: #00203C;
  opacity: 0.5;
  cursor: pointer;
  top: 80px;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .brands__slider-arrow-right {
    display: none;
  }
}
.brands__slider-arrow-right:hover {
  opacity: 1;
}
.brands__slide {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.brands__slide-wrapper {
  display: flex;
}
.brands__item {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  border: 1px solid #EEEEEE;
}
.brands__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 9/4;
}

.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  order: 5;
}
@media (max-width: 600px) {
  .products {
    padding: 30px 15px 0 15px;
  }
}
.products__container {
  width: 1200px;
  display: flex;
  gap: 30px;
}
@media (max-width: 600px) {
  .products__container {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
}
.products__sidebar {
  border-right: 1px solid #EEEEEE;
  display: flex;
  flex-direction: column;
  width: 320px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .products__sidebar {
    width: 100%;
    border-right: none;
  }
}
.products__sidebar--sticky {
  position: sticky;
  top: 30px;
  z-index: 99;
  width: 240px;
  align-self: flex-start;
}
@media (max-width: 600px) {
  .products__sidebar--sticky {
    position: relative;
    width: 100%;
  }
}
.products__sidebar h4 {
  font-size: 22px;
  font-weight: 600;
  color: #00203C;
}
.products__sidebar Ul {
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .products__sidebar Ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.products__sidebar Ul li {
  display: flex;
}
.products__sidebar Ul a {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px 15px;
  position: relative;
}
@media (max-width: 600px) {
  .products__sidebar Ul a {
    padding-right: 10px;
    border: 1px solid #EEEEEE;
  }
}
.products__sidebar Ul a::before {
  width: 5px;
  height: 0;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  content: "";
  background: #005BAA;
  transition: all 0.3s ease;
}
.products__sidebar Ul a:hover::before, .products__sidebar Ul a.active::before {
  height: 100%;
}
.products__sidebar Ul a h2 {
  font-size: 16px;
  font-weight: 600;
}
.products__sidebar Ul a span {
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 600px) {
  .products__sidebar Ul a span {
    display: none;
  }
}
.products__slider {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.products__slider-wrapper {
  display: flex;
  flex-direction: column;
}
.products__slider-wrapper .products__item:first-child {
  display: flex;
}
.products__item {
  display: none;
  flex-direction: column;
}
.products__item-img {
  width: 100%;
  margin-bottom: 15px;
}
.products__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.2/1;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  object-fit: contain;
}
.products__item h2 {
  font-size: 22px;
  font-weight: 600;
}
.products__item-text {
  width: 100%;
}
.products__item-text img {
  max-width: 100%;
}
.products__item-text p:last-child {
  margin-bottom: 0px;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  order: 9;
}
@media (max-width: 600px) {
  .about {
    padding: 30px 15px 0 15px;
  }
}
.about__container {
  width: 1200px;
  overflow: hidden;
  border-radius: 5px;
  display: flex;
}
@media (max-width: 600px) {
  .about__container {
    width: 100%;
    flex-direction: column;
  }
}
.about__info {
  width: 50%;
  background: #005BAA;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
}
@media (max-width: 600px) {
  .about__info {
    width: 100%;
    padding: 30px;
  }
}
.about__info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}
.about__info-text {
  position: relative;
  z-index: 2;
}
.about__info-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .about__info-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .about__info-buttons .button {
    width: 100%;
  }
}
.about__info-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.about__turkey {
  background: #141414;
  color: white;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .about__turkey {
    width: 100%;
    padding: 40px 30px;
  }
}
.about__turkey img {
  height: 100px;
}
@media (max-width: 600px) {
  .about__turkey img {
    height: 70px;
  }
}
.about__turkey span {
  max-width: 400px;
  font-size: 26px;
  font-style: italic;
  text-align: center;
}

.numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  order: 7;
}
@media (max-width: 600px) {
  .numbers {
    padding: 40px 15px 0 15px;
  }
}
.numbers__container {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 600px) {
  .numbers__container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.number {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .number {
    width: 100%;
    border: 1px;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #EEEEEE;
  }
}
.number i {
  font-size: 65px;
  color: #005BAA;
}
@media (max-width: 600px) {
  .number i {
    line-height: 1;
  }
}
.number__text {
  display: flex;
  flex-direction: column;
}
.number__text span:first-child {
  font-size: 26px;
  font-weight: 700;
  color: #00203C;
  display: flex;
  align-items: center;
  gap: 5px;
}
.number__text span:last-child {
  font-size: 16px;
  font-weight: 300;
  color: #00203C;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  order: 8;
}
@media (max-width: 600px) {
  .gallery {
    padding: 40px 15px 0 15px;
  }
}
.gallery__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 600px) {
  .gallery__container {
    width: 100%;
  }
}
.gallery__container > i {
  font-size: 30px;
  opacity: 0.5;
  transition: all 0.3s ease;
  position: absolute;
  top: 120px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 30px;
}
@media (max-width: 600px) {
  .gallery__container > i {
    display: none;
  }
}
.gallery__container > i:hover {
  opacity: 1;
}
.gallery__container > i.uil-angle-left-b {
  left: -30px;
}
.gallery__container > i.uil-angle-right-b {
  right: -30px;
}
.gallery__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.gallery__slider-wrapper {
  display: flex;
}
.gallery__slider-item {
  display: flex;
}
.gallery__slider-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  object-fit: cover;
}

.sectors {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #141414;
  margin-top: 80px;
  order: 6;
}
@media (max-width: 600px) {
  .sectors {
    margin-top: 40px;
  }
}
.sectors__container {
  width: 1200px;
  display: flex;
  align-items: center;
  height: 600px;
  gap: 50px;
}
@media (max-width: 600px) {
  .sectors__container {
    width: 100%;
    height: auto;
    padding: 40px 15px;
    flex-direction: column;
  }
}
.sectors__info {
  width: 420px;
  color: white;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .sectors__info {
    width: 100%;
  }
}
.sectors__info h4 {
  font-size: 28px;
  font-weight: 600;
}
.sectors__info p:nth-child(2) {
  font-size: 18px;
}
.sectors__info ul {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}
.sectors__info ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sectors__info ul li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #005BAA;
  content: "";
}
.sectors__wrapper {
  width: 100%;
  display: flex;
  height: 600px;
  overflow: hidden;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .sectors__wrapper {
    height: auto;
    aspect-ratio: 4/3;
  }
}
.sectors__wrapper-marguee {
  width: 100%;
  height: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.sectors__wrapper-marguee .sector-slide {
  border: none;
}
.sectors__wrapper-marguee .sector-slide span {
  font-size: 16px;
}
.sectors__wrapper-marguee .sector-slide:nth-child(3n-1) {
  transform: translateY(50px);
}

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

.blog {
  display: flex;
  flex-direction: column;
}
.blog__img {
  margin-bottom: 10px;
  display: flex;
  width: 100%;
}
.blog__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 57/40;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  object-fit: cover;
}
.blog__info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 5px;
  display: none !important;
}
.blog__category {
  font-weight: 600;
}
.blog__date {
  display: flex;
  gap: 10px;
  width: max-content;
  align-items: center;
  font-weight: 300;
  opacity: 0.5;
}
.blog__date::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #005BAA;
  content: "";
}
.blog h2 {
  font-size: 18px;
  font-weight: 600;
}

.companies {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  order: 11;
}
@media (max-width: 600px) {
  .companies {
    padding: 30px 15px;
  }
}
.companies__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .companies__container {
    width: 100%;
  }
}
.companies__wrapper {
  width: 100%;
  display: flex;
  position: relative;
}
.companies__wrapper-arrow-left {
  position: absolute;
  left: -30px;
  font-size: 30px;
  color: #00203C;
  opacity: 0.5;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .companies__wrapper-arrow-left {
    display: none;
  }
}
.companies__wrapper-arrow-left:hover {
  opacity: 1;
}
.companies__wrapper-arrow-right {
  position: absolute;
  right: -30px;
  font-size: 30px;
  color: #00203C;
  opacity: 0.5;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .companies__wrapper-arrow-right {
    display: none;
  }
}
.companies__wrapper-arrow-right:hover {
  opacity: 1;
}
.companies__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.companies__slider-wrapper {
  width: 100%;
  display: flex;
}

.company {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .company {
    height: auto;
  }
}
.company:hover {
  height: auto;
}
.company:hover > .company__text {
  height: auto;
  overflow: auto;
}
.company__img {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 255/130;
  object-fit: cover;
  border-radius: 5px;
  background: white;
}
.company h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  display: none !important;
}
.company__text {
  transition: all 0.3s ease;
  height: 0px;
  overflow: hidden;
  display: none !important;
}
@media (max-width: 600px) {
  .company__text {
    height: auto;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #141414;
  color: white;
  order: 99;
}
.footer__top {
  padding: 40px 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .footer__top {
    padding: 30px 15px;
  }
}
.footer__top-container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__top-container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
}
.footer__menu h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu ul li {
  display: flex;
}
.footer__menu ul a {
  display: flex;
  font-weight: 300;
  color: white;
  transition: all 0.3s ease;
}
.footer__menu ul a:hover {
  color: #339df9;
}
.footer__contact {
  width: 385px;
  display: flex;
  gap: 25px;
  flex-direction: column;
}
@media (max-width: 600px) {
  .footer__contact {
    width: 100%;
  }
}
.footer__contact-row {
  display: flex;
  justify-content: space-between;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
}
.footer__contact-item span:first-child {
  font-size: 12px;
  font-weight: 300;
}
.footer__contact-item span:last-child, .footer__contact-item a:last-child {
  color: white;
}
.footer__middle {
  width: 100%;
  padding: 15px 0px;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .footer__middle {
    padding: 30px 15px;
  }
}
.footer__middle-container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__middle-container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}
.footer__logo {
  display: flex;
}
.footer__logo img {
  max-width: 180px;
  max-height: 30px;
}
.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social li {
  display: flex;
}
.footer__social a {
  display: flex;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  color: #339df9;
}
.footer__cop {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
@media (max-width: 600px) {
  .footer__cop {
    padding: 30px 15px;
  }
}
.footer__cop-container {
  max-width: 600px;
  text-align: center;
}
.footer__cop-container a {
  color: #005BAA;
  text-decoration: underline;
}
.footer__cop-container p {
  margin-bottom: 8px;
}
.footer__cop-container p:last-child {
  margin-bottom: 0px;
}

.about-video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  position: relative;
  z-index: 99;
}
@media (max-width: 600px) {
  .about-video {
    padding: 30px 15px;
  }
}
.about-video__container {
  display: flex;
  flex-direction: column;
  width: 1200px;
}
@media (max-width: 600px) {
  .about-video__container {
    width: 100%;
  }
}
.about-video__container video {
  border: none;
  width: 100%;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  margin-top: -80px;
}
@media (max-width: 600px) {
  .about-video__container video {
    margin-top: 0px;
  }
}
@media (max-width: 600px) {
  .about-video__text img {
    width: 100% !important;
    height: auto !important;
  }
}

.about-numbers {
  width: 100%;
  padding: 80px 0;
  background: #141414;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .about-numbers {
    padding: 40px 15px;
  }
}
.about-numbers__container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 600px) {
  .about-numbers__container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}
.about-numbers__title {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 600px) {
  .about-numbers__title {
    width: 100%;
  }
}
.about-numbers__title h3 {
  font-size: 32px;
  font-weight: 600;
}
.about-numbers__title h3 strong {
  font-weight: 600;
  color: #005BAA;
}
.about-numbers__title span {
  font-weight: 300;
}
.about-numbers__wrapper {
  width: 670px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .about-numbers__wrapper {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.about-number {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.about-number > strong {
  font-size: 76px;
  line-height: 76px;
  font-weight: 700;
  color: #005BAA;
}
.about-number > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.about-number > div span:first-child {
  font-size: 32px;
  font-weight: 600;
  line-height: 22px;
}

.about-items {
  display: flex;
  padding-top: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .about-items {
    padding: 30px 15px 0 15px;
  }
}
.about-items__container {
  display: flex;
  gap: 50px;
  flex-direction: column;
  width: 1200px;
}
@media (max-width: 600px) {
  .about-items__container {
    width: 100%;
    gap: 20px;
  }
}
.about-items__container .about-item:nth-child(2) {
  flex-direction: row-reverse;
}
@media (max-width: 600px) {
  .about-items__container .about-item:nth-child(2) {
    flex-direction: column;
  }
}

.about-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .about-item {
    flex-direction: column;
    gap: 10px;
  }
}
.about-item__img {
  width: 600px;
  height: 475px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about-item__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}
.about-item h2 {
  font-size: 36px;
  font-weight: 700;
  color: #00203C;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .about-item h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.about-item__text {
  font-weight: 300;
}
.about-item__text p:last-child {
  margin-bottom: 0px;
}

.page-categories {
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .page-categories {
    padding: 30px 15px;
  }
}
.page-categories__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 1200px;
}
@media (max-width: 600px) {
  .page-categories__container {
    width: 100%;
    gap: 20px;
  }
}
.page-categories__container .page-category:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 600px) {
  .page-categories__container .page-category:nth-child(2n) {
    flex-direction: column;
  }
}

.page-category {
  display: flex;
  gap: 50px;
  align-items: center;
}
@media (max-width: 600px) {
  .page-category {
    flex-direction: column;
    gap: 10px;
  }
}
.page-category__img {
  width: 600px;
  height: 430px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .page-category__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    order: 1;
  }
}
.page-category__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  object-fit: cover;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  object-fit: cover;
}
.page-category__img video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
}
.page-category__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 600px) {
  .page-category__info {
    order: 2;
  }
}
.page-category__info h3 {
  font-size: 14px;
  font-weight: 300;
  color: #005BAA;
}
.page-category__info h2 {
  font-size: 36px;
  color: #00203C;
  font-weight: 600;
}
@media (max-width: 600px) {
  .page-category__info h2 {
    font-size: 32px;
  }
}
.page-category__info-text {
  width: 100%;
  margin-bottom: 20px;
}
.page-category__info-text p:last-child {
  margin-bottom: 0px;
}
.page-category__info-buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .page-category__info-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .page-category__info-buttons .button {
    width: 100%;
  }
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
@media (max-width: 600px) {
  .page {
    padding: 30px 15px;
  }
}
.page__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 1200px;
}
@media (max-width: 600px) {
  .page__container {
    width: 100%;
    gap: 20px;
  }
}
.page__container-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 1200px;
}
@media (max-width: 600px) {
  .page__container-2cols {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
}
.page__container-3cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 1200px;
}
@media (max-width: 600px) {
  .page__container-3cols {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
}

.category-hero {
  display: flex;
  width: 100%;
  position: relative;
}
.category-hero__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.category-hero__slider-wrapper {
  display: flex;
  width: 100%;
}
.category-hero__slider-item {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.category-hero__slider-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/6;
  border-radius: 5px;
  object-fit: cover;
}
.category-hero > i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  opacity: 0.5;
  cursor: pointer;
}
.category-hero > i:hover {
  opacity: 1;
}
.category-hero > i.uil-angle-left-b {
  left: -50px;
}
.category-hero > i.uil-angle-right-b {
  right: -50px;
}

.page-numbers {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 600px) {
  .page-numbers {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.page-images {
  width: 100%;
  display: grid;
  grid-template-areas: "img1 img2 img2" "img1 img3 img4";
  gap: 30px;
}
@media (max-width: 600px) {
  .page-images {
    grid-template-areas: "img1" "img2" "img3" "img4";
    gap: 20px;
  }
}
.page-images img {
  width: 100%;
  min-height: 280px;
  background: #EEEEEE;
  border-radius: 5px;
  object-fit: cover;
  border: 1px solid #EEEEEE;
}
.page-images__img1 {
  grid-area: img1;
  width: 380px !important;
  height: 590px;
}
@media (max-width: 600px) {
  .page-images__img1 {
    width: 100% !important;
    height: auto;
  }
}
.page-images__img2 {
  grid-area: img2;
  width: 790px !important;
  height: 280px;
}
@media (max-width: 600px) {
  .page-images__img2 {
    width: 100% !important;
    height: auto;
  }
}
.page-images__img3 {
  grid-area: img3;
  width: 380px;
  height: 280px;
}
@media (max-width: 600px) {
  .page-images__img3 {
    width: 100% !important;
    height: auto;
  }
}
.page-images__img4 {
  grid-area: img4;
  width: 380px;
  height: 280px;
}
@media (max-width: 600px) {
  .page-images__img4 {
    width: 100% !important;
    height: auto;
  }
}

.page-sectors {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.page-sectors h3 {
  font-size: 36px;
  font-weight: 600;
  color: #00203C;
}
@media (max-width: 600px) {
  .page-sectors h3 {
    font-size: 16px;
  }
}
.page-sectors__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.page-sectors__slider-wrapper {
  display: flex;
}
.page-sectors > i {
  position: absolute;
  top: 140px;
  font-size: 45px;
  opacity: 0.5;
  cursor: pointer;
}
@media (max-width: 600px) {
  .page-sectors > i {
    display: none;
  }
}
.page-sectors > i:hover {
  opacity: 1;
}
.page-sectors > i.uil-angle-left-b {
  left: -50px;
}
.page-sectors > i.uil-angle-right-b {
  right: -50px;
}

.sector-slide {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  display: flex;
  border: 1px solid #EEEEEE;
}
.sector-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 14/16;
  background: #EEEEEE;
  object-fit: cover;
}
.sector-slide span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 15px 20px;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 91, 170, 0) 0%, #005BAA 100%);
  backdrop-filter: blur(2px);
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-align: center;
}
@media (max-width: 600px) {
  .sector-slide span {
    font-size: 16px;
    padding: 10px;
  }
}

.pagination {
  display: flex;
  gap: 10px;
}
.pagination a {
  width: 50px;
  height: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
}
.pagination a.active, .pagination a:hover {
  background: #005BAA;
  color: white;
  border: none;
}

.blog-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 0px 80px 0px;
}
@media (max-width: 600px) {
  .blog-detail {
    padding: 30px 15px;
  }
}
.blog-detail__container {
  display: flex;
  width: 960px;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 600px) {
  .blog-detail__container {
    width: 100%;
    gap: 20px;
  }
}
.blog-detail__title {
  display: flex;
  flex-direction: column;
}
.blog-detail__title h1 {
  font-size: 26px;
  color: #00203C;
  font-weight: 600;
}
@media (max-width: 600px) {
  .blog-detail__title h1 {
    font-size: 22px;
  }
}
.blog-detail__title span {
  font-size: 18px;
  font-weight: 300;
}
.blog-detail__img {
  height: 530px;
  width: 1200px;
  margin-left: -120px;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .blog-detail__img {
    width: 100%;
    height: auto;
    margin-left: 0px;
  }
}

.detail-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.detail-gallery--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 600px) {
  .detail-gallery--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.detail-gallery--cols-4 a img {
  object-fit: contain !important;
  aspect-ratio: 9/5 !important;
  background: white;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
.detail-gallery li {
  display: flex;
}
.detail-gallery a {
  display: flex;
  width: 100%;
}
.detail-gallery a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 5px;
}

.certificates {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.certificates h2 {
  color: #00203C;
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .certificates h2 {
    font-size: 22px;
  }
}
.certificates ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 600px) {
  .certificates ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.certificates ul li {
  display: flex;
}
.certificates ul a {
  display: flex;
  width: 100%;
}
.certificates ul a img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
  aspect-ratio: 14/16;
  border: 1px solid #EEEEEE;
}

.contact {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 600px) {
  .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: 600px) {
  .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;
}
.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: 600px) {
  .contact__item {
    width: 100%;
  }
}
.contact__item i {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: #005BAA;
  background: rgba(0, 91, 170, 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;
}

.catalog {
  display: flex;
  width: 100%;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.catalog:hover {
  border: 1px solid #005BAA;
  background: rgba(0, 91, 170, 0.0509803922);
}
.catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #005BAA;
  background: rgba(0, 91, 170, 0.0509803922);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

.dealer-products {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 600px) {
  .dealer-products {
    gap: 20px;
  }
}
.dealer-products__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 600px) {
  .dealer-products__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.dealer-product {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
}
@media (max-width: 600px) {
  .dealer-product {
    padding: 15px;
    flex-direction: column;
    gap: 15px;
  }
}
.dealer-product--main .dealer-product__img img {
  aspect-ratio: 16/9;
  width: 500px;
}
@media (max-width: 600px) {
  .dealer-product--main .dealer-product__img img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.dealer-product__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .dealer-product__text {
    order: 2;
  }
}
.dealer-product__text h4 {
  font-size: 16px;
  font-weight: 300;
}
.dealer-product__text h4 a {
  color: #005BAA;
}
.dealer-product__text h3 {
  font-size: 22px;
  font-weight: 600;
}
.dealer-product__text span {
  margin-bottom: 15px;
}
.dealer-product__img {
  display: flex;
}
.dealer-product__img img {
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 5px;
  flex-shrink: 0;
  object-fit: contain;
  border: 1px solid #EEEEEE;
}
@media (max-width: 600px) {
  .dealer-product__img img {
    width: 100%;
  }
}

.dproducts {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}
@media (max-width: 600px) {
  .dproducts {
    padding: 30px 15px;
  }
}
.dproducts__container {
  display: flex;
  flex-direction: column;
  width: 1200px;
}
@media (max-width: 600px) {
  .dproducts__container {
    width: 100%;
  }
}
.dproducts__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .dproducts__wrapper {
    grid-template-columns: 1fr;
  }
}

.dp-detail {
  width: 100%;
  display: flex;
  padding-top: 40px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .dp-detail {
    padding: 30px 15px;
  }
}
.dp-detail__container {
  display: flex;
  gap: 60px;
  width: 1200px;
}
@media (max-width: 600px) {
  .dp-detail__container {
    width: 100%;
    flex-direction: column;
  }
}
.dp-detail__text {
  width: 740px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .dp-detail__text {
    width: 100%;
    order: 2;
  }
}
.dp-detail__text h1 {
  font-size: 32px;
  font-weight: 700;
  color: #00203C;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .dp-detail__text h1 {
    font-size: 22px;
  }
}
.dp-detail__description {
  font-size: 22px;
  font-weight: 600;
}
.dp-detail__content img {
  width: 100% !important;
  height: auto !important;
}
.dp-detail__img {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 25px;
}
.dp-detail__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  object-fit: contain;
}
.dp-detail__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.dp-detail__contact span {
  font-size: 18px;
  font-weight: 600;
  padding: 0 15px;
}
@media (max-width: 600px) {
  .dp-detail__contact span {
    padding: 0px;
  }
}

.nproducts {
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .nproducts {
    padding: 30px 15px;
  }
}
.nproducts__container {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  width: 1200px;
}
@media (max-width: 600px) {
  .nproducts__container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}
.nproducts__sidebar {
  width: 300px;
  padding-right: 20px;
  border-right: 1px solid #EEEEEE;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 600px) {
  .nproducts__sidebar {
    width: 100%;
    padding-right: 0px;
    border-right: none;
    order: 2;
  }
}
.nproducts__sidebar-item {
  display: flex;
  flex-direction: column;
}
.nproducts__sidebar-item > h2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEEEEE;
}
.nproducts__sidebar-item > h2 i {
  font-size: 20px;
  color: #005BAA;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nproducts__sidebar-item > h2 i:hover {
  color: #00203C;
}
.nproducts__sidebar-item ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.nproducts__sidebar-item ul li {
  display: flex;
}
.nproducts__sidebar-item ul a {
  display: flex;
  width: 100%;
  padding: 5px 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.nproducts__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nproducts__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nproducts__title > h1 {
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .nproducts__title > h1 {
    font-size: 22px;
  }
}
.nproducts__title > h1 .button--ghost {
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
}
.nproducts__title-description {
  font-size: 18px;
  font-weight: 300;
}
.nproducts__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .nproducts__items {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.nproduct {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  overflow: hidden;
}
.nproduct__img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #EEEEEE;
}
.nproduct__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.nproduct__texts {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.nproduct__texts > h3 {
  font-size: 18px;
  font-weight: 600;
}
.nproduct__texts > span {
  font-size: 14px;
  font-weight: 300;
}

.nproduct-detail {
  padding: 50px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .nproduct-detail {
    padding: 30px 15px;
  }
}
.nproduct-detail__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 1200px;
}
@media (max-width: 600px) {
  .nproduct-detail__container {
    width: 100%;
    gap: 20px;
  }
}
.nproduct-detail__wrapper {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .nproduct-detail__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.nproduct-detail__images {
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 600px) {
  .nproduct-detail__images {
    width: 100%;
  }
}
.nproduct-detail__images-main {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.nproduct-detail__images-main-wrapper {
  width: 100%;
  display: flex;
}
.nproduct-detail__images-main-item {
  width: 100%;
  display: flex;
}
.nproduct-detail__images-main-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
}
.nproduct-detail__images-thumbs {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.nproduct-detail__images-thumbs-wrapper {
  width: 100%;
  display: flex;
}
.nproduct-detail__images-thumbs-item {
  width: 100%;
  display: flex;
  border-radius: 5px;
  border: 2px solid #EEEEEE;
  overflow: hidden;
  transition: all 0.3s ease;
}
.nproduct-detail__images-thumbs-item.swiper-slide-thumb-active {
  border: 2px solid #005BAA;
}
.nproduct-detail__images-thumbs-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.nproduct-detail__info {
  display: flex;
  flex-direction: column;
}
.nproduct-detail__info > h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .nproduct-detail__info > h1 {
    font-size: 22px;
  }
}
.nproduct-detail__info-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.nproduct-detail__tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.nproduct-detail__tabs-menu {
  display: flex;
}
.nproduct-detail__tabs-menu li {
  display: flex;
}
.nproduct-detail__tabs-menu a {
  display: flex;
  padding: 10px 20px;
  background: rgba(0, 91, 170, 0.0509803922);
  font-weight: 600;
}
.nproduct-detail__tabs-content {
  width: 100%;
  padding: 50px;
  background: rgba(0, 91, 170, 0.0509803922);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 600px) {
  .nproduct-detail__tabs-content {
    padding: 15px;
  }
}
.nproduct-detail__tabs-content table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin: 10px 0px;
}
.nproduct-detail__tabs-content table th, .nproduct-detail__tabs-content table td {
  padding: 10px;
  border: 1px solid rgba(0, 91, 170, 0.1882352941);
  text-align: left;
}
.nproduct-detail__tabs-content table th {
  background: rgba(0, 91, 170, 0.0509803922);
  font-weight: 600;
}
.nproduct-detail__tabs-content table td {
  font-weight: 300;
}
.nproduct-detail__features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .nproduct-detail__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.nproduct-detail__features-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(0, 91, 170, 0.1882352941);
  border-radius: 5px;
  background: rgba(0, 91, 170, 0.0509803922);
  font-weight: 600;
}
.nproduct-detail__features-item i {
  width: 45px;
  height: 45px;
  font-size: 22px;
  color: #005BAA;
  background: rgba(0, 91, 170, 0.0509803922);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.fast-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #005BAA;
  background: rgba(0, 91, 170, 0.0509803922);
  border-radius: 5px;
}
.fast-contact > h5 {
  font-size: 22px;
  font-weight: 600;
  color: #005BAA;
  margin-bottom: 5px;
}
.fast-contact span {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.fast-contact__buttons {
  display: flex;
  gap: 10px;
}
@media (max-width: 600px) {
  .fast-contact__buttons {
    flex-direction: column;
  }
}

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