@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200;300;400;500;600;700;800&display=swap");
body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  text-align: left;
  background-color: #101734;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.fixedBttns {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 11;
}
.fixedBttns .fixedBtn {
  background-color: #E0AD3F;
  border-radius: 50%;
  margin: 10px;
  height: 45px;
  width: 45px;
  padding: 13px 15px;
  cursor: pointer;
  transition: 0.3s;
  animation: opacity 1s ease;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixedBttns .fixedBtn:hover {
  transform: translateY(-3px);
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fixedBttns .callBtn {
  animation: zoom 5s infinite;
  margin-bottom: 15px;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.bttn {
  outline: none;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  transition: 0.3s;
  font-weight: 500;
  font-size: 17px;
}
.bttn svg {
  margin-left: 3px;
}
.bttn:focus {
  outline: none;
}
.bttn:active {
  transform: scale(0.9);
}
.bttn.bttn_primary {
  color: #101734;
  background: #E0AD3F;
  padding: 10px 35px;
  width: 180px;
}
.bttn.bttn_secondary {
  color: #E0AD3F;
  background: unset;
  border: 1px solid #E0AD3F;
}

.alCenter {
  display: flex;
  align-items: center;
}

.jsEnd {
  justify-content: end;
}

.navbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  font-size: 18px;
  padding: 0.5rem 1rem;
  transition: 0.3s;
}
.navbar .navbar-brand img {
  width: 60px;
}
.navbar .nav-link {
  padding: 0 !important;
  margin: 0 12px;
  color: #EDF0F1 !important;
  cursor: pointer !important;
  font-size: 16px;
  font-weight: 300;
  transition: 0.3s;
  position: relative;
}
.navbar .nav-link:hover {
  color: #fff !important;
}
.navbar .nav-link:last-child {
  color: #E0AD3F !important;
  margin-left: 2rem;
}
.navbar .nav-link.activeNav {
  position: relative;
  text-decoration: none;
}
.navbar .nav-link.activeNav::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0cm;
  background: #fff;
  transition: 0.6s;
  height: 1.4px;
  animation: hover 1s ease;
  animation-fill-mode: forwards;
}
@keyframes hover {
  from {
    transform: skewX(45deg);
    width: 0cm;
  }
  to {
    transform: skewX(0deg);
    width: 100%;
  }
}
.navbar.Topnav {
  background-color: #101734;
  top: 0;
  width: 100%;
  transition: 0.2s;
  padding: 0.2rem 1rem;
}
.navbar .navbar-collapse {
  background-color: #101734;
  padding: 10px;
  padding-top: 1rem;
}
.navbar .navbar-collapse .nav-link {
  margin: 10px 12px;
}
.navbar .navbar-collapse .nav-link:last-child {
  margin-left: 10px;
}
.navbar .langBtn {
  background-color: unset;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  color: #EDF0F1 !important;
  margin-left: 15px;
  font-family: "Changa", sans-serif;
}
.navbar .langBtn img {
  width: 35px;
  margin-left: 10px;
}
.navbar .navbar-nav {
  margin-left: auto;
}

.page {
  margin-top: 120px;
}

.section {
  position: relative;
  padding: 4rem 0 5rem;
}
.section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(/images/section/section.png);
  background-size: cover;
  background-position: bottom;
  width: 250px;
  height: 650px;
  z-index: -2;
  transform: translateY(-30%);
}
.section:nth-child(even)::after {
  right: unset;
  left: 0;
  transform: translateY(-30%) scaleX(-1);
}
.section.ls::after {
  right: unset;
  left: 0;
  transform: translateY(-30%) scaleX(-1);
}
.section.no::after {
  display: none;
}

.sectionTitle {
  margin-bottom: 5rem;
}
.sectionTitle h2 {
  font-size: 22px;
  font-size: 2.7rem;
  color: #EDF0F1;
  font-weight: 700;
}
.sectionTitle h2 span {
  color: #E0AD3F;
}
.sectionTitle p {
  font-size: 18px;
  color: #EDF0F1;
}

.hero {
  position: relative;
  margin-top: 75px;
  padding-top: 6.5rem;
}
.hero .heroContnet h1 {
  color: #E0AD3F;
  font-weight: 700;
  font-size: 2.7rem;
}
.hero .heroContnet p {
  color: #EDF0F1;
  font-size: 20px;
  font-weight: 400;
}
.hero .heroContnet .heroBtns {
  margin-top: 2rem;
}
.hero .heroImg {
  padding: 18px;
  border: 2px dashed #E0AD3F;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75%;
}
.hero .heroImg img {
  width: 100%;
}
.hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  left: 0;
  top: 7%;
  background-color: #E0AD3F;
  border-radius: 50%;
  opacity: 0.15;
  transform: translateX(-50%);
}

.aboutUs .sectionTitle {
  margin-bottom: 0;
}
.aboutUs p {
  color: #EDF0F1;
  font-size: 15px;
}
.aboutUs button {
  margin-top: 1rem;
}
.aboutUs .aboutImg {
  position: relative;
  text-align: right;
  padding: 18px;
}
.aboutUs .aboutImg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 50%;
  background: #E0AD3F;
  border-radius: 35px;
  z-index: -1;
}
.aboutUs .aboutImg .mainImg {
  width: 100%;
  border-radius: 35px;
  border: 4px solid #E0AD3F;
}
.aboutUs .aboutImg .secimg {
  position: absolute;
  left: 0;
  transform: translate(-40%, 45%);
  width: 250px;
  height: 180px;
  bottom: 0;
  z-index: 2;
  border-radius: 35px;
  border: 4px solid #E0AD3F;
}

.whyUs {
  padding-top: 5rem;
  padding-bottom: 0rem;
}
.whyUs h4 {
  color: #E0AD3F;
  font-weight: 700;
  margin-bottom: 2rem;
}
.whyUs ul {
  list-style: none;
  padding-left: 0px;
}
.whyUs ul li {
  display: flex;
  align-items: flex-start;
  color: #EDF0F1;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 1.3rem;
}
.whyUs ul li img {
  margin-right: 20px;
}
.whyUs .whyImages .whyImg {
  position: relative;
  transform: rotate(-6deg);
}
.whyUs .whyImages .whyImg::after {
  content: "";
  position: absolute;
  right: 120px;
  top: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-color: #E0AD3F;
  border-radius: 50%;
}
.whyUs .whyImages .whyImg img {
  width: 90%;
  border-radius: 40px;
  border: 4px solid #E0AD3F;
  height: 320px;
  object-fit: cover;
}
.whyUs .whyImages .whyImg:last-child {
  transform: rotate(-6deg) translateY(-25%);
}

.services .serviceCard {
  display: flex;
  align-items: flex-start;
}
.services .serviceCard .servIco {
  border-radius: 4px;
  min-width: 40px;
  min-height: 40px;
  background-color: #E0AD3F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .serviceCard .servIco svg {
  font-size: 20px;
  color: #000;
}
.services .serviceCard .servContent {
  margin-left: 15px;
}
.services .serviceCard .servContent h6 {
  font-size: 20px;
  color: #E0AD3F;
}
.services .serviceCard .servContent p {
  color: #EDF0F1;
  font-size: 13px;
}
.services .row {
  position: relative;
}
.services .row .ser {
  padding: 3rem 15px;
}
.services .row .ser_1::after,
.services .row .ser_2::after,
.services .row .ser_4::after,
.services .row .ser_5::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #E0AD3F;
  opacity: 0.5;
}
.services .row .ser_1::before,
.services .row .ser_2::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: translate(42%, 50%);
  background-color: #E0AD3F;
}
.services .row::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  opacity: 0.5;
  background-color: #E0AD3F;
}
.services .whyBtn {
  margin-top: 2rem;
}

.logos {
  background-color: rgba(237, 240, 241, 0.2);
  padding: 0;
  margin: 2rem 0;
}
.logos .logosContnet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.logos .logosContnet img {
  object-fit: cover;
  width: 130px;
  height: 130px;
}

.testimonials {
  background-color: #E0AD3F;
  margin-top: 5rem;
}
.testimonials .testCotnent {
  padding: 40px 0 150px 0;
  position: relative;
}
.testimonials .testCotnent h3 {
  font-weight: bold;
}
.testimonials .testCotnent .testBox {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(20%, 40%);
  background-color: #000000;
  display: flex;
  align-items: flex-start;
  padding: 15px 60px 30px 15px;
  box-shadow: 4px -4px 0px rgba(0, 0, 0, 0.7490196078), 8px -8px 0 rgba(0, 0, 0, 0.5019607843);
  z-index: 5;
}
.testimonials .testCotnent .testBox img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
}
.testimonials .testCotnent .testBox .testBoxData {
  margin-left: 15px;
}
.testimonials .testCotnent .testBox .testBoxData h5 {
  color: #E0AD3F;
  font-weight: 300;
}
.testimonials .testCotnent .testBox .testBoxData p {
  color: #EDF0F1;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
.testimonials .sectionBg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url(/images/testimonials/bg.png);
}

.footer {
  padding: 2rem 0 0;
  margin-top: 9rem;
}
.footer .footerData {
  text-align: left;
}
.footer .footerData img {
  width: 50px;
}
.footer .footerData h4 {
  color: #E0AD3F;
  font-weight: 500;
  margin-top: 2rem;
}
.footer .footerData p {
  color: #EDF0F1;
  font-size: 14px;
  margin-top: 1rem;
}
.footer .footerData h5 {
  font-size: 17px;
  font-weight: 300;
  color: #E0AD3F;
  padding-bottom: 10px;
  border-bottom: 2px solid #E0AD3F;
}
.footer .footerData span {
  color: #fff;
  font-size: 13px;
  display: block;
}
.footer .footerData .dataBox {
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 2px dashed #E0AD3F;
  stroke-dashoffset: 10px;
}
.footer .footerData .dataBox .icon {
  background-color: #E0AD3F;
  min-width: 35px;
  min-height: 35px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footerData .dataBox .icon svg {
  color: #101734;
  font-size: 18px;
}
.footer .footerData .dataBox .dataBoxData {
  margin-left: 15px;
}
.footer .footerData .dataBox .dataBoxData h6 {
  color: #EDF0F1;
  opacity: 0.5;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 0;
}
.footer .footerData .dataBox .dataBoxData p {
  margin: 0;
  font-weight: 300;
  font-size: 13px;
  margin-top: 0.5rem;
}
.footer .footerData .dataBox .dataBoxData ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #EDF0F1;
  margin-top: 0.5rem;
  font-size: 13px;
}
.footer .footerData .dataBox .dataBoxData ul li {
  font-weight: 300;
}
.footer .footerData .dataBox .dataBoxData a {
  color: #fff;
  text-decoration: none;
}
.footer .footerData .dataBox .dataBoxData button {
  background-color: #E0AD3F;
}
.footer .footerData .dataBox.links {
  flex-direction: column;
}
.footer .footerData .dataBox.links a {
  display: inline-block;
  color: #EDF0F1;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 300;
}
.footer .footerData .dataBox button {
  background-color: #E0AD3F;
  border: none;
  outline: none;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.footer .footerData .dataBox button svg {
  color: #101734;
}
.footer .footerData .dataBox:last-child {
  border-bottom: none;
}
.footer .footerData .dataBox:last-child svg {
  font-size: 21px;
}
.footer .copyRight {
  margin-top: 15px;
  background-color: #E0AD3F;
  text-align: center;
  padding: 8px 0;
}
.footer .copyRight p {
  margin-bottom: 0;
  color: #101734;
  font-weight: 500;
  font-size: 14;
}

.page {
  margin-top: 75px;
  padding-top: 3rem;
  position: relative;
}
.page::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(/images/section/section.png);
  background-size: cover;
  background-position: bottom;
  width: 250px;
  height: 650px;
  z-index: -2;
  transform: translateY(20%);
  opacity: 0.4;
}
.page .sectionTitle h2 {
  font-weight: 600;
}
.page .sectionTitle h2 span {
  color: #E0AD3F;
}
.page .sectionTitle p {
  font-size: 14px;
}

.aboutPage p {
  color: #EDF0F1;
  line-height: 30px;
  margin-bottom: 0;
}
.aboutPage img {
  width: 100%;
}
.aboutPage .aboutusBox {
  margin: 5rem 0;
}
.aboutPage .aboutusBox h6 {
  color: #E0AD3F;
  font-size: 17px;
}
.aboutPage .aboutusBox:nth-child(even) .row {
  flex-direction: row-reverse;
}

.bdNone {
  border-bottom: none !important;
}

.servicesPage .ser_7::after,
.servicesPage .ser_8::after,
.servicesPage .ser_10::after,
.servicesPage .ser_11::after,
.servicesPage .ser_13::after,
.servicesPage .ser_14::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #E0AD3F;
  opacity: 0.5;
}
.servicesPage .ser_4::before,
.servicesPage .ser_5::before,
.servicesPage .ser_7::before,
.servicesPage .ser_8::before,
.servicesPage .ser_10::before,
.servicesPage .ser_11::before,
.servicesPage .ser_13::before,
.servicesPage .ser_14::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: translate(42%, 50%);
  background-color: #E0AD3F;
}
.servicesPage .row::after {
  top: unset;
  bottom: 0;
  transform: unset;
  width: 100%;
  right: unset;
}
.servicesPage .serviceCard::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  opacity: 0.5;
  background-color: #E0AD3F;
}
.servicesPage .juCenter {
  justify-content: center;
}

.fpage {
  margin-top: 5rem;
}

.products .sectionTitle {
  margin-bottom: 1.5rem !important;
}
.products h6 {
  color: #E0AD3F;
  font-size: 1.5rem;
}
.products .productsContent {
  margin-top: 2rem;
}
.products .product {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.products .product span {
  min-width: 25px;
  min-height: 25px;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 13px;
  padding-bottom: 3px;
}
.products .product h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.contactus_card {
  margin-bottom: 2rem;
  background-color: #EDF0F1;
  border-radius: 4px;
}
.contactus_card .contactData {
  padding: 30px;
}
.contactus_card .contactData .contactTitle {
  margin-bottom: 1rem;
}
.contactus_card .contactData .contactTitle h6 {
  color: #E0AD3F;
  font-size: 26px;
  margin-bottom: 1rem;
}
.contactus_card .contactData .contactTitle p {
  color: #101734;
  font-size: 15px;
}
.contactus_card .contactData .inputBox {
  margin-bottom: 1rem;
}
.contactus_card .contactData .inputBox label {
  color: #101734;
  font-size: 15px;
  display: block;
  opacity: 0.75;
  padding-left: 2px;
}
.contactus_card .contactData .inputBox input,
.contactus_card .contactData .inputBox textArea {
  all: unset;
  border: 2px solid #101734;
  padding: 8px 10px;
  border-radius: 8px;
  width: 60%;
  font-size: 15px;
  resize: none;
}
.contactus_card .contactData .inputBox input::placeholder,
.contactus_card .contactData .inputBox textArea::placeholder {
  opacity: 0.3;
  color: #101734;
}
.contactus_card .contactData .inputBox textArea {
  width: 80%;
}
.contactus_card .contactData .inputBox .hint {
  margin-top: 5px;
  position: relative;
  padding-left: 18px;
}
.contactus_card .contactData .inputBox .hint::after {
  content: "";
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E0AD3F;
}
.contactus_card .contactData .inputBox .hint span {
  opacity: 0.3;
  color: #101734;
  font-size: 14px;
}
.contactus_card .contactData button {
  width: 190px;
}
.contactus_card img {
  width: 100%;
  height: 100%;
  object-fit: contact;
}

.sectionContnet h3 {
  text-align: center;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 300;
}

@media only screen and (max-width: 1024px) {
  .logosContnet img {
    width: 100px !important;
    height: 100px !important;
  }
}
@media only screen and (max-width: 768px) {
  .logosContnet img {
    width: 80px !important;
    height: 80px !important;
  }
}
@media only screen and (max-width: 320px) {
  .bttn.bttn_primary {
    color: #101734;
    background: #E0AD3F;
    padding: 10px 5px;
    width: 145px;
  }
}
@media only screen and (max-width: 600px) {
  .contactus_card img {
    display: none;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url(/images/header/menu.svg) !important;
  }

  .hero {
    padding: 4.5rem 0;
  }
  .hero .jsEnd {
    justify-content: center;
  }
  .hero .heroImg {
    margin-top: 2rem;
    width: 90%;
  }

  .aboutUs .aboutImg {
    margin-top: 2rem;
  }
  .aboutUs .aboutImg .secimg {
    transform: translate(0px, 20%);
  }

  .whyUs .whyImages .whyImg {
    text-align: center;
    transform: rotate(-4deg);
  }
  .whyUs .whyImages .whyImg::after {
    right: 70px;
  }
  .whyUs .whyImages .whyImg img {
    height: 220px;
  }
  .whyUs .whyImages .whyImg:last-child {
    transform: rotate(-4deg) translateY(-25%);
  }

  .services .row::after {
    display: none;
  }
  .services .row .ser_1::after,
.services .row .ser_2::after {
    display: none;
  }
  .services .row .ser_1::before,
.services .row .ser_2::before {
    display: none;
  }
  .services .row .ser {
    padding: 2rem 15px;
  }
  .services .row .ser_1::after,
.services .row .ser_2::after,
.services .row .ser_4::after,
.services .row .ser_5::after {
    display: none;
  }
  .services .row::after {
    display: none;
  }

  .testimonials .testCotnent .testBox {
    transform: translateY(50%);
  }

  .logos .logosContnet {
    overflow-x: scroll;
  }
  .logos .logosContnet img {
    margin-right: 5px;
  }
  .logos .logosContnet::-webkit-scrollbar {
    height: 3px;
  }

  .section::after {
    width: 160px;
    height: 555px;
    opacity: 0.6;
  }

  .aboutusBox {
    text-align: center;
  }
}
body[dir=rtl] {
  text-align: right !important;
}
body[dir=rtl] .navbar-nav {
  margin-left: unset;
  margin-right: auto;
}
body[dir=rtl] .nav-link.activeNav::after {
  left: unset;
  right: 0cm;
}
@keyframes hover {
  from {
    transform: skewX(0deg);
    width: 0cm;
  }
  to {
    transform: skewX(45deg);
    width: 100%;
  }
}
body[dir=rtl] .langBtn {
  margin-left: unset;
  margin-right: 15px;
}
body[dir=rtl] .langBtn img {
  margin-left: unset;
  margin-right: 10px;
}
body[dir=rtl] .heroBtns .ml-4 {
  margin-left: unset !important;
  margin-right: 1.5rem !important;
}
body[dir=rtl] .aboutUs .aboutImg .secimg {
  left: unset;
  right: 0;
  transform: translate(40%, 45%);
}
body[dir=rtl] .whyUs ul li img {
  margin-left: 20px;
  margin-right: unset;
}
body[dir=rtl] .services .serviceCard .servContent {
  margin-left: unset;
  margin-right: 15px;
}
body[dir=rtl] .services .ser_1::before {
  display: none;
}
body[dir=rtl] .services .ser_1::after,
body[dir=rtl] .services .ser_4::after {
  display: none;
}
body[dir=rtl] .services .ser_2::before,
body[dir=rtl] .services .ser_3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: translate(42%, 50%);
  background-color: #E0AD3F;
}
body[dir=rtl] .services .ser_3::after,
body[dir=rtl] .services .ser_6::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #E0AD3F;
  opacity: 0.5;
}
body[dir=rtl] .testimonials .testCotnent .testBox .testBoxData {
  margin-left: unset;
  margin-right: 15px;
}
body[dir=rtl] .footer .footerData {
  text-align: right;
}
body[dir=rtl] .footer .dataBoxData {
  margin-left: unset;
  margin-right: 15px;
}
body[dir=rtl] .fixedBttns {
  right: unset;
  left: 20px;
}
body[dir=rtl] .page::after {
  right: unset;
  left: 0;
  transform: translateY(20%) scaleX(-1);
}
body[dir=rtl] .servicesPage .ser_4::before,
body[dir=rtl] .servicesPage .ser_13::before {
  display: none;
}
body[dir=rtl] .servicesPage .ser_7::before, body[dir=rtl] .servicesPage .ser_7::after,
body[dir=rtl] .servicesPage .ser_10::before,
body[dir=rtl] .servicesPage .ser_10::after {
  display: none;
}
body[dir=rtl] .servicesPage .ser_8::after,
body[dir=rtl] .servicesPage .ser_11::after,
body[dir=rtl] .servicesPage .ser_9::after,
body[dir=rtl] .servicesPage .ser_12::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #E0AD3F;
  opacity: 0.5;
}
body[dir=rtl] .servicesPage .ser_6::before,
body[dir=rtl] .servicesPage .ser_9::before,
body[dir=rtl] .servicesPage .ser_12::before,
body[dir=rtl] .servicesPage .ser_14::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transform: translate(42%, 50%);
  background-color: #E0AD3F;
}

.formSent {
  padding: 10px;
}
.formSent h6 {
  font-size: 23px;
  font-weight: 600;
}
.formSent p {
  font-size: 16px;
  margin-top: 5px;
}
.formSent button {
  width: unset !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  margin-top: 5px;
}

.innolixPage .pageHead {
  text-align: center;
}
.innolixPage .pageHead img {
  width: 140px;
  margin-bottom: 1rem;
}
.innolixPage .pageHead h1 {
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
}
.innolixPage .data {
  margin-top: 3rem;
  text-align: right;
}
.innolixPage .data h6 {
  color: #101734;
  font-family: "Changa", sans-serif;
  direction: rtl;
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  background: #E0AD3F;
  padding: 4px 10px;
}
.innolixPage .data p {
  color: #fff;
  text-align: justify;
  direction: rtl;
  font-family: "Changa", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}
.innolixPage .buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 3rem 0;
}
.innolixPage .buttons button {
  font-family: "Changa", sans-serif;
  padding: 10px 25px !important;
  width: unset;
}

.icaidtPage {
  color: #fff;
}
.icaidtPage .head {
  text-align: center;
}
.icaidtPage .head p {
  width: 60%;
  margin: auto;
  font-weight: 300;
  opacity: 0.7;
}
.icaidtPage .logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #fff;
  padding: 10px 0;
  border-radius: 10px;
}
.icaidtPage .logos .logo {
  width: 200px;
  height: 100px;
}
.icaidtPage .logos .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.icaidtPage .logos .logo img:hover {
  scale: 1.1;
}
.icaidtPage .logos .logo:nth-child(2) {
  height: 80px;
}
.icaidtPage .logos .logo:last-child {
  height: 120px;
}
.icaidtPage .content h6 {
  font-size: 20px;
}
.icaidtPage .content p,
.icaidtPage .content ul,
.icaidtPage .content li {
  font-size: 17px;
  font-weight: 300;
}
.icaidtPage .content strong {
  font-weight: 500;
}
.icaidtPage .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.icaidtPage .buttons button {
  width: fit-content !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}

@media only screen and (max-width: 600px) {
  .icaidtPage .head h1 {
    font-size: 30px;
  }
  .icaidtPage .head p {
    width: 100%;
  }
  .icaidtPage .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .icaidtPage .logos .logo {
    width: 140px;
    height: 60px;
  }
  .icaidtPage .logos .logo:nth-child(2) {
    height: 50px;
  }
  .icaidtPage .logos .logo:nth-child(3) {
    height: 80px;
  }
  .icaidtPage .logos .logo:last-child {
    height: 80px;
  }
  .icaidtPage .buttons {
    flex-direction: column;
  }
}
