@font-face {
    font-family: "Futura LT W02 Book";
    src: url("../../assets/fonts/book.woff2") format("woff2"), url("../../assets/fonts/book.woff") format("woff");
}

@font-face {
    font-family: "Futura LT W02 Heavy";
    src: url("../../assets/fonts/heavy.woff2") format("woff2"), url("../../assets/fonts/heavy.woff") format("woff");
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --lightblack: #374051;
    --blue: #2d2987;
    --blue--secondary: #4b79d9;
    --white: #ffffff;
    --black: #000;
    --font-primary: 'Futura LT W02 Book';
    --font-secondary: 'Futura LT W02 Heavy';
    --font-ru: 'Roboto', sans-serif;
    --t3: all .3s ease;
}

html {
    scroll-behavior: smooth
}

html.langRu* {
    font-family: var(--font-ru) !important
}

.langRu.video__content__text__wrapper h1 {
    line-height: 3rem !important;
    margin-bottom: 2rem
}

a {
    text-decoration: none !important
}

img {
    border-radius: 8px !important
}

.font--primary {
    font-family: var(--font-primary)
}

.font-secondary {
    font-family: var(--font-secondary)
}

.site__btn {
    padding: .25rem 1.75rem;
    border-radius: 16px;
    transition: var(--t3);
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    font-size: .85rem;
    width: fit-content;
    position: relative
}

.site__btn:hover {
    opacity: .7
}

.site__btn--bg--white {
    background-color: var(--white)
}

.site__btn--bg--blue {
    background-color: var(--blue)
}

.site__btn--bg--transparent {
    background-color: transparent
}

.site__btn--bg--transparent:hover {
    background-color: var(--white);
    color: var(--blue)
}

.site__btn--bg--transparent:hover svg {
    fill: var(--blue)
}

.site__btn--border--blue {
    border: 1px solid var(--blue)
}

.site__btn--border--blue--secondary {
    border: 1px solid var(--blue--secondary)
}

.site__btn--border--white {
    border: 1px solid var(--white)
}

.site__btn--text--icon {
    position: relative;
    font-weight: 700;
    display: block
}

.site__btn--text--icon::after {
    content: "→";
    font-size: 1.5rem;
    position: absolute;
    padding-left: .25rem
}

.site__btn--text--icon:hover {
    opacity: .7
}

.color--lightblack {
    color: var(--lightblack) !important
}

.color--white {
    color: var(--white) !important
}

.color--blue {
    color: var(--blue) !important
}

.color--blue--secondary {
    color: var(--blue--secondary) !important
}

.bg--blue {
    background-color: var(--blue) !important
}

.heading-text {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: #374051;
    line-height: 2.5rem;
    letter-spacing: 0px
}

.font--size--100 {
    font-size: 1rem
}

.font--size--125 {
    font-size: 1.25rem
}

.font--size--150 {
    font-size: 1.5rem
}

.font--size--175 {
    font-size: 1.75rem
}

.font--size--200 {
    font-size: 2rem
}

.font--size--225 {
    font-size: 2.25rem
}

.font--size--250 {
    font-size: 2.5rem
}

.font--size--275 {
    font-size: 2.75rem
}

.font--size--300 {
    font-size: 3rem
}

.line-height-1 {
    line-height: 1rem
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 11
}

.navbar__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0
}

.navbar__wrapper .navbar__menu {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700
}

.navbar__wrapper .navbar__menu span {
    color: #fff;
    position: relative;
    letter-spacing: 2px;
    font-size: .85rem
}

.navbar__wrapper .navbar__menu .navbar__menu__icon {
    padding-left: .5rem
}

.navbar__wrapper .navbar__menu .navbar__menu__icon div {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    margin-bottom: 5px;
    transition: var(--t3)
}

.navbar__wrapper .navbar__menu:hover .navbar__menu__icon div:first-child {
    width: 20px
}

.navbar-brand img {
    max-width: 250px;
    width: 250px;
    height: auto
}

.video__content {
    position: relative;
    height: 100vh;
    min-height: -webkit-fill-available
}

.video__content__video video,
.video__content__video img {
    position: absolute;
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    min-height: -webkit-fill-available
}

.video__content__text {
    height: 100vh;
    display: flex;
    align-items: center
}

.video__content__text::before {
    content: "";
    background: rgb(45, 41, 135);
    background: linear-gradient(90deg, rgba(45, 41, 135, 1)10%, rgba(45, 41, 135, 0.7749474789915967)36%, rgba(45, 41, 135, 0.39399509803921573)85%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0
}

.video__content__text__wrapper h1 {
    color: #fff;
    line-height: 4rem
}

.video__content__text__wrapper p {
    color: #fff;
    max-width: 45%
}

.site__menu{
    position: fixed;
    right: -350px;
    top: 0;
    width: 350px;
    height: 100%;
    background: var(--blue);
    transition: var(--t3);
    z-index: 9003;
    padding: 1rem 3rem;
    overflow-y: scroll;
}
.site__menu--active{
    right: 0 !important;
}
.site__menu__close{
    cursor: pointer;
    transition: var(--t3);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 2rem;
}
.site__menu__close:hover{
    opacity: .7;
}
.site__menu__bottom ul li a{
    color: var(--white);
    transition: var(--t3);
    font-family: var(--font-secondary);
}
.site__menu__bottom ul li a:hover{
    opacity: .7;
    text-decoration: none;
}
.accordion{
    background-color: transparent;
    padding-top: 3rem;
}
.accordion .card{
    background-color: transparent;
    border: 0;
    margin-bottom: .5rem;
    font-family: var(--font-secondary);
}
.accordion .card .sub-header{
    font-size: .95rem !important;
    font-weight: normal !important;
}
.accordion .card .card-header{
    background-color: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    padding: .25rem 0;
    font-weight: 700;
    font-size: 1.25rem;
}
.accordion .card .card-header::after{
    content: "›";
    position: absolute;
    right: 0;
    transform: rotate(90deg);
}
.wmlife .accordion .card .card-header{
    background: transparent !important;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    margin-bottom: 0;
}
.wmlife .accordion .card .card-header::after{
    content: "›";
    right: 1rem;
}
.long-accordion .accordion .card .card-header{
    background: transparent !important;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    margin-bottom: 0;
}
.long-accordion .accordion .card .card-header::after{
    content: "›";
    right: 1rem;
    top: 2rem;
}
.accordion .card .card-header:hover{
    opacity: .7;
}
.accordion .card .card-header[aria-expanded="true"]::after{
    transform: rotate(0deg);
  }
.accordion .card .card-body{
    padding: 0;
    margin: 0 0 1rem 0;
}
.accordion .card .card-body ul li{
    padding: .25rem 0;
}
.accordion .card .card-body ul li a{
    color: var(--white);
    transition: var(--t3);
    font-size: .95rem;
}
.accordion .card .card-body ul li a:hover{
    opacity: .7;
    text-decoration: none;
}

.site__btn svg {
    width: 1rem;
    height: 1rem;
    fill: var(--blue--secondary);
    transition: var(--t3)
}

.intro-inner h4 span {
    font-family: 'Inter', sans-serif
}

.slider_pagination a.selected {
    width: 12px;
    height: 12px;
    top: 0;
    margin: 0 10px;
    border-radius: 50%
}

.slider_pagination a.selected:after {
    content: "";
    width: 12px;
    height: 12px;
    padding: 5px;
    transform: none;
    top: 0px;
    border-radius: 50%;
    left: 0px;
    position: absolute
}

.slider_pagination a.selected:before {
    background-color: var(--white);
    content: "";
    width: 18px;
    height: 18px;
    padding: 5px;
    transform: none;
    top: -3px;
    border-radius: 50%;
    left: -3px;
    position: absolute;
    border: 1px solid var(--blue)
}

.page__head {
    height: 35vh !important;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 1
}

.page__head::before {
    content: "";
    background-color: var(--blue);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: -1
}

.breadcrumb {
    position: relative;
    top: -3rem;
    background: transparent;
    padding: 0;
    margin-bottom: 0
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0
}

.breadcrumb ul li {
    color: var(--white);
    list-style: none
}

.breadcrumb ul li:first-child a {
    font-weight: bold
}

.breadcrumb ul li a {
    color: var(--white);
    font-family: var(--font-primary)
}

.breadcrumb ul li::after {
    content: "/";
    padding: 0 .5rem
}

.breadcrumb ul li:last-child::after {
    content: ""
}

.breadcrumb-with-image {
    padding-top: 160px
}

.breadcrumb-without-image {
    padding-top: 200px;
    margin-bottom: -40px
}

.breadcrumb-without-image a,
.breadcrumb-without-image span {
    color: var(--black);
    white-space: nowrap;
}

.breadcrumb-without-image.breadcrumb ul li:first-child {
    color: var(--black);
    font-weight: bold
}

.video__content__text__wrapper.text--anime--wrapper {
    max-width: 50%
}

.text--anime--wrapper {
    position: relative;
    display: flex;
    width: fit-content;
    overflow: hidden;
    margin: 0;
    line-height: 45px
}

.text--anime {
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    animation: textAnime 2.15s forwards
}

.text--anime--wrapper h2,
.text--anime--wrapper h1 {
    margin-bottom: 0;
    display: inline-block;
    line-height: 84px
}

.text--anime--wrapper:nth-child(2) {
    top: -10px
}

.text--anime--wrapper:nth-child(3) {
    top: -20px
}

.text--anime--wrapper:nth-child(4) {
    top: -30px
}

.text--anime--blue {
    background-color: var(--blue)
}

.text--anime--blue--secondary {
    background-color: var(--blue--secondary)
}

.border--bottom--4 {
    border-bottom: 4px solid var(--blue);
    display: inline
}

@keyframes textAnime {
    20% {
        left: 0%
    }

    49% {
        left: 100%
    }

    100% {
        left: 100%
    }
}

.page--layer {
    background-color: var(--blue);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .6;
    top: 0;
    left: 0
}

#Intro.full-screen {
    position: relative
}

#Intro.full-screen.intro-inner {
    z-index: 1
}

.post-title.dropdown-menu {
    border-radius: 16px;
    min-width: 100%;
    width: auto;
    border-color: var(--blue);
    max-height: 100px;
    overflow: scroll
}

.post-title.dropdown-item:focus,
.post-title.dropdown-item:hover {
    background-color: transparent;
    color: var(--blue--secondary)
}

.post-title.dropdown-toggle::after {
    position: absolute;
    right: 10px
}

.submenulink::before {
    content: "●";
    position: absolute;
    left: 0
}

.social__icon img {
    width: 40px;
    height: 40px
}

.social__icon a:hover {
    opacity: .7
}

.box__content {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    top: -2rem;
    width: 80%;
    left: 10%;
    padding: 1rem;
    color: #374051;
    font-size: 1.25rem
}

.box__content span:first-child {
    margin-bottom: .5rem
}

.home__img__box {
    border: 1px solid #e4e4e4;
    overflow: hidden
}

.home__img__box:hover .home__img__box__content span,
.home__img__box:hover .home__img__box__content h6 a {
    color: var(--white)
}

.home__img__box__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: var(--t3);
    overflow: hidden
}

.home__img__box:hover .home__img__box__image {
    opacity: 1;
    transform: scale(1.1)
}

.home__img__box__content {
    padding: 4rem;
    position: relative;
    z-index: 111;
    min-height: 435px
}

.home__img__box__content span {
    font-size: 1rem;
    color: var(--blue);
    position: relative;
    z-index: 111;
    transition: var(--t3)
}

.home__img__box__content h6 {
    margin-bottom: 0;
    position: relative;
    z-index: 111;
    margin-top: 1rem
}

.home__img__box__content h6 a {
    font-size: 1.8rem;
    transition: var(--t3);
    line-height: 2.35rem
}

.parallax-img {
    position: relative
}

#parallax-img-1 {
    width: 50%;
    right: -3%;
    float: right;
    margin-top: 5.5rem
}

#parallax-img-2 {
    width: 40%;
    margin-top: 5rem;
    left: 10%
}

#parallax-img-3 {
    width: 50%;
    right: -3%;
    float: right;
    margin-top: 11rem
}

#parallax-img-4 {
    width: 40%;
    margin-top: 15rem;
    left: 10%
}

#parallax-img-5 {
    width: 50%;
    right: -3%;
    float: right;
    margin-top: 2rem
}

#parallax-img-6 {
    width: 40%;
    margin-top: -3rem;
    left: 10%
}

.py-10 {
    padding-top: 100px;
    padding-bottom: 100px
}


.modal-backdrop {
    z-index: 10
}

#dunyadaWorldMedicine .modal-content {
    background: var(--blue);
    color: var(--white)
}

#dunyadaWorldMedicine .modal-body {
    padding: 2rem 4rem
}

#dunyadaWorldMedicine .modal-body a {
    font-size: 1rem;
    border-radius: 0 !important;
}

#dunyadaWorldMedicine .modal-body.d-flex img {
    border-radius: 0 !important
}

#dunyadaWorldMedicine a {
    cursor: auto
}

#dunyadaWorldMedicine a:hover {
    opacity: 1
}

#dunyadaWorldMedicine .is--link {
    cursor: pointer
}

#dunyadaWorldMedicine .is--link::after {
    content: "→";
    font-size: .8rem
}

#dunyadaWorldMedicine .is--link:hover {
    opacity: .7
}

.navbar__wm {
    height: 28px;
    cursor: pointer;
    transition: var(--t3)
}

.navbar__wm:hover img {
    opacity: .7
}

.navbar__tooltip {
    position: relative
}

.tooltip__text {
    display: none;
    background: var(--white);
    color: var(--blue);
    position: absolute;
    left: 0;
    width: max-content;
    top: 40px;
    padding: 0 .25rem;
    font-size: 80%;
    font-weight: bold
}

.navbar__wm .tooltip__text:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-color: #fff transparent;
    border-width: 0 5px 5px;
    top: -5px;
    left: 7px
}

.navbar__tooltip:hover .tooltip__text {
    display: block
}

.navbar__lang {
    transition: var(--t3)
}

.navbar__lang:hover {
    opacity: .7
}

.navbar__lang .dropdown-menu {
    min-width: max-content
}

.navbar__search {
    cursor: pointer;
    transition: var(--t3)
}

.navbar__search input[type="text"] {
    font-size: 1.5rem
}

.navbar__search:hover svg {
    opacity: .7
}

.modal-backdrop.show {
    opacity: .7
}

.hover--none:hover {
    cursor: default
}

.detail--link {
    transition: var(--t3)
}

.detail--link:hover {
    color: var(--blue--secondary)
}

.external--link::after {
    content: "→";
    font-size: 1rem;
    color: #fff;
    margin-left: 0.5rem
}
/* Radial Pie Circle Menu Start */

.radial-menu .menu {
    position: relative;
    list-style: none;
    margin: 30px auto;
    /* padding trick for maintaining aspect ratio */
    height: 0;
    padding: 0;
    padding-top: 70%;
    width: 70%;
    transform: rotate(90deg);
  }
  
  @media all and (max-width: 320px) {
    .radial-menu .menu {
      width: 230px;
      height: 230px;
      padding: 0;
    }
  }
  
  @media all and (min-width: 700px) {
    .radial-menu .menu {
      width: 500px;
      height: 500px;
      padding: 0;
    }
  }
  
  .radial-menu .menu li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: url(#sector);
    -webkit-clip-path: url(#sector);
    cursor: pointer;
  }
  
  .radial-menu .menu li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: .85rem;
    text-align: center;
  }
  
  .radial-menu .menu li:hover{
    background-color: #babec7;
  }
  .radial-menu .menu li.active {
    background-color: #babec7;
  }
  
  .radial-menu .one {
    background-color: var(--blue);
    transform: rotate(120deg);
  }
  
  .radial-menu .two {
    background-color: var(--blue--secondary);
    transform: rotate(180deg);
  }
  
  .radial-menu .three {
    background-color: var(--blue);
    transform: rotate(240deg);
  }
  
  .radial-menu .four {
    background-color: var(--blue--secondary);
    transform: rotate(300deg);
  }
  
  .radial-menu .five {
    background-color: var(--blue);
    transform: rotate(360deg);
  }
  
  .radial-menu .six {
    background-color: var(--blue--secondary);
    transform: rotate(-300deg);
  }
  .radial__en .three .icon{
    right: 2.5%;
    top: 26%;
  }
  .radial__ru .menu li a{
      font-size: 0.75rem !important;
  }
  .radial__ru .one .icon{
    right: 5% !important;
    top: 27% !important;
  }
  .radial__ru .two .icon{
    right: 6% !important;
  }
  .radial__ru .three .icon{
    right: 2.5% !important;
    top: 24% !important;
  }
  .radial__ru .four .icon{
    right: 6.5% !important;
    top: 25% !important;
  }
  .radial__ru .five .icon{
    right: 6.5% !important;
  }

  .radial-logo-big {
    width: 250px;
    height: 250px;
    background-color: #f3f3f3;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 50;
    border-radius: 50%;
    top: 120px;
  }
  
  .radial-logo {
    width: 150px;
    height: 150px;
    background-color: #fff;
    text-align: center;
    padding: 55px 0;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 55;
    top: 50px;
  }
  
  .radial-logo img {
    width: 85%;
    position: relative;
    top: -2.75rem;
  }
  
  .radial-menu .menu .icon {
    position: absolute;
    right: 15%;
    top: 30%;
    transform: rotate(60deg);
    max-width: 100px;
    font-weight: bold;
    color: #fff;
  }
  
  .radial-menu .menu .one .icon {
    position: absolute;
    right: 10%;
    top: 25%;
    transform: rotate(150deg);
  }
  
  .radial-menu .menu .two .icon {
    position: absolute;
    right: 8%;
    top: 26%;
    transform: rotate(90deg);
  }
  
  .radial-menu .menu .three .icon {
    position: absolute;
    right: 6.5%;
    top: 25%;
    transform: rotate(31deg);
  }
  
  
  .radial-menu .menu .four .icon {
    position: absolute;
    right: 7.5%;
    top: 26%;
    transform: rotate(330deg);
  }
  
  .radial-menu .menu .five .icon {
    position: absolute;
    right: 8.5%;
    top: 27%;
    transform: rotate(270deg);
  }
  

  
  .radial-menu .menu .six .icon {
    position: absolute;
    right: 9%;
    top: 25%;
    transform: rotate(-150deg);
  }
  

.menu-content{
      display: none;
      padding-left: 2rem;
  }
.menu-content.active{
      display: block;
  }

.product--filter span {
    cursor: pointer
}

.product--filter span:hover {
    color: var(--blue)
}

.product--filter div:nth-child(2) span {
    padding: 0 .5rem;
    color: #2d2987
}

.product--filter--all span {
    color: #2d2987 !important;
    text-decoration: none !important
}

.product-select {
    background: #2d2987 url("../../images/down.svg") right .75rem center/24px 24px no-repeat;
    color: var(--white);
    border: 0;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    height: 43px;
    padding-left: 1rem !important;
}

.product--search .form-control {
    border: 0;
    border-radius: 0;
    padding: 0.75rem 1rem
}

.product--search .form-control:focus {
    outline: none;
    box-shadow: none
}
.product--search .input-group{
    height: 43px;
    background: #e2e4e7;
}
.product--search .input-group-text{
    height: 43px;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.product--list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.product--item {
    border: 0.5px solid #e2e4e7;
    padding: 2rem;
    width: 100%
}

.product--item--head h3 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 0;
    font-weight: normal
}

.product--item--head span {
    color: var(--blue);
    position: relative;
    top: -0.5rem
}

.product--item--body {
    padding-top: 1rem;
    font-size: .9rem;
    word-break: break-word
}

.product--item--body a:after {
    content: "↧";
    color: var(--blue);
    font-size: 1.25rem;
    padding-left: .5rem
}

.product--pagination ul {
    display: flex;
    padding-left: 0
}

.product--pagination ul li {
    border-radius: 50%
}

.product--pagination ul li a {
    color: var(--blue);
    padding: 1rem;
    border-radius: 50%;
    padding: 0.75rem 1rem
}

.product--pagination ul li a:hover {
    background-color: #e2e4e7;
    color: var(--blue) !important
}

.product--pagination ul.active {
    background-color: var(--blue)
}

.product--pagination ul.active a {
    color: var(--white) !important;
    background: #2d2987
}

.tab-pane .form-control {
    width: 100%;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #374051 !important;
    padding-left: 0.5rem
}

.tab-pane .form-control:focus {
    border-color: var(--blue--secondary);
    outline: none;
    box-shadow: none
}

.tab-pane label {
    font-weight: normal
}

.circle-div {
    border: 8px solid #2d2987;
    border-radius: 50%;
    width: 150px;
    display: flex;
    height: 150px;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center
}

.circle-div:hover {
    background: var(--blue);
    color: var(--white)
}

.slider-div {
    border: 1px solid var(--blue);
    min-height: 400px
}

.slider-div a p {
    margin-bottom: 0.5rem !important
}

.slider-div:hover {
    background: var(--blue)
}

.slider-div:hover a {
    background: var(--blue);
    color: var(--white)
}

.is-ilanlari {
    border: 1px solid var(--blue);
    border-radius: 30px;
    position: relative;
    padding: 1rem 2rem
}

.is-ilanlari-btn {
    position: absolute;
    left: -1rem;
    bottom: -3rem;
    display: flex
}

@media screen and(max-width:768px) {
    .is-ilanlari {
        left: 0
    }
}

.is-ilanlari-btn a {
    border: 1px solid var(--blue);
    background: var(--white);
    display: flex;
    padding: 0.25rem;
    margin-right: 15px;
    border-radius: 15px
}
.is-ilanlari-btn a{
    border-radius: 15px;
}
.is-ilanlari-btn a img:hover {
    opacity: .7
}

.rtl {
    direction: rtl
}

.rtl body {
    text-align: right !important
}

.rtl .text-center {
    text-align: center !important
}

.rtl .accordion .card .card-header::after {
    left: 0;
    transform: rotate(0deg);
    right: auto
}

.rtl .accordion .card .card-header[aria-expanded="true"]::after {
    transform: rotate(-90deg) !important
}

.rtl .navbar__wrapper .navbar__menu .navbar__menu__icon {
    padding-right: 0.5rem
}

.rtl .navbar__lang {
    margin-right: 1.5rem
}
.cookie{
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1rem 2rem;
    border-top: 2px solid var(--blue);
    z-index: 112;
}
@media screen and (max-width:1024px) {
    .cookie{
        flex-direction: column;
        padding-right: 0 !important;
        align-items: flex-start;
    }
}
.langRu h1,h2,h3,h4,h5,h6{
    font-weight: bold !important;
}
.rtl h1,h2,h3,h4,h5,h6{
  font-weight: bold !important;
}
.search-result{
  cursor: pointer;
  padding: 1rem;
  border-bottom: 1px solid #eaecf3;
  margin-bottom: 3rem;
}

.search-result:hover{
  background-color: #eaecf3;
}
.cookie-layer{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  top: 0;
  left: 0;
  z-index: 112;
  display: none;
}
.cookie-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 550px;
  height: 100%;
  background: var(--white);
  z-index: 116;
  padding: 1rem;
  overflow-y: scroll;
  transform: translateX(-550px);
  transition: all .3s ease;
}
.cookie-bar--active{
  transform: translateX(0);
}
.cookie-bar-close{
  position: absolute;
  right: 0rem;
  font-weight: bold;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--black);
  width: 100%;
  text-align: end;
  border-bottom: 1px solid var(--black);
  padding-right: 1rem;
  padding-bottom: 1rem;
}
.cookie-bar-content{
  padding-top: 5rem;
}
.cookie-bar .accordion .card .card-header::after{
  content: "";
}
.cookie-bar .accordion .card .card-header::before{
  content: "+";
  position: absolute;
  color: black;
}
.cookie-bar .accordion .card .card-header[aria-expanded="true"]::before{
  content: "-";
}
.cookie-bar .accordion .card{
  border: 1px solid var(--black);
}
.cookie-bar .accordion .card .card-header{
  margin-bottom: 2px;
  color: var(--black);
  font-size: 1rem;
}
.cookie-bar .card-body{
  background-color: #F8F8F8;
  padding: 1rem !important;
  margin-bottom: 0 !important;
}
.cookie-bar .card-body a{
  cursor: pointer;
}
.tanimlama-ayrintilari{
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 100%;
  background: var(--white);
  z-index: 120;
  padding: 1rem;
  overflow-y: scroll;
  display: none;
}
.tanimlama-ayrintilari-kapat{
  display: flex;
  align-items: center;
  cursor: pointer;
}
.tanimlama-ayrintilari span{
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
}
.tanimlama-ayrintilari .card{
  border-bottom: 1px solid #000 !important;
  padding-bottom: 1rem;
}
.tanimlama-ayrintilari .card-header{
  padding-bottom: 0 !important;
}
.tanimlama-ayrintilari .accordion .card .card-header::before{
  content: "+";
  position: absolute;
  color: black;
}
.tanimlama-ayrintilari .accordion .card .card-header[aria-expanded="true"]::before{
  content: "-";
}
.tanimlama-bilgiler-liste{
background-color: #F8F8F8;
}

.certificate-wrapper-item {
    border: 0.5px solid #e2e4e7;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.certificate-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

@media screen and (max-width:1024px) {
    .product--list {
        grid-template-columns: repeat(1, 1fr)
    }

    .product--item--head h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem
    }

    .product--filter div:nth-child(2)span {
        padding: 0 0.25rem
    }

    .product--filter {
        gap: 1rem
    }

    .home__img__box__content {
        min-height: 250px
    }

    .home__img__box__image {
        opacity: 1
    }

    .home__img__box__content span,
    .home__img__box__content h6 a {
        color: var(--white)
    }

    .text--anime--wrapper h2,
    .text--anime--wrapper h1 {
        line-height: 50px !important
    }

    .certificate-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }
    .video__content__text__wrapper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .text--anime--wrapper,
    .video__content__text__wrapper p {
        max-width: 100% !important;
        font-size: 1.25rem;
        line-height: 30px
    }

    .navbar_right {
        margin-right: 1rem !important
    }

    .navbar__wrapper .navbar__menu span {
        display: none
    }

    .text--anime--wrapper h1 {
        line-height: 50px !important
    }

    .navbar-brand img {
        max-width: 150px;
        width: 150px
    }

    .site__btn {
        padding: .5rem 1rem
    }

    .section_wrapper,
    .container {
        width: 100%
    }

    footer {
        padding-top: 2rem
    }

    #Footer .footer_copy .one {
        flex-direction: column
    }

    #Footer .footer_copy .copyright {
        padding-bottom: 1rem
    }

    #social-menu {
        padding-top: 2rem
    }

    .accordion.card {
        margin-bottom: 1rem
    }

    .accordion .card .card-body {
        margin-top: .5rem
    }

    .accordion .card .card-body ul li {
        padding: .25rem 0
    }

    .site__menu__bottom ul li {
        padding: .25rem 0
    }

    .py-10 {
        padding-top: 50px;
        padding-bottom: 50px
    }
    .py-5{
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    #dunyadaWorldMedicine .modal-body a{
        font-size: 100% !important;
    }
    .navbar__tooltip .dropdown-menu{
        min-width: 4rem !important;
        max-width: 4rem !important;
    }
    .breadcrumb-half-page{
        height: auto !important;
    }
    .certificate-wrapper-item{
        padding: 1rem !important;
    }
    .breadcrumb ul li{
        margin-bottom: 0.5rem;
    }
    .is-ilanlari-btn{
        left: 0 !important;
        bottom: -2.5rem !important;
    }
    #Content img, img.scale-with-grid{
        width: 100%;
    }
    .hover_color.align_left:hover{
        max-width: 90%;
        margin: 0 auto;
    }
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.breadcrumb-half-page {
    height: 500px
}
.form-control {
    border-radius: 0 !important;
    border-color: #000 !important;
}
.form-control:focus {
    border-color: #000 !important;
    box-shadow: none !important;
}
select{
    border-radius: 0 !important;
    border-color: #000 !important;
    padding-left: 0 !important;
    padding-top: 2rem !important;
}
select:focus {
    border-color: #000 !important;
    box-shadow: none !important;
}
.wmlife:last-child{
    margin-bottom: 100px;
}

.hover-scale-image:hover img{
    transform: scale(1.05);
    border-radius: 8px !important;
}
.hover-scale-image{
    overflow: hidden;
}
.hover-scale-image img{
    transition: all .3s ease;
}
.hover-scale-image-wrapper{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
}
.mcb-wrap-inner ul{
    list-style: disc;
    padding-left: 1rem;
}
.breadcrumb-without-image .breadcrumb ul li::after{
    color: var(--blue) !important;
}
.page-background-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.site__menu ul{
    list-style: none !important;
    padding-left: 0 !important;
}
.full-screen::after {
    content: "";
    background-color: #2d2987;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .6;
    top: 0;
    left: 0;
}