* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

a:hover {
  text-decoration: none;
}

body {
  font-family: "FTN_demi", sans-serif !important;
  padding-right:74px;
}
p,ul{
    margin: 0;
}
.section__container {
  /*margin-right: auto;*/
  /*margin-left: auto;*/
  margin:0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: 0.3s ease;
}
header .head__sec {
  padding-right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
header .head__sec .logo {
  margin-left: 22px;
}
header .head__sec .logo h2 {
  color: white;
  margin-bottom: 0;
  font-weight: 600;
}
header .head__sec .logo img {
  max-width: 136px;
  width: 130px;
}
header .head__sec .nav__links__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
header .head__sec .nav__links__head .lang__head .langs__list {
  display: flex;
  flex-direction: row;
}
header .head__sec .nav__links__head .lang__head .langs__list li {
  margin-right: 10px;
}
header .head__sec .nav__links__head > li {
  margin-right: 30px;
}
header .head__sec .nav__links__head > li a {
  color: #fff;
  font-size: 15px;
  padding: 10px 0; 
}
header:not(.sticky) .head__sec .nav__links__head > li a:not(.write__wp):hover {
  opacity: 0.7;
}
.write__wp__mobile{
    display:none;
}
header .head__sec .nav__links__head .write__wp{
     display: block; 
}
header .head__sec .nav__links__head .write__wp, .write__wp__mobile {
 
  background-color: #cd101a;
  border: 1px solid;
  padding: 9px 20px 10px;
  transition: background-color 0.1s ease;
  border-color: #cd101a;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 4px;
  -webkit-transition: background-color 0.1s ease;
  -moz-transition: background-color 0.1s ease;
  -ms-transition: background-color 0.1s ease;
  -o-transition: background-color 0.1s ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}
header .head__sec .nav__links__head .write__wp span, .write__wp__mobile span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(226, 220, 216, 0.2823529412);
  transition: width 0.6s ease-in-out, height 0.6s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
header .head__sec .nav__links__head .write__wp:hover span , .write__wp__mobile :hover span{ 
  width: 225%;
  height: 562.5px;
}
header .menu-mobile-trigger {
  display: none;
  width: 50px;
  height: 50px; 
}
header .menu-mobile-trigger button.hamburger {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  /*width: 25px;*/
  width: 100%;
    height: 100%;
    padding: 0 10px;
  margin: 0 auto;
  transition: all 0.25s ease-in-out;
}
header .menu-mobile-trigger button.hamburger span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 10px 0;
  background-color: #fff;
  padding: 0;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
header .menu-mobile-trigger button.hamburger > span:first-child {
  margin-top: 0;
}
header .menu-mobile-trigger button.hamburger > span:nth-child(3) {
  margin-top: 0;
  float: right;
  width:50%;
}
header .menu-mobile-trigger .hamburger-active > span:nth-child(1) {
  width: 100%;
  transform: translateY(12px) rotateZ(45deg) !important;
  -webkit-transform: translateY(12px) rotateZ(45deg) !important;
  -moz-transform: translateY(12px) rotateZ(45deg) !important;
  -ms-transform: translateY(12px) rotateZ(45deg) !important;
  -o-transform: translateY(12px) rotateZ(45deg) !important;
}
header .menu-mobile-trigger .hamburger-active > span:nth-child(2) {
  transform: rotateZ(-45deg);
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
}
header .menu-mobile-trigger .hamburger-active > span:nth-child(3) {
  width: 100% !important;
  transform: translateY(-12px) rotateZ(45deg);
  -webkit-transform: translateY(-12px) rotateZ(45deg);
  -moz-transform: translateY(-12px) rotateZ(45deg);
  -ms-transform: translateY(-12px) rotateZ(45deg);
  -o-transform: translateY(-12px) rotateZ(45deg);
}

header.sticky {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.03) 0, rgba(248, 248, 248, 0) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(249, 249, 249, 0.6509803922);
}


header.sticky  .menu-mobile-trigger button.hamburger span{
    background-color:black;
}

header.sticky .nav__links__head li a {
  color: #333;
}
header.sticky .nav__links__head li a:not(.write__wp):hover {
  color: #000;
}
header.sticky .logo img {
  filter: none;
  max-width: 100px;
}

.right__menu__fixed {
  position: fixed;
  max-width: 74px;
  height: 100vh;
  z-index: 100;
  right: 0;
  top: 0;
  background-image: linear-gradient(to top, #9f020b 0, #8f272d 100%);
  display: flex;
      align-items: center;
    justify-content: center;
  flex-direction: row-reverse;
  overflow: hidden;
  padding: 37px 0;
  transition: all 0.9s;
}
.right__menu__fixed .menu__visible {
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
  min-width: 5.20833vw;
  transition: all 0.5s;
}
.right__menu__fixed .menu__visible .menu__trigger {
  color: #fff;
  font-size: 0.83333vw;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.right__menu__fixed .menu__visible .menu__trigger .hamburger {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  width: 25px;
  margin: 0 auto;
  transition: all 0.25s ease-in-out;
}
.right__menu__fixed .menu__visible .menu__trigger .hamburger span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 10px 0;
  background-color: #fff;
  padding: 0;
  transform: rotate(0);
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
.right__menu__fixed .menu__visible .menu__trigger .hamburger span:first-child {
  margin-top: 0;
}
.right__menu__fixed .menu__visible .menu__trigger span {
  display: block;
  transform: rotate(-90deg); 
      margin-top: 40px;
}
.right__menu__fixed .menu__visible .menu__trigger span small {
  font-size: 12px;
}
.right__menu__fixed .menu__visible .menu__trigger span .menu-close {
  display: none;
}
.right__menu__fixed .menu__visible .menu__trigger span .menu-open {
  display: block;
}
.right__menu__fixed .menu__visible .menu__trigger.active .hamburger span:nth-child(1) {
  transform: translateY(12px) rotateZ(45deg);
  -webkit-transform: translateY(12px) rotateZ(45deg);
  -moz-transform: translateY(12px) rotateZ(45deg);
  -ms-transform: translateY(12px) rotateZ(45deg);
  -o-transform: translateY(12px) rotateZ(45deg);
}
.oflw{
    overflow-y: auto !important;
}
.right__menu__fixed .menu__visible .menu__trigger.active .hamburger span:nth-child(2) {
  transform: rotateZ(-45deg);
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
}
.right__menu__fixed .menu__visible .menu__trigger.active .hamburger span:nth-child(3) {
  transform: translateY(-12px) rotateZ(45deg);
  -webkit-transform: translateY(-12px) rotateZ(45deg);
  -moz-transform: translateY(-12px) rotateZ(45deg);
  -ms-transform: translateY(-12px) rotateZ(45deg);
  -o-transform: translateY(-12px) rotateZ(45deg);
}
.right__menu__fixed .menu__visible .menu__trigger.active .menu-close {
  display: block;
}
.right__menu__fixed .menu__visible .menu__trigger.active .menu-open {
  display: none;
}
.right__menu__fixed .menu__visible .menu__social {
  text-align: center;
  padding-bottom: 0;
  font-size: 1.04167vw;
  color: #fff;
}
.right__menu__fixed .menu__visible .menu__social ul {
  margin-bottom: 0;
}
.right__menu__fixed .menu__visible .menu__social ul li {
  padding-top: 30px;
}
.right__menu__fixed .menu__visible .menu__social ul li a svg {
  height: 15px;
  width: 15px;
  fill: white;
  transition: .3s ease;
}
.right__menu__fixed .menu__visible .menu__social ul li a i{
    color: #fff;
}
.right__menu__fixed .menu__visible .menu__social ul li a:hover svg{
    opacity:0.8;
}
.right__menu__fixed .menu__section {
  display: flex;
  flex-direction: row-reverse;
  overflow-y: hidden;
  height: 100%;
  direction: rtl;
  overflow-x: hidden;
}
.right__menu__fixed .menu__section .menu__section__left {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  height: auto;
  overflow: visible;
  direction: ltr;
  position: relative;
  border-right: 1px solid #a32a32;
}
.menu__section__left .aksiya__main{
    width:300px;
    background:white;
    border: 1px solid #a55459;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow:hidden;
    cursor:pointer;
    transition: .3s ease transform;
}
.menu__section__left .aksiya__main:hover{
    transform:translateY(-10px);
}
.menu__section__left .aksiya__main img{
    width: 100%;
    /*border-radius: 10px;*/
    height: 150px;
    color:black;
    /*margin-bottom:15px;*/
}
.right__menu__fixed .menu__section .menu__section__left h2 {
  font-size: 16px;
  font-weight: bold;
      margin-bottom:0;
      padding:16px;
      color:black;
    /*margin-bottom: 30px;*/

}
.right__menu__fixed .menu__section .menu__contact {
  overflow: visible;
  padding: 0 52px;
  padding-top: 30px;
  width: 300px;
  height: auto;
  direction: ltr;
  color: white;
}
.right__menu__fixed .menu__section .menu__contact h2 {
  font-size: 16px;
  font-weight: bold;
}

.right__menu__fixed.active {
  max-width: 100%;
}

.main__secs {
  margin-top: 100vh;
  background-color: #fff;
  z-index: 99;
  position: relative;
}

.head__slider {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: #000;
  font-weight: 300;
}
.head__slider .slide__wrapper {
  overflow: hidden;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.head__slider .slide__wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.459);
}
.head__slider .slider__content {
  width: 100%;
}
.head__slider .slider__content h1 {
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-weight: 700;
  line-height: 0.9;
  font-variant: small-caps;
  margin-bottom: 13px;
}
.head__slider .slider__content p {
  color: #fff;
  font-size: 13px;
}
.head__slider .slider__content p strong {
  font-weight: bold;
}
.head__slider .slider__content a {
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s;
  background-image: linear-gradient(to right, #90242a 0, #9d0610 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
  transition: background-size 0.25s ease-in;
  padding-top: 0.26042vw;
}
.head__slider .slider__content a::after {
  display: block;
  width: auto;
  height: 0.26042vw;
  transition: all 0.5s;
  content: "";
  background-image:linear-gradient(to right, #90242a 0, #9d0610 100%);
}
.head__slider .slider__content a:hover {
  background-size: 100% 88%;
}
.head__slider .slider__content a:hover::after {
  opacity: 0;
}
.head__slider .slick-arrow {
  outline: none;
  background: #fafafa;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: 0.3s ease;
  border: 0;
  position: absolute;
  bottom: 10%;
  left: 5%;
  opacity: 0.7;
  transform: translateY(-50%);
  transition: color 0.3s;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  border: none;
}
.head__slider .slick-arrow:active {
  border: none;
}
.head__slider .slick-arrow:hover {
  opacity: 1;
}
.head__slider .slick-next {
  margin-left: 50px;
}

.slider__container {
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.doctors {
  padding: 80px 0;
  background: #f7f5f2;
}
.doctors .title__docs {
  margin-bottom: 48px;
}
.doctors .title__docs h2 {
  font-size: 40px;
  letter-spacing: -1.8px;
  margin: 0px;
  color: #332b2b;
  margin-right: 0;
  font-weight: bold;
  line-height: 1.3;
}
.doctors .col {
  flex: 0 0 19.333333%;
  max-width: 19.333333%;
}
.doctors .doctor__wrapper {
  margin-bottom: 50px;
  position: relative;
}
.doctors .doctor__wrapper .box__main {
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
  position: relative;
  transition: all 0.3s;
}
.doctors .doctor__wrapper .box__main img {
  width: 100%;
  height: 215.73px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
/*object-positions*/
.İftixar,.Bazarov{
    object-position: 0px;
}
.Aynur{
    object-position: -50px;
}
.Bahar{
    object-position: -136px;
}
.Fizuli{
    object-position: -119px;
}
.Kənan{
    object-position: -106px;
}
.İsrafil,.Ofeliya,.Mamedov,.Şövkət{
    object-position: -154px;
}
/*doctors classes*/

/*full-story*/
    .insidephoto-israfil,.ofeliya,.qardasxan,.sovket{
        object-position: right;
    }
    .ender{
        object-position: 0 -55px;
    }
    .samil{
        object-position: left;
    }
    .elvira{
        object-fit: fill !important;
    }
    .rustem{
        object-position: top;
    }
/**/
.doctors .doctor__wrapper .box__main .box__content {
    min-height: 88px;
  padding: 5px;
}
.doctors .doctor__wrapper .box__main .box__content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #332b2b;
  margin: 0px;
  margin-top: 10px;
  margin-bottom: 2px;
}
.doctors .doctor__wrapper .box__main .box__content span {
  font-size: 12px;
  color: #332b2b;
  opacity: 0.8;
}
.doctors .col-md-5th:nth-child(9) span{
    font-size: 11px !important;
}
.doctors .doctor__wrapper .box__bottom {
  background:#0087c1 0% 0% no-repeat padding-box;
  border-radius: 12px;
  padding: 20px 20px 10px 20px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  transition: all 0.3s;
}
.doctors .doctor__wrapper .box__bottom a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.doctors .doctor__wrapper .box__bottom a img {
  height: 14px;
  filter: brightness(100) grayscale(100) invert(1);
}
.static__txt u{
    font-size: 20px;
}
.static__txt li{
    list-style: disc !important;
}
.doctors .doctor__wrapper:hover .box__bottom {
  transform: translateY(53px);
}
.doctors .doctor__wrapper:hover .box__main {
  transform: translateY(-10px);
}

.medical__section {
  padding: 80px 0;
  background: #0e9cd9;
}
.medical__section .medical__title {
  margin: 0 auto;
}
.medical__section .medical__title h1 {
  font-size: 52px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}
.medical__section .medical__list {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 50px;
}
.medical__section .medical__list .medical__item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
  margin-bottom: 15px;
}
.medical__section .medical__list .medical__item p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  width: 100%;
}
.medical__section .medical__list .medical__item .medical__box__innner {
  width: 195px;
  height: 195px;
  border-radius: 200px;
  overflow: hidden;
  margin-bottom: 5px;
  position: relative;
}
.medical__section .medical__list .medical__item .medical__box__innner .box__background__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms linear;
  z-index: 1;
}
.medical__section .medical__list .medical__item .medical__box__innner .box__icon__wrappper {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 100;
}
.box__icon__wrappper{
    background-size: 50%;
}
.medical__section .medical__list .medical__item:hover .box__background__image {
  opacity: 0.3;
  visibility: visible;
}

.useful__information__sec {
  padding: 80px 0;
}
.useful__information__sec .title__section {
  margin-bottom: 40px;
}
.useful__information__sec .title__section h2 {
  font-weight: 600;
}
.useful__information__sec a {
  display: block;
  height: 100%;
}
.useful__information__sec .info__one h1 {
  font-size: 50px !important;
  padding-top: 14px !important;
}
.useful__information__sec .box__info {
  height: 350px;
  position: relative;
  overflow: hidden;
}
.useful__information__sec .box__info img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7);
  transition: all 0.3s ease;
}
.useful__information__sec .box__info .info__txt__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 42px 30px;
}
.useful__information__sec .box__info .info__txt__wrapper .sec__title {
  text-transform: lowercase;
  color: white;
  font-size: 18px;
  letter-spacing: 3px;
}
.useful__information__sec .box__info .info__txt__wrapper h1 {
  font-size: 31px;
  padding-top: 16px;
  margin: 0;
  text-transform: uppercase;
  color: white;
  line-height: 105%;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
}
.useful__information__sec .box__info:hover img {
  filter: brightness(0.4);
  -webkit-filter: brightness(0.4);
}
.useful__information__sec .box__info .date__nd__time {
  display: flex;
  justify-content: space-between;
  color: white;
  padding: 0 30px;
  margin-bottom: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  text-transform: lowercase;
}
.useful__information__sec .box__info .date__nd__time .date i {
  position: relative;
  top: 1px;
  font-size: 15px;
  margin-right: 5px;
}
.useful__information__sec .box__info .date__nd__time .date i svg {
  width: 15px;
  fill: white;
  margin-top: -3px;
}
.useful__information__sec .box__info .date__nd__time .view i {
  position: relative;
  top: 1px;
  margin-right: 2px;
}
.useful__information__sec .box__info .date__nd__time .view i svg {
  width: 15px;
  margin-top: -3px;
  fill: white;
}
.useful__information__sec .link__to__category {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 50px;
}
.useful__information__sec .link__to__category .click__for__more {
  color: #000;
  text-decoration: underline;
  font-size: 24px;
  position: relative;
  line-height: 120%;
}
.useful__information__sec .link__to__category .click__for__more span {
  background: url(/img/span__right.png) no-repeat;
  width: 27px;
  right: -65px;
  position: absolute;
  top: 50%;
  height: 15px;
  transform: translateY(-50%);
}
.useful__information__sec .link__to__category:hover .click__for__more span {
  animation: arrowhower 800ms linear infinite;
  -webkit-animation: arrowhower 800ms linear infinite;
}
.useful__information__sec .link__to__category:hover .click__for__more {
  text-decoration: none;
}

@-webkit-keyframes arrowhower {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  50% {
    transform: translateX(10px) translateY(-50%);
  }
  100% {
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes arrowhower {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  50% {
    transform: translateX(10px) translateY(-50%);
  }
  100% {
    transform: translateX(0) translateY(-50%);
  }
}
.gallery {
  /*padding: 70px 0;*/
  padding-bottom: 80px;
}
/*.medical__item{*/
/*    transition: 0.4s;*/
/*}*/
/*.medical__item:hover .box__icon__wrappper{*/
/*    filter: invert(0.4);*/
/*}*/
.gallery .title__gallery {
  margin-bottom: 48px;
}
.gallery .title__gallery h2 {
  font-size: 40px;
  letter-spacing: -1.8px;
  margin: 0px;
  color: #332b2b;
  margin-right: 0;
  font-weight: bold;
  line-height: 1.3;
}
.gallery .gallery__box__wrapper {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.gallery .gallery__box__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.7);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-filter: grayscale(0.7);
}
.gallery .gallery__box__wrapper:hover img {
  filter: none;
  -webkit-filter: none;
}
.gallery .gallery__box__wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 45, 45, 0.2901960784);
}
.gallery .gallery__box__wrapper:hover {
  transform: scale(1.04);
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
}
.gallery .last__box__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .last__box__gallery::before {
  background: rgb(58, 52, 52);
}
.gallery .last__box__gallery a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.insurance__companies {
  padding: 60px 0;
}
.insurance__companies .partner__list__tile {
  margin-bottom: 24px;
}
.insurance__companies .partner__list__tile h2 {
  font-size: 40px;
  color: #333;
  margin-bottom: 23px;
  font-weight: 700;
}
.insurance__companies .partner__list__tile p {
  font-size: 16px;
  color: #555555;
}
.insurance__companies .partners__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.insurance__companies .partners__inner .partner__box {
  display: flex;
  flex-direction: column;
  width: 18%;
  padding: 37px;
  padding-bottom: 32px;
  border-radius: 4px;
  transition: box-shadow ease 0.3s, border ease 0.3s, background ease 0.3s;
  border: 1px solid #e5e5e5;
}
.insurance__companies .partners__inner .partner__box:hover {
  border-color: #fff;
  background-color: #fff;
  z-index: 1;
}
.insurance__companies .partners__inner .partner__box .partner__inner__image {
  text-align: center;
}
.insurance__companies .partners__inner .partner__box .partner__inner__image img {
  width: 150px;
  height: 90px;
  position: relative;
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
      filter: grayscale(100);
}
.insurance__companies .partners__inner .partner__box:hover img{
          filter: none;
}
.insurance__companies .partners__inner .partner__box:hover span{
    color: #f2722c;
}
.insurance__companies .partners__inner .partner__box .partner__inner__content {
  margin-top: 5px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  text-align: center;
  color: #999;
}
.insurance__companies .partners__inner .partner__box .partner__inner__content span {
  cursor: pointer;
}
 

.call__to__action {
  background: #d0043c;
  padding: 85px;
  color: #fff;
}
.call__to__action .call__number {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.call__to__action .call__number span {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.call__to__action .call__number a {
  color: currentColor;
  font-size: 35px;
  line-height: 1.34;
  font-weight: 600;
  background-size: 0 1px;
  background-position: 100% 100%;
  background-image: linear-gradient(hsla(0deg, 0%, 100%, 0.4), hsla(0deg, 0%, 100%, 0.4));
  background-repeat: no-repeat;
  transition-property: background-size, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  will-change: background-size;
}
.call__to__action .call__number a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.call__to__action .write__us a {
  padding: 15px 50px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid hsla(0deg, 0%, 100%, 0.4);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  min-width: 170px;
  font-size: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition-property: color, width, background-color, border, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.call__to__action .write__us a span {
  position: relative;
  display: inline-block;
  z-index: 1;
  pointer-events: none;
  font-size: 0.875rem;
  line-height: 13px;
}
.call__to__action .write__us a::after {
  background: #fff;
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  transition-property: width;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.call__to__action .write__us a:hover {
  color: #101010;
  background-color: rgba(0, 0, 0, 0);
  border-color: #fff;
}
.call__to__action .write__us a:hover::after {
  background-color: #fff;
  width: 100%;
}
.call__to__action .call__social__list {
  margin-top: 30px;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.call__to__action .call__social__list li {
  margin-bottom: 22px;
  width: 50%;
}
.call__to__action .call__social__list li a {
  color: #efeff2;
  display: inline-flex;
  align-items: center;
}
.call__to__action .call__social__list li a span {
  margin-left: 30px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  line-height: 30px;
  pointer-events: none;
  background-size: 0 1px;
  background-position: 100% 100%;
  background-image: linear-gradient(hsla(0deg, 0%, 100%, 0.4), hsla(0deg, 0%, 100%, 0.4));
  background-repeat: no-repeat;
  transition-property: background-size, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  will-change: background-size;
}
.call__to__action .call__social__list li a i{
    width: 24px;
    text-align: center;
}
.call__to__action .call__social__list li a:hover span {
  background-position: 0 100%;
  background-size: 100% 1px;
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-top-color: rgba(148, 32, 32, 0.1019607843);
  background: #2d2d2d;
}
footer .footer__top__part {
  padding: 50px 85px;
}
footer .footer__top__part .footer__phone {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer__top__part .footer__phone .phone__wrapper {
  display: flex;
  /*align-items: center;*/
}
footer .footer__top__part .footer__phone .phone__wrapper span {
  margin-right: 19px;
  margin-top: -2px;
}
footer .footer__top__part .footer__phone .phone__wrapper a {
  font-weight: 700;
  font-size: 16px;
  color: #cd101a;
  transition: 0s ease;
  display: block;
}
footer .footer__top__part .footer__phone .phone__wrapper a:hover {
  color: #ccc;
}
footer .footer__top__part .footer__phone .phone__callback {
  color: #999;
  margin-left: 27px;
  font-size: 14px;
  line-height: 22px;
  margin-top: -1px;
}
footer .footer__top__part .footer__phone .phone__callback:hover {
  color: #fff;
}
footer .footer__top__part .footer__info {
  margin: 15px 0;
}
footer .footer__top__part .footer__info .mails__width__icom {
  display: flex;
  flex-direction: row;
  align-items:center;
}
footer .footer__top__part .footer__info .mails__width__icom .icon__part i {
  font-size: 15px;
  top : -2px;
  margin-right: 17px;
  align-items:center;
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
}
footer .footer__top__part .footer__info .mails__width__icom .emails__part a {
  display: block;
  color: #fff;
}
footer .footer__top__part .footer__info .mails__width__icom .emails__part a:hover {
  color: #999;
  font-size: 16px;
}
footer .footer__top__part .footer__address {

  margin: 15px 0;
  display: flex;
  flex-direction: row;
}
footer .footer__top__part .footer__address span {
    position : relative;
    top : -2px;
  margin-right: 18px;
}
footer .footer__top__part .footer__address .address__text {
  color: #fff;
  max-width: none;
  font-size: 14px;
}
footer .navigation__footer .footer__nav {
  margin-bottom: 30px;
}
footer .navigation__footer .footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
footer .navigation__footer .footer__nav ul li {
  margin: 10px 40px 10px 0;
}
footer .navigation__footer .footer__nav ul li a {
  color: #fff;
  display: inline-block;
  padding: 10px 0;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  transition: 0.2s ease;
}
footer .navigation__footer .footer__nav ul li a:hover {
  color: #cd101a;
}
footer .navigation__footer .footer__social__media {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .navigation__footer .footer__social__media .social__icons {
  display: flex;
  align-items: center;
  margin: 15px 24px 15px 0;
}
footer .navigation__footer .footer__social__media .social__icons .social__item {
  padding: 0;
  border-radius: 4px;
  margin: 5px;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #474747;
}
footer .navigation__footer .footer__social__media .social__icons .social__item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .navigation__footer .footer__social__media .social__icons .social__item a span {
  color: #fff;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
  padding: 0 0 2px 1px;
}
footer .navigation__footer .footer__social__media .social__icons .social__item i{
    color: #a3a3a3;
}
footer .navigation__footer .footer__social__media .social__icons .social__item a:hover span {
  opacity: 1;
}
footer .navigation__footer .footer__social__media .social__icons .social__item:first-child {
  margin: 5px 5px 5px 0;
}
footer .navigation__footer .footer__social__media .social__icons .social__item.facebook:hover {
  background-color: #3b5998;
}
footer .navigation__footer .footer__social__media .social__icons .social__item.twitter:hover {
  background-color: #E1306C;
}
footer .navigation__footer .footer__social__media .social__icons .social__item.youtube:hover {
  background-color: #c4302b;
}
footer .navigation__footer .footer__social__media .social__icons .social__item.linkedin i{transition:.4s;}
footer .navigation__footer .footer__social__media .social__icons .social__item.linkedin:hover {
  background-color: black;
}
footer .navigation__footer .footer__social__media .social__icons .social__item.linkedin:hover i{color:#fff;}
footer .footer__bottom__part {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 45px 85px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer__bottom__part .footer__copyright {
  color: #999;
  font-size: 14px;
  line-height: 21px;
  margin-right: 32px;
}
footer .footer__bottom__part .footer__site__by,
footer .footer__bottom__part .footer__site__by a {
  color: #999;
  font-size: 14px;
  transition: 0.2s ease;
  line-height: 21px;
}
footer .footer__bottom__part .footer__site__by a:hover {
  color: #fff;
}

/* INSIDE PAGES DESIGN*/
    .phone-info{
        display: flex;
        padding-top: 10px;
    }
  .static__page .head, .contact__page .head,  .category__pages .cagtegory__head {
    height: 400px;
    position: relative;
    /*background-attachment: fixed;*/
    background-image: url(/img/pillphoto.jpg);
    background-size: cover;
    background-position: center ;
    }
    
   .static__page .head .overlay__static, .contact__page .head .overlay__contact,  .category__pages .cagtegory__head .overlay__cat{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#2869e1, transparent);
    opacity: 1;
    }
    .static__page .page-content , .contact__page .page-content  {
        padding:40px 0;
        background-image:linear-gradient(0deg,#fff 0,#f6f6f6 270px,#f6f6f6);
    }
    .static__page .page-content .page__title h4,  .contact__page .page-content  .page__title h4{
            margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #231f27;
        }
        
    .static__page .page-content  .page__nav,  .contact__page .page-content .page__nav {
            color: #a7a9b2;
    font-weight: 200;
    font-size: 12px;
        }
    .static__page .page-content  .page__nav   a, .contact__page .page-content .page__nav   a{
     color: #a7a9b2;
    transition: 0.2s ease-in-out;
    font-weight: 200;
    font-size: 12px;
        }
    .static__page .page-content  .page__nav   a:hover, .contact__page .page-content .page__nav   a:hover {
            color:#47484d;
        }
    .static__page .page-content  .page__nav i svg, .contact__page .page-content .page__nav i svg{
            margin-right:15px;
            width: 12px;
             fill: #a7a9b2;
        }
     .page-content  .admin__content {
            background: white;
         padding: 15px 0;
        border-radius: 4px;
        }
        
        .page-content  .admin__content  .static__txt{
            font-size: 15px;
    line-height: 28px;
    text-align: justify;
    padding: 0 35px; 
    margin: 0 auto;
        }
    .medealti{
        object-fit: contain;
    }
.category-main  .medical__section{
    background:linear-gradient(0deg,#fff 0,#f6f6f6 270px,#f6f6f6);
}
.category-main .medical__section .medical__list .medical__item p{
    color:#4a4646;
}
 
.category-main .medical__section .medical__list .medical__item .medical__box__innner .box__icon__wrappper{
    filter:invert(0.5) grayscale(0.9);
}
.projects-cat .title{
    margin-bottom:50px;
}

 .full__page .head 
        {
    height: 400px;
    position: relative;
    /*background-attachment: fixed;*/
    background-image: url(/img/pillphoto.jpg);
    background-size: cover;
    background-position: center ; 
    }
    
        .full__page .head .full__overlay{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#2869e1, transparent);
    opacity: 1;
        }
        
         .full__page  .page__content, .custom__gallery  {
        padding:40px 0;
        background-image:linear-gradient(0deg,#fff 0,#f6f6f6 270px,#f6f6f6);
    }
    
    
    .ymaps-2-1-79-controls__toolbar, .ymaps-2-1-79-copyrights-pane{
    display:none;
}

 .full__page .full__doc img{
        display:none !important;
    }
       .full__page .page__content .page__title h4, .custom__gallery .page__title h4{
            margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #231f27;
        }
        
    .full__page .page__content  .page__nav ,  .custom__gallery  .page__nav{
            color: #a7a9b2;
    font-weight: 200;
    font-size: 12px;
        }
    .full__page .page__content  .page__nav   a ,  .custom__gallery  .page__nav a{
     color: #a7a9b2;
    transition: 0.2s ease-in-out;
    font-weight: 200;
    font-size: 12px;
        }
    .full__page .page__content  .page__nav   a:hover , .custom__gallery  .page__nav a:hover {
            color:#47484d;
        }
    .full__page .page__content  .page__nav i svg, .custom__gallery  .page__nav i svg  {
            margin-right:15px;
            width: 12px;
             fill: #a7a9b2;
        }
     .page__content  .admin__content {
            background: white;
         padding: 15px ;
        border-radius: 4px;
        }
        .page__content .admin__content img, .page__content .admin__content iframe{
            width: 100%;
    height: 400px;
    object-fit: cover;
    /*object-position:right;*/
    border-radius:10px;
    margin: 5px auto;
    margin-bottom: 50px;
    display: block;
    float: none;
    vertical-align: top;
        }
        .page__content  .admin__content  .static__txt{
            font-size: 15px;
    line-height: 28px;
    text-align: justify;
    padding: 0 35px; 
    margin: 0 auto;
        }
        
     .full__page .page__content    .static__txt img{
         
         width:100%;
         height:350px;
         object-fit:cover;
         margin-bottom:30px;
         display:block;
     }
    
    .category-main .gallery{
        padding:30px 0;
    }
    .gallery  .static__txt{
        display:flex;
        justify-content: flex-start;
        gap:0 20px;
        align-items:center;
        flex-wrap:wrap;
    }
    .gallery .static__txt a{
        width:32%;
        margin-bottom:15px;
    }
   .gallery .static__txt img, .gallery .static__txt iframe {
        height:370px;
        margin-bottom:0;
    }
    .aksiyalarfull{
        width: 100%;
        display: flex;
        /*align-items: center;*/
        justify-content: space-evenly;
            padding: 50px 0;
        /*flex-direction: column;*/
    }
    .aksiyalarfull s{
        text-decoration: revert;
    }
    .aksiyaprice{
        float: right;
    }
    .aksiyaphone{
        padding-top: 30px;
    }
    .aksiyalarfull ul{
        padding-top: 20px;
        line-height: 30px;
    }
    .aksiyalarfull img{
        width: 500px !important;
    }
    .aksiyalarfull ul li{
        list-style: disc;
    }
    .checkups{
        display:flex;
        padding-top: 20px;
    }
    .checkup-1{
        padding-right: 70px;
    }
    .generalcheck{
        display: flex;
        padding-top: 30px;
    }
    .formen ul{
        width: 240px;
    }
@media only screen and (max-width: 993px) {
  .slider__container {
    max-width: 720px;
  }
  .useful__information__sec .box__info .info__txt__wrapper h1{
      font-size: 28px;
      padding-top: 20px;
  }
  .footer__top__part{
      padding: 50px 0 !important;
  }
}
@media only screen and (max-width: 1200px) {
  .slider__container {
    max-width: 1125px;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
    .doctors .doctor__wrapper .box__main .box__content {
    min-height: 130px;
  
}
  
  }
@media only screen and (max-width: 768px) {
 
  .slider__container {
    max-width: 540px;
  } 
}
@media only screen and (max-width: 576px) {
  .slider__container {
    width: 100%;
  }
}

@media (min-width: 1280px) and (max-width: 1799px) {
  .section__container {
    max-width: 1178px;
  }
}
@media (min-width: 1000px) and (max-width: 1100px) {
  .section__container {
    max-width: 930px;
  }
}
@media (min-width: 1100px) and (max-width: 1279px) {
  .section__container {
    max-width: 1050px;
  }
}
@media (min-width: 600px) and (max-width: 992px) {
  .section__container {
    max-width: 590px;
  }
}
@media (max-width: 599px) {
  .section__container {
    max-width: 100%;
  }
}
@media (min-width: 991.99px) and (max-width: 1100px) {
  header .head__sec .nav__links__head > li {
    margin-right: 14px;
  }
  footer .navigation__footer .footer__nav ul li{
      margin:10px 10px 10px 0;
  }
}
@media only screen and (max-width: 1200px) {
  .insurance__companies .partners__inner .partner__box {
    width: 23%;
  }
}
@media only screen and (max-width: 991.99px) {
    header .head__sec{
        justify-content:flex-start;
        margin-left:22px;
    }
    .write__wp__mobile{
    display:block; 
    /*    background-color: rgba(158, 158, 158, 0.431372549);*/
    /*border-color: rgba(221, 211, 205, 0.3607843137);*/
     margin-left:22px;
    }
    .write__wp__mobile:hover{
        color:white;
        opacity:0.8;
    }
    header .head__sec .logo{
        margin-left:0;
    }
  header .head__sec .logo img {
    max-width: 90px;
  }
body{
    padding-right:0;
}
  body.overflow-hidden {
    overflow-y: hidden;
  }

  .slider__container {
    max-width: 720px;
  }

  .head__slider .slider__content {
    padding-top: 100px;
  }
header .head__sec .nav__links__head .lang__head .langs__list li{
    margin-bottom:0;
}
  header.sticky nav.active .nav__links__head li a {
    color: #fff;
  }

 
  header .head__sec nav.active .nav__links__head .write__wp{
      display:none;
     
  }
  header .head__sec .nav__links__head li {
    margin-right: 0;
  }

  nav.active {
    display: block;
    right: 0;
    opacity: 1;
  }

  nav {
    position: fixed;
    z-index: 140;
    width: 100%;
    top: 102px;
    right: -100%;
    height: calc(100vh - 102px);
    overflow-y: auto;
    background-image: linear-gradient(to top, #9f020b 0, #8f272d 100%);
    display: none;
    opacity: 0;
    transition: all 0.5s;
  }

  nav.active ul {
    height: 100%;
    flex-direction: column;
    padding: 90px 0 0;
    color: #fff;
    font-size: 0.9375vw;
    font-weight: 300;
    line-height: 1.7;
    height: auto;
    overflow: visible;
    direction: ltr;
    position: relative;
  }
  nav.active ul li {
    margin-bottom: 20px;
  }
  nav.active ul li a {
    text-transform: uppercase;
  }

 
  header .head__sec {
    padding-right: 0;
  }

  .right__menu__fixed {
    display: none;
  }

  .menu-mobile-trigger {
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 30px;
    z-index: 150;
  }

  .call__social__list {
    margin-top: 60px;
  }

  .insurance__companies .partners__inner .partner__box {
    width: 48%;
  }

  .gallery .gallery__box__wrapper {
    margin-bottom: 20px;
  }

  .doctors .col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .doctors .doctor__wrapper {
    margin-bottom: 40px;
  }
  footer .navigation__footer .footer__nav{
      margin-bottom:0;
  }
   .contact__row{
      text-align:center !important;
  }
    .contact__row >div{
        margin-bottom:10px;
        text-align:center !important;
    }
       
       .hospital__img {
        order:-1;
    }
    .gallery .static__txt a{
        width:48%;
    }
}
@media only screen and (max-width: 767.99px) {
    .static__page .head, .contact__page .head, .category__pages .cagtegory__head, .full__page .head{
        height:275px;
    }
    
    .gallery .static__txt img, .gallery .static__txt iframe {
        height:300px;
    }
    
       .gallery .static__txt a{
        width:100%;
    }
      .static__page .page-content .page__title h4, .contact__page .page-content .page__title h4,  .full__page .page__content .page__title h4, .custom__gallery  .page__title h4{
      margin-bottom:5px !important;
      text-align:center;
  }
  .static__page .page-content .page__nav, .contact__page .page-content .page__nav,  .full__page .page__content  .page__nav , .custom__gallery     .page__nav{
      text-align:left !important;
      margin-bottom:13px;
  }
 .page__content .admin__content .static__txt{
     padding:10px;
 }
    .staticContent{
        padding:35px 10px !important;
    }
  footer .navigation__footer .footer__nav ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
.contactiframe{
    height:510px !important;
}
  footer .navigation__footer .footer__nav ul li {
    margin: 0;
  }

  footer .navigation__footer .footer__nav {
    margin-bottom: 0;
  }

  .doctors .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767.99px) {
    .head__slider .slider__content a{
        background-size: 100% 0px;
    }
  .call__to__action .write__us a {
    width: 100%;
  }

  .call__to__action .call__number a {
    font-size: 20px;
  }

  .call__to__action {
    padding: 60px 20px;
  }

  .gallery .gallery__box__wrapper {
    margin: 10px auto;
    width: 150px;
    height: 150px;
  }

  .gallery .title__gallery h2 {
    font-size: 30px;
  }

  .gallery .title__gallery {
    margin-bottom: 30px;
  }

  .useful__information__sec .link__to__category {
    padding: 0;
  }

  .useful__information__sec .link__to__category .click__for__more {
    font-size: 18px;
  }

  .useful__information__sec .link__to__category .click__for__more br {
    display: none;
  }

  .useful__information__sec .title__section h2 {
    font-size: 30px;
  }

  .medical__section .medical__list .medical__item {
    margin-bottom: 30px;
  }

  .medical__section .medical__title h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.99px) {
  .head__slider .slide__wrapper {
    height: 60vh;
  }

  .doctors {
    padding: 40px 0;
  }

  footer .navigation__footer .footer__social__media .social__icons {
    margin: 15px 0;
  }

  .main__secs {
    margin-top: 60vh;
  }

  .head__slider .slick-arrow {
    bottom: 5%;
    left: 15px;
  }

  .head__slider .slider__content h1 {
    font-size: 40px;
  }
    .head__slider .slider__content p{
        display:none;
    }
  .head__slider .slider__content {
    padding-top: 20px;
  }

  .insurance__companies .partners__inner .partner__box .partner__inner__image img{
      object-fit:cover;
  }

  .insurance__companies .partner__list__tile h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .gallery {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 424.99px) {
  .doctors .doctor__wrapper .box__main .box__content h4 {
    font-size: 13px;
  }
@media only screen and (max-width: 317px) {
      .useful__information__sec .box__info .info__txt__wrapper h1{
          font-size: 22px;
      }
}
/*# sourceMappingURL=styles.css.map */