@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;1,100;1,200;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,200;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,200;0,300;1,100;1,200;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo&family=Montserrat:ital,wght@0,700;1,200;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,200;0,300;1,100;1,200;1,300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
body {
  font-family: var(--ff--sans-normal);
  font-size: var(--fs-400);
  color: #332549;
  background-color: hsl(var(--clr-dark));
  line-height: 1.5;
  min-height: 100px;
  font-family: "Arvo", serif;

  display: grid;

  overflow-x: hidden;
}
img,
picture {
  max-width: 100%;
  display: block;
}
.flex {
  display: flex;
  gap: var(--gap, 1rem);
}
/* primary header */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #ccc;
  padding-right: 20px;
}
.back-video {
  opacity: 0.5;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.logo {
  margin: 8.5px;
  cursor: pointer;
  width: 76px;
}
.logo-text {
  text-align: center;
  padding-top: 15px;
}
.logo-text a {
  font-weight: 800;
  text-decoration: none;
}
.Asar {
  font-size: 20px;
  padding-left: 10.5px;
  letter-spacing: 9.5px;
}
.Custom {
  font-size: 15px;
  padding-left: 10px;
  letter-spacing: 6px;
}
.Clearance {
  font-size: 13px;
  padding-left: 7px;
  letter-spacing: 4px;
}
.heading {
  display: flex;
  justify-content: left;
}
.primary-header {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80vh;
  background: linear-gradient(hsla(240, 10%, 67%, 0.5), rgba(0, 0, 0, 0.5));
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
}
.primary-navigation {
  --gap: 4em;
  list-style: none;
  margin: 0;
  text-decoration: none;
}
.primary-navigation li a {
  color: #332549;
  text-decoration: none;
}
.mobile-nav-toggle {
  display: none;
}
/* body of the header heroooo */
.content {
  width: 90%;
  color: #332549;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 62px;
  line-height: 90px;
  font-weight: 700;
  color: #332549;
}
.content p {
  font-family: "Arvo", serif;
  margin: 10px 0 40px;
  font-size: 23px;
  font-weight: 400;
  line-height: 40px;
}
.buttona {
  border: none;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
}

.button1 {
  background-color: rgba(255, 255, 255, 0);
  color: black;
  border: 2px solid #332549;
  border-radius: 30px;
  padding: 10px 35px;
}

.button1:hover {
  background-color: #332549;
  color: white;
}
.links {
  margin-top: 30px;
}
.links a {
  color: #332549;
  text-decoration: none;
  display: inline-block;
}
.btn {
  text-decoration: none;
  border: 2px solid #332549;
  padding: 10px 35px;
  border-radius: 30px;
  margin-right: 15px;
}
/* about us */
.section {
  margin-bottom: 30px;
  height: 100%;
  width: 100%;
  background-color: #ccc;
}
.section .container-about {
  width: 80%;
  display: block;
  margin: 0px auto;
  padding: 50px 0px;
}
.container-about .title {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.container-about .title h2 {
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 700;
  color: #332549;
}
.container-about .title h2::after {
  content: "";
  height: 5px;
  width: 100px;
  background-color: #332549;
  border-radius: 25px;
  display: block;
  margin: auto;
}
.content-about {
  float: left;
  width: 55%;
}
.image-section {
  float: right;
  width: 30%;
}
.image-section img {
  width: 100%;
  height: auto;
}
.content-about .article h3 {
  font-weight: 400;
  color: #332549;
  font-size: 18px;
}
.content-about .article p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #4c3b67;
}
.content-about .article .button {
  margin-top: 50px;
}
.container-about .article .button a {
  text-decoration: none;
  padding: 8px 25px;
  background-color: #332549;
  border-radius: 40px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.5px;
}
.container-about .article .button a:hover {
  color: #fff;
  background-color: #4c3b67;
  transition: 1s ease;
}
/* services section */
.services {
  background-color: #ccc;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
.serv {
  max-width: 1100px;
  line-height: 30px;
}
.vertical-line {
  border-left: 2px solid #000;
  display: inline-block;
  height: 20px;
  margin-bottom: 10px;
}
.s-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #332549;
}
.s-heading h1 {
  color: #332549;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 30px;
}
.s-heading h1::after {
  content: "";
  height: 5px;
  width: 100px;
  background-color: #332549;
  border-radius: 25px;
  display: block;
  margin: auto;
}
.s-box-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.s-box img {
  height: 75px;
}
.s-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 300px;
  height: 500px;
  padding: 20px 25px;
  box-sizing: border-box;
  margin: 30px;
  position: relative;
}
.s-box h4 {
  color: #332549;
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.s-box p {
  color: #4c3b67;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.s-btn {
  text-decoration: none;
  font-size: 20px;
  width: 140px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #4c3b67;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #332549;
  margin-top: 10px;
}
.s-box:hover {
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.08);
  transition: all ease 0.3s;
}
.s-btn:hover {
  background-color: #332549;
  border: 1px solid #332549;
  color: #ffffff;
  transition: all ease 0.3s;
}
.bar {
  width: 100px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  background-color: #4c3b67;
  border-radius: 0px 0px 10px 10px;
  display: none;
  animation: bar 0.5s;
}
.s-box:hover .bar {
  display: block;
}
@keyframes bar {
  0% {
    width: 0px;
  }
  100% {
    width: 100px;
  }
}

/* mobile view */
@media (max-width: 1430px) {
  .vertical-line {
    display: none;
  }
  /* header and hero */
  .content {
    width: 90%;
    color: #332549;
    position: absolute;
    text-align: center;
  }
  .content h1 {
    margin-top: 125px;
    font-family: "montserrat";
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    color: #332549;
  }
  .content p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
    margin: 10px 0 40px;
    font-size: 23px;
    font-weight: 400;
    line-height: 35px;
  }
  /* button */
  .buttona {
    border: none;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
  }

  .button1 {
    background-color: rgba(255, 255, 255, 0);
    color: black;
    border: 2px solid #332549;
    border-radius: 30px;
    padding: 10px 35px;
  }

  .button1:hover {
    background-color: #332549;
    color: white;
  }
  .links {
    margin-top: 30px;
  }
  .links a {
    color: #332549;
    text-decoration: none;
    display: inline-block;
  }
  .btn {
    text-decoration: none;
    border: 2px solid #332549;
    padding: 10px 35px;
    border-radius: 30px;
    margin-right: 15px;
  }
  .check-btn {
    font-size: 30px;
    color: #332549;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  .primary-navigation {
    --gap: 2em;

    position: fixed;
    z-index: 1000;
    inset: 0 0 0 50%;
    align-items: center;

    background: hsl(0 0% 0%/0.5);

    flex-direction: column;
    padding: min(30vh, 10rem) 2rem;
    transform: translateX(100%);
    transition: transform 1s ease-in;
  }
  @supports (backdrop-filter: blur(1rem)) {
    .primary-navigation {
      background: hsl(0 0% 100%/0.1);
      backdrop-filter: blur(1rem);
    }
  }
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    background-repeat: no-repeat;
    background: url(bars-solid.svg);
    width: 2rem;
    border: 0;
    aspect-ratio: 1;
    top: 1.5rem;
    right: 2rem;
  }
  .primary-navigation[data-visible="true"] {
    transition: 2s;
    transform: translateX(0%);
  }
  .primary-navigation[data-visible="false"] {
    transition: 2s;
    transform: translateX(100%);
  }
  /* .mobile-nav-toggle[aria-expanded="true"] {
    background-image: url(cross-svgrepo-com.svg);
  } */
  /* about */
  .section .container-about {
    width: 80%;
    display: block;
    margin: auto;
  }
  .content-about {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
  }
  .image-section {
    float: center;
    width: 100%;
    margin-top: 50px;
  }
  .image-section img {
    width: 40%;
    height: auto;
    display: block;
    margin: auto;
  }
  .container-about .title h2 {
    text-align: center;
    font-size: 30px;
  }
  .container-about .article .button {
    text-align: center;
  }
  .container-about .article .button a {
    padding: 6px 15px;
    font-size: 16px;
  }
  .s-box-container {
    flex-wrap: wrap;
  }
  /* services */
  .services {
    height: 100%;
    margin: auto;
  }
  .s-heading {
    margin: 15px;
  }
  .s-box {
    flex-grow: 1;
  }
}
/* @media (max-width: 574px) {
  .footer-col {
    width: 100%;
    margin-bottom: 30px;
  }
} */
h2 {
  font-weight: 700;
  font-size: 35px;
  text-align: center;
  padding: 20px;
}
h2::after {
  content: "";
  height: 5px;
  width: 100px;
  background-color: #332549;
  border-radius: 25px;
  display: block;
  margin: auto;
}
/* footer */
.container-f {
  max-width: 1170px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  background-color: rgb(41, 32, 57);
  padding: 70px 0;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h5 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
}
.footer-col h5::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 50;
  display: block;
  transition: all 0.3s ease;
}
.footer-colo ul li a:hover {
  color: black;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* contact form */
.container-contact {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 100%;
  padding: 2vw 4vw;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

form h3 {
  text-align: center;
  color: #332549;
  font-weight: 800;
  margin-bottom: 20px;
}
form input,
form textarea {
  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background: #f5f5f5;
  font-size: 16px;
}
form button {
  padding: 10px;
  background: #4c3b67;
  color: #fff;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto 0;
  border-radius: 30px;
}
