@import url(../fonts/fontawesome/css/all.min.css);
@import url(../fonts/orbitron/orbitron.css);
@import url(../fonts/inter/inter.css);

* {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul, ol {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

p a {
  display: inline;
}

img, video, iframe, picture, figure {
  max-width: 100%;
  display: block;
}

form, input, select, textarea, button, label {
  display: block;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.btn {
  width: max-content;
  padding: .5rem 1rem;
  border-radius: 10px;
  border: 1px solid;
  transition: all .3s ease-in;
}

.btn.btn-primary {
  color: #FFF;
  border-color: transparent;
  background-color: #156480;
}

.btn.btn-primary:hover {
  color: #1C759C;
  border-color: #1C759C;
  background-color: transparent;
}

.btn.btn-light {
  color: #FFF;
  border-color: #FFF;
  background-color: transparent;
}

.btn.btn-light:hover {
  color: #1C759C;
  background-color: #FFF;
}

.section-header {
  width: 100%;
}

.section-header .header-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: #444444;
}

@media only screen and (min-width: 1024px) {
  .section-header .header-content {
    flex-direction: row;
    gap: 6rem;
  }
}

.section-header .header-content .company {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-header .header-content .company .logo {
  width: 200px;
}

@media only screen and (min-width: 1024px) {
  .section-header .header-content .company .logo {
    width: 250px;
  }
}

.section-header .header-content .company h1, .section-header .header-content .company h2 {
  width: 100%;
  line-height: 1;
}

.section-header .header-content .company .company-line {
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #1C759C;
}

.section-header .header-content .product-data {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 10px;
  background-color: #1C759C;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
  margin-top: 1rem;
  padding: 2rem;
}

@media only screen and (min-width: 768px) {
  .section-header .header-content .product-data {
    justify-content: center;
    padding: 4rem 4rem;
    gap: 2rem;
  }
}

.section-header .header-content .product-data h1 {
  color: #FFF;
  line-height: 1;
}

.section-header .header-content .product-data .product-classification {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media only screen and (min-width: 768px) {
  .section-header .header-content .product-data .product-classification {
    gap: 1rem;
  }
}

.section-header .header-content .product-data .product-classification p {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: #FFF;
}

.section-header .header-content .product-data .product-classification p i {
  font-size: 24px;
  font-size: 1.33333rem;
  color: #FFF;
}

.section-header .header-content .product-data .product-classification p span {
  font-weight: 400;
  color: #FFF;
}

.section-header .header-content .product-data::before, .section-header .header-content .product-data::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #f0f0f0;
  transition: all .3s;
  z-index: -1;
}

.section-header .header-content .product-data:hover::before {
  transform: rotate(5deg);
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
}

.section-header .header-content .product-data:hover::after {
  transform: rotate(-3deg);
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
}

.section-products .cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem 1.5rem;
}

@media only screen and (min-width: 768px) {
  .section-products .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 1024px) {
  .section-products .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  width: 100%;
  height: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 10px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.card .card-tag {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  padding: 1rem;
  font-size: 14px;
  font-size: 0.77778rem;
  line-height: 20px;
  color: #444444;
  text-align: center;
  text-transform: uppercase;
  background-color: #FFF;
  border-bottom-left-radius: 25px;
  z-index: 2;
}

@media only screen and (min-width: 1024px) {
  .card .card-tag {
    padding: .7rem;
    font-size: 12px;
    font-size: 0.66667rem;
  }
}

@media only screen and (min-width: 1440px) {
  .card .card-tag {
    padding: 1rem;
    font-size: 14px;
    font-size: 0.77778rem;
  }
}

.card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in;
}

.card .footer-card {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  color: #FFF;
  padding: 1rem 1.5rem;
  background-color: transparent;
  z-index: 1;
  transition: all .3s ease-in;
}

@media only screen and (min-width: 1024px) {
  .card .footer-card {
    bottom: -15%;
  }
}

.card .footer-card h3 {
  font-family: "Inter";
  text-transform: uppercase;
}

.card .footer-card a {
  font-size: 14px;
  font-size: 0.77778rem;
}

.card .footer-card::after {
  content: '';
  width: 150%;
  height: 170%;
  position: absolute;
  left: -20%;
  bottom: -50%;
  background-color: rgba(28, 118, 156, 0.8);
  z-index: -1;
  transform: rotate(5deg);
  transition: all .3s ease-in;
}

.card:hover img {
  transform: scale(1.1);
}

.card:hover .footer-card {
  bottom: 0;
}

.card:hover .footer-card::after {
  transform: rotate(-5deg);
}

.product-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media only screen and (min-width: 1024px) {
  .product-detail {
    gap: 4rem;
  }
}

.product-detail h2 {
  color: #1C759C;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.product-detail .product-3d {
  height: 90vh;
  width: 100%;
  background-color: #f0f0f0;
}

.product-detail .container {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 60%;
  height: max-content;
}

@media only screen and (min-width: 768px) {
  .product-detail .container {
    width: 35%;
  }
}

.product-description .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-description .container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  height: min-content;
}

@media only screen and (min-width: 768px) {
  .product-description .container > div {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

.product-description .container > div .description-img {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .product-description .container > div .description-img {
    width: 40%;
  }
}

.product-description .container > div .description-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.product-description .container > div .description-text {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media only screen and (min-width: 768px) {
  .product-description .container > div .description-text {
    width: 60%;
    padding: 0;
    margin-top: 2rem;
    padding-right: 2rem;
  }
}

.product-description .container > div .description-text h2 {
  color: #1C759C;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .product-description .container > div .description-text h2 {
    text-align: left;
  }
}

.product-description .container > div .description-text > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-description .container > div .description-text p {
  color: #444444;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .product-description .container > div .description-text p {
    text-align: left;
  }
}

.product-description .container > div .description-text p strong {
  color: #1C759C;
  font-weight: 600;
}

.more-products-carousel .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media only screen and (min-width: 1024px) {
  .more-products-carousel .container {
    gap: 3rem;
  }
}

.more-products-carousel .container h2 {
  color: #1C759C;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.more-products-carousel .container .products-slide {
  height: 400px;
}

.more-products-carousel .container .products-slide .swiper {
  width: 100%;
  height: 100%;
}

.more-products-carousel .container .products-slide .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-products-carousel .container .products-slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-products-carousel .container .products-slide .swiper-button-prev {
  background-image: url("../img/arrow_previous_white.svg");
}

.more-products-carousel .container .products-slide .swiper-button-next {
  background-image: url("../img/arrow_next_white.svg");
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Inter";
}

header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 0;
  background-color: #1C759C;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
}

header .header-menu {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  color: #FFF;
  font-family: "Inter";
  line-height: 1;
}

header .logo {
  width: 100px;
}

@media only screen and (min-width: 1024px) {
  header .logo {
    width: 150px;
  }
}

section, header {
  margin-bottom: 4rem;
}

@media only screen and (min-width: 1024px) {
  section, header {
    margin-bottom: 6rem;
  }
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1700px;
}

h1, h2, h3, h4 {
  font-family: "Orbitron";
  font-weight: 500;
}

h1 {
  font-size: 32px;
  font-size: 1.77778rem;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 34px;
    font-size: 1.88889rem;
  }
}

@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 38px;
    font-size: 2.11111rem;
  }
}

@media only screen and (min-width: 1440px) {
  h1 {
    font-size: 42px;
    font-size: 2.33333rem;
  }
}

h2 {
  font-size: 20px;
  font-size: 1.11111rem;
}

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 24px;
    font-size: 1.33333rem;
  }
}

@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 28px;
    font-size: 1.55556rem;
  }
}

@media only screen and (min-width: 1440px) {
  h2 {
    font-size: 32px;
    font-size: 1.77778rem;
  }
}

h3 {
  font-size: 18px;
  font-size: 1rem;
}

@media only screen and (min-width: 768px) {
  h3 {
    font-size: 18px;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1024px) {
  h3 {
    font-size: 20px;
    font-size: 1.11111rem;
  }
}

@media only screen and (min-width: 1440px) {
  h3 {
    font-size: 24px;
    font-size: 1.33333rem;
  }
}

p {
  font-size: 14px;
  font-size: 0.77778rem;
}

@media only screen and (min-width: 768px) {
  p {
    font-size: 14px;
    font-size: 0.77778rem;
  }
}

@media only screen and (min-width: 1024px) {
  p {
    font-size: 16px;
    font-size: 0.88889rem;
  }
}

@media only screen and (min-width: 1440px) {
  p {
    font-size: 18px;
    font-size: 1rem;
  }
}

footer .footer {
  width: 100%;
}

footer .footer.footer-down {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  color: #FFF;
  background-color: #1A2C33;
}

footer .footer.footer-down .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media only screen and (min-width: 1024px) {
  footer .footer.footer-down .container {
    flex-direction: row;
  }
}

footer .footer.footer-down .container p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-size: 0.77778rem;
}

footer .footer.footer-down .container .legal-menu {
  display: flex;
  gap: 1rem;
}

@media only screen and (min-width: 1024px) {
  footer .footer.footer-down .container .legal-menu {
    flex-direction: row;
  }
}

footer .footer.footer-down .container .legal-menu > li {
  display: flex;
}

footer .footer.footer-down .container .legal-menu > li:not(:last-child):after {
  content: '|';
  margin: 0 0 0 10px;
  color: gray;
}

@media only screen and (min-width: 1024px) {
  footer .footer.footer-down .container .legal-menu > li {
    gap: 1rem;
  }
}

footer .footer.footer-down .container .legal-menu > li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-size: 0.77778rem;
}

footer .footer.footer-down .container .legal-menu > li a:hover {
  color: #FFF;
}
