/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/
/* 
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
*/
body {
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
}

body p {
  margin-bottom: 0px;
}

.alert {
  position: fixed;
  left: 20%;
  top: 80px;
  z-index: 10;
}

#home h2.section-header {
  color: #535353;
  text-align: right;
}

#home h2.section-header a {
  border-right: 1px solid #acacac;
  margin-right: 5px;
  padding-right: 5px;
  text-decoration: none;
}

#home h2.section-header p {
  border-right: 1px solid grey;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}

#home h2.section-header img {
  width: 35px;
}

@media (max-width: 768px) {
  #home h2.section-header {
    font-size: 24px;
  }
}

.article {
  min-height: 220px;
}

.article img {
  max-height: 100%;
  width: 100%;
}

.article header {
  min-height: 50vh;
}

@media (max-width: 770px) {
  .article header {
    min-height: 30vh;
  }
}

.modal-backdrop {
  z-index: 1010;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  cursor: pointer;
}

.side-img, .bf {
  position: absolute;
  z-index: -10;
}

.image-container {
  position: relative;
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/static/images/07.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: -15%;
}

.image-container .bf {
  position: absolute;
  top: -120px;
  left: 0px;
  z-index: -1;
  height: 160%;
}

@media (max-width: 770px) {
  .image-container {
    background-image: none;
  }
  .image-container .bf {
    top: -150px;
  }
}

.section-title {
  font-weight: bold;
  color: #6f259f;
}

.section-title p {
  margin-left: 10px;
  margin-right: 10px;
}

.section-title .orange {
  width: 8px;
  height: 8px;
  background-color: #fb9511;
  border-radius: 50%;
}

.section-title .green {
  width: 6px;
  height: 6px;
  background-color: #82c71e;
  border-radius: 50%;
}

.section-title .blue {
  width: 4px;
  height: 4px;
  background-color: #0bc9b5;
  border-radius: 50%;
}

/* start upper-bar */
.upper-bar .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr 3fr 5%;
      grid-template-columns: 2fr 1fr 3fr 5%;
      grid-template-areas: 'social reservation numbers logo';
  grid-row-gap: 1rem;
  max-width: 1140px;
}

.upper-bar .container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.upper-bar .container .reservation {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: reservation;
}

.upper-bar .container .reservation .reservation-btn {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  height: 1.8rem;
  font-weight: 900;
}

.upper-bar .container .logo {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  grid-area: logo;
}

.upper-bar .numbers {
  border-bottom: 1px solid #f4bc13;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: numbers;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.upper-bar .numbers > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  font-size: 20px;
  color: #868686;
}

.upper-bar .reservation-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#eed01f), to(#f5ba12));
  background-image: linear-gradient(to right, #eed01f, #f5ba12);
  color: #6f259f;
  border-radius: 20px;
  font-weight: bolder;
}

.upper-bar .reservation-btn:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #f5bb13;
          box-shadow: 0 0 0 0.2rem #f5bb13;
}

.upper-bar .reservation-btn:active {
  background-image: -webkit-gradient(linear, left top, right top, from(#eed01f), to(#f5ba12)) !important;
  background-image: linear-gradient(to right, #eed01f, #f5ba12) !important;
}

@media (max-width: 770px) {
  .upper-bar .container {
        grid-template-areas: 'reservation logo' 'social social' ' numbers numbers';
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
    grid-row-gap: 0.2rem;
    margin-top: 3.5rem;
  }
  .upper-bar .container .reservation {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: reservation;
  }
  .upper-bar .container .logo {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: logo;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 1rem;
  }
  .upper-bar .container .social {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: social;
  }
  .upper-bar .container .numbers {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: numbers;
  }
  .upper-bar .container .numbers > div {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.social {
  font-size: 20px;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: social;
}

.social a, .social a:visited {
  text-decoration: none;
  color: #6f259f;
}

@media (max-width: 992px) {
  .upper-bar {
    border-bottom: 1px solid #f4bc13;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .upper-bar .numbers {
    border: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .upper-bar button {
    margin-left: auto;
  }
  .upper-bar .social a, .upper-bar .social a:visited {
    color: #6d6d6d;
  }
}

/* emd upper-bar */
.carousel .carousel-indicators li {
  margin-right: 15px;
  margin-left: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #868686;
}

.carousel .carousel-indicators li.active {
  background-color: #0bc9b5;
}

.carousel .carousel-inner .carousel-item .carousel-caption h5 {
  color: #0bc9b5;
  margin-top: 100px;
  padding-right: 300px;
}

.carousel .carousel-inner .carousel-item .carousel-caption .p {
  color: #868686;
  padding-right: 300px;
}

.carousel .carousel-inner .carousel-item img {
  min-height: 410px;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .carousel-item img {
    min-height: unset;
  }
}

.navbar-home {
  background-color: transparent;
  border-radius: 30px;
  padding: 0px;
}

.navbar-home .reservation-btn {
  background-color: #f4bc13;
  border-radius: 30px;
  color: white;
  margin-left: auto;
  outline: none;
}

.navbar-home .navbar-nav {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}

.navbar-home .navbar-nav .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #6f259f;
}

.navbar-home .navbar-nav .nav-item > div {
  border-bottom: 1px solid #6f259f;
}

.navbar-home .navbar-nav .nav-item .nav-link {
  padding: .5rem;
  color: white;
  text-align: center;
}

.navbar-home .navbar-nav .nav-item .nav-link:visited {
  color: white;
}

.navbar-home .navbar-nav .nav-item.active .nav-link {
  color: #f4bc13;
}

.navbar-home .navbar-nav .nav-item:first-of-type {
  border-radius: 0px 40px 40px 0px;
}

.navbar-home .navbar-nav .nav-item.before-last {
  border-radius: 40px 0px 0px 40px;
  background-color: #6f259f;
  position: relative;
  z-index: 1;
}

.navbar-home .navbar-nav .nav-item.reservation {
  margin-right: -25px;
  background-color: #f4bc13;
  border-radius: 40px 0px 0px 40px;
  padding-right: 20px;
  text-align: center;
}

.navbar-home .navbar-nav .nav-item.reservation .reservation-btn {
  color: #6f259f;
  font-weight: bolder;
}

.navbar-home .navbar-nav .nav-item.reservation .reservation-btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 992px) {
  .navbar-home {
    background-color: #6f259f;
    padding: 5px 5px;
  }
  .navbar-home .navbar-nav {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .navbar-home .navbar-nav .nav-item.before-last {
    border-radius: 40px !important;
    margin-right: 0px !important;
  }
  .navbar-home .navbar-nav .nav-item.reservation {
    margin-right: 0px;
    border-radius: 40px;
  }
  .navbar-home .nav-item {
    border-radius: 40px 40px;
  }
  .navbar-home .nav-item:first-of-type {
    border-radius: 40px !important;
  }
  .navbar {
    position: absolute;
    top: 145px;
    left: 0px;
  }
}

.navbar .navbar-toggler {
  color: white;
}

@media (max-width: 992px) {
  .image-container .navbar {
    top: 0px;
  }
  .not-home {
    top: 40px;
  }
}

#home .services .links {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
      grid-template-areas: 'videos addiction awareness children';
  grid-gap: 2.5rem;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 250px;
}

#home .services .links a {
  font-weight: bolder;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  text-align: center;
  font-size: 1.8rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

#home .services .links a:nth-child(1) {
  background-color: #9be97a;
  color: #48ad1d;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: videos;
}

#home .services .links a:nth-child(3) {
  background-color: #7f9de5;
  color: #224aa9;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: awareness;
}

#home .services .links a:nth-child(2) {
  background-color: #c98aea;
  color: #8521ba;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: addiction;
}

#home .services .links a:nth-child(4) {
  background-color: #f290de;
  color: #d118ab;
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  grid-area: children;
}

#home .services a, #home .services a:visited {
  color: #f4bc13;
  font-weight: bolder;
}

#home .services a:hover, #home .services a:visited:hover {
  text-decoration: none;
}

#home .services h2 {
  color: #fb9511;
  font-weight: bolder;
  margin-bottom: 0px;
}

#home .services .article {
  height: 300px;
  text-align: center;
}

#home .services .article a {
  font-weight: bolder;
  font-size: 20px;
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

#home .services .article a:hover {
  text-decoration: none;
}

#home .services .article .link1, #home .services .article .link1:visited {
  color: #750e60;
  background-color: #f290de;
}

#home .services .article .link2, #home .services .article .link2:visited {
  color: #112554;
  background-color: #7f9de5;
}

#home .services .article .link3, #home .services .article .link3:visited {
  color: #471263;
  background-color: #c98aea;
}

#home .services .article .link4, #home .services .article .link4:visited {
  color: #23560e;
  background-color: #9be97a;
}

#home .services .article .link5, #home .services .article .link5:visited {
  color: black;
  background-color: #0bc9b5;
}

#home .services .article .link6, #home .services .article .link6:visited {
  color: #080600;
  background-color: #f4bc13;
}

#home .services .article .link7, #home .services .article .link7:visited {
  color: #0d0700;
  background-color: #fb9511;
}

#home .services .article .link8, #home .services .article .link8:visited {
  color: black;
  background-color: #82c71e;
}

@media (max-width: 992px) and (min-width: 768px) {
  #home .services .article .link1, #home .services .article .link3 {
    margin-right: auto;
  }
  #home .services .article .link2, #home .services .article .link4 {
    margin-left: auto;
  }
}

@media (max-width: 992px) {
  #home .services .article {
    height: 180px;
  }
}

@media (max-width: 768px) {
  #home .services .links {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: 'awareness children' 'videos addiction';
    padding-left: 1rem;
    padding-right: 1rem;
    grid-gap: 0.6rem;
  }
  #home .services .links a {
    min-height: 230px;
  }
  #home .services .links a:nth-child(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: videos;
  }
  #home .services .links a:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: awareness;
  }
  #home .services .links a:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: addiction;
  }
  #home .services .links a:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: children;
  }
  #home .services h2 {
    font-size: 24px;
    margin-top: 10px;
  }
}

#home .medical {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/static/images/06.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

#home .medical .side-img {
  right: 0px;
  top: 90px;
  height: 90%;
}

#home .medical h2.section-header a, #home .medical h2.section-header a:visited {
  color: #535353;
}

#home .medical h2.section-header a:hover, #home .medical h2.section-header a:visited:hover {
  text-decoration: none;
}

#home .medical h2.section-header i {
  background: -webkit-linear-gradient(#a353d7, #35124c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#home .medical .article img {
  height: 100%;
}

.article > div {
  width: 100%;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.article > div .info {
  width: 100%;
  height: 165px;
  position: absolute;
  background-color: #53a0b9;
  z-index: 99;
  bottom: -130px;
  left: 0px;
  padding-top: 5px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.article > div .info h5 {
  margin-bottom: 10px;
}

.article > div .info h5 span {
  border-bottom: 2px solid white;
  padding-bottom: 6px;
}

.article > div .info p {
  direction: rtl;
  text-align: center;
}

.article > div .info a {
  color: white;
  width: 100%;
  text-align: left;
}

.article > div .info a:hover, .article > div .info a:visited {
  color: white;
}

.article > div .info a span {
  margin-left: 10px;
}

.article > div:hover .info {
  bottom: -20px;
  background-color: rgba(83, 160, 185, 0.7);
}

#home .videos {
  max-width: 1680px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/static/images/05.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: -5%;
}

#home .videos .row {
  position: relative;
  z-index: 100;
}

#home .videos .side-img {
  left: -270px;
  top: 0px;
  z-index: 0;
}

#home .videos h2.section-header i {
  background: -webkit-linear-gradient(#ff6666, #990000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#home .videos h2.section-header a, #home .videos h2.section-header a:visited {
  color: #535353;
}

#home .videos .video {
  position: relative;
}

#home .videos .video > div {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

#home .videos .video > div iframe {
  border: none;
}

.articles {
  border-radius: 0 0 80% 80% / 70%;
  background-color: white;
  margin-bottom: -350px;
  padding-bottom: 100px;
  position: relative;
  z-index: 99;
}

.articles h2.section-header i {
  background: -webkit-linear-gradient(#a353d7, #35124c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.articles h2.section-header a, .articles h2.section-header a:visited {
  color: #535353;
}

.articles h2.section-header a:hover, .articles h2.section-header a:visited:hover {
  text-decoration: none;
}

.articles .article {
  max-height: 180px;
}

.articles .article img {
  height: 100%;
}

.branch-info {
  color: #53a0b9;
  font-size: 22px;
}

.branches {
  background-color: #f6fafb;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.branches .branch-info:last-of-type {
  margin-top: auto;
}

.branches .name {
  color: #53a0b9;
  font-size: 20px;
}

.branches .job {
  color: #6f259f;
  font-size: 14px;
}

.branches .social {
  margin-top: 10px;
}

.branches .social a, .branches .social a:visited {
  font-size: 22px;
  color: #77b4c8;
}

.branches .social a:hover, .branches .social a:visited:hover {
  color: #214652;
}

@media (max-width: 992px) {
  .branch-info {
    font-size: 16px;
  }
}

#home .branches {
  padding-top: 380px;
}

@media (max-width: 770px) {
  .branches img {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

footer {
  background-image: -webkit-gradient(linear, left top, right top, from(#1441a9), to(#306576));
  background-image: linear-gradient(to right, #1441a9, #306576);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
}

footer a, footer a:visited {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  color: white;
  text-align: center;
}

header {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #535353;
  padding-bottom: 20px;
}

header .header-p {
  font-size: 22px;
}

header img {
  width: 80px;
  height: 100px;
}

header > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
}

header .header-logo-caption1 {
  color: #1fa4ee;
  font-size: 22px;
  font-weight: bold;
}

header .header-logo-caption2 {
  color: #6f259f;
  font-weight: bold;
}

@media (min-width: 992px) {
  header {
    min-height: 50vh;
  }
}

.video-detail-header {
  min-height: auto;
}

.rehabilitation .article-img img {
  border-radius: 0px 25px 25px 0px;
  height: 100%;
  width: 100%;
}

.rehabilitation .content-wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rehabilitation .article-content {
  background-color: rgba(83, 160, 185, 0.1);
  border-radius: 25px 0px 0px 0px;
  overflow-y: scroll;
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: right;
  color: #606060;
  height: 90%;
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.rehabilitation .article-content::-webkit-scrollbar {
  width: 10px;
}

.rehabilitation .article-content::-webkit-scrollbar-track {
  background: #bdc7ce;
}

.rehabilitation .article-content::-webkit-scrollbar-thumb {
  background: #a0aeb8;
}

.rehabilitation .article-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.rehabilitation .more, .rehabilitation .more:visited {
  color: #868686;
  background-color: rgba(83, 160, 185, 0.1);
  width: 100%;
  padding-left: 25px;
  border-radius: 0px 0px 0px 25px;
}

@media (max-width: 768px) {
  .rehabilitation .article-content {
    border-radius: 0px 0px 0px 0px;
  }
  .rehabilitation .more {
    border-radius: 0px 0px 25px 25px;
  }
  .rehabilitation .article-img img {
    border-radius: 25px 25px 0px 0px;
  }
}

.addiction-cure .article {
  color: #535353;
  height: 450px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr 2fr;
      grid-template-rows: 1fr 2fr;
}

.addiction-cure .article > div.article-img {
  border-radius: 30px 30px 0px 0px;
}

.addiction-cure .article .lead-text {
  background-color: rgba(83, 160, 185, 0.1);
  border-radius: 0px 0px 30px 30px;
  padding: 10px 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 20% 1fr 10%;
      grid-template-rows: 20% 1fr 10%;
}

.addiction-cure .article .lead-text .more {
  justify-self: flex-start;
}

.addiction-cure .article a {
  color: #606060;
}

/* start all-videos */
.all-videos .row .video {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.all-videos .row .video h3 {
  font-size: 1.5rem;
  text-align: right;
}

.all-videos .row .col-lg-8.col-md-7.col-12 .video iframe {
  min-height: 400px;
}

.all-videos .row .col-lg-4.col-md-5.col-12 {
  max-height: 600px;
  overflow: auto;
}

/* scrollbar */
/* width */
.all-videos .row .col-lg-4.col-md-5.col-12::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.all-videos .row .col-lg-4.col-md-5.col-12::-webkit-scrollbar-track {
  background: #f5e9ff;
}

/* Handle */
.all-videos .row .col-lg-4.col-md-5.col-12::-webkit-scrollbar-thumb {
  background: #53a0b9;
  border-radius: 5px;
}

/* end scrollbar */
.all-videos .row .col-lg-4.col-md-5.col-12 .video {
  border: 1px solid #53a0b9;
}

.all-videos .row .col-lg-8.col-md-7.col-12 .video a {
  font-size: 1.2rem;
}

.all-videos .row .col-lg-8.col-md-7.col-12 .video .title {
  margin-top: -15px;
  font-size: 1.5rem;
  background-color: #6f259f;
}

.all-videos .row .col-lg-8.col-md-7.col-12 .video .title:last-of-type {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .all-videos .row .col-lg-8.col-md-7.col-12 .video .title {
    font-size: 1.3rem;
  }
  .all-videos .row .col-lg-8.col-md-7.col-12 .video .title:last-of-type {
    font-size: 1rem;
  }
  .all-videos .row .col-lg-8.col-md-7.col-12 .video a {
    font-size: 1rem;
  }
}

.all-videos .row .col-lg-4.col-md-5.col-12 .video .title {
  background-color: #53a0b9;
  margin-top: -6px;
}

.main-video .video .title p:first-of-type {
  font-size: 26px;
}

.main-video .video .title p:last-of-type {
  font-size: 17px;
}

.videos .all-videos .title p {
  margin-top: -5px;
  font-size: 22px;
  color: white;
}

.videos .all-videos .title p,
.videos .all-videos .title a {
  color: #fc7ed7;
  background-color: white;
}

.videos .all-videos .play-list {
  max-height: 482px;
  overflow: auto;
}

.videos .all-videos .play-list .title {
  margin-bottom: 15px;
}

.videos .all-videos .play-list .title p {
  font-size: 16px;
}

#videos-page.videos .all-videos .title p {
  font-size: 16px;
}

.video-detail .iframe {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #6f259f;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.video-detail .iframe iframe {
  border: none;
}

.video-detail h4, .video-detail p {
  color: #3a3a3a;
}

/* md screen */
@media (max-width: 768px) {
  .all-videos .row {
    max-height: none;
    overflow: none;
  }
  .all-videos .row .col-lg-8.col-md-7.col-12 .video h3 {
    font-size: 2rem;
  }
}

/* lg screen */
@media (max-width: 992px) {
  .all-videos .row .col-lg-8.col-md-7.col-12 .video h3 {
    font-size: 1.4rem;
  }
}

/* end all-videos */
/* end videos page */
#about .branches-gird {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      grid-template-areas: 'map-1 map-2' 'info-1 info-2';
  grid-gap: 1rem;
  width: 100%;
}

#about .branches-gird .branch-info-grid-1 {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: info-1;
}

#about .branches-gird .branch-info-grid-2 {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: info-2;
}

#about .branches-gird .branches-map-grid-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: map-1;
}

#about .branches-gird .branches-map-grid-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: map-2;
}

#about .dr-img img {
  width: 100%;
}

#about .desc h4 {
  color: #0bc9b5;
  font-weight: bold;
}

#about .desc > p {
  color: #868686;
}

#about #map {
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
}

#about .branch-info {
  padding: 15px;
  background-color: rgba(83, 160, 185, 0.1);
  border-radius: 15px;
}

#about .social {
  color: #53a0b9;
}

#about .social a {
  margin: 0px;
  color: #9bc8d7;
  font-size: 26px;
}

@media (max-width: 700px) {
  #about .branches-gird {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: 'map-1' 'info-1' 'map-2' 'info-2';
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #about .branches-gird .branch-info p {
    font-size: 0.9rem;
  }
  #about .branches-gird .branch-info-grid-1 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: info-1;
  }
  #about .branches-gird .branch-info-grid-2 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: info-2;
  }
  #about .branches-gird .branches-map-grid-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: map-1;
  }
  #about .branches-gird .branches-map-grid-2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: map-2;
  }
}

.search-bar {
  background-color: rgba(0, 0, 0, 0.5);
}

.search-bar button {
  color: white;
}

.search-bar .col-lg-4.col-sm-6.col-12, .search-bar .form {
  padding: 0px;
}

.search-bar .col-lg-4.col-sm-6.col-12 a, .search-bar .col-lg-4.col-sm-6.col-12 a:visited, .search-bar .form a, .search-bar .form a:visited {
  color: #6f259f;
  font-size: 22px;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group input, .search-bar .form .input-group input {
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 20px 0px 0px 20px;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group input:focus, .search-bar .form .input-group input:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #6f259f;
          box-shadow: 0 0 0 0.2rem #6f259f;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group button, .search-bar .form .input-group button {
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: #868686;
  border-radius: 0px 20px 20px 0px;
  margin-left: 1px;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group button:focus, .search-bar .form .input-group button:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #6f259f;
          box-shadow: 0 0 0 0.2rem #6f259f;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group button:active, .search-bar .form .input-group button:active {
  background-color: #6f259f;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group button i, .search-bar .form .input-group button i {
  border-left: 1px solid #868686;
  padding-left: 5px;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group ::-webkit-input-placeholder, .search-bar .form .input-group ::-webkit-input-placeholder {
  color: #868686;
  opacity: 1;
  /* Firefox */
  text-align: right;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group :-ms-input-placeholder, .search-bar .form .input-group :-ms-input-placeholder {
  color: #868686;
  opacity: 1;
  /* Firefox */
  text-align: right;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group ::-ms-input-placeholder, .search-bar .form .input-group ::-ms-input-placeholder {
  color: #868686;
  opacity: 1;
  /* Firefox */
  text-align: right;
}

.search-bar .col-lg-4.col-sm-6.col-12 .input-group ::placeholder, .search-bar .form .input-group ::placeholder {
  color: #868686;
  opacity: 1;
  /* Firefox */
  text-align: right;
}

.search-bar .social a {
  color: white;
  margin-left: 5px;
  margin-right: 5px;
}

@media (max-width: 700px) {
  .search-bar .social a {
    margin-right: 0px;
  }
}

form.reservation ::-webkit-input-placeholder {
  text-align: right;
}

form.reservation :-ms-input-placeholder {
  text-align: right;
}

form.reservation ::-ms-input-placeholder {
  text-align: right;
}

form.reservation ::placeholder {
  text-align: right;
}

form.reservation .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form.reservation .form-group label {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.modal .modal-header h5 {
  color: #6f259f;
  font-weight: bolder;
}

.modal .modal-footer button {
  background-color: #6f259f;
  border: none;
}

.modal .modal-footer button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal .modal-footer button:active {
  background-color: #b9b9b9;
}

.related-articles {
  background-color: #ececec;
  padding: 10px;
  border-radius: 10px;
}

.related-articles h3 {
  font-size: 1.2rem;
}

.related-articles li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.related-articles li h3 a {
  color: #3a3a3a;
  font-size: 1rem;
}

.related-articles li p {
  font-size: 14px;
}

#videoModal .modal-dialog {
  min-width: 54.5vw;
}

#videoModal .modal-dialog .modal-content {
  height: 75vh;
}

#videoModal .modal-dialog .modal-content .modal-body iframe {
  border: none;
}

#videoModal .modal-dialog .modal-content .modal-footer h3 {
  font-size: 16px;
}

#empty header {
  min-height: auto;
}

#empty > .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
/*# sourceMappingURL=main.css.map */