/* Import start here */

/* --------------------------------------------------Fonts--------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/*------------------------------------------------ Local import -------------------------------------------*/
@import url(./_variable.css);
@import url(./config.css);

/* ---------------------------------------------Import end here--------------------------------------- */

/* -----------------------------Navbar ------------------------------- */

nav {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("../assets/icons/menu.png");
}
nav a:first-child > div,
footer a:first-child > div {
  height: 50px;
}

footer a:first-child > div p,
nav a:first-child > div > p {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: var(--blue-color);
}

footer a:first-child > div img,
nav a:first-child > div img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

nav li.nav-item {
  margin-right: 20px;
}

nav li > a.nav-link,
nav li > p.nav-link {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: var(--black-color) !important;
  cursor: pointer;
}

.navbar-toggler:focus,
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0);
  border-color: transparent !important;
  box-shadow: 0 0 0 0rem !important;
}

nav ul ~ div.d-flex {
  display: none !important;
}

/* -----------------------------Button with (.btn) class------------------------------- */
button.btn {
  background-color: var(--blue-color);
  color: var(--primary-color);
  font-weight: 400;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 9px;
  transition: all 0.5s ease-in-out;
}

button.btn:hover:not(section.hero button.btn, footer button.btn) {
  background-color: var(--primary-color);
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
}

/* -----------------------------Section------------------------------- */
section {
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------------------Hero Section ------------------------------- */
section.hero {
}

section.hero > div,
section.hero div.row,
section.hero div.row > div {
  height: 90%;
}

section.hero div.row > div:first-child {
  height: 50%;
}

section.hero div.row > div:first-child > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: normal;
}

section.hero div.row > div:first-child > div > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 39px;
  line-height: 47px;
  color: var(--secondary-color);
}

section.hero div.row > div:first-child > div > p {
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  margin-top: 10px;
  color: black;
}

/* ---------Hero Section => button style --------------- */

section.hero button.btn,
footer button.btn {
  padding: 5px !important;
  max-width: 150px;
}

section.hero button.btn,
nav div.d-flex > button.btn,
footer button.btn {
  background-color: var(--black-color);
  border: 1.5px solid var(--blue-color);
  color: var(--blue-color);
  width: 28%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: var(--primary-color);
  text-align: left;
  line-height: 20px;
}

section.hero button.btn span,
nav div.d-flex > button.btn span,
footer button.btn span {
  font-weight: 500;
  font-size: 10px;
}

section.hero button.btn > img,
nav div.d-flex > button.btn > img,
footer button.btn > img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* ---------Hero Section => div for image style --------------- */
section.hero div.row > div:last-child {
  position: relative;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: normal;
  justify-content: start;
}

section.hero div.row > div:last-child > img {
  width: 90%;
  height: 100vh;
  align-self: flex-end;
}
/* --motto-- */
div.motto img {
  width: 50px;
  height: 50px;
  align-self: flex-start;
}

div.motto img:last-child {
  align-self: flex-end;
}

div.motto h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 58px;
  text-align: center;
  color: var(--dark-blue-color);
}

/* ----------------------------- About Section ------------------------------- */
section.about {
  margin: 150px 0;
  height: auto;
}

section.about h1,
section.testimonial h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 58px;
  color: var(--secondary-color);
}

section.about div.row > div > div > p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  color: var(--secondary-color);
  text-align: justify;
}

section.about div.frame {
  position: relative;
  width: 220px;
  height: 170px;
  border: 4.5px solid var(--blue-color);
}

section.about div.frame h4 {
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  width: 60%;
  color: var(--blue-color);
}

section.about div.frame img {
  height: 30px;
  width: 30px;
}

section.about div.frame div.d-flex:first-child img:nth-child(2) {
  transform: rotate(90deg);
}

section.about div.frame div.d-flex:not(:first-child) img:nth-child(2) {
  transform: rotate(180deg);
}

section.about div.frame div.d-flex:not(:first-child) img:nth-child(1) {
  transform: rotate(-90deg);
}

section.about div.frame > div.d-flex {
  position: absolute;
  width: 100%;
  padding: 10px;
  left: 0px;
  right: 0px;
}

section.about div.frame > div.d-flex:first-child {
  top: 0px;
}

section.about div.frame > div.d-flex:last-child {
  bottom: 0px;
}

/* ----------------------------- what_we_have_to_offer Section ------------------------------- */
section.what_we_have_to_offer {
  height: auto;
}

section.what_we_have_to_offer div.container > div.row > div > div:first-child {
  width: 100%;
}

section.what_we_have_to_offer div.container > div.row > div:first-child img {
  width: 35%;
  height: 100px;
  object-fit: contain;
}

section.what_we_have_to_offer div.container > div.row > div:first-child h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 38px;
  line-height: 38px;
  color: var(--secondary-color);
  margin: 10px 0;
}

section.what_we_have_to_offer div.container > div.row > div:first-child p {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  color: var(--black-color);
  line-height: 24px;
}

/* ---  al-meezan-card  ----*/
section.what_we_have_to_offer .al-meezan-card {
  width: 100%;
  padding: 20px;
  background-color: var(--gray-color);
  border-radius: 10px;
  text-align: center;
  margin: 10px;
  height: 230px;
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  > div.row
  > div:nth-child(2)
  .al-meezan-card {
  background-color: var(--light-blue-color);
  color: var(--blue-color);
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  > div.row
  > div:nth-child(3)
  .al-meezan-card {
  color: var(--sky-blue-color);
  background-color: var(--light-lime-color);
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  > div.row
  > div:nth-child(4)
  .al-meezan-card {
  background-color: var(--black-color-50);
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  > div.row
  > div:nth-child(5)
  .al-meezan-card {
  color: var(--brown-color);
  background-color: var(--orange-color-50);
}

section.what_we_have_to_offer .al-meezan-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

section.what_we_have_to_offer .al-meezan-card h3 {
  font-weight: 500;
  font-size: 23px;
  margin: 15px 0 10px;
}

section.what_we_have_to_offer .al-meezan-card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

/* --what we offer (decoration)-- */
section.what_we_have_to_offer > div.container > div.row > div:nth-child(2) {
  position: relative;
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  div.decoration {
  position: absolute;
  z-index: -1;
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  div.decoration:first-child {
  width: 80px;
  height: 120px;
  bottom: 30px;
  left: -45px;
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  div.decoration:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 20px;
  right: 10%;
}

section.what_we_have_to_offer
  > div.container
  > div.row
  > div:nth-child(2)
  div.decoration
  img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* -------------------------- Testimonials ------------------------------ */
section.testimonial {
  height: auto;
  margin-top: 150px;
}

section.testimonial h1 {
  margin-bottom: 40px;
}

section.testimonial div.testimonial_card {
  width: 350px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  align-self: stretch;
  flex-shrink: 0;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.testimonial div.testimonial_card p {
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: var(--black-color);
}

section.testimonial div.testimonial_card h3 {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}

section.testimonial div.testimonial_card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

section.testimonial ::-webkit-scrollbar {
  display: none;
}

/* -------------------------- Contact us------------------------------ */

section.contact__us {
  margin-top: 100px;
  height: auto;
  padding: 5rem 0;
  background-color: var(--gray-color-50);
}

section.contact__us div.row > div > img {
  height: 300px;
  width: 100%;
  object-fit: contain;
}

section.contact__us div.row > div ul img {
  height: 30px;
  width: 30px;
  object-fit: contain;
  margin-right: 20px;
}

section.contact__us div.row > div ul li {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
}

section.contact__us div.row > div ul li a {
  color: var(--blue-color);
  font-weight: 500;
}

/* ----------------infos Section --------------------------- */
.infos-container div.controller {
  position: sticky;
  top: 90px;
  width: 80%;
  margin: auto;
  text-align: justify;
}

.infos-container div.controller header {
  width: 100%;
  background-color: var(--secondary-color);
  padding: 13px 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.infos-container div.controller > ul {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.infos-container div.controller > ul > li {
  padding: 20px;
  font-weight: 500;
  font-size: 18px;
  color: var(--black-color-100);
  cursor: pointer;
}

.infos-container div.controller > ul > li + li {
  border-top: 1px solid var(--brown-color);
}

.infos-container div.controller > ul > li.active {
  border-right: 3px solid #030083;
  color: var(--blue-color);
}

.infos-container div.controller > ul > li:first-child.active {
  border-radius: 10px 10px 0px 0px;
}

.infos-container div.controller > ul > li:last-child.active {
  border-radius: 0px 0px 10px 10px;
}

.infos-container div.row > div:nth-child(2) h1 {
  font-weight: 600;
  font-size: 30px;
  line-height: 58px;
  color: var(--blue-color);
}

.infos-container div.row > div:nth-child(2) h1 + h2 {
  font-weight: 500;
  font-size: 16px;
  margin: 10px 0 25px;
  color: var(--black-color);
}

.infos-container div.row > div:nth-child(2) h2 {
  font-weight: 600;
  font-size: 23px;
  margin: 30px 0 10px;
  color: var(--blue-color);
}

.infos-container div.row > div:nth-child(2) h3 {
  font-weight: 500;
  font-size: 16px;
  margin: 15px 0;
  color: var(--blue-color);
}

.infos-container div.row > div:nth-child(2) p,
.infos-container div.row > div:nth-child(2) li {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--brown-color);
}

.infos-container div.row > div:nth-child(2) div.content li + li {
  list-style: disc;
  margin-left: 20px;
}

.infos-container div.row > div:nth-child(2) div.content li + li::marker {
  padding: 30px;
  color: var(--black-color-100);
}

/* .infos-container button */
.infos-container button.btn {
  width: auto;
  background-color: #fff;
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
}

.infos-container button.btn:hover {
  color: #fff !important;
  background-color: var(--blue-color) !important;
}

.infos-container div.navigator-info {
  display: none !important;
}

/* ----------------Footer --------------------------- */
footer {
  background-color: var(--gray-color-50);
  margin-top: 100px;
}

footer address {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--black-color);
  width: 80%;
  margin-top: 10px;
}

footer ul > li:first-child,
footer h4 {
  font-weight: 500;
  font-size: 24px;
  color: var(--blue-color);
  margin-bottom: 15px;
}

footer ul > li + li > a,
footer ul > li + li > p {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--black-color-100);
  cursor: pointer;
}

footer button.btn {
  width: 58%;
}

@media screen and (max-width: 1002px) {
  section.what_we_have_to_offer .al-meezan-card {
    height: auto;
  }
}

@media screen and (max-width: 992px) {
  /* ---------button-------------- */

  section.hero button.btn,
  nav div.d-flex > button.btn,
  footer button.btn {
    width: 40%;
    height: 50px;
    padding: 10px;
  }

  section.hero button.btn span,
  footer button.btn span {
    font-size: 10px;
  }

  section.hero button.btn > img,
  footer button.btn > img {
    width: 20px;
    height: 20px;
  }

  /* -----------Hero section div for img */
  section.hero div.row > div:last-child {
    height: 60%;
  }

  section.hero div.row > div:last-child::after {
    height: 85%;
    border: 5px solid var(--blue-color);
    top: 25px;
    right: -4px;
  }

  /* footer */
  footer button.btn {
    width: 45%;
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  nav {
    position: relative;
  }

  nav .navbar-collapse {
    position: absolute;
    top: 70px;
    background-color: white;
    left: 0;
    right: 0;
  }

  .navbar-nav {
    align-items: center;
  }

  .navbar-nav li {
    margin: 10px 0;
  }

  .navbar-nav + button {
    display: none !important;
  }

  nav ul ~ div.d-flex {
    display: flex !important;
  }

  section {
    height: auto;
  }

  /* ------------------- hero -------------------- */
  section.hero button.btn {
    width: 100%;
    padding: 10px;
  }

  section.hero div.row > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 40px;
  }

  section.hero div.row > div:first-child > div > h1 {
    font-size: 28px;
    line-height: 38px;
  }

  section.hero div.row > div:first-child > div > p {
    font-size: 14px;
    line-height: 17px;
  }

  section.hero div.row > div:first-child div.d-flex {
    justify-content: center;
  }

  /* -----------Hero section div for img */
  section.hero div.row > div:last-child > img {
    width: 90%;
    align-self: center;
    height: auto;
    object-fit: contain;
  }

  /* ----motto--- */
  div.motto {
    margin-top: 70px !important;
    position: relative;
  }

  div.motto h3 {
    font-size: 18px;
    line-height: 33px;
    width: 82%;
    margin: 0 auto;
  }

  div.motto img {
    width: 25px;
    height: 25px;
    position: absolute;
  }

  div.motto img:first-child {
    left: 5px;
  }

  div.motto img:last-child {
    bottom: 5px;
    right: calc(50% - 60px);
  }

  /* ----------------------- About Seection --------------------- */
  section.about {
    margin: 20px 0;
  }

  section.about h1,
  section.testimonial h1 {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
  }

  section.about div.row > div > div > p {
    text-align: center;
    font-size: 16px;
  }

  section.about div.row {
    text-align: center;
    margin-top: 10px !important;
    justify-content: center !important;
  }

  section.about div.row > div:nth-child(1) {
    order: 2;
  }

  section.about div.row > div:nth-child(2) {
    order: 1;
  }

  section.about div.row > div:nth-child(2),
  section.about div.row > div:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  section.about div.row > div:nth-child(3) {
    order: 3;
  }

  section.about div.row > div:nth-child(4) {
    order: 4;
  }

  /* -------------- what_we_have_to_offer Section --------------- */
  section.what_we_have_to_offer div.container > div.row > div:first-child img {
    width: 20%;
    height: 80px;
    margin-left: 20px;
  }

  section.what_we_have_to_offer
    div.container
    > div.row
    > div:first-child
    div
    > :not(img) {
    text-align: center;
  }

  section.what_we_have_to_offer div.container > div.row > div:first-child h1 {
    font-size: 24px;
    line-height: 34px;
    margin: 10px 0;
  }

  section.what_we_have_to_offer .al-meezan-card {
    margin: 0 auto;
    margin: 20px 0;
  }

  section.what_we_have_to_offer
    > div.container
    > div.row
    > div:nth-child(2)
    > div.row {
    justify-content: center !important;
  }

  section.what_we_have_to_offer
    > div.container
    > div.row
    > div:nth-child(2)
    div.decoration:first-child {
    width: 120px;
    height: 120px;
    bottom: 200px;
    left: 45px;
  }

  section.what_we_have_to_offer
    > div.container
    > div.row
    > div:nth-child(2)
    div.decoration:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: -50px;
    right: 10%;
  }

  /* ----testimonial-------*/
  section.testimonial h1 {
    margin-bottom: 10px;
  }

  section.testimonial div.testimonial_card {
    width: 250px;
    padding: 10px;
  }

  section.testimonial div.testimonial_card:first-child {
    margin-left: 10px;
  }

  section.testimonial div.testimonial_card p {
    font-size: 12px;
    line-height: 14px;
  }

  section.testimonial div.testimonial_card img {
    width: 30px;
    height: 30px;
  }

  section.testimonial div.testimonial_card h3 {
    font-size: 12px;
  }

  /* -------------------------- Contact us------------------------------ */

  section.contact__us {
    text-align: center;
  }

  section.contact__us h1 {
    margin-bottom: 20px;
  }

  section.contact__us div.row > div ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* infos */
  .infos-container div.row > div:nth-child(2),
  .controller.not-show {
    display: none;
  }

  .infos-container div.row > div:nth-child(2).active,
  .controller {
    display: block;
  }

  .infos-container div.navigator-info {
    display: flex !important;
  }

  /* .infos-container button */
  .infos-container div#content-store > div:nth-child(4) {
    padding: 0px 20px;
  }

  /* ----------- Footer ----------------- */
  footer ul > li:first-child {
    margin: 25px 0;
  }

  footer ul > li {
    margin-bottom: 15px;
  }

  footer div.row > div:last-child h4 {
    display: none;
  }
}

@media screen and (max-width: 280px) {
  /* ----hero section----- */
  section.hero div.row > div:first-child > div > h1 {
    font-size: 20px;
    line-height: 28px;
  }

  section.hero button.btn p,
  footer button.btn p {
    font-size: 13px;
  }

  section.hero button.btn span,
  footer button.btn span {
    font-size: 8px;
  }

  section.hero button.btn,
  footer button.btn {
    width: 50%;
    height: 45px;
    padding: 20px 10px;
  }

  /* ------MOtto------ */
  div.motto h3 {
    font-size: 14px;
    line-height: 23px;
  }

  /*--------------------- what_we_have_to_offer ------------------*/
  section.what_we_have_to_offer .al-meezan-card h3 {
    font-size: 17px;
    margin: 10px 0 5px;
  }

  section.what_we_have_to_offer .al-meezan-card p {
    font-size: 12px;
    line-height: 20px;
  }

  /* -----------------------about-------------------- */
  section.about div.row > div > div > p {
    font-size: 17px;
    line-height: 20px;
  }

  /* -----------------contact__us -------------- */
  section.contact__us h1 {
    margin-bottom: 15px;
  }

  section.contact__us p {
    font-size: 15px;
  }

  section.contact__us div.row > div ul img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
  }

  section.contact__us div.row > div ul li {
    font-size: 14px;
  }

  /* ------ Footer---- */
  footer address {
    font-size: 14px;
    line-height: 15px;
  }

  footer ul > li:first-child {
    font-size: 20px;
    margin-bottom: 10px;
  }

  footer ul > li + li {
    margin-bottom: 10px;
  }

  footer ul > li + li > a {
    font-size: 14px;
    line-height: 20px;
  }
}
