::-moz-selection {
  color: #ffffff;
  background: #2A8EA6;
}
::selection {
  color: #ffffff;
  background:#2A8EA6;
}
:focus {
  outline: none;
}
* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Estedad";
  src: url("../font/Estedad-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Estedad";
  src: url("../font/Estedad-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Estedad";
  src: url("../font/Estedad-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Estedad";
  src: url("../font/Estedad-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Estedad";
  src: url("../font/Estedad-ExtraBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Estedad";
  src: url("../font/Estedad-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: 12rem;
  overflow-x: hidden;
}
html,
body,
button,
input,
optgroup,
a,
span,
form,
div,
ul,
li,
p,
strong,
em,
div,
h1,
h2,
h3,
h4,
h5,
h6,
section,
main,
select,
textarea {
  font-weight: 300;
  font-family: "Estedad";
  scroll-margin-top: 12rem; /* 10px */
}
/*    start code here   */
button,
a {
  cursor: pointer;
}
body {
  background: #E3F1F4;
}

.wrapper {
  position: relative;
}
.mobile {
  display: none;
}
.tablet {
  display: none;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 10px));
  }
}

.marquee--fit-content {
  max-width: fit-content;
}

.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 20;
  left: 0;
}

.marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

.marquee__content > * {
  flex: 0 0 auto;
  color: white;
  margin: 2px;
  padding: 0rem 2rem;
  text-align: center;
  max-width: 300px;
}
@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + 20px));
  }
  to {
    transform: translateX(0);
  }
}
.nav {
  height: 60px;
  margin-top: 20px;
  margin-right: 10%;
  padding: 10px 20px;
  border-radius: 10px;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  transition-delay: 1s;
  transition: background-color 0.2s linear;
}
.nav div:nth-child(1) {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 60px;
}
.nav:not(.scrolled) div.phone_number {
  display: none;
}
.nav div.phone_number {
  color: #4946d5;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.nav div.phone_number a {
  font-weight: 600;
  font-size: 16px;
}

.nav:not(.scrolled) {
  position: absolute;
}
/* Sidebar styles */
/* Initial Sidebar State */
.sidebar {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  z-index: 1000;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  /* transform: translateX(-100%); Initially hidden */
  transition: transform 0.1s ease, opacity 0.1s ease; /*Smooth transition for transform and background color */
}

/* Keyframes for Slide In and Slide Out Animations */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 100;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 100;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
/* Sidebar Shown State */
.sidebar.show {
  animation: slideIn 0.5s forwards;
  height: 100vh;
  width: 100vw;
  background-color: white;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

/* Sidebar Hidden State (to trigger slide-out) */
.sidebar.hide {
  display: none;
}

/* Styling for the inner content when sidebar is shown */
.sidebar.show div {
  color: #a3041a;
  gap: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  border-top: 1px #dfdfdf solid;
}

.sidebar li {
  text-align: right;
  color: white;
  cursor: pointer;
}
.sidebar.show ul li {
  color: #a3041a;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px #dfdfdf solid;
  width: 100%;
  padding: 20px 0;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  cursor: pointer;
  color: white;
}

.nav.scrolled {
  z-index: 3;
  position: fixed;
  background-color: white;
  -webkit-box-shadow: 1px 12px 106px -35px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 12px 106px -35px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 12px 200px 1px rgba(0, 0, 0, 0.45);
}

.nav ul {
  display: flex;
  gap: 60px;
}

.nav ul {
  display: flex;
  gap: 60px;
}
.content .hero {
  width: 80%;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

#Introduction .shadow {
  -webkit-box-shadow: 1px 5px 62px -43px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 5px 62px -43px rgba(0, 0, 0, 0.75);
  box-shadow: 1px 5px 62px -43px rgba(0, 0, 0, 0.75);
}
.containerr {
  max-width: 1220px;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

/* Marquee styles */
.marquee {
  position: relative;
  display: flex;
  overflow: visible;
  user-select: none;
  gap: 10px;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 5px;
  min-width: 1100px;
  animation: scroll 10s linear infinite;
  height: 165px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 10px));
  }
}

.marquee--fit-content {
  max-width: fit-content;
}

.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 20;
  left: 0;
}

.marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

.marquee__content > * {
  object-fit: contain;
  height: 163px;
  flex: 0 0 auto;
  color: white;
  margin: 2px;
  padding: 0rem 2rem;
  text-align: center;
  max-width: 160px;
}
@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + 20px));
  }
  to {
    transform: translateX(0);
  }
}

.accordion button {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 10px;
  width: 22px;
  height: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded="true"] {
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 52%);
  color: #03b5d2;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 30rem;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.item.selected {
  background-color: #04a38d;
  border: #04a38d 1px solid !important;
  color: white;
}
.item .close {
  position: absolute;
  top: -5px;
  left: -2px;
}

.item:not(.selected) .close {
  opacity: 0;
}

.item.selected .close {
  opacity: 100;
}

footer .services {
  grid-area: services;
}

footer .PHONENUMBERS {
  grid-area: PHONENUMBERS;
}
footer .about_us {
  grid-area: about_us;
}
footer .images {
  grid-area: images;
}

footer > div > div {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: auto;
  grid-template-areas:
    "about_us services PHONENUMBERS "
    "images images images ";
}

input.error {
  border: #a3041a 1px solid !important;
}
#select-service-title.error {
  color: #a3041a;
}
.content-wrapper {
  width: 70%;
  max-width: 100rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5rem;
}

.blue-line {
  height: 0.3rem;
  width: 6rem;
  background-color: rgb(79, 143, 226);
  margin-bottom: calc(3rem + 2vmin);
}

.wrapper-for-arrows {
  position: relative;
  width: 80%;
  border-radius: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.review-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding-top: calc(2rem + 1vmin); */
  width: 100%;
  padding: 60px 80px;
}

#imgDiv {
  border-radius: 50%;
  width: calc(3rem + 4vmin);
  height: calc(3rem + 4vmin);
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: calc(0.7rem + 0.5vmin);
}

#personName {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

#profession {
  color: #000;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

#description {
  color: #3b3b3b;
  text-align: right;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 40px;
}

.arrow-wrap {
  position: absolute;
  top: 50%;
}

.arrow {
  width: calc(1.4rem + 0.6vmin);
  height: calc(1.4rem + 0.6vmin);
  border: solid #2A8EA6;
  border-width: 0 calc(0.2rem) calc(0.2rem) 0;
  cursor: pointer;
  transition: transform 0.3s;
}

.arrow:hover {
  transition: 0.3s;
  transform: scale(1.15);
}

.left-arrow-wrap {
  left: 2%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.right-arrow-wrap {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 2%;
}

@media screen and (max-width: 900px) {
  .content-wrapper {
    width: 100%;
  }
}
.item-description {
  position: absolute;
  top: -200px;
  right: 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.item-description.selected {
  opacity: 1;
}

.item-description:not(.selected) {
  opacity: 0;
}

.service-item {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-item.selected {
  border: 5px solid #f7aa00;
  box-shadow: 0px 1px 12px 0px rgba(247, 170, 0, 0.3);
}

.service-item:not(.selected) {
  border: 5px solid transparent;
}

.button:hover {
  background: #f7aa00;
  box-shadow: 0px 1px 16.1px 0px rgba(255, 255, 255, 0.3);
}

.button {
  transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#FormButton {
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#FormButton.success {
  background: #04a38d;
  color: white;
}

/* .other-item {
  border: 0.25px solid #27548a;
} */
