@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.button {
  font-family: "Almarai", sans-serif;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  background-color: #6F0C88;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  aspect-ratio: 3/1;
  cursor: pointer;
}
.button:hover {
  background-color: #8a8a8a;
}
.button:active {
  background-color: #fff;
  color: #6F0C88;
}

.claro {
  background-color: #8a8a8a;
  color: #bb49d8;
}
.claro:hover {
  background-color: #f1f1f1;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0px;
  width: 100%;
  position: fixed;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
  z-index: 100;
  margin-bottom: 60px;
}
.header.scrolled {
  background-color: #fff;
  padding: 5px 0px;
}

.logo-cont {
  width: 120px;
  transition: all 0.4s ease-in-out;
  position: absolute;
  z-index: -1;
}
.header.scrolled .logo-cont {
  visibility: hidden;
  opacity: 0;
  width: 90px;
}

.logo-contScrolled {
  width: 120px;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.header.scrolled .logo-contScrolled {
  visibility: visible;
  opacity: 1;
  width: 90px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 90%;
  max-width: 1240px;
  justify-content: space-between;
}

.navbar-list {
  list-style-type: none;
  display: flex;
  gap: 20px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 996px) {
  .navbar-list {
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    padding: 120px 25px 20px 50px;
    background: #000;
    width: 30%;
    min-width: 190px;
    text-align: end;
    height: 100vh;
    transform: translateX(100%);
  }
  .navbar.active .navbar-list {
    transform: translateX(0);
    box-shadow: 5px 0px 98px 0px black;
  }
  .header.scrolled .navbar-list {
    padding-top: 90px;
  }
}

.navbar-link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.navbar-link:hover {
  color: #bb49d8;
}
.header.scrolled .navbar-link {
  color: #8a8a8a;
}
.header.scrolled .navbar-link:hover {
  color: #6F0C88;
}
@media only screen and (max-width: 996px) {
  .header.scrolled .navbar-link {
    color: #fff;
  }
  .header.scrolled .navbar-link:hover {
    color: #bb49d8;
  }
}
@media only screen and (max-width: 996px) {
  .navbar-link {
    color: #fff;
  }
  .navbar-link:hover {
    color: #bb49d8;
  }
}

.switch {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.02s linear;
  display: flex;
  display: none;
}
.header.scrolled .switch {
  background: #6F0C88;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.363);
}
@media only screen and (max-width: 996px) {
  .switch {
    display: block;
  }
}

.switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  position: absolute;
}

.switch div {
  width: 80%;
  height: 80%;
  margin: 10%;
  position: absolute;
}

.switch span {
  background: #6F0C88;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s, width 0.5s;
}
.header.scrolled .switch span {
  background: #fff;
}

.switch .line-1 {
  transform: translate(-12px, -8px);
}

.switch .line-3 {
  transform: translate(-12px, 6px);
  transform-origin: 100% 0;
}

input:checked + div span.line-1 {
  width: 50%;
  transform-origin: 0 0;
  transform: translate(0, 0) rotate(-45deg);
}

input:checked + div span.line-3 {
  width: 50%;
  transform: translate(-100%, 0) rotate(-45deg);
}

input:checked + div span.line-2 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(111, 12, 136, 0.7882352941);
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
}
.navbar.active .background {
  transform: translateX(0);
}
@media only screen and (min-width: 996px) {
  .background {
    display: none;
  }
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.main-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-bottom: 86px;
  padding-top: 175px;
  width: 100%;
  position: relative;
}
.main-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #6F0C88;
  background-image: url("../images/4.webp");
  background-size: cover;
  background-position: left;
  filter: grayscale(1);
  z-index: -1;
}

.hero-textCont {
  width: 90%;
  max-width: 1240px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
.hero-textCont .button {
  font-size: clamp(11px, 1vw, 14px);
  width: clamp(100px, 9vw, 150px);
}

.hero-title {
  font-family: "Almarai", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  width: 90%;
  max-width: 850px;
}
.hero-title span {
  font-weight: 800;
  font-size: clamp(50px, 5vw, 75px);
  color: #bb49d8;
  text-shadow: 2px 2px 5px #1a1a1a;
}

.hero-text {
  color: #fff;
  font-size: clamp(14px, 2vw, 20px);
  width: 90%;
  max-width: 640px;
  line-height: 25px;
  font-weight: 300;
}
.hero-text span {
  font-weight: 700;
  font-size: clamp(14px, 3vw, 22px);
}
.hero-text br {
  margin-bottom: 35px;
}

.hero-imgCont {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  filter: brightness(0.3);
}
.hero-imgCont img {
  filter: grayscale(1);
}

.slider {
  width: 1300px;
  max-width: 100vw;
  height: 700px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.slider .list {
  position: absolute;
  width: max-content;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  transition: 1s;
}

.slider .list img {
  width: 1300px;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
}

.slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.slider .buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3333333333);
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}

.slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.slider .dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 10px;
  border-radius: 20px;
  transition: 0.5s;
}

.slider .dots li.active {
  width: 30px;
}

@media screen and (max-width: 768px) {
  .slider {
    height: 400px;
  }
}
.main-about {
  background-color: #6F0C88;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  padding: clamp(70px, 10vw, 90px) 0px;
  background-image: url(../images/oes3dthin.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 590px;
}
@media only screen and (max-width: 844px) {
  .main-about {
    background-size: 80%;
  }
}

.about-body {
  width: 90%;
  max-width: 1240px;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 844px) {
  .about-body {
    gap: 60px;
  }
}

.about-title {
  color: #fff;
  font-size: clamp(26px, 5vw, 38px);
  padding: 12px 0px;
  font-weight: 800;
}
@media only screen and (max-width: 844px) {
  .about-title {
    text-align: center;
  }
}

.about-missionTitle {
  color: #fff;
  font-size: clamp(26px, 5vw, 38px);
  padding: 12px 0px;
  font-weight: 800;
}
@media only screen and (max-width: 844px) {
  .about-missionTitle {
    text-align: center;
  }
}

.about-cont {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 300px;
  width: 90%;
}

.about-missionCont {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 300px;
  width: 90%;
}

.about-text {
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 25px;
  font-weight: 300;
  min-width: 320px;
}
@media only screen and (max-width: 844px) {
  .about-text {
    text-align: center;
  }
}
.about-text:first-of-type {
  margin-bottom: 45px;
}

.about-missionText {
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 25px;
  font-weight: 300;
  min-width: 320px;
}
@media only screen and (max-width: 844px) {
  .about-missionText {
    text-align: center;
  }
}

.main-join {
  padding: clamp(90px, 10vw, 150px) 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .main-join {
    background-size: 80%;
  }
}
@media only screen and (max-width: 844px) {
  .main-join {
    padding: 80px 0px;
    background-size: 175%;
  }
}

.join-body {
  width: 90%;
  max-width: 1240px;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 844px) {
  .join-body {
    gap: 60px;
  }
}

.join-title {
  color: #6F0C88;
  font-size: clamp(26px, 5vw, 38px);
  padding: 12px 0px;
  font-weight: 800;
}
@media only screen and (max-width: 844px) {
  .join-title {
    text-align: center;
  }
}

.join-textCont {
  max-width: 1240px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.join-textAux {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
  width: 90%;
}

.join-text {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 25px;
  font-weight: 400;
}
@media only screen and (max-width: 844px) {
  .join-text {
    text-align: center;
  }
}

.main-whyCh {
  background-color: #111111;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 10vw, 90px) 0px;
}
.main-whyCh::after {
  content: "";
  background-image: url(../images/5.webp);
  background-repeat: no-repeat;
  width: 100%;
  opacity: 0.2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 844px) {
  .main-whyCh::after {
    left: -200px;
  }
}

.whych-body {
  width: 90%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  position: relative;
  z-index: 10;
}

.whych-title {
  color: #fff;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
}

.whych-raBody {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "ex ex qa qa cca cca" "cet cet cet td td td";
  gap: 120px 20px;
  justify-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1240px) {
  .whych-raBody {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "ex qa" "cca cet" "td td";
    width: 90%;
  }
}
@media only screen and (max-width: 844px) {
  .whych-raBody {
    grid-template-columns: 1fr;
    grid-template-areas: "ex" "qa" "cca" "cet" "td";
    width: 80%;
  }
}

#ex {
  grid-area: ex;
}

#qa {
  grid-area: qa;
}

#cca {
  grid-area: cca;
}

#cet {
  grid-area: cet;
  justify-self: flex-end;
}
@media only screen and (max-width: 1240px) {
  #cet {
    justify-self: center;
  }
}

#td {
  grid-area: td;
  justify-self: flex-start;
}
@media only screen and (max-width: 1240px) {
  #td {
    justify-self: center;
  }
}

.whych-raCont {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 375px;
  background-color: rgba(37, 37, 37, 0.8549019608);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 95px 35px 50px 35px;
  gap: 25px;
  box-shadow: 0px 15px 10px #000;
  aspect-ratio: 1/1.05;
}
@media only screen and (max-width: 1240px) {
  .whych-raCont {
    grid-template-columns: 1fr 1fr;
    width: 90%;
    padding: 75px 25px 30px 25px;
    height: 360px;
  }
}
@media only screen and (max-width: 844px) {
  .whych-raCont {
    grid-template-columns: 1fr;
    width: 80%;
    height: 350px;
  }
}

.whych-raImgCont {
  background-color: #252525;
  position: absolute;
  top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.whych-raTitle {
  color: #6F0C88;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 900;
  text-shadow: 2px 2px 5px #1a1a1a;
}

.whych-raText {
  color: #fff;
  font-size: clamp(13px, 2vw, 18px);
  line-height: 25px;
}

.main-services {
  width: 100%;
  background-color: #5d0672;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(70px, 10vw, 90px) 0px 0px 0px;
}

.services-title {
  color: #fff;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  margin-bottom: 25px;
}

.services-text {
  color: #fff;
  font-size: clamp(14px, 3vw, 21px);
  margin-bottom: 65px;
  text-align: center;
}
@media only screen and (max-width: 1100px) {
  .services-text {
    margin-bottom: 15px;
  }
}

.services-body {
  display: flex;
  margin-top: 35px;
}
@media only screen and (max-width: 1100px) {
  .services-body {
    flex-direction: column;
  }
}

.services-seCont {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 65px 50px 25px;
  flex: 1;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .services-seCont {
    padding: 90px 50px 25px;
  }
}

.services-num {
  font-size: 30px;
  color: #fff;
  border: 2px solid #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  top: -28px;
}
@media only screen and (max-width: 1100px) {
  .services-num {
    top: 22px;
  }
}

.services-seTitle {
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 900;
}

.services-seText {
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 25px;
  text-align: center;
  font-weight: 300;
}

.services-seCont:nth-of-type(1) {
  background-color: #700c89;
}
.services-seCont:nth-of-type(1) .services-num {
  background-color: #700c89;
}

.services-seCont:nth-of-type(2) {
  background-color: #80109b;
}
.services-seCont:nth-of-type(2) .services-num {
  background-color: #80109b;
}

.services-seCont:nth-of-type(3) {
  background-color: #9b1cbb;
}
.services-seCont:nth-of-type(3) .services-num {
  background-color: #9b1cbb;
}

.services-seCont:nth-of-type(4) {
  background-color: #a52ecc;
}
.services-seCont:nth-of-type(4) .services-num {
  background-color: #a52ecc;
}

.services-seCont:nth-of-type(5) {
  background-color: #c162d8;
}
.services-seCont:nth-of-type(5) .services-num {
  background-color: #c162d8;
}

.services-abCar {
  width: 100%;
  height: 535px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-abCar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/3.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}

.main-whyCar {
  background: #4C2D63;
  background: radial-gradient(at left top, #4C2D63, #B09CCD);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 10vw, 90px) 0 120px 0;
  position: relative;
}
@media only screen and (max-width: 593px) {
  .main-whyCar {
    padding-bottom: 200px;
  }
}

.whyCar-title {
  color: #fff;
  font-size: clamp(26px, 5vw, 38px);
  padding: 12px 0px;
  font-weight: 800;
  text-align: center;
  width: 90%;
}

.whyCar-raBody {
  position: relative;
  width: 90%;
  max-width: 1240px;
  height: 415px;
}

.whyCar-raCont {
  width: 100%;
  max-width: 1240px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  z-index: 10;
}

.whyCar-ra {
  width: 100%;
  border: 1.5px solid #fff;
  padding: 10px 20px;
  display: grid;
  grid-template-rows: 30px 0fr;
  gap: 0px;
  transition: all 0.25s linear;
}
.whyCar-ra::marker {
  color: #fff;
}

.whyCar-ra.expanded {
  grid-template-rows: 30px 1fr;
  gap: 25px;
}
@media only screen and (max-width: 844px) {
  .whyCar-ra.expanded {
    gap: 10px;
  }
}

.whyCar-raTextCont {
  overflow: hidden;
}

.whyCar-raNum {
  color: #fff;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 900;
}

.whyCar-raTitle {
  color: #fff;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 900;
}

.whyCar-raTitlebar {
  display: grid;
  grid-template-columns: 2fr 70fr 1fr;
  align-items: center;
  cursor: pointer;
}

.whyCar-raImgCont {
  width: 10px;
  transition: all 0.25s linear;
}

.whyCar-ra.expanded .whyCar-raImgCont {
  transform: rotate(90deg);
}

.whyCar-raText {
  color: #fff;
  font-size: clamp(13px, 2vw, 18px);
  line-height: 25px;
}

.main-midBanner {
  width: 100%;
  height: 495px;
  padding: 90px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/3.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 844px) {
  .main-midBanner {
    height: 380px;
  }
}

.midBanner-body {
  width: 90%;
  max-width: 1240px;
}
@media only screen and (max-width: 844px) {
  .midBanner-body {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.midBanner-text {
  color: #000;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 25px;
  width: 50%;
}
@media only screen and (max-width: 844px) {
  .midBanner-text {
    text-align: center;
    width: 90%;
  }
}

.main-contact {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 844px) {
  .main-contact {
    grid-template-columns: 1fr;
  }
}

.cu-body {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 620px;
  padding: 90px clamp(40px, 7vw, 120px) 90px 0px;
  justify-self: end;
}
@media only screen and (max-width: 844px) {
  .cu-body {
    justify-self: center;
    padding: 75px 0 75px 0;
  }
}

.cu-title {
  color: #6F0C88;
  font-size: clamp(26px, 5vw, 38px);
  padding: 12px 0px;
  font-weight: 800;
}

.cu-text {
  color: #000;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 30px;
  margin-top: 20px;
}

.git-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 90px 0px 90px 120px;
  justify-self: start;
  background-color: #6F0C88;
}
@media only screen and (max-width: 844px) {
  .git-body {
    padding: 75px 0 75px 0;
    align-items: center;
  }
}

.git-bodyAux {
  width: 90%;
  max-width: 620px;
}

.git-title {
  color: #fff;
  font-size: clamp(26px, 5vw, 38px);
  padding: 12px 0px;
  font-weight: 800;
}

.git-ciBody {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 20px;
}

.git-ciCont {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-items: center;
  grid-template-areas: "img ciCam" "img ciInfo";
}

.git-imgCont {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  padding: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: img;
}

.git-ciCam {
  color: #fff;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 500;
  grid-area: ciCam;
}

.git-ciInfo {
  color: #fff;
  font-size: clamp(14px, 3vw, 21px);
  font-weight: 300;
  grid-area: ciInfo;
}

.git-email {
  text-decoration: underline;
}

.footer {
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 0px;
  width: 100%;
  gap: 75px;
}

.footer-body {
  width: 90%;
  max-width: 1240px;
  display: grid;
  grid-template-areas: "img nav tim";
  grid-template-columns: 1fr 0.5fr 1fr;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 844px) {
  .footer-body {
    grid-template-areas: "nav tim" "img img";
    grid-template-columns: 0.5fr 1fr;
    gap: 40px;
  }
}

.footer-imgCont {
  width: 250px;
  grid-area: img;
}

.footer-navbar-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  grid-area: nav;
}

.footer-navbar-item {
  font-size: clamp(14px, 3vw, 21px);
  list-style-type: none;
}

.footer-navbar-link {
  color: #fff;
  cursor: pointer;
}
.footer-navbar-link:hover {
  color: #8a8a8a;
}

.footer-buhCont {
  display: flex;
  flex-direction: column;
  gap: 25px;
  grid-area: tim;
}

.footer-buhPres {
  color: #fff;
  font-size: clamp(14px, 3vw, 21px);
  font-weight: 600;
}

.footer-buhHours {
  color: #fff;
  font-size: clamp(14px, 3vw, 21px);
  font-weight: 500;
}
.footer-buhHours span {
  font-weight: 200;
}

.footer-chiCont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.chi-imgCont {
  width: 40px;
}

.chi-text {
  color: #fff;
  font-size: clamp(13px, 2vw, 16px);
}

.footer-buhHoursCont {
  display: flex;
  align-items: center;
  gap: 15px;
}

.buhHoursImgCont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}/*# sourceMappingURL=styles.css.map */