.double-rect-container {
  position: relative;
  width: 240px;
  height: 350px;
  display: block;
}
.double-rect-container .light-rect-bg {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  background: #588cdf;
  border-radius: 20px;
  z-index: 1;
}
.double-rect-container .dark-rect-anim {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 75px;
  background: #425ca6;
  border-radius: 20px;
  z-index: 2;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-top-right-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.double-rect-container .dark-rect-static {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 200px;
  background: #425ca6;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.double-rect-container:hover .dark-rect-anim {
  height: 120px;
  margin-top: -45px;
  border-top-right-radius: 50px;
}
.double-rect-container .circle {
  position: absolute;
  left: 50%;
  top: -70px;
  width: 120px;
  height: 120px;
  background: #425ca6;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

/* Style for the burger menu */
.burger-menu {
  cursor: pointer;
}

.burger-menu {
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  margin-left: 15px;
}

.bar {
  width: 100%;
  height: 4px;
  background-color: #0000ff;
  border-radius: 4px;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

.burger-menu.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.burger-menu {
  display: none;
}

.contact-bottom-vector {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.contact-bottom-vector img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 575px) {
  .hero-section .hero-text h1 {
    font-size: 1rem;
  }
  .services-cards {
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5rem !important;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding-left: 6vw;
    padding-right: 2vw;
  }
  .hero-section .hero-text h1 {
    font-size: 3rem;
  }
  .hero-section .hero-text p {
    font-size: 1.2rem;
  }
  .hero-section .hero-button {
    font-size: 1.1rem;
  }
  .about-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 40px;
  }
  .about-section .about-image {
    width: 100%;
  }
  .about-section .about-image img {
    width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
  }
  .about-section .about-text {
    flex-direction: column;
    width: 100%;
  }
  .about-section .about-text h5 {
    font-size: 1.2rem;
  }
  .about-section .about-text h1 {
    font-size: 2.8rem;
  }
  .about-section .about-text p {
    font-size: 1.1rem;
  }
  .about-section .about-button a {
    font-size: 0.8rem;
    padding: 10px 24px;
    min-width: unset;
    width: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: inline-block;
    margin-top: 1.5rem;
  }
  .services-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .services-section .services-text h1 {
    font-size: 2.9rem;
  }
  .services-section .services-text p {
    padding: 0 4vw;
    text-align: left;
    font-size: 1.1rem;
  }
  .services-section .services-cards {
    display: flex !important;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .team-section {
    flex-direction: column;
    min-height: unset;
    padding-top: 60px 4vw;
  }
  .team-section .team-text h1 {
    font-size: 2.9rem;
    padding-bottom: 15px;
  }
  .team-section .team-text p {
    font-size: 1.1rem;
  }
  .team-section .team-text .team-cards li {
    font-size: 1.4rem;
  }
  .team-section .team-image {
    width: 100%;
    height: auto;
    display: block;
    flex: none;
  }
  .team-section .team-image img {
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
  }
  .product-section .product-text h1 {
    font-size: 2.8rem;
  }
  .product-section .product-text p {
    padding: 0 4vw;
    text-align: left;
  }
  .product-section .product-carousel {
    display: block !important;
    width: 100%;
    padding: 0 6vw;
  }
  .product-section .splide__slide {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .product-section .longstrip-carousel h1 {
    font-size: 2.7rem;
    margin-bottom: 1.3rem;
  }
  .product-container {
    grid-template-columns: 1fr;
  }
  .product-image-box {
    min-height: 120px;
    max-height: 140px;
  }
  .product-image-box img {
    width: 100%;
    height: 100%;
  }
  .product-caption {
    padding: 0 1rem;
  }
  .product-back-btn-wrapper {
    padding-left: 0;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .product-back-btn-wrapper .product-back-btn {
    margin-left: 0;
  }
  .warehouse-section .warehouse-content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .warehouse-section .warehouse-content .warehouse-text {
    padding: 24px 4vw 0 4vw;
    text-align: left;
  }
  .warehouse-section .warehouse-content .warehouse-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
  .warehouse-section .warehouse-content .warehouse-text p {
    font-size: 1.1rem;
  }
  .warehouse-section .warehouse-content .warehouse-images {
    padding: 0 6vw 24px 6vw;
    align-items: center;
  }
  .warehouse-section .warehouse-content .warehouse-images #main-warehouse-img {
    max-width: 100%;
    margin-right: 0;
  }
  .warehouse-section .warehouse-gallery {
    padding: 0 6vw;
    margin-top: 0;
  }
  .warehouse-section .warehouse-gallery .warehouse-thumbnails {
    gap: 8px;
    max-width: 100%;
  }
  .warehouse-section .warehouse-gallery .warehouse-thumbnails .thumb {
    height: 100px;
    max-width: 33vw;
    min-width: 0;
    border-radius: 10px;
  }
  .partners-section {
    padding-top: 40px;
  }
  .partners-section .partners-text h1 {
    font-size: 2.8rem;
  }
  .partners-section .partners-text p {
    padding: 0 4vw;
    text-align: left;
    font-size: 1.1rem;
  }
  .partners-section .partners-accounts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  .partners-section .partners-accounts h1 {
    font-size: 1.5rem;
  }
  .partners-section .partners-accounts h3 {
    font-size: 1.1rem;
  }
  .contact-us-section {
    flex-direction: column;
    gap: 32px;
  }
  .contact-us-section .contact-us-text {
    width: 100%;
    max-width: 100%;
  }
  .contact-us-section .contact-us-text h5 {
    font-size: 1.2rem;
  }
  .contact-us-section .contact-us-text h1 {
    font-size: 2.8rem;
  }
  .contact-us-section .contact-us-text p {
    font-size: 1.1rem;
  }
  .contact-us-section .contact-us-text .contact-details .contact-row img {
    width: 40px;
    height: 40px;
  }
  .contact-us-section .contact-us-text .contact-details .contact-info p {
    font-size: 0.7rem;
  }
  .contact-us-section .contact-us-text .contact-details .contact-info p:first-child {
    font-size: 1.2rem;
  }
  .contact-us-section .contact-gmaps {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    height: 300px;
  }
  .contact-bottom-vector {
    margin: 0;
    padding: 0;
    line-height: 0;
  }
  .contact-bottom-vector img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  footer {
    padding: 32px 0 0 0;
  }
  footer .footer-text {
    text-align: center;
    padding: 0 2vw 24px 2vw;
  }
  footer .footer-text h1 {
    font-size: 2rem;
  }
  footer .footer-text p {
    font-size: 1.1rem;
  }
  footer .footer-social-media {
    text-align: center;
    margin-bottom: 40px;
  }
  footer .footer-social-media h4 {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }
  footer .footer-social-media .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
  }
  footer .footer-social-media a img {
    width: 40px;
    height: 40px;
  }
  footer .copyright-footer {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
    padding: 16px 0 16px 0;
    padding-bottom: 3px 0 3px 0;
  }
  footer .copyright-footer .copyright-text {
    width: 100%;
    text-align: center !important;
    font-size: 16px;
    margin: 0;
    padding: 0;
  }
  footer .copyright-footer .copyright-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    text-align: center !important;
    margin-bottom: 8px;
    font-size: 16px;
    gap: 30px;
  }
}
@media (max-width: 900px) {
  header.sticky {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navigation {
    display: none !important;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
    width: 90vw;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    padding: 20px 15px;
    text-align: center;
  }
  .navigation.open {
    display: block !important;
  }
  .navigation ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
  }
  .navigation ul li {
    display: block;
    margin: 0;
  }
  .navigation ul li a,
  .navigation ul li .nav-button {
    font-size: 1.2rem;
    color: #0066ff;
    padding: 10px 0;
    display: block;
    border-radius: 8px;
    transition: background 0.2s;
    max-width: 250px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
  .navigation ul li a:hover,
  .navigation ul li .nav-button:hover {
    background: #f0f4ff;
  }
  .burger-menu {
    display: flex !important;
  }
  .about-section {
    flex-direction: column;
    gap: 24px;
    padding: 40px 5vw;
  }
  .team-section {
    flex-direction: column;
    min-height: unset;
  }
  .team-section .team-text {
    padding: 40px 6vw 24px 6vw;
  }
  .team-section .team-image {
    width: 100%;
    height: auto;
    display: block;
    flex: none;
  }
  .team-section .team-image img {
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
  }
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer-text h1 {
    font-size: 2rem;
  }
  footer .footer-text p {
    font-size: 1.1rem;
    margin: 0 50px;
  }
  footer .copyright-footer {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  footer .copyright-text {
    width: 100%;
    text-align: center !important;
    font-size: 20px;
    margin: 0;
    padding: 0;
  }
  footer .copyright-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    text-align: center !important;
    margin-bottom: 6px;
    font-size: 20px;
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  footer .footer-text h1 {
    font-size: 2.1rem;
  }
  footer .footer-text p {
    font-size: 0.5rem;
    margin: 0 50px;
  }
}
@media (max-width: 1400px) {
  footer .footer-text h1 {
    font-size: 2.7rem;
  }
  footer .footer-text p {
    font-size: 1.3rem;
    margin: 0 50px;
  }
}/*# sourceMappingURL=mobile.css.map */