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

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

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

:root {
    --lightblack: #374051;
    --blue: #0033a0;
    --blue--secondary: #4C70BC;
    --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[lang="ru"] body * {
    font-family: var(--font-ru) !important
}

html[lang="ru"] .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(0, 51, 160, 1)10%, rgba(0, 51, 160, 0.7749474789915967)36%, rgba(0, 51, 160, 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{
    z-index: 1;
}
#Intro .full-screen {
    position: relative;
    z-index: 10;
}

#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%
}

@media screen and (max-width:1204px) {
    #parallax-img-1 {
        margin-top: 11.5rem;
    }
    #parallax-img-2 {
        margin-top: 15rem;
    }
}

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


.modal-backdrop {
    z-index: 10
}

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

@media (min-width: 1200px) {
    #dunyadaWorldMedicine .modal-dialog.modal-xl {
        max-width: 960px
    }
}

#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;
    padding-left: 6px;
    padding-right: 6px
}

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

/* Dünyada World Medicine modal: ülke listesi eşit sıralı (hepsi aynı satır yüksekliği) */
#dunyadaWorldMedicine .modal-body .world-medicine-countries {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch
}

#dunyadaWorldMedicine .modal-body .world-medicine-country-item {
    min-height: 29px;
    display: flex;
    align-items: center;
    margin-bottom: .75rem;
    padding-left: 8px;
    padding-right: 8px
}

#dunyadaWorldMedicine .modal-body .world-medicine-country-item a,
#dunyadaWorldMedicine .modal-body .world-medicine-country-item span {
    line-height: 29px;
    min-height: 29px;
    display: inline-flex;
    align-items: center
}

#dunyadaWorldMedicine .modal-body .world-medicine-country-item--no-flag > a,
#dunyadaWorldMedicine .modal-body .world-medicine-country-item--no-flag > span {
    padding-left: 28px
}

#dunyadaWorldMedicine .modal-body .world-medicine-flag {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 100% !important;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.9);
    flex-shrink: 0
}

.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: 5px;
    color: #0033a0
}

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

.product--select {
    background: #0033a0 url("/wm/assets/images/down.svg") right .75rem center/24px 24px no-repeat !important;
    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;
}
select.product--search:focus{
    background: #0033a0 !important;
}
.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: 2rem
}

.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: #0033a0
}

.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 #0033a0;
    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
}
.rtl #back_to_top{
    right: auto !important;
    left: -10px !important;
  }
.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;
    }
}

html[lang="ru"] h1,
html[lang="ru"] h2,
html[lang="ru"] h3,
html[lang="ru"] h4,
html[lang="ru"] h5,
html[lang="ru"] 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;
    text-align: 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
}

.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: #0033a0;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .6;
    top: 0;
    left: 0;
}

.uretim-tesisi-uc {
    margin-bottom: -400px;
}

@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: 5px
    }

    .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;
    }

    .uretim-tesisi-uc {
        margin-bottom: -300px;
    }
    .product--pagination ul li a{
        padding: 0.75rem 0.5rem;
    }
}

.caroufredsel_wrapper{
    height: 450px !important;
}

/* COMPONENT_58 - Görsel 1:1 oran (tüm tasarımlar) */
.component-58-dinamik-basin-yonetimi .component-58-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.component-58-dinamik-basin-yonetimi .component-58-img-wrap .component-58-img,
.component-58-dinamik-basin-yonetimi .component-58-img-wrap img.component-58-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.component-58-tasarim-2 .component-58-img-wrap .image_wrapper,
.component-58-tasarim-2 .component-58-img-wrap .image_wrapper a {
    display: block;
    height: 100%;
}
.component-58-tasarim-2 .component-58-img-wrap .image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.component-58-dinamik-basin-yonetimi .component-58-img-wrap > a {
    display: block;
    height: 100%;
}

/* COMPONENT_58 - Genel mavi renk */
.component-58-dinamik-basin-yonetimi .detail--link,
.component-58-dinamik-basin-yonetimi .site__btn--text--icon.color--blue--secondary,
.component-58-dinamik-basin-yonetimi a.component-58-corporate-card__link {
    color: #0033a0 !important;
}
.component-58-dinamik-basin-yonetimi .detail--link:hover,
.component-58-dinamik-basin-yonetimi .site__btn--text--icon.color--blue--secondary:hover,
.component-58-dinamik-basin-yonetimi a.component-58-corporate-card__link:hover {
    color: #0033a0 !important;
    opacity: 0.9;
}

/* COMPONENT_58 Tasarım 2 - görsel hizalama */
.component-58-tasarim-2 .image_frame .image_wrapper {
    text-align: center;
}
.component-58-tasarim-2 .image_frame .image_wrapper img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.component-58-tasarim-2 .component-58-img-wrap {
    width: 100%;
}

/* COMPONENT_58 Tasarım 3 - Kurumsal (accent şerit + dikey kart) */
.component-58-tasarim-3 .component-58-corporate-card {
    position: relative;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}
.component-58-tasarim-3 .component-58-corporate-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.component-58-tasarim-3 .component-58-corporate-card__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0033a0;
    z-index: 1;
}
.component-58-tasarim-3 .component-58-corporate-card__img-wrap {
    padding: 0;
    overflow: hidden;
    width: 100%;
}
.component-58-tasarim-3 .component-58-corporate-card__content {
    padding-left: 1rem;
}
.component-58-tasarim-3 .component-58-corporate-card__title {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.component-58-tasarim-3 .component-58-corporate-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0033a0 !important;
    text-decoration: none;
}
.component-58-tasarim-3 .component-58-corporate-card__link:hover {
    text-decoration: underline;
    color: #0033a0 !important;
}

/* Quill: data-list="bullet" maddeler rakam yerine madde imi (disc) göstersin */
ol:has(> li[data-list="bullet"]) {
    list-style-type: disc !important;
}
li[data-list="bullet"] {
    list-style-type: disc !important;
}
li[data-list="bullet"]::before {
    content: none !important;
    display: none !important;
}
/* Opsiyonel: favicon/ikon ile madde imi isterseniz aşağıdaki satırı açıp url'yi kendi ikonunuzla değiştirin */
/* li[data-list="bullet"]::marker { content: url('/wm/assets/media/favicon.svg'); } */