@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200..700&display=swap");
/* Overides */
.bg-light-1 {
  background-color: #E3ECFA;
}

#anHeader {
  background-color: #ffffff;
}
#anHeader .logo img {
  height: 40px !important;
  margin: 0px;
}
@media (max-width: 992px) { 
  #anHeader .logo img {
    height: 30px !important;
  }
}

.menu-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.menu-wrapper li a {
  color: #000000 !important;
  text-transform: uppercase;
  transition: all 0.2s;
}
.menu-wrapper li a:hover {
  color: #2056A2 !important;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .menu-wrapper li a {
    font-size: 16px !important;
  }
}
.menu-wrapper .contact-icon a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #2057a3;
  text-decoration: none;
  color: white;
}
.menu-wrapper .contact-icon a i {
  color: white;
  font-size: 20px;
}

/* End of Overides */
.bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  font-family: "Inter", sans-serif;
  color: black;
  font-size: 16px;
  line-height: 24px;
}

main {
  min-height: 100vh;
}
@media (max-width: 992px) {
  main {
    padding-top: 76px;
  }
}

.shadowed-box {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}

.hidden {
  display: none !important;
}

/* Hero Section */
.heroSection {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-repeat: no-repeat;
  position: relative;
  background: #08121d;
}
.heroSection .gradientBubble {
  height: 120vh;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #2056A2, #E3ECFA);
  animation: _rotate_1hn82_1 14s infinite;
  animation-delay: 0.5s;
  filter: blur(120px);
  z-index: 1;
}
@media (max-width: 992px) {
  .heroSection .gradientBubble {
    height: 80vh;
    top: 50vh;
  }
}
.heroSection .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.heroSection .hero-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url("/assets/images/hero-thing.svg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.3;
}
.heroSection .inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  width: calc(100% - 40px);
  padding: 25px;
}
@media (max-width: 992px) {
  .heroSection .inner {
    flex-direction: column;
    gap: 30px;
  }
}
.heroSection .inner .left {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.heroSection .inner .left h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 56px;
  text-align: left;
  color: white;
}
@media (max-width: 992px) {
  .heroSection .inner .left h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
.heroSection .inner .left p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: white;
}
@media (max-width: 992px) {
  .heroSection .inner .left {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .heroSection .inner .left h1,
  .heroSection .inner .left p {
    text-align: center;
  }
}
.heroSection .inner .right {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 992px) {
  .heroSection .inner .right {
    width: 100%;
  }
}
.heroSection .inner .right img {
  max-width: 100%;
  max-height: 100%;
}

@keyframes _rotate_1hn82_1 {
  0% {
    rotate: 0deg;
  }
  50% {
    scale: 1 1.35;
  }
  100% {
    rotate: 360deg;
  }
}
/* End of Hero Section */
#stickyPhone {
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
  border: 0px !important;
  transition: all 0.2s;
}
#stickyPhone:hover {
  background-color: white !important;
  background: white !important;
  color: #2056A2 !important;
}

@media (max-width: 992px) {
  #anHeader .header-content .menu-wrapper .mobile-menu-toggler {
    margin-right: 12px;
  }
  #anHeader .header-content .menu-wrapper .mobile-menu-toggler i {
    color: #2056A2 !important;
  }
  .menu.active {
    background-color: #ffffff !important;
  }
}
#main-footer {
  background-color: #08121d;
}

.wrapper-features {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .wrapper-features {
    flex-direction: column;
  }
}
.wrapper-features .item {
  padding: 35px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: calc(33.3333333333% - 12px);
  border: 3.2px solid;
  border-image: linear-gradient(to bottom right, #32a6e4, #164475, #79cbb3) 1;
  border-radius: 4px;
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(6, 23, 40, 0.1607843137);
  display: flex;
  transition: all 0.2s;
}
@media (max-width: 992px) {
  .wrapper-features .item {
    width: 100%;
  }
}
.wrapper-features .item .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #21506f;
}
.wrapper-features .item .icon-wrapper img {
  width: 34px;
  height: 34px;
}
.wrapper-features .item .icon-wrapper i {
  font-size: 24px;
  color: white;
}
.wrapper-features .item h3 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  margin: 0px;
  padding: 0px;
}
.wrapper-features .item p {
  color: white;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 0;
  padding: 0;
}
.wrapper-features .item.light h3 {
  color: #2056A2;
}
.wrapper-features .item.light p {
  color: black;
}
.wrapper-features .item:hover {
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
}
.wrapper-features .item:hover h3,
.wrapper-features .item:hover p {
  color: white;
}

.faq-section .faq-categories {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-section .faq-categories .item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  border: 1px solid white;
  cursor: pointer;
  padding: 10px 25px;
}
.faq-section .faq-categories .item span,
.faq-section .faq-categories .item i {
  color: #2056A2;
}
.faq-section .faq-categories .item i {
  font-size: 20px;
}
.faq-section .faq-categories .item span {
  font-size: 18px;
  font-weight: bold;
}
.faq-section .faq-categories .item.selected, .faq-section .faq-categories .item:hover {
  background-color: #2056A2;
  border: 1px solid #2056A2;
}
.faq-section .faq-categories .item.selected span,
.faq-section .faq-categories .item.selected i, .faq-section .faq-categories .item:hover span,
.faq-section .faq-categories .item:hover i {
  color: white;
}

/* FAQ Pricing */
.faq-section {
  background-color: #0b2542;
}
.faq-section .faq-wrapper {
  padding-top: 30px;
}
.faq-section .accordion1 .accordion-item1 {
  border-bottom: 1px solid rgba(195, 190, 183, 0.1215686275);
}
.faq-section .accordion1 .accordion-item1 button[aria-expanded=true] {
  border-bottom: 1px solid rgba(195, 190, 183, 0.1215686275);
}
.faq-section .accordion1 button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: white;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.faq-section .accordion1 button:hover, .faq-section .accordion1 button:focus {
  cursor: pointer;
  color: #E3ECFA;
}
.faq-section .accordion1 button:hover::after, .faq-section .accordion1 button:focus::after {
  cursor: pointer;
  color: #E3ECFA;
  border: 1px solid #E3ECFA;
}
.faq-section .accordion1 button .accordion-title1 {
  padding: 1em 1.5em 1em 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .faq-section .accordion1 button .accordion-title1 {
    font-size: 20px;
    line-height: 28px;
  }
}
.faq-section .accordion1 button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.faq-section .accordion1 button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.faq-section .accordion1 button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.faq-section .accordion1 button[aria-expanded=true] {
  color: #E3ECFA;
}
.faq-section .accordion1 button[aria-expanded=true] .icon::after {
  width: 0;
}
.faq-section .accordion1 button[aria-expanded=true] + .accordion-content1 {
  opacity: 1;
  max-height: fit-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.faq-section .accordion1 .accordion-content1 {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.faq-section .accordion1 .accordion-content1 p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin: 2em 0;
  color: white;
}

/* End of FAQ Pricing */
#testimonials {
  background: url("/assets/images/testimonials-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#testimonials .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 237, 255, 0.86);
  z-index: 2;
}
#testimonials .an-page-title h2 {
  color: #2056A2;
}
#testimonials .an-page-title,
#testimonials .swiper-carousel-container {
  z-index: 3;
  position: relative;
}
#testimonials .testimonial-box {
  background: linear-gradient(45deg, #daf5ff, #ffffff);
  padding: 24px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#testimonials .testimonial-box p {
  margin: 0;
  padding: 0;
  text-align: center;
}
#testimonials .testimonial-box .message {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
#testimonials .testimonial-box .author {
  font-size: 16px;
  font-weight: bold;
  color: #244b78;
  font-style: italic;
}
#testimonials .testimonial-box .stars-wrapper .stars {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
#testimonials .testimonial-box .stars-wrapper .stars i {
  color: #2056A2;
}

/* Contact */
#contact {
  background: #08121d;
  padding: 100px 0px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ededed;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 18px;
  color: black;
  font-weight: bold;
  background-color: white;
  /* placeholder */
  transition: 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: black;
  opacity: 0.7;
}
.contact-form .an-btn {
  width: 100%;
}
.contact-form.enquiry {
  width: 100%;
  border: 2px solid #ededed;
  padding: 24px;
}
.contact-form.enquiry .text-center {
  font-size: 20px;
  font-weight: bold;
  color: #2056A2;
}

/* End of Contact */
/* Form */
.input-row.mb {
  margin-bottom: 25px;
}

.input-row.half {
  display: flex;
  align-items: top;
  justify-content: space-between;
}
.input-row.half .input-group {
  width: 48%;
}

@media (max-width: 992px) {
  .input-row.half {
    flex-wrap: wrap;
  }
  .input-row.half .input-group {
    width: 100%;
  }
  .input-row.half .input-group:first-child {
    margin-bottom: 15px;
  }
}
/* End of Form */
.type-of-services {
  background-color: #f1f8ff;
}
.type-of-services .section-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}
.type-of-services .section-title-wrapper .subtitle {
  font-size: 24px;
  font-weight: 400;
  color: black;
  opacity: 0.6;
  text-align: center;
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
}
.type-of-services .section-title-wrapper h3 {
  font-size: 36px;
  line-height: 44px;
  color: #2056A2;
  text-align: center;
  margin: 0;
}
.type-of-services .section-title-wrapper p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
}
.type-of-services .wrapper-features {
  display: flex;
  flex-wrap: wrap;
}
.type-of-services .wrapper-features .item {
  width: calc(33.3333333333% - 16px);
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 0px;
  border: none;
  border-radius: 0;
  transition: 0.5sease-in-out;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(6, 23, 40, 0.1607843137);
  display: flex;
  transition: all 0.2s;
  background: linear-gradient(45deg, #dcecff, #ffffff);
}
@media (max-width: 992px) {
  .type-of-services .wrapper-features .item {
    width: 100%;
  }
}
.type-of-services .wrapper-features .item:hover {
  transition: 0.2s all;
  background: linear-gradient(45deg, #dcecff, rgba(47, 217, 187, 0.3215686275));
}
.type-of-services .wrapper-features .item:hover h3,
.type-of-services .wrapper-features .item:hover p {
  color: inherit !important;
}
.type-of-services .wrapper-features .item:hover h3 {
  color: #2056A2 !important;
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefits-wrapper .item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.benefits-wrapper .item .icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: linear-gradient(135deg, rgb(50, 136, 235) 0%, rgb(59, 187, 222) 50%, rgb(41, 235, 165) 100%);
  flex: none;
}
.benefits-wrapper .item .icon-wrapper i {
  color: white;
  font-size: 24px;
}
.benefits-wrapper .item .text {
  padding: 0px;
  margin: 0px;
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: black;
}

.footer-logo img {
  height: 55px;
  max-width: 100%;
}
@media (max-width: 992px) {
  .footer-logo img {
    width: 100%;
    max-height: 30px;
  }
}

.contact-footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-footer-wrapper .item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .contact-footer-wrapper .item {
    justify-content: center;
  }
}
.contact-footer-wrapper .item .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E3ECFA;
  color: black;
  width: 24px;
  height: 24px;
  border-radius: 12px;
}
.contact-footer-wrapper .item .icon-wrapper i {
  font-size: 16px;
}
.contact-footer-wrapper .item p {
  margin: 0;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

#smashed-phone {
  background-color: #dcf6fe;
}

@media (max-width: 992px) {
  .an-col.p20 {
    padding: 0px !important;
  }
}

.loader-section {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 18, 29, 0.7882352941);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-section .inner i {
  font-size: 64px;
  color: white;
  animation: _rotate_1hn82_1 2s infinite;
}

@keyframes _rotate_1hn82_1 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about-actions .second {
  background-color: white;
  border: 1px solid #2056A2;
  border-radius: 4px;
  padding: 12px 24px;
  color: #2056A2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}
.about-actions .second:hover {
  background-color: #2056A2;
  color: white;
  transition: 0.2s all;
}

/* Hero 1 */
.hero1 {
  position: relative;
  background: url("/assets/images/hero-truck-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero1 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 64px 0px;
  min-height: 400px;
  max-width: 800px;
  width: calc(100% - 24px);
  margin: 0 auto;
}
.hero1 .inner .top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero1 .inner .top h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: center;
  color: white;
}
.hero1 .inner .top p {
  font-size: 18px;
  color: white;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0;
}
.hero1 .inner .top p strong {
  font-weight: bold;
}
.hero1 .inner .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero1 .inner .bottom .authorized {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background-color: white;
  flex-wrap: wrap;
  width: fit-content;
}
.hero1 .inner .bottom .authorized span {
  font-size: 14px;
  font-weight: bold;
  color: black;
}
.hero1 .inner .bottom .authorized img {
  height: 40px;
}

/* End of Hero 1 */
/* Home Form */
.homeForm {
  position: relative;
  z-index: 3;
  margin-top: -32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeForm .inner {
  max-width: 800px;
  background-color: white;
  width: calc(100% - 24px);
  margin: 0 auto;
  padding: 32px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.homeForm .inner .title-wrapper p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}
.homeForm .inner .title-wrapper h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.6;
  color: black;
  text-align: center;
  margin: 0;
  padding: 0px;
}
.homeForm .inner .form-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.homeForm .inner .form-groups .group {
  width: calc(33.3333333333% - 16px);
}
@media (max-width: 992px) {
  .homeForm .inner .form-groups .group {
    width: 100%;
  }
}
.homeForm .inner .form-groups .group select, .homeForm .inner .form-groups .group input {
  background-color: white;
  border: 1px solid #DFEAF2;
  border-radius: 6px;
  padding: 8px 12px;
  color: black;
  font-size: 16px;
  width: 100%;
  transition: 0.2s all;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.homeForm .inner .form-groups .group select:focus, .homeForm .inner .form-groups .group input:focus {
  border-color: #2056A2;
}
.homeForm .inner .search-button-full {
  text-decoration: none;
  width: 100%;
  border-radius: 6px;
  background-color: #2056A2;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #2056A2;
  cursor: pointer;
}
.homeForm .inner .search-button-full i, .homeForm .inner .search-button-full span {
  color: white;
}
.homeForm .inner .search-button-full span {
  font-weight: 600;
}
.homeForm .inner .search-button-full:hover {
  background-color: white;
  transition: 0.2s all;
}
.homeForm .inner .search-button-full:hover i, .homeForm .inner .search-button-full:hover span {
  color: #2056A2;
}

/* End of Home Form */
.home-whys-boxes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.home-whys-boxes .box {
  width: calc(25% - 24px);
  background-color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1200px) {
  .home-whys-boxes .box {
    width: calc(50% - 24px);
  }
}
@media (max-width: 992px) {
  .home-whys-boxes .box {
    width: 100%;
  }
}
.home-whys-boxes .box .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-whys-boxes .box h4 {
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin: 0;
  padding: 0;
  text-align: center;
}
.home-whys-boxes .box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: black;
  margin: 0;
  padding: 0;
}

.products-listing-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.products-listing-wrapper .product-box {
  width: calc(25% - 24px);
}
@media (max-width: 1200px) {
  .products-listing-wrapper .product-box {
    width: calc(50% - 24px);
  }
}
@media (max-width: 992px) {
  .products-listing-wrapper .product-box {
    width: 100%;
  }
}

.product-box {
  background-color: white;
  border: 1px solid #E3E3E3;
  text-decoration: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}
.product-box:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.product-box .image-wrapper {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  padding: 8px;
  position: relative;
}
.product-box .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-box .image-wrapper .badges-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.product-box .image-wrapper .badges-wrapper .badge {
  padding: 4px 12px;
  border-radius: 20px;
}
.product-box .image-wrapper .badges-wrapper .badge span {
  font-size: 14px;
  font-weight: bold;
}
.product-box .image-wrapper .badges-wrapper .badge.type-1 {
  background-color: #BBD2F3;
}
.product-box .image-wrapper .badges-wrapper .badge.type-1 span {
  color: #0C1F3A;
}
.product-box .image-wrapper .badges-wrapper .badge.type-2 {
  background-color: #ffffff;
  border: 1px solid #BBD2F3;
}
.product-box .image-wrapper .badges-wrapper .badge.type-2 span {
  color: #0C1F3A;
}
.product-box .meta {
  border-top: 1px solid #E3E3E3;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
}
.product-box .meta p {
  margin: 0;
  padding: 0;
}
.product-box .meta .title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  color: black;
}
.product-box .meta .price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: black;
}

.btn-primary {
  background-color: #2056A2 !important;
  border: 1px solid #2056A2 !important;
  border-radius: 0px !important;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: fit-content;
  color: white !important;
  transition: 0.2s all;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: white !important;
  color: #2056A2 !important;
  transition: 0.2s all;
}

.page-title-section {
  background-color: #e9f2ff;
}

.contact-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}
.contact-items-wrapper .item {
  width: calc(33.3333333333% - 32px);
  background-color: white;
  padding: 24px;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 992px) {
  .contact-items-wrapper .item {
    width: 100%;
  }
}
.contact-items-wrapper .item .icon-wrapper {
  background-color: #2056A2;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 32px;
  margin: 0 auto;
  font-size: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.contact-items-wrapper .item p {
  color: black;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  padding: 0;
}

.form-control:focus {
  outline: none;
  border: inherit !important;
  box-shadow: none !important;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table thead {
  background-color: #f1f1f1;
}
.table thead th {
  padding: 12px;
  font-weight: bold;
  color: black;
  text-align: left;
}
.table tbody tr {
  border-bottom: 1px solid #f1f1f1;
}
.table tbody tr td {
  padding: 12px;
  color: black;
}
.table.table-striped tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

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