@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
body,
html {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size: 20px;
    font-family: "cairo", Courier, monospace;
    text-align:right;
    color: var(--textColor);
}

* {
  margin: 0px;
  padding: 0px;
 
}

@keyframes expandWidth {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    width: 4rem;
    opacity: 1;
  }
  80% {
    width: 4rem;
    opacity: 1;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
.dots {
  display: flex;
  white-space: nowrap;
  margin: auto;
  gap: 0.2rem;
  width: 0px;
  opacity: 0;
  animation: expandWidth 3s ease-in infinite;
  overflow: hidden;
  position: relative;
}
.dots .dot {
  min-width: 1rem !important;
  height: 2rem;
  background: var(--mainColor);
}
    .dots .dotS {
        background-color: #EED9C4;
    }

@media (max-width: 2000px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1500px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 11px;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 1100px) {
  html {
    font-size: 9px;
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 7px;
  }
}
@media (max-width: 700px) {
  html {
    font-size: 7px;
  }
}
.title__xl {
    font-size: 2.4rem;
    font-weight: bold;
    color: #152773;
}

.desc__xl {
  font-size: 1.7rem;
  margin: auto;
  text-align:justify !important;
  align-items:center;
  align-content:center;
}

.head {
  position: relative;
  padding-bottom: 1rem;
  width: fit-content;
  margin: auto;
}

@media (max-width: 1000px) {
  .title__xl {
    font-size: 4rem;
  }
  .desc__xl {
    font-size: 2.5rem;
  }
}
@media (max-width: 700px) {
  .title__xl {
    font-size: 2.5rem;
  }
  .desc__xl {
    font-size: 1.5rem;
  }
}
:root {
  --mainWidth: 85rem;
  --mainColor: #152773;
  --secondColor: #d78cfc;
  --textColor: #5b5b5d;
}

@media (max-width: 700px) {
  :root {
    --mainWidth: 95%;
    --mainColor: #152773;
    --secondColor: #d78cfc;
    --textColor: #5b5b5d;
  }
}
.button {
    padding: 0.8rem 2rem !important;
    width: fit-content;
    border-radius: 0.3rem;
    cursor: pointer;
    background-color: var(--mainColor);
    color: #fff;
    background-color: #B3C7F9;
    font-weight: bold !important;
    padding: 1rem 3rem;
    text-decoration: none;
    border: 0px;
    cursor: pointer;
}
.button:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.button__xl {
  font-size: 1.3rem;
}

.button__l {
  font-size: 1rem;
}

.button__m {
  font-size: 0.8rem;
}

.button__s {
  font-size: 0.9rem;
  padding: 0.5rem 2rem;
}

.buttonOutline {
  background-color: transparent;
  border: 0.2rem solid var(--mainColor);
  color: var(--mainColor);
  transition: 0.3s;
}
.buttonOutline:hover {
  background-color: var(--mainColor);
  color: #fff;
  transition: 0.3s;
  opacity: 1;
}

.input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  width: 100%;
}
.input label {
  font-size: 1.2rem;
  text-transform: capitalize;
}
.input input {
  height: 3rem;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  border: 0.1rem solid #eee;
  outline: none;
  border-radius: 0.3rem;
}
.input textarea {
  height: 10rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  border: 0.1rem solid #eee;
  outline: none;
  border-radius: 0.3rem;
  resize: none;
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 1000px) {
  .button {
    padding: 1.8rem 3rem;
  }
  .button__xl {
    font-size: 2rem;
  }
  .button__l {
    font-size: 2rem;
  }
  .button__m {
    font-size: 1.8rem;
  }
  .button__s {
    font-size: 2rem;
  }
}
.pageImage {
  width: 100%;
  height: 25rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #d4d4d4;
}
.pageImage .navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pageImage .title {
  font-size: 4rem;
  line-height: 3rem;
  color: #fff;
}

@media (max-width: 1000px) {
  .pageImage {
    font-size: 2rem;
  }
  .pageImage .title {
    font-size: 5rem;
  }
}
.ourMission {
  padding: 2rem 1rem;
  padding-bottom: 5rem;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.ourMission .mission__container {
  width: var(--mainWidth);
  display: flex;
  gap: 3rem;
}
.ourMission .mission__container .mission__item--vi {
  background-color: rgba(15, 140, 252, 0.1450980392) !important;
}
.ourMission .mission__container .mission__item {
  padding: 2em;
  padding-bottom: 5rem;
  background-color: rgba(87, 118, 255, 0.1568627451);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.ourMission .mission__container .mission__item .item__image {
  width: 6rem;
  height: 6rem;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 10px 23px -5px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 10px 10px 23px -5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 10px 10px 23px -5px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.ourMission .mission__container .mission__item .item__image img {
  width: 2.5rem;
}
.ourMission .mission__container .mission__item .item__title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--mainColor);
  text-align: start;
}
    .ourMission .mission__container .mission__item .item__desc {
        font-size: 1.2rem;
        text-align: start;
        width: 90%;
        text-align: justify !important;
        align-items: center;
        align-content: center;
    }

/* Responsive Styles */
@media (max-width: 1000px) {
  .ourMission .mission__container {
    flex-direction: column;
  }
  .ourMission .mission__container .mission__item .item__title {
    font-size: 2.3rem;
  }
    .ourMission .mission__container .mission__item .item__desc {
        font-size: 1.6rem;
    }
}
.companyInterface {
  display: flex;
  justify-content: center;
}
.companyInterface .container {
  padding: 5rem 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--mainWidth);
}
.companyInterface .container .interface__details {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50rem;
}
.companyInterface .container img {
  height: 20rem;
}

@media (max-width: 1000px) {
  .companyInterface {
    display: flex;
    justify-content: center;
  }
  .companyInterface .container {
    flex-direction: column;
    gap: 2rem;
  }
  .companyInterface .container .interface__details {
    width: 100%;
  }
  .companyInterface .container img {
    height: 50rem;
  }
}
@media (max-width: 700px) {
  .companyInterface {
    padding: 0rem 2rem;
    display: flex;
    justify-content: center;
  }
  .companyInterface .container {
    flex-direction: column;
    gap: 2rem;
  }
  .companyInterface .container .interface__details {
    width: 100%;
  }
  .companyInterface .container img {
    height: 30rem;
  }
}
.testimonial {
  background-image: url(./assets/home/testimonialBG.png);
  padding: 3rem;
}
.testimonial .testimonial__container {
  position: relative; /* Required for positioning elements inside */
  margin: 0 auto; /* Center the container horizontally */
  width: var(--mainWidth);
  /* If the swiper container is set to overflow: hidden; make sure it's adjusted */
}
.testimonial .testimonial__container .swiper-wrapper {
  padding: 1rem;
}
.testimonial .testimonial__container .swiper-button-prev,
.testimonial .testimonial__container .swiper-button-next {
  position: absolute;
  top: 60%; /* Vertically center the arrows */
  transform: translateY(-50%);
  z-index: 10; /* Ensure they appear above the swiper slides */
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  color: #000; /* Optional, adjust color for arrow icons */
  border-radius: 50%; /* Optional, make the arrows circular */
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.29);
}
.testimonial .testimonial__container .swiper-button-prev::after,
.testimonial .testimonial__container .swiper-button-next::after {
  scale: 0.3 !important;
  font-weight: bold;
}
.testimonial .testimonial__container .testimonial__item {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.3rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.29);
  text-align: start;
}
.testimonial .testimonial__container .testimonial__item .item__text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  height: 7rem;
  width: 100%;
  text-overflow: ellipsis;
  line-clamp: 4;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Number of lines before ellipsis */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial .testimonial__container .testimonial__item .item__person {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.testimonial .testimonial__container .testimonial__item .item__person img {
  width: 2.5rem;
}
.testimonial .testimonial__container .testimonial__item .item__person .person__details {
  text-align: start;
}
.testimonial .testimonial__container .testimonial__item .item__person .person__details .details__name {
  color: #000;
  font-size: 1.2rem;
}
.testimonial .testimonial__container .testimonial__item .item__person .person__details .details__jobTitle {
  color: var(--mainColor);
  font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 1000px) {
  .testimonial .testimonial__container {
    width: var(--mainWidth);
    /* If the swiper container is set to overflow: hidden; make sure it's adjusted */
  }
  .testimonial .testimonial__container .swiper-wrapper {
    padding: 1rem;
  }
  .testimonial .testimonial__container .swiper-button-prev,
  .testimonial .testimonial__container .swiper-button-next {
    display: none;
  }
  .testimonial .testimonial__container .testimonial__item {
    width: 90% !important;
  }
  .testimonial .testimonial__container .testimonial__item .item__text {
    font-size: 1.8rem;
    width: 80%;
  }
  .testimonial .testimonial__container .testimonial__item .item__person img {
    width: 5rem;
  }
  .testimonial .testimonial__container .testimonial__item .item__person .person__details {
    text-align: start;
  }
  .testimonial .testimonial__container .testimonial__item .item__person .person__details .details__name {
    font-size: 1.8rem;
  }
  .testimonial .testimonial__container .testimonial__item .item__person .person__details .details__jobTitle {
    font-size: 2rem;
  }
}
.menu__section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  z-index: 11;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  color:#152773;
}
.menu__section .menu__contact {
  border-bottom: 0.1rem solid #ddd;
  width: 100%;
  height: 3rem;
  position: static;
  top: 0;
  display: flex;
  justify-content: center;
}
.menu__section .menu__contact .contact__container {
  width: var(--mainWidth);
  display: flex;
  justify-content: space-between;
}
.menu__section .menu__contact .contact__container .contact__details {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1rem;
}
.menu__section .menu__contact .contact__container .contact__details span {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.menu__section .menu__contact .contact__container .contact__details span img {
  width: 1rem;
}
.menu__section .menu__contact .contact__container .socialMedia {
  display: flex;
  gap: 1rem;
}
.menu__section .menu__contact .contact__container .socialMedia img {
  width: 1rem;
}

.menu__container {
  height: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--mainWidth);
}

.logo img {
  height: 5rem;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 1111;
}

.menu--item a {
  color: #9295a8;
  font-size: 1.3rem;
  text-transform: capitalize;
  text-decoration: none;
}

.menu--item a:hover {
  color: #152773;
}

.menu--item.active a {
  color: #152773 !important;
  font-weight: 600;
}

.menu--contact {
  padding: 0.2rem 1.5rem;
  border: 0.1rem solid #152773;
  border-radius: 0.3rem;
  height: fit-content;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* styles.css */
#submenu1,
#submenu2 {
  transition: all 0.3s ease;
}

/* Hide submenu1 initially when scrolling down */
.hidden {
  opacity: 0;
  height: 0 !important;
}

@media (max-width: 1200px) {
  .menu__contact {
    display: none !important;
  }
  .menu__container {
    height: 5rem;
  }
  .menu--item a {
    font-size: 1.2rem;
  }
}
/* Responsive Styles */
@media (max-width: 1000px) {
  .menu__section {
    /* Menu open state with animation */
  }
  .menu__section .menu__container {
    height: 8rem;
  }
  .menu__section .menu {
    flex-direction: column;
    gap: 0;
    background-color: white;
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    padding: 0;
    /* Add transitions and initial hidden state */
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }
  .menu__section .logo img {
    height: 5rem;
  }
  .menu__section .menu--item a {
    font-size: 2.5rem;
  }
  .menu__section .menu.menu--open {
    max-height: 100vh; /* Adjust according to your menu content */
    padding: 1rem;
  }
  .menu__section .menu--item,
  .menu__section .button {
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
  }
  .menu__section .button {
    padding: 2rem !important;
    margin-top: 3rem !important;
    border: none;
    background-color: var(--mainColor);
    color: white;
  }
  .hamburger {
    display: block;
    font-size: 2.5rem;
  }
}
.footer {
  background: #f8f8f8;
  padding: 3rem;
  padding-bottom: 0px;
  text-align: start;
  font-size: 1rem;
}
.footer__container {
  width: var(--mainWidth);
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #ddd;
}
    .footer__container .company__overview {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: calc(var(--mainWidth) / 4);
        text-align: justify !important;
    }
.footer__container .company__overview .socialMedia {
  display: flex;
  gap: 1rem;
}
.footer__container .company__overview .socialMedia img {
  width: 1.5rem;
}
    .footer__container .company {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        color: #002B5B;

    }
.footer__container .company a {
  text-decoration: none;
  color: #898989;
  font-size: 1rem;
}
.footer__container .company a:hover {
  color: var(--mainColor);
}
    .footer__container .contactUs {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        font-size: 1rem;
        color: #002B5B;
    }
.footer__container .contactUs .contact__way {
  color: #898989;
  display: flex;
  gap: 1rem;
}
.footer__container .contactUs .contact__way .contact__head {
  font-weight: bold;
}
    .footer__container .newsLater {
        max-width: calc(var(--mainWidth) / 4);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #002B5B;
    }
.footer__container .newsLater input {
  border: 0.1rem solid #ddd;
  height: 2.5rem;
  font-size: 0.9rem;
  padding-inline-start: 0.5rem;
  outline: none;
}
.footer__container .footerHead {
  font-size: 1.6rem;
}
.footer__copyrights {
    padding: 1.5rem;
    margin: auto;
    width: var(--mainWidth);
    color: #002B5B;
}

@media (max-width: 1000px) {
  .footer__container {
    justify-content: space-between;
    font-size: 2rem;
    flex-direction: column;
  }
  .footer__container .company__overview {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 100%;
  }
  .footer__container .company__overview img {
    width: 50%;
  }
  .footer__container .company__overview .socialMedia {
    gap: 2rem;
  }
  .footer__container .company__overview .socialMedia img {
    width: 5rem;
  }
  .footer__container .company {
    gap: 3rem;
  }
  .footer__container .company a {
    font-size: 2rem;
    font-weight: bold;
  }
  .footer__container .company a:hover {
    color: var(--mainColor);
  }
  .footer__container .contactUs {
    gap: 1rem;
    font-size: 2rem;
  }
  .footer__container .contactUs .contact__way {
    gap: 1rem;
  }
  .footer__container .contactUs .contact__way .contact__head {
    font-weight: bold;
  }
  .footer__container .newsLater {
    gap: 2rem;
    max-width: 100% !important;
  }
  .footer__container .newsLater .button {
    width: 100%;
  }
  .footer__container .newsLater input {
    height: 5rem;
    font-size: 2rem;
    padding-inline-start: 1rem;
    outline: none;
  }
  .footer__container .footerHead {
    font-size: 2.6rem;
    font-weight: bold;
  }
  .footer__copyrights {
    font-size: 2.5rem;
    width: var(--mainWidth);
  }
}
.mainImages {
  margin-top: 4rem;
}
.mainImages .swiper {
  width: 100%;
  height: 60vh;
}
.mainImages .swiper .swiper-slide {
  position: relative;
}
.mainImages .swiper .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.mainImages .swiper .swiper-slide .slide__content {
  z-index: 11111;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40rem;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
    .mainImages .swiper .swiper-slide .slide__content .content__title {
        font-size: 2.6rem;
        line-height: 3.5rem;
        text-align: justify !important;
        align-items: center;
        align-content: center;
    }
    .mainImages .swiper .swiper-slide .slide__content .content__desc {
        width: 70rem;
        font-size: 1.7rem;
        line-height: 2.3rem;
        text-align: justify !important;
        align-items: center;
        align-content: center;
    }
.mainImages .swiper .swiper-button-next:after,
.mainImages .swiper .swiper-button-prev:after {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  scale: 0.8;
}
.mainImages .swiper .swiper-button-prev {
  left: 7rem;
}
.mainImages .swiper .swiper-button-next {
  right: 7rem;
}
.mainImages .swiper .swiper-button-prev,
.mainImages .swiper .swiper-button-next {
  background-color: #152773;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100px;
}
.mainImages .swiper .swiper-pagination {
  bottom: 5rem !important;
}
.mainImages .swiper .swiper-pagination-bullet {
  width: 3rem;
  height: 0.5rem;
  border-radius: 0.1rem;
}
    .mainImages .swiper .swiper-pagination-bullet {
        opacity: 1;
        background-color: #EED9C4;
    }
    .mainImages .swiper .swiper-pagination-bullet-active {
        background-color: #B3C7F9;
    }

@media (max-width: 1000px) {
  .mainImages .swiper .swiper-slide .slide__content .content__title {
    font-size: 4rem;
    line-height: 6rem;
    width: 60rem;
    font-weight: bold;
  }
  .mainImages .swiper .swiper-slide .slide__content .content__desc {
    width: 60rem;
    font-size: 2.8rem;
    line-height: 3rem;
  }
  .mainImages .swiper .swiper-pagination-bullet {
    width: 10rem;
    height: 0.7rem;
    border-radius: 0.1rem;
  }
  .mainImages .swiper-button-prev,
  .mainImages .swiper-button-next {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .mainImages .swiper .swiper-slide .slide__content .content__title {
    font-size: 4rem;
    line-height: 5rem;
    width: 60rem;
    font-weight: bold;
  }
  .mainImages .swiper .swiper-slide .slide__content .content__desc {
    width: 80%;
    font-size: 1.7rem;
    line-height: 3rem;
  }
}
.ourServices {
  background: rgba(21, 38, 115, 0.0392156863);
  padding: 2rem 1rem;
  position: relative;
}
.ourServices .services {
  padding: 2rem 0rem;
  display: flex;
  gap: 1rem;
  width: var(--mainWidth) !important;
}
.ourServices .services .service__item {
  display: flex;
  flex-direction:column;
  gap: 1.2rem;
  padding: 4rem 0rem;
  height: 27rem;
  align-items: center;
  cursor: pointer;
  border-radius: 0.4rem;
  position: relative;
}
.ourServices .services .service__item img {
  width: 6rem;
}
.ourServices .services .service__item .item__title {
  color: var(--mainColor);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
    .ourServices .services .service__item .item__desc {
        font-size: 1.3rem;
        padding: 1.2rem;
        text-align: justify !important;
        align-items: center;
        align-content: center;
    }
.ourServices .services .service__item:hover {
  transition: 0.3s;
  box-shadow: 10px 10px 23px -5px rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 10px 10px 23px -5px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 10px 10px 23px -5px rgba(0, 0, 0, 0.32);
}
.ourServices .services .service__item:hover::after {
  content: " ";
  width: 5rem;
  top: 0;
  height: 0.4rem;
  background-color: var(--mainColor);
  position: absolute;
  border-radius: 0px 0px 1rem 1rem;
}
.ourServices .swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

@media (max-width: 1370px) {
  .ourServices .services .service__item {
    height: 25rem;
    padding: 6rem 0rem;
  }
  .ourServices .services .service__item img {
    width: 5rem;
  }
  .ourServices .services .service__item .item__title {
    color: var(--mainColor);
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 3rem;
  }
  .ourServices .services .service__item .item__desc {
    font-size: 1.2rem;
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .ourServices .services {
    padding: 6rem 0rem;
  }
  .ourServices .services .service__item {
    width: 100% !important;
    height: 35rem;
    padding: 6rem 0rem;
    padding-bottom: 1rem;
  }
  .ourServices .services .service__item img {
    width: 10rem;
  }
  .ourServices .services .service__item .item__title {
    color: var(--mainColor);
    font-weight: bold;
    font-size: 2.7rem;
    line-height: 3rem;
  }
  .ourServices .services .service__item .item__desc {
    font-size: 1.8rem;
    width: 90%;
    overflow: hidden;
  }
}
.completedProject {
  height: 15rem;
  width: 100%;
  background-image: url(./assets/shared/5.png);
  position: relative;
  display: flex;
  justify-content: center;
  background-size: cover;
}
.completedProject .projects__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--mainWidth);
  gap: 5rem;
}
    .completedProject .projects__container .project {
        color: #fff;
        font-size: 1.2rem;
        align-items: center;
    }
.completedProject .projects__container .project .value {
  font-size: 2.7rem;
  font-weight: bold;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.completedProject .projects__container .project .value.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1000px) {
  .completedProject .projects__container .project {
    font-size: 2rem;
  }
  .completedProject .projects__container .project .value {
    font-size: 3.5rem;
  }
}
/* Responsive Styles */
@media (max-width: 700px) {
  .completedProject {
    height: fit-content;
  }
  .completedProject .projects__container {
    flex-direction: column;
  }
  .completedProject .projects__container .project {
    font-size: 2rem;
  }
  .completedProject .projects__container .project .value {
    font-size: 3.5rem;
  }
}
.ourProduct {
  padding: 4rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #f8f8f8;
}
.ourProduct .ourProduct__container {
  width: 60%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-inline-end: -5rem;
}
.ourProduct .ourProduct__container .ourProduct__item {
  width: 50% !important;
  display: flex;
  align-items: flex-start;
  text-align: start;
  gap: 1rem;
  margin: 1rem 0rem;
}
.ourProduct .ourProduct__container .ourProduct__item img {
  width: 2.5rem;
}
.ourProduct .ourProduct__container .ourProduct__item .item__details {
  width: 70%;
}
    .ourProduct .ourProduct__container .ourProduct__item .item__details .item__title {
        font-weight: bold;
        color: #152773;
    }
    .ourProduct .ourProduct__container .ourProduct__item .item__details .item__desc {
        font-size: 1.0;
        text-align: justify !important;
        align-items: center;
        align-content: center;
    }

@media (max-width: 1000px) {
  .ourProduct .ourProduct__container {
    width: var(--mainWidth);
    flex-direction: column;
    margin-inline-end: 0rem;
  }
  .ourProduct .ourProduct__container .ourProduct__item {
    padding: 2rem;
    flex: 1 !important;
    width: unset !important;
    border: 0.1rem solid #ddd;
  }
  .ourProduct .ourProduct__container .ourProduct__item img {
    width: 5rem;
  }
  .ourProduct .ourProduct__container .ourProduct__item .item__details {
    width: 100%;
  }
  .ourProduct .ourProduct__container .ourProduct__item .item__details .item__title {
    font-size: 2.8rem;
  }
  .ourProduct .ourProduct__container .ourProduct__item .item__details .item__desc {
    font-size: 2.6rem;
  }
}
.contact {
  padding: 3rem;
  background-image: url(./assets/home/contactBG.png);
  color: #fff;
}
.contact .head .desc__xl {
  color: #efefef;
}
.contact .contact__container {
  width: var(--mainWidth);
  margin: auto;
  display: flex;
  justify-content: space-around;
  gap: 3rem;
  text-align: start;
}
.contact .contact__container .container__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact .contact__container .container__item img {
  width: 4rem;
}
.contact .contact__container .container__item .item__title {
  font-size: 1.7rem;
  font-weight: bold;
}
.contact .contact__container .container__item .item__desc {
  color: #efefef;
}

@media (max-width: 700px) {
  .contact .contact__container {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .contact .contact__container .container__item img {
    width: 4rem;
  }
  .contact .contact__container .container__item .item__title {
    font-size: 1.7rem;
    font-weight: bold;
  }
  .contact .contact__container .container__item .item__desc {
    color: #efefef;
  }
}
.ourClients {
  padding: 3rem 0px;
}
.ourClients__container {
  width: var(--mainWidth);
  margin: auto;
}
.ourClients__container img {
  height: 8rem;
  cursor: pointer;
}

.aboutUs {
  background-image: url(./assets/about/aboutusPage.png);
  background-size: cover;
}

.ourMatto {
  padding: 3rem 0rem;
  background-image: url(./assets/shared/grayBG.png);
  background-size: contain;
}
.ourMatto__container {
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: var(--mainWidth);
  margin: auto;
  text-align: start;
}
.ourMatto__container img {
  width: 30rem;
}
.ourMatto__container .ourMatto__details {
  width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
    .ourMatto__container .ourMatto__details .details__textL {
        font-size: 2rem;
        line-height: 2rem;
        margin-bottom: 2rem;
        font-weight: bold;
        color: #152773;
    }

@media (max-width: 1000px) {
  .ourMatto__container {
    font-size: 1.8rem;
    flex-direction: column;
  }
  .ourMatto__container .ourMatto__details {
    width: 90%;
    padding: 0px 2rem;
  }
  .ourMatto__container .ourMatto__details .details__textL {
    font-size: 2.5rem;
  }
}
.coreValue {
  padding: 3rem 0rem;
  background-image: url(./assets/shared/grayBG.png);
  background-size: contain;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.coreValue__container {
  font-size: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: var(--mainWidth);
  margin: auto;
  text-align: start;
  gap: 2rem;
  flex-wrap: wrap;


}
.coreValue__container .coreValue__item {
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 4.7rem);
  background-color: #fff;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  border-radius: 0.3rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);

}
    .coreValue__container .coreValue__item .item__title {
        font-size: 1.2rem;
        font-weight: bold;
        color: #152773;
    }
    .coreValue__container .coreValue__item .item__desc {
        font-size: 1.0;
        height: 6rem;
        text-overflow: ellipsis;
        line-clamp: 4;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: justify !important;
        align-items: center;
        align-content: center;
    }
.coreValue__container .coreValue__item .item__icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 1rem;
  align-items: center;

}
.coreValue__container .coreValue__item .item__icon img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .coreValue__container .coreValue__item {
    width: 100%;
  }
    .coreValue__container .coreValue__item .item__title {
        font-size: 2rem;
        font-weight: bold;
       
    }
  .coreValue__container .coreValue__item .item__desc {
    font-size: 2rem;
    height: fit-content;
  }
  .coreValue__container .coreValue__item .item__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.solutions {
  padding: 3rem;
}
.solutions .solutions__container {
  width: var(--mainWidth);
  margin: auto;
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  cursor: pointer;
}
    .solutions .solutions__container .container__item {
        padding: 1rem;
        width: 12rem;
        color: #152773;
        border-radius: 0.3rem;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    }
.solutions .solutions__container .container__item .item__icon {
  background-image: linear-gradient(rgba(124, 214, 51, 0.6039215686), rgba(116, 185, 60, 0.7450980392));
  width: 5.5rem;
  height: 5.5rem;
  padding: 1rem;
  border-radius: 1.0;
  margin: auto;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
.solutions .solutions__container .container__item .item__icon img {
  width: 4rem;
  margin: auto;
}
.solutions .solutions__container .container__item:hover .item__icon {
  transition: all 0.3s;
  background-image: linear-gradient(rgba(21, 38, 115, 0.5764705882), rgba(155, 230, 238, 0.568627451)) !important;
}
        .solutions .solutions__container .container__item p {
            font-size: 0.9rem;
            height: 7rem;
            color: #152773;
            font-weight: bold;
            padding:inherit;
        }

@media (max-width: 1000px) {
  .solutions {
    padding: 2rem;
  }
  .solutions .solutions__container .container__item {
    padding: 2rem;
    width: 100%;
  }
  .solutions .solutions__container .container__item img {
    width: 14rem;
  }
  .solutions .solutions__container .container__item p {
    font-size: 10rem;
    height: 8rem;
  }
}
.softwareInterface {
  display: flex;
  justify-content: center;
}
.softwareInterface .container {
  padding: 5rem 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--mainWidth);
}
.softwareInterface .container .interface__details {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 40rem;
}
.softwareInterface .container img {
  height: 20rem;
}

@media (max-width: 1000px) {
  .softwareInterface {
    display: flex;
    justify-content: center;
  }
  .softwareInterface .container {
    flex-direction: column;
    gap: 2rem;
  }
  .softwareInterface .container .interface__details {
    width: 100%;
  }
  .softwareInterface .container img {
    height: 50rem;
  }
}
@media (max-width: 700px) {
  .softwareInterface {
    padding: 0rem 2rem;
    display: flex;
    justify-content: center;
  }
  .softwareInterface .container {
    flex-direction: column;
    gap: 2rem;
  }
  .softwareInterface .container .interface__details {
    width: 100%;
  }
  .softwareInterface .container img {
    height: 30rem;
  }
}
.servicesPage {
  background-image: url(./assets/services/servicesPage.png);
  background-size: cover;
}

.technology {
  padding: 3rem;
  background-image: url(./assets/shared/grayBG.png);
}
.technology__container {
  width: var(--mainWidth);
  margin: auto;
  display: flex;
  gap: 1rem;
}
.technology__container .technology__details,
.technology__container .technology__companies {
  flex: 1;
}
.technology__container .technology__details {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
    .technology__container .technology__details .title .small {
        font-size: 2.5rem;
        line-height: 1rem;
        font-weight: bold;
    }
.technology__container .technology__details .title .large {
  font-size: 1.8rem;
  font-weight: bold;
}
.technology__container .technology__details .list {
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-inline-start: 1.3rem;
}
    .technology__container .technology__details .list li::marker {
        color: #EED9C4;
    }
.technology__container .technology__companies {
  display: flex;
  justify-content: flex-end;
}
.technology__container .technology__companies img {
  width: 80%;
}

@media (max-width: 1200px) {
  .technology__container .technology__companies svg {
    width: 70%;
  }
}
@media (max-width: 1000px) {
  .technology__container {
    flex-direction: column;
  }
  .technology__container .technology__details .desc {
    font-size: 1.8rem;
  }
  .technology__container .technology__details .title .small {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1rem;
  }
  .technology__container .technology__details .title .large {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .technology__container .technology__companies {
    display: flex;
    justify-content: center;
  }
  .technology__container .technology__companies svg {
    width: 70% !important;
  }
}
.technical {
  padding: 3rem 0rem;
  background-image: url(./assets/shared/grayBG.png);
  background-size: contain;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.technical__container {
  font-size: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: var(--mainWidth);
  margin: auto;
  text-align: start;
  gap: 2rem;
  flex-wrap: wrap;
}
.technical__container .technical__item {
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 4.7rem);
  background-color: #fff;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  border-radius: 0.3rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
    .technical__container .technical__item .item__title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #152773;
    }
    .technical__container .technical__item .item__desc {
        font-size: 1.5rem;
        height: 16rem;
        text-overflow: ellipsis;
        line-clamp: 4;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
.technical__container .technical__item .item__icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: 1rem;
  align-items: center;
}
.technical__container .technical__item .item__icon img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .technical__container .technical__item {
    width: 100%;
  }
  .technical__container .technical__item .item__title {
    font-size: 2rem;
    font-weight: bold;
  }
  .technical__container .technical__item .item__desc {
    font-size: 2rem;
    height: fit-content;
  }
  .technical__container .technical__item .item__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.services {
  padding: 3rem;
}
.services__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: var(--mainWidth);
  margin: auto;
}
    .services__container .services__item {
        padding: 1rem 1rem;
        border: 0.1rem solid #152773;
        border-radius: 0.5rem;
    }
.services__container .services__item img {
  width: 7rem;
}
    .services__container .services__item .item__title {
        font-size: 2rem;
        font-weight: bold;
        color: #152773;
        padding: 1rem 1rem;
    }
    .services__container .services__item .item__desc {
        font-size: 1.5rem;
        color: #949494;
        padding: 1rem 1rem;
    }

@media (max-width: 1200px) {
  .services {
    padding: 3rem;
  }
  .services__container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1000px) {
  .services {
    padding: 3rem;
  }
  .services__container {
    grid-template-columns: 1fr 1fr;
  }
  .services__container .services__item {
    padding: 1rem 1rem;
    border: 0.2rem solid rgba(87, 118, 255, 0.1568627451);
    border-radius: 0.3rem;
  }
  .services__container .services__item .item__title {
    font-size: rem;
  }
  .services__container .services__item .item__desc {
    font-size: 1.5rem;
    color: #949494;
  }
}
@media (max-width: 700px) {
  .services {
    padding: 3rem;
  }
  .services__container {
    grid-template-columns: 1fr;
  }
  .services__container .services__item {
    padding: 2rem 1rem;
    border: 0.1rem solid #eee;
    border-radius: 0.3rem;
  }
  .services__container .services__item img {
    width: 10rem;
  }
  .services__container .services__item .item__title {
    font-size: 2rem;
    font-weight: bold;
  }
  .services__container .services__item .item__desc {
    font-size: 1.8rem;
    color: #949494;
  }
}
.features {
  padding: 3rem;
}
.features__container {
  width: var(--mainWidth);
  margin: auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
.features__container .container__item {
  display: flex;
  text-align: start;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  border: 0.1rem solid #eee;
  border-radius: 0.3rem;
  gap: 2rem;
}
.features__container .container__item img {
  width: 5rem;
  height: 5rem;
}
.features__container .container__item .details__title {
  font-size: 1.8rem;
  font-weight: bold;
}
.features__container .container__item .details__desc {
  font-size: 1.5rem;
}

@media (max-width: 1000px) {
  .features {
    padding: 3rem;
  }
  .features__container {
    width: var(--mainWidth);
    margin: auto;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr ;
  }
  .features__container .container__item {
    gap: 2rem;
  }
  .features__container .container__item img {
    width: 5rem;
    height: 5rem;
  }
    .features__container .container__item .details__title {
        font-size: 2rem;
        font-weight: bold;
        color: #152773;
    }
  .features__container .container__item .details__desc {
    font-size: 1.8rem;
  }
}
.support {
  padding: 2rem 0rem;
  width: 100%;
  background-image: url(./assets/shared/5.png);
  position: relative;
  display: flex;
  justify-content: center;
  background-size: cover;
  color: #fff;
}

.projectsPage {
  background-image: url(./assets/projects/projectsMainPage.png);
  background-size: cover;
}

.projects {
  padding: 3rem;
}
.projects__container {
  width: var(--mainWidth);
  margin: auto;
  display: flex;
  gap: 3rem;
  text-align: start;
  justify-content: space-between;
}
.projects__container .container__details {
  width: 70%;
}
.projects__container img {
  width: 30%;
}

.project1 {
  background-image: url(./assets/projects/bg1.png);
}

.project3 {
  background-image: url(./assets/projects/bg3.png);
}

.project5 {
  background-image: url(./assets/projects/bg5.png);
}

@media (max-width: 1000px) {
  .projects {
    padding: 2.7rem;
  }
  .projects__container {
    width: var(--mainWidth);
    flex-direction: column;
    gap: 3rem;
    text-align: start;
    justify-content: center;
    align-items: center;
  }
  .projects__container .container__details {
    width: 100%;
  }
  .projects__container img {
    width: 90%;
  }
}
.newsBG {
  background-image: url(./assets/news/newBG.png);
  background-size: cover;
}

.newsDesc {
  padding: 3rem 0rem;
  background-image: url(./assets/shared/grayBG.png);
  background-size: contain;
}
.newsDesc__container {
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: var(--mainWidth);
  margin: auto;
  text-align: start;
 
}
.newsDesc__container img {
  width: 30rem;
}
    .newsDesc__container .newsDesc__details {
        width: 40rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        text-align: justify !important;
        align-items: center;
        align-content: center;
    }
.newsDesc__container .newsDesc__details .details__textL {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color:#152773;
}

@media (max-width: 1000px) {
  .newsDesc__container {
    font-size: 1.8rem;
    flex-direction: column;
  }
  .newsDesc__container .newsDesc__details {
    width: 90%;
    padding: 0px 2rem;
  }
  .newsDesc__container .newsDesc__details .details__textL {
    font-size: 2.5rem;
  }
}
.newsLetters {
  padding: 3rem;
}
.newsLetters .bg {
  background-image: url(./assets/news/lettersBG.png);
  background-size: contain;
}
.newsLetters .bg .newsLetters__container {
  width: var(--mainWidth);
  margin: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
.newsLetters .bg .newsLetters__container .container__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 2rem 1.5rem;
  border-radius: 0.3rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  text-align: start;
}
.newsLetters .bg .newsLetters__container .container__item img {
  width: 15rem;
}
.newsLetters .bg .newsLetters__container .container__item .item__details .details__head {
  max-height: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.3rem;
  line-height: 2rem;
}
.newsLetters .bg .newsLetters__container .container__item .item__details .details__desc {
  font-size: 0.9rem;
  max-height: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 4;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.newsLetters .bg .newsLetters__container .container__item .item__details a {
  font-size: 1rem;
  color: var(--mainColor) !important;
}

@media (max-width: 1000px) {
  .newsLetters .bg .newsLetters__container {
    grid-template-columns: 1fr;
  }
  .newsLetters .bg .newsLetters__container .container__item {
    display: flex;
    gap: 3rem;
  }
  .newsLetters .bg .newsLetters__container .container__item img {
    width: 25rem;
  }
  .newsLetters .bg .newsLetters__container .container__item .item__details {
    gap: 2rem;
  }
  .newsLetters .bg .newsLetters__container .container__item .item__details .details__head {
    max-height: 6rem;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .newsLetters .bg .newsLetters__container .container__item .item__details .details__desc {
    font-size: 2rem;
    max-height: 20rem;
  }
  .newsLetters .bg .newsLetters__container .container__item .item__details a {
    font-size: 2rem;
    color: var(--mainColor) !important;
  }
}
@media (max-width: 700px) {
  .newsLetters .bg .newsLetters__container {
    grid-template-columns: 1fr;
  }
  .newsLetters .bg .newsLetters__container .container__item {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .newsLetters .bg .newsLetters__container .container__item img {
    width: 100%;
  }
  .newsLetters .bg .newsLetters__container .container__item .item__details {
    gap: 2rem;
  }
  .newsLetters .bg .newsLetters__container .container__item .item__details .details__head {
    max-height: 6rem;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .newsLetters .bg .newsLetters__container .container__item .item__details .details__desc {
    font-size: 2rem;
    max-height: 20rem;
  }
}
.profileBG {
  background-image: url(./assets/profile/profileBG.png);
  background-size: cover;
}

.profilePDF {
  padding: 3rem;
}
.profilePDF embed {
  width: var(--mainWidth);
  height: 80vh;
}
.profilePDF embed {
  width: var(--mainWidth);
  height: 80vh;
}

.contactBG {
  background-image: url(./assets/contact/contactBG.png);
  background-size: cover;
}

.locationAndEmail {
  padding: 3rem;
  background-image: url(./assets/projects/bg5.png);
  background-size: contain;
}
.locationAndEmail__container {
  width: var(--mainWidth);
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.locationAndEmail__container .email {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.locationAndEmail__container .email .button {
  width: auto !important;
}
.locationAndEmail__container .email .name {
  display: flex;
  gap: 1rem;
}
.locationAndEmail__container .location {
  position: relative;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.locationAndEmail__container .location img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.locationAndEmail__container .location iframe {
  width: 90%;
  height: 90%;
  border-radius: 1rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1000px) {
  .locationAndEmail__container {
    flex-direction: column;
    gap: 3rem;
  }
  .locationAndEmail__container .email {
    width: 100%;
  }
  .locationAndEmail__container .email label {
    font-size: 2rem;
  }
  .locationAndEmail__container .email input {
    height: 5rem;
  }
  .locationAndEmail__container .location {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .locationAndEmail__container .location img {
    display: none;
  }
  .locationAndEmail__container .location iframe {
    width: 100%;
    height: 50rem;
  }
}

/*# sourceMappingURL=styles.css.map */
