@charset "UTF-8";
:root {
  --sal-duration: 1s;
}

/* General Resets */
* {
  outline: 0 !important;
}

input::-moz-placeholder {
  color: inherit;
}

input::placeholder {
  color: inherit;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  outline: 0;
}

a,
img,
button,
input,
select {
  transition: all 0.3s ease;
}

[role="button"] {
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

@font-face {
  font-family: "Bahij";
  src: url("../fonts/Bahij/BahijHelveticaNeue-Light.woff2") format("woff2"),
    url("../fonts/Bahij/BahijHelveticaNeue-Light.woff") format("woff"),
    url("../fonts/Bahij/BahijHelveticaNeue-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bahij";
  src: url("../fonts/Bahij/BahijHelveticaNeue-Roman.woff2") format("woff2"),
    url("../fonts/Bahij/BahijHelveticaNeue-Roman.woff") format("woff"),
    url("../fonts/Bahij/BahijHelveticaNeue-Roman.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bahij";
  src: url("../fonts/Bahij/BahijHelveticaNeue-Bold.woff2") format("woff2"),
    url("../fonts/Bahij/BahijHelveticaNeue-Bold.woff") format("woff"),
    url("../fonts/Bahij/BahijHelveticaNeue-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: Bahij;
  font-weight: 400;
  color: #3c218a;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #58b2bb #fff;
  scroll-behavior: unset !important;
}
html ::-webkit-scrollbar {
  background-color: #fff;
  width: 8px;
  height: 4px;
}
html ::-webkit-scrollbar-thumb {
  background-color: #58b2bb;
  border-radius: 4px;
}

.overflow {
  overflow: hidden;
}

.container {
  --bs-gutter-x: 30px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.container-fluid {
  --bs-gutter-x: 20px;
}
@media (max-width: 1199px) {
  .container-fluid {
    --bs-gutter-x: 30px;
  }
}

[class$="-facebook"]:before {
  content: "\f39e";
}

[class$="-snapchat"]:before {
  content: "\f2ac";
}

[class$="-linkedin"]:before {
  content: "\f0e1";
}

[class$="-twitter"]:before {
  content: "\e61b";
  font-weight: 400;
  font-family: "Font Awesome 6 Brands";
}

.custom-slider .swiper-pagination {
  position: relative;
  inset: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 40px 0 0;
}
@media (max-width: 767px) {
  .custom-slider .swiper-pagination {
    margin-top: 30px;
  }
}
.custom-slider .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: #000;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.custom-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #58b2bb;
}
.custom-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #58b2bb;
  opacity: 1;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section-head {
    justify-content: center;
    margin-bottom: 30px;
  }
}

.section-title {
  color: #3c218a;
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
    text-align: center;
  }
}

.section-link {
  width: 189px;
  height: 54px;
  border-radius: 27px;
  border: 2px solid #3c218a;
  color: #3c218a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  transform: perspective(1px);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.section-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c218a 0, #b83386 100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.section-link:hover,
.section-link:focus {
  border-color: transparent;
  color: #fff;
}
.section-link:hover:after {
  visibility: visible;
  opacity: 1;
}
.section-link.mobile-link {
  display: none;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .section-link {
    display: none;
  }
  .section-link.mobile-link {
    display: flex;
  }
}

.section-hint {
  font-size: 26px;
  font-weight: 400;
  color: #3c218a;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .section-hint {
    font-size: 24px;
    text-align: center;
    margin: 15px 0 0;
    font-size: 18px;
  }
}

.section-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-tools .relative-swiper-btn {
  border-radius: 50%;
  width: 45px;
  aspect-ratio: 1;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #3c218a;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
html[dir="ltr"] .section-tools .relative-swiper-btn i {
  transform: scaleX(-1);
}
.section-tools .relative-swiper-btn:hover {
  color: #fff;
  background-color: #b83386;
  box-shadow: none;
}
.section-tools.mobile-tools {
  display: none;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .section-tools {
    display: none;
  }
  .section-tools.mobile-tools {
    display: flex;
  }
}

.page-content {
  padding: 60px 0 100px;
}
@media (max-width: 991px) {
  .page-content {
    padding: 30px 0 50px;
  }
}

@media (max-width: 767px) {
  .inner-page {
    padding-top: 76px;
  }
}

.pageing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .pageing {
    margin-top: 40px;
  }
}
.pageing a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #666666;
  font-size: 18px;
  font-weight: 300;
  background-color: #f2f2f2;
  transition: all 0.3s ease-in-out;
}
.pageing a:hover,
.pageing a.active {
  background-color: #b83386;
  color: #fff;
}

.lazy-img-parent img {
  transition: all 0.3s ease-in-out;
}

.loading-img {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: relative;
}
.loading-img img {
  opacity: 0 !important;
  filter: blur(40px);
}

.loaded-img img {
  opacity: 1;
  filter: blur(0);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
}
@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-grid .full-w {
  grid-column: 1/-1;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 19px;
}
.form-group .group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.form-group.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.form-group .form-error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: block;
  order: 3;
}
.form-group .form-error ~ .form-control,
.form-group .form-error ~ .form-select,
.form-group .form-error ~ :has(.form-select) .form-select,
.form-group .form-error ~ :has(.form-control) .form-control {
  border-color: red;
}

.form-label {
  font-size: 18px;
  color: #3c218a;
  line-height: 1.33;
  display: block;
  padding: 0 20px;
  margin: 0 0 8px;
}
.required .form-label::after {
  content: "*";
  color: red;
}
.form-label small {
  color: #999999;
  font-size: 12px;
}
.search-form .form-label {
  padding: 0 25px;
}

.form-control {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: 2px solid #f2f2f2;
  background-color: #f2f2f2;
  font-size: 18px;
  color: #3c218a;
  padding: 0 29px;
  resize: none;
  transition: all 0.3s ease-in-out;
}
.form-control::-moz-placeholder {
  font-size: 18px;
  color: #999999;
}
.form-control::placeholder {
  font-size: 18px;
  color: #999999;
}
.form-control:focus {
  border-color: #b83386;
  box-shadow: none;
  color: #3c218a;
  background-color: #f2f2f2;
}
.search-form .form-control {
  border: 2px solid #fff;
  background-color: #fff;
}
.search-form .form-control:focus {
  background-color: #fff;
}
.form-control:is(textarea) {
  height: 100px;
  padding: 15px 29px;
}

.form-select {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  border: 2px solid transparent;
  background-color: #f2f2f2;
  font-size: 16px;
  color: #999999;
  padding: 0 29px;
}
.form-select::-moz-placeholder {
  color: red;
}
.form-select::placeholder {
  color: red;
}
.form-select:focus {
  box-shadow: none;
  border-color: transparent;
  background-color: #f2f2f2;
}
.search-form .form-select {
  border-color: transparent;
  background-color: #fff;
}
.search-form .form-select:focus {
  background-color: #fff;
}

.datepicker-content {
  position: relative;
}
.datepicker-content .form-control {
  border: none;
}
.datepicker-content:after {
  content: "\f073";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 24px;
  color: #999999;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 25px;
  pointer-events: none;
}

.submit-btn {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #58b2bb;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  min-width: 140px;
  width: -moz-max-content;
  width: max-content;
  padding: 0 25px;
  height: 50px;
  border-radius: 25px;
  margin-inline-start: auto;
  position: relative;
  transform: perspective(1px);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.submit-btn i {
  font-size: 25px;
  margin-inline-end: 9px;
}
.submit-btn:hover {
  /* background-color: #b83386; */
  color: #fff;
}

.submit-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c218a 0, #b83386 100%);
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.submit-btn:hover:after {
  visibility: hidden;
  opacity: 0;
}

.reset-btn {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b3b3b3;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  min-width: 140px;
  width: -moz-max-content;
  width: max-content;
  padding: 0 25px;
  height: 50px;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
}
.reset-btn i {
  font-size: 25px;
  margin-inline-end: 9px;
}
.reset-btn:hover {
  background-color: #b83386;
  color: #fff;
}

.telephone-content {
  position: relative;
}
.telephone-content .country-code {
  position: absolute;
  top: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: ltr;
  font-size: 18px;
  font-weight: 400;
  color: #3c218a;
}
.telephone-content .country-code img {
  margin-right: 7px;
  height: 30px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.telephone-content .form-control {
  padding-left: 98px;
}

.file-content {
  position: relative;
}
.file-content .btn {
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  font-size: 16px;
  background-color: #3c218a;
  height: 40px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.file-content .form-control {
  display: flex;
  align-items: center;
}
.file-content input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 3;
}
.file-content input:hover ~ .btn {
  background-color: #b83386;
}

.addFile {
  border: 2px dashed #e6e6e6;
  background-color: #fcfcfc;
  border-radius: 26px;
  min-height: 170px;
  padding: 44px 22px 26px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .addFile {
    padding: 25px 15px;
  }
}
.addFile input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
}
.addFile input::-webkit-file-upload-button {
  cursor: pointer;
}
.addFile .addFile-icon {
  font-size: 55px;
  color: #b83386;
  display: flex;
  margin-bottom: 10px;
}
.addFile .addFile-text {
  font-weight: 500;
  font-size: 16px;
  color: #808080;
}
.addFile .filesPreview {
  width: 100%;
  position: relative;
  z-index: 2;
}
.addFile .file-pre {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8e3ef;
  padding: 6px 8px 6px 15px;
  border-radius: 30px;
  margin-bottom: 6px;
}
.addFile .file-pre:first-of-type {
  margin-top: 38px;
}
.addFile .file-pre:last-of-type {
  margin-bottom: 0;
}
.addFile .file-pre img {
  height: 48px;
  width: 48px;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 50%;
}
.addFile .file-pre i {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #58b2bb;
  color: #fff;
  font-size: 24px;
}
.addFile .file-pre div {
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  color: #3c218a;
}
.addFile .file-pre div span {
  max-width: 50%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 767px) {
  .addFile .file-pre div {
    margin: 0 10px;
  }
}
.addFile .file-pre button {
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 18px;
  background-color: #ed2929;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease-in-out;
}
.addFile .file-pre button i {
  background-color: transparent;
  font-size: 14px;
}
.addFile .file-pre button:hover,
.addFile .file-pre button:focus {
  color: #fff;
  background-color: #b83386;
}

.radios-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.radio label {
  cursor: pointer;
}
.radio span {
  height: 50px;
  border-radius: 25px;
  background-color: #f2f2f2;
  padding: 0 25px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.radio input {
  display: none;
}
.radio input:checked ~ span {
  background-color: #3c218a;
  color: #fff;
}

.account-img {
  width: 115px;
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 30px;
}
.account-img img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.account-img .edit-img {
  position: absolute;
  background-color: #58b2bb;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  bottom: 0;
  inset-inline-end: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  transition: all 0.3s ease-in-out;
}
.account-img .edit-img:hover {
  background-color: #f2f2f2;
  fill: #58b2bb;
}
.account-img .edit-img input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  opacity: 0;
}
.account-img .edit-img input::-webkit-file-upload-button {
  cursor: pointer;
}
@media (max-width: 767px) {
  .account-img {
    width: 95px;
  }
}

.main-slider {
  position: relative;
  height: 100vh;
  min-height: 550px;
  overflow: hidden;
}
.main-slider .swiper-btn {
  position: absolute;
  top: calc(50% + 74px);
  transform: translateY(-50%);
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1310px) {
  .main-slider .swiper-btn {
    display: none;
  }
}
.main-slider .swiper-btn.swiper-btn-next {
  right: auto;
  left: 2.6vw;
}
html[dir="ltr"] .main-slider .swiper-btn.swiper-btn-next {
  right: 2.6vw;
  left: auto;
}
html[dir="ltr"] .main-slider .swiper-btn.swiper-btn-next i {
  transform: scaleX(-1);
}
.main-slider .swiper-btn.swiper-btn-prev {
  left: auto;
  right: 2.6vw;
}
html[dir="ltr"] .main-slider .swiper-btn.swiper-btn-prev {
  right: auto;
  left: 2.6vw;
}
html[dir="ltr"] .main-slider .swiper-btn.swiper-btn-prev i {
  transform: scaleX(-1);
}
.main-slider .swiper-btn:hover {
  background-color: #fff;
  color: #3c218a;
}
.main-slider .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 0;
}
.main-slider .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: #000;
  opacity: 0.5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.main-slider .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #58b2bb;
}
.main-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #58b2bb;
  opacity: 1;
}
@media (max-width: 991px) {
  .main-slider {
    min-height: auto;
    height: 450px;
  }
}

.main-slide {
  position: relative;
}
.main-slide::after,
.main-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-slide::after {
  background-color: #000;
  opacity: 0.4;
  z-index: 3;
}
.main-slide::before {
  background-color: #000;
  opacity: 0.3;
  z-index: 2;
}
.main-slide .slide-img {
  height: 100vh;
  min-height: 550px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-slide .slide-img {
    min-height: auto;
    height: 450px;
  }
}
.main-slide .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-slide .main-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 160px;
  z-index: 4;
}
@media (max-width: 767px) {
  .main-slide .main-text {
    padding-top: 76px;
  }
}
.main-slide .text-content {
  width: 85%;
  max-width: 685px;
}
@media (max-width: 991px) {
  .main-slide .text-content {
    width: 100%;
    max-width: none;
  }
}
.main-slide .slide-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 39px;
}
@media (max-width: 991px) {
  .main-slide .slide-title {
    font-size: 32px;
    text-align: center;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .main-slide .slide-title {
    font-size: 28px;
    line-height: 1.3;
  }
}
.main-slide .slide-btn {
  width: -moz-max-content;
  width: max-content;
  padding: 0 33px;
  height: 50px;
  border-radius: 25px;
  background-color: #58b2bb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  position: relative;
  transform: perspective(1px);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.main-slide .slide-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c218a 0, #b83386 100%);
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.main-slide .slide-btn:hover:after {
  visibility: hidden;
  opacity: 0;
}
.main-slide .slide-btn:hover {
  /* background-color: #b83386; */
  color: #fff;
}
@media (max-width: 991px) {
  .main-slide .slide-btn {
    margin: auto;
    height: 35px;
    padding: 0 20px;
    font-size: 16px;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .about-content {
    grid-template-columns: 1fr;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}
.about-content .about-text {
  padding-inline-end: 25px;
}
@media (max-width: 991px) {
  .about-content .about-text {
    padding-inline-end: 0;
    order: 3;
  }
}
.about-content .about-title {
  font-size: 36px;
  color: #3c218a;
  font-weight: 700;
  line-height: 1.111;
  margin: 0 0 25px;
}
.about-content .about-title.mobile-title {
  display: none;
  text-align: center;
  margin: 0;
  font-size: 28px;
  order: 1;
}
@media (max-width: 1199px) {
  .about-content .about-title {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .about-content .about-title {
    display: none;
  }
  .about-content .about-title.mobile-title {
    display: block;
  }
}
.about-content .about-summary {
  font-size: 24px;
  font-weight: 300;
  color: #3c218a;
  line-height: 1.667;
  text-align: justify;
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  .about-content .about-summary {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .about-content .about-summary {
    margin: 0 0 20px;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}
.about-content .about-more {
  font-size: 18px;
  font-weight: 300;
  color: #808080;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .about-content .about-more {
    font-size: 16px;
  }
}
.about-content .about-more:hover {
  color: #58b2bb;
  text-decoration: none;
}
.about-content .about-img {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-content .about-img {
    order: 2;
    max-width: 554px;
    margin: auto;
  }
}
.about-content .video-img {
  aspect-ratio: 554/368;
  position: relative;
  overflow: hidden;
  display: block;
}
.about-content .video-img::after,
.about-content .video-img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 90px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: all 0.3s ease-in-out;
}
.about-content .video-img::after {
  content: "";
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
  z-index: 2;
}
.about-content .video-img::before {
  content: "\f144";
  z-index: 3;
}
.about-content .video-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.about-content .video-img:hover img {
  transform: scale(1.1);
}
.about-content .video-img:hover::after {
  opacity: 0.7;
}
.about-content .video-img:hover::before {
  transform: scale(0.9);
}

.statistics-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .statistics-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px 15px;
  }
}

.statistic-item {
  text-align: center;
}
.statistic-item .statistic-icon {
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 35px;
}
@media (max-width: 991px) {
  .statistic-item .statistic-icon {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
.statistic-item .statistic-value {
  direction: ltr;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 25px;
}
@media (max-width: 991px) {
  .statistic-item .statistic-value {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
.statistic-item .statistic-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .statistic-item .statistic-title {
    font-size: 16px;
  }
}

.banners-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 991px) {
  .banners-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .banners-content {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}

.banner-item {
  width: 100%;
  max-width: 555px;
  margin: 0 auto;
  overflow: hidden;
}
.banner-item .banner-img {
  aspect-ratio: 554/311;
  width: 100%;
}
.banner-item .banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.banner-item .banner-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  background: linear-gradient(0deg, #58b2bb 0%, rgba(88, 178, 187, 0) 100%);
}
@media (max-width: 767px) {
  .banner-item .banner-content {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px 15px;
  }
}
.banner-item .banner-text {
  color: #fff;
  width: 55%;
}
@media (max-width: 767px) {
  .banner-item .banner-text {
    width: 100%;
  }
}
.banner-item .banner-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .banner-item .banner-title {
    font-size: 22px;
  }
}
.banner-item .banner-description {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 767px) {
  .banner-item .banner-description {
    font-size: 16px;
    margin: 0 0 15px;
  }
}
.banner-item .banner-btn {
  flex-shrink: 0;
  width: 140px;
  height: 45px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #58b2bb;
  background-color: #fff;
  position: relative;
  transform: perspective(1px);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.banner-item .banner-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c218a 0, #b83386 100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.banner-item .banner-link {
  width: 100%;
  display: flex;
  position: relative;
}
.banner-item .banner-link:hover .banner-img img {
  transform: scale(1.1);
}
.banner-item .banner-link:hover .banner-btn {
  color: #fff;
}
.banner-item .banner-link:hover .banner-btn:after {
  visibility: visible;
  opacity: 1;
}
.banner-item:nth-of-type(2) .banner-content {
  background: linear-gradient(0deg, #b83386 0%, rgba(184, 51, 134, 0) 100%);
}
.banner-item:nth-of-type(2) .banner-btn {
  color: #b83386;
}
.banner-item:nth-of-type(2) .banner-link:hover .banner-btn {
  color: #fff;
}
.banner-item:nth-of-type(2) .banner-link:hover .banner-btn::after {
  visibility: visible;
  opacity: 1;
}

.service-item {
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}
.swiper-slide .service-item {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .service-item {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .swiper-slide .service-item {
    margin: 0 auto 30px;
    box-shadow: none;
  }
}
.service-item .service-img {
  display: flex;
  width: 100%;
  aspect-ratio: 361/250;
}
.service-item .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-item .service-text {
  padding: 27px 30px 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}
.service-item .service-name {
  font-size: 24px;
  color: #3c218a;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 15px;
}
.service-item .service-name a {
  color: #3c218a;
}
.service-item .service-name a:hover,
.service-item .service-name a:focus {
  color: #b83386;
}
.service-item .service-summary {
  font-size: 20px;
  font-weight: 300;
  color: #3c218a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  height: 90px;
  overflow: hidden;
  margin: 0 0 17px;
}
.service-item .service-link {
  font-size: 18px;
  font-weight: 300;
  color: #808080;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.service-item .service-link:hover,
.service-item .service-link:focus {
  color: #b83386;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 26px;
}
@media (max-width: 1199px) {
  .features-content {
    gap: 14px 13px;
  }
}
@media (max-width: 991px) {
  .features-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .features-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.feature-item {
  border: 2px solid #f2f2f2;
  background-color: #fff;
  padding: 37px 30px;
}
@media (max-width: 767px) {
  .feature-item {
    width: 100%;
    max-width: 360px;
    margin: auto;
    padding: 20px 30px;
  }
}
.feature-item .feature-icon {
  border-radius: 50%;
  width: 97px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(88, 178, 187, 0.1);
  color: #58b2bb;
  font-size: 48px;
  margin: 0 0 23px;
}
.feature-item .feature-text {
  font-size: 24px;
  color: #3c218a;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.feature-item:nth-of-type(even) .feature-icon {
  color: #b83386;
  background-color: rgba(184, 51, 134, 0.1);
}

.stages-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
}
@media (max-width: 1199px) {
  .stages-list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .stages-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.stage-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #58b2bb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 15px;
  position: relative;
}
@media (max-width: 991px) {
  .stage-item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 767px) {
  .stage-item {
    width: calc(50% - 15px);
  }
}
.stage-item i {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.stage-item .stage-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  height: 58px;
  margin: 0;
}
.stage-item ~ .stage-item::after {
  content: url(../images/arrow.svg);
  position: absolute;
  top: 40.5%;
  transform: scaleY(-1);
  display: flex;
  align-items: center;
  justify-content: center;
  inset-inline-end: calc(100% + 7px);
}
@media (max-width: 1199px) {
  .stage-item ~ .stage-item::after {
    display: none;
  }
}
html[dir="ltr"] .stage-item ~ .stage-item::after {
  transform: scaleY(-1) scaleX(-1);
}
.stage-item:nth-of-type(even) {
  background-color: #b83386;
}
.stage-item:nth-of-type(even)::after {
  transform: none;
  top: 46.1%;
}
html[dir="ltr"] .stage-item:nth-of-type(even)::after {
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .stage-item:nth-of-type(even) {
    background-color: #58b2bb;
  }
}
@media (max-width: 767px) {
  .stage-item:nth-of-type(2),
  .stage-item:nth-of-type(3) {
    background-color: #b83386;
  }
}

.clients-slider {
  position: relative;
}
.clients-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #fff;
  top: 0;
  inset-inline-end: 100%;
  width: 100vw;
  z-index: 3;
}
@media (max-width: 767px) {
  .clients-slider::after {
    display: none;
  }
}
.clients-slider .swiper {
  overflow: unset;
}

.client-item {
  display: flex;
}
.client-item .client-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 2px solid #f2f2f2;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.client-item .client-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.client-item .client-img:hover {
  border-color: transparent;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}
.client-item .client-img:hover img {
  opacity: 1;
  filter: grayscale(0);
  z-index: 4;
}

.post-item {
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .post-item {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.post-item .post-img {
  display: flex;
  width: 100%;
  aspect-ratio: 361/250;
  overflow: hidden;
}
.post-item .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.post-item .post-img:hover img {
  transform: scale(1.1);
}
.post-item .post-text {
  padding: 20px 0 0;
  position: relative;
}
.post-item .post-name {
  font-size: 24px;
  color: #3c218a;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 15px;
}
.post-item .post-name a {
  color: #3c218a;
}
.post-item .post-name a:hover,
.post-item .post-name a:focus {
  color: #b83386;
}
.post-item .post-summary {
  font-size: 20px;
  font-weight: 300;
  color: #3c218a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  height: 60px;
  overflow: hidden;
  margin: 0 0 12px;
}
.post-item .post-link {
  font-size: 18px;
  font-weight: 300;
  color: #808080;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.post-item .post-link:hover,
.post-item .post-link:focus {
  color: #b83386;
}
.post-item .post-views {
  position: absolute;
  bottom: calc(100% + 10px);
  inset-inline-start: 10px;
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.502);
  padding: 0 11px;
  height: 26px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.post-item .post-views i {
  font-size: 18px;
  margin-inline-end: 8px;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .trend-grid {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .trend-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .trend-grid {
    grid-template-columns: 1fr;
  }
}
.trend-grid .post-item {
  position: relative;
}
@media (max-width: 767px) {
  .trend-grid .post-item {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.trend-grid .post-item .post-img {
  aspect-ratio: 281/195;
  position: relative;
}
.trend-grid .post-item .post-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.trend-grid .post-item .post-text {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 0 20px 30px;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .trend-grid .post-item .post-text {
    padding: 0 10px 20px;
  }
}
@media (max-width: 767px) {
  .trend-grid .post-item .post-text {
    padding: 0 20px 30px;
  }
}
.trend-grid .post-item .post-name {
  color: #fff;
  margin: 0;
  display: block;
  font-size: 18px;
  height: auto;
}
.trend-grid .post-item .post-name a {
  color: #fff;
}
.trend-grid .post-item .post-name a:hover {
  color: #b83386;
}
.trend-grid .post-item .post-summary {
  display: none;
}
.trend-grid .post-item .post-link {
  display: none;
}
.trend-grid .post-item .post-views {
  position: relative;
  inset: unset;
  font-size: 14px;
  height: 24px;
  margin-bottom: 12px;
}
.trend-grid .post-item .post-views i {
  font-size: 16px;
  margin-inline-end: 5px;
}
@media (min-width: 992px) {
  .trend-grid .post-item:nth-of-type(2) {
    grid-row: 1 / span 2;
    grid-column: 2 / span 2;
  }
  .trend-grid .post-item:nth-of-type(2) .post-img {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
  }
  .trend-grid .post-item:nth-of-type(2) .post-img::after {
    opacity: 0.5;
  }
  .trend-grid .post-item:nth-of-type(2) .post-text {
    padding: 0 30px 50px;
  }
  .trend-grid .post-item:nth-of-type(2) .post-name {
    font-size: 24px;
  }
  .trend-grid .post-item:nth-of-type(2) .post-views {
    font-size: 16px;
    height: 26px;
    margin-bottom: 20px;
  }
  .trend-grid .post-item:nth-of-type(2) .post-views i {
    font-size: 18px;
    margin-inline-end: 8px;
  }
}
.trend-grid .post-item:hover .post-img img {
  transform: scale(1.1);
}
.trend-grid .post-item:hover .post-img::after {
  opacity: 0.8;
}

.top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}
@media (max-width: 1199px) {
  .top-grid {
    gap: 15px 20px;
  }
}
@media (max-width: 991px) {
  .top-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .top-grid .post-item {
    display: flex;
    align-items: center;
    position: relative;
  }
  .top-grid .post-item .post-img {
    width: 182px;
    aspect-ratio: 182/126;
    flex-shrink: 0;
  }
  .top-grid .post-item .post-text {
    padding: 0;
    padding-inline-start: 18px;
  }
  .top-grid .post-item .post-name {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .top-grid .post-item .post-summary {
    font-size: 16px;
    height: auto;
  }
  .top-grid .post-item .post-link {
    font-size: 14px;
  }
  .top-grid .post-item .post-views {
    display: none;
  }
}
@media (min-width: 992px) {
  .top-grid .post-item:nth-of-type(1) {
    grid-row: 1 / span 3;
  }
  .top-grid .post-item:nth-of-type(1) .post-img {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .top-grid .post-item:nth-of-type(1) .post-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
  }
  .top-grid .post-item:nth-of-type(1) .post-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 50px 30px;
  }
  .top-grid .post-item:nth-of-type(1) .post-name {
    color: #fff;
    margin: 0;
    display: block;
    font-size: 24px;
    height: auto;
  }
  .top-grid .post-item:nth-of-type(1) .post-name a {
    color: #fff;
  }
  .top-grid .post-item:nth-of-type(1) .post-name a:hover {
    color: #b83386;
  }
  .top-grid .post-item:nth-of-type(1) .post-summary {
    display: none;
  }
  .top-grid .post-item:nth-of-type(1) .post-link {
    display: none;
  }
  .top-grid .post-item:nth-of-type(1) .post-views {
    display: inline-flex;
    position: relative;
    inset: unset;
    font-size: 16px;
    height: 26px;
    margin-bottom: 20px;
  }
  .top-grid .post-item:nth-of-type(1) .post-views i {
    font-size: 18px;
    margin-inline-end: 8px;
  }
  .top-grid .post-item:nth-of-type(1):hover .post-img img {
    transform: scale(1.1);
  }
  .top-grid .post-item:nth-of-type(1):hover .post-img::after {
    opacity: 0.8;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 28px;
}
@media (max-width: 1199px) {
  .blog-grid {
    gap: 40px 15px;
  }
}
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.advanced-search {
  background-color: #f7f7f7;
  padding: 0 38px 42px;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .advanced-search {
    padding: 0 15px 30px;
    margin-bottom: 40px;
  }
}
.advanced-search .search-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 24px;
  font-weight: 700;
  color: #3c218a;
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  padding: 16px 0 12px;
  margin: 0;
}
@media (max-width: 767px) {
  .advanced-search .search-title {
    padding: 12px 0 9px;
    text-align: center;
    justify-content: center;
  }
}
.advanced-search .search-form {
  padding-top: 30px;
}
.advanced-search .additional-fields {
  display: none;
}
.advanced-search .search-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .advanced-search .search-tools {
    flex-direction: column;
  }
}
.advanced-search .more-fields {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  color: #58b2bb;
}
@media (max-width: 767px) {
  .advanced-search .more-fields {
    margin-bottom: 12px;
  }
}
.advanced-search .more-fields::before {
  content: "\f067";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 24px;
  margin-inline-end: 10px;
}
.advanced-search .more-fields.active {
  color: #b83386;
}
.advanced-search .more-fields.active::before {
  content: "\f068";
}
.advanced-search .search-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 767px) {
  .advanced-search .search-buttons {
    width: 100%;
  }
  .advanced-search .search-buttons button {
    flex: 1;
    width: 100%;
    white-space: nowrap;
  }
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 14px;
}
@media (max-width: 991px) {
  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .search-grid {
    grid-template-columns: 1fr;
  }
}

.custom-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.custom-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  padding: 0 15px;
  width: -moz-max-content;
  width: max-content;
  background-color: #f2f2f2;
  font-size: 20px;
  color: #3c218a;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.account-page .custom-nav-btn {
  padding: 0 30px;
  min-width: 120px;
}
@media (max-width: 767px) {
  .custom-nav-btn {
    font-size: 16px;
  }
  .account-page .custom-nav-btn {
    padding: 0 20px;
    min-width: auto;
  }
}
.custom-nav-btn i {
  font-size: 24px;
  margin-inline-end: 8px;
}
@media (max-width: 1199px) {
  .custom-nav-btn i {
    font-size: 20px;
    margin-inline-end: 5px;
  }
}
.custom-nav-btn.active {
  background-color: #3c218a;
  color: #fff;
}

.modal .modal-dialog {
  --bs-modal-width: 555px;
}
.modal .modal-content {
  border: none;
  border-radius: 0;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  padding: 40px 15px 50px;
}
.modal .modal-title {
  font-size: 24px;
  font-weight: 400;
  color: #3c218a;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 0;
}
.modal .modal-desc {
  color: #808080;
  font-size: 18px;
  margin: 10px 0 0;
}
.modal .modal-btn {
  width: 190px;
  height: 50px;
  border-radius: 25px;
  background-color: #3c218a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 23px 0 0;
}
.modal .modal-btn:hover {
  color: #fff;
  background-color: #b83386;
}

.success-img {
  width: 123px;
  margin: 0 0 10px;
}
.success-img img {
  width: 100%;
}

.reject-icon {
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ed2929;
  margin-bottom: 15px;
}

.steps-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .steps-header {
    justify-content: start;
  }
}
.steps-header .step {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
}
.steps-header .step-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  padding: 0 35px;
  padding-inline-start: 5px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #f2f2f2;
  font-size: 20px;
  color: #3c218a;
  white-space: nowrap;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .steps-header .step-trigger {
    font-size: 16px;
  }
}
.steps-header .step-trigger .number {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 20px;
  margin-inline-end: 8px;
  color: #3c218a;
  border-radius: 50%;
  font-weight: 700;
}
.steps-header .step-trigger .number:after {
  content: attr(data-number);
}
.steps-header .step-trigger:hover {
  background-color: #f2f2f2;
}
.steps-header .step-trigger:focus {
  color: #3c218a;
}
.steps-header .active {
  cursor: default;
}
.steps-header .active .step-trigger {
  pointer-events: all;
  background-color: #3c218a;
  color: #fff;
}
.steps-header .step:has(~ .active) .step-trigger {
  background-color: #58b2bb;
  color: #fff;
  pointer-events: all;
}
.steps-header .step:has(~ .active) .step-trigger .number:after {
  font-size: 18px;
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
}

.order-item {
  display: flex;
  flex-direction: column;
  border: 2px solid #f2f2f2;
  padding: 20px 15px 10px;
  transition: all 0.3s ease-in-out;
}
.order-item .order-informations {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .order-item .order-informations {
    gap: 20px;
  }
}
.order-item .informations-items {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .order-item .informations-items {
    gap: 20px;
  }
}
.order-item .information-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
  color: #808080;
  height: 36px;
}
.order-item .information-item i {
  font-size: 24px;
  margin-inline-end: 10px;
}
@media (max-width: 1199px) {
  .order-item .information-item {
    font-size: 14px;
    height: 30px;
  }
  .order-item .information-item i {
    font-size: 20px;
    margin-inline-end: 5px;
  }
}
.order-item .informations-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .order-item .informations-tags {
    justify-content: flex-end;
    width: 100%;
  }
}
.order-item .information-tag {
  font-size: 18px;
  font-weight: 700;
  color: #58b2bb;
  background-color: rgba(88, 178, 187, 0.102);
  height: 36px;
  border-radius: 20px;
  padding: 4px 20px 0;
}
@media (max-width: 1199px) {
  .order-item .information-tag {
    font-size: 14px;
    height: 30px;
    padding: 3px 15px 0;
  }
}
.order-item .information-tag.completed {
  color: #229107;
  background-color: rgba(34, 145, 7, 0.102);
}
.order-item .information-tag.canceled {
  color: #ed2929;
  background-color: rgba(237, 41, 41, 0.102);
}
.order-item .order-title {
  font-size: 18px;
  color: #3c218a;
  font-weight: 700;
  margin: 0 0 20px;
}
.order-item .order-title a {
  color: #3c218a;
  transition: all 0.3s ease-in-out;
}
.order-item .order-title a:hover {
  color: #b83386;
}
.order-item .order-footer {
  display: flex;
  align-items: center;
  justify-content: end;
  border-top: 1px solid #f2f2f2;
  padding: 10px 10px 0;
}
.order-item .order-link {
  font-size: 18px;
  font-weight: 300;
  color: #808080;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.order-item .order-link:hover,
.order-item .order-link:focus {
  color: #b83386;
}
.order-item:hover {
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .order-item:hover {
    box-shadow: none;
  }
}

.header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 15px;
  padding: 10px 0 16px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .header {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}

.logo {
  margin: auto;
  width: 119px;
  display: block;
  transition: all 0.3s ease-in-out;
}
body:has(.breadcrumb-section) .logo {
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .logo {
    width: 85px;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 33px;
}
@media (max-width: 767px) {
  .header-tools {
    gap: 20px;
  }
}

.header-icon {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.header-icon i {
  font-size: 22px;
}
.header-icon span {
  margin-inline-start: 6px;
}
@media (max-width: 991px) {
  .header-icon span {
    display: none;
  }
}
.header-icon:focus {
  color: #fff;
}
.header-icon:hover {
  color: #b83386;
}
.inner-page .header-icon {
  color: #3c218a;
}
.inner-page .header-icon:focus {
  color: #3c218a;
}
.inner-page .header-icon:hover {
  color: #b83386;
}
.fixed .header-icon {
  color: #fff;
}
.fixed .header-icon:focus {
  color: #fff;
}
.fixed .header-icon:hover {
  color: #b83386;
}

.lang-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .lang-content {
    display: none;
  }
}

.lang {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.lang i {
  font-size: 20px;
  margin-inline-start: 9px;
}
.lang:focus {
  color: #fff;
}
.lang:hover {
  color: #b83386;
}
.inner-page .lang {
  color: #3c218a;
}
.inner-page .lang:focus {
  color: #3c218a;
}
.inner-page .lang:hover {
  color: #b83386;
}
.fixed .lang {
  color: #fff;
}
.fixed .lang:focus {
  color: #fff;
}
.fixed .lang:hover {
  color: #b83386;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.inner-page header {
  background-color: #fff;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  header {
    overflow: hidden;
  }
  .inner-page header {
    background-color: #fff;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    padding: 0;
  }
}
header.fixed {
  background-color: #3c218a;
  position: fixed;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.25);
  border-inline-start: 10px solid #b83386;
  border-end-start-radius: 100px;
  padding: 0 0 10px;
}
@media (max-width: 767px) {
  header.fixed {
    padding: 0;
  }
  header.fixed {
    border-end-start-radius: 50px;
  }
}
header.fixed .header {
  padding: 10px 0;
}
@media (max-width: 767px) {
  header.fixed .header {
    padding: 7px 0;
  }
}
header.fixed .logo {
  width: 90px;
}
header.fixed .logo img {
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  header.fixed .logo {
    width: 70px;
  }
}

.nav-btn {
  display: none;
  flex-flow: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  margin-inline-start: auto;
  z-index: 99;
}
@media (max-width: 767px) {
  .nav-btn {
    display: flex;
  }
}
.nav-btn .btn-bar {
  position: relative;
  width: 22px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
}
.nav-btn .btn-bar.menu {
  transition: transform 0.3s ease-in-out 0.2s, opacity 0.15s ease-in-out 0.2s;
}
.nav-btn .btn-bar.menu:not(:first-child) {
  margin-top: 5px;
}
.nav-btn .btn-bar.menu:nth-child(even) {
  width: 30px;
}
.nav-btn .btn-bar.close {
  transform-origin: center center;
  position: absolute;
  margin-top: -1.5px;
  opacity: 0;
  top: 50%;
  transition: transform 0.2s ease-in-out, opacity 0.05s ease-in-out 0.2s;
}
.nav-btn .btn-bar.close:not(:last-child) {
  transform: rotate(45deg) translateX(-250%);
}
.nav-btn .btn-bar.close:last-child {
  transform: rotate(-45deg) translateX(250%);
}
.nav-btn.active .btn-bar.menu {
  transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s;
  opacity: 0;
}
.nav-btn.active .btn-bar.menu:nth-child(odd) {
  transform: translateX(-400%);
}
.nav-btn.active .btn-bar.menu:nth-child(even) {
  transform: translateX(200%);
}
.nav-btn.active .btn-bar.close {
  opacity: 1;
  transition: transform 0.2s ease-in-out 0.3s, opacity 0.05s ease-in-out 0.3s;
}
.nav-btn.active .btn-bar.close:not(:last-child) {
  transform: rotate(45deg);
}
.nav-btn.active .btn-bar.close:last-child {
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .inner-page .nav-btn .btn-bar {
    background-color: #3c218a;
  }
}
.inner-page .nav-btn.active .btn-bar {
  background-color: #fff;
}
.fixed .nav-btn .btn-bar {
  background-color: #fff;
}

.notifications-item {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .notifications-item {
    position: absolute;
    top: 15px;
    inset-inline-start: 40px;
  }
}

.notifications-link {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #f2f2f2;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}
.inner-page .notifications-link {
  color: #3c218a;
}
.notifications-link:hover {
  color: #fff;
  background-color: #58b2bb;
  border-color: #58b2bb;
}
.fixed .notifications-link {
  color: #fff;
  width: 30px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .notifications-link {
    width: 45px;
    font-size: 30px;
    color: #fff;
  }
  .fixed .notifications-link {
    width: 45px;
    font-size: 30px;
  }
  .inner-page .notifications-link {
    color: #fff;
  }
}

header.fixed .nav-list .nav-link {
  height: 40px;
}
header.fixed .nav-list .nav-link::after {
  display: none;
}
header.fixed .sub-menu {
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.25);
}

.header-nav {
  width: 100%;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  background-color: rgba(255, 255, 255, 0.102);
  border: 1px solid rgba(237, 237, 237, 0.3);
  border-radius: 10px;
}
.inner-page .nav-list {
  border-color: #f2f2f2;
}
@media (max-width: 991px) {
  .nav-list {
    gap: 20px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .nav-list {
    display: none;
  }
}
.nav-list .nav-item {
  position: relative;
}
@media (max-width: 991px) {
  .nav-list .nav-item {
    position: static;
  }
}
.nav-list .nav-item.mobile-item {
  display: none;
}
.nav-list .nav-item.mobile-item .lang i {
  display: none;
}
.nav-list .nav-link {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.nav-list .nav-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-inline-start: 3px;
}
.nav-list .nav-link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 12px;
  background-color: #fff;
  opacity: 0.5;
  transform-origin: top;
  scale: 1 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .nav-list .nav-link::after {
    display: none;
  }
}
.nav-list .nav-link:focus {
  color: #fff;
}
.nav-list .nav-link.active,
.nav-list .nav-link:hover {
  color: #fff;
}
.nav-list .nav-link.active::after,
.nav-list .nav-link:hover::after {
  scale: 1;
}
@media (min-width: 768px) {
  .inner-page .nav-list .nav-link {
    color: #3c218a;
  }
  .inner-page .nav-list .nav-link::after {
    background-color: #b83386;
  }
  .inner-page .nav-list .nav-link:focus {
    color: #3c218a;
  }
  .inner-page .nav-list .nav-link.active,
  .inner-page .nav-list .nav-link:hover {
    color: #b83386;
  }
  .fixed .nav-list .nav-link {
    color: #fff;
  }
  .fixed .nav-list .nav-link::after {
    background-color: #fff;
  }
  .fixed .nav-list .nav-link:focus {
    color: #fff;
  }
  .fixed .nav-list .nav-link.active,
  .fixed .nav-list .nav-link:hover {
    color: #fff;
  }
}

.sub-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .sub-menu {
    left: auto;
    inset-inline-start: 0;
    transform: none;
  }
}

.submenu-head {
  background-color: #ebe8f3;
  padding: 15px 25px;
}

.submenu-title {
  font-size: 20px;
  font-weight: 700;
  color: #3c218a;
  margin: 0 0 10px;
}

.submenu-subtitle {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 300;
  color: #3c218a;
  margin: 0;
}

.submenu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 15px;
  padding: 17px 25px 34px;
}

.submenu-item {
  width: 270px;
}

.submenu-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.submenu-link::before {
  content: "\f060";
  flex-shrink: 0;
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #b2a5d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 18px;
  color: #3c218a;
  margin-inline-end: 13px;
  transition: all 0.3s ease-in-out;
}
html[dir="ltr"] .submenu-link::before {
  transform: scaleX(-1);
}
.submenu-link:hover {
  color: #58b2bb;
}
.submenu-link:hover::before {
  background-color: #58b2bb;
  color: #fff;
}

.has-children:hover .nav-link {
  color: #fff;
}
.has-children:hover .nav-link::after {
  scale: 1;
}
.has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: none;
    transition: z-index 0.01s ease-in-out 0.2s;
  }
  .header-nav .background {
    position: absolute;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
  }
  .header-nav .background .portion {
    background: #3c218a;
    flex: 1 1 100%;
    transition: transform 0.2s ease-in-out;
  }
  .header-nav .background .portion:not(:first-child) {
    margin-top: -1px;
  }
  .header-nav .background .portion:nth-child(odd) {
    transform: translateX(-100%);
  }
  .header-nav .background .portion:nth-child(even) {
    transform: translateX(100%);
  }
  .header-nav .nav-list {
    visibility: hidden;
    opacity: 0;
    transform: matrix(1, 0, 0, 1, 0, 20);
    display: block;
    background-color: transparent;
    border: none;
    padding: 120px 20px 40px;
    width: 100%;
    height: 100%;
    background-color: #3c218a;
    overflow-y: auto;
    border-radius: 0;
    transition: all 0.01s ease-in-out;
  }
  .header-nav .nav-list .nav-item {
    padding: 10px 20px;
  }
  .header-nav .nav-list .nav-item.mobile-item {
    display: block;
  }
  .header-nav .nav-list .nav-link {
    height: auto !important;
    font-size: 18px;
  }
  .header-nav .nav-list .nav-link i {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
  }
  .header-nav .nav-list .nav-link.acc-active i {
    transform: rotate(180deg);
  }
  .header-nav .sub-menu {
    position: relative;
    inset: unset;
    transform: none;
    border-radius: 0;
    box-shadow: none !important;
    width: auto;
    visibility: visible;
    opacity: 1;
    transition: none;
    background-color: transparent;
    padding: 0 15px;
    display: none;
  }
  .header-nav .submenu-head {
    display: none;
  }
  .header-nav .submenu-list {
    display: block;
    background-color: transparent;
    padding: 0;
  }
  .header-nav .submenu-item {
    padding: 7px 0;
  }
  .header-nav .submenu-link {
    color: #bfb1e1;
  }
  .header-nav .submenu-link::before {
    display: none;
  }
  .header-nav.active {
    z-index: 98;
    transition: z-index 0.01s ease-in-out 0.3s;
  }
  .header-nav.active .background .portion {
    transform: translateX(0%);
    transition: transform 0.2s ease-in-out 0.3s;
  }
  .header-nav.active .nav-list {
    visibility: visible;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
    transition: all 0.3s ease-in-out 0.5s;
  }
}
.search-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1000px;
  width: 0;
  height: 0;
  background: #58b2bb;
  z-index: 998;
  transition: all 0.4s linear;
}
.search-modal .search-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: transparent;
}
.search-modal .close-search {
  position: absolute;
  color: #ccc;
  top: 20px;
  inset-inline-start: 50px;
  font-size: 30px;
  cursor: pointer;
  transform: rotate(0deg);
  transform-origin: center;
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search-modal .close-search:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .search-modal .close-search {
    inset-inline-start: unset;
    top: 70px;
    transform: translateX(-50%);
    left: 50%;
  }
}
.search-modal .search-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 30px);
  max-width: 550px;
  height: 60px;
  font-size: 21px;
}
.search-modal .search-input {
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 3px solid #eee;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.search-modal .search-input::-moz-placeholder {
  color: #ddd;
  font-weight: 400;
}
.search-modal .search-input::placeholder {
  color: #ddd;
  font-weight: 400;
}
.search-modal .search-input:focus {
  border-color: #b83386;
}
.search-modal .search-btn {
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 45px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.search-modal .search-btn:hover {
  color: #fff;
}
html[dir="rtl"] .search-modal .search-btn {
  scale: -1 1;
}
.search-modal.open {
  height: 4000px;
  width: 4000px;
}

.breadcrumb-section {
  background-color: #3c218a;
  padding: 205px 0 45px;
  position: relative;
}
body:has(.post-content) .breadcrumb-section {
  padding-bottom: 105px;
}
@media (max-width: 767px) {
  /* this */
  /* .breadcrumb-section {
    padding: 100px 0 25px;
  }
  .breadcrumb-section .page-title{
    margin: 0;
  }
  .breadcrumb-section .breadcrumb-list{
    display: none;
  } */
  /* or */
  .breadcrumb-section {
    display: none;
  }
  body:has(.breadcrumb-section) {
    padding-top: 76px;
  }
  body:has(.breadcrumb-section) header {
    background-color: #3c218a;
  }
}
.breadcrumb-section.breadcrumb-bg {
  padding-bottom: 105px;
}
.breadcrumb-section .breadcrumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.07;
}

.page-title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.breadcrumb-list li ~ li::before {
  content: "/";
  margin: 0 8px;
}
.breadcrumb-list li:last-of-type {
  pointer-events: none;
}
.breadcrumb-list a {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.breadcrumb-list a:hover {
  color: #bfb1e1;
}

.about-section {
  padding: 100px 0 50px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 991px) {
  .about-section {
    padding: 70px 0 30px;
  }
}

.statistics-section {
  padding: 50px 0;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 991px) {
  .statistics-section {
    padding: 30px 0;
  }
}

.banners-section {
  padding: 50px 0 100px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 991px) {
  .banners-section {
    padding: 30px 0;
  }
}

.services-section {
  padding: 105px 0 55px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  background-color: #3c218a;
  z-index: 1;
}
@media (max-width: 767px) {
  .services-section::after {
    height: 380px;
  }
}
.services-section .section-titles {
  width: 465px;
}
@media (max-width: 767px) {
  .services-section .section-titles {
    width: 100%;
  }
}
.services-section .section-title {
  color: #fff;
}
.services-section .section-link {
  border-color: #fff;
  color: #fff;
}
.services-section .section-link:hover {
  border-color: transparent;
}
@media (max-width: 767px) {
  .services-section .section-link {
    border-color: #3c218a;
    color: #3c218a;
  }
  .services-section .section-link:hover {
    border-color: transparent;
    color: #fff;
  }
}
.services-section .custom-slider .swiper-pagination {
  margin: 0;
}
@media (max-width: 991px) {
  .services-section {
    padding: 73px 0 33px;
  }
}

.services-content {
  position: relative;
  z-index: 2;
}

.features-section {
  padding: 55px 0 120px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 991px) {
  .features-section {
    padding: 33px 0 80px;
  }
}

.stages-section {
  padding: 100px 0 110px;
  width: 100%;
  background-color: #3c218a;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .stages-section {
    padding: 70px 0 75px;
  }
}
.stages-section .stages-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.stages-section .stages-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.stages-section .section-head {
  text-align: center;
  justify-content: center;
}
.stages-section .section-title {
  color: #fff;
}
.stages-section .section-hint {
  color: #fff;
}

.stages-content {
  position: relative;
  z-index: 2;
}

.clients-section {
  padding: 100px 0 80px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
.clients-section .section-titles {
  width: 570px;
}
@media (max-width: 991px) {
  .clients-section {
    padding: 70px 0 50px;
  }
}

.clients-title {
  font-size: 24px;
  color: #58b2bb;
  font-weight: 300;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .clients-title {
    font-size: 18px;
    text-align: center;
    margin: 0 0 15px;
  }
}

.blog-section {
  padding: 80px 0 110px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 991px) {
  .blog-section {
    padding: 50px 0 75px;
  }
}

.about-page .about-section {
  padding: 0 0 40px;
}
@media (max-width: 991px) {
  .about-page .about-section {
    padding: 0 0 25px;
  }
}
.about-page .clients-section {
  padding: 50px 0 40px;
}
@media (max-width: 991px) {
  .about-page .clients-section {
    padding: 30px 0 25px;
  }
}

.about-features {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .about-features {
    padding: 25px 0;
  }
}

.about-features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1199px) {
  .about-features-content {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .about-features-content {
    grid-template-columns: 1fr;
  }
}

.about-features-item {
  border: 2px solid #f2f2f2;
  text-align: center;
  padding: 40px 45px 35px;
}
@media (max-width: 991px) {
  .about-features-item {
    width: 100%;
    max-width: 555px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .about-features-item {
    padding: 30px 20px;
  }
}
.about-features-item .about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #58b2bb;
  font-size: 60px;
  margin: 0 0 25px;
}
@media (max-width: 767px) {
  .about-features-item .about-feature-icon {
    font-size: 40px;
    margin: 0 0 20px;
  }
}
.about-features-item .about-feature-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .about-features-item .about-feature-title {
    font-size: 24px;
    margin: 0 0 15px;
  }
}
.about-features-item .about-feature-description {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 767px) {
  .about-features-item .about-feature-description {
    font-size: 18px;
    margin: 0 0;
  }
}
.about-features-item:nth-of-type(even) .about-feature-icon {
  color: #b83386;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}
@media (max-width: 1199px) {
  .services-grid {
    gap: 30px 15px;
  }
}
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
@media (max-width: 991px) {
  .service-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .service-content {
    gap: 30px;
  }
}
.service-content .mobile-title {
  margin: 0 0 0;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  display: none;
}
@media (max-width: 767px) {
  .service-content .mobile-title {
    display: block;
  }
}

.service-details {
  padding-inline-end: 68px;
}
@media (max-width: 1199px) {
  .service-details {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .service-details {
    padding: 0 0 20px;
  }
}
.service-details .service-img {
  max-width: 100%;
  aspect-ratio: 682/444;
  margin: 0 0 35px;
}
.service-details .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 991px) {
  .service-details .service-img {
    margin-bottom: 25px;
  }
}

.service-description {
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .service-description {
    margin-bottom: 30px;
  }
}
.service-description h3 {
  font-size: 24px;
  color: #3c218a;
  font-weight: 700;
  line-height: 1.667;
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .service-description h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.service-description p {
  font-size: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #3c218a;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .service-description p {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.service-description ul {
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .service-description ul {
    margin-bottom: 20px;
  }
}
.service-description ul li {
  font-size: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #3c218a;
  display: flex;
}
.service-description ul li::before {
  content: "•";
  display: block;
  flex-shrink: 0;
  padding-top: 2px;
  margin-inline-end: 19px;
}
@media (max-width: 991px) {
  .service-description ul li::before {
    margin-inline-end: 10px;
  }
}
@media (max-width: 991px) {
  .service-description ul li {
    font-size: 16px;
  }
  .service-description ul li ~ li {
    margin-top: 3px;
  }
}
.service-description :last-child {
  margin: 0;
}

.servcie-request {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0 37px;
  height: 50px;
  border-radius: 25px;
  background-color: #58b2bb;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  transform: perspective(1px);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.servcie-request:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c218a 0, #b83386 100%);
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.servcie-request:hover:after {
  visibility: hidden;
  opacity: 0;
}
.servcie-request:hover {
  /* background-color: #b83386; */
  color: #fff;
}

.services-related .related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (max-width: 991px) {
  .services-related .related-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .services-related .related-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.related-title {
  font-size: 30px;
  font-weight: 700;
  color: #3c218a;
  margin: 0 0 15px;
}
@media (max-width: 991px) {
  .related-title {
    text-align: center;
  }
}

.tenders-title {
  color: #3c218a;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 20px;
}
.tenders-title span {
  color: #58b2bb;
}
@media (max-width: 767px) {
  .tenders-title {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
  }
}

.tender-item {
  display: flex;
  border: 2px solid #f2f2f2;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .tender-item {
    flex-direction: column;
  }
}
.tender-item ~ .tender-item {
  margin-top: 18px;
}
@media (max-width: 1199px) {
  .tender-item ~ .tender-item {
    margin-top: 10px;
  }
}
.tender-item .tender-description {
  width: 100%;
  padding: 30px 35px 35px;
}
@media (max-width: 1199px) {
  .tender-item .tender-description {
    padding: 20px 15px;
  }
}
.tender-item .tender-informations {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .tender-item .tender-informations {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .tender-item .tender-informations {
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.tender-item .informations-items {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .tender-item .informations-items {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .tender-item .informations-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}
.tender-item .information-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
  color: #808080;
  height: 36px;
}
.tender-item .information-item i {
  font-size: 24px;
  margin-inline-end: 10px;
}
@media (max-width: 1199px) {
  .tender-item .information-item {
    font-size: 14px;
    height: 30px;
  }
  .tender-item .information-item i {
    font-size: 20px;
    margin-inline-end: 5px;
  }
}
.tender-item .informations-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .tender-item .informations-tags {
    justify-content: flex-end;
    width: 100%;
  }
}
.tender-item .information-tag {
  font-size: 18px;
  font-weight: 700;
  color: #58b2bb;
  background-color: rgba(88, 178, 187, 0.102);
  height: 36px;
  border-radius: 20px;
  padding: 4px 20px 0;
}
@media (max-width: 1199px) {
  .tender-item .information-tag {
    font-size: 14px;
    height: 30px;
    padding: 3px 15px 0;
  }
}
.tender-item .tender-title {
  font-size: 26px;
  color: #3c218a;
  font-weight: 700;
  margin: 0 0 35px;
}
@media (max-width: 1199px) {
  .tender-item .tender-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .tender-item .tender-title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.tender-item .tender-title a {
  color: #3c218a;
  transition: all 0.3s ease-in-out;
}
.tender-item .tender-title a:hover {
  color: #b83386;
}
.tender-item .tender-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tender-item .tender-feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #3c218a;
  gap: 5px;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .tender-item .tender-feature {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .tender-item .tender-feature {
    font-size: 14px;
  }
}
.tender-item .tender-feature strong {
  font-weight: 700;
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .tender-item .tender-feature strong {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .tender-item .tender-feature strong {
    width: 50%;
  }
}
.tender-item .tender-feature span {
  font-weight: 300;
}
@media (max-width: 767px) {
  .tender-item .tender-feature span {
    width: calc(50% - 5px);
    text-align: end;
  }
}
.tender-item .tender-price span {
  font-size: 24px;
  font-weight: 700;
  color: #b83386;
}
@media (max-width: 1199px) {
  .tender-item .tender-price span {
    font-size: 20px;
  }
}
.tender-item .tender-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 308px;
  max-width: 27%;
  flex-shrink: 0;
  padding: 15px;
  border-inline-start: 2px solid #f2f2f2;
}
@media (max-width: 991px) {
  .tender-item .tender-progress {
    border: none;
    border-top: 2px solid #f2f2f2;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tender-item .tender-progress {
    flex-direction: row;
    justify-content: space-between;
  }
}
.tender-item .circular-progress {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(
    #b83386 calc(var(--progress) * 3.6deg),
    #f7f7f7 0deg
  );
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .tender-item .circular-progress {
    width: 120px;
    margin: 0;
    margin-inline-end: auto;
  }
}
.tender-item .circular-progress .inner-circle {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 48px;
  color: #b83386;
  font-weight: 300;
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .tender-item .circular-progress .inner-circle {
    font-size: 30px;
  }
}
.tender-item .progress-title {
  font-size: 20px;
  font-weight: 700;
  color: #3c218a;
  margin: 0;
}
@media (max-width: 767px) {
  .tender-item .progress-title {
    font-size: 16px;
  }
}
.tender-item .progress-value {
  font-size: 20px;
  font-weight: 300;
  color: #b83386;
}
@media (max-width: 767px) {
  .tender-item .progress-value {
    font-size: 16px;
  }
}
.tender-item:hover {
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .tender-item:hover {
    box-shadow: none;
  }
}

.tenderDetails-content {
  color: #3c218a;
  font-size: 18px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .tenderDetails-content {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.tenderDetails-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #3c218a;
  font-size: 18px;
  gap: 30px;
}
@media (max-width: 991px) {
  .tenderDetails-item {
    gap: 5px;
    font-size: 14px;
    width: 100%;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .tenderDetails-item {
    flex-direction: column;
  }
}
.tenderDetails-item ~ .tenderDetails-item {
  margin-top: 13px;
}
@media (max-width: 767px) {
  .tenderDetails-item ~ .tenderDetails-item {
    margin-top: 18px;
  }
}
.tenderDetails-item strong {
  font-weight: 700;
  width: 262px;
}
@media (max-width: 767px) {
  .tenderDetails-item strong {
    width: 100%;
  }
}
.tenderDetails-item span {
  font-weight: 300;
}
@media (max-width: 767px) {
  .tenderDetails-item span {
    width: 100%;
    padding: 0 15px;
  }
}
.tenderDetails-item span:has(img) {
  display: flex;
  align-items: center;
}
.tenderDetails-item span img {
  margin-inline-start: 8px;
  height: 32px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.tenderDetails-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tenderDetails-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 25px;
  height: 50px;
  border-radius: 25px;
  font-size: 20px;
  color: #fff;
  background-color: #58b2bb;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.tenderDetails-btn i {
  font-size: 24px;
  margin-inline-end: 6px;
}
.tenderDetails-btn:nth-of-type(2) {
  background-color: #3c218a;
  position: relative;
  transform: perspective(1px);
  overflow: hidden;
}

.tenderDetails-btn:nth-of-type(2):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c218a 0, #b83386 100%);
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.tenderDetails-btn:nth-of-type(2):hover:after {
  visibility: hidden;
  opacity: 0;
}
.tenderDetails-btn:nth-of-type(2):hover {
  color: #fff;
  background-color: #3c218a;
}
.tenderDetails-btn:hover {
  background-color: #b83386;
  color: #fff;
}

.faq-title {
  font-size: 30px;
  font-weight: 700;
  color: #3c218a;
  text-align: center;
  margin: 0 0 35px;
}

.faq-list {
  border-block: 1px solid #f2f2f2;
  width: 100%;
  max-width: 946px;
  margin: auto;
}

.faq-item ~ .faq-item {
  border-top: 1px solid #f2f2f2;
}
.faq-item .faq-question {
  margin: 0;
}
.faq-item .question-button {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.faq-item .question-button .faq-number {
  font-size: 20px;
  font-weight: 400;
  color: #b83386;
  width: 54px;
  text-align: start;
  line-height: 87px;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .faq-item .question-button .faq-number {
    width: 25px;
    font-size: 16px;
    line-height: 60px;
  }
}
.faq-item .question-button .text {
  font-size: 20px;
  color: #b83386;
  line-height: 1.5;
  font-weight: 700;
  text-align: start;
  min-height: 87px;
  padding: 26px 0 27px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .faq-item .question-button .text {
    font-size: 18px;
    padding: 16px 0 17px;
    min-height: 60px;
  }
}
.faq-item .question-button::after {
  width: 150px;
  text-align: end;
  line-height: 87px;
  margin-inline-start: auto;
  content: "\f068";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 36px;
  color: #b83386;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .faq-item .question-button::after {
    width: 25px;
    font-size: 18px;
    line-height: 60px;
  }
}
.faq-item .question-button.collapsed .text {
  color: #3c218a;
}
.faq-item .question-button.collapsed .faq-number {
  color: #cccccc;
}
.faq-item .question-button.collapsed::after {
  color: #cccccc;
  content: "\f067";
}
.faq-item .faq-answer {
  padding: 0 40px 26px;
  font-size: 20px;
  font-weight: 300;
  color: #3c218a;
  text-align: justify;
  line-height: 1.8;
}
.faq-item .faq-answer p {
  margin: 0;
}
@media (max-width: 767px) {
  .faq-item .faq-answer {
    padding: 0 30px 15px;
    font-size: 14px;
  }
}

.blog-title {
  background-color: #3c218a;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 13px 23px 10px;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .blog-title {
    margin-bottom: 20px;
  }
}

.blog-trend {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .blog-trend {
    margin-bottom: 40px;
  }
}

.blog-top {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .blog-top {
    margin-bottom: 40px;
  }
}

.post-page {
  padding-top: 0;
}
@media (max-width: 767px) {
  .post-page {
    padding-top: 30px;
  }
}

.post-content {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 32px 30px 80px;
  transform: translateY(-60px);
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .post-content {
    padding: 0 0 30px;
    transform: none;
    margin-bottom: 30px;
  }
}
.post-content .post-img {
  aspect-ratio: 1080/576;
  width: 100%;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .post-content .post-img {
    margin-bottom: 20px;
  }
}
.post-content .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.post-content .post-informations {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 945px;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .post-content .post-informations {
    padding: 0 15px;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
  }
}
.post-content .information-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  color: #666666;
}
.post-content .information-item i {
  font-size: 20px;
  margin-inline-end: 9px;
}
@media (max-width: 767px) {
  .post-content .information-item i {
    font-size: 18px;
    margin-inline-end: 5px;
  }
}
.post-content .information-item.scroll-btn {
  transition: all 0.3s ease-in-out;
}
.post-content .information-item.scroll-btn:hover {
  color: #b83386;
}
.post-content .post-description {
  width: 100%;
  max-width: 945px;
  margin: 0 auto 90px;
  font-size: 20px;
  font-weight: 300;
  text-align: justify;
  line-height: 2;
  color: #3c218a;
}
@media (max-width: 767px) {
  .post-content .post-description {
    padding: 0 15px;
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.post-content .post-description p {
  margin: 0 0 45px;
}
@media (max-width: 767px) {
  .post-content .post-description p {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.post-content .post-description h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .post-content .post-description h3 {
    font-size: 20px;
  }
}
.post-content .post-description :last-child {
  margin: 0;
}
.post-content .post-share {
  text-align: center;
}
@media (max-width: 767px) {
  .post-content .post-share {
    padding: 0 15px;
  }
}
.post-content .share-title {
  font-size: 24px;
  font-weight: 700;
  color: #3c218a;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .post-content .share-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.post-content .share-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.post-content .share {
  border-radius: 50%;
  background-color: #3c218a;
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.post-content .share [class$="-twitter"] {
  font-size: 18px;
}
.post-content .share:hover {
  color: #fff;
  background-color: #b83386;
}

.post-related {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .post-related {
    margin-bottom: 60px;
  }
}

.related-title {
  font-size: 36px;
  font-weight: 700;
  color: #3c218a;
  text-align: center;
  margin: 0 0 35px;
}
@media (max-width: 767px) {
  .related-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.post-comments {
  padding: 40px 0 0;
  border-top: 1px solid #e5e8ed;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .post-comments {
    grid-template-columns: 1fr;
  }
}

.comments-head {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .comments-head {
    margin-bottom: 25px;
    text-align: center;
  }
}

.comments-title {
  font-size: 28px;
  font-weight: 700;
  color: #3c218a;
  margin: 0 0;
}
@media (max-width: 767px) {
  .comments-title {
    font-size: 24px;
  }
}

.comments-hint {
  font-size: 18px;
  color: #3c218a;
  font-weight: 300;
  margin: 10px 0 0;
}
.comments-hint::after {
  content: "*";
  color: #f00;
}
@media (max-width: 767px) {
  .comments-hint {
    font-size: 16px;
    margin: 10px auto 0;
    width: 100%;
    max-width: 345px;
  }
}

.comment-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 15px 20px 20px;
  background-color: #fafafa;
}
.comment-item ~ .comment-item {
  margin-top: 5px;
}
@media (max-width: 991px) {
  .comment-item {
    padding: 15px 10px;
  }
}
.comment-item .comment-img {
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.comment-item .comment-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.comment-item .comment-text {
  margin-top: 15px;
  margin-inline-start: 9px;
}
.comment-item .comment-head {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .comment-item .comment-head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.comment-item .user-name {
  font-size: 16px;
  font-weight: 700;
  color: #3c218a;
  margin: 0;
}
.comment-item .comment-time {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  color: #999999;
  margin: 0;
}
@media (max-width: 767px) {
  .comment-item .comment-time {
    margin-top: 5px;
  }
}
.comment-item .comment-time::before {
  content: "-";
  margin: 0 8px;
}
@media (max-width: 767px) {
  .comment-item .comment-time::before {
    display: none;
  }
}
.comment-item .comment-time span ~ span::before {
  content: "-";
  margin: 0 3px;
}
.comment-item .comment-body {
  font-size: 18px;
  line-height: 1.625;
  color: #3c218a;
  font-weight: 300;
  margin: 0;
  width: 100%;
}

.more-comments {
  font-size: 16px;
  color: #b83386;
  border: 2px solid #b83386;
  padding: 0 23px;
  height: 44px;
  border-radius: 22px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 17px auto 0;
  transition: all 0.3s ease-in-out;
}
.more-comments:hover {
  background-color: #58b2bb;
  border-color: #58b2bb;
  color: #fff;
}

.auth-content {
  width: 100%;
  max-width: 556px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}

.auth-form {
  width: 100%;
}
.auth-form .submit-btn {
  width: 100%;
}

.form-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.form-link a {
  color: #3c218a;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
.form-link a:hover {
  color: #b83386;
}

.form-hint {
  margin: 0;
  text-align: center;
  color: #3c218a;
  font-size: 18px;
}
.form-hint a {
  color: #b83386;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.form-hint a:hover {
  color: #58b2bb;
}

.auth-title {
  font-size: 30px;
  font-weight: 700;
  color: #3c218a;
  text-align: center;
  margin: 0 0 45px;
}
@media (max-width: 767px) {
  .auth-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-title {
  font-size: 30px;
  font-weight: 700;
  color: #3c218a;
  line-height: 1.333;
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .contact-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.contact-form {
  width: 100%;
}
.contact-form .submit-btn {
  width: 100%;
}

.contact-informations {
  width: 100%;
  max-width: 488px;
  margin-inline-start: auto;
}
@media (max-width: 991px) {
  .contact-informations {
    margin: 0 auto;
  }
}

.contact-informations-title {
  text-align: center;
  font-size: 24px;
  color: #3c218a;
  font-weight: 700;
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .contact-informations-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.contact-block {
  padding: 30px 37px 35px;
  border: 2px solid #f2f2f2;
}
@media (max-width: 767px) {
  .contact-block {
    padding: 25px 15px;
  }
}
.contact-block.contact-socials {
  padding-bottom: 39px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .contact-block.contact-socials {
    margin-top: 10px;
    padding-bottom: 25px 15px;
  }
}
.contact-block .socials {
  justify-content: center;
}
.contact-block .social {
  background-color: #3c218a;
}
.contact-block .social:hover {
  background-color: #58b2bb;
}

.methods-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.methods-list .contact-method {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 49px;
  border-radius: 25px;
  background-color: #f2f2f2;
  padding: 0 17px;
  font-size: 18px;
  font-weight: 300;
  color: #3c218a;
  transition: all 0.3s ease-in-out;
}
.methods-list .contact-method span {
  direction: ltr;
}
.methods-list .contact-method i {
  margin-inline-end: 15px;
  font-size: 24px;
}
.methods-list .contact-method:hover {
  background-color: #b83386;
  color: #fff;
}

.apply-hint {
  color: #ed2929;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 15px 0 15px;
}

.offer-content {
  width: 100%;
  padding-bottom: 20px;
}
.offer-content .admin-offer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer-content .form-control {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}
.offer-content .form-control span {
  font-size: 20px;
}
.offer-content .reject-offer {
  white-space: nowrap;
}
.offer-content .reject-offer:hover {
  background-color: #ed2929;
}

.payment-form {
  width: 100%;
}

.bank-form {
  width: 100%;
  padding-bottom: 20px;
}

.payment-hint {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 15px;
}

.status-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}
.status-content .status-desc {
  font-weight: 700;
  margin: 0;
}

.account-list {
  border: 2px solid #f2f2f2;
  background-color: #fff;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
  position: sticky;
  top: 150px;
}
.account-list .account-link {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  padding: 10px 5px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 20px;
  color: #3c218a;
  transition: all 0.3s ease-in-out;
}
.account-list .account-link i {
  color: rgba(0, 0, 0, 0.5);
  font-size: 22px;
  transition: all 0.3s ease-in-out;
}
.account-list .account-link:hover {
  color: #58b2bb;
}
.account-list .account-link:hover i {
  color: #58b2bb;
}
.account-list .account-link.active {
  color: #58b2bb;
  font-weight: 700;
}
.account-list .account-link.active i {
  color: #58b2bb;
}
.account-list :last-of-type {
  padding-bottom: 0;
  border: none;
  color: #ed2929;
}
.account-list :last-of-type i {
  color: #ed2929;
}

.account-title {
  font-size: 20px;
  font-weight: 700;
  color: #3c218a;
  line-height: 1.65;
  margin: 0;
  padding: 20px 0;
}

@media (max-width: 767px) {
  .account-form {
    width: 100%;
  }
}

.notifications-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.notification-item {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(55, 165, 155, 0.1019607843);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .notification-item {
    padding: 15px 10px;
  }
}
.notification-item .notification-icon {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #58b2bb;
  color: #fff;
  padding: 10px;
}
.notification-item .notification-icon i {
  font-size: 25px;
}
.notification-item .notification-info {
  margin-inline-start: 20px;
  margin-inline-end: 14px;
  padding: 2px 0 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 767px) {
  .notification-item .notification-info {
    margin-inline: 10px;
  }
}
.notification-item .notification-title {
  font-size: 16px;
  font-weight: 400;
  color: #3c218a;
  line-height: 1.7857142857;
  text-align: justify;
  margin: 0 0 5px;
}
.notification-item .notification-date {
  font-size: 14px;
  font-weight: 400;
  color: #727272;
  line-height: 1.5833334;
}
.notification-item:is(a):hover {
  background-color: #f2f2f2;
  border-radius: 5px;
  box-shadow: none;
}
.notification-item.new {
  background-color: #f2f2f2;
  border-radius: 5px;
  box-shadow: none;
}

.orders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 1199px) {
  .orders-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .orders-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .orders-grid {
    grid-template-columns: 1fr;
  }
}

.order_progress_container {
  width: 100%;
  padding-bottom: 20px;
}

.account-order-info .order_progress_container {
  margin: 30px 0;
  border: none;
}

.order_progress_bar {
  display: flex;
  justify-content: space-between;
}

.order_progress_bar .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.step_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 2px solid #f2f2f2;
  background-color: #f2f2f2;
  border-radius: 50%;
  color: #fff;
}

.step_circle > i {
  line-height: 1.2;
}

.step.completed .step_circle {
  border: 2px solid #77c323;
  background-color: #77c323;
}

.step.completed .step_title.ot_cancel {
  display: none;
}

.step.canceled .step_circle {
  border: 2px solid #d0021b;
  background-color: #d0021b;
}

.step.canceled .step_circle > .fa-check:before {
  content: "\f00d";
}

.step.canceled .step_title.ot_cancel {
  display: inline-block;
}

.step.canceled .step_title.ot_complete {
  display: none;
}

.step:not(:first-child) .step_circle::before {
  content: "";
  display: inline-flex;
  width: 100%;
  height: 4px;
  background-color: #f2f2f2;
  position: absolute;
  inset-inline-end: 50%;
  z-index: -1;
}

.step.completed:not(:first-child) .step_circle::before {
  background-color: #77c323;
}

.order_progress_bar .step_name {
  margin-bottom: 0;
  text-align: center;
  margin-top: 15px;
}

.orderDetails-informations {
  padding: 30px 0 40px;
}
.orderDetails-informations hr {
  color: #f2f2f2;
  opacity: 1;
}

.orderDetails-content {
  color: #3c218a;
  font-size: 18px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .orderDetails-content {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.orderDetails-item {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  color: #3c218a;
  font-size: 18px;
  gap: 30px;
}
@media (max-width: 991px) {
  .orderDetails-item {
    gap: 5px;
    font-size: 14px;
    width: 100%;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .orderDetails-item {
    flex-direction: column;
  }
}
.orderDetails-item ~ .orderDetails-item {
  margin-top: 13px;
}
@media (max-width: 767px) {
  .orderDetails-item ~ .orderDetails-item {
    margin-top: 18px;
  }
}
.orderDetails-item strong {
  font-weight: 700;
  width: 150px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .orderDetails-item strong {
    width: 100%;
  }
}
.orderDetails-item span {
  font-weight: 300;
}
@media (max-width: 767px) {
  .orderDetails-item span {
    width: 100%;
    padding: 0 15px;
  }
}
.orderDetails-item span:has(img) {
  display: flex;
  align-items: center;
}
.orderDetails-item span img {
  margin-inline-start: 8px;
  height: 32px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.orderDetails-item span:has(.order-attaches) {
  align-items: start;
  gap: 5px;
  flex-direction: column;
}

.order-attaches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.order-attach {
  position: relative;
  width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #f2f2f2;
}
.order-attach .order-attach-img {
  width: 100%;
  height: 100%;
}
.order-attach .order-attach-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
}
.order-attach .order-attach-icon {
  font-size: 80px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b83386;
}
.order-attach .order-attach-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 20px;
  padding: 10px 5px;
  background-color: rgba(60, 33, 138, 0.8);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orderDetails-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.orderDetails-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 25px;
  height: 50px;
  border-radius: 25px;
  font-size: 20px;
  color: #fff;
  background-color: #58b2bb;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.orderDetails-btn i {
  font-size: 24px;
  margin-inline-end: 6px;
}
.orderDetails-btn.cancel {
  background-color: #d0021b;
}
.orderDetails-btn:hover {
  color: #fff;
}
.orderDetails-btn:hover {
  background-color: #b83386;
  color: #fff;
}

footer {
  background-color: #3c218a;
  color: #fff;
}

.footer {
  padding: 50px 0 70px;
}
@media (max-width: 991px) {
  .footer {
    padding: 30px 0 37px;
  }
}

.footer-info {
  margin: 0;
}
@media (max-width: 991px) {
  .footer-info {
    margin-bottom: 40px;
  }
}

.footer-logo {
  width: 119px;
  display: block;
  margin-bottom: 33px;
}
.footer-logo img {
  max-width: 100%;
  filter: brightness(0) invert(1);
}
@media (max-width: 991px) {
  .footer-logo {
    margin: 0 auto 30px;
  }
}

.socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
}
@media (max-width: 991px) {
  .socials {
    justify-content: center;
  }
}

.social {
  border-radius: 50%;
  background-color: #4d2c9d;
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  position: relative;
  transform: perspective(1px);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.social:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #3c218a 0, #b83386 100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.social [class$="-twitter"] {
  font-size: 18px;
}
.social:hover {
  color: #fff;
  /* background-color: #b83386; */
}
.social:hover:after {
  visibility: visible;
  opacity: 1;
}
.footer-nav {
  margin: 30px 0 0;
}
@media (max-width: 991px) {
  .footer-nav {
    margin: 0 0 40px;
  }
}

.footer-contacts {
  margin: 30px 0 0;
}
@media (max-width: 991px) {
  .footer-contacts {
    margin: 0 0 40px;
  }
}

.footer-newsletter {
  margin: 30px 0 0;
}
@media (max-width: 991px) {
  .footer-newsletter {
    margin: 0 0;
  }
  .footer-newsletter .footer-title {
    text-align: center;
  }
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 32px;
}
@media (max-width: 991px) {
  .footer-title {
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .footer-title {
    text-align: center;
  }
}

.footer-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  height: 150px;
}
@media (max-width: 767px) {
  .footer-list {
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.footer-link {
  font-size: 18px;
  font-weight: 300;
  color: #bfb1e1;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
}
.footer-link:hover {
  color: #fff;
}
html[dir="rtl"] .footer-link:hover {
  transform: translateX(-5px);
}
html[dir="ltr"] .footer-link:hover {
  transform: translateX(5px);
}

.contacts-list {
  margin: 0;
}

.contact-item ~ .contact-item {
  margin: 12px 0 0;
}
@media (max-width: 991px) {
  .contact-item ~ .contact-item {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .contact-item {
    text-align: center;
  }
}

.contact-link {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.contact-link i {
  font-size: 18px;
  width: 27px;
}
.contact-link span {
  direction: ltr;
}
.contact-link:hover {
  color: #bfb1e1;
}
html[dir="rtl"] .contact-link:hover {
  transform: translateX(-5px);
}
html[dir="ltr"] .contact-link:hover {
  transform: translateX(5px);
}

.newsletter-title {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .newsletter-title {
    text-align: center;
  }
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #fff;
  height: 45px;
  border-radius: 22.5px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 400;
  color: #3c218a;
  transition: all 0.3s ease-in-out;
  direction: inherit;
}
.newsletter-input::-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #808080;
}
.newsletter-input::placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #808080;
}
.newsletter-input:focus {
  border-color: #b83386;
}

.newsletter-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #3c218a;
  transition: all 0.3s ease-in-out;
}
html[dir="ltr"] .newsletter-btn i {
  transform: scaleX(-1);
}
.newsletter-btn:hover {
  color: #b83386;
}

.last-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 30px;
}
@media (max-width: 767px) {
  .last-footer {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 0 0 20px;
  }
}

.copyrights {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyrights a {
  display: block;
  margin-inline-start: 9px;
  width: 74px;
}
.copyrights a img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .copyrights ~ .copyrights {
    margin-top: 10px;
  }
}

.arrow-top {
  position: fixed;
  bottom: 10px;
  inset-inline-start: 10px;
  z-index: 15;
  display: none;
}
.arrow-top i {
  width: 36px;
  height: 36px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s ease-in-out;
}
.arrow-top i:hover {
  color: #fff;
  background-color: #b83386;
}

.section-tools .swiper-button-disabled{
  display: none;
}