:root {
  --sal-duration: 1s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input {
  -moz-appearance: textfield;
}
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;
}

* {
  outline: none !important;
}

a {
  text-decoration: none;
}

button {
  border: none;
  background-color: transparent;
}

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

img {
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

@font-face {
  font-family: "ping";
  src: url("../fonts/ping/PingARLT-Thin.woff2") format("woff2"),
    url("../fonts/ping/PingARLT-Thin.woff") format("woff"),
    url("../fonts/ping/PingARLT-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ping";
  src: url("../fonts/ping/PingARLT-ExtraLight.woff2") format("woff2"),
    url("../fonts/ping/PingARLT-ExtraLight.woff") format("woff"),
    url("../fonts/ping/PingARLT-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ping";
  src: url("../fonts/ping/PingARLT-Light.woff2") format("woff2"),
    url("../fonts/ping/PingARLT-Light.woff") format("woff"),
    url("../fonts/ping/PingARLT-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ping";
  src: url("../fonts/ping/PingARLT-Regular.woff2") format("woff2"),
    url("../fonts/ping/PingARLT-Regular.woff") format("woff"),
    url("../fonts/ping/PingARLT-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ping";
  src: url("../fonts/ping/PingARLT-Medium.woff2") format("woff2"),
    url("../fonts/ping/PingARLT-Medium.woff") format("woff"),
    url("../fonts/ping/PingARLT-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ping";
  src: url("../fonts/ping/PingARLT-Bold.woff2") format("woff2"),
    url("../fonts/ping/PingARLT-Bold.woff") format("woff"),
    url("../fonts/ping/PingARLT-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ping";
  src: url("../fonts/ping/PingARLT-Black.woff2") format("woff2"),
    url("../fonts/ping/PingARLT-Black.woff") format("woff"),
    url("../fonts/ping/PingARLT-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "ping";
  font-weight: normal;
}

body {
  position: relative;
  font-family: ping;
  font-weight: normal;
}
body::-webkit-scrollbar {
  background-color: #fff;
  width: 7px;
  height: 0px;
}
body::-webkit-scrollbar-thumb {
  background-color: #088f44;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #088f44 #fff;
}

.overflow {
  overflow: hidden !important;
}

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

.inner-page {
  padding-top: 197px;
}
@media (max-width: 1199px) {
  .inner-page {
    padding-top: 166.7px;
  }
}
@media (max-width: 993px) {
  .inner-page {
    padding-top: 130.42px;
  }
}
@media (max-width: 767px) {
  .inner-page {
    padding-top: 130.42px;
  }
}

.page-main {
  background: linear-gradient(
    77.41deg,
    rgba(32, 158, 89, 0.098) 7.67%,
    rgba(29, 105, 64, 0.09) 55.76%,
    rgba(206, 44, 51, 0.09) 100%
  );
}

.more-items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 43px;
}
.more-items .more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #088f44;
  fill: #088f44;
  transition: all 0.3s ease-in-out;
}
.more-items .more-link .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 11px;
}
.more-items .more-link:hover {
  color: #b9272d;
  fill: #b9272d;
}
.more-items .more-link.loading .icon {
  background-image: conic-gradient(
    from 180deg at 50% 50%,
    #088f44 0deg,
    rgba(196, 196, 196, 0) 360deg
  );
  border-radius: 50%;
  position: relative;
  animation: spin 1s linear infinite;
}
.more-items .more-link.loading .icon:after {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  display: block;
}
.more-items .more-link.loading .icon svg {
  display: none;
}
.more-items .more-link.loading:hover {
  color: #088f44;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.main-btn {
  min-width: 161px;
  height: 48px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #088f44;
  background-color: #088f44;
  color: #fff;
  fill: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.main-btn:hover {
  color: #088f44;
  fill: #088f44;
  background-color: #fff;
}
.main-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.section-head {
  text-align: center;
  width: 100%;
  max-width: 930px;
  margin: 0 auto 40px;
}
@media (max-width: 993px) {
  .section-head {
    margin-bottom: 30px;
  }
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 36px;
  color: #1d1f1f;
  font-weight: 700;
  line-height: 1.2222223;
  margin: 0;
}
.section-title img {
  margin-bottom: 10px;
}
@media (max-width: 993px) {
  .section-title {
    font-size: 32px;
  }
  .section-title img {
    margin-bottom: 5px;
  }
}

.section-description {
  font-size: 16px;
  color: #444444;
  font-weight: 400;
  line-height: 1.5;
  margin: 30px 0 0;
}
@media (max-width: 993px) {
  .section-description {
    font-size: 14px;
    margin-top: 15px;
  }
}

.section-head-tools {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 993px) {
  .section-head-tools {
    margin-bottom: 30px;
    justify-content: center;
  }
}
.section-head-tools .section-head {
  margin: 0;
  max-width: 770px;
  text-align: start;
}
@media (max-width: 993px) {
  .section-head-tools .section-head {
    max-width: 930px;
    text-align: center;
  }
}
.section-head-tools .section-title {
  flex-direction: row;
  justify-content: flex-start;
}
.section-head-tools .section-title img {
  margin: 0;
  margin-inline-end: 10px;
}
@media (max-width: 993px) {
  .section-head-tools .section-title {
    flex-direction: column;
  }
  .section-head-tools .section-title img {
    margin: 0;
    margin-bottom: 5px;
  }
}

.more-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-content .main-btn {
  min-width: 130px;
  font-size: 14px;
}

.section-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-tools .swiper-btn {
  width: 56px;
  height: 56px;
  border: 1.5px solid #d6d6d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  fill: #d6d6d6;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.section-tools .swiper-btn:hover {
  fill: #088f44;
  border-color: #088f44;
}
@media (max-width: 767px) {
  .section-tools .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
html[dir="ltr"] .section-tools .swiper-btn svg {
  transform: scaleX(-1);
}
.section-tools.mobile-tools {
  display: none;
  margin-top: 30px;
}
@media (max-width: 993px) {
  .section-tools {
    display: none;
  }
  .section-tools.mobile-tools {
    display: flex;
  }
}

.fa-facebook:before {
  content: "\f39e";
}

.fa-snapchat:before {
  content: "\f2ac";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-twitter:before {
  content: "\e61b";
}

@keyframes scr-pos {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hero-section {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  background-color: #fff;
  --aspect-ratio: 1920/1080;
}
.hero-section .pattern {
  position: absolute;
  top: 248px;
  inset-inline-end: 0;
  z-index: 8;
}
html[dir="ltr"] .hero-section .pattern {
  transform: scaleX(-1);
}
@media (max-width: 993px) {
  .hero-section .pattern {
    top: 50%;
    transform: translateY(-50%);
  }
  html[dir="ltr"] .hero-section .pattern {
    transform: scaleX(-1) translateY(-50%);
  }
}

.main-slider {
  height: 100vh;
  position: relative;
}
@media (max-width: 993px) {
  .main-slider {
    aspect-ratio: unset;
    height: 600px;
  }
}
.main-slider .swiper {
  width: 100%;
  height: 100%;
}
.main-slider .swiper-tools {
  position: absolute;
  top: 0;
  bottom: 0;
  padding-top: 197px;
  inset-inline-start: 10px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1500px) {
  .main-slider .swiper-tools {
    inset-inline-start: 53px;
  }
}
@media (max-width: 1199px) {
  .main-slider .swiper-tools {
    inset-inline: 0;
    bottom: 40px;
    top: auto;
    padding: 0;
    flex-direction: row;
  }
}
@media (max-width: 993px) {
  .main-slider .swiper-tools {
    bottom: 20px;
  }
}
.main-slider .swiper-tools .swiper-btn {
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  fill: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.main-slider .swiper-tools .swiper-btn:hover {
  fill: #088f44;
  background-color: #fff;
}
@media (max-width: 1320px) {
  .main-slider .swiper-tools .swiper-btn {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1199px) {
  .main-slider .swiper-tools .swiper-btn {
    width: 56px;
    height: 56px;
  }
  .main-slider .swiper-tools .swiper-btn svg {
    transform: rotate(90deg);
  }
  html[dir="ltr"] .main-slider .swiper-tools .swiper-btn svg {
    transform: rotate(-90deg);
  }
}
.main-slider .swiper-tools .swiper-pagination {
  position: relative;
  inset: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: auto;
  gap: 15px;
  transform: none;
}
@media (max-width: 1199px) {
  .main-slider .swiper-tools .swiper-pagination {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .main-slider .swiper-tools .swiper-pagination {
    gap: 8px;
  }
}
.main-slider .swiper-tools .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: #fff;
  opacity: 0.3;
  width: 8px;
  height: 24px;
  border-radius: 12px;
  transition: opacity 0.3s ease-in-out;
}
.main-slider
  .swiper-tools
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 1199px) {
  .main-slider .swiper-tools .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 24px;
  }
}

.main-slide {
  height: 100vh;
  position: relative;
}
@media (max-width: 993px) {
  .main-slide {
    aspect-ratio: unset;
    height: 600px;
  }
}
.main-slide .slide-img {
  width: 100%;
  height: 100%;
}
.main-slide .slide-img img,
.main-slide .slide-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.main-slide .main-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 197px 0 0;
  background: linear-gradient(
    74.5deg,
    rgba(32, 158, 89, 0.3) 0.45%,
    rgba(29, 105, 64, 0.3) 22.1%,
    rgba(44, 56, 69, 0.6) 52.8%,
    rgba(92, 20, 23, 0.6) 70.55%,
    rgba(206, 44, 51, 0.6) 100%
  );
}
@media (max-width: 1199px) {
  .main-slide .main-text {
    padding-top: 166px;
  }
}
@media (max-width: 993px) {
  .main-slide .main-text {
    padding-top: 130px;
    text-align: center;
  }
}
.main-slide .slide-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4583334;
  margin: 0 0 15px;
}
@media (max-width: 993px) {
  .main-slide .slide-subtitle {
    font-size: 18px;
    margin: 0 0 10px;
  }
}
.main-slide .slide-title {
  font-size: 48px;
  font-weight: 800;
  color: #6db863;
  line-height: 1.4583334;
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  .main-slide .slide-title {
    margin: 0 0 20px;
    font-size: 42px;
  }
}
@media (max-width: 993px) {
  .main-slide .slide-title {
    font-size: 24px;
    margin: 0 0 10px;
  }
}
.main-slide .slide-desc {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  line-height: 1.944444445;
  margin: 0 0 30px;
}
@media (max-width: 1199px) {
  .main-slide .slide-desc {
    margin: 0 0 20px;
  }
}
@media (max-width: 993px) {
  .main-slide .slide-desc {
    font-size: 14px;
    margin: 0 0 20px;
  }
}
.main-slide .slide-btn {
  width: 161px;
}
@media (max-width: 993px) {
  .main-slide .slide-btn {
    margin: auto;
  }
}

.thumbs-content {
  position: absolute;
  top: 197px;
  bottom: 0;
  inset-inline-end: 77px;
  display: flex;
  align-items: center;
  z-index: 9;
}
@media (max-width: 1199px) {
  .thumbs-content {
    display: none;
  }
}
.thumbs-content .thumbs-slider {
  height: 305px;
  width: 120px;
}
@media (min-width: 1440px) {
  .thumbs-content .thumbs-slider {
    height: 470px;
    width: 170px;
  }
}
.thumbs-content .swiper {
  width: 100%;
  height: 100%;
}
.thumbs-content .thumb-slide {
  border: 1px solid #088f44;
  aspect-ratio: 170/130;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.thumbs-content .thumb-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.thumbs-content .thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.thumbs-content .thumb-img .video-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0) 27.08%,
    rgba(0, 0, 0, 0.8) 52.08%,
    rgba(0, 0, 0, 0) 71.87%,
    rgba(0, 0, 0, 0.63) 100%
  );
}
.thumbs-content .thumb-img .video-icon svg {
  width: 35px;
  height: 35px;
}
.thumbs-content .swiper-slide-thumb-active .thumb-slide {
  border-width: 4px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 30px;
}
.services-section .services-list {
  margin-bottom: 30px;
}
@media (max-width: 993px) {
  .services-list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 447px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.service-item {
  max-width: 100%;
  position: relative;
  z-index: 9;
}
.service-item:nth-of-type(2n) .service-link {
  background-color: #ebecee;
}
.service-item:nth-of-type(3n) .service-link {
  background-color: #f8e9ea;
}
@media (max-width: 993px) {
  .service-item {
    height: auto;
  }
}

.service-link {
  display: block;
  background-color: #e6f4ec;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding: 30px 36px 27px;
  border: 1px solid transparent;
  border-bottom: 5px solid transparent;
  transition: all 0.3s linear;
}
@media (max-width: 993px) {
  .service-link {
    padding: 25px 20px;
  }
}
.service-link .service-icon {
  width: 150px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.service-link .service-icon img {
  max-height: 100%;
}
.service-link .service-title {
  font-size: 24px;
  color: #1d1f1f;
  font-weight: 700;
  text-align: center;
  line-height: 1.333334;
  margin: 0 0 20px;
  transition: all 0.3s ease-in-out;
}
.service-link .service-title:hover {
  color: #b9272d;
}
.service-link .service-summary {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
  height: auto;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 993px) {
  .service-link .service-summary {
    display: none;
  }
}
.service-link .service-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: 100%;
  color: #088f44;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.service-link .service-more span {
  margin-inline-start: 15px;
  fill: #088f44;
  transition: all 0.3s ease-in-out;
}
html[dir="ltr"] .service-link .service-more span svg {
  transform: scaleX(-1);
}
.service-link .service-more:hover {
  color: #b9272d;
}
.service-link .service-more:hover span {
  fill: #b9272d;
  transform: translateX(-5px);
}
html[dir="ltr"] .service-link .service-more:hover span {
  transform: translateX(5px);
}
@media (max-width: 993px) {
  .service-link .service-more {
    height: 43px;
  }
}
.service-link:hover {
  border-color: #088f44;
}
.service-link:hover .service-summary {
  max-height: 150px;
}
.service-link:hover .service-more {
  height: 43px;
}

.team-slider {
  margin-bottom: 50px;
}
@media (max-width: 993px) {
  .team-slider {
    margin-bottom: 40px;
  }
}
@media (max-width: 993px) {
  .team-slider .swiper-slide {
    width: 100% !important;
    max-width: 370px !important;
  }
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 30px;
}
@media (max-width: 1199px) {
  .members-grid {
    gap: 25px 15px;
  }
}
@media (max-width: 993px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
  }
}
@media (max-width: 767px) {
  .members-grid {
    gap: 25px 15px;
  }
}
@media (max-width: 480px) {
  .members-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.team-member {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .team-member {
    width: 100%;
    max-width: 370px;
    margin: auto;
  }
}

.member-link {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 370/398;
  padding: 12px 12px 0;
}
.member-link::before,
.member-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.member-link::before {
  background: linear-gradient(
    180deg,
    rgba(32, 158, 89, 0) 0%,
    rgba(43, 138, 58, 0.05) 45.12%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
}
.member-link:after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 37.57%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}
.member-link .member-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
.member-link .member-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}
.member-link .member-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  text-align: center;
  z-index: 3;
  padding: 22px;
}
.member-link .member-name {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}
.member-link .member-position {
  font-size: 16px;
  font-weight: 400;
  color: #14df6e;
  line-height: 1.5;
  margin: 0;
}
.member-link:hover::after {
  visibility: hidden;
  opacity: 0;
}
.member-link:hover::before {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.member-link:hover .member-img {
  filter: grayscale(0);
}
.member-link:hover .member-img img {
  transform: scale(1.2);
}

.blog-slider {
  margin-bottom: 40px;
}
.blog-slider .section-tools {
  margin-top: 20px;
}
@media (max-width: 993px) {
  .blog-slider .swiper-slide {
    width: 100% !important;
    max-width: 370px !important;
  }
}

.blog-item {
  padding: 50px 30px 35px;
  background-color: #fff;
  border-radius: 20px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #f8f8f8;
  border-bottom: 5px solid transparent;
  box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.0588235294);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .blog-item {
    padding: 50px 15px 25px;
    width: 100%;
    max-width: 370px;
    margin: 0 auto 10px;
  }
}
.blog-item .blog-pattern {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .blog-item .blog-pattern {
    top: 33px;
  }
}
.blog-item .blog-info {
  position: absolute;
  top: 16px;
  inset-inline: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
  height: 24px;
  height: 0;
  padding: 0 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .blog-item .blog-info {
    height: 24px;
  }
}
.blog-item .blog-info span {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #1d1f1f;
  line-height: 1.5;
}
.blog-item .blog-info span img {
  margin-inline-end: 10px;
}
.blog-item .blog-img {
  position: relative;
  z-index: 2;
  aspect-ratio: 310/295;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-item .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.blog-item .blog-img:hover img {
  transform: scale(1.05);
}
.blog-item .blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #1d1f1f;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
  padding: 0 11px;
  margin-bottom: 12px;
  height: 64px;
  overflow: hidden;
}
.blog-item .blog-title a {
  color: #1d1f1f;
  transition: all 0.3s ease-in-out;
}
.blog-item .blog-title a:hover {
  color: #088f44;
}
.blog-item .blog-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  color: #088f44;
  transition: all 0.3s ease-in-out;
}
.blog-item .blog-more span {
  margin-inline-start: 15px;
  fill: #088f44;
  transition: all 0.3s ease-in-out;
}
html[dir="ltr"] .blog-item .blog-more span svg {
  transform: scaleX(-1);
}
.blog-item .blog-more:hover {
  color: #b9272d;
}
.blog-item .blog-more:hover span {
  fill: #b9272d;
  transform: translateX(-5px);
}
html[dir="ltr"] .blog-item .blog-more:hover span {
  transform: translateX(5px);
}
.blog-item:hover {
  border-bottom-color: #088f44;
}
.blog-item:hover .blog-pattern {
  top: 33px;
}
.blog-item:hover .blog-info {
  height: 24px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .courses-grid {
    gap: 15px;
  }
}
@media (max-width: 993px) {
  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 447px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

.course-item {
  background-color: #fff;
  border-radius: 15px;
  max-width: 100%;
  position: relative;
  border: 1px solid #f8f8f8;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.0588235294);
}
@media (max-width: 993px) {
  .course-item {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
  }
}
.course-item .course-pattern {
  position: absolute;
  top: 10.5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.4;
  max-width: 100%;
  width: 239px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .course-item .course-pattern {
    top: 5.5px;
  }
}
.course-item .course-info {
  padding: 30px 30px 15px;
}
@media (max-width: 993px) {
  .course-item .course-info {
    padding: 20px 15px 15px;
  }
}
.course-item .course-img {
  position: relative;
  z-index: 2;
  aspect-ratio: 310/220;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px 34px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 993px) {
  .course-item .course-img {
    margin-bottom: 15px;
    padding: 25px 15px;
  }
}
.course-item .course-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.course-item .course-img:hover img {
  transform: scale(0.95);
}
.course-item .course-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 15px;
}
.course-item .course-title a {
  color: #333;
  transition: all 0.3s ease-in-out;
}
.course-item .course-title a:hover {
  color: #088f44;
}
@media (max-width: 993px) {
  .course-item .course-title {
    margin: 0 0 10px;
    font-size: 18px;
  }
}
.course-item .course-price {
  text-align: center;
  color: #088f44;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 993px) {
  .course-item .course-price {
    font-size: 18px;
  }
}
.course-item .course-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 993px) {
  .course-item .course-feature {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 0 15px;
  }
}
.course-item .course-feature .title {
  font-weight: 400;
  color: #333;
}
.course-item .course-feature .value {
  font-weight: 500;
  --status-color: #088f44;
  color: var(--status-color);
}
.course-item .course-feature .value.finished {
  --status-color: #a5a5a5;
}
.course-item .course-feature .value.unavailable {
  --status-color: #b9272d;
}
.course-item .course-feature .value.inprogress {
  --status-color: #ffaf44;
}
.course-item .course-feature .value.waiting {
  --status-color: #a5a5a5;
}
.course-item .course-feature .value.canceled {
  --status-color: #f55157;
}
.course-item .course-feature.status .value {
  display: flex;
  align-items: center;
}
.course-item .course-feature.status .value::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--status-color);
  margin-inline-end: 6px;
}
.course-item .course-feature:last-of-type {
  border-top: 1px solid #eeeeee;
  padding-top: 15px;
}
@media (max-width: 993px) {
  .course-item .course-feature:last-of-type {
    padding-top: 10px;
  }
}
.course-item .course-feature:last-of-type .title {
  font-weight: 500;
}
.course-item .course-feature:last-of-type .value {
  font-weight: 400;
}
.course-item .course-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-top: 1px solid #eeeeee;
  padding: 15px;
}
@media (max-width: 993px) {
  .course-item .course-btns {
    padding: 10px;
    gap: 10px;
  }
}
.course-item .course-btn {
  width: 110px;
  height: 40px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.course-item .course-btn.cancel-btn {
  color: #b9272d;
  border: 2px solid #b9272d;
  background-color: #fff;
  position: relative;
}
.course-item .course-btn.cancel-btn:hover {
  color: #fff;
  background-color: #b9272d;
}
.course-item .course-btn.cancel-btn:hover .hint {
  opacity: 1;
  visibility: visible;
}
.course-item .hint {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.83333334;
  border: 1px solid #eeeeee;
  padding: 10px;
  width: 209px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  color: #b9272d;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .course-item .hint {
    display: none;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  align-items: flex-start;
}
@media (max-width: 993px) {
  .form-grid {
    gap: 0 15px;
  }
}
@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .form-group {
    margin-bottom: 20px;
  }
}
.form-group .add-input {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #088f44;
  border: 1px dashed #088f44;
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}
.form-group .add-input:hover {
  background-color: #088f44;
  color: #fff;
}

.form-label {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.875;
  padding: 0;
  margin: 0 0 4px;
}
.form-label:has(.field-help) {
  display: flex;
  align-items: center;
}
.calculator-form .form-label {
  font-weight: 500;
}

.form-error {
  color: #ee4c45;
  font-size: 12px;
  font-weight: 500;
  order: 3;
}
.form-error ~ .form-control {
  border-color: #ee4c45;
}
.form-error ~ .form-control.file-content {
  border-color: #ee4c45;
}
.form-error ~ .select2-container .select2-selection--single {
  border-color: #ee4c45;
}
.form-error ~ :has(.form-control) .form-control {
  border-color: #ee4c45;
}

.form-control {
  border: 1px solid #eeeeee;
  background-color: #f8f8f8;
  padding: 0 16px;
  border-radius: 8px;
  width: 100%;
  height: 48px;
  line-height: 2.142857;
  font-size: 14px;
  font-weight: 500;
  color: #1d1f1f;
  transition: all 0.3s ease-in-out;
}
html[dir="rtl"] .form-control {
  direction: rtl;
}
.form-control:focus {
  background-color: #f8f8f8;
  border-color: #088f44;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #a5a5a5;
}
.form-control::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #a5a5a5;
}
html[dir="rtl"] .form-control::-moz-placeholder {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .form-control::placeholder {
  direction: rtl;
  text-align: right;
}
.form-control:is(textarea) {
  height: 111px;
  padding: 11px 16px;
  resize: none;
}
.form-col .form-control:is(textarea) {
  height: 155px;
}
.form-control:is(select):focus {
  border-color: #eeeeee;
}
.form-control.file-content {
  background-color: #fff;
  border: 1px dashed #088f44;
  height: 157px;
  padding: 0;
  overflow: hidden;
}
.form-control.file-content.error {
  border-color: #ee4c45;
}
.form-control.file-content label {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}
.form-control.file-content label input {
  display: none;
}
.form-control.file-content label .file-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 11px 16px;
  border-radius: 8px;
}
.form-control.file-content label .file-text span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85714;
}
.form-control.file-content label .file-text svg {
  margin-bottom: 16px;
  fill: #088f44;
}
.form-control.file-content label .file-text .delete {
  position: absolute;
  top: 11px;
  inset-inline-start: 8px;
  background-color: #ee4c45;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.form-control.file-content label .file-text .delete svg {
  fill: #fff;
  margin: 0;
}
.form-control.file-content label .file-text .delete:hover {
  background-color: #b9272d;
}
.form-control.file-content label .file-text.file-placeholder span {
  width: 100%;
  max-width: 266px;
  color: #666;
}
.form-control.file-content label .file-text.file-preview {
  z-index: 3;
  display: none;
}
.form-control.file-content label .file-text.file-preview span {
  color: #1d1f1f;
}
.form-control.file-content label .file-text.file-preview.active {
  display: flex;
}
.search-form .form-control {
  background-color: #fff;
  border-color: #d6d6d6;
  height: 56px;
  font-size: 16px;
}
.search-form .form-control::-moz-placeholder {
  font-size: 16px;
  color: #333333;
}
.search-form .form-control::placeholder {
  font-size: 16px;
  color: #333333;
}
.search-form .form-control:focus {
  background-color: #fff;
  border-color: #088f44;
}
@media (max-width: 1199px) {
  .search-form .form-control {
    font-size: 14px;
    height: 48px;
  }
  .search-form .form-control::-moz-placeholder {
    font-size: 14px;
  }
  .search-form .form-control::placeholder {
    font-size: 14px;
  }
}

.submit-btn {
  width: 161px;
  font-size: 16px;
  margin: 15px auto 0;
  display: flex;
}

.field-help {
  position: relative;
  display: flex;
  align-items: center;
  margin-inline-start: 8px;
  z-index: 2;
}
@media (max-width: 767px) {
  .field-help {
    display: none;
  }
}
.field-help .help-icon {
  fill: #088f44;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.field-help .help-tooltip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: calc(100% + 9px);
  padding: 10px;
  border: 1px solid #eeeeee;
  background-color: #fff;
  border-radius: 5px;
  color: #088f44;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8333334;
  text-align: center;
  width: 240px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.field-help .help-tooltip::after,
.field-help .help-tooltip::before {
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.field-help .help-tooltip::before {
  border-color: rgba(238, 238, 238, 0);
  border-left-color: #eee;
}
.field-help .help-tooltip::after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
}
html[dir="rtl"] .field-help .help-tooltip::after,
html[dir="rtl"] .field-help .help-tooltip::before {
  left: 100%;
}
html[dir="rtl"] .field-help .help-tooltip::before {
  border-width: 8px;
  margin-top: -8px;
}
html[dir="rtl"] .field-help .help-tooltip::after {
  border-width: 7px;
  margin-top: -7px;
}
html[dir="ltr"] .field-help .help-tooltip::after,
html[dir="ltr"] .field-help .help-tooltip::before {
  right: 100%;
}
html[dir="ltr"] .field-help .help-tooltip::after {
  border-width: 8px;
  margin-top: -8px;
}
html[dir="ltr"] .field-help .help-tooltip::before {
  border-width: 7px;
  margin-top: -7px;
}
.field-help:hover .help-icon {
  fill: #b9272d;
}
.field-help:hover .help-tooltip {
  visibility: visible;
  opacity: 1;
}

.radios-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 39px;
  align-items: center;
  border: 1px solid #eeeeee;
  padding: 15px;
  border-radius: 8px;
}
@media (max-width: 993px) {
  .radios-container {
    gap: 10px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .radios-container {
    grid-template-columns: 1fr;
  }
}

.radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.radio label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.radio label .circle-mark {
  border: 2px solid #79747e;
  background-color: #fff;
  width: 18px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-inline-end: 10px;
  transition: all 0.3s ease-in-out;
}
.radio label .circle-mark svg {
  fill: #fff;
  transform-origin: center;
  transform: rotate(360deg) scale(0);
  transition: all 0.3s ease-in-out;
}
.radio label .text {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  line-height: 1.875;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .radio label .text {
    font-size: 14px;
  }
}
.radio label input {
  display: none;
}
.radio label input:checked ~ .text {
  color: #333;
}
.radio label input:checked ~ .circle-mark {
  border-color: #088f44;
  background-color: #088f44;
}
.radio label input:checked ~ .circle-mark svg {
  transform: rotate(0) scale(1);
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.checkbox label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
@media (max-width: 767px) {
  .terms .checkbox label {
    align-items: flex-start;
  }
}
.checkbox label .check-mark {
  border: 2px solid #79747e;
  background-color: #fff;
  width: 18px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
  margin-inline-end: 10px;
  transition: all 0.3s ease-in-out;
}
.checkbox label .check-mark svg {
  fill: #fff;
  transform-origin: center;
  transform: rotate(360deg) scale(0);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .terms .checkbox label .check-mark {
    margin-top: 6px;
  }
}
.checkbox label .text {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1.875;
  transition: all 0.3s ease-in-out;
}
.checkbox label .text a {
  color: #088f44;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.checkbox label .text a:hover {
  text-decoration: none;
}
@media (max-width: 993px) {
  .checkbox label .text {
    font-size: 14px;
  }
}
.terms .checkbox label .text {
  font-size: 14px;
}
.checkbox label input {
  display: none;
}
.checkbox label input:checked ~ .check-mark {
  border-color: #088f44;
  background-color: #088f44;
}
.checkbox label input:checked ~ .check-mark svg {
  transform: rotate(0) scale(1);
}

.profile-img {
  position: relative;
  margin: 0 auto 20px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.profile-img input {
  display: none;
}
.profile-img .plus {
  position: absolute;
  top: 10px;
  inset-inline-start: -11px;
  border: 1px solid #ffffff;
  background-color: #cee9da;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #088f44;
  z-index: 3;
}
.profile-img .img-content {
  position: relative;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
}
.profile-img .img-content span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #088f44;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 15px;
}
.profile-img .img-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.telephone-content {
  position: relative;
}
.telephone-content .country-code {
  position: absolute;
  top: 0;
  left: 7.5px;
  height: 48px;
  display: flex;
  align-items: center;
  direction: ltr;
  font-size: 14px;
  color: #444444;
  font-weight: 500;
}
.telephone-content .country-code img {
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 7.5px;
}
.telephone-content .country-code ~ .form-control {
  padding-left: 90px;
}

.password-content {
  position: relative;
}
.password-content .password-eye {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  inset-inline-end: 12px;
  stroke: #a5a5a5;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.password-content .password-eye::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 2px;
  border-radius: 2px;
  width: calc(100% + 10px);
  background-color: #a5a5a5;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.password-content .password-eye.active {
  stroke: #a5a5a5;
}
.password-content .password-eye.active::after {
  visibility: visible;
  opacity: 1;
}

select {
  background-image: url(../images/icons/selectArr.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html[dir="rtl"] select {
  background-position: left 18px top 50%;
}
html[dir="ltr"] select {
  background-position: right 18px top 50%;
}
select.time-pick {
  background-repeat: no-repeat;
  background-size: 20px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/form/time.svg);
}
html[dir="rtl"] select.time-pick {
  background-position: left 18px top 50%;
}
html[dir="ltr"] select.time-pick {
  background-position: right 18px top 50%;
}

.select2-container .select2-selection--single {
  padding: 0 16px;
  border: 1px solid #eeeeee;
  background-color: #f8f8f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.course-form-block .select2-container .select2-selection--single {
  background-color: #fff;
}
.search-form .select2-container .select2-selection--single {
  background-color: #fff;
  height: 56px;
}
@media (max-width: 1199px) {
  .search-form .select2-container .select2-selection--single {
    height: 48px;
  }
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: flex;
  align-items: center;
  color: #666;
  font-weight: 400;
  font-size: 14px;
}
.search-form
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  color: #333;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .search-form
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 14px;
  }
}
html[dir="rtl"]
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0;
}
html[dir="ltr"]
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  position: relative;
  top: auto;
  bottom: auto;
  width: auto;
  height: auto;
}
.select2-container .select2-selection--single .select2-selection__arrow::after {
  content: url(../images/icons/selectArr.svg);
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}
html[dir="rtl"]
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  right: auto;
  left: auto;
}
html[dir="ltr"]
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  right: auto;
  left: auto;
}
.select2-container .select2-dropdown {
  background-color: #f8f8f8;
  border: 2px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  z-index: 9;
}
:has(.course-form-block) .select2-container .select2-dropdown,
:has(.search-form) .select2-container .select2-dropdown {
  background-color: #fff;
}
.select2-container .select2-dropdown.select2-dropdown--below {
  border-top: none;
  margin-top: -1px;
  border-radius: 0 0 8px 8px;
}
.select2-container .select2-dropdown.select2-dropdown--above {
  border-bottom: none;
  margin-top: 1px;
  border-radius: 8px 8px 0 0;
}
.select2-container .select2-results {
  padding: 10px 6px;
}
.select2-container .select2-results > .select2-results__options {
  scrollbar-width: thin;
  scrollbar-color: #a5a5a5 #eee;
}
.select2-container
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  background-color: #eee;
  width: 6px;
  height: 0px;
  border-radius: 3px;
}
.select2-container
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #a5a5a5;
}
.select2-container .select2-results__option {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  line-height: 1.85714;
  transition: all 0.3s ease-in-out;
  padding: 10px;
}
.select2-container .select2-results__option:hover {
  background-color: transparent;
  color: #088f44;
}
.select2-container
  .select2-results__option.select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #088f44;
}

.time-pick
  ~ .select2-container
  .select2-selection--single
  .select2-selection__arrow::after {
  padding-top: 7px;
  display: flex;
  content: url(../images/form/time.svg);
}

input[type="date"],
input[data-type="date"] {
  background-repeat: no-repeat;
  background-size: 20px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/form/date.svg);
}
html[dir="rtl"] input[type="date"],
html[dir="rtl"] input[data-type="date"] {
  background-position: left 18px top 50%;
}
html[dir="ltr"] input[type="date"],
html[dir="ltr"] input[data-type="date"] {
  background-position: right 18px top 50%;
}

.validate {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  inset-inline-end: 97px;
}
.validate a {
  font-size: 14px;
  font-weight: 400;
  color: #088f44;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.validate a:hover {
  color: #b9272d;
}
.validate a.loading {
  display: flex;
  align-items: center;
}
.validate a.loading .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
  background-image: conic-gradient(
    from 180deg at 50% 50%,
    #088f44 0deg,
    rgba(196, 196, 196, 0) 360deg
  );
  border-radius: 50%;
  position: relative;
  animation: spin 1s linear infinite;
}
.validate a.loading .icon:after {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  display: block;
}
.validate a.loading:hover {
  color: #088f44;
}
.validate p {
  display: flex;
  align-items: center;
  color: #088f44;
  fill: #088f44;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.validate p span {
  margin-inline-start: 8px;
}
@media (max-width: 767px) {
  .validate p span {
    display: none;
  }
}

.additional-input {
  margin-top: 10px;
  position: relative;
}
.additional-input .delete-additional-input {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #ee4c45;
  position: absolute;
  top: 0;
  inset-inline-end: 12px;
  transition: all 0.3s ease-in-out;
}
.additional-input .delete-additional-input:hover {
  fill: #c9362d;
}

.form-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 993px) {
  .form-btns {
    gap: 10px;
  }
}
.form-btns .main-btn {
  margin: 0;
  min-width: 131px;
}
.form-btns .reset-btn {
  border-color: #b9272d;
  color: #b9272d;
  background-color: #fff;
}
.form-btns .reset-btn:hover {
  background-color: #b9272d;
  color: #fff;
}

html[dir="rtl"] .flatpickr-current-month {
  font-size: 130%;
}

.flatpickr-day:hover {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}
.flatpickr-day.flatpickr-day.today {
  border-color: #088f44;
}
.flatpickr-day.flatpickr-day.today:hover,
.flatpickr-day.flatpickr-day.today:focus {
  border-color: #088f44;
  background-color: #088f44;
}
.flatpickr-day.selected {
  border-color: #088f44;
  background-color: #088f44;
}
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  border-color: #088f44;
  background-color: #088f44;
}

.success-modal .modal-dialog {
  --bs-modal-width: 570px;
}
.success-modal .modal-content {
  --bs-modal-border-radius: 25px;
  --bs-modal-border-width: 1px;
  --bs-modal-border-color: #d6d6d6;
  box-shadow: none;
}
.success-modal .modal-body {
  --bs-modal-padding: 78px 15px;
  text-align: center;
}
@media (max-width: 993px) {
  .success-modal .modal-body {
    --bs-modal-padding: 40px 10px;
  }
}
.success-modal .success-icon {
  margin-bottom: 31px;
}
@media (max-width: 993px) {
  .success-modal .success-icon {
    margin-bottom: 15px;
  }
}
.success-modal .success-title {
  font-size: 24px;
  color: #1d1f1f;
  font-weight: 500;
  line-height: 1.042;
  margin: 0 0 50px;
}
@media (max-width: 993px) {
  .success-modal .success-title {
    margin-bottom: 25px;
  }
}

@media (min-width: 1200px) {
  .gallery-modal .modal-dialog.modal-xl {
    --bs-modal-width: 1230px;
  }
}
.gallery-modal .modal-content {
  --bs-modal-bg: #f8f8f8;
  --bs-modal-border-radius: 15px;
  padding: 30px;
}
@media (max-width: 993px) {
  .gallery-modal .modal-content {
    padding: 50px 15px 20px;
  }
}
.gallery-modal .gallery-modal-header {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .gallery-modal .gallery-modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
}
.gallery-modal .modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.7777778;
  margin: 0;
}
.gallery-modal .modal-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.gallery-modal .modal-numbers span {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}
.gallery-modal .modal-numbers span svg {
  fill: #088f44;
  margin-inline-start: 6px;
}
.gallery-modal .modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  margin-inline-start: auto;
  fill: #333;
  transition: all 0.3s ease-in-out;
}
.gallery-modal .modal-close:hover {
  fill: #088f44;
}
@media (max-width: 767px) {
  .gallery-modal .modal-close {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    opacity: 0.7;
  }
}
.gallery-modal .gallery-modal-body {
  width: 100%;
  overflow: hidden;
}
.gallery-modal .gallery-main-img {
  aspect-ratio: 1170/702;
  border-radius: 15px;
  display: flex;
  overflow: hidden;
  position: relative;
}
.gallery-modal .gallery-main-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-modal .gallery-main-img > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-modal .gallery-main-img .video-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  cursor: pointer;
}
.gallery-modal .gallery-main-img .video-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-modal .gallery-main-img .video-icon svg {
  width: 91px;
  height: 91px;
  position: relative;
  z-index: 3;
}
.gallery-modal .gallery-main-img .video-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0) 27.08%,
    rgba(0, 0, 0, 0.8) 52.08%,
    rgba(0, 0, 0, 0) 71.87%,
    rgba(0, 0, 0, 0.63) 100%
  );
  z-index: 2;
}
.gallery-modal .modal-thumbs-slider {
  position: relative;
  padding: 0 109px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .gallery-modal .modal-thumbs-slider {
    padding: 0 30px;
    margin-top: 20px;
  }
}
@media (max-width: 993px) {
  .gallery-modal .modal-thumbs-slider {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .gallery-modal .modal-thumbs-slider {
    margin-top: 10px;
  }
}
.gallery-modal .modal-thumbs-slider .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1.5px solid #088f44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  fill: #088f44;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .gallery-modal .modal-thumbs-slider .swiper-btn {
    display: none;
  }
}
.gallery-modal .modal-thumbs-slider .swiper-btn:hover {
  fill: #fff;
  background-color: #088f44;
}
html[dir="ltr"] .gallery-modal .modal-thumbs-slider .swiper-btn svg {
  transform: scaleX(-1);
}
.gallery-modal .modal-thumbs-slider .swiper-btn.swiper-btn-prev {
  inset-inline-start: 20px;
}
@media (max-width: 1199px) {
  .gallery-modal .modal-thumbs-slider .swiper-btn.swiper-btn-prev {
    inset-inline-start: 0;
  }
}
.gallery-modal .modal-thumbs-slider .swiper-btn.swiper-btn-next {
  inset-inline-end: 20px;
}
@media (max-width: 1199px) {
  .gallery-modal .modal-thumbs-slider .swiper-btn.swiper-btn-next {
    inset-inline-end: 0;
  }
}
.gallery-modal .modal-thumbs-slider .swiper-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.gallery-modal .modal-thumbs-slider .swiper-btn.swiper-button-disabled:hover {
  fill: #088f44;
  background-color: transparent;
}
.gallery-modal .gallery-thumb-img {
  aspect-ratio: 178/135;
  border-radius: 10px;
  width: 100%;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-modal .gallery-thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-modal .gallery-thumb-img:after {
  content: "";
  background-color: transparent;
  border: 5px solid #088f44;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .gallery-modal .gallery-thumb-img:after {
    border-width: 2px;
  }
}
.gallery-modal .gallery-thumb-img .video-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0) 27.08%,
    rgba(0, 0, 0, 0.8) 52.08%,
    rgba(0, 0, 0, 0) 71.87%,
    rgba(0, 0, 0, 0.63) 100%
  );
}
.gallery-modal .gallery-thumb-img .video-icon svg {
  width: 28px;
  height: 28px;
}
.gallery-modal .swiper-slide-thumb-active .gallery-thumb-img::after {
  visibility: visible;
  opacity: 1;
}

.otp-modal .modal-dialog {
  --bs-modal-width: 570px;
}
.otp-modal .modal-content {
  --bs-modal-border-radius: 15px;
  border: none;
  border-bottom: 5px solid #088f44;
  box-shadow: none;
}
.otp-modal .modal-body {
  --bs-modal-padding: 70px 30px 45px;
  text-align: center;
}
@media (max-width: 993px) {
  .otp-modal .modal-body {
    --bs-modal-padding: 30px 15px 25px;
  }
}
.otp-modal .modal-close {
  position: absolute;
  top: 27.5px;
  inset-inline-end: 27.5px;
  width: 27px;
  height: 27px;
  fill: #000;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.otp-modal .modal-close svg {
  height: 100%;
  width: 100%;
}
.otp-modal .modal-close:hover {
  fill: #088f44;
}
@media (max-width: 767px) {
  .otp-modal .modal-close {
    top: 10px;
    inset-inline-end: 10px;
    opacity: 0.7;
  }
}
.otp-modal .form-information {
  width: 100%;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
.otp-modal .current-value {
  direction: ltr;
  color: #1d1f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  display: block;
  margin-bottom: 5px;
}
.otp-modal .change-value {
  font-size: 14px;
  color: #088f44;
  padding: 0;
  line-height: 1.857142857;
  transition: all 0.3s ease-in-out;
}
.otp-modal .change-value:hover {
  color: #b9272d;
}
.otp-modal .otp-content {
  display: block;
  padding: 19px 0 0;
}

.cancel-modal .modal-dialog {
  --bs-modal-width: 570px;
}
.cancel-modal .modal-content {
  --bs-modal-border-radius: 25px;
  --bs-modal-border-width: 1px;
  --bs-modal-border-color: #d6d6d6;
  box-shadow: none;
}
.cancel-modal .modal-body {
  --bs-modal-padding: 50px 44px 59px;
  text-align: center;
}
@media (max-width: 993px) {
  .cancel-modal .modal-body {
    --bs-modal-padding: 40px 10px;
  }
}
.cancel-modal .cancel-icon {
  width: 134px;
  max-width: 100%;
  margin: 0 auto 25px;
}
@media (max-width: 993px) {
  .cancel-modal .cancel-icon {
    margin-bottom: 15px;
  }
}
.cancel-modal .cancel-icon img {
  width: 100%;
}
.cancel-modal .cancel-title {
  font-size: 20px;
  color: #1d1f1f;
  font-weight: 500;
  line-height: 2.4;
  margin: 0 0 40px;
}
.cancel-modal .cancel-title span {
  display: block;
  line-height: 1.64285714;
  font-size: 28px;
}
@media (max-width: 993px) {
  .cancel-modal .cancel-title {
    line-height: 2;
    font-size: 18px;
    margin-bottom: 25px;
  }
  .cancel-modal .cancel-title span {
    line-height: 1.5;
    font-size: 24px;
  }
}
.cancel-modal .modal-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cancel-modal .modal-btns {
    gap: 10px;
  }
}
.cancel-modal .modal-btns .cancel-btn {
  min-width: 97px;
  padding: 0 30px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #b9272d;
  background-color: #fff;
  color: #b9272d;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cancel-modal .modal-btns .cancel-btn.back-btn {
  background-color: #b9272d;
  color: #fff;
}
.cancel-modal .modal-btns .cancel-btn:hover {
  border-color: #088f44;
  background-color: #088f44;
  color: #fff;
}
@media (max-width: 767px) {
  .cancel-modal .modal-btns .cancel-btn {
    font-size: 14px;
    padding: 0 25px;
  }
}

.modal-backdrop {
  --bs-backdrop-bg: #1d1f1f;
  --bs-backdrop-opacity: 0.9;
}

.pre-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pre-loader img {
  width: 335px;
}
@media (max-width: 767px) {
  .pre-loader img {
    width: 200px;
  }
}
.pre-loader .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pre-loader .progress-bar {
  background-color: #088f44;
  border: none;
  overflow: hidden;
  width: 200px;
  height: 2px;
  box-shadow: none;
  margin: 20px 0 0 0;
}
@media (max-width: 767px) {
  .pre-loader .progress-bar {
    width: 100px;
  }
}
.pre-loader .progress-bar span {
  display: block;
}
.pre-loader .bar {
  background-color: #ccc;
  box-shadow: none;
}
.pre-loader .progress {
  animation: loader 8s ease infinite;
  background: #088f44;
  border: none;
  padding: 0px;
  width: 0;
  height: 2px;
}
.pre-loader .progress-bar {
  transform: rotateY(0deg);
}
.pre-loader .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@keyframes loader {
  0% {
    width: 0;
  }
  20% {
    width: 10%;
  }
  25% {
    width: 24%;
  }
  43% {
    width: 41%;
  }
  56% {
    width: 50%;
  }
  66% {
    width: 52%;
  }
  71% {
    width: 60%;
  }
  75% {
    width: 76%;
  }
  94% {
    width: 86%;
  }
  100% {
    width: 100%;
  }
}
.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);
}

.top-header {
  border-bottom: 1px solid #333333;
  background-color: rgba(29, 31, 31, 0.6);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-tools {
  display: flex;
  align-items: center;
  margin-inline-start: auto;
}
@media (max-width: 993px) {
  .header-tools {
    flex-direction: row-reverse;
  }
}

.top-header .header {
  padding: 45px 0 25px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .top-header .header {
    padding: 20px 0;
  }
}
@media (max-width: 993px) {
  .top-header .header {
    padding: 15px 0;
  }
}

.logo {
  display: block;
  width: 335px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .logo {
    width: 285px;
    margin-inline-end: 30px;
  }
}
@media (max-width: 993px) {
  .logo {
    width: 200px;
    margin: 0;
  }
}

.top-header-tools {
  padding-inline-end: 13px;
}
@media (max-width: 993px) {
  .top-header-tools {
    display: none;
  }
}

.header-contacts {
  display: flex;
  align-items: center;
}
@media (max-width: 993px) {
  .header-contacts {
    display: none;
  }
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-inline-end: 20px;
}
.header-contact .contact-icon {
  margin: 0;
}
.header-contact .contact-text {
  margin-inline: 15px;
}
.header-contact .contact-title {
  display: block;
  font-size: 12px;
  color: #d6d6d6;
  line-height: 1.8333334;
}
.header-contact .contact-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  direction: ltr;
  display: inline-flex;
  line-height: 1.85714;
  transition: all 0.3s ease-in-out;
}
.header-contact .contact-value:hover {
  color: #6db863;
}

.header-btn {
  width: 135px;
  margin-inline-start: 73px;
}

.vision-2030 {
  position: absolute;
  top: 40px;
  width: 92px;
  inset-inline-end: 0;
  transition: all 0.3s ease-in-out;
}
html[dir="rtl"] .vision-2030 {
  transform: translateX(-100%);
}
html[dir="ltr"] .vision-2030 {
  transform: translateX(100%);
}
@media (min-width: 1430px) {
  .vision-2030 {
    inset-inline-end: -36px;
  }
}
@media (max-width: 1359px) {
  .vision-2030 {
    position: relative;
    inset: unset;
  }
  html[dir="rtl"] .vision-2030 {
    transform: none;
  }
  html[dir="ltr"] .vision-2030 {
    transform: none;
  }
}
@media (max-width: 993px) {
  .vision-2030 {
    width: 60px;
    margin: 0;
  }
}

.sec-header .header {
  padding: 7px 0;
}

@media (max-width: 1199px) {
  .sec-header-tools {
    gap: 30px;
  }
}
@media (max-width: 993px) {
  .sec-header-tools {
    flex-direction: row;
  }
}

.header-icon {
  display: flex;
  align-items: center;
  fill: #fff;
  order: 2;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .header-icon {
    order: 3;
  }
}
@media (max-width: 993px) {
  .header-icon.user-icon {
    height: 45px;
  }
}
.header-icon:hover {
  fill: #6db863;
}

.user-content {
  margin-inline-start: 26px;
  order: 3;
}
@media (max-width: 1199px) {
  .user-content {
    margin: 0;
    order: 2;
  }
}
.user-content .sublist-btn {
  display: flex;
  align-items: center;
  fill: #088f44;
}
.user-content .sublist-btn .arrow {
  fill: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .user-content .sublist-btn .arrow {
    display: none;
  }
}
.user-content .sublist-btn .user-name {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33334;
  margin-inline-start: 8px;
  margin-inline-end: 12px;
}
@media (max-width: 1199px) {
  .user-content .sublist-btn .user-name {
    display: none;
  }
}
.user-content:hover .user-icon {
  fill: #088f44;
}

.lang-content {
  margin-inline-end: 17px;
  order: 1;
}
@media (max-width: 1199px) {
  .lang-content {
    margin: 0;
  }
}
@media (max-width: 993px) {
  .lang-content {
    display: none;
  }
}
.lang-content:hover .lang-btn .text {
  color: #6db863;
}
.lang-content:hover .lang-btn .arrow {
  fill: #6db863;
}

.lang-btn {
  display: flex;
  align-items: center;
}
.lang-btn .flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-inline-end: 10px;
}
.lang-btn .text {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.lang-btn .arrow {
  display: flex;
  align-items: center;
  margin-inline-start: 6px;
  fill: #fff;
  transition: all 0.3s ease-in-out;
}

.sublist-content {
  position: relative;
  z-index: 10;
}
.sublist-content .sublist-btn {
  height: 54px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .sublist-content .sublist-btn {
    height: 45px;
  }
}
.sublist-content .sublist-body {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 140px;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.sublist-content .sublist-body.user-list {
  min-width: 183px;
}
.sublist-content .sublist-body.user-list .sublist-item:last-of-type {
  color: #b9272d;
}
@media (max-width: 1199px) {
  .sublist-content .sublist-body {
    min-width: 115px;
  }
  .sublist-content .sublist-body.lang-list {
    min-width: 100px;
  }
  .sublist-content .sublist-body.user-list {
    min-width: 135px;
  }
}
.sublist-content .sublist-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
  padding-inline-start: 12px;
  border-inline-start: 4px solid transparent;
  color: #1d1f1f;
  line-height: 1.42857;
  transition: all 0.3s ease-in-out;
}
.sublist-content .sublist-item img {
  width: 24px;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  margin-inline-end: 10px;
}
@media (max-width: 1199px) {
  .sublist-content .sublist-item img {
    display: none;
  }
}
.sublist-content .sublist-item:hover {
  color: #088f44;
  border-color: #088f44;
  background-color: rgba(8, 143, 68, 0.1);
}
.sublist-content .sublist-item ~ .sublist-item {
  border-top: 1px solid #eeeeee;
}
.sublist-content:hover .sublist-body {
  visibility: visible;
  opacity: 1;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: flex-start;
  stroke: #fff;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.menu-btn svg {
  margin-inline-end: 7px;
}
@media (max-width: 993px) {
  .menu-btn {
    display: flex;
  }
}
.menu-btn:hover {
  color: #6db863;
  stroke: #6db863;
}

header {
  background-color: rgba(29, 31, 31, 0.8);
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  header .container {
    max-width: 100%;
  }
}
header.fixed {
  background-color: #1d1f1f;
}
header.fixed .top-header .header {
  padding: 20px 0;
}
@media (max-width: 1199px) {
  header.fixed .top-header .header {
    padding: 15px 0;
  }
}
@media (max-width: 993px) {
  header.fixed .top-header .header {
    padding: 10px 0;
  }
}
header.fixed .logo {
  display: block;
  width: 300px;
}
@media (max-width: 1199px) {
  header.fixed .logo {
    width: 200px;
  }
}
@media (max-width: 993px) {
  header.fixed .logo {
    width: 175px;
  }
}
header.fixed .vision-2030 {
  top: 50%;
  width: 80px;
}
html[dir="rtl"] header.fixed .vision-2030 {
  transform: translateX(-100%) translateY(-50%);
}
html[dir="ltr"] header.fixed .vision-2030 {
  transform: translateX(100%) translateY(-50%);
}
@media (max-width: 1359px) {
  html[dir="rtl"] header.fixed .vision-2030 {
    transform: none;
  }
  html[dir="ltr"] header.fixed .vision-2030 {
    transform: none;
  }
}
@media (max-width: 993px) {
  header.fixed .vision-2030 {
    width: 50px;
  }
}
header.fixed .sublist-content .sublist-btn {
  height: 45px;
}
@media (max-width: 993px) {
  header.fixed .sublist-content .sublist-btn {
    height: 35px;
  }
}
.inner-page header {
  background-image: url(../images/background/header.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.inner-page header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 31, 31, 0.8);
  z-index: -1;
}

.header-nav .lang-content {
  display: none;
}
.header-nav .header-contacts {
  display: none;
}
.header-nav .header-btn {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
  z-index: 998;
  display: block;
  display: none;
}
@media (min-width: 994px) {
  .overlay {
    display: none !important;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
@media (max-width: 1199px) {
  .nav-list {
    gap: 20px;
  }
}

.list-item {
  height: 54px;
  display: flex;
  align-items: center;
  position: relative;
}
.fixed .list-item {
  height: 45px;
}
.list-item:hover .list-link {
  color: #088f44;
}
.list-item:hover .list-link .arrow {
  fill: #088f44;
}
.list-item:hover .nav-sublist {
  visibility: visible;
  opacity: 1;
}
.list-item.mobile-item {
  display: none;
}

.list-link {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.3333334;
  transition: all 0.3s ease-in-out;
}
.list-link .arrow {
  display: flex;
  align-items: center;
  fill: #fff;
  margin-inline-start: 7px;
  transition: all 0.3s ease-in-out;
}
.list-link:hover {
  color: #088f44;
}
.list-link:hover .arrow {
  fill: #088f44;
}

.nav-sublist {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .nav-sublist {
    min-width: 190px;
  }
}
.nav-sublist li {
  display: flex;
}
.nav-sublist li ~ li {
  border-top: 1px solid #eeeeee;
}
.nav-sublist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  font-size: 14px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.42857;
  padding-inline-start: 12px;
  border-inline-start: 4px solid transparent;
  transition: all 0.3s ease-in-out;
}
.nav-sublist a:hover {
  color: #088f44;
  border-color: #088f44;
  background-color: rgba(8, 143, 68, 0.1);
}

.nav-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0509803922);
}
.nav-head .nav-logo {
  height: 40px;
  display: flex;
  align-items: center;
}
.nav-head .nav-logo img {
  height: 100%;
}
.nav-head .close-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #1d1f1f;
  opacity: 0.5;
  text-decoration: none;
  transition: clor 0.3s ease-in-out;
}
.nav-head .close-menu:hover {
  fill: #088f44;
}

@media (max-width: 993px) {
  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    inset-inline-start: -330px;
    bottom: 0;
    border: none;
    z-index: 999;
    width: 330px;
    max-width: 95%;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    transition: all 0.5s ease-in-out;
    background-color: #fff;
    background-image: linear-gradient(
      77.41deg,
      rgba(32, 158, 89, 0.098) 7.67%,
      rgba(29, 105, 64, 0.09) 55.76%,
      rgba(206, 44, 51, 0.09) 100%
    );
  }
  .header-nav.active {
    inset-inline-start: 0;
  }
  .nav-head {
    display: flex;
  }
  .nav-content {
    background-color: #fff;
    display: block;
    margin: 15px 15px;
    min-height: calc(100% - 100px);
    padding-bottom: 40px;
  }
  .nav-list {
    display: block;
    background-color: transparent;
    padding: 0;
    margin: 0;
  }
  .list-item {
    margin: 0;
    display: block;
    height: auto;
    padding: 15px;
  }
  .fixed .list-item {
    height: auto;
  }
  .list-item ~ .list-item {
    margin-inline-start: 0;
  }
  .list-item.mobile-item {
    display: block;
  }
  .list-link {
    width: 100%;
    display: flex;
    color: #1d1f1f;
    fill: #1d1f1f;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
  }
  .list-link .arrow {
    fill: #1d1f1f;
    transition: all 0.3s ease-in-out;
  }
  .list-link.active {
    color: #088f44;
  }
  .list-link.active .arrow {
    fill: #088f44;
    transform: rotate(180deg);
  }
  .list-link:hover {
    color: #088f44;
  }
  .nav-sublist {
    position: relative;
    inset: unset;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 0 15px;
    visibility: visible;
    opacity: 1;
    transition: none;
    display: none;
  }
  .nav-sublist li {
    padding: 0 0 0;
    height: 45px;
  }
  .nav-sublist li:first-of-type {
    padding-top: 5px;
  }
  .nav-sublist li ~ li {
    margin: 0;
    border: none;
  }
  .nav-sublist a {
    height: auto;
    color: #666;
    padding-inline-start: 0;
    border: none;
  }
  .nav-sublist a:hover {
    color: #088f44;
    border-color: transparent;
    background-color: transparent;
  }
  .header-nav .lang-content {
    margin: 0;
    display: block;
  }
  .header-nav .lang-content .lang-btn {
    justify-content: space-between;
    height: auto;
  }
  .fixed .header-nav .lang-content .lang-btn {
    height: auto;
  }
  .header-nav .lang-content .lang-btn .text {
    margin-inline-end: auto;
    color: #1d1f1f;
  }
  .header-nav .lang-content .lang-btn .arrow {
    fill: #1d1f1f;
    transition: all 0.3s ease-in-out;
  }
  .header-nav .lang-content .lang-btn.active {
    color: #088f44;
  }
  .header-nav .lang-content .lang-btn.active .arrow {
    fill: #088f44;
    transform: rotate(180deg);
  }
  .header-nav .lang-content .lang-list {
    position: relative;
    inset: unset;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 0 15px;
    visibility: visible;
    opacity: 1;
    transform: none;
    text-align: start;
    transition: none;
    display: none;
  }
  .header-nav .lang-content .lang-list a {
    margin: 10px 0 0;
    font-size: 16px;
    color: #444444;
    text-align: start;
    justify-content: flex-start;
    height: auto;
    border: none;
    transition: all 0.3s ease-in-out;
  }
  .header-nav .lang-content .lang-list a:hover {
    color: #088f44;
  }
  .header-nav .lang-content .lang-list a ~ a {
    border: none;
  }
  .header-nav .header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin: 15px;
  }
  .header-nav .header-contact .contact-title {
    color: #444444;
  }
  .header-nav .header-contact .contact-value {
    color: #1d1f1f;
  }
  .header-nav .header-btn {
    display: flex;
    width: calc(100% - 30px);
    margin: 15px;
  }
}
.breadcrumb-section {
  background-color: #f8f8f8;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
}
@media (max-width: 767px) {
  .breadcrumb-section {
    display: none;
  }
}

.breadcrumb-list {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 21px 0;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3333334;
}
.breadcrumb-list li::after {
  content: url("../images/icons/breadcrumb.svg");
  margin: 0 10px;
}
.breadcrumb-list li:first-of-type::after,
.breadcrumb-list li:last-of-type::after {
  display: none;
}
.breadcrumb-list li:first-of-type {
  margin-inline-end: 18px;
}
.breadcrumb-list li:last-of-type a {
  color: #088f44;
}
.breadcrumb-list li:last-of-type a:not([href]):hover {
  color: #088f44;
  stroke: #088f44;
}
.breadcrumb-list li a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  stroke: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.breadcrumb-list li a:not([href]):hover {
  color: #333;
  stroke: #333;
}
.breadcrumb-list li a[href]:hover {
  color: #b9272d;
  stroke: #b9272d;
}

footer {
  background-color: #fff;
  box-shadow: 0px -3px 10px 2px rgba(0, 0, 0, 0.0509803922);
  position: relative;
  width: 100%;
  overflow: hidden;
  background-repeat: repeat;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 93px 0 81px;
}
@media (max-width: 993px) {
  .footer {
    padding: 50px 0 40px;
  }
}

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

.footer-logo {
  width: 273px;
  margin: 0 0 37px;
}
@media (max-width: 1199px) {
  .footer-logo {
    margin-inline: auto;
  }
}

.footer-summary {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  width: 270px;
  margin: 0;
}
@media (max-width: 1199px) {
  .footer-summary {
    text-align: center;
    width: 100%;
  }
}

.footer-nav {
  margin: 0;
  padding: 1px 0 0;
}
@media (max-width: 767px) {
  .footer-nav {
    padding: 0;
    margin: 0 0 40px;
  }
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  position: relative;
  display: inline-flex;
  margin: 0 0 30px;
}
.footer-title img {
  opacity: 0.2;
  position: absolute;
  width: 63px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .footer-title img {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
  }
  .footer-title:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    content: "\f107";
    transition: transform 0.3s ease-in-out;
  }
  .footer-title.active:after {
    transform: rotate(-180deg);
  }
}

@media (max-width: 767px) {
  .footer-list {
    display: none;
    padding: 15px 15px 0;
  }
}
.footer-list li {
  display: flex;
}
.footer-list li ~ li {
  margin-top: 10px;
}
.footer-list a {
  font-size: 15px;
  color: #444444;
  font-weight: 400;
  display: inline-flex;
  line-height: 2.13333334;
  transition: all 0.3s ease-in-out;
}
.footer-list a:hover {
  color: #088f44;
  transform: translateX(-5px);
}
html[dir="ltr"] .footer-list a:hover {
  transform: translateX(5px);
}

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

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer-socials {
    justify-content: center;
    gap: 15px;
  }
}

.social {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  border: 1px solid #666;
  transition: all 0.3s ease-in-out;
}
.social:hover {
  border-color: #b9272d;
  color: #b9272d;
}

.copyrights {
  position: relative;
  z-index: 2;
  padding: 27px 15px 25px;
  border-top: 1px solid rgba(102, 102, 102, 0.2);
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin: 0;
}
.copyrights span {
  color: #088f44;
}
@media (max-width: 767px) {
  .copyrights {
    padding: 15px 10px;
    font-size: 14px;
  }
}

.services-section {
  padding: 70px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 993px) {
  .services-section {
    padding: 40px 0;
  }
}

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

.team-section {
  padding: 60px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    77.41deg,
    rgba(32, 158, 89, 0.098) 7.67%,
    rgba(29, 105, 64, 0.09) 55.76%,
    rgba(206, 44, 51, 0.09) 100%
  );
}
@media (max-width: 993px) {
  .team-section {
    padding: 30px 0;
  }
}
.team-section .start-cover {
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: calc((100vw - 1180px) / 2);
  z-index: 4;
  overflow: hidden;
}
.team-section .start-cover::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: 100vw;
  background: linear-gradient(
    77.41deg,
    rgba(32, 158, 89, 0.098) 7.67%,
    rgba(29, 105, 64, 0.09) 55.76%,
    rgba(206, 44, 51, 0.09) 100%
  );
}
@media (max-width: 1199px) {
  .team-section .start-cover {
    display: none;
  }
}

.team-content {
  position: relative;
  z-index: 3;
}
/* .team-content .swiper {
  overflow: unset;
} */

.banner-section {
  background-color: #fff;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
@media (max-width: 993px) {
  .banner-section {
    padding: 25px 0;
  }
}

.banner-content {
  padding: 60px 61px 61px;
  background: linear-gradient(
    77.41deg,
    rgba(32, 158, 89, 0.098) 7.67%,
    rgba(29, 105, 64, 0.09) 55.76%,
    rgba(206, 44, 51, 0.09) 100%
  );
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .banner-content {
    padding: 90px 50px;
  }
}
@media (max-width: 993px) {
  .banner-content {
    padding: 25px 15px;
    text-align: center;
  }
}
.banner-content .banner-logo {
  width: 451px;
  aspect-ratio: 451/78;
  margin-bottom: 40px;
}
@media (max-width: 993px) {
  .banner-content .banner-logo {
    width: 250px;
    margin: 0 auto 40px;
  }
}
.banner-content .banner-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 993px) {
  .banner-content .banner-text {
    flex-direction: column;
    justify-content: center;
  }
}
.banner-content .banner-title {
  font-size: 30px;
  font-weight: 700;
  color: #1d1f1f;
  line-height: 1.83333334;
  margin: 0;
  margin-inline-end: 62px;
}
@media (max-width: 1199px) {
  .banner-content .banner-title {
    font-size: 28px;
    margin: 0;
  }
}
@media (max-width: 993px) {
  .banner-content .banner-title {
    font-size: 24px;
    margin: 0 0 25px;
  }
}
.banner-content .banner-btn {
  width: 180px;
  height: 56px;
  border-radius: 30px;
  font-size: 16px;
}
@media (max-width: 993px) {
  .banner-content .banner-btn {
    width: 130px;
    height: 48px;
    font-size: 14px;
  }
}

.blog-section {
  padding: 70px 0 58px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
.blog-section .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 993px) {
  .blog-section {
    padding: 40px 0 35px;
  }
}

.blog-content {
  position: relative;
  z-index: 3;
}
.blog-content .start-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  inset-inline-end: calc(100% + 2px);
  width: 100vw;
  background-color: #fff;
  z-index: 4;
}
@media (max-width: 1199px) {
  .blog-content .start-cover {
    display: none;
  }
}
/* .blog-content .swiper {
  overflow: unset;
} */

.aboutPage-main {
  padding: 60px 0 70px;
}
@media (max-width: 993px) {
  .aboutPage-main {
    padding: 40px 0;
  }
}
.aboutPage-main .aboutMain-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 30px;
  overflow: hidden;
  padding: 50px 60px;
}
@media (max-width: 1199px) {
  .aboutPage-main .aboutMain-content {
    padding: 40px 45px;
  }
}
@media (max-width: 767px) {
  .aboutPage-main .aboutMain-content {
    padding: 30px 15px;
    border-radius: 20px;
  }
}
.aboutPage-main .pattern {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.aboutPage-main .aboutMain-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #333;
  line-height: 0.8;
  margin: 0 0 30px;
}
.aboutPage-main .aboutMain-title img {
  width: 183px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .aboutPage-main .aboutMain-title img {
    width: 90px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .aboutPage-main .aboutMain-title {
    font-size: 30px;
  }
}
.aboutPage-main .aboutMain-text {
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: #666;
  font-weight: 400;
  line-height: 2.111112;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .aboutPage-main .aboutMain-text {
    font-size: 16px;
    line-height: 2;
  }
}

.about-features {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

.feature-item {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 500px;
}
@media (max-width: 1199px) {
  .feature-item {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .feature-item {
    grid-template-columns: 1fr;
    position: relative;
  }
}
.feature-item .feature-text {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 20px 93px;
}
@media (max-width: 1199px) {
  .feature-item .feature-text {
    padding: 20px 50px;
  }
}
@media (max-width: 993px) {
  .feature-item .feature-text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature-item .feature-text {
    padding: 30px 20px;
    background-color: transparent;
    z-index: 2;
  }
}
.feature-item .pattern {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .feature-item .pattern {
    display: none;
  }
}
.feature-item .feature-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 36px;
  font-weight: 700;
  color: #444444;
  line-height: 1.22223;
  margin: 0 0 30px;
}
.feature-item .feature-title img {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .feature-item .feature-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.feature-item .feature-description {
  font-size: 16px;
  font-weight: 400;
  color: #444444;
  line-height: 1.875;
  margin: 0;
}
.feature-item .feature-img {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .feature-item .feature-img {
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 0;
    z-index: 1;
    background-color: transparent;
    justify-content: flex-end;
    opacity: 0.2;
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.feature-item .img-holder {
  width: 100%;
  max-width: 248px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item .img-holder img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 767px) {
  .feature-item .img-holder {
    max-width: 200px;
  }
}
.feature-item:nth-child(even) {
  background-color: #f8f8f8;
}
.feature-item:nth-child(even) .feature-text {
  order: 2;
}
@media (max-width: 767px) {
  .feature-item:nth-child(even) .feature-text {
    order: 1;
  }
}
.feature-item:nth-child(even) .pattern {
  inset-inline-end: 0;
  inset-inline-start: unset;
  scale: -1 1;
}
.feature-item:nth-child(even) .feature-img {
  order: 1;
}
@media (max-width: 767px) {
  .feature-item:nth-child(even) .feature-img {
    order: 2;
  }
}

.boardPage-main {
  padding: 101px 0 100px;
}
@media (max-width: 993px) {
  .boardPage-main {
    padding: 40px 0;
  }
}
.boardPage-main .boardMain-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chairman-member {
  min-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.chairman-member .member-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.chairman-member .member-img.loaded-img img {
  filter: unset;
}
.chairman-member .member-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.chairman-member .member-img:hover img {
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .chairman-member .member-img {
    margin-bottom: 25px;
  }
}
.chairman-member .member-name {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  line-height: 0.8;
  margin: 0 0 30px;
}
.chairman-member .member-name a {
  color: #333;
  transition: all 0.3s ease-in-out;
}
.chairman-member .member-name a:hover {
  color: #088f44;
}
@media (max-width: 767px) {
  .chairman-member .member-name {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.chairman-member .member-position {
  font-size: 24px;
  line-height: 0.923;
  color: #088f44;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .chairman-member .member-position {
    font-size: 18px;
  }
}

.boardMembers-section {
  width: 100%;
  overflow: hidden;
  padding: 78px 0 83px;
  background-color: #fff;
  position: relative;
}
.boardMembers-section .pattern {
  position: absolute;
  top: 373px;
}
.boardMembers-section .pattern.start {
  inset-inline-start: 0;
}
.boardMembers-section .pattern.end {
  transform: scaleX(-1);
  inset-inline-end: 0;
}
@media (max-width: 993px) {
  .boardMembers-section {
    padding: 40px 0;
  }
}

.boardMember-main {
  padding: 60px 0 223px;
}
@media (max-width: 993px) {
  .boardMember-main {
    padding: 40px 0 150px;
  }
}

.boardMember-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.boardMember-info .boardMember-img {
  width: 100%;
  max-width: 339px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  margin-bottom: 40px;
  filter: grayscale(1);
  position: relative;
}
.boardMember-info .boardMember-img::before,
.boardMember-info .boardMember-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.boardMember-info .boardMember-img::before {
  background: linear-gradient(
    180deg,
    rgba(32, 158, 89, 0) 0%,
    rgba(43, 138, 58, 0.05) 45.12%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
}
.boardMember-info .boardMember-img:after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 37.57%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}
.boardMember-info .boardMember-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .boardMember-info .boardMember-img {
    margin-bottom: 25px;
  }
}
.boardMember-info .boardMember-img:hover {
  filter: grayscale(0);
}
.boardMember-info .boardMember-img:hover::after {
  visibility: hidden;
  opacity: 0;
}
.boardMember-info .boardMember-img:hover::before {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.boardMember-info .boardMember-img:hover img {
  transform: scale(1.2);
}
.boardMember-info .boardMember-name {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  line-height: 0.8;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .boardMember-info .boardMember-name {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.boardMember-info .boardMember-position {
  font-size: 24px;
  line-height: 0.923;
  color: #088f44;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .boardMember-info .boardMember-position {
    font-size: 18px;
  }
}

.member-about {
  margin-top: -167px;
}
@media (max-width: 993px) {
  .member-about {
    margin-top: -110px;
  }
}
.member-about .memberAbout-block {
  border-bottom: 5px solid #088f44;
  background-color: #fff;
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.0509803922);
  border-radius: 30px;
  padding: 30px 60px 25px;
  text-align: center;
}
@media (max-width: 993px) {
  .member-about .memberAbout-block {
    padding: 30px 30px 25px;
  }
}
.member-about .section-head {
  max-width: none;
}
.member-about .section-description {
  font-size: 18px;
  line-height: 2.11112;
}
@media (max-width: 993px) {
  .member-about .section-description {
    font-size: 16px;
    line-height: 1.5;
  }
}
.member-about .cv-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f8e9ea;
  border-radius: 10px;
  height: 70px;
  max-width: 100%;
  padding: 0 20px;
  font-size: 24px;
  color: #333;
  fill: #d9434d;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.member-about .cv-download span {
  margin-inline-start: 14px;
  margin-inline-end: 34px;
}
.member-about .cv-download:hover {
  background-color: #d9434d;
  color: #f8e9ea;
  fill: #f8e9ea;
}
.member-about .cv-download:hover .arrow {
  animation: scr-pos 2s linear infinite;
}
@media (max-width: 993px) {
  .member-about .cv-download {
    padding: 0 12px;
    font-size: 20px;
    height: 60px;
  }
  .member-about .cv-download svg {
    max-height: 24px;
  }
  .member-about .cv-download span {
    margin-inline-start: 9px;
    margin-inline-end: 14px;
  }
  .member-about .cv-download .arrow {
    animation: scr-pos 2s linear infinite;
  }
}

.otherMembers-section {
  width: 100%;
  overflow: hidden;
  padding: 80px 0 90px;
  background-color: #fff;
  position: relative;
}
.otherMembers-section .team-slider {
  margin: 0;
}
.otherMembers-section .pattern {
  position: absolute;
  top: 144px;
}
.otherMembers-section .pattern.start {
  inset-inline-start: 0;
}
.otherMembers-section .pattern.end {
  transform: scaleX(-1);
  inset-inline-end: 0;
}
.otherMembers-section .otherMembers-content {
  position: relative;
  z-index: 3;
}
@media (max-width: 993px) {
  .otherMembers-section {
    padding: 40px 0 45px;
  }
}

.organizationalChart-main {
  padding: 50px 0 265px;
}
@media (max-width: 993px) {
  .organizationalChart-main {
    padding: 40px 0 150px;
  }
}
.organizationalChart-main .chairman-img {
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.organizationalChart-main .chairman-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.chairman-word {
  padding: 25px 30px 20px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.0509803922);
  border-block: 5px solid #088f44;
  margin-top: -245px;
}
@media (max-width: 993px) {
  .chairman-word {
    padding: 20px 30px 15px;
    margin-top: -110px;
  }
}
.chairman-word .section-head {
  margin-bottom: 30px;
}
@media (max-width: 993px) {
  .chairman-word .section-head {
    margin-bottom: 20px;
  }
}
.chairman-word .word-description {
  font-size: 18px;
  line-height: 2.11112;
  margin: 0;
  text-align: center;
}
@media (max-width: 993px) {
  .chairman-word .word-description {
    font-size: 16px;
    line-height: 1.5;
  }
}

.departments-section {
  padding-top: 88px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .departments-section {
    padding-top: 50px;
  }
}

.department-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 500px;
  position: relative;
}
@media (max-width: 767px) {
  .department-item {
    min-height: auto;
    grid-template-columns: 1fr;
  }
}
.department-item .pattern {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .department-item .pattern {
    display: none;
  }
}
.department-item .department-text {
  padding: 20px 92px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .department-item .department-text {
    padding: 20px 50px;
  }
}
@media (max-width: 993px) {
  .department-item .department-text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .department-item .department-text {
    padding: 30px 20px;
  }
}
.department-item .section-title {
  margin-bottom: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .department-item .section-title {
    font-size: 28px;
  }
}
.department-item .department-description {
  font-size: 16px;
  color: #444444;
  font-weight: 400;
  line-height: 1.875;
  margin: 0;
}
.department-item .department-img {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 767px) {
  .department-item .department-img {
    width: 100%;
    aspect-ratio: 756/500;
    height: auto;
  }
}
.department-item .department-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.department-item:nth-child(odd) .department-text {
  order: 2;
}
@media (max-width: 767px) {
  .department-item:nth-child(odd) .department-text {
    order: 1;
  }
}
.department-item:nth-child(odd) .department-img {
  order: 1;
}
@media (max-width: 767px) {
  .department-item:nth-child(odd) .department-img {
    order: 2;
  }
}
.department-item:nth-child(odd) .pattern {
  inset-inline-end: 0;
  inset-inline-start: unset;
  scale: -1 1;
}

.formsAndDocuments-main {
  padding: 80px 0 47px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .formsAndDocuments-main {
    padding: 40px 0 30px;
  }
}

.rulesAndRegulations-main {
  padding: 50px 0 87px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .rulesAndRegulations-main {
    padding: 30px 0 45px;
  }
}

.download-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 993px) {
  .download-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #f8e9ea;
  fill: #d9434d;
  border-radius: 15px;
  padding: 15px 30px;
  min-height: 130px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .download-item {
    padding: 15px;
    min-height: auto;
  }
}
.download-item:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(217, 67, 77, 0.35) 0%,
    rgba(217, 67, 77, 0) 80%
  );
  transition: all 0.3s ease-in-out;
}
.download-item .file-icon {
  width: 64px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 993px) {
  .download-item .file-icon {
    width: 40px;
  }
  .download-item .file-icon svg {
    max-width: 100%;
  }
}
.download-item svg {
  flex-shrink: 0;
  max-width: 100%;
}
.download-item h6 {
  width: 100%;
  margin: 0 20px;
  font-size: 24px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 993px) {
  .download-item h6 {
    margin: 0 10px;
    font-size: 18px;
    margin-inline-end: 15px;
  }
}
.download-item h6 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 993px) {
  .download-item .arrow {
    animation: scr-pos 2s linear infinite;
  }
}
.download-item.pdf {
  background-color: #f8e9ea;
  fill: #d9434d;
}
.download-item.pdf:before {
  background: radial-gradient(
    ellipse at center,
    rgba(217, 67, 77, 0.35) 0%,
    rgba(217, 67, 77, 0) 80%
  );
}
.download-item.xls {
  background-color: #e6f4ec;
  fill: #1e7145;
}
.download-item.xls:before {
  background: radial-gradient(
    ellipse at center,
    rgba(30, 113, 69, 0.35) 0%,
    rgba(30, 113, 69, 0) 80%
  );
}
.download-item.docx {
  background-color: #ebecee;
  fill: #2a5699;
}
.download-item.docx:before {
  background: radial-gradient(
    ellipse at center,
    rgba(42, 86, 153, 0.35) 0%,
    rgba(42, 86, 153, 0) 80%
  );
}
.download-item.png {
  background-color: #eeeeee;
  fill: #1d1f1f;
  stroke: #1d1f1f;
}
.download-item.png:before {
  background: radial-gradient(
    ellipse at center,
    rgba(238, 238, 238, 0.35) 0%,
    rgba(238, 238, 238, 0) 80%
  );
}
.download-item.jpg {
  background-color: rgba(255, 175, 68, 0.1019607843);
  fill: #ffaf44;
}
.download-item.jpg:before {
  background: radial-gradient(
    ellipse at center,
    rgba(255, 175, 68, 0.35) 0%,
    rgba(255, 175, 68, 0) 80%
  );
}
.download-item:hover {
  transform: translateY(-5px);
}
.download-item:hover::before {
  opacity: 1;
  transform: translateY(5px);
}
.download-item:hover .arrow {
  animation: scr-pos 2s linear infinite;
}

.bankAccounts-main {
  padding: 40px 0 55px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .bankAccounts-main {
    padding: 30px 0 45px;
  }
}

.bankAccounts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .bankAccounts-list {
    gap: 15px;
  }
}
@media (max-width: 993px) {
  .bankAccounts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .bankAccounts-list {
    grid-template-columns: 1fr;
  }
}

.bankAccount-item {
  padding: 24px 25px 33px;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  background-color: #fff;
}
.bankAccount-item .bank-img {
  width: 205px;
  aspect-ratio: 205/180;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.bankAccount-item .bank-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bankAccount-item .bank-informations {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bankAccount-item .information-item {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
}
@media (max-width: 1199px) {
  .bankAccount-item .information-item {
    font-size: 16px;
  }
}
.bankAccount-item .information-item span {
  display: block;
}
.bankAccount-item .item-title {
  color: #088f44;
}
.bankAccount-item .item-value {
  color: #333;
}

.jobs-main {
  padding: 40px 0 56px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .jobs-main {
    padding: 30px 0 45px;
  }
}

.jobs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 993px) {
  .jobs-list {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .jobs-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.job-item {
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.job-item .item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  height: 94px;
  flex-shrink: 0;
  border-bottom: 1px solid #d6d6d6;
}
@media (max-width: 993px) {
  .job-item .item-header {
    padding: 0 20px;
    height: 60px;
  }
}
.job-item .job-title {
  font-size: 24px;
  line-height: 1.5;
  color: #088f44;
  font-weight: 700;
  margin: 0;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .job-item .job-title {
    font-size: 20px;
  }
}
.job-item .job-title a {
  color: #088f44;
  transition: all 0.3s ease-in-out;
}
.job-item .job-title a:hover {
  color: #b9272d;
}
.job-item .job-icon {
  fill: #344554;
}
.job-item .item-body {
  padding: 25px 25px 30px;
  height: 100%;
}
@media (max-width: 993px) {
  .job-item .item-body {
    height: auto;
    padding: 20px 20px 25px;
  }
}
.job-item .job-informations {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 993px) {
  .job-item .job-informations {
    gap: 20px;
  }
}
.job-item .information-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 993px) {
  .job-item .information-item {
    font-size: 16px;
    line-height: 1.6;
    gap: 10px;
  }
}
.job-item .item-title {
  color: #088f44;
}
.job-item .item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 20px 25px 23px;
  padding-inline-end: 20px;
  border-top: 1px solid #d6d6d6;
  margin-top: auto;
}
@media (max-width: 993px) {
  .job-item .item-footer {
    padding: 20px;
  }
}
.job-item .job-btn {
  height: 48px;
  font-size: 16px;
}
.job-item .date {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}
.job-item .date svg {
  stroke: #088f44;
  margin-inline-start: 7px;
}
@media (max-width: 993px) {
  .job-item .date {
    font-size: 16px;
  }
  .job-item .date svg {
    margin-inline-start: 3px;
  }
}

.jobDetails-main {
  padding: 50px 0 60px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .jobDetails-main {
    padding: 40px 0 45px;
  }
}

.jobDetails-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}
@media (max-width: 993px) {
  .jobDetails-row {
    grid-template-columns: 1fr;
  }
}
.jobDetails-row .jobDetails-col {
  max-width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1199px) {
  .jobDetails-row .jobDetails-col {
    gap: 15px;
  }
}
.jobDetails-row .jobDetails-aside {
  padding-inline-start: 15px;
}
@media (max-width: 1199px) {
  .jobDetails-row .jobDetails-aside {
    padding: 0;
  }
}

.job-block {
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.job-block .block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  border-bottom: 1px solid #d6d6d6;
  padding: 0 20px;
}
@media (max-width: 993px) {
  .job-block .block-header {
    height: 60px;
  }
}
.job-block .block-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #1d1f1f;
  margin: 0;
}
.job-block .block-title img {
  width: 40px;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .job-block .block-title {
    font-size: 18px;
  }
  .job-block .block-title img {
    width: 30px;
    margin-inline-end: 10px;
  }
}

.job-details .block-header {
  padding: 0 25px;
}
@media (max-width: 993px) {
  .job-details .block-header {
    padding: 0 20px;
  }
}
.job-details .job-title {
  font-size: 24px;
  line-height: 1.5;
  color: #088f44;
  font-weight: 700;
  margin: 0;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .job-details .job-title {
    font-size: 20px;
  }
}
.job-details .job-title a {
  color: #088f44;
  transition: all 0.3s ease-in-out;
}
.job-details .job-title a:hover {
  color: #b9272d;
}
.job-details .job-icon {
  fill: #344554;
}
.job-details .job-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 30px;
}
@media (max-width: 993px) {
  .job-details .job-features {
    padding: 20px;
  }
}
.job-details .job-feature {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 993px) {
  .job-details .job-feature {
    font-size: 16px;
    line-height: 1.6;
    gap: 10px;
  }
}
.job-details .feature-title {
  color: #666;
}
.job-details .item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 30px 30px;
  padding-inline-end: 36px;
  border-top: 1px solid #d6d6d6;
  margin-top: auto;
}
@media (max-width: 993px) {
  .job-details .item-footer {
    padding: 20px;
  }
}
.job-details .job-btn {
  height: 48px;
  font-size: 16px;
  padding: 0 31px;
}
@media (max-width: 993px) {
  .job-details .job-btn {
    width: 130px;
    padding: 0 22px;
    font-size: 14px;
  }
}
.job-details .date {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}
.job-details .date svg {
  stroke: #088f44;
  margin-inline-start: 7px;
}
@media (max-width: 993px) {
  .job-details .date {
    font-size: 16px;
  }
  .job-details .date svg {
    margin-inline-start: 3px;
  }
}

.job-description .description-body {
  padding: 22px 30px;
  line-height: 2.57143;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
@media (max-width: 993px) {
  .job-description .description-body {
    padding: 20px;
    line-height: 2;
  }
}
.job-description .description-body p {
  margin: 0;
}
.job-description .description-body ul {
  margin: 0;
}

.job-related .related-list {
  padding: 14px 20px;
}
@media (max-width: 993px) {
  .job-related .related-list {
    padding: 10px 15px 15px;
  }
}
.job-related .related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.923;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  fill: #088f44;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 15px;
  padding-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
html[dir="ltr"] .job-related .related-item svg {
  transform: scaleX(-1);
}
.job-related .related-item:hover {
  color: #088f44;
}
.job-related .related-item:last-of-type {
  border: none;
  padding: 0;
  margin: 0;
}

.job-share {
  padding: 30px 37px;
}
@media (max-width: 1199px) {
  .job-share {
    padding: 30px;
  }
}
@media (max-width: 993px) {
  .job-share {
    padding: 20px;
  }
}
.job-share .share-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.5625;
  margin-bottom: 24px;
}
.job-share .share-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.job-share .share-method {
  transition: all 0.3s ease-in-out;
}
.job-share .share-method:hover {
  opacity: 0.9;
}
.job-share .share-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 10px;
  height: 40px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
.job-share .share-link .link-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7857143;
  color: #000;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  direction: ltr;
  text-overflow: ellipsis;
}
.job-share .copy-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #088f44;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  margin-inline-start: 10px;
  transition: all 0.3s ease-in-out;
}
.job-share .copy-link:hover {
  fill: #b9272d;
}

.jobApply-main {
  padding: 60px 0;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .jobApply-main {
    padding: 45px 0;
  }
}

.job-apply {
  border-radius: 25px;
  border-bottom: 5px solid #088f44;
}
@media (max-width: 993px) {
  .job-apply {
    border-radius: 15px;
  }
}

.apply-body {
  padding: 28px 30px 39px;
}
@media (max-width: 993px) {
  .apply-body {
    padding: 25px 15px;
  }
}

.faq-main {
  padding: 40px 0 0;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .faq-main {
    padding: 30px 0 10px;
    background-size: unset;
  }
}

.faq-item {
  margin-bottom: 30px;
  background-color: #f1faf5;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .faq-item {
    margin-bottom: 20px;
  }
}
.faq-item .faq-header {
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.3s ease-in-out;
}
.faq-item .faq-button {
  width: 100%;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: #1d1f1f;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 993px) {
  .faq-item .faq-button {
    padding: 15px;
    font-size: 18px;
    align-items: flex-start;
  }
}
.faq-item .faq-button svg {
  fill: #088f44;
  flex-shrink: 0;
  margin-inline-start: 30px;
}
.faq-item .faq-button svg .transform {
  position: relative;
  transform-origin: center;
  opacity: 0;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .faq-item .faq-button svg {
    margin-inline-start: 20px;
    margin-top: 5px;
  }
}
.faq-item .faq-button::after {
  display: none;
}
.faq-item .faq-button.collapsed svg .transform {
  opacity: 1;
  transform: rotate(0deg);
}
.faq-item .faq-body {
  padding: 15px 20px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  line-height: 2.57142;
}
.faq-item .faq-body * {
  margin: 0;
}
@media (max-width: 993px) {
  .faq-item .faq-body {
    padding: 15px;
  }
}
.faq-item:has(.collapsed) {
  background-color: #fff;
}
.faq-item:has(.collapsed) .faq-header {
  border-color: transparent;
}

.terms-main {
  padding: 40px 0 36px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .terms-main {
    padding: 30px 0 25px;
  }
}

.terms-description {
  padding: 40px 30px 33px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-radius: 15px;
}
@media (max-width: 993px) {
  .terms-description {
    padding: 30px 15px 25px;
  }
}
.terms-description h3 {
  font-size: 20px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.6;
  margin: 0 0 30px;
}
@media (max-width: 993px) {
  .terms-description h3 {
    margin: 0 0 20px;
    font-size: 18px;
  }
}
.terms-description p {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 2.57143;
  margin: 0 0 40px;
}
@media (max-width: 993px) {
  .terms-description p {
    margin: 0 0 25px;
  }
}
.terms-description ul {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 2.57143;
  padding-inline-start: 20px;
  list-style: disc;
  margin: 0 0 40px;
}
@media (max-width: 993px) {
  .terms-description ul {
    margin: 0 0 25px;
  }
}
.terms-description :last-child {
  margin: 0;
}

.summary-main {
  padding: 80px 0 86px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .summary-main {
    padding: 40px 0 45px;
  }
}

.summary-files.download-list {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1199px) {
  .summary-files.download-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 993px) {
  .summary-files.download-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.calculator-main {
  padding: 60px 0 56px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .calculator-main {
    padding: 40px 0 38px;
  }
}

.calculator-content {
  width: 100%;
  max-width: 830px;
  margin: auto;
}

.calculator-block {
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.calculator-block .calculator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid #d6d6d6;
  padding: 0 25px;
}
@media (max-width: 993px) {
  .calculator-block .calculator-header {
    height: 60px;
  }
}
.calculator-block .calculator-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #1d1f1f;
  margin: 0;
}
.calculator-block .calculator-title img {
  width: 40px;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .calculator-block .calculator-title {
    font-size: 18px;
  }
  .calculator-block .calculator-title img {
    width: 30px;
    margin-inline-end: 10px;
  }
}

.calculator-body {
  padding: 25px 28px 35px;
}
@media (max-width: 993px) {
  .calculator-body {
    padding: 25px 15px;
  }
}
.calculator-body .calculator-form-title {
  font-size: 16px;
  font-weight: 400;
  color: #1d1f1f;
  line-height: 2;
  margin: 0 0 41px;
}
@media (max-width: 993px) {
  .calculator-body .calculator-form-title {
    margin: 0 0 20px;
  }
}

.calculator-table {
  margin-top: 30px;
  border-radius: 25px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  overflow: hidden;
}
.calculator-table .table-head {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #d6d6d6;
  min-height: 71px;
  padding: 15px;
}
@media (max-width: 993px) {
  .calculator-table .table-head {
    min-height: auto;
    padding: 10px;
  }
}
.calculator-table .table-title {
  color: #1d1f1f;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}
.calculator-table .table-title span {
  color: #088f44;
}
@media (max-width: 993px) {
  .calculator-table .table-title {
    font-size: 18px;
  }
}
.calculator-table .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid #e1e4ea;
  background-color: #e1e4ea;
}
.calculator-table .table-row .table-cell {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7142857;
  color: #0e0f11;
}
@media (max-width: 993px) {
  .calculator-table .table-row .table-cell {
    padding: 10px;
  }
}
.calculator-table .table-row:nth-of-type(odd) {
  background-color: #d5d9e1;
  border-color: #d5d9e1;
}
.calculator-table .table-row:nth-of-type(odd) .table-cell {
  background-color: #f8f8f8;
}
.calculator-table .table-row:last-of-type {
  border: none;
  background-color: #fff;
}
.calculator-table .table-row:last-of-type .table-cell {
  background-color: #088f44;
  color: #fff;
  font-weight: 700;
}

.services-main {
  padding: 60px 0;
  width: 100%;
  background-size: cover;
}
@media (max-width: 993px) {
  .services-main {
    padding: 30px 0;
  }
}

.service-main-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 25px;
  background-color: #e6f4ec;
  border-bottom: 5px solid #088f44;
  border-radius: 15px;
}
@media (max-width: 993px) {
  .service-main-block {
    padding: 30px 15px 25px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.service-main-block .service-head {
  display: flex;
  align-items: center;
}
@media (max-width: 993px) {
  .service-main-block .service-head {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
  }
}
.service-main-block .service-img {
  width: 150px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-main-block .service-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 993px) {
  .service-main-block .service-img {
    margin-bottom: 15px;
  }
}
.service-main-block .service-text {
  width: 100%;
  max-width: 553px;
}
@media (max-width: 993px) {
  .service-main-block .service-text {
    width: 100%;
  }
}
.service-main-block .service-name {
  font-size: 24px;
  line-height: 1.333334;
  font-weight: 700;
  color: #1d1f1f;
  margin-bottom: 10px;
}
.service-main-block .service-name.mobile {
  font-size: 20px;
  margin-bottom: 15px;
  display: none;
}
@media (max-width: 993px) {
  .service-main-block .service-name {
    display: none;
  }
  .service-main-block .service-name.mobile {
    display: block;
  }
}
.service-main-block .service-intro {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}
.service-main-block .service-btn {
  width: 180px;
  height: 56px;
  border-radius: 30px;
  margin: 0 10px;
}
@media (max-width: 993px) {
  .service-main-block .service-btn {
    margin: auto;
  }
}

.service-description-block {
  box-shadow: 0px 3px 4px 1px rgba(0, 0, 0, 0.0509803922);
  border: 2px solid #088f44;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  margin-top: 50px;
}
.service-description-block p {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  margin: 0;
  line-height: 2.111112;
}
@media (max-width: 993px) {
  .service-description-block p {
    font-size: 16px;
    line-height: 2;
  }
}
@media (max-width: 993px) {
  .service-description-block {
    margin-top: 30px;
    border-radius: 15px;
    padding: 20px 15px;
  }
}

.service-related {
  margin-top: 70px;
}
@media (max-width: 993px) {
  .service-related {
    margin-top: 40px;
  }
}

.loginAlert-main {
  padding: 100px 0 76px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .loginAlert-main {
    padding: 40px 0 45px;
  }
}

.login-alert {
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  background-color: #fff;
  border-radius: 25px;
  width: 100%;
  max-width: 570px;
  padding: 60px 83px 42px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 993px) {
  .login-alert {
    padding: 30px 20px 30px;
  }
}
.login-alert .loginAlert-img {
  width: 130px;
  aspect-ratio: 1;
  margin: 0 auto 30px;
}
.login-alert .loginAlert-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.login-alert .loginAlert-title {
  font-size: 24px;
  color: #333;
  font-weight: 500;
  line-height: 1.583333334;
  margin: 0 0 30px;
}
.login-alert .back-btn {
  background-color: #fff;
  border: 1px solid #eeeeee;
  color: #344554;
  margin-top: 20px;
}
.login-alert .back-btn:hover {
  background-color: #b9272d;
  border-color: #b9272d;
  color: #fff;
}

.request-main {
  padding: 42px 0 80px;
  width: 100%;
  background-size: cover;
}
@media (max-width: 993px) {
  .request-main {
    padding: 30px 0 45px;
  }
}

.request-block {
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.request-block .request-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 77px;
  border-bottom: 1px solid #d6d6d6;
  padding: 0 14px;
}
@media (max-width: 993px) {
  .request-block .request-header {
    height: 60px;
  }
}
.request-block .request-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #1d1f1f;
  margin: 0;
  margin-inline-start: 15px;
}
.request-block .request-title img {
  width: 40px;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .request-block .request-title {
    font-size: 18px;
    margin: 0;
  }
  .request-block .request-title img {
    width: 30px;
    margin-inline-end: 10px;
  }
}
.request-block .calculator-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 48px;
  background-color: #088f44;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  fill: #fff;
  transition: all 0.3s ease-in-out;
}
.request-block .calculator-btn svg {
  margin-inline-end: 8px;
}
.request-block .calculator-btn:hover {
  background-color: #b9272d;
}
@media (max-width: 767px) {
  .request-block .calculator-btn {
    width: 140px;
    height: 35px;
  }
  .request-block .calculator-btn svg {
    height: 17px;
  }
}

.request-body {
  padding: 30px 30px 35px;
}
@media (max-width: 993px) {
  .request-body {
    padding: 25px 10px;
  }
}
.request-body .request-form-title {
  font-size: 24px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.583333334;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}
.request-body .request-form-title span {
  border: 1px solid rgba(8, 143, 68, 0.4);
  background-color: rgba(8, 143, 68, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: #088f44;
  margin-inline-end: 10px;
}
@media (max-width: 993px) {
  .request-body .request-form-title {
    font-size: 20px;
  }
}
.request-body .submit-btn {
  height: 56px;
  width: auto;
  min-width: auto;
  border-radius: 30px;
  padding: 0 35px;
}
.request-body .submit-btn svg {
  margin-inline-start: 19px;
}
html[dir="ltr"] .request-body .submit-btn svg {
  transform: scaleX(-1);
}
.request-body .form-control:is(textarea) {
  height: 160px;
}

.steps-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 90px;
  background-color: #f8f8f8;
  border: 1px solid #088f44;
  border-radius: 10px;
  padding: 15px 0;
  margin-bottom: 28px;
}
@media (max-width: 993px) {
  .steps-header {
    gap: 5px;
  }
}
.steps-header .step {
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-header .step-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #666666;
  background-color: transparent;
  padding: 0;
}
@media (max-width: 993px) {
  .steps-header .step-trigger {
    font-size: 14px;
  }
}
.steps-header .step-trigger .number {
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 143, 68, 0.4);
  border-radius: 50%;
  font-size: 14px;
  color: #088f44;
  font-weight: 500;
  margin-inline-end: 10px;
}
@media (max-width: 993px) {
  .steps-header .step-trigger .number {
    width: 30px;
    font-size: 12px;
  }
}
.steps-header .step-trigger .number:after {
  content: attr(data-number);
}
.steps-header .step-trigger:hover {
  background-color: transparent;
}
.steps-header .step-trigger:focus {
  color: #666666;
}
.steps-header .active .step-trigger {
  color: #088f44;
}
.steps-header .active .step-trigger .number {
  border-color: #088f44;
  background-color: #088f44;
  color: #fff;
}
.steps-header .step:has(~ .active) .step-trigger {
  color: #333;
}
.steps-header .step:has(~ .active) .step-trigger .number {
  border-color: #088f44;
  background-color: rgba(8, 143, 68, 0.122);
}
.steps-header .step:has(~ .active) .step-trigger .number:after {
  content: url(../images/icons/check.svg);
}

.appellant-content {
  padding: 20px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  margin-bottom: 15px;
  position: relative;
}
.appellant-content:has(.delete-appellant) {
  padding-top: 80px;
}

.add-appellant {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #088f44;
  border: 1px dashed #088f44;
  transition: all 0.3s ease-in-out;
}
.add-appellant:hover {
  background-color: #088f44;
  color: #fff;
}

.delete-appellant {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f55157;
  transition: all 0.3s ease-in-out;
}
.delete-appellant:hover {
  background-color: #f00;
}

.arbitratorsPage-main {
  padding: 60px 0 84px;
}
@media (max-width: 993px) {
  .arbitratorsPage-main {
    padding: 30px 0 45px;
  }
}

.arbitratorMember-main {
  padding: 60px 0 242px;
}
@media (max-width: 993px) {
  .arbitratorMember-main {
    padding: 40px 0 150px;
  }
}

.arbitratorMember-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.arbitratorMember-info .arbitratorMember-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.arbitratorMember-info .arbitratorMember-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .arbitratorMember-info .arbitratorMember-img {
    margin-bottom: 25px;
  }
}
.arbitratorMember-info .arbitratorMember-name {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  line-height: 0.8;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .arbitratorMember-info .arbitratorMember-name {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.arbitratorMember-info .arbitratorMember-position {
  font-size: 24px;
  line-height: 0.923;
  color: #088f44;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .arbitratorMember-info .arbitratorMember-position {
    font-size: 18px;
  }
}

.arbitratorMember-bg {
  position: relative;
}
.arbitratorMember-bg::after {
  content: "";
  position: absolute;
  top: 182px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url(../images/background/shape1.svg);
  background-size: cover;
}

.arbitratorMember-about {
  margin-top: -182px;
  position: relative;
  z-index: 3;
}
@media (max-width: 993px) {
  .arbitratorMember-about {
    margin-top: -110px;
  }
}
.arbitratorMember-about .memberAbout-block {
  padding: 30px 138px 25px;
}
@media (max-width: 993px) {
  .arbitratorMember-about .memberAbout-block {
    padding: 30px 30px 25px;
  }
}

.otherArbitrator-section {
  padding: 60px 0;
}
@media (max-width: 993px) {
  .otherArbitrator-section {
    padding: 40px 0;
  }
}

.arbitrator-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 0 0 60px;
  gap: 20px;
}
@media (max-width: 993px) {
  .arbitrator-btns {
    padding: 0 0 40px;
    gap: 15px;
  }
}
.arbitrator-btns .main-btn {
  min-width: 155px;
}
@media (max-width: 993px) {
  .arbitrator-btns .main-btn {
    max-width: calc(50% - 7.5px);
  }
}
.arbitrator-btns .main-btn:last-of-type {
  background-color: transparent;
  color: #088f44;
}
.arbitrator-btns .main-btn:last-of-type:hover {
  background-color: #b9272d;
  border-color: #b9272d;
  color: #fff;
}

.coursesPage-main {
  padding: 60px 0 64px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 993px) {
  .coursesPage-main {
    padding: 40px 0 38px;
  }
}

.coursePage-main {
  padding: 50px 0 67px;
  overflow: hidden;
}
@media (max-width: 993px) {
  .coursePage-main {
    padding: 40px 0 150px;
  }
}

.courseMain-content {
  width: 60%;
  max-width: 699px;
}
@media (max-width: 993px) {
  .courseMain-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.courseMain-content .coursePage-title {
  font-size: 36px;
  color: #333;
  font-weight: 700;
  line-height: 0.888889;
  margin: 0 0 40px;
}
@media (max-width: 993px) {
  .courseMain-content .coursePage-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
}
.courseMain-content .coursePage-price {
  font-size: 32px;
  font-weight: 700;
  color: #088f44;
  display: block;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 993px) {
  .courseMain-content .coursePage-price {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
.courseMain-content .coursePage-summary {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #444444;
  margin: 0;
}
@media (max-width: 993px) {
  .courseMain-content .coursePage-summary {
    font-size: 14px;
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}

.coursePage-content {
  background-repeat: repeat;
}

.course-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}
@media (max-width: 993px) {
  .course-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
}

.course-block {
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  border-radius: 15px;
  margin-bottom: 30px;
}
.course-block:last-of-type {
  margin-bottom: 0;
}
.course-block .block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid #d6d6d6;
  padding: 0 20px;
}
@media (max-width: 993px) {
  .course-block .block-header {
    height: 60px;
  }
}
.course-block .block-header.acc-header {
  cursor: pointer;
  border: none;
}
.course-block .block-header.acc-header:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  content: "\f106";
  transition: transform 0.3s ease-in-out;
}
.course-block .block-header.acc-header ~ * {
  border-top: 1px solid #d6d6d6;
}
.course-block .block-header.acc-header.closed:after {
  transform: rotate(180deg);
}
.course-block .block-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #1d1f1f;
  margin: 0;
}
.course-block .block-title img {
  width: 40px;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .course-block .block-title {
    font-size: 18px;
  }
  .course-block .block-title img {
    width: 30px;
    margin-inline-end: 10px;
  }
}

.course-informations {
  padding: 30px 0 57px;
}
@media (max-width: 993px) {
  .course-informations {
    padding: 0 0 45px;
  }
}

.details-block-body {
  padding: 30px 32px 27px;
}
@media (max-width: 993px) {
  .details-block-body {
    padding: 20px 15px 25px;
  }
}
.details-block-body .details-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 993px) {
  .details-block-body .details-item {
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.details-block-body .details-item ~ .details-item {
  margin-top: 30px;
}
@media (max-width: 993px) {
  .details-block-body .details-item ~ .details-item {
    margin-top: 15px;
  }
}
.details-block-body span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.333334;
}
@media (max-width: 993px) {
  .details-block-body span {
    font-size: 16px;
  }
}
.details-block-body span img {
  margin-inline-end: 6px;
}
@media (max-width: 993px) {
  .details-block-body span.value {
    width: 105px;
  }
}
.details-block-body .status {
  --status-color: #088f44;
  color: var(--status-color);
}
.details-block-body .status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--status-color);
  margin-inline-end: 6px;
}
.details-block-body .status.finished {
  --status-color: #a5a5a5;
}
.details-block-body .status.unavailable {
  --status-color: #b9272d;
}
.details-block-body .status.inprogress {
  --status-color: #ffaf44;
}
.details-block-body .status.waiting {
  --status-color: #a5a5a5;
}
.details-block-body .status.canceled {
  --status-color: #f55157;
}

.topics-block-body {
  padding: 20px 20px 29px;
}
@media (max-width: 993px) {
  .topics-block-body {
    padding: 20px 15px 25px;
  }
}
.topics-block-body .topic-item {
  padding: 15px 20px;
  border: 1px solid #eeeeee;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333334;
  border-radius: 10px;
}
.topics-block-body .topic-item ~ .topic-item {
  margin-top: 15px;
}
@media (max-width: 993px) {
  .topics-block-body .topic-item ~ .topic-item {
    margin-top: 10px;
  }
}
@media (max-width: 993px) {
  .topics-block-body .topic-item {
    padding: 10px 15px;
  }
}

.course-form-block {
  border-color: #088f44;
  background-color: #e6f4ec;
}
.course-form-block .block-header {
  border-color: #088f44;
}
@media (max-width: 993px) {
  .course-form-block .block-header {
    padding: 0 10px;
  }
}
.course-form-block .block-header .main-btn {
  background-color: #fff;
  border-width: 1px;
  color: #088f44;
  height: 46px;
  font-size: 14px;
  padding: 0 15px;
}
.course-form-block .block-header .main-btn:hover {
  background-color: #088f44;
  color: #fff;
}
@media (max-width: 993px) {
  .course-form-block .block-header .main-btn {
    font-size: 12px;
    padding: 0 10px;
    height: 40px;
    min-width: auto;
  }
}

.form-block-body {
  padding: 30px 30px 25px;
}
@media (max-width: 1199px) {
  .form-block-body {
    padding: 20px 15px 25px;
  }
}
.form-block-body .form-grid {
  gap: 0 10px;
}
.form-block-body .form-group {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .form-block-body .form-group {
    margin-bottom: 25px;
  }
}
.form-block-body .submit-btn {
  margin-inline-end: 0;
  margin-inline-start: auto;
}
.form-block-body .form-control {
  background-color: #fff;
}
.form-block-body .form-control:focus {
  background-color: #fff;
}

.course-side {
  padding-inline-start: 15px;
}
@media (max-width: 1199px) {
  .course-side {
    padding: 0;
  }
}

.course-side-content {
  position: sticky;
  top: 180px;
  margin-top: -196px;
  padding-bottom: 57px;
}
@media (max-width: 993px) {
  .course-side-content {
    margin-top: -110px;
    position: relative;
    top: unset;
    padding: 0;
  }
}

.course-side-img {
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.0588235294);
  border: 1px solid #f8f8f8;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  padding: 30px;
  margin-bottom: 30px;
}
@media (max-width: 993px) {
  .course-side-img {
    padding: 20px;
  }
}
.course-side-img .img-holder {
  aspect-ratio: 310/270;
  border-radius: 20px;
  border: 1px solid #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
@media (max-width: 1199px) {
  .course-side-img .img-holder {
    border-radius: 15px;
  }
}
@media (max-width: 993px) {
  .course-side-img .img-holder {
    padding: 20px;
  }
}
.course-side-img .img-holder img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.lecturers-block-body {
  padding: 30px 30px 29px;
}
.lecturers-block-body .lecturer-user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.lecturers-block-body .lecturer-user ~ .lecturer-user {
  margin-top: 20px;
}
.lecturers-block-body .lecturer-img {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-inline-end: 10px;
}
.lecturers-block-body .lecturer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lecturers-block-body .lecturer-name {
  font-size: 18px;
  color: #1d1f1f;
  font-weight: 500;
  margin: 0;
}

.course-share {
  padding: 30px 38px;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  background-color: #fff;
}
@media (max-width: 1199px) {
  .course-share {
    padding: 30px;
  }
}
@media (max-width: 993px) {
  .course-share {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.course-share .share-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.5625;
  margin-bottom: 24px;
}
.course-share .share-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.course-share .share-method {
  transition: all 0.3s ease-in-out;
}
.course-share .share-method:hover {
  opacity: 0.9;
}
.course-share .share-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 10px;
  height: 40px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
.course-share .share-link .link-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7857143;
  color: #000;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  direction: ltr;
  text-overflow: ellipsis;
}
.course-share .copy-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #088f44;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  margin-inline-start: 10px;
  transition: all 0.3s ease-in-out;
}
.course-share .copy-link:hover {
  fill: #b9272d;
}

.sitemapPage-main {
  padding: 60px 0 68px;
  width: 100%;
  background-size: cover;
}
@media (max-width: 993px) {
  .sitemapPage-main {
    padding: 30px 0;
  }
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 993px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.sitemap-item {
  border: 1px solid #088f44;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 96px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  color: #444444;
  font-weight: 500;
  line-height: 1.33334;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .sitemap-item {
    font-size: 16px;
    min-height: 85px;
  }
}
.sitemap-item:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(8, 143, 68, 0.35) 0%,
    rgba(8, 143, 68, 0) 80%
  );
  transition: all 0.3s ease-in-out;
}
.sitemap-item:hover {
  background-color: #fff;
  color: #088f44;
  transform: translateY(-5px);
}
.sitemap-item:hover::before {
  opacity: 1;
  transform: translateY(5px);
}
.sitemap-item .pattern {
  position: absolute;
  top: 9px;
}
@media (max-width: 993px) {
  .sitemap-item .pattern {
    display: none;
  }
}
@media (max-width: 767px) {
  .sitemap-item .pattern {
    display: block;
  }
}
.sitemap-item:nth-of-type(odd) .pattern {
  inset-inline-start: 0;
}
@media (max-width: 767px) {
  .sitemap-item:nth-of-type(odd) .pattern {
    inset-inline-start: unset;
    inset-inline-end: 0;
    transform: scaleX(-1);
  }
}
.sitemap-item:nth-of-type(even) .pattern {
  inset-inline-end: 0;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .sitemap-item:nth-of-type(even) .pattern {
    inset-inline-end: unset;
    inset-inline-start: 0;
    transform: none;
  }
}

.contact-main {
  padding: 60px 0 90px;
}
@media (max-width: 993px) {
  .contact-main {
    padding: 40px 0 50px;
  }
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 30px;
  position: relative;
  z-index: 3;
}
@media (max-width: 993px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-methods .contact-method {
  background-color: #fff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 20px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .contact-methods .contact-method {
    padding: 15px;
  }
}
.contact-methods .contact-method:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(29, 31, 31, 0.35) 0%,
    rgba(29, 31, 31, 0) 80%
  );
  transition: all 0.3s ease-in-out;
}
.contact-methods .contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 10px -10px rgba(29, 31, 31, 0.5);
}
.contact-methods .contact-method:hover::before {
  opacity: 1;
  transform: translateY(5px);
}
.contact-methods .contact-method .method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-methods .contact-method .method-text {
  margin-inline-start: 16px;
}
@media (max-width: 993px) {
  .contact-methods .contact-method .method-text {
    margin-inline-start: 15px;
  }
}
.contact-methods .contact-method .title {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.8571429;
  display: flex;
  margin-bottom: 4px;
}
.contact-methods .contact-method .value {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 700;
  color: #1d1f1f;
  line-height: 1.875;
}
.contact-methods .contact-method .value a {
  color: #1d1f1f;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.contact-methods .contact-method .value a:hover {
  color: #088f44;
}
.contact-methods .contact-method .value a ~ a::before {
  content: "--";
  color: #1d1f1f;
  margin: 0 4px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .contact-methods .contact-method .value a ~ a::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .contact-methods .contact-method .value a ~ a {
    margin-top: 5px;
  }
}
.contact-methods .contact-method .en {
  direction: ltr;
}
html[dir="rtl"] .contact-methods .contact-method .en {
  justify-content: flex-end;
}

.contact-block {
  background-color: #fff;
  border-bottom: 5px solid #088f44;
  border-radius: 15px;
}
.contact-block .block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid #d6d6d6;
  padding: 0 30px;
}
@media (max-width: 993px) {
  .contact-block .block-header {
    height: 60px;
  }
}
.contact-block .block-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #1d1f1f;
  margin: 0;
}
.contact-block .block-title img {
  width: 40px;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .contact-block .block-title {
    font-size: 18px;
  }
  .contact-block .block-title img {
    width: 30px;
    margin-inline-end: 10px;
  }
}

.contact-form {
  padding: 20px 30px 25px;
}
@media (max-width: 993px) {
  .contact-form {
    padding: 20px 15px 25px;
  }
}

.contact-map {
  border: 1px solid #d6d6d6;
  height: 595px;
  margin-top: -290px;
  position: relative;
  z-index: 2;
  background: linear-gradient(
    77.41deg,
    rgba(32, 158, 89, 0.098) 7.67%,
    rgba(29, 105, 64, 0.09) 55.76%,
    rgba(206, 44, 51, 0.09) 100%
  );
}
@media (max-width: 993px) {
  .contact-map {
    margin-top: -200px;
  }
}
.contact-map #map {
  width: 100%;
  height: 100%;
}

.complaints-main {
  padding: 60px 0 56px;
  overflow: hidden;
}
.complaints-main .section-head {
  max-width: 570px;
}
@media (max-width: 993px) {
  .complaints-main {
    padding: 40px 0;
  }
}

.complaints-content {
  width: 100%;
  max-width: 1110px;
  margin: auto;
}

.complaints-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .complaints-methods {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}

.complaints-form {
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  padding: 15px 34px 35px;
}
@media (max-width: 993px) {
  .complaints-form {
    padding: 15px 15px 20px;
  }
}
.complaints-form .form-group {
  margin-bottom: 20px;
}

.booking-main {
  padding: 80px 0 60px;
  overflow: hidden;
}
.booking-main .section-head {
  max-width: 840px;
}
@media (max-width: 993px) {
  .booking-main {
    padding: 40px 0 30px;
  }
}

.booking-form {
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 35px 25px;
}
@media (max-width: 1199px) {
  .booking-form {
    padding: 20px 15px 25px;
  }
}

.rate-main {
  padding: 40px 0 56px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .rate-main {
    padding: 40px 0 30px;
  }
}

.rate-content {
  padding: 30px 60px 55px;
  width: 100%;
  max-width: 970px;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  background-color: #fff;
  border-radius: 15px;
  margin: 0 auto;
}
@media (max-width: 993px) {
  .rate-content {
    padding: 15px 15px 20px;
  }
}

.rate-icon {
  width: 74px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.rate-icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.total-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3888888889;
  color: #ffaf44;
  margin: 0 0 30px;
}
.total-rate span {
  font-weight: 400;
  color: #1d1f1f;
}

.rate-item ~ .rate-item {
  margin-top: 20px;
}
.rate-item label {
  width: 100%;
  cursor: pointer;
}
.rate-item .rateItem-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 15px;
  border: 1px solid #d6d6d6;
  background-color: #f8f8f8;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .rate-item .rateItem-content {
    padding: 17px 15px;
  }
}
.rate-item .circle-mark {
  border: 2px solid #79747e;
  background-color: transparent;
  width: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-inline-end: 34px;
  margin-inline-start: 15px;
  transition: all 0.3s ease-in-out;
}
.rate-item .circle-mark::after {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #088f44;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 993px) {
  .rate-item .circle-mark {
    margin-inline-end: 20px;
    margin-inline-start: 0;
  }
}
.rate-item .rate-text {
  font-size: 16px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.5625;
}
.rate-item .rate-stars {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-inline-start: auto;
  gap: 8px;
  fill: #f8b84e;
}
.rate-item input {
  display: none;
}
.rate-item input:checked ~ .rateItem-content {
  border-color: #088f44;
  background-color: rgba(0, 175, 108, 0.1490196078);
}
.rate-item input:checked ~ .rateItem-content .circle-mark {
  border-color: #088f44;
}
.rate-item input:checked ~ .rateItem-content .circle-mark::after {
  opacity: 1;
  transform: scale(1);
}

.search-main {
  padding: 50px 0 90px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .search-main {
    padding: 40px 0 45px;
  }
}

.search-content {
  border-radius: 15px;
  border-bottom: 5px solid #088f44;
  padding: 30px 30px 25px;
  background-color: #fff;
}
@media (max-width: 1199px) {
  .search-content {
    padding: 20px 15px 15px;
  }
}

.search-form {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 993px) {
  .search-form {
    gap: 15px 10px;
  }
}
@media (max-width: 767px) {
  .search-form {
    flex-wrap: wrap;
  }
}
.search-form .search-input {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.search-form .search-select {
  margin: 0;
  width: 393px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .search-form .search-select {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .search-form .search-select {
    width: calc(100% - 58px);
  }
}
.search-form .form-error ~ .form-control {
  border-color: #ee4c45;
}
.search-form .search-btn {
  width: 135px;
  margin-top: 5px;
  padding: 0;
  flex-shrink: 0;
  min-width: auto;
}
.search-form .search-btn svg {
  display: none;
}
@media (max-width: 1199px) {
  .search-form .search-btn {
    width: 48px;
    margin: 0;
  }
  .search-form .search-btn .text {
    display: none;
  }
  .search-form .search-btn svg {
    display: inline;
  }
}

.search-results {
  margin: 30px 0;
}

.no-results {
  min-height: 346px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 993px) {
  .no-results {
    padding: 20px 15px;
    min-height: auto;
  }
}
.no-results img {
  margin: 0 0 30px;
}
@media (max-width: 993px) {
  .no-results img {
    margin-bottom: 20px;
  }
}
.no-results h3 {
  font-size: 24px;
  color: #333;
  font-weight: 300;
  line-height: 1.583334;
  margin: 0;
}

.results-grid {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 1199px) {
  .results-grid {
    padding: 20px 15px;
    gap: 15px;
  }
}
@media (max-width: 993px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-item {
  position: relative;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.0588235294);
  border-radius: 15px;
  max-width: 100%;
  overflow: hidden;
  padding: 19px 13px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.result-item .result-pattern {
  position: absolute;
  bottom: 9px;
  inset-inline-start: 10px;
  opacity: 0.3;
}
.result-item .result-img {
  margin-inline-start: 6px;
  width: 119px;
  aspect-ratio: 119/113;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.result-item .result-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.result-item .result-text {
  text-align: end;
  padding-top: 5px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.result-item .result-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.537;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 83px;
  text-align: start;
  margin: 0 0 6px;
}
.result-item .result-title a {
  color: #333;
  transition: all 0.3s ease-in-out;
}
.result-item .result-title a:hover {
  color: #088f44;
}
.result-item .result-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  line-height: 1.5;
  color: #088f44;
  fill: #088f44;
  transition: all 0.3s ease-in-out;
}
.result-item .result-more svg {
  margin-inline-start: 15px;
}
.result-item .result-more:hover {
  fill: #b9272d;
  color: #b9272d;
}

.newsPage-main {
  padding: 80px 0 64px;
}
@media (max-width: 993px) {
  .newsPage-main {
    padding: 40px 0 30px;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .blog-grid {
    gap: 20px 15px;
  }
}
@media (max-width: 993px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.post-imgs {
  margin-bottom: 80px;
}

.post-main-img {
  width: 100%;
  aspect-ratio: 1512/693;
  display: flex;
}
.post-main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-thumbs-slider {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .post-thumbs-slider {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .post-thumbs-slider {
    margin-top: 10px;
  }
}
.post-thumbs-slider .swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1.5px solid #088f44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  fill: #088f44;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1360px) {
  .post-thumbs-slider .swiper-btn {
    display: none;
  }
}
.post-thumbs-slider .swiper-btn:hover {
  fill: #fff;
  background-color: #088f44;
}
html[dir="ltr"] .post-thumbs-slider .swiper-btn svg {
  transform: scaleX(-1);
}
.post-thumbs-slider .swiper-btn.swiper-btn-prev {
  inset-inline-start: -90px;
}
.post-thumbs-slider .swiper-btn.swiper-btn-next {
  inset-inline-end: -90px;
}
.post-thumbs-slider .swiper-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.post-thumbs-slider .swiper-btn.swiper-button-disabled:hover {
  fill: #088f44;
  background-color: transparent;
}

.post-thumb-img {
  width: 100%;
  aspect-ratio: 170/130;
  border: 1px solid #088f44;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .post-thumb-img {
    border-radius: 7px;
  }
}
.post-thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.swiper-slide-thumb-active .post-thumb-img {
  border-width: 4px;
}
@media (max-width: 767px) {
  .swiper-slide-thumb-active .post-thumb-img {
    border-width: 2px;
  }
}

.post-content {
  padding-bottom: 43px;
}

.post-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 993px) {
  .post-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.post-statistics {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 993px) {
  .post-statistics {
    margin-bottom: 20px;
    justify-content: space-between;
    gap: unset;
  }
}
.post-statistics span {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #1d1f1f;
  line-height: 1.333334;
}
.post-statistics span img {
  margin-inline-end: 10px;
}
@media (max-width: 993px) {
  .post-statistics span {
    font-size: 15px;
    line-height: 1.5;
  }
}

.post-name {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  line-height: 1.77777778;
  margin: 0 0 30px;
}
@media (max-width: 993px) {
  .post-name {
    font-size: 24px;
    line-height: 2;
    margin: 0 0 20px;
  }
}

.post-description p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  line-height: 2.11111112;
  padding: 0 20px;
  margin: 0;
}
@media (max-width: 993px) {
  .post-description p {
    font-size: 16px;
    line-height: 2;
    padding: 0;
  }
}
.post-description blockquote {
  border-inline-start: 5px solid #088f44;
  background-color: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 30px;
}
@media (max-width: 993px) {
  .post-description blockquote {
    margin-bottom: 15px;
  }
}
.post-description blockquote p {
  padding: 20px;
  padding-inline-start: 15px;
}
@media (max-width: 993px) {
  .post-description blockquote p {
    padding: 15px;
    padding-inline-start: 10px;
  }
}

.post-aside {
  padding: 20px 0 0;
  padding-inline-start: 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (max-width: 1199px) {
  .post-aside {
    padding: 0;
  }
}

.post-related-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #1d1f1f;
  margin: 0 0 30px;
}
.post-related-title img {
  width: 40px;
  margin-inline-end: 15px;
}
@media (max-width: 993px) {
  .post-related-title {
    font-size: 18px;
  }
  .post-related-title img {
    width: 30px;
    margin-inline-end: 10px;
  }
}

.post-related-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (max-width: 993px) {
  .post-related-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .post-related-list {
    grid-template-columns: 1fr;
  }
}

.post-share {
  padding: 30px 38px;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  background-color: #fff;
}
@media (max-width: 1199px) {
  .post-share {
    padding: 30px;
  }
}
@media (max-width: 993px) {
  .post-share {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.post-share .share-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 1.5625;
  margin-bottom: 24px;
}
.post-share .share-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.post-share .share-method {
  transition: all 0.3s ease-in-out;
}
.post-share .share-method:hover {
  opacity: 0.9;
}
.post-share .share-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0 10px;
  height: 40px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
.post-share .share-link .link-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7857143;
  color: #000;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  direction: ltr;
  text-overflow: ellipsis;
}
.post-share .copy-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #088f44;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  margin-inline-start: 10px;
  transition: all 0.3s ease-in-out;
}
.post-share .copy-link:hover {
  fill: #b9272d;
}

.galleryPage-main {
  padding: 80px 0 92px;
  overflow: hidden;
}
@media (max-width: 993px) {
  .galleryPage-main {
    padding: 40px 0 30px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1199px) {
  .gallery-grid {
    gap: 20px 15px;
  }
}
@media (max-width: 993px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  display: flex;
  border-radius: 15px;
  width: 100%;
  aspect-ratio: 370/280;
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0) 27.08%,
    rgba(0, 0, 0, 0.8) 52.08%,
    rgba(0, 0, 0, 0) 71.87%,
    rgba(0, 0, 0, 0.63) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-item .gallery-statistics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  padding: 15px 15px 0;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.3s ease-in-out;
}
.gallery-item .gallery-statistics span {
  display: flex;
  align-items: center;
  color: #fff;
  fill: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857;
}
.gallery-item .gallery-statistics span svg {
  margin-inline-start: 5px;
}
.gallery-item .gallery-statistics span:last-of-type {
  margin-inline-start: auto;
}
.gallery-item .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  fill: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.gallery-item .gallery-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 23px 23px;
  font-size: 18px;
  color: #fff;
  line-height: 1.77777778;
  font-weight: 700;
  margin: 0;
  text-align: center;
  opacity: 0;
  z-index: 2;
  transform: translateY(50px);
  transition: all 0.3s ease-in-out;
}
.gallery-item:hover .gallery-statistics,
.gallery-item:hover .icon,
.gallery-item:hover .gallery-name,
.gallery-item:hover::after {
  opacity: 1;
  transform: none;
}

.authentication-main {
  padding: 50px 0 72px;
}
@media (max-width: 993px) {
  .authentication-main {
    padding: 35px 0;
  }
}

.authentication-form {
  width: 100%;
  max-width: 570px;
  padding: 40px 30px 35px;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-bottom: 5px solid #088f44;
  border-radius: 15px;
  margin: auto;
}
@media (max-width: 1199px) {
  .authentication-form {
    padding: 20px 15px 25px;
  }
}
.authentication-form .form-group {
  margin-bottom: 20px;
}
.authentication-form .submit-btn {
  margin-top: 10px;
  width: 100%;
}
.authentication-form .otp-btn {
  margin: 10px auto 0;
  display: flex;
  width: 140px;
}

.authentication-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-bottom: 20px;
}

.forget-text {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1.875;
}
@media (max-width: 993px) {
  .forget-text {
    font-size: 14px;
  }
}
.forget-text a {
  color: #088f44;
  transition: all 0.3s ease-in-out;
}
.forget-text a:hover {
  color: #b9272d;
}

.method-btn {
  background-color: #fff;
  color: #333;
  width: 100%;
  margin-top: 20px;
}
.method-btn span {
  color: #088f44;
  transition: all 0.3s ease-in-out;
}
.method-btn:hover {
  color: #fff;
  border-color: #b9272d;
  background-color: #b9272d;
}
.method-btn:hover span {
  color: #fff;
}

.form-hint {
  text-align: center;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  padding: 30px 0 0;
}
.form-hint a {
  color: #088f44;
  transition: all 0.3s ease-in-out;
}
.form-hint a:hover {
  color: #b9272d;
}

.otp-content {
  padding: 50px 0 10px;
  text-align: center;
  display: none;
}

.otp-title {
  font-size: 20px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.25;
  margin: 0 0 24px;
}

.otp-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  direction: ltr;
}
.otp-inputs .otp-field {
  width: 48px;
  height: 58px;
  text-align: center;
  margin: 0;
  font-size: 16px;
  padding: 0;
}
html[dir="rtl"] .otp-inputs .otp-field::-moz-placeholder {
  text-align: center;
}
html[dir="rtl"] .otp-inputs .otp-field::placeholder {
  text-align: center;
}
html[dir="ltr"] .otp-inputs .otp-field::-moz-placeholder {
  text-align: center;
}
html[dir="ltr"] .otp-inputs .otp-field::placeholder {
  text-align: center;
}

.resend {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.857142857;
  font-size: 14px;
  color: #1d1f1f;
  margin: 24px 0 20px;
}
.resend button {
  color: #088f44;
  stroke: #088f44;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resend button .prgress {
  margin-inline-end: 3px;
  position: relative;
  display: none;
}
.resend button .prgress svg {
  display: block;
}
.resend button .prgress circle {
  transition: all 1s linear;
}
.resend button .prgress #c1 {
  transition: all 1s linear;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
  fill: transparent;
}
.resend button .prgress #c2 {
  transition: all 1s linear;
  stroke: #088f44;
  stroke-width: 5;
  stroke-linecap: round;
  fill: transparent;
}
.resend button .prgress #counterText {
  color: #088f44;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.resend button > svg {
  transition: all 1s ease-in-out;
  display: block;
}
.resend button span {
  text-decoration: underline;
  margin-inline-start: 5px;
}
.resend button:hover svg {
  transform: rotate(360deg);
}
.resend button:hover span {
  text-decoration: none;
}
.resend button:disabled {
  cursor: not-allowed;
}
.resend button:disabled .prgress {
  display: block;
}
.resend button:disabled > svg {
  display: none;
}
.resend button:disabled span {
  text-decoration: none;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 15px 100px;
  background-color: #fff;
}
@media (max-width: 993px) {
  .error-page {
    padding: 20px 15px 45px;
  }
}

.error-img {
  width: 100%;
  max-width: 370px;
  aspect-ratio: 1;
}
.error-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.error-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.222223;
  text-align: center;
  color: #1d1f1f;
  margin: -18px 0 50px;
}
@media (max-width: 993px) {
  .error-title {
    margin-top: -30px;
    font-size: 30px;
    margin-bottom: 35px;
    line-height: 2;
  }
}

.error-btn {
  min-width: 106px;
  padding: 0 28px;
}
@media (max-width: 993px) {
  .error-btn {
    padding: 0 15px;
  }
}

.accountPage-main {
  padding: 60px 0 47px;
  width: 100%;
}
@media (max-width: 993px) {
  .accountPage-main {
    padding: 40px 0 30px;
  }
}

.account-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 1199px) {
  .account-row {
    gap: 15px;
  }
}
@media (max-width: 993px) {
  .account-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.account-aside {
  width: 100%;
  overflow: hidden;
  padding-inline-end: 22.5px;
}
@media (max-width: 1199px) {
  .account-aside {
    padding: 0;
  }
}
.account-aside .account-list {
  border-bottom: 5px solid #088f44;
  background-color: #fff;
  border-radius: 15px;
}
.account-aside .account-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
  height: 56px;
  border-inline-start: 4px solid #fff;
  border-top: 1px solid #eee;
  position: relative;
  transform: perspective(1px);
  font-size: 16px;
  font-weight: 500;
  color: #1d1f1f;
  fill: #1d1f1f;
  transition: all 0.3s ease-in-out;
}
.account-aside .account-list a svg {
  margin-inline-end: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-aside .account-list a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: -1px;
  background-color: #088f44;
  opacity: 0.2;
  display: none;
  transition: all 0.3s ease-in-out;
}
.account-aside .account-list a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-inline-start: 10px solid #088f44;
  border-inline-end: 0;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 100%;
  display: none;
}
@media (max-width: 1199px) {
  .account-aside .account-list a::after {
    content: unset;
  }
}
.account-aside .account-list a:first-of-type {
  border-top: none;
  border-radius: 15px 15px 0 0;
}
.account-aside .account-list a:first-of-type::before {
  border-radius: 15px 15px 0 0;
}
.account-aside .account-list a:last-of-type {
  color: #b9272d;
  fill: #b9272d;
}
.account-aside .account-list a:hover {
  color: #088f44;
  fill: #088f44;
}
.account-aside .account-list a.active {
  color: #088f44;
  fill: #088f44;
  border-inline-start-color: #088f44;
}
.account-aside .account-list a.active::before,
.account-aside .account-list a.active::after {
  display: block;
}

.account-content {
  width: 100%;
  overflow: hidden;
  padding-inline-start: 7.5px;
}
@media (max-width: 1199px) {
  .account-content {
    padding: 0;
  }
}

.account-block {
  width: 100%;
  padding: 30px;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  background-color: #fff;
  height: 100%;
}
@media (max-width: 993px) {
  .account-block {
    padding: 20px 15px;
    height: auto;
  }
}

.personalInfo-form {
  padding-top: 10px;
}

.myCoursesPage-main {
  padding: 50px 0 64px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .myCoursesPage-main {
    padding: 40px 0 30px;
  }
}

.myCourses-page .course-item .course-pattern {
  width: calc(100% - 26px);
}
@media (max-width: 993px) {
  .myCourses-page .course-item .course-pattern {
    width: 239px;
  }
}
.myCourses-page .course-item .course-info {
  padding: 20px 20px 15px;
}
@media (max-width: 993px) {
  .myCourses-page .course-item .course-info {
    padding: 20px 15px 15px;
  }
}
.myCourses-page .course-item .course-img {
  aspect-ratio: 330/220;
}

.myAppointmentsPage-main {
  padding: 50px 0 84px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .myAppointmentsPage-main {
    padding: 40px 0 40px;
  }
}

.appointments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
@media (max-width: 1199px) {
  .appointments-grid {
    gap: 15px;
  }
}
@media (max-width: 993px) {
  .appointments-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 447px) {
  .appointments-grid {
    grid-template-columns: 1fr;
  }
}

.appointment-item {
  background-color: #fff;
  border-radius: 15px;
  max-width: 100%;
  position: relative;
  border: 1px solid #f8f8f8;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.0588235294);
  padding: 50px 0 0;
}
@media (max-width: 993px) {
  .appointment-item {
    padding: 50px 0 0;
  }
}
@media (max-width: 447px) {
  .appointment-item {
    padding: 15px 0 0;
  }
}
.appointment-item .appointment-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 993px) {
  .appointment-item .appointment-feature {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 0 15px;
  }
}
.appointment-item .appointment-feature:last-of-type {
  border-top: 1px solid #eeeeee;
  padding-top: 15px;
}
@media (max-width: 993px) {
  .appointment-item .appointment-feature:last-of-type {
    padding-top: 10px;
  }
}
.appointment-item .appointment-feature:last-of-type .title {
  font-weight: 500;
}
.appointment-item .appointment-feature:last-of-type .value {
  font-weight: 400;
}
.appointment-item .value {
  font-weight: 500;
  color: #088f44;
  position: relative;
}
.appointment-item .value:hover .hint {
  visibility: visible;
  opacity: 1;
}
.appointment-item .time .value {
  display: flex;
  align-items: center;
  color: #a5a5a5;
}
.appointment-item .time .value svg {
  margin-inline-end: 6px;
}
.appointment-item .desc {
  flex-direction: column;
  align-items: flex-start;
}
.appointment-item .desc .value {
  background-color: #f8f8f8;
  border: 1px solid #eeeeee;
  padding: 17px 15px 13px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.857142857;
  color: #333;
  margin-top: 6px;
}
.appointment-item .status .value {
  --status-color: #088f44;
  color: var(--status-color);
  display: flex;
  align-items: center;
}
.appointment-item .status .value::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--status-color);
  margin-inline-end: 6px;
}
.appointment-item .status .value.finished {
  --status-color: #a5a5a5;
}
.appointment-item .status .value.unavailable {
  --status-color: #b9272d;
}
.appointment-item .status .value.inprogress {
  --status-color: #ffaf44;
}
.appointment-item .status .value.waiting {
  --status-color: #a5a5a5;
}
.appointment-item .status .value.canceled {
  --status-color: #f55157;
}
.appointment-item .appointment-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-top: 1px solid #eeeeee;
  padding: 15px 15px 10px;
}
@media (max-width: 993px) {
  .appointment-item .appointment-btns {
    padding: 10px;
    gap: 10px;
  }
}
.appointment-item .appointment-btn {
  width: 80px;
  height: 30px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 10px;
  inset-inline-end: 15px;
  z-index: 3;
}
@media (max-width: 993px) {
  .appointment-item .appointment-btn {
    inset-inline-end: 10px;
  }
}
@media (max-width: 447px) {
  .appointment-item .appointment-btn {
    position: relative;
    inset: unset;
    margin-inline-start: auto;
    margin-inline-end: 10px;
    margin-bottom: 10px;
  }
}
.appointment-item .appointment-btn.cancel-btn {
  color: #b9272d;
  border: 2px solid #b9272d;
  background-color: #fff;
}
.appointment-item .appointment-btn.cancel-btn:hover {
  color: #fff;
  background-color: #b9272d;
}
.appointment-item .appointment-btn.cancel-btn:hover .hint {
  opacity: 1;
  visibility: visible;
}
.appointment-item .hint {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.83333334;
  border: 1px solid #eeeeee;
  padding: 10px;
  width: 209px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  color: #b9272d;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .appointment-item .hint {
    display: none;
  }
}

.disputes-main {
  padding: 50px 0 37px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-repeat: repeat;
}
@media (max-width: 993px) {
  .disputes-main {
    padding: 40px 0 45px;
  }
}

.disputes-content .section-head {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .disputes-content .section-head {
    flex-direction: column;
    justify-content: center;
  }
}
.disputes-content .section-title {
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .disputes-content .section-title {
    flex-direction: column;
  }
}
.disputes-content .section-title img {
  margin: 0;
  margin-inline-end: 10px;
}
@media (max-width: 767px) {
  .disputes-content .section-title img {
    margin: 0 0 5px;
  }
}

.disputes-search {
  position: relative;
}
@media (max-width: 767px) {
  .disputes-search {
    width: 100%;
    margin-top: 20px;
  }
}
.disputes-search .search-input {
  width: 390px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0 14px;
  padding-inline-start: 42px;
  color: #1d1f1f;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.disputes-search .search-input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #96a0b6;
}
.disputes-search .search-input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #96a0b6;
}
.disputes-search .search-input:focus {
  border-color: #088f44;
}
@media (max-width: 767px) {
  .disputes-search .search-input {
    width: 100%;
  }
}
.disputes-search .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  inset-inline-start: 14px;
  fill: #96a0b6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.disputes-search .search-icon:is(button):hover,
.disputes-search .search-icon:is(a):hover {
  fill: #088f44;
}

.disputes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .disputes-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 993px) {
  .disputes-list {
    gap: 20px 15px;
  }
}
@media (max-width: 767px) {
  .disputes-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.dispute-item {
  border-radius: 15px;
  border: 1px solid #f8f8f8;
  background-color: #fff;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.0588235294);
  font-size: 16px;
}
.dispute-item .dispute-information {
  padding: 25px 20px 20px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dispute-item .information-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
}
.dispute-item .title {
  color: #1d1f1f;
}
.dispute-item .dispute-number {
  font-weight: 500;
  color: #088f44;
}
.dispute-item .dispute-status {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1d1f1f;
}
.dispute-item .dispute-status::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background-color: #088f44;
}
.dispute-item .dispute-status.processing {
  color: #a5a5a5;
}
.dispute-item .dispute-status.processing::before {
  background-color: #a5a5a5;
}
.dispute-item .dispute-status.inprogress::before {
  background-color: #5196f3;
}
.dispute-item .dispute-status.closed::before {
  background-color: #ffaf44;
}
.dispute-item .dispute-status.rejected::before {
  background-color: #f55157;
}
.dispute-item .dispute-status.completed::before {
  background-color: #088f44;
}
.dispute-item .dispute-parties {
  padding: 15px 20px 20px;
  border-bottom: 1px solid #eeeeee;
}
.dispute-item .parties-title {
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.dispute-item .parties-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.dispute-item .party-item {
  margin: 0;
  color: #344554;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
}
.dispute-item .dispute-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dispute-item .action-btn {
  height: 40px;
  min-width: 110px;
}

.singleDispute-main {
  padding: 58px 0 60px;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-repeat: repeat;
}
@media (max-width: 993px) {
  .singleDispute-main {
    padding: 40px 0 45px;
  }
}

.singleDispute-content .section-head {
  max-width: 100%;
  margin-bottom: 30px;
}
.singleDispute-content .section-title {
  align-items: start;
}
@media (max-width: 767px) {
  .singleDispute-content .section-title {
    align-items: center;
  }
}

.status-bar {
  display: flex;
  align-items: center;
  padding: 24px 36px;
  background-color: #f8f8f8;
  border: 1px solid #a5a5a5;
  border-radius: 10px;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .status-bar {
    padding: 15px 10px;
  }
}
@media (max-width: 767px) {
  .status-bar {
    padding: 15px 25px;
  }
}
.status-bar .status-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #a5a5a5;
}
@media (max-width: 1199px) {
  .status-bar .status-item {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .status-bar .status-item {
    justify-content: flex-start;
    display: none;
  }
}
.status-bar .status-item .mark {
  align-items: center;
  justify-content: center;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #088f44;
  margin-inline-end: 14px;
  display: none;
}
.status-bar .status-item .mark img {
  display: none;
}
@media (max-width: 993px) {
  .status-bar .status-item .mark {
    margin-inline-end: 7px;
  }
}
@media (max-width: 767px) {
  .status-bar .status-item .mark {
    margin-inline-end: 10px;
  }
}
.status-bar .status-item.processing .mark {
  border: 2px solid #d6d6d6;
  background-color: transparent;
}
.status-bar .status-item.inprogress .mark {
  background-color: #5196f3;
}
.status-bar .status-item.closed .mark {
  background-color: #ffaf44;
}
.status-bar .status-item.completed .mark {
  background-color: #088f44;
}
.status-bar .status-item.rejected .mark {
  background-color: #f55157;
}
@media (max-width: 1199px) {
  .status-bar .status-item.rejected {
    justify-content: flex-start;
  }
}
.status-bar .status-item::after {
  content: "";
  display: block;
  height: 4px;
  border-radius: 2px;
  background-color: #d6d6d6;
  width: 120px;
  margin: 0 20px;
}
@media (max-width: 1199px) {
  .status-bar .status-item::after {
    display: none;
  }
}
.status-bar .status-item.active {
  color: #1d1f1f;
}
.status-bar .status-item.active .mark {
  display: flex;
}
@media (max-width: 767px) {
  .status-bar .status-item.active {
    display: flex;
  }
}
.status-bar .status-item.done {
  color: #1d1f1f;
}
.status-bar .status-item.done .mark {
  display: flex;
  background-color: #088f44;
  border-color: #088f44;
}
.status-bar .status-item.done .mark img {
  display: block;
}
.status-bar .status-item.done::after {
  background-color: #088f44;
}
.status-bar .status-item:last-of-type::after {
  display: none;
}
.status-bar:has(.done) .status-item::after {
  width: 122px;
  margin: 0 15px;
}
.status-bar:has(.done + .done) .status-item::after {
  width: 115px;
}
.status-bar:has(.done + .done + .done) .status-item::after {
  width: 107px;
}
.status-bar:has(.done + .done + .done + .done) .status-item::after {
  width: 100px;
}

.singleDispute-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.singleDispute-description .title {
  display: flex;
  align-items: center;
  height: 40px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #666666;
}

.singleDispute-information {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 993px) {
  .singleDispute-information {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .singleDispute-information {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.singleDispute-information.col_2 {
  grid-template-columns: 1fr 1fr;
}
.singleDispute-information .information-item .title {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .singleDispute-information .information-item .title {
    margin: 0;
  }
}
.singleDispute-information .information-item .value {
  display: flex;
  align-items: center;
  height: 56px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.858;
  font-weight: 400;
  color: #1d1f1f;
}

.singleDispute-parties .parties-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 993px) {
  .singleDispute-parties .parties-list {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .singleDispute-parties .parties-list {
    grid-template-columns: 1fr;
  }
}
.singleDispute-parties .party-head {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 16px;
  border-start-start-radius: 10px;
  border-start-end-radius: 10px;
  background-color: #088f44;
  color: #fff;
  font-size: 14px;
  line-height: 1.858;
  font-weight: 400;
  margin: 0;
}
.singleDispute-parties .party-body {
  width: 100%;
}
.singleDispute-parties .party-item {
  border: 1px solid #d6d6d6;
  background-color: #fff;
  border-top: none;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 15px 13px;
  color: #1d1f1f;
  font-size: 14px;
  line-height: 1.858;
  font-weight: 400;
}
.singleDispute-parties .party-item:last-of-type {
  border-end-end-radius: 10px;
  border-end-start-radius: 10px;
}
.singleDispute-parties .singleDispute-party:last-of-type .party-head {
  background-color: #1d1f1f;
}

.singleDispute-details .value {
  display: flex;
  align-items: center;
  min-height: 56px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  padding: 14px 15px;
  font-size: 14px;
  line-height: 1.858;
  font-weight: 400;
  color: #1d1f1f;
  margin: 0;
}

.singleDispute-files {
  padding-top: 10px;
}
.singleDispute-files .files-title {
  font-size: 36px;
  color: #1d1f1f;
  font-weight: 700;
  line-height: 1.2223;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .singleDispute-files .files-title {
    font-size: 32px;
    text-align: center;
  }
}
.singleDispute-files .framed-files {
  border: 1px solid #088f44;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 767px) {
  .singleDispute-files .framed-files {
    padding: 20px;
    border-radius: 20px;
  }
}
.singleDispute-files .title {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  line-height: 2.25;
  height: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .singleDispute-files .title {
    font-size: 16px;
    line-height: 1.875;
  }
}

.ordersPage-main {
  padding: 50px 0 20px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .ordersPage-main {
    padding: 40px 0 30px;
  }
}

.orders-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .orders-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 993px) {
  .orders-list {
    gap: 20px 15px;
  }
}
@media (max-width: 767px) {
  .orders-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.order-item {
  border-radius: 15px;
  border: 1px solid #f8f8f8;
  background-color: #fff;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.0588235294);
  font-size: 16px;
  position: relative;
}
.order-item .order-information {
  padding: 30px 20px 16px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.order-item .information-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
  gap: 10px 5px;
}
.order-item .title {
  color: #1d1f1f;
}
.order-item .value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #666;
  fill: #666;
}
.order-item .dispute-number {
  font-weight: 500;
  color: #088f44;
}
.order-item .dispute-number.undefined {
  color: #a5a5a5;
}
.order-item .stage {
  width: 100%;
  background-color: rgba(8, 143, 68, 0.1);
  padding: 10px 10px 12px;
  font-size: 14px;
  color: #088f44;
  font-weight: 400;
  line-height: 1.858;
  border-radius: 10px;
}
.order-item .order-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eeeeee;
  gap: 5px;
  line-height: 1.5;
  font-size: inherit;
}
.order-item .status-title {
  color: #1d1f1f;
  font-weight: 500;
}
.order-item .status-value {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  --color: #088f44;
  color: var(--color);
}
.order-item .status-value::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background-color: var(--color);
}
.order-item .status-value.processing {
  --color: #a5a5a5;
}
.order-item .status-value.inprogress {
  --color: #5196f3;
}
.order-item .status-value.waiting {
  --color: #ffaf44;
}
.order-item .status-value.closed {
  --color: #ffaf44;
}
.order-item .status-value.hold {
  --color: #a5a5a5;
}
.order-item .status-value.canceled {
  --color: #b9272d;
}
.order-item .status-value.rejected {
  --color: #b9272d;
}
.order-item .status-value.completed {
  --color: #088f44;
}
.order-item .order-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px 15px;
}
.order-item .action-btn {
  height: 40px;
  min-width: 110px;
}
.order-item .order-bell {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  transform: translate(-50%, -50%);
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  stroke: #fff;
  fill: #fff;
  color: #fff;
  background-color: #b9272d;
  transition: all 0.3s ease-in-out;
}
.order-item .order-bell:hover {
  background-color: #088f44;
}
html[dir="ltr"] .order-item .order-bell {
  transform: translate(50%, -50%);
}
@media (max-width: 1199px) {
  .order-item .order-bell {
    transform: none;
    top: -10px;
    inset-inline-end: -10px;
  }
  html[dir="ltr"] .order-item .order-bell {
    transform: none;
  }
}

.singleOrderPage-main {
  padding: 45px 0 30px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 993px) {
  .singleOrderPage-main {
    padding: 40px 0 30px;
  }
}

.singleOrder-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  gap: 15px;
}
@media (max-width: 993px) {
  .singleOrder-content {
    grid-template-columns: 1fr;
  }
}

.singleOrder-block {
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}
.singleOrder-block:last-of-type {
  margin: 0;
}
.singleOrder-block .block-title {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px;
  font-size: 20px;
  color: #1d1f1f;
  font-weight: 700;
  margin: 0;
}
.singleOrder-block .block-title img {
  width: 40px;
}
.singleOrder-block .block-body {
  border-top: 1px solid #d6d6d6;
  padding: 15px;
}
.singleOrder-block .singleOrder-information {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.singleOrder-block .information-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  min-height: 52px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  gap: 0 10px;
}
.singleOrder-block .information-item .title {
  color: #666666;
}
.singleOrder-block .information-item .value {
  color: #1d1f1f;
  transition: all 0.3s ease-in-out;
}
.singleOrder-block .information-item .value:is(a) {
  direction: ltr;
}
.singleOrder-block .information-item .value:is(a):hover {
  color: #088f44;
}
@media (max-width: 993px) {
  .singleOrder-block .information-item {
    padding: 10px 15px;
  }
}
.singleOrder-block .singleOrder-against {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 767px) {
  .singleOrder-block .singleOrder-against {
    grid-template-columns: 1fr;
  }
}
.singleOrder-block .against-information {
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 15px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 993px) {
  .singleOrder-block .against-information {
    padding: 10px 15px;
  }
}
.singleOrder-block .against-information .information-item {
  border: none;
  padding: 0;
  min-height: auto;
}
.singleOrder-block .order-information {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 15px;
}
@media (max-width: 1199px) {
  .singleOrder-block .order-information {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 993px) {
  .singleOrder-block .order-information {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .singleOrder-block .order-information {
    grid-template-columns: 1fr;
  }
}
.singleOrder-block .order-information .information-item {
  justify-content: space-between;
  min-height: auto;
  height: 44px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}
.singleOrder-block .order-information .information-item .dispute-number {
  color: #088f44;
  font-size: 16px;
  font-weight: 500;
}
.singleOrder-block .order-information .information-item .order-date {
  display: flex;
  align-items: center;
  gap: 7px;
  fill: #a5a5a5;
}
.singleOrder-block .order-information .information-item .order-date svg {
  width: 15px;
}
.singleOrder-block .attachments-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.singleOrder-block .download-item {
  min-height: auto;
  height: 57px;
  padding: 0 22px;
  background-color: #f8f8f8;
}
.singleOrder-block .download-item .file-icon {
  width: 25px;
}
.singleOrder-block .download-item .file-icon svg {
  width: 100%;
}
.singleOrder-block .download-item h6 {
  margin: 0 18px;
  width: 100%;
}
.singleOrder-block .download-item h6 span {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
}
.singleOrder-block .download-item h6 .file-name {
  line-height: 2.2857;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.singleOrder-block .download-item svg {
  width: 16px;
}
.singleOrder-block .download-item::before {
  display: none;
}
.singleOrder-block .notes-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.singleOrder-block .note-item {
  padding: 10px 15px;
  background-color: #f8f8f8;
  border-radius: 15px;
  color: #333;
}
.singleOrder-block .note-item .note-content {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7143;
  margin: 0 0 5px;
}
.singleOrder-block .note-item .note-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2857;
  display: block;
}
.singleOrder-block.accordion-block .block-title {
  cursor: pointer;
}
.singleOrder-block.accordion-block .block-title svg {
  margin-inline-start: auto;
  margin-inline-end: 7px;
  fill: #666;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.singleOrder-block.accordion-block .block-title.active svg {
  transform: rotate(0deg);
}
@media (max-width: 767px) {
  .singleOrder-block.accordion-block .block-title svg {
    margin-inline-end: 0;
    transform: rotate(0);
  }
  .singleOrder-block.accordion-block .block-title.active svg {
    transform: rotate(180deg);
  }
  .singleOrder-block.accordion-block .block-body {
    display: none;
  }
}

.identities-files {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .identities-files {
    flex-direction: column;
  }
}

.identity-item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  width: 216px;
  height: 42px;
  background-color: #f8f8f8;
  padding: 0 16px;
}
@media (max-width: 993px) {
  .identity-item {
    padding: 0 10px;
    width: 202px;
  }
}
@media (max-width: 767px) {
  .identity-item {
    padding: 0 15px;
    width: 100%;
  }
}
.identity-item svg {
  width: 16px;
  flex-shrink: 0;
}
.identity-item .file-icon {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.identity-item .file-icon svg {
  width: auto;
  max-width: 100%;
}
.identity-item .file-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d1f1f;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  margin: 0 16px;
}
@media (max-width: 993px) {
  .identity-item .file-name {
    margin: 0 10px;
  }
}
@media (max-width: 993px) {
  .identity-item .arrow {
    animation: scr-pos 2s linear infinite;
  }
}
.identity-item.pdf {
  background-color: #f8e9ea;
  fill: #d9434d;
}
.identity-item.png {
  background-color: #eeeeee;
  fill: #1d1f1f;
  stroke: #1d1f1f;
}
.identity-item.jpg {
  background-color: rgba(255, 175, 68, 0.1019607843);
  fill: #ffaf44;
}
.identity-item.xls {
  background-color: #e6f4ec;
  fill: #1e7145;
}
.identity-item.docx {
  background-color: #ebecee;
  fill: #2a5699;
}
.identity-item:hover .arrow {
  animation: scr-pos 2s linear infinite;
}

.singleOrder-stage {
  padding: 15px 0;
}
.singleOrder-stage .stage-title {
  font-size: 16px;
  color: #1d1f1f;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 10px;
}
.singleOrder-stage .stages-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border: 1px solid #088f44;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .singleOrder-stage .stages-bar {
    justify-content: flex-start;
    padding: 15px 20px;
  }
}
.singleOrder-stage .stage-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8571;
  color: #1d1f1f;
}
@media (max-width: 767px) {
  .singleOrder-stage .stage-item {
    justify-content: flex-start;
    display: none;
  }
}
.singleOrder-stage .stage-item::before {
  content: "";
  align-items: center;
  justify-content: center;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #088f44;
  margin-inline-end: 16px;
  display: none;
}
.singleOrder-stage .stage-item::after {
  content: "";
  display: block;
  height: 2px;
  border-radius: 1px;
  background-color: #d6d6d6;
  width: 110px;
  margin: 0 40px;
}
@media (max-width: 1199px) {
  .singleOrder-stage .stage-item::after {
    width: 70px;
    margin: 0 20px;
  }
}
@media (max-width: 993px) {
  .singleOrder-stage .stage-item::after {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .singleOrder-stage .stage-item::after {
    display: none;
  }
}
.singleOrder-stage .stage-item.active,
.singleOrder-stage .stage-item.done {
  color: #088f44;
}
.singleOrder-stage .stage-item.active .mark,
.singleOrder-stage .stage-item.done .mark {
  display: flex;
}
.singleOrder-stage .stage-item.active::before,
.singleOrder-stage .stage-item.done::before {
  display: flex;
}
@media (max-width: 767px) {
  .singleOrder-stage .stage-item.active {
    display: flex;
  }
}
.singleOrder-stage .stage-item.done::after {
  background-color: #088f44;
}
.singleOrder-stage .stage-item:last-of-type::after {
  display: none;
}

.singleOrder-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 30px);
  margin: 0 -15px;
  border-block: 1px solid #eeeeee;
  padding: 15px;
  line-height: 1.5;
}
.singleOrder-status span {
  font-size: 16px;
  color: #1d1f1f;
  font-weight: 500;
}
.singleOrder-status .status-value {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  --color: #088f44;
  color: var(--color);
}
.singleOrder-status .status-value::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background-color: var(--color);
}
.singleOrder-status .status-value.processing {
  --color: #a5a5a5;
  color: #666;
}
.singleOrder-status .status-value.inprogress {
  --color: #5196f3;
}
.singleOrder-status .status-value.waiting {
  --color: #ffaf44;
}
.singleOrder-status .status-value.closed {
  --color: #ffaf44;
}
.singleOrder-status .status-value.hold {
  --color: #a5a5a5;
}
.singleOrder-status .status-value.canceled {
  --color: #b9272d;
}
.singleOrder-status .status-value.rejected {
  --color: #b9272d;
}
.singleOrder-status .status-value.completed {
  --color: #088f44;
}

.orderDispute-information {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px 0 0;
}
.orderDispute-information .dispute-fees-information {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 767px) {
  .orderDispute-information .dispute-fees-information {
    grid-template-columns: 1fr;
  }
}

.dispute-information-item .item-label {
  font-size: 16px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.5;
  margin: 0 0 10px;
}
.dispute-information-item .item-description {
  padding: 15px;
  background-color: #f8f8f8;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 400;
  color: #444444;
  line-height: 2.286;
  margin: 0;
}
.dispute-information-item .item-description.active {
  background-color: rgba(8, 143, 68, 0.1019607843);
  color: #088f44;
}
.dispute-fees-information .dispute-information-item .item-description {
  padding: 12px 15px;
}

.singleOrder-actions {
  padding: 15px 0 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .singleOrder-actions {
    gap: 10px;
  }
}

.singleOrder-btn {
  min-width: auto;
  width: calc(100% - 5px);
  max-width: 160px;
}
.singleOrder-btn.cancel-btn {
  background-color: #b9272d;
  border-color: #b9272d;
  cursor: pointer;
}
.singleOrder-btn.cancel-btn:hover {
  color: #fff;
  background-color: #088f44;
  border-color: #088f44;
}

.singleOrder-fee {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.singleOrder-fee .fee-title {
  padding: 0;
  gap: 6px;
  background-color: rgba(8, 143, 68, 0.1019607843);
  border: 1px solid #088f44;
  height: 48px;
  border-radius: 24px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 500;
  color: #088f44;
  cursor: pointer;
}
.singleOrder-fee .fee-title svg {
  width: 12px;
  transform: rotate(180deg);
  fill: #088f44;
  transition: all 0.3s ease-in-out;
}
.singleOrder-fee .fee-title.active svg {
  transform: rotate(0);
}
@media (max-width: 993px) {
  .singleOrder-fee .fee-title {
    width: 100%;
    justify-content: space-between;
  }
}
.singleOrder-fee .fee-body {
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  padding: 15px;
}
.singleOrder-fee .form-grid {
  gap: 0 10px;
}
.singleOrder-fee .form-group {
  margin-bottom: 15px;
}
@media (max-width: 993px) {
  .singleOrder-fee .main-btn {
    width: 100%;
  }
}
.singleOrder-fee .fee-files {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.singleOrder-fee .fee-file {
  display: flex;
  align-items: center;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 300px;
  height: 42px;
  background-color: #f8f8f8;
  padding: 0 15px;
}
@media (max-width: 993px) {
  .singleOrder-fee .fee-file {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .singleOrder-fee .fee-file {
    padding: 0 15px;
    width: 100%;
    max-width: none;
  }
}
.singleOrder-fee .fee-file svg {
  width: 16px;
  flex-shrink: 0;
}
.singleOrder-fee .fee-file .file-icon {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.singleOrder-fee .fee-file .file-icon svg {
  width: auto;
  max-width: 100%;
}
.singleOrder-fee .fee-file .file-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d1f1f;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  margin: 0 16px;
}
@media (max-width: 993px) {
  .singleOrder-fee .fee-file .file-name {
    margin: 0 10px;
  }
}
@media (max-width: 993px) {
  .singleOrder-fee .fee-file .arrow {
    animation: scr-pos 2s linear infinite;
  }
}
.singleOrder-fee .fee-file.pdf {
  background-color: #f8e9ea;
  fill: #d9434d;
}
.singleOrder-fee .fee-file.png {
  background-color: #eeeeee;
  fill: #1d1f1f;
  stroke: #1d1f1f;
}
.singleOrder-fee .fee-file:hover .arrow {
  animation: scr-pos 2s linear infinite;
}

.singleOrder-verdict {
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  padding: 15px;
}
.singleOrder-verdict .verdict-label {
  font-size: 16px;
  font-weight: 500;
  color: #1d1f1f;
  line-height: 1.5;
  margin-bottom: 10px;
}
.singleOrder-verdict .verdict-files {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.singleOrder-verdict .verdict-file {
  display: flex;
  align-items: center;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 300px;
  height: 42px;
  background-color: #f8f8f8;
  padding: 0 15px;
}
@media (max-width: 993px) {
  .singleOrder-verdict .verdict-file {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .singleOrder-verdict .verdict-file {
    padding: 0 15px;
    width: 100%;
    max-width: none;
  }
}
.singleOrder-verdict .verdict-file svg {
  width: 16px;
  flex-shrink: 0;
}
.singleOrder-verdict .verdict-file .file-icon {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.singleOrder-verdict .verdict-file .file-icon svg {
  width: auto;
  max-width: 100%;
}
.singleOrder-verdict .verdict-file .file-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d1f1f;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  margin: 0 16px;
}
@media (max-width: 993px) {
  .singleOrder-verdict .verdict-file .file-name {
    margin: 0 10px;
  }
}
@media (max-width: 993px) {
  .singleOrder-verdict .verdict-file .arrow {
    animation: scr-pos 2s linear infinite;
  }
}
.singleOrder-verdict .verdict-file.pdf {
  background-color: #f8e9ea;
  fill: #d9434d;
}
.singleOrder-verdict .verdict-file.png {
  background-color: #eeeeee;
  fill: #1d1f1f;
  stroke: #1d1f1f;
}
.singleOrder-verdict .verdict-file.jpg {
  background-color: rgba(255, 175, 68, 0.1019607843);
  fill: #ffaf44;
}
.singleOrder-verdict .verdict-file.xls {
  background-color: #e6f4ec;
  fill: #1e7145;
}
.singleOrder-verdict .verdict-file.docx {
  background-color: #ebecee;
  fill: #2a5699;
}
.singleOrder-verdict .verdict-file:hover .arrow {
  animation: scr-pos 2s linear infinite;
}

.reject-files {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .reject-files {
    grid-template-columns: 1fr;
  }
}

.singleOrder-reorder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.singleOrder-reorder .reorder-title {
  padding: 0;
  gap: 6px;
  background-color: rgba(8, 143, 68, 0.1019607843);
  border: 1px solid #088f44;
  height: 48px;
  border-radius: 24px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 500;
  color: #088f44;
  cursor: pointer;
}
.singleOrder-reorder .reorder-title svg {
  width: 12px;
  transform: rotate(180deg);
  fill: #088f44;
  transition: all 0.3s ease-in-out;
}
.singleOrder-reorder .reorder-title.active svg {
  transform: rotate(0);
}
@media (max-width: 993px) {
  .singleOrder-reorder .reorder-title {
    width: 100%;
    justify-content: space-between;
  }
}
.singleOrder-reorder .reorder-body {
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  padding: 15px;
}
.singleOrder-reorder .form-grid {
  gap: 0 10px;
}
.singleOrder-reorder .form-group {
  margin-bottom: 15px;
}
.singleOrder-reorder .form-control {
  height: 155px;
  background-color: #fff;
  border-radius: 15px;
}
.singleOrder-reorder .form-control:-moz-read-only {
  border: none;
  background-color: #f8f8f8;
}
.singleOrder-reorder .form-control:read-only {
  border: none;
  background-color: #f8f8f8;
}
@media (max-width: 993px) {
  .singleOrder-reorder .main-btn {
    width: 100%;
  }
}
.singleOrder-reorder .reorder-files {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.singleOrder-reorder .reorder-file {
  display: flex;
  align-items: center;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 300px;
  height: 42px;
  background-color: #f8f8f8;
  padding: 0 15px;
}
@media (max-width: 993px) {
  .singleOrder-reorder .reorder-file {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .singleOrder-reorder .reorder-file {
    padding: 0 15px;
    width: 100%;
    max-width: none;
  }
}
.singleOrder-reorder .reorder-file svg {
  width: 16px;
  flex-shrink: 0;
}
.singleOrder-reorder .reorder-file .file-icon {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.singleOrder-reorder .reorder-file .file-icon svg {
  width: auto;
  max-width: 100%;
}
.singleOrder-reorder .reorder-file .file-name {
  font-size: 14px;
  font-weight: 500;
  color: #1d1f1f;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  margin: 0 16px;
}
@media (max-width: 993px) {
  .singleOrder-reorder .reorder-file .file-name {
    margin: 0 10px;
  }
}
@media (max-width: 993px) {
  .singleOrder-reorder .reorder-file .arrow {
    animation: scr-pos 2s linear infinite;
  }
}
.singleOrder-reorder .reorder-file.pdf {
  background-color: #f8e9ea;
  fill: #d9434d;
}
.singleOrder-reorder .reorder-file.png {
  background-color: #eeeeee;
  fill: #1d1f1f;
  stroke: #1d1f1f;
}
.singleOrder-reorder .reorder-file:hover .arrow {
  animation: scr-pos 2s linear infinite;
}
.singleOrder-reorder .reorder-alert {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 9px 12px;
  border: 1px solid #ffaf44;
  background-color: rgba(255, 175, 68, 0.1019607843);
  border-radius: 10px;
  color: #ffaf44;
  stroke: #ffaf44;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
.singleOrder-reorder .reorder-alert svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .singleOrder-reorder .reorder-alert {
    padding: 8px 10px;
    gap: 7px;
    align-items: flex-start;
  }
  .singleOrder-reorder .reorder-alert svg {
    margin-top: 3px;
  }
} /*# sourceMappingURL=main.css.map */

.status_bar__ {
  --color: #d9434d;
  height: 64px;
  border-radius: 10px;
  border: 1px solid var(--color);
  display: flex;
  width: 1170px;
  max-width: 100%;
  height: 64px;
  padding: 0px 30px;
  align-items: center;
  gap: 60px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .status_bar__ {
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .status_bar__ {
    margin-bottom: 10px;
  }
}

.status_bar__::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  opacity: 0.2;
  z-index: 1;
}

.status_bar__ .title__ {
  color: #0e0f11;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
}
.status_bar__ .title__::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--color);
}
.form-content {
  border: 1px solid #d6d6d6;
}
.form-title {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 21px;
}
.section-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .section-filter {
    flex-wrap: wrap;
  }
}
.search-section {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  height: 44px;
  width: 100%;
  max-width: 269px;
}
@media (max-width: 767px) {
  .search-section {
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.search-section .search-input {
  border: 0;
  width: 100%;
  background-color: transparent;
}
.filter-select .select2-selection {
  width: 269px;
  background-color: #fff !important;
}
@media screen and (max-width: 767px) {
  .filter-select {
    width: calc(50% - 5px) !important;
  }
  .filter-select .select2-selection {
    width: 100% !important;
  }
}
@media screen and (max-width: 758px) {
  .section-filter .order-action,
  .section-filter .order-action .action-btn {
    width: 100%;
    min-width: 100%;
  }
}
