* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content-1 {
  position: relative;
  z-index: 2;
}

.icon-background {
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  opacity: 0.2;
}

Feature Box ---------------------*/ .MG-feature-box-1 {
  padding: 32px;
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  margin: 15px 0;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  transition: ease all 0.35s;
  top: 0;
}
.MG-feature-box-1 * {
  transition: ease all 0.35s;
}
.MG-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fc5356;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 22px;
  font-size: 27px;
}
.MG-icon i {
  line-height: 70px;
}
.MG-feature-content h5 {
  color: #20247b;
  font-weight: 600;
}
.MG-feature-content p {
  margin: 0;
}
.MG-feature-box-1:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-radius: 10px;
  width: 0;
  background: #20247b;
  z-index: -1;
  transition: ease all 0.35s;
}
.MG-feature-box-1:hover {
  top: -5px;
}
.MG-feature-box-1:hover h5 {
  color: #ffffff;
}
.MG-feature-box-1:hover p {
  color: rgba(255, 255, 255, 0.8);
}
.MG-feature-box-1:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 0;
  right: auto;
}
.MG-section {
  padding: 100px 0;
  position: relative;
}
.MG-section-title {
  padding-bottom: 45px;
}
.MG-section-title h2 {
  font-weight: 700;
  color: #20247b;
  font-size: 45px;
  margin: 0 0 15px;
  border-left: 5px solid #fc5356;
  padding-left: 15px;
}

.MG-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.MG-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.MG-col-lg-4,
.MG-col-lg-6,
.MG-col-sm-6 {
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .MG-col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .MG-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .MG-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .MG-col-sm-6,
  .MG-col-lg-4,
  .MG-col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.timeline {
  display: grid;
  grid-template-columns: 0.25rem 1fr;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  list-style: none;
}

.timeline::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: #f8f7fa;
}

.timeline li {
  grid-column: 2;
  margin-inline: 1.5rem;
  grid-row: span 2;
  display: grid;
  grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content min-content;
}

.timeline li:not(:last-child) {
  margin-bottom: 2rem;
}

.timeline li .date {
  height: 3rem;
  margin-inline: -1.5rem;
  text-align: center;
  color: #fff;
  display: grid;
  place-content: center;
  position: relative;
  border-radius: 1.5rem 0 0 1.5rem;
}

.timeline li .date::before {
  content: "";
  width: 1.8rem;
  aspect-ratio: 1;
  background: #f8f7fa;
  position: absolute;
  top: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

.timeline li .date::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  background: #663b6c;
  border-radius: 15px;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  right: calc(100% + 2rem + 0.125rem);
}

.timeline li .title {
  position: relative;
  padding-inline: 1.5rem;
  overflow: hidden;
  -webkit-padding-before: 1.5rem;
  padding-block-start: 1.5rem;
  -webkit-padding-after: 1rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.timeline li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline li .descr {
  position: relative;
  padding-inline: 1.5rem;
  -webkit-padding-after: 1.5rem;
  padding-block-end: 1.5rem;
  font-weight: 300;
}

.timeline li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

@media (min-width: 40rem) {
  .timeline {
    grid-template-columns: 1fr 0.25rem 1fr;
  }

  .timeline::before {
    grid-column: 2;
  }

  .timeline li:nth-child(odd) {
    grid-column: 1;
  }

  .timeline li:nth-child(odd) .date {
    border-radius: 0 1.5rem 1.5rem 0;
  }

  .timeline li:nth-child(odd) .date::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline li:nth-child(odd) .date::after {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: calc(100% + 2rem + 0.125rem);
  }

  .timeline li:nth-child(even) {
    grid-column: 3;
  }

  .timeline li:nth-child(2) {
    grid-row: 2/4;
  }
}

.timeline .timeline-date {
  width: 54px;
  height: 85px;
  display: inline-block;
  padding: 8px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  z-index: 1;
}

h5,
h6 {
  color: #201f26 !important;
}

.MG-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  direction: rtl;
  text-align: right;
}

.MG-center {
  text-align: center;
}

.MG-center h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.MG-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.MG-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.MG-content-row {
  display: flex;
  justify-content: center;
}

.MG-col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.MG-service-col {
  margin-bottom: 30px;
}

.MG-service-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: justify;
  transition: box-shadow 0.3s;
}

.MG-service-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.MG-service-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.MG-service-box h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.MG-service-box p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.MG-call-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
}

.MG-call-button:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
  padding: 20px;
  max-width: 45%;
  margin: 10px;
  background-color: var(--main-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.col img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.col h2 {
  color: var(--highlight-color);
  margin-bottom: 10px;
}

.col p {
  color: var(--text-color);
}

@media (min-width: 768px) {
  .col {
    max-width: 45%;
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .col {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .col {
    max-width: 100%;
  }
}
.responsive-section {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #ffffff;
}

.image-part {
  flex: 1;
  padding: 20px;
}

.image-part img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ffffff;
}

.content-part {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-left: none;
}

.content {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #ffffff;
  border-right: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #000000;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #000000;
}

.call-button {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .responsive-section {
    flex-direction: column;
  }

  .image-part,
  .content-part {
    flex: 1;
    width: 100%;
  }
}
.icon {
  width: 40px;
  height: 40px;
}
.paragraph-header {
  max-width: 600px;
  text-align: justify;
}
@media (max-width: 768px) {
  .MG-row.MG-content-row {
    display: flex;
    flex-wrap: wrap;
  }

  .MG-col-md-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}
.content-part {
  text-align: right;
}
.content-part {
  flex: 1;
  text-align: right;
}
.responsive-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.image-part img {
  transition: transform 0.3s ease-out;
}

.image-part img:hover {
  transform: translateY(-10px);
}

.image-part img.active {
  transform: translateY(0);
}
.dropdown-item {
  text-align: right;
}
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
