:root {
  --navy-blue: #06186a;
  --mid-blue: #2443ce;
  --light-blue: #70cddd;
  --box-shadow-blue: rgba(112, 205, 221, 0.19);
  --primary-white: ghostwhite;
  --box-shadow: rgba(0, 0, 0, 0.2);
  --primary-black: #000;
  --faded-black: rgba(0, 0, 0, 0.6);
  --image-gray: #f0eff4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.padding-two {
  padding: 10px 20px;
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  position: relative;
}
.mobile-link-section {
  display: none;
}
/*---------------------------------- welcome section--------------------------------------------------------- */

.welcome-section {
  width: 100%;
  height: 100vh;
  position: relative;
}
/* nav section */
.nav-bar {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-white);
  box-shadow: 0 0 5px var(--box-shadow);
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 10;
}
.logo-div {
  width: 10%;
  height: 90px;
}

.logo-div img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.toggle-btn {
  display: none;
}

.link-section {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.links {
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.links .link a {
  text-decoration: none;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #333333;
  transition: 0.5s;
  font-weight: 400;
  transition: 0.5s;
}

.links .link a:hover {
  color: var(--mid-blue);
}

#mobile-link {
  display: none;
}

/* the slider section  */

.welcome-swipper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.swiper-slide .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /* background: linear-gradient(45deg, var(--navy-blue), var(--primary-white)); */
  background-color: var(--primary-black);
  opacity: 0.5;
  z-index: 3;
}

.swiper-slide .hero-text {
  text-align: center;
  padding: 50px;
  z-index: 4;
  color: var(--primary-white);
}

.swiper-slide .hero-text h1 {
  font-size: 3rem;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  /* color: var(--navy-blue); */
}

.swiper-slide .hero-text h2 {
  font-size: 1rem;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.swiper-slide .hero-btns {
  padding: 50px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide .hero-btns a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--primary-black);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--primary-white);
  font-size: 1.2rem;
  transition: 0.5s;
}

.swiper-slide .hero-btns a:hover {
  background-color: var(--light-blue);
}
.swiper-slide .hero-btns a:active {
  transform: scale(0.8);
}

.coporate-wear {
  background: url("../img/home/hero-coporate.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.school-wear {
  background: url("../img/home/hero-school.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.protective-wear {
  background: url("../img/home/home.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* the products preview */
#catalogue-div {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--box-shadow);
  bottom: 0;
  left: 0;
  z-index: 5;
  display: none;
}
.products-preview {
  height: 100%;
  width: 100%;
  background-color: var(--box-shadow);
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
}
.catalogue-section {
  width: 90%;
  height: 80%;
  background-color: var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  overflow: hidden;
}

.catalogue-product {
  height: 95%;
  width: 20%;
  /* box-shadow: 4px 4px 4px var(--box-shadow); */
  overflow: hidden;
  position: relative;
}

.catalogue-product img {
  width: 100%;
}

.catalogue-product-name {
  width: 70%;
  height: 5%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--primary-black);
  background-color: var(--primary-white);
  box-shadow: 0 0 4px var(--box-shadow);
}

/* ------------------------ The rest of the page ------------------------------------------ */
/* ---------------------------------------------------------------------------------------- */

/* generic elements */

.section-header {
  padding: 20px 0;
  font-size: 1.5rem;
  color: #222222;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Brief summary */
.brief-summary {
  margin-top: 20px;
  margin-bottom: 20px;
}

.brief-summary-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.actual-summary {
  padding: 5px 10px;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.summary-link {
  text-decoration: none;
  color: var(--primary-black);
  border: 2px solid var(--light-blue);
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.5s;
}
.summary-link:hover {
  background-color: var(--mid-blue);
  color: white;
  border: none;
}
.locate-us-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.locate-us-detail {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
}

.locate-us-link {
  text-decoration: none;
  color: var(--primary-black);
  border: 2px solid var(--light-blue);
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 10px;
  margin-top: 20px;
  transition: 0.5s;
}

.locate-us-link:hover {
  background-color: var(--mid-blue);
  color: white;
  border: none;
}

/* ---Our Products--- */

.our-products {
  padding: 0 50px;
}

.product-card {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* .product-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    opacity: 0.5;
    display: none;
    transition: 0.5s;
}
.product-overlay a{
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-white);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
} */

.product-img-div {
  width: 100%;
  height: 100%;
}
.product-img-div img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.5s;
}
.product-img-div img:hover {
  transform: scale(1.05);
}

.category-link {
  width: 80%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 0;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--primary-black);
  background-color: var(--primary-white);
  box-shadow: 0 0 2px var(--box-shadow);
  transition: 0.5s;
}

.category-link:hover {
  background-color: var(--light-blue);
}

.product-description-div {
  width: 80%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-black);
  background-color: var(--primary-white);
  box-shadow: 0 0 2px var(--box-shadow);
}

.category {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
}

.description {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0;
  padding: 0 5px;
}

/* why Us section */
.swiper-wrapper.logos-wrapper {
  transition-timing-function: linear;
}

.swiper-slide.logos {
  width: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.swiper-slide.logos img {
  width: 220px;
}

.client-testimonials {
  margin: 20px 0;
  background-color: var(--image-gray);
  padding-bottom: 50px;
}

.section-intro.black {
  color: var(--primary-black);
  padding-top: 10px;
  padding-bottom: 30px;
}

.testimonial-card {
  /* border-radius: 5px; */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 0;
  background-color: var(--primary-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.testimonial {
  color: var(--primary-black);
  width: 100%;
  text-align: justify;
  padding: 30px 10px 40px 10px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
}

.testimonial i {
  font-size: 1.5rem;
  color: var(--light-blue);
}

.profile-and-name {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 40px 10px 10px 10px;
}

/* .client-image{
  width: 60px;
  height: 60px;
  border: 1px solid var(--primary-black);
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/testimonials/dummy.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} */

.client-name {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.clients-section {
  /* box-shadow: inset 0 0 5px var(--box-shadow); */
  padding: 20px;
  margin: 20px auto;
}

.clients-header {
  padding: 5px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dull-black);
  letter-spacing: 1px;
  text-transform: capitalize;
}

.clients-header.testimonies {
  padding: 5px 10px;
}

.client-logo-div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo-div img {
  width: 100%;
}

/* ---contact us--------- */
.contact-us {
  margin: 0;
  background-color: var(--navy-blue);
}

.map-row {
  margin: 10px 0 0 0;
  padding: 0;
}

.contacts-section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.contacts-section-card i {
  color: var(--light-blue);
}

.contact-section-heading {
  font-size: 1.4rem;
  color: var(--primary-white);
  padding: 20px;
}
.contact-div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--primary-white);
  margin: 10px 0;
}
.contact-div-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 50%;
}
.quick-link {
  text-decoration: none;
  color: var(--primary-white);
  padding: 10px 5px;
}

.order-form {
  width: 90%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-input-c {
  width: 100%;
  height: 50px;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.form-input-c:focus,
.form-input-c:valid {
  outline: transparent;
}

.form-text-area {
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  padding: 20px;
}

.form-text-area:focus,
.form-text-area:valid {
  outline: transparent;
}

.place-order-btn {
  padding: 15px 40px;
  background-color: var(--mid-blue);
  color: var(--primary-white);
  border: none;
  margin: 20px;
  border-radius: 20px;
  transition: 0.5s;
}

.place-order-btn:hover {
  background-color: var(--light-blue);
  color: var(--primary-white);
}

.place-order-btn:active {
  transform: scale(0.8);
}

.footer-devider {
  width: 90%;
  height: 5px;
  background-color: var(--primary-white);
  margin: 0 auto;
}

.social-media-div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.social-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social-links a {
  text-decoration: none;
  color: var(--primary-white);
  padding: 5px;
  font-size: 1.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--primary-white);
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

@media (max-width: 1000px) {
  #preview-view {
    display: none;
  }

  #mobile-link {
    display: block;
  }

  .toggle-btn {
    display: block;
    cursor: pointer;
    color: var(--mid-blue);
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
  }
  .link-section {
    display: none;
  }

  .mobile-link-section.show {
    position: absolute;
    display: block;
    z-index: 7;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .mobile-link-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
  }

  .mobile-links {
    width: 90%;
    height: 80%;
    background-color: var(--light-blue);
    border-radius: 10px;
    padding: 10px;
  }

  .mobile-link {
    width: 100%;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-link a {
    text-decoration: none;
    text-transform: capitalize;
    color: var(--primary-black);
    transition: 0.5s;
    font-size: medium;
    font-weight: 500;
    transition: 0.5s;
  }

  .mobile-link a:hover {
    color: var(--mid-blue);
  }

  .hero-text {
    text-align: center;
  }

  .hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card,
  .testimonial-card,
  .about-us-card {
    margin-top: 20px;
  }

  .order-form {
    width: 100%;
    padding: 0;
  }
  /* .clients-section{
    display: none;
  } */
  .locate-us-detail {
    margin-top: 20px;
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    text-align: center;
  }
  .school-wear,
  .protective-wear {
    background: url("../img/home/hero-school-small.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .product-card {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
  }

  .footer-devider {
    width: 100%;
    height: 5px;
    background-color: var(--primary-white);
    margin: 0 auto;
  }
  .social-media-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: baseline;
  }
  .social-media-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .social-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
