@font-face {
  font-family: "GE Dinar Two";
  src: url("./assets/fonts/GE Dinar Two Medium/GEDinarTwo-Medium.woff2")
      format("woff2"),
    url("./assets/fonts/GE Dinar Two Medium/GEDinarTwo-Medium.woff")
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0-2f, U+40-10FFFF;
}

:root {
  --color-prim: #eb1e77;
  --color-sec: #3d3d3d;
  --bg-color-section: #f5f5f5;

  --trasnition-period: 0.2s;

  overflow-x: hidden;

  scroll-padding-top: 110px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "GE Dinar Two", "sans serif";
  overflow-x: hidden;
}

.overflown {
  overflow: hidden;
}

/* Nav */

header {
  background-color: #eb1e77;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
}

header > a {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.nav_logo {
  width: 12rem;
  padding: 12px;
}

/* Hero */

.hero {
  background: url(./assets/img/banner@4x-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}

.hero_content {
  padding: 240px 0;
  color: var(--color-sec);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 11;
  /* -webkit-backdrop-filter: blur(2px);
  -moz-backdrop-filter: blur(2px);
  -o-backdrop-filter: blur(2px);
  -ms-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px); */
}

@media only screen and (max-width: 670px) {
  .hero {
    background: url(./assets/img/banner@4x.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .hero_content {
    padding: 50px 0;
  }
}

.hero_content h1 {
  font-size: 4rem;
  text-align: center;
  /* color: var(--color-prim); */
}

.hero_content p {
  margin-bottom: 20px;
}

.btn_hero {
  padding: 5px 20px;
  background-color: var(--color-prim);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: color var(--trasnition-period),
    background-color var(--trasnition-period);
}

.btn_hero:hover {
  background-color: #fff;
  color: #eb1e77;
}

.btn_hero a,
.btn_hero2 a {
  all: unset;
}

.btn_hero2 {
  padding: 5px 20px;
  background-color: var(--color-prim);
  color: #fff;

  cursor: pointer;
  border-radius: 5px;
  width: fit-content;
  transition: color var(--trasnition-period),
    background-color var(--trasnition-period);
}

.btn_hero2:hover {
  background-color: #fff;
  color: var(--color-prim);
}

/* Section 1 */

#section-1 {
  background-color: var(--bg-color-section);
  direction: rtl;
}

.title {
  color: var(--color-prim);
  font-size: 2.5rem;
}

.description {
  font-size: 1.5rem;
  direction: rtl;
  color: var(--color-sec);
}

/* Section 2 */
#section-2 {
  direction: rtl;
  position: relative;
  z-index: 100;
}

#section-2 h2 {
  color: var(--color-prim);
}

[scope="col"] {
  background-color: #dadada !important;
}

[scope="row"] {
  color: black;
  position: relative;
  cursor: pointer;
}

[scope="row"]:hover {
  color: var(--color-prim);
}

[scope="row"]::before {
  position: absolute;
  content: attr(data-description);
  display: none;
  background-color: var(--bg-color-section);
  width: calc(100%);
  height: fit-content;
  top: -20px;
  left: -85%;
  border: 1px solid black;

  padding: 5px;
}

[scope="row"]:hover::before {
  display: block;
  color: black;
}

td {
  color: var(--color-prim);
}

/* Section 3 */

#section-3 {
  position: relative;
  background-color: var(--bg-color-section);
  direction: rtl;
  z-index: 99;
}

/*  Accordion */

.plus-minus {
  background: url(./assets/img/circle-plus-solid.svg);
  background-repeat: no-repeat;
  min-width: 30px;
  min-height: 30px;
}

.mx-accordion .card-header h5 a.acc-btn[aria-expanded="true"] .plus-minus {
  background: url(./assets/img/circle-minus-solid.svg);
  background-repeat: no-repeat;
}

.mx-accordion .card {
  border: 0 none;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mx-accordion .card-header {
  position: relative;
  background: transparent;
  padding: 0;
  border: 0 none;
}
.mx-accordion .card-header h5 a.acc-btn {
  color: var(--color-sec);
  font-size: 18px;
  line-height: 1.2;
  padding: 0;
  font-weight: 600;
  border: 0 none;
  /* font-family: 'Gilroy'; */
  -webkit-appearance: none;
  display: block;
  background: #ffffff;
  border: 1px solid #eee;
  padding: 20px 26px;
  margin: -1px -1px 0;
  position: relative;
  border-radius: 5px;
  text-decoration: none;
}
/* .mx-accordion .card-header h5 a.acc-btn::before {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 30px;
  content: "+";
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--color-prim);
  display: flex;
  align-items: center;
  justify-content: center;
} */

.mx-accordion .card-header h5 a.acc-btn[aria-expanded="true"] {
  background: var(--color-prim);
  color: #ffffff;
}
/* .mx-accordion .card-header h5 a.acc-btn[aria-expanded="true"]::before {
  content: "-";
  color: #8d8d8d;
  background-color: #fff;
} */

.mx-accordion .card-header h5 a.border-0 {
  border: 0;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 0 15px 50px rgba(51, 51, 51, 0.1);
  box-shadow: 0 15px 50px rgba(51, 51, 51, 0.1);
  transition: box-shadow var(--trasnition-period);
}

.mx-accordion .card-header h5 a.border-0:hover {
  box-shadow: 0 15px 50px rgba(51, 51, 51, 0.3);
}

.mx-accordion .card-body {
  padding: 27px 25px 39px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.74;
  font-size: 15px;
  text-align: center;
  border: 0 none;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 0 0 5px 5px;
}

.tab_title {
  color: var(--color-prim);
  background-color: #dadada;
}

#main_header {
  animation: scale 0.5s forwards;
}

#up_header {
  animation: fadeUp 0.5s forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

#down_header {
  opacity: 0;
  animation: fadeDown 1s forwards;
  animation-delay: 1s;
}

/* Section 4 */

#section-4 {
  width: 100%;
}

.blop_bg {
  background-image: url(./assets/img/Blob\ Group.svg);
  background-repeat: no-repeat;
  background-position: -430px 5px;
  background-size: cover;
}

.circles_bg {
  background-image: url(./assets/img/animated-shape.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (max-width: 600px) {
  .circles_bg {
    background-image: url(./assets/img/animated-shape-mob.svg);
  }
}

.page-link {
  color: var(--color-prim);
}

.page-link:hover {
  color: #fff;
  background-color: #e91471;
}
.page-link:focus {
  box-shadow: inset 0 -1px 0 #ddd;
  color: var(--color-prim);
  background-color: #fff;
}

.page-item .active {
  color: #fff;
  background-color: #e91471;
  border: unset;
}

/* Animation */
@keyframes fadeUp {
  0% {
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale {
  0% {
    transform: scale(4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes grow {
  0% {
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-360deg);
  }
}

@keyframes fadeDown {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes up {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-1rem);
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 0.6em;
}
::-webkit-scrollbar-track {
  background: #e3e3e3;
}
::-webkit-scrollbar-corner {
  background: #d91369;
}

::-webkit-scrollbar-thumb {
  background: var(--color-prim);
}
::-webkit-scrollbar-thumb:hover {
  background: #d91369;
}

footer {
  min-height: 100px;
  background-color: var(--color-prim);
  color: #fff;
  direction: rtl;
}

footer .numbers {
  direction: ltr;
}

/* Modal */
.modal {
  z-index: 9999;
}

#doctor_img {
  min-width: 250px;
}

/* Section 5 */
#section-5 {
  direction: rtl;
  background-color: var(--bg-color-section);
}
