/*DESKTOP VERSION STARTS HERE*/
/*TOP HEADER*/
header {
  width: 100vw;
  height: auto;
  /* color: #000; */
  background-color: transparent;
  position: relative;
  z-index: 1 !important;
  position: sticky;
}
.top-header {
  display: flex;
  justify-content: space-between;
  /* background-color: var(--white); */
  border-top: 1px solid var(--heading-border-color);
  border-bottom: 1px solid var(--heading-border-color);
}

/*HEADER-INFO*/
.top-header > .contact-info {
  min-height: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 1rem;
  border-left: 1px solid var(--heading-border-color);
  border-right: 1px solid var(--heading-border-color);
  padding: 0 1.5rem;
}
.top-header .contact-info > .contact {
  display: flex;
  align-items: center;
}
.top-header .contact-info .m-icon {
  margin-right: 1rem;
}
.top-header .contact-info span {
  font-weight: 700;
  color: var(--white);
}
.m-icon,
.s-icon {
  color: var(--brand-orange-color);
}
.top-header .contact-info .tlit {
  content: "";
  width: 0.1rem;
  height: 3.2rem;
  background: var(--heading-border-color);
}

/*HEADER-SOCIAL*/
.top-header .socio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 1px solid var(--heading-border-color);
  border-right: 1px solid var(--heading-border-color);
  padding: 0 2rem;
}
.top-header .socio .tilt {
  height: 1.5rem;
  color: #474747;
  font-weight: 600;
  margin: 0 1rem;
}

/*BOTTOM HEADER*/
.nav__toggle,
input#nav__checkbox {
  display: none;
}
.bottom-header {
  width: 100vw;
  height: 12vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo,
.nav,
.navbar,
.navbar > .navSubmenu,
.cta-quote {
  display: flex;
  align-items: center;
}

/*LOGO*/
.bottom-header .logo {
  width: 15%;
}
.bottom-header .logo img {
  max-width: 100%;
}

/*NAVIGATION*/
.nav {
  width: 80%;
  position: relative;
  /* color: #fff; */
}
.nav .navbar {
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
  gap: 3rem;
}
.navbar > a,
.navSubmenu > a,
.submenu > a {
  text-decoration: none;
  font-size: 1.8rem;
  /* color: var(--white); */
  transition: 0.3s;
  cursor: pointer;
}
/*HOVER & ACTIVE MENU*/
.navbar > a:hover,
.navSubmenu > a:hover,
.submenu > a:hover {
  color: var(--brand-orange-color);
}

.navSubmenu .ourbiz {
  margin-right: 0.5em;
}
.d-ico {
  /* color: var(--white); */
  font-size: 1.15em;
}

/*HEADER CTA*/
.cta-quote > a {
  padding: 0.75rem 2rem;
  background: var(--brand-orange-color);
  border: 0.17em solid var(--brand-orange-color);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}
a.btn-cta:hover {
  border: 0.17em solid var(--brand-orange-color);
  background-color: transparent;
  color: var(--white);
}

/*SUBMENU*/
.navSubmenu {
  position: relative;
}
.submenu {
  position: absolute;
}
.submenu,
#menucheck,
.menutoggle .fa-angle-up {
  display: none;
}
.menutoggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/*TOGGLE SUBMENU*/
#menucheck:checked ~ .submenu {
  display: flex;
  flex-direction: column;
  gap: 1.75em;
  background: rgba(255, 255, 255, 0.15);
  min-width: 20vw;
  min-height: 8em;
  padding: 2em 1.82em;
  position: absolute;
  top: 1.5em;
}
#menucheck:checked ~ .menutoggle .fa-angle-up {
  display: block;
}
#menucheck:checked ~ .menutoggle .fa-angle-down {
  display: none;
}

.submenu {
  display: none;
}

/*PAGE TITLE*/
#page-title {
  /* background-image: url(/images/abt.jpeg); */
  background-image: url(/images/aboutBg.png);
  background-size: cover;
  background-position: center center;
  width: 100vw;
  height: 50rem;
  position: absolute;
  top: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*WHO*/
#who {
  /* z-index: 1; */
  margin: 15em 15em 0 15em;
  border-radius: 1.75rem;
  position: relative;
  background-color: var(--white);
  text-align: center;
  position: relative;
  box-shadow: 0.5rem 1rem 3rem var(--dfdede-color);
}
#who h5,
#what h5,
#how h5 {
  text-transform: uppercase;
  color: var(--brand-orange-color);
}
#who h5::after {
  content: "";
  display: grid;
  width: 2.45rem;
  height: 0.35rem;
  background-color: var(--brand-orange-color);
  margin: 2.5rem auto;
  text-align: center;
}
/*WHAT*/
#what {
  background-image: url(/images/image\ 13.png);
  /* background-position: bottom; */
  background-size: cover;
  position: relative;
  margin-top: -10em;
  padding-top: 16em;
  padding-bottom: 5em;
  display: flex;
  gap: 5rem;
  align-items: center;
}
#what .img,
#how .img {
  width: 30%;
  margin: auto;
}
#what img,
#how img {
  width: 100%;
  height: 100%;
}
#what .content,
#how .content {
  max-width: 59rem;
  width: 100%;
}
/*HOW*/
#how {
  background-color: var(--white);
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  gap: 5rem;
  align-items: center;
}

/*TABLET VERSION STARTS HERE*/
@media (min-width: 665px) and (max-width: 1024px) {
  /*HEADER STARTS HERE*/
  .top-header {
    display: none;
  }
  .bottom-header {
    /* background-color: var(--white); */
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /*LOGO*/
  .bottom-header .logo {
    width: 12%;
  }
  .logo img {
    max-width: 100%;
  }
  .nav__toggle,
  .bottom-header input#nav__checkbox {
    display: none;
  }
  i.menu {
    display: inherit;
  }

  /*NAVIGATION*/
  .bottom-header .nav {
    width: 84%;
    display: flex;
    align-items: center;
  }
  .bottom-header .nav .navbar {
    display: flex;
    gap: 1.15rem;
    margin-right: auto;
  }
  .bottom-header .navbar > a,
  .bottom-header .navbar .navSubmenu > a,
  .bottom-header .navbar .d-ico,
  .submenu {
    font-size: 1.4rem;
    color: var(--white);
  }
  .navSubmenu .ourbiz {
    margin-right: 0.5em;
  }
  .navSubmenu {
    position: relative;
    display: flex;
    align-items: center;
  }

  /*SUBMENU HERE*/
  .submenu,
  #menucheck,
  .menutoggle .fa-angle-up {
    display: none;
  }

  /*TOGGLE SUBMENU HERE*/
  #menucheck:checked ~ .submenu {
    width: 25vw;
    position: absolute;
    background-color: var(--white);
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.15em;
    padding: 2em 1.25em;
    top: 2.75em;
  }
  .submenu a {
    width: 100%;
    font-size: 1.5rem;
    color: var(--black);
  }
  #menucheck:checked ~ .menutoggle .fa-angle-up {
    display: block;
  }
  #menucheck:checked ~ .menutoggle .fa-angle-down {
    display: none;
  }
}

/*MOBILE VERSION STARTS HERE*/
@media (max-width: 664px) {
  /*HEADER STARTS HERE*/
  .top-header {
    display: none;
  }
  .bottom-header {
    width: 100%;
    min-height: 7rem;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--white);
    border: 1px solid #dfdede33;
  }

  /*LOGO*/
  .logo {
    width: 100%;
  }
  .logo img {
    max-width: none !important;
  }
  i.close,
  .bottom-header input#nav__checkbox {
    display: none;
  }
  i.menu {
    display: inherit;
  }

  /*NAVIGATION*/
  #nav__checkbox,
  .nav__toggle {
    display: block;
    position: absolute;
    cursor: pointer;
    margin: 0 1rem;
    right: 2.5rem;
    font-size: 1.8rem;
  }
  section.bottom-header .nav {
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 4.25em;
    right: 0;
    background: var(--white);
    box-shadow: -1rem 1.25rem 1.2em rgba(181, 178, 178, 0.15);
    margin: auto;
    z-index: -1;
    text-align: right;
    min-width: 70vw;
    height: 100vh;
    padding: 4rem 2.5rem 2.5rem 2.5rem;
    display: none;
  }

  /*TOGGLE MENU HERE*/
  section.bottom-header .nav__toggle {
    cursor: pointer;
  }
  #nav__checkbox:checked ~ .nav {
    display: block;
  }
  #nav__checkbox:checked ~ .nav__toggle .close {
    display: block;
  }
  #nav__checkbox:checked ~ .nav__toggle .menu {
    display: none;
  }

  /*SUBMENU HERE*/
  .nav .navbar {
    display: flex;
    margin: 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 2.5em;
  }
  .navbar a {
    font-size: 1.5rem;
    color: var(--black);
  }
  .submenu,
  #menucheck,
  .menutoggle .fa-angle-up {
    display: none;
  }
  .menutoggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  .navSubmenu {
    position: relative;
    display: block !important;
  }
  .navSubmenu .ourbiz {
    margin-right: 1.5em;
  }
  .navSubmenu .menutoggle {
    position: absolute;
    top: 0.5em;
    right: 0;
  }
  .submenu {
    display: none;
  }

  /*TOGGLE SUBMENU HERE*/
  /* * {
    text-align: center;
  } */
  #menucheck:checked ~ .submenu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 1em 0 0.25em;
  }
  #menucheck:checked ~ .menutoggle .fa-angle-up {
    display: block;
  }
  #menucheck:checked ~ .menutoggle .fa-angle-down {
    display: none;
  }

  #page-title {
    background-size: 200%;
    background-repeat: no-repeat;
  }

  #page-title h1 {
    color: #fff;
  }
  /*WHO*/
  #who {
    margin: 2rem;
    border-radius: 0px;
    margin-top: 22rem;
    text-align: center;
  }
  #who h5,
  #what h5,
  #how h5 {
    font-size: 2.1rem;
    padding-bottom: 1.5rem;
  }
  #who h5::after {
    display: none;
  }
  #who h3,
  #what h3,
  #how h3 {
    padding-bottom: 1.5rem;
  }
  /*WHAT*/
  #what {
    margin-top: 0px;
    padding-top: 5em;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
  }
  #what .img {
    width: 50%;
    margin: auto;
  }
  #what img,
  #how img {
    width: 100%;
    height: 100%;
  }
  #what .content,
  #how .content {
    max-width: 59rem;
    width: 100%;
  }
  /*HOW*/
  #how {
    flex-wrap: wrap;
    gap: 4rem;
    text-align: center;
  }
  #how .img {
    width: 100%;
    margin: auto;
  }
}

/*TABLET VERSION STARTS HERE*/
@media (min-width: 665px) and (max-width: 1024px) {
  /*WHO*/
  #who {
    margin: 4rem;
    border-radius: 0px;
    margin-top: 28rem;
    padding: 3rem;
  }
  #who h5,
  #what h5,
  #how h5 {
    padding-bottom: 1.5rem;
  }

  #who h3,
  #what h3,
  #how h3 {
    padding-bottom: 1.5rem;
  }
}
