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

/* Bootstrap modal core — grid-only build'de eksikti. Bu olmadan modallar:
   (a) açılışta inline görünür (× header'a düşer), (b) tıklayınca konumlanamaz, sayfa
   dibinde belirir. Bootstrap JS (main.js'e gömülü, BS4) show/hide yönetir; core stil burada.
   Tema-özel modal stilleri (.search1, #recaptcha-formu) daha spesifik → onları override etmez. */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal.show {
  display: block;
}
.modal-open {
  overflow: hidden;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 6px;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.show {
  opacity: 0.5;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 560px;
    margin: 1.75rem auto;
  }
}

/* Modal iç boşlukları — BS grid-only geçişinde .modal-header / .modal-body padding'i
   eksik kaldığından form içeriği kenarlara yapışıp sıkışık duruyordu. */
.modal-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 45px 16px 22px;
  border-bottom: 1px solid #ececec;
}
.modal-body {
  padding: 22px 24px 26px;
}
.modal-body .form-area {
  margin: 0;
}

:root {
  --c-primary: #e11f26;
  --c-secondary: #171717;
  --c-blue: #243e7d;
  --c-orange: #f16725;
}

.lang-menu {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.lang-menu img {
  width: 30px;
  height: 18px;
  object-fit: cover;
}

.header-top .right {
  display: flex;
  align-items: center;
}

.mobile-nav-content .lang-menu {
  padding: 20px 25px;
}

.mobile-nav-content .lang-menu li {
  margin-right: 15px;
}

.services-uni ul {
  display: flex;
  flex-wrap: wrap;
}

body {
  font-family:
    titillium web,
    sans-serif;
  color: #797979;
  font-weight: 400;
  font-size: 16px;
}
a {
  color: #797979;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
  color: #00b3ee;
}
.p50 {
  padding: 50px 0;
}
.img-fluid {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 700;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 20px;
}
.mobile-nav {
  display: none;
}
.mobile-close-menu {
  display: none;
}
/* Swiper navigation — default enjekte SVG gizli, FA chevron ok ::after ile (activity slider: angle) */
.swiper-button-prev .swiper-navigation-icon,
.swiper-button-next .swiper-navigation-icon {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 40px;
  height: 45px;
  background-color: transparent;
  border: solid 2px #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.swiper-button-prev {
  left: 50px;
  right: auto;
}
.swiper-button-next {
  right: 50px;
  left: auto;
}
/* Ok ikonu = inline SVG chevron — icon-font'a bağımlı DEĞİL. Böylece home (icesturkey),
   activity (FA) ve mobil font quirk'lerinin hepsini bypass eder; her yerde aynı çalışır. */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M15 6l-6 6 6 6'/%3E%3C/svg%3E");
}
.swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #fff;
  background-color: #233d7d;
  border: solid 2px #fff;
}
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: 0;
}
/* Swiper pagination — bullet stilleri (17x6, kırmızı → aktif mavi) */
.swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.swiper-pagination-bullet {
  background: #e3070b;
  width: 17px;
  height: 6px;
  border-radius: 0;
  opacity: 1;
}
.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
  background: #00aad0;
  width: 17px;
  height: 6px;
}
.fly-alert {
  position: fixed;
  top: 100px;
  right: 50px;
  z-index: 9999;
  margin: 0;
  font-size: 18px;
  display: inline-block;
  width: auto;
}
.alert-danger {
  background-color: #f44336;
}
.alert-success {
  background-color: #2ec4b6;
}
.alert {
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 4px;
}
#scroll-top {
  position: fixed;
  right: 0;
  bottom: 110px;
  margin: 0;
  text-decoration: none;
  z-index: 9999999999999999;
}
#scroll-top button {
  width: 40px;
  height: 40px;
  outline: 0;
  cursor: pointer;
  background-color: var(--c-primary);
  color: #fff;
  display: block;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  border: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
#scroll-top button i {
  font-size: 20px;
}
.float-img {
  width: 50%;
  float: left;
  margin-right: 30px;
}
.title-section {
  font-size: 26px;
  line-height: 25px;
  padding-top: 0;
  margin-bottom: 20px;
  position: relative;
  color: #797979;
  font-weight: 600;
}
.footer-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--c-primary);
  z-index: 999;
  text-align: center;
}
.footer-sticky-bar a {
  color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  padding: 5px 0;
  justify-content: center;
  align-items: center;
}
.footer-sticky-bar a i {
  position: relative;
  bottom: -1px;
  margin-right: 10px;
  font-size: 20px;
}
.fixed-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 999;
}
.modal-title {
  font-size: 18px;
  color: var(--color1);
  font-weight: 700;
}
.modal-header .close {
  border: 0;
  background-color: transparent;
  font-size: 35px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  outline: 0;
  font-weight: 700;
  cursor: pointer;
}
.logo-menu.fixed-header {
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  background-color: #fff;
}
.header-mobile.fixed-header {
  background-color: #fff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.2);
}
.section-top {
  text-align: center;
  padding-bottom: 40px;
}
.section-top .title {
  font-size: 32px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}
.button2 a,
.button2 button {
  background-color: var(--c-primary);
  padding: 10px 30px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  border: solid 3px var(--c-primary);
  display: inline-block;
  text-align: center;
}
.button2 a:hover,
.button2 button:hover {
  background-color: #fff;
  color: #23527c;
}
.header-top {
  background: #f9f9f9;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
}
.header-top .area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top .left a {
  padding: 10px 0;
  display: inline-block;
  margin-right: 7px;
  padding-right: 7px;
  border-right: solid 1px #e8e8e8;
}
.header-top .left a.left-button {
  background: var(--c-primary);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border: 0;
}
.header-top .left a.left-button:hover {
  background-color: var(--c-secondary);
}
.header-top .right a {
  padding: 10px 0;
  display: inline-block;
  margin-left: 7px;
  padding-left: 7px;
  border-left: solid 1px #e8e8e8;
}
.header-top .right a.right-button {
  background: var(--c-secondary);
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border: 0;
}
.header-top .right a.right-button:hover {
  background-color: var(--c-primary);
}
.logo-menu .area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-menu {
  position: relative;
}
.main-menu .navigation {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 25px 0;
  margin-right: 15px;
  transition: all 300ms ease;
}
.main-menu .navigation > li:last-child {
  margin-right: 0;
}
.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  opacity: 1;
  padding: 0;
  transition: all 300ms ease;
  color: #333;
}
.main-menu .navigation > li > a:hover {
  color: #00b3ee;
}
.main-menu .navigation > li > ul {
  position: absolute;
  right: -20px;
  top: 100%;
  min-width: 450px;
  padding: 0;
  z-index: 100;
  opacity: 1;
  margin-top: 1px;
  background: #fff;
  border: 1px solid #f1f1f1;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 200ms ease;
  white-space: nowrap;
  list-style: none;
  background: #f9f9f9;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.main-menu .navigation > li:last-child ul {
  right: -20px;
  left: auto;
}
.main-menu .navigation > li:nth-last-child(2) ul {
  right: -20px;
  left: auto;
}
.main-menu .navigation > li > ul > li {
  position: relative;
  display: block;
}
.main-menu .navigation > li > ul > li:last-child {
  border-bottom: 0;
}
.main-menu .navigation > li > ul > li > a {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-align: left;
  display: inline-block;
  text-transform: capitalize;
  transition: all 200ms ease;
  padding: 10px 30px 10px 10px;
  width: 100%;
  color: #333;
}
.main-menu .navigation > li > ul > li > a:before {
  content: "";
  height: 2px;
  width: 0;
  opacity: 0;
  background-color: #337ab7;
  transition: all 600ms ease;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.main-menu .navigation > li > ul > li:hover > a:before {
  width: 15px;
  opacity: 1;
}
.main-menu .navigation > li > ul > li:hover > a {
  color: #00b3ee;
}
.main-menu .navigation > li.dropdown > a:after {
  font-family: icesturkey;
  content: "\f107";
  margin-left: 2px;
  font-size: 12px;
  font-weight: 400;
}
.main-menu .navigation > li > ul > li.dropdown > a:after {
  position: absolute;
  font-family: icesturkey;
  content: "\f105";
  margin-left: 3px;
  right: 10px;
}
.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  margin-top: -45px;
  min-width: 210px;
  padding: 0;
  z-index: 100;
  opacity: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 400ms ease;
}
.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
}
.main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: 0;
}
.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #222;
  font-weight: 700;
  text-align: left;
  display: inline-block;
  text-transform: capitalize;
  transition: all 200ms ease;
  padding: 10px 30px 10px 10px;
  width: 100%;
  text-transform: uppercase;
}
.main-menu .navigation > li > ul > li > ul > li > a:before {
  content: "";
  height: 2px;
  width: 0;
  opacity: 0;
  background-color: #ff3a46;
  transition: all 600ms ease;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.main-menu .navigation > li > ul > li > ul > li:hover > a:before {
  width: 15px;
  opacity: 1;
}
.main-menu .navigation > li > ul > li > ul > li:hover > a {
  color: #222;
}
.main-menu .navigation > li.dropdown:hover > ul {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  list-style: none;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.slider {
  background: #f9f9f9;
  margin-bottom: -10px;
}
.slider .item .desktop {
  display: block;
}
.slider .item .mobil {
  display: none;
}
.select-bar {
  border-bottom: 1px solid #f1f1f1;
}
.select-bar .select-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select-bar .form-group {
  width: 30%;
  padding-right: 10px;
  padding-left: 10px;
}
.select-bar .form-group label {
  font-size: 19px;
  font-weight: 700;
  margin-left: 10px;
}
.select-bar .form-group .form-control {
  width: 100%;
  background: #fff;
  border: solid 2px #e8e8e8;
  border-radius: 5px;
  height: 50px;
  padding: 0 10px;
  outline: 0;
}
.select-bar .form-group button {
  background-color: #f16625;
  color: #fff;
  border: 0;
  padding: 0 30px;
  font-weight: 700;
  margin-left: 5px;
  border-radius: 3px;
  outline: 0;
  cursor: pointer;
  height: 50px;
  margin-top: 35px;
}
.select-bar .form-group button:hover {
  background-color: #23527c;
  transition: all 0.3s ease;
}
.select-bar .form-group.form-button {
  width: 10%;
}
.countries-home {
  background: #f9f9f9;
}
.countries-home .title {
  position: relative;
  font-size: 21px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 3px;
}
.countries-home .title:after {
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: #f16625;
  content: "";
  left: 0;
  bottom: 0;
}
.country-box a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 1px #f1f1f1;
}
.country-box .flag {
  margin-right: 10px;
}
.country-box .flag img {
  max-height: 22px;
}
.home-form {
  background: url(../images/bg5.jpg);
  position: relative;
}
.home-form .area {
  align-items: center;
}
.home-form:before {
  position: absolute;
  content: "";
  background-color: #fff;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.home-form .section-top {
  text-align: left;
  padding-bottom: 0;
}
.services-uni ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-uni ul li {
  border-bottom: dashed 1px #f1f1f1;
  padding-bottom: 7px;
  margin-bottom: 7px;
  width: 33.33%;
  float: left;
}
.services-uni ul li:before {
  content: "\f105";
  font-family: icesturkey;
  font-weight: 300;
  margin-right: 7px;
}
.services-uni ul li a {
  color: #333;
  font-size: 17px;
  font-weight: 500;
}
.services-uni ul li a:hover {
  color: #00b3ee;
}
.blog-box-area > * {
  margin-bottom: 50px;
}
.blog-box {
  background-color: #f9f9f9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 100%;
}
.blog-box .picture {
  position: relative;
  margin-bottom: 35px;
}
.blog-box .picture img {
  border-radius: 10px;
}
.blog-box .picture img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.blog-box .picture .arrow {
  background-color: var(--c-primary);
  display: inline-block;
  border-radius: 12px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.blog-box .picture .arrow:hover {
  background-color: #23527c;
  transition: all 0.3s ease;
}
.blog-box .picture .arrow a {
  color: #fff;
  font-size: 25px;
  padding: 2px 15px;
}
.blog-box .title {
  text-align: center;
}
.blog-box .title a {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  padding: 0 10px;
}
.blog-box .title a:hover {
  color: #00b3ee;
}
.blog-box .desc {
  padding: 0 10px;
  padding-bottom: 15px;
  font-weight: 500;
  text-align: center;
}
.blog .button2 {
  text-align: center;
}
.author-area {
  background: #f9f9f9;
  border: 2px solid #f1f1f1;
  padding: 30px;
  display: flex;
}
.author-area .picture {
  width: 150px;
  margin-right: 20px;
  min-width: max-content;
}
.author-area .picture img {
  width: 120px;
}
.author-area .name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.sss-home {
  background: url(../images/sssbg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.sss-home .section-top {
  color: #fff;
  text-align: left;
}
.sss-home .section-top .title {
  color: #fff;
}
.sss-title {
  color: #333;
}
.sss-title:before {
  font-family: icesturkey;
  content: "\f107";
  margin-right: 10px;
}
.card {
  margin-bottom: 20px;
  border: 0;
}
.card-header {
  background-color: rgba(255, 255, 255, 0.71);
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: solid 1px #f1f1f1;
  border-radius: 5px;
}
.card-body {
  background-color: rgba(255, 255, 255, 0.71);
  border: solid 1px #f1f1f1;
  padding: 10px;
  line-height: 26px;
  border-radius: 10px;
}
.sss-home .button2 {
  text-align: center;
}
.sss-page {
  background: #fff;
}
.sss-page .card-header {
  background-color: #fff;
  border: solid 1px #e8e8e8;
}
.sss-page .card-body {
  background-color: #fff;
  border: solid 1px #e8e8e8;
}
.referance-home .swiper-button-prev {
  left: -50px;
  background-color: var(--c-primary);
}
.referance-home .swiper-button-next {
  right: -50px;
  background-color: var(--c-primary);
}
.referance-home .swiper-button-prev:hover,
.referance-home .swiper-button-next:hover {
  background-color: #233d7d;
}
.ref-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  height: 150px;
  background-color: #fff;
  border: solid 1px #e8e8e8;
}
.ref-box a {
  max-height: 120px;
  display: flex;
  padding: 5px;
}
.ref-box:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.ref-box img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  max-height: 100%;
}
.referance-home .button2 {
  text-align: center;
  margin-top: 20px;
}
.referance-page .ref-box {
  margin-bottom: 30px;
}
.cta {
  background-color: #2e2e2e;
  padding: 20px 0;
}
.cta .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta .items span {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 2px 2px 16px #000;
}
.cta .items a {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 2px 2px 16px #000;
}
.cta .items a:hover {
  opacity: 0.7;
}
.footer {
  background: url(../images/map.png) no-repeat center center;
  background-color: #262626;
  color: #fff;
  border-bottom: 2px solid #404040;
}
.footer .title {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}
.footer .title:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 3px;
  background-color: #fff;
  bottom: -2px;
  left: 0;
}
.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer ul li {
  border-bottom: dashed 1px rgba(255, 255, 255, 0.23);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.footer ul li a {
  color: #fff;
}
.footer ul li a:hover {
  opacity: 0.7;
}
.footer ul li a:before {
  content: "\f105";
  font-family: icesturkey;
  color: #fff;
  font-weight: 300;
  margin-right: 7px;
}
.footer ul.contact li a:before {
  display: none;
}
.footer ul.contact li i {
  margin-right: 15px;
}
.footer ul.social {
  display: flex;
  justify-content: flex-start;
  font-size: 20px;
}
.footer ul.social li {
  border: 0;
  padding: 0;
  margin: 0;
}
.footer ul.social li a {
  margin-right: 10px;
}
.footer-bottom {
  background-color: #262626;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}
.testimonials-home {
  background: #f9f9f9;
}
.testimonials-home .area {
  align-items: center;
}
.testimonials-home .picture {
  margin-left: 40px;
}
.testimonials-home .swiper-slide {
  padding: 20px;
}
.testimonials-home .swiper-button-prev {
  left: -50px;
  background-color: var(--c-primary);
}
.testimonials-home .swiper-button-next {
  right: -50px;
  background-color: var(--c-primary);
}
.testimonials-home .swiper-button-prev:hover,
.testimonials-home .swiper-button-next:hover {
  background-color: #233d7d;
}
.testimonials-home .section-top {
  text-align: left;
  padding-bottom: 0;
}
.testimonials-home .section-top .title {
  margin-bottom: 0;
  margin-left: 20px;
}
.testimonials-box {
  display: flex;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: -1px 8px 18px rgba(0, 0, 0, 0.08);
}
.testimonials-box .left {
  width: 30%;
  padding-right: 20px;
}
.testimonials-box .left .avatar {
  text-align: center;
}
.testimonials-box .left .avatar img {
  border-radius: 50%;
}
.testimonials-box .left .name {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #00b3ee;
}
.testimonials-box .right {
  width: 70%;
  padding-left: 20px;
}
.testimonials-box .right .title {
  font-size: 20px;
  font-weight: 700;
  color: #23527c;
  margin-bottom: 12px;
}
.testimonials-home .button2 {
  text-align: center;
}
.testimonials-page {
  background-color: #fff;
}
.testimonials-page .testimonials-box {
  margin-bottom: 30px;
}
.testimonials-page .testimonials-box .left {
  width: 20%;
}
ul.testimonials-select {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  margin-bottom: 30px;
  justify-content: space-evenly;
}
ul.testimonials-select li {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: -1px 8px 18px rgba(0, 0, 0, 0.08);
  padding: 8px 20px;
  border: solid 1px;
  display: inline-block;
  cursor: pointer;
  transition: all 300ms ease;
}
ul.testimonials-select li:hover {
  color: #00b3ee;
}
.form-area .form-control {
  width: 100%;
  background: #fff;
  border: solid 2px #e8e8e8;
  border-radius: 5px;
  height: 50px;
  outline: 0;
  margin-bottom: 20px;
  padding: 10px;
}
.form-area .checkdiv {
  display: flex;
  align-items: center;
}
.form-area .checkdiv input[type="checkbox"] {
  margin-right: 15px;
}
.form-area .checkdiv a {
  font-weight: 700;
}
.form-area .nobot {
  display: flex;
  justify-content: center;
}
.form-area .cbutton {
  text-align: center;
}
.form-area button.contact-button {
  outline: 0;
  cursor: pointer;
  background: #8ac53e;
  margin: 15px auto 0 auto;
  background-color: var(--c-primary);
  padding: 10px 60px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  border: solid 3px var(--c-primary);
  display: inline-block;
  text-align: center;
}
.form-area button.contact-button:hover {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #23527c;
}
.breadcrumb1 {
  padding: 20px 0;
  background: #f9f9f9;
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
}
.breadcrumb1 .b-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.breadcrumb1 ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb1 ul li {
  margin-right: 10px;
}
.breadcrumb1 ul li a {
  position: relative;
}
.breadcrumb1 ul li a:after {
  content: "/";
  margin-left: 10px;
}
.breadcrumb2 {
  min-height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.breadcrumb2 .title {
  color: #fff;
  background-color: rgba(32, 54, 114, 0.7);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  padding: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb2 .form-area {
  background-color: #fff;
  padding: 5px 20px;
  min-height: 500px;
}
.breadcrumb2 .form-area .form-title {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--c-secondary);
}
.breadcrumb2 .form-area .form-desc {
  text-align: center;
  font-weight: 700;
  color: var(--c-secondary);
  font-size: 16px;
  margin-bottom: 5px;
}
.breadcrumb2 .form-area .form-desc a {
  color: var(--c-primary);
}
.breadcrumb2 .form-area .form-desc a:hover {
  color: #00b3ee;
}
.breadcrumb2 .form-area .form-control {
  width: 100%;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 5px;
  height: 35px;
  margin-bottom: 10px;
  padding: 2px 5px;
}
.bread-area2-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #eee;
  padding: 10px;
}
.bread-area2-1 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bread-area2-1 ul li {
  margin-left: 15px;
}
.bread-area2-1 ul li a:after {
  content: "/";
  margin-left: 10px;
}
.pagination-area {
  display: flex;
  justify-content: center;
}
.pagination-area ul.pagination {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.pagination-area li.page-item {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.pagination-area li.page-item a {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #333;
  background-color: #fff;
  border: 1px solid #ecebeb;
  border-radius: 10px;
  margin-right: 2px;
  margin-left: 2px;
}
.pagination-area li.page-item a:hover {
  color: #fff;
  background-color: #23527c;
}
.pagination-area .page-item.active a {
  background-color: #23527c;
  color: #fff;
}
.text-area img {
  max-width: 100%;
  margin-bottom: 15px;
  height: auto;
}
@media (max-width: 992px) {
  .text-area img {
    height: auto !important;
  }
}
.text-area a {
  font-weight: 700;
}
.text-area ul {
  padding: 0;
}
.text-area ul li {
  list-style: none;
  margin-bottom: 10px;
}
.fast-links ul li:before {
  content: "\f105";
  font-family: icesturkey;
  color: #23527c;
  font-weight: 700;
  margin-right: 7px;
}
.toc-area {
  background-color: var(--c-secondary);
  width: 50%;
  left: 0;
  padding: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.toc-area .toc-title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.text-area .toc-area ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.text-area .toc-area ul li:before {
  color: #fff;
}
.cat-box {
  margin-bottom: 30px;
}
.cat-box .picture img:hover {
  opacity: 0.8;
}
.cat-box .title {
  text-align: center;
}
.cat-box .title a {
  padding: 10px 5px;
  display: inline-block;
  width: 100%;
  font-weight: 700;
}
.contact-page .card-header {
  background-color: #fff;
  border: solid 2px #e8e8e8;
}
.contact-page .card-body {
  background-color: #fff;
  border: solid 2px #e8e8e8;
}
.contact-page .section-top {
  padding-bottom: 0;
}
.contact-page .section-top .title {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: left;
}
.contact-page .testimonials-home {
  background: #fff;
}
.contact-page .maps {
  margin-bottom: 40px;
}
.contact-page .maps iframe {
  width: 100%;
}
.contact-page .contact-info {
  margin-bottom: 40px;
}
.contact-page .contact-info .i-title {
  font-size: 30px;
  color: #333;
  font-weight: 700;
}
.contact-page .contact-info .i-subtitle {
  margin-bottom: 15px;
}
.contact-page .contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-page .contact-info ul li {
  padding: 5px 0;
  border-bottom: solid 1px #e8e8e8;
  font-size: 18px;
  display: flex;
}
.contact-page .contact-info ul li a {
  color: #00b3ee;
}
.contact-page .contact-info ul li span {
  color: #00b3ee;
  width: 45px;
  display: inline-block;
}
.contact-page .contact-info ul li a span {
  width: 30px;
  display: inline-block;
}
.contact-detail .swiper-slide {
  padding: 20px;
  padding-top: 0;
}
.contact-detail .swiper-button-prev {
  left: -10px;
}
.contact-detail .swiper-button-next {
  right: -10px;
}
.contact-button {
  margin-top: 20px;
}
.contact-button a {
  background-color: #00b3ee;
  color: #fff;
  margin-bottom: 10px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  border-radius: 5px;
}
.contact-button a span {
  margin-right: 15px;
  font-size: 18px;
  font-weight: 700;
}
.contact-button a:hover {
  background-color: var(--c-primary);
}
.contact-button a:hover span {
  margin-right: 0;
  transition: all 0.3s ease;
}
.text-area table {
  width: auto;
  max-width: 100% !important;
  background: #fff;
  margin: 1em 0;
  border: 1px solid rgba(34, 36, 38, 0.15);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0.28571429rem;
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
  border-collapse: separate;
  border-spacing: 0;
}
.text-area table:first-child {
  margin-top: 0;
}
.text-area table:last-child {
  margin-bottom: 0;
}
.text-area table td,
table tr {
  -webkit-transition:
    background 0.1s ease,
    color 0.1s ease;
  transition:
    background 0.1s ease,
    color 0.1s ease;
}
.text-area table thead {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.text-area table thead tr {
  cursor: auto;
  background-color: var(--c-secondary);
  color: #fff;
  font-weight: 700;
  text-align: inherit;
  padding: 0.92857143em 0.78571429em;
  vertical-align: inherit;
  font-style: none;
  font-weight: 700;
  text-transform: none;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  border-left: 0;
}
.text-area table tr td {
  border-top: 1px solid rgba(34, 36, 38, 0.1);
}
.text-area table tr:first-child td {
  border-top: 0;
}
.text-area table tbody + tbody tr:first-child td {
  border-top: 1px solid rgba(34, 36, 38, 0.1);
}
.text-area table td {
  padding: 0.78571429em;
  text-align: inherit;
}
.text-area table tr td,
table tr th {
  border-left: 1px solid rgba(34, 36, 38, 0.1);
}
.text-area table tr td:first-child,
table tr th:first-child {
  border-left: 0;
}
.text-area table tbody tr:nth-child(even) {
  background: #f2f2f2;
}
.full-image img {
  width: 100%;
  object-fit: cover;
}
.author-page-title {
  text-align: center;
  padding: 35px 0;
  font-size: 25px;
  font-weight: 700;
  color: #222;
}
.appointment-page .select-bar {
  border: 0;
}
.appointment-page .select-bar .form-group.form-button {
  width: 100%;
  text-align: center;
}
.error-page {
  text-align: center;
}
.error-page .title {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 30px;
}
.error-page .desc {
  margin-bottom: 40px;
}
.activity1 .header-top {
  display: none;
}
.activity1 .logo-menu {
  display: none;
}
.activity1 .footer {
  display: none;
}
.activity1 .logo-menu {
  display: none;
}
.activity1 .header-mobile {
  display: none;
}
.activity-header .area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px;
}
.activity-header .area a {
  font-size: 35px;
  color: #233d7d;
  font-weight: 700;
}
.activity-header .area a:hover {
  opacity: 0.8;
}
.activity-page .page-title {
  font-size: 30px;
  font-weight: 800;
  color: #333;
  margin-bottom: 30px;
}
.activity-page .item {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 20px;
  margin-bottom: 20px;
}
.activity-page .item:hover {
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
  transition: all 0.3s ease;
}
.activity-page .item .header {
  position: relative;
  padding-bottom: 20px;
}
.activity-page .item .header .icon {
  position: absolute;
  color: #fff;
  font-size: 20px;
  right: 0;
  bottom: 0;
  padding: 5px;
}
.activity-page .item .title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.activity-page .activ-show-area {
  margin-top: 20px;
}
.activity-page .select-bar .form-group .form-control {
  border: solid 1px #e8e8e8;
  height: 35px;
}
.activity-page .select-bar .form-group label {
  font-size: 15px;
  margin-left: 0;
  margin-bottom: 1px;
}
.activity-page .select-bar .form-group {
  margin-bottom: -10px;
}
.activity-page .select-bar .form-group.form-button {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 20px;
  width: 100%;
}
.activity-page .pasif-listing img {
  filter: grayscale(100%);
}
.activity-page .pasif-listing .item:hover img {
  filter: grayscale(0);
  transition: all 0.3s ease;
}
.activity-footer {
  background-color: #262626;
  padding-top: 20px;
}
.activity-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.activity-footer ul li a {
  padding: 10px;
  background-color: #fff;
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 5px;
  margin-left: 5px;
  margin-right: 5px;
}
.cont {
  display: block;
  position: fixed;
  bottom: 50%;
  right: -45px;
  padding: 5px 30px 1px;
  margin: 0;
  background-color: var(--c-primary);
  border-radius: 5px 5px 0 0;
  z-index: 99999;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border-bottom: 4px solid var(--c-primary);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.cont:hover {
  color: #fff;
}
@media only screen and (min-width: 900px),
  (height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
  (width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  .header-mobile {
    display: none;
  }
}
@media only screen and (max-width: 900px),
  (height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
  (width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
  .mobile-header-icons {
    display: flex;
  }
  .mobile-header-icons .i {
    font-size: 22px;
  }
  .mobile-header-icons a i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .mobile-header-icons a i.far.fa-map-marker-alt {
    margin-left: 15px;
    background-color: #f16625;
  }
  .mobile-header-icons a i.fas.fa-phone {
    background-color: #243e7d;
  }
  .mobile-header-hamburger .hamburger-toggle {
    background: transparent;
    padding: 0;
    font-size: 30px;
    margin: 0 10px;
    border: 0;
  }
  .mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    width: 100%;
    -webkit-animation: fadeOutLeft 0.5s ease-in-out;
    animation: fadeOutLeft 0.5s ease-in-out;
  }
  .mobile-nav-content {
    padding-top: 20px;
    background: #1d1e1f;
    width: 75%;
    height: 100%;
    cursor: copy;
    overflow-y: scroll;
  }
  .mobile-nav-logo {
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  .mobile-nav-logo-content {
    position: relative;
  }
  .mobile-nav-logo-content i {
    display: block;
    margin: 0 auto 10px;
    max-width: 30px;
    line-height: 32px;
    font-size: 30px;
  }
  .mobile-nav-logo-content a {
    color: #b5bbc2;
    font-size: 14px;
    font-weight: 600;
  }
  .mobile-nav-logo > a {
    display: block;
    padding: 30px 60px;
  }
  .mobile-nav-logo > a img {
    width: 100%;
  }
  .mobile-nav-menu ul li {
    padding: 10px 25px;
    list-style: none;
  }
  .sub-menu ul {
    background-color: #28292a;
  }
  .mobile-nav-menu ul li .sub-menu-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mobile-nav-menu ul li i {
    font-size: 14px;
    fill: #b5bbc2;
    color: #b5bbc2;
  }
  .mobile-nav-menu ul li a {
    color: #b5bbc2;
    font-weight: 600;
    font-size: 14px;
  }
  .mobile-nav-menu ul li ul {
    display: none;
    margin-top: 10px;
    margin-right: -25px;
    margin-left: -25px;
    padding-left: 25px;
  }
  .mobile-nav-login a {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #b5bbc2;
    padding-left: 25px;
    padding-bottom: 20px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mobile-nav-login a svg {
    font-size: 18px;
    margin-right: 5px;
  }
  .mobile-nav.open {
    display: block;
    -webkit-animation: fadeInLeft 0.5s;
    animation: fadeInLeft 0.5s;
    overflow-x: scroll;
  }
  .cta-link {
    line-height: 40px;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    display: block;
    color: #fff;
    border-radius: 3px;
    background: var(--c-primary);
    text-align: center;
    margin: 20px;
    margin-bottom: 10px;
  }
  .mobile-close-menu {
    position: fixed;
    top: 18px;
    right: 20px;
    display: none;
    z-index: 9999;
  }
  .mobile-close-menu i {
    color: #fff;
    font-size: 25px;
  }
  ul.mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    list-style: none;
  }
  ul.mobile-menu-social li + li {
    margin-left: 15px;
  }
  ul.mobile-menu-social li a {
    border: 1px solid var(--c-primary);
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
  }
  .mobile-nav-menu ul {
    padding: 0;
  }
  .header-mobile {
    display: block;
  }
  .header-mobile-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header-mobile .header-mobile-logo img {
    max-width: 120px;
  }
  .fly-alert {
    top: 30px;
    left: 10px;
    right: 10px;
    font-size: 16px;
    text-align: center;
  }
  .footer-sticky-bar {
    display: block;
  }
  .rotate {
    flex-direction: column-reverse;
  }
  .header-top {
    display: none;
  }
  .logo-menu {
    display: none;
  }
  .slider .item .desktop {
    display: none;
  }
  .slider .item .mobil {
    display: block;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }
  .select-bar .select-area {
    display: block;
    justify-content: center;
  }
  .select-bar .form-group {
    width: 100%;
    margin-bottom: 10px;
  }
  .select-bar .form-group label {
    font-size: 17px;
    margin-left: 0;
    margin-bottom: 2px;
    color: #333;
  }
  .select-bar .form-group.form-button {
    width: 100%;
    text-align: center;
    margin-top: -25px;
  }
  .services-uni ul li {
    width: 100%;
  }
  .testimonials-home .section-top .title {
    text-align: center;
  }
  .testimonials-home .swiper-button-prev {
    left: 0;
  }
  .testimonials-home .swiper-button-next {
    right: 0;
  }
  .testimonials-box {
    display: block;
    padding: 30px;
  }
  .testimonials-box .left {
    width: 100%;
    padding-right: 0;
  }
  .testimonials-box .left .avatar img {
    height: 120px;
    width: 120px;
  }
  .testimonials-box .left .avatar {
    display: flex;
    justify-content: center;
  }
  .testimonials-box .right {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }
  .testimonials-home .picture {
    display: none;
  }
  .referance-home .swiper-button-prev {
    left: 0;
  }
  .referance-home .swiper-button-next {
    right: 0;
  }
  .cta .items {
    display: block;
    text-align: center;
  }
  .cta .items span {
    display: block;
    margin-bottom: 15px;
  }
  .breadcrumb1 .b-title {
    font-size: 22px;
  }
  .contact-page .accordion {
    margin-top: 30px;
  }
  .text-area table {
    width: 100% !important;
  }
  .text-area table thead {
    display: none;
  }
  .text-area table tr {
    display: block;
    position: relative;
    padding: 1.2em 0;
    height: auto !important;
  }
  .text-area table td {
    display: table-row;
    height: auto !important;
  }
  .text-area table td:before {
    content: attr(data-label);
    display: table-cell;
    font-weight: 700;
    padding: 0.2em 0.6em 0.2em 0;
    text-align: right;
    color: var(--c-secondary);
    padding-left: 20px;
  }
  .text-areaa table td:last-child:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #ccc;
  }
  .text-area table tbody tr:last-child td:after {
    border-bottom: 0;
  }
  .breadcrumb2 {
    height: 300px;
  }
  .breadcrumb2 .form-area {
    display: none;
  }
  .breadcrumb2 .title {
    position: relative;
    margin: 15px 0;
    font-size: 25px;
  }
  .bread-area2-1 {
    display: block;
    text-align: center;
  }
  .bread-area2-1 ul {
    justify-content: center;
  }
  .toc-area {
    width: 100%;
  }
  ul.testimonials-select {
    display: block;
    text-align: center;
  }
  ul.testimonials-select li {
    margin-bottom: 10px;
    min-width: 180px;
  }
  .testimonials-box {
    text-align: center;
  }
  .testimonials-page .testimonials-box .left {
    width: 100%;
  }
  .activity-header .area {
    display: block;
    text-align: center;
  }
  .activity-header .area a {
    font-size: 20px;
    display: block;
  }
  .footer-bottom {
    padding-bottom: 50px;
  }
  .cont {
    display: none;
  }
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.fade-tab {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade-tab.show {
  opacity: 1;
}
@media (min-width: 992px) {
  .hidden-lg {
    display: none;
  }
}
@media (max-width: 991px) {
  .hidden-md {
    display: none;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.nav-item {
  position: relative;
  background-color: #f9f9f9;
  padding: 15px;
}
@media (min-width: 992px) {
  .nav-item {
    border-top: 3px solid transparent;
  }
  .nav .nav-item + .nav-item {
    margin-left: 10px;
  }
  .nav-item.active {
    border-color: #00b3ee;
    color: #00b3ee;
  }
  .nav-item::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0;
    border-color: #01b3ee transparent transparent;
    z-index: 10;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .nav-item.active::before {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .nav-item {
    display: none;
  }
}
.mb-30 {
  margin-bottom: 30px !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}
.width100 {
  width: 100% !important;
}
.text-center {
  text-align: center;
}
.page-title {
  color: #333;
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 28px;
}
.js-tab-selector {
  width: 100%;
  background: #fff;
  border: solid 2px #e8e8e8;
  border-radius: 5px;
  height: 50px;
  outline: 0;
  margin-bottom: 20px;
  padding: 10px;
}
@media (min-width: 992px) {
  .js-tab-selector {
    display: none;
  }
}
.search1 .modal-dialog {
  max-width: 60%;
  top: 40%;
}
.search1 .modal-header {
  display: none;
}
.search1 .close {
  position: absolute;
  border: 0;
  background: 0 0;
  top: -20px;
  right: 0;
  font-size: 40px;
  outline: 0;
}
.search1 .modal-body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 30px;
}
.search1 button.searchbutton {
  background-color: #01b3ee;
  color: #fff;
  border: 0;
  padding: 13px 20px;
  font-weight: 500;
  margin-left: 10px;
  border-radius: 3px;
  height: 100%;
}
.search1 .form-control {
  margin-bottom: 0;
}
.main-menu .navigation .search i {
  font-weight: 700;
  cursor: pointer;
}
.mobil-search.search1 {
  display: flex;
  padding: 0 5px;
}
.search-title {
  font-size: 24px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}
.fast-links {
  display: block;
  clear: both;
}
.fast-links ul {
  padding: 35px 30px;
  background-color: var(--c-secondary);
  display: inline-block;
  color: #fff;
  margin: 20px 0;
}
.fast-links ul::before {
  content: "Contents";
  font-size: 20px;
  font-weight: 700;
  display: inline-block !important;
  margin-bottom: 5px;
}
.fast-links a {
  color: #fff;
}
.fast-links ul li::before {
  color: #fff;
  content: "\f105";
  font-size: 10px;
}
.fast-links li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.homeh1 {
  display: flex;
  flex-direction: column;
}
.homeh1-content {
  display: flex;
  align-items: center;
  margin-left: 3px;
}
.homeh1 h1 {
  font-size: 8px;
  margin-bottom: 0;
  color: #c8c8c9;
  font-weight: 600;
  text-align: left;
  display: inline-block;
}
.homeh1 span {
  margin-bottom: 0;
  color: #c8c8c9;
  font-weight: 600;
  text-align: left;
  font-size: 8px;
  margin-left: 2px;
}
@media (min-width: 1200px) {
}
.popup_content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  padding: 35px;
  background-color: #fff;
  border: 5px solid #2da5da;
  z-index: 250;
  display: none;
  height: auto;
}
.popup_content img {
  width: 100%;
  max-width: 100%;
}
.sncancel {
  background: 0 0;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 25px;
  z-index: 300;
  border: 1px solid transparent;
  color: #333;
}
.select-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.select-wrapper > .row {
  flex: 1;
}
.select-wrapper .form-group {
  width: 100%;
  padding: 0;
}
.form-control[disabled] {
  opacity: 0.7;
  background-color: #e8e8e8 !important;
  cursor: progress;
}
.selectize-control.plugin-drag_drop.multi
  > .selectize-input
  > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}
.selectize-control.single .selectize-input:after,
.selectize-input.dropdown-active::before,
.selectize-input::after {
  content: " ";
  display: block;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
  color: #000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 0;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove,
.selectize-input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: inline-block;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 0;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 0;
}
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  padding: 2px 0 0;
  border-left: 1px solid #0073bb;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.label,
.selectize-input > *,
sub,
sup {
  vertical-align: baseline;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #00578d;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: 0 0;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #aaa;
}
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 28px;
  top: 6px;
  font-size: 23px;
}
.selectize-control,
.selectize-input {
  position: relative;
}
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 16px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}
.selectize-control.single .selectize-input.input-active,
.selectize-input {
  background: #fff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  box-sizing: border-box;
  border: solid 2px #e8e8e8;
  border-radius: 5px;
  min-height: 50px;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 5px 8px 2px;
}
.selectize-input.full {
  background-color: #fff;
}
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}
.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
.selectize-input > * {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
}
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #fff;
  border: 1px solid #0073bb;
}
.selectize-control.multi .selectize-input > div.active {
  background: #92c836;
  color: #fff;
  border: 1px solid #00578d;
}
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #fff;
  background: #d2d2d2;
  border: 1px solid #aaa;
}
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 1px !important;
  text-indent: 0 !important;
  border: 0 !important;
  background: 0 0 !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: 0 !important;
}
.selectize-input::after {
  clear: left;
}
.selectize-input.dropdown-active::before {
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0;
  border-top: 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.selectize-dropdown .optgroup-header,
.selectize-dropdown [data-selectable] {
  padding: 5px 8px;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 0;
}
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
  padding-top: 7px;
  font-weight: 700;
  font-size: 0.85em;
}
.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.selectize-dropdown .active.create {
  color: #495c68;
}
.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}
.selectize-control.single .selectize-input:after {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0;
  border-color: grey transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px;
  border-color: transparent transparent grey;
}
.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}
.selectize-control.multi .selectize-input.has-items {
  padding-left: 5px;
  padding-right: 5px;
}
.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.selectize-control.multi .selectize-input.disabled [data-value],
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  border-color: #e6e6e6;
}
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  background: 0 0;
}
.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1b9dec;
  background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#1da7ee),
    to(#178ee9)
  );
  background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  -webkit-box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.03);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.03);
}
.selectize-control.multi .selectize-input [data-value].active {
  background-color: #0085d4;
  background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#008fd8),
    to(#0075cf)
  );
  background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
  background-image: -o-linear-gradient(top, #008fd8, #0075cf);
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
}
.selectize-control.single .selectize-input {
  -webkit-box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-color: #f9f9f9;
  background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#fefefe),
    to(#f2f2f2)
  );
  background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
}
.selectize-control.single .selectize-input,
.selectize-dropdown.single {
  border-color: #b8b8b8;
}
.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}
.selectize-dropdown .optgroup:first-child {
  border-top: 0 0;
}
.selectize-control.multi .selectize-input .item,
.selectize-control.multi .selectize-input .item.active {
  background-color: var(--c-primary);
  background-image: -moz-linear-gradient(
    top,
    var(--c-primary),
    var(--c-primary)
  );
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(var(--c-primary)),
    to(var(--c-primary))
  );
  background-image: -webkit-linear-gradient(
    top,
    var(--c-primary),
    var(--c-primary)
  );
  background-image: -o-linear-gradient(top, var(--c-primary), var(--c-primary));
  background-image: linear-gradient(
    to bottom,
    var(--c-primary),
    var(--c-primary)
  );
  border: 1px solid var(--c-primary);
  border-radius: 5px;
  padding: 10px;
}
@media (min-width: 992px) {
  .select-wrapper > .row {
    flex: 1;
    margin-right: 0;
  }
}
@media only screen and (max-width: 992px) {
  .popup_content {
    width: 425px;
    padding: 20px;
    background-color: #fff;
    border: 5px solid #2da5da;
    z-index: 250;
  }
}
@media only screen and (max-width: 600px) {
  .popup_content {
    width: 90%;
  }
}
.breadcrumb-button-scroll {
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .breadcrumb-button-scroll {
    display: none;
  }
}
.notice {
  background-color: #f16625;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  z-index: 9998;
}
.notice a {
  color: inherit;
}
.notice svg {
  width: 32px;
}
.notice .content {
  font-size: 18px;
  display: flex;
  align-items: center;
}
.notice .close {
  width: 100px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
.notice .content svg {
  width: 51px;
  margin-right: 15px;
}
.fake_error {
  white-space: nowrap;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px;
  background-color: #f44336;
  color: #fff;
  padding: 5px 15px;
  top: calc(100% - 40px);
  margin-bottom: 20px;
  position: absolute;
  z-index: 9;
  font-weight: 500;
}
.fake_error:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-bottom-color: #f44336;
  border-width: 10px;
  margin-left: -10px;
}
.bread-area {
  display: none;
}
@media (max-width: 991px) {
  .bread-area2-1 ul {
    display: none;
  }
  .breadcrumb1 ul {
    display: none;
  }
  .bread {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .bread-area {
    display: block;
    position: relative;
  }
  .bread-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0.8;
  }
  .bread-item {
    display: none;
    line-height: 1.5;
  }
  .bread-item i {
    margin-left: 15px;
    margin-right: 15px;
  }
  .bread-item.active {
    opacity: 1;
  }
  .bread-item:first-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .bread-item:first-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .bread-item:nth-child(2) {
    display: none;
  }
  .bread-item:nth-child(2) {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .bread-item:last-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .bread-item:last-child {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .bread {
    color: #494c51;
  }
  .js-bread-list {
    display: none;
    background-color: #fdfdfe;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px 30px;
    font-size: 12px;
    z-index: 8;
  }
  .js-bread-list .bread-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .js-bread-list .bread-item i {
    margin-left: 0;
  }
  .js-bread-list .bread-item + .bread-item {
    margin-top: 20px;
  }
  .js-bread-list .js-bread-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .js-bread-list .bread-item:nth-child(2) {
    margin-left: 10px;
  }
  .js-bread-list .bread-item:nth-child(3) {
    margin-left: 20px;
  }
  .js-bread-list .bread-item:nth-child(4) {
    margin-left: 30px;
  }
  .js-bread-list .bread-item:nth-child(5) {
    margin-left: 40px;
  }
}
.comment-form textarea.form-control {
  height: 100px;
}
.mobile-content {
  display: none;
}
@media (max-width: 992px) {
  .desktop-content {
    display: none;
  }
  .mobile-content {
    display: block;
  }
}
details {
  display: block;
}
summary {
  display: list-item;
  outline: 0;
  user-select: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  color: #00b3ee;
}
.dropdown-item .title {
  border: 2px solid #637587;
  text-align: center;
  padding: 8px 10px;
}
.dropdown-item .content {
  border: 1px solid #a7aebf;
  padding-top: 1rem;
}
.dropdown-item {
  margin-bottom: 5px;
}
.dropdown-tab ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
.dropdown-tab ul li {
  width: 33%;
  padding-left: 40px;
  position: relative;
}
.dropdown-nav {
  margin-bottom: 15px;
}
.dropdown-tab {
  position: relative;
  padding: 30px 10px;
  border: 1px solid #a7aebf;
}
.dropdown-tab ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00b3ee;
  position: absolute;
  left: 25px;
  top: 10px;
}
.readmore-label {
  cursor: pointer;
  background-color: var(--c-primary);
  padding: 10px 30px;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  border: solid 3px var(--c-primary);
  display: inline-block;
  text-align: center;
  margin-top: 15px;
}
.readmore-input ~ .readmore-content {
  height: 100px;
  overflow: hidden;
  transition: all 0.27s ease-in-out;
}
.readmore-label::before {
  content: "";
}
.readmore-label::after {
  content: "+ Show more";
}
.readmore-input:checked ~ .readmore-label::after {
  content: "- Show less";
}
.readmore-input:checked ~ .readmore-content {
  height: auto;
}
.readmore-input:checked ~ .readmore-label {
  background-color: #fff;
  color: #23527c;
}
@media (max-width: 992px) {
  .footer-sticky-bar {
    display: flex;
  }
  .footer-sticky-bar a:nth-child(2) {
    background-color: var(--c-primary);
  }
  .footer-sticky-bar a:nth-child(1) {
    background-color: #243e7d;
  }
}
iframe {
  max-width: 100%;
}

.school-image {
  margin-bottom: 30px;
  display: block;
}

.school-section {
  background-color: #f7f7f7;
  padding: 30px 0px;
}

.school-section .section-title {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  font-weight: bold;
}

.logo img {
  height: 65px;
  width: auto;
}

.logo {
  padding: 10px 0;
}

.activity-header-logo img {
  height: 65px;
}

.home-form .picture img {
  object-fit: contain;
}

.h-500 {
  height: 500px;
}

/** popup */

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
}

.popup .content {
  position: relative;
  max-width: 992px;
  padding: 30px;
  margin: 15px;
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.5);
  border-radius: 26px;
  max-height: calc(100% - 30px);
}

.popup .close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  color: var(--color2);
  width: 40px;
  height: 40px;
  transform: translate(25%, -25%);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
}

.popup .close svg {
  width: 20px;
}

.popup .content .content-wrapper {
  overflow: auto;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .popup .content {
    padding: 15px;
  }
}

/***/

/*kvkk-bar*/
.kvkk-bar {
  top: unset;
  bottom: 0;
  height: unset;
  font-size: 13px;
}

.kvkk-bar .content {
  background-color: unset;
  box-shadow: unset;
  padding: unset;
  color: #fff;
  margin: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.kvkk-bar .button2 {
  display: flex;
  justify-content: center;
}

.kvkk-bar .close {
  top: -20px;
  width: 30px;
  height: 30px;
}

.kvkk-bar .close svg {
  width: 12px;
}

.kvkk-bar .content .btn.btn-red {
  display: inline-block;
  padding: 3px 25px;
}

.kvkk-bar .content .content-wrapper p {
  margin-bottom: 10px;
}
/***/

.datepicker-inline .datepicker {
  width: 100%;
}

.datepicker-inline .datepicker--cell {
  height: 40px;
}
.form-area .checkdiv > label {
  margin: 0;
}
.reset-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.choose-consultant input {
  display: none;
}

.choose-consultant label {
  margin-bottom: 10px;
  border-radius: 3px;
  display: block;
  border: 1px solid var(--c-primary);
  padding: 5px 10px;
  text-align: left;
  cursor: pointer;
  transition: all ease 150ms;
}

.choose-consultant input:checked + label {
  background-color: var(--c-primary);
  color: #fff;
}

.consultant-title {
  font-weight: 600;
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
}

.picker-wrapper {
  margin-bottom: 20px;
}
.mb-1 {
  margin-bottom: 1rem;
}

.tableScroll {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.tableScroll i {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 700;
  animation: tablescroll 0.5s infinite;
}

.fast-links ul {
  position: sticky;
  top: 100px;
}

.alert {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 9999;
}

@media (max-width: 992px) {
  .alert {
    width: 100%;
    left: 0;
    right: 0;
    top: 100px;
  }
}

.episode-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 30px;
  position: relative;
}

.episode-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  background: #222;
  bottom: 0;
  border-radius: 5px;
}

.episode-box .picture img {
  width: 100%;
}

.episode-box .title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.episode-box {
  margin-bottom: 15px;
  display: inline-block;
}

.text-area ul li {
  display: flex;
}

.episode-box .picture img {
  height: 200px;
  object-fit: cover;
}

#recaptcha-formu .modal-content {
  padding: 30px;
  text-align: center;
}

#recaptcha-formu .modal-dialog {
  transform: translateY(100%);
}

.breadcrumb2 .container {
  height: 100%;
}

.breadcrumb2 .container .row {
  height: 100%;
}

.breadcrumb2 .container .row .col-md-4 {
  height: 100%;
}

.breadcrumb2 .container .row .col-md-4 .form-area {
  height: 100%;
}

.header-top .right a.btn-purple {
  background: #128a8f;
  display: inline-block;
  margin: 0;
  color: white;
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 5px;
  border: solid 2px #128a8f;
}

.header-top .right a.btn-purple:hover {
  background: none;
  color: #128a8f;
}

.header-top .right a.btn-navy {
  background: #23527c;
  display: inline-block;
  margin: 0;
  margin-left: 10px;
  color: white;
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 5px;
  border: solid 2px #23527c;
}

.apply-btn {
  display: block;
  position: fixed;
  bottom: 35%;
  right: -55px;
  padding: 5px 30px 1px;
  margin: 0;
  background-color: #23527c;
  border-radius: 5px 5px 0 0;
  z-index: 99999;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border-bottom: 4px solid #23527c;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.apply-btn:hover {
  color: #fff;
}

@media (max-width:992px) {
    .apply-btn {
        display: none;
    }
}

/* ============================================================================
 * Native Lightbox — lightbox2 2.10.0 default görünüm/davranış replikası (jQuery'siz).
 * Tetikleyici: <a href="tam-gorsel" data-lightbox="grup" [data-title]>. JS: main.js sonu.
 * lightbox2 kaldırıldı; görsel parite korunur (Kural 12).
 * ========================================================================== */
.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    display: none;
    transition: opacity 0.4s ease;
}

.lightboxOverlay.lb-visible {
    opacity: 0.8;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
    display: none;
}

.lightbox .lb-outerContainer {
    position: relative;
    display: inline-block;
    max-width: 92vw;
    border-radius: 4px 4px 0 0;
    background-color: #fff;
    vertical-align: bottom;
}

.lightbox .lb-container {
    padding: 4px;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: calc(92vw - 8px);
    max-height: calc(88vh - 8px);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox .lb-image.lb-loaded {
    opacity: 1;
}

.lightbox .lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.lightbox .lb-prev,
.lightbox .lb-next {
    position: absolute;
    top: 0;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    outline: none;
    background-repeat: no-repeat;
    background-size: 36px 36px;
    transition: opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.lightbox .lb-prev {
    left: 0;
    width: 34%;
    background-position: 4% 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M15 5l-7 7 7 7'/%3E%3C/svg%3E");
}

.lightbox .lb-next {
    right: 0;
    width: 66%;
    background-position: 96% 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
}

.lightbox .lb-prev:hover,
.lightbox .lb-next:hover,
.lightbox .lb-prev:focus,
.lightbox .lb-next:focus {
    opacity: 1;
}

.lightbox .lb-dataContainer {
    width: 100%;
    padding-top: 5px;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
}

.lightbox .lb-data {
    padding: 0 10px;
    line-height: 1.2;
    overflow: hidden;
}

.lightbox .lb-data .lb-details {
    float: left;
    text-align: left;
    max-width: calc(100% - 40px);
}

.lightbox .lb-data .lb-caption {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.lightbox .lb-data .lb-number {
    display: block;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999;
}

.lightbox .lb-data .lb-closeContainer {
    float: right;
}

.lightbox .lb-data .lb-close {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 0.7;
    outline: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23444' stroke-width='2.5' stroke-linecap='round' d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
    transition: opacity 0.2s ease;
}

.lightbox .lb-data .lb-close:hover {
    opacity: 1;
}

/* ============================================================================
 * Native Lity — hafif youtube/iframe/görsel popup (lity 2.4.0 replikası, jQuery'siz).
 * Tetikleyici: <a href="youtube-url" data-lity>. Kapatma: overlay boşluğu, ×, ESC.
 * JS: main.js sonu. lity kaldırıldı; youtube embed davranışı native (Kural 12).
 * ========================================================================== */
html.lity-active,
html.lity-active body {
    overflow: hidden !important;
}

.lity {
    z-index: 9990;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    outline: none !important;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.3s ease;
    display: none;
}

.lity.lity-visible {
    display: block;
    opacity: 1;
}

.lity * {
    box-sizing: border-box;
}

.lity-wrap {
    z-index: 9990;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    white-space: normal;
}

.lity-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.lity-container {
    z-index: 9992;
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    max-height: 100%;
    outline: none !important;
}

.lity-content {
    z-index: 9992;
    position: relative;
}

.lity-close {
    z-index: 9994;
    width: 35px;
    height: 35px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 35px;
    line-height: 35px;
    font-family: Arial, Baskerville, monospace;
    border: 0;
    background: none;
    box-shadow: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active {
    color: #fff;
    text-decoration: none;
    outline: none;
}

/* youtube/iframe — responsive 16:9 */
.lity-iframe .lity-container {
    width: 100%;
    max-width: 964px;
}

.lity-iframe-container {
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
    position: relative;
}

.lity-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border: 0;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
}

/* görsel içerik */
.lity-image img {
    max-width: 100%;
    display: block;
    line-height: 0;
    border: 0;
}

/* ============================================================================
 * Native WOW (scroll-reveal) — wow.js 1.3.0 + animate.css 3.7.1 yerine.
 * Markup korunur: <div class="wow fadeInRight" data-wow-duration="2s">.
 * JS (main.js sonu) görünüre girince .wow-animated ekler → animasyon oynar.
 * Keyframe'ler animate.css 3.7.1 ile birebir (görsel parite, Kural 12).
 * ========================================================================== */
.wow-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.wow-animated.fadeInRight {
    animation-name: fadeInRight;
}

.wow-animated.fadeInLeft {
    animation-name: fadeInLeft;
}

.wow-animated.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Bootstrap 5.3 grid — gutter'ı eski BS4 değerine sabitle (görsel parite: 30px toplam = 15px/kenar).
   BS5 default 1.5rem (24px) idi → site geneli sütun boşlukları daralmasın. */
.row {
    --bs-gutter-x: 30px;
}

/* intlTelInput: telefon input sarmalayıcısı (.iti) vendor'da display:inline-block →
   sütunu doldurmuyor, "yarım" duruyordu. Tam genişlik yap (input zaten min-width:100%). */
.form-group-phone .iti {
    width: 100%;
    display: block;
}

/* Form başarı/hata modalı (.cms_fly-alert) — mail_alerts.blade.php global include ediliyor
   ama CSS eskiden yalnızca appointment sayfasında inline'dı → diğer sayfalarda stilsiz,
   sayfa altında görünüyordu. Global merkezî overlay stili. */
.cms_fly-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1060;
}
.cms_fly-alert .content {
    padding: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 500px;
    border-radius: 5px;
    margin: auto;
}
.cms_fly-alert .icon {
    width: 80px;
    height: 80px;
    border: 4px solid;
    border-radius: 50%;
    margin: 20px 0 30px;
    box-sizing: content-box;
    cursor: default;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cms_fly-alert.success .icon {
    border-color: #a5dc86;
    color: #a5dc86;
}
.cms_fly-alert.danger .icon {
    border-color: #f27474;
    color: #f27474;
}
.cms_fly-alert .icon svg {
    overflow: visible;
    height: 60px;
}
.cms_fly-alert .desc {
    color: #595959;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    margin: 0 0 .4em;
    word-wrap: break-word;
}
.cms_fly-alert ul.desc {
    list-style: none;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
}
.cms_fly-alert .close-btn {
    border-radius: 3px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 15px 5px 0;
    padding: 10px 32px;
    background-color: #3085d6;
}

