@font-face {
    font-family: "ABCMonumentGrotesk-Regular";
    src: url("../fonts/ABCMonumentGrotesk-Regular.eot");
    src: url("../fonts/ABCMonumentGrotesk-Regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/ABCMonumentGrotesk-Regular.svg#ABCMonumentGrotesk-Regular") format("svg"),
        url("../fonts/ABCMonumentGrotesk-Regular.ttf") format("truetype"),
        url("../fonts/ABCMonumentGrotesk-Regular.woff") format("woff"),
        url("../fonts/ABCMonumentGrotesk-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ABCMonumentGrotesk-Light";
    src: url("../fonts/ABCMonumentGrotesk-Light.eot");
    src: url("../fonts/ABCMonumentGrotesk-Light.eot?#iefix") format("embedded-opentype"),
        url("../fonts/ABCMonumentGrotesk-Light.svg#ABCMonumentGrotesk-Light") format("svg"),
        url("../fonts/ABCMonumentGrotesk-Light.ttf") format("truetype"),
        url("../fonts/ABCMonumentGrotesk-Light.woff") format("woff"),
        url("../fonts/ABCMonumentGrotesk-Light.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family: "ABCMonumentGrotesk-Regular";
    --font-family-light: "ABCMonumentGrotesk-Light";

    --accent: #00ada3;
    --accent-secondary: #6866c9;
    --text: #3b5a5a;
    --text-light: #fdf9f3;
    --text-dark: #002e2d;

    --text-title: rgba(0, 46, 45, 0.7);

    --primary-button: #00ada3;
    --primary-button-hover: #00948d;

    --secondary-outline-button: #f2f2f2;
    --secondary-outline-button-hover: #ff5000;

    --input-bg: #e8e8ee;
    --input-placeholder: #acacbc;

    --post-box: #ffffff;

    --border: #1a1a1a;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    font-weight: 400;
    font-size: 18px;
    line-height: 25.2px;
    font-family: var(--font-family);
    background: rgb(211, 206, 219);
    background: linear-gradient(90deg, rgba(211, 206, 219, 1) 0%, rgba(225, 238, 238, 1) 100%);
}

body:not(.home) {
    background: rgb(211, 206, 219);
    background: linear-gradient(90deg, rgba(226, 209, 225, 1) 0%, rgba(214, 244, 226, 1) 100%);
}

p:empty {
    margin-bottom: 0px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--accent);
}

button {
    transition: all 0.2s ease;
}

main img {
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    border: none;
    border-radius: 12px;
    background: #fff;
    height: 53px;
    line-height: 53px;
    padding: 0px 20px;
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.d-flex-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 300;
    font-family: var(--font-family-light);
}

h1 {
    font-size: 76px;
    line-height: 83.6px;
}

h2 {
    font-size: 68px;
    line-height: 74.8px;
}

h3 {
    font-size: 55px;
    line-height: 60.5px;
}

h4 {
    font-size: 45px;
    line-height: 49.5px;
}

h5 {
    font-size: 36px;
    line-height: 39.6px;
}

h6 {
    font-size: 28px;
    line-height: 33.6px;
}

.h2-lg {
    font-size: 109px;
    line-height: 87.2px;
}

strong,
b {
    font-weight: bold;
}

label {
    font-weight: 300;
}

img {
    display: block;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url(../images/select-arrow.svg);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: 95% center;
}

select:focus,
select:active {
    outline: none;
    box-shadow: none;
}

.visible-mobile {
    display: none;
}

/*select::after {
content: "";
position: absolute;
top: 0px;
right: 0px;

width: 9px;
height: 9px;

display: block;
}*/

.visible-mobile,
.visible-tablet {
    display: none;
}

p {
    font-weight: 300;
}

p,
.p-reg-base {
    font-size: 18px;
    line-height: 25.2px;
}

.p-reg-lg {
    font-size: 26px;
    line-height: 31.2px;
}

.p-reg-md {
    font-size: 20px;
    line-height: 28px;
}

.p-reg-sm {
    font-size: 16px;
    line-height: 22.4px;
}

.p-reg-xs {
    font-size: 12px;
    line-height: 16.8px;
}

.mobile-toggle {
    display: none;
}

.mobile-menu-open .mobile-toggle .default,
.mobile-toggle .close {
    display: none;
}

.mobile-menu-open .mobile-toggle .close {
    display: block;
}

.mobile-menu-open .mobile-toggle svg {
    transform: rotate(180deg);
}

.block-label {
    color: var(--accent);
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
    padding-bottom: 93px;
}

.block-label svg {
    margin-right: 7px;
}

.light-bg {
    background: #ffffff;
}

.dark-bg {
    background: rgb(46, 115, 125);
    background: linear-gradient(90deg, rgba(18, 78, 77, 1) 0%, rgba(46, 115, 125, 1) 100%);
}

.green-bg {
    background: #00ada3;
}

.light-text {
    color: #fff;
}

.border-radius-30 {
    border-radius: 30px;
}

.border-radius-21 {
    border-radius: 21px;
}

.border-radius-20 {
    border-radius: 20px;
}

.product-fix {
    width: 100%;
}

.row {
    --bs-gutter-x: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-2 {
    width: 16.66666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333333%;
}

.col-5 {
    width: 41.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-8 {
    width: 66.66666667%;
}

.col-9 {
    width: 75%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

input {
    outline: none;
    box-shadow: none;
}

small,
sup,
sub {
    font-size: 50%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px !important;
    padding: 0px 30px;
    height: 54px;
    line-height: 54px;
    line-height: normal;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn svg {
    margin-left: 0px;
    width: 0px;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    /* margin-top: 4px; */
}

.btn:hover svg {
    margin-left: 15px;
    width: auto;
    visibility: visible;
}

.btn-primary {
    background: var(--primary-button);
}

.darker.btn-primary {
    background: var(--primary-button-hover);
}

.btn-primary:hover,
.btn-secondary:hover {
    background: var(--primary-button-hover);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-secondary);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 82px;
    padding-right: 82px;
}

.relative {
    position: relative;
    z-index: 1;
}

.header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
}

.top-bar {
    padding: 15px 2px 19px 17px;
    font-weight: 400;
    font-size: 15px;
    line-height: 19.5px;
    color: var(--text-dark);
    position: relative;
}

.global-lang-wrapper .text {
    padding: 0px 10px;
}

.home .top-bar,
.page-slug-working-at-olpha .top-bar,
.home .global-link a,
.page-slug-working-at-olpha .global-link a {
    color: var(--text-light);
}

.top-bar-menu a {
    color: inherit;
}

.top-bar-menu a:hover {
    color: var(--accent);
}

.top-bar-menu li + li {
    margin-left: 23px;
}

body:not(.home) .global-lang-wrapper .icon svg path,
body:not(.home) .global-lang-wrapper .icon svg rect {
    stroke: var(--text-dark);
}

body:not(.home) .header .carret svg path {
    stroke: var(--text-dark);
}

.page-slug-working-at-olpha .global-lang-wrapper .icon svg path,
.page-slug-working-at-olpha .global-lang-wrapper .icon svg rect {
    stroke: var(--text-light) !important;
}

.page-slug-working-at-olpha .header .carret svg path {
    stroke: var(--text-light) !important;
}

.wpml-ls-legacy-dropdown-click a {
    background: transparent;
    border: none;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
    display: none;
}

.sub-menu .current_page_item a {
    color: var(--accent) !important;
}

.wpml-ls-legacy-dropdown-click {
    width: auto;
    overflow: hidden;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    border: none;
    position: relative;
    color: rgba(0, 46, 45, 1);
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s, opacity 0.5s;
    width: 0;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover .wpml-ls-sub-menu {
    opacity: 1;
    transform: translateX(0);
    width: auto;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover .wpml-ls-sub-menu {
    visibility: visible;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
    padding: 0;
}

.wpml-ls-legacy-dropdown-click a {
    transition: none;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language > a {
    position: relative;
    z-index: 9999;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language > a,
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
    padding: 12px 21px;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a,
.wpml-ls-legacy-dropdown-click a:focus,
.wpml-ls-legacy-dropdown-click a:hover {
    color: rgba(253, 249, 243, 1);
    background: rgba(0, 46, 45, 1);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.main-bar {
    background: rgba(253, 254, 254, 0.8);
    border-radius: 30px;
    padding: 20px 44px;
    min-height: 108px;
    transition: all 0.2s ease;
}

.desktop .nav {
    margin-left: auto;
}

.main-bar .navigation > ul > li > a {
    color: rgba(0, 46, 45, 0.7);
    font-size: 18px;
    line-height: 19.8px;
    max-width: 109px;
    display: flex;
    height: 40px;
    align-items: center;
    -webkit-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}

.main-bar .navigation a:hover {
    color: var(--accent);
}

.main-bar .navigation > ul > li {
    width: 173px;
}

.main-bar .navigation {
    margin-left: 71px;
    padding-top: 15px;
}

.global-lang-wrapper {
    position: relative;
    padding: 0px 20px 0px;
    margin-top: 1px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}

.header .logo {
    margin-top: 21px;
}

.header .logo img {
    max-width: 151px;
}

.header .sub-menu {
    margin-top: 0px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}

.header .sub-menu a {
    font-size: 14px;
    line-height: 19.38px;
    color: rgba(0, 46, 45, 0.7);
}

.header .sub-menu li + li {
    margin-top: 4px;
    margin-left: 0px;
}

.global-lang-wrapper .icon {
    margin-top: 6px;
}

.main-navigation .menu-item-has-children.active > .sub-menu,
.menu-open .menu-item-has-children:hover > .sub-menu {
    max-height: 100%;
    overflow: visible;
    margin-top: 31px;
    opacity: 1;
}

.menu-open .main-bar {
    background: rgba(253, 254, 254, 1);
    min-height: 294px;
}

.menu-open .main-bar .navigation > ul > li > a {
    transform: translateY(-9px);
}

.navigation .current-menu-parent > a {
    color: var(--accent) !important;
}

.current-menu-parent .sub-menu .current-menu-item a {
    color: var(--accent-secondary);
    font-size: 16px;
    line-height: 22.14px;
}

.hero {
    position: relative;
}

.hero #hero-video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
}

.video::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video {
    min-height: 757px;
}

.hero {
    padding-top: 243px;
}

.hero .card {
    width: 100%;
    max-width: 740px;
    background: rgba(120, 159, 188, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    padding: 65px 41px 34px;
}

.ligth-text {
    color: #fff;
}

.hero .title {
    font-weight: 300;
    font-family: var(--font-family-light);
    font-size: 76px;
    line-height: 83.6px;
}

.hero .btn {
    margin-top: 27px;
}

.hero p {
    max-width: 360px;
    margin-top: 21px;
    font-family: var(--font-family-light);
}

.section .block-label {
    padding-bottom: 33px;
}

.section .title-content {
    margin-bottom: 61px;
    padding: 0px 42px;
}

.section .title-content p {
    max-width: 591px;
    padding-top: 22px;
}

.section .content {
    padding: 0px 42px;
}

.section .title-content .btn {
    margin-top: 26px;
}

.section .title {
    font-weight: 300;
    font-family: var(--font-family-light);
}

.strategy {
    padding: 117px 0px 40px;
}

.strategy .block-label {
    padding-bottom: 100px;
}

.cards .item {
    padding: 36px 45px 59px 45px;
    box-shadow: 0px 4px 34px 0px #7d7be61a;
    border-radius: 30px;
}

.cards .item .icon {
    margin-bottom: 30px;
}

.cards .item .title {
    margin-bottom: 15px;
}

.cards .item p {
    max-width: 506px;
}

.cards [class^="col-"] {
    padding-bottom: 10px;
}

.strategy .content {
    margin-bottom: 61px;
}

.strategy .content p {
    padding: 0px 15px 0px 50px;
    margin-bottom: -11px;
    font-family: var(--font-family-light);
}

.cards .number {
    font-size: 85px;
    line-height: 85px;
    font-weight: 300;
    letter-spacing: -3px;
    margin-right: 30px;
    font-family: var(--font-family-light);
}

.cards .item {
    height: 100%;
}

.cards .subtext {
    font-weight: 300;
    margin-bottom: 9px;
    font-family: var(--font-family-light);
}

.cards-dark .number {
    color: var(--accent);
}

.cards-dark .subtext {
    color: #d2ecda;
    font-size: 30px;
    line-height: 27px;
    max-width: 147px;
}

.cards-light .number {
    color: rgba(253, 249, 243, 1);
}

.cards-light .subtext {
    color: rgba(253, 249, 243, 1);
    font-size: 24px;
    line-height: 26.4px;
}

.cards-dark .item {
    padding: 36px 45px 59px 45px;
    background: #2e737d;
}

.cards-dark .col-4:first-child .item {
    background: linear-gradient(90deg, rgba(18, 78, 77, 1) 0%, rgba(46, 115, 125, 1) 100%);
}

.cards-light .item {
    padding: 46px 37px 39px 45px;
    background: rgba(0, 147, 139, 1);
}

.cards-light .item .number {
    margin-right: 20px;
}

.cards-light .col-4:nth-child(3n) .item {
    background: linear-gradient(90deg, rgba(0, 147, 139, 1) 0%, rgba(255, 201, 21, 1) 100%);
}

.cards-accent .item {
    padding: 42px 37px 39px 67px;
    background: #aca5fb;
}

.cards-accent .col-4:nth-child(3n) .item {
    background: linear-gradient(90deg, #aba4fa 0%, #7ce2d5 100%);
}

.cards-dark .item {
    padding: 41px 39px 44px 39px;
}

.more-wrapper {
    margin-top: 35px;
}

.articles img {
    width: 100%;
}

.articles .date {
    font-size: 14px;
    line-height: 19.38px;
    padding: 0px 30px 14px;
}

.article {
    height: 100%;
}

.article .no-img {
    background: var(--accent);
    color: #fff;
    padding: 41px 25px 10px 34px;
}

.article .wrapper:hover .no-img::before {
    display: none;
}

.article .wrapper:hover .no-img {
    background: var(--accent-secondary);
}

.article .btn svg {
    transition: all 0.2s ease;
}

.article .no-img h6 {
    font-weight: 300;
}

.article .wrapper {
    display: block;
    border-radius: 30px;
    min-height: 402px;
}

.article .subtext {
    font-size: 16px;
    line-height: 22.4px;
    color: var(--text-title);
}

.article .content {
    padding: 20px 30px 27px;
    height: 158px;
    transition: all 0.2s linear;
    -webkit-border-bottom-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.article .content h6 {
    font-family: var(--font-family-light);
}

.latest-posts {
    padding: 53px 0px 40px;
}

.latest-posts .block-label {
    padding-bottom: 33px;
}

.latest-posts .title-content {
    margin-bottom: 61px;
    padding: 0px 42px;
}

.article .img {
    height: 222px;
    position: relative;
    overflow: hidden;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-topright: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-size: cover;
}

.article .img img {
    display: none;
}

.post .img {
    position: relative;
}

.article .img::before,
.post .img::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in;
}

.article .more {
    color: var(--accent-secondary);
    padding-right: 14px;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    transition: all 0.2s ease;
    margin-top: auto;
    border: none;
    height: auto;
    line-height: inherit;
}

.article .more svg {
    margin-left: 6px;
}

.article .more:hover {
    color: var(--accent-secondary);
}

.article .wrapper:hover .more {
    font-size: 16px;
    background: transparent;
    border: none;
}

.article .wrapper:hover .more svg path {
    stroke: #6866c9;
}

.article .wrapper:hover .content {
    height: 180px;
}

.article .more .text {
    position: absolute;
    top: -100%;
    visibility: hidden;
    right: 42px;
}

.article .wrapper:hover .more .text {
    top: -5px;
    visibility: visible;
}

.article .wrapper:hover .img::before,
.post .wrapper:hover .img::before {
    background: rgba(0, 0, 0, 0.2);
}

.therapeutic {
    padding: 86px 0px 33px;
}

.area-list {
    padding: 15px 42px 0px;
}

.area-list .line {
    height: 8px;
    width: 100%;
    max-width: 223px;
    border-radius: 4px;
    background: var(--accent);
    margin-bottom: 14px;
}

.area-list .title {
    margin-bottom: 9px;
}

.area-list .item {
    padding-bottom: 54px;
}

.content-video,
.content-image {
    min-height: 527px;
    overflow: hidden;
}

.business-partners {
    padding: 86px 0px 33px;
}

.business-partners .block-label {
    padding-bottom: 53px;
}

#research-video,
.bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.bg-img {
    background-size: cover;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
}

.content-video::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(15, 65, 69, 0.9) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-image::before {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(90deg, rgba(15, 65, 69, 1) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.research {
    padding: 65px 0px 40px;
}

.research .text {
    z-index: 1;
    max-width: 537px;
    color: var(--text-light);
}

.content-video {
    padding: 97px 0px 20px 46px;
}

.content-image {
    padding: 118px 0px 20px 46px;
}

.content-video .title {
    margin-bottom: 40px;
}

.content-image .title {
    margin-bottom: 49px;
}

.content-image p {
    margin-bottom: 24px;
}

.content-video p {
    margin-bottom: 39px;
}

.content-image p {
    max-width: 428px;
}

.section img {
    max-width: 100%;
}

.life .text {
    height: 100%;
    padding: 82px 35px 34px 40px;
}

.life {
    padding: 65px 0px 27px;
}

.life .title {
    margin-bottom: 49px;
}

.life .btn {
    margin-top: 42px;
}

.life img {
    display: none;
}

.life .img {
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.responsibility .article .title {
    font-size: 23px;
    line-height: 27.6px;
    margin-bottom: 9px;
}

.responsibility {
    padding: 65px 0px 80px;
}

.responsibility .article .img {
    height: 287px;
}

.responsibility .article .content {
    height: 181px;
}

.cooperate {
    padding: 50px 0px 80px;
    position: relative;
    z-index: 1;
}

.cooperate .wrapper {
    background: rgba(182, 191, 200, 0.3);
    padding: 26px 38px 40px;
}

.cooperate .title {
    font-size: 46px;
    line-height: 50.6px;
    margin-bottom: 17px;
    font-family: var(--font-family-light);
}

.cooperate .list-title {
    margin-bottom: 4px;
}

.cooperate .list-text {
    margin-bottom: 21px;
    max-width: 222px;
}

footer {
    padding: 36px 0px 30px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

footer p {
    font-size: 16px;
    line-height: 22.4px;
}

footer .wrapper {
    padding: 0px 39px;
}

footer .footer-logo {
    margin-bottom: 60px;
    max-width: 181px;
}

footer .social-line {
    padding-top: 54px;
}

footer a {
    color: rgba(0, 46, 45, 0.7);
}

footer .info ul {
    padding-top: 13px;
}

footer .info a svg {
    margin-left: 10px;
}
footer a svg path {
    stroke: rgba(0, 46, 45, 0.7) !important;
}

footer a:hover svg path {
    stroke: var(--accent) !important;
}

footer a:hover {
    color: var(--accent);
}

footer input {
    width: 100%;
}

footer .item {
    width: 50%;
}

footer .social-list a {
    background: #ffffff;
    border-radius: 13.16px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .social-list a:hover {
    background: var(--accent);
}

footer .social-list a + a {
    margin-left: 4px;
}

footer .social-list {
    margin-bottom: 4px;
    padding-right: 63px;
}

.copyrights .links {
    padding-right: 82px;
}

footer .social-list .text {
    margin-right: 20px;
}

.sbs-block .title {
    margin-bottom: 5px;
}

.sbs-block .btn {
    background: rgba(0, 173, 163, 0.2);
    color: rgba(0, 0, 0, 0.2);
    margin-left: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0px;
    text-align: center;
}

.sbs-block .btn:hover {
    background: var(--primary-button-hover);
    color: #ffffff;
}

.copyrights {
    padding-top: 54px;
    font-size: 12px;
    line-height: 16.8px;
}

.copyrights .links .item-text {
    position: relative;
    cursor: pointer;
}

.copyrights .links .item-text + .item-text {
    padding-left: 28px;
}

.copyrights .links .item-text + .item-text::before {
    content: "/";
    position: absolute;
    left: 14px;
    top: 0px;
}

.cooperate .arrow-wrap {
    overflow: hidden;
}

.btn-more {
    display: block;
    width: 21px;
    transition: transform 0.3s ease-in-out;
}

.btn-more svg {
    transform: translateX(-19px);
    transition: transform 0.3s ease-in-out;
}

.btn-more:hover {
    width: 41px;
}

.btn-more:hover svg {
    transform: translateX(0px);
}

.search-wrapper {
    border-radius: 30px;
    height: 39px;
    position: relative;
    overflow: hidden;
    margin-left: 30px;
    margin-right: 21px;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.search-field,
.search-form {
    height: 100%;
}

.search-field {
    border: none;
    box-shadow: none;
    padding: 0px;
    background: transparent;
    color: #fff;
    transition: width 0.2s linear;
    width: 0px;
    max-width: 100%;
}

.search-form {
    display: flex;
    justify-content: flex-end;
}

.search-submit {
    font-family: var(--font-family);
    font-weight: 400;
    cursor: pointer;
    height: 39px;
    line-height: 39px;
    border: none;
    padding: 0px 20px 0px 40px;
    background-color: transparent;
    background-image: url(../images/search-icon-dark.svg);
    background-size: 16.27px 15px;
    background-repeat: no-repeat;
    background-position: 13px center;
    color: var(--text-dark);
    font-size: 15px;
}

.home .search-submit,
.page-slug-working-at-olpha .search-submit,
.search-wrapper:hover .search-submit,
.search-wrapper.active .search-submit,
.active-location .search-submit {
    color: #fff;
    background-image: url(../images/search-icon.png);
}

.search-btn-overlay {
    position: relative;
    margin-left: auto;
    width: 101px;
}

.search-btn-overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.search-wrapper.active .search-btn-overlay::before {
    display: none;
}

.search-wrapper.active .search-field {
    padding: 0px 0px 0px 20px;
    width: 100%;
}

.search-wrapper {
    -moz-transition: all 0.35s;
    -webkit-transition: all 0.35s;
    width: 101px;
}

.search-wrapper.active {
    width: 290px;
}

.search-wrapper.active,
.search-wrapper:hover {
    background: #131a1a;
}

.lang-wrapper .wpml-ls-current-language {
    display: flex;
    flex-direction: row-reverse;
}

.wpml-ls-sub-menu {
    display: flex;
}

.lang-wrapper a {
    color: var(--text-dark);
}

.home .lang-wrapper a,
.page-slug-working-at-olpha .lang-wrapper a {
    color: #fff;
}

.page-hero .card {
    padding: 50px 50px 50px 50px;
    background-size: cover;
    min-height: 486px;
}

.page-hero h1 {
    font-weight: 300;
    font-size: 68px;
    line-height: 74.8px;
    font-family: var(--font-family-light);
}

.page-hero .wrapper {
    width: 50%;
}

.page-hero p {
    max-width: 474px;
    margin-top: 44px;
}

.page-hero .btn {
    margin-top: 27px;
}

.top-space {
    padding-top: 210px;
    position: relative;
    z-index: 1;
}

.breadcrumb-wrapper {
    font-size: 16px;
    line-height: 17.6px;
    margin-bottom: 16px;
    padding-left: 44px;
    color: rgba(0, 46, 45, 0.7);
}

.breadcrumb-wrapper a {
    color: rgba(0, 46, 45, 0.7);
    padding-bottom: 0px;
}

.breadcrumb-wrapper .separator {
    display: inline-flex;
    padding: 0px 4px 0px 4px;
}

.olpha-portfolio .title {
    font-size: 54px;
    line-height: 59.4px;
}

.olpha-portfolio {
    padding: 80px 0px 40px;
}

.olpha-portfolio .block-label {
    padding-bottom: 35px;
}

.olpha-portfolio .content {
    margin-bottom: 46px;
}

.olpha-group {
    padding-top: 56px;
}

.olpha-group .block-label {
    padding-bottom: 47px;
}

.olpha-group .title-content p {
    max-width: 491px;
    padding-top: 15px;
}

.olpha-group .title-content {
    margin-bottom: 51px;
}

.olpha-group .title {
    font-size: 54px;
    line-height: 59.4px;
}

.block-cards {
    margin-top: 30px;
}

.block-cards .item {
    background: rgba(220, 230, 240, 1);
    height: 100%;
    padding: 30px 35px 62px 35px;
}

.block-cards .img-wrapper {
    height: 143px;
}

.block-cards h5 {
    font-family: var(--font-family-light);
    margin-bottom: 14px;
    height: 100px;
    display: flex;
    align-items: flex-end;
}

.block-cards h5 {
    font-size: 28px;
    line-height: 33.6px;
}

.our-daily-operations {
    padding-top: 137px;
}

.our-daily-operations .title {
    font-size: 48px;
    line-height: 52.8px;
    max-width: 479px;
}

.our-daily-operations .title-content p {
    max-width: 417px;
    padding-top: 45px;
}

.list-cards {
    background: rgba(220, 230, 240, 1);
    padding: 32px 18px 26px 12px;
}

.list-cards + .list-cards {
    margin-top: 10px;
}

.list-cards .number {
    font-size: 55px;
    line-height: 60.5px;
    font-weight: 300;
    font-family: var(--font-family-light);
    width: 30%;
    text-align: right;
    margin-right: 45px;
}

.list-cards .subtext {
    font-size: 24px;
    line-height: 26.4px;
    font-weight: 300;
    font-family: var(--font-family-light);
    margin-bottom: 5px;
}

.list-cards-wrapper {
    padding-top: 7px;
}

.content-image .title {
    font-size: 68px;
    line-height: 74.8px;
}

.performance {
    padding: 79px 0px 107px;
}

.performance .title {
    font-size: 54px;
    line-height: 59.4px;
}

.performance .content {
    margin-bottom: 33px;
}

.performance .number {
    font-size: 55px;
    line-height: 60.5px;
    margin-right: 0px;
}

.performance .cards .subtext {
    font-size: 18px;
    line-height: 25.2px;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 6px;
}

.hero-with-image h1 {
    font-size: 45px;
    line-height: 49.5px;
}

.hero-with-image h1 {
    max-width: 515px;
    padding-top: 39px;
}

.hero-with-image p {
    max-width: 414px;
    margin-top: 31px;
}

.hero-with-image .card-transparent-wrapper {
    padding: 21px 39px 50px 43px;
}

.colored-promo {
    padding: 60px 0px 114px;
    font-weight: 300;
    font-family: var(--font-family-light);
}

.colored-promo .wrapper {
    text-align: center;
    padding: 91px 133px 93px;
    background: linear-gradient(90deg, #ffc814 0%, #7be1d4 100%);
}

.colored-promo .subtitle {
    font-size: 26px;
    line-height: 31.2px;
    margin-bottom: 41px;
}

.olpha-plan {
    background-size: cover;
    padding: 49px 0px 91px;
    margin-bottom: 60px;
}

.olpha-plan .title-wrapper {
    border-radius: 27px;
    color: var(--text-light);
    font-weight: 300;
    background: #789fbc4d;
    max-width: 470px;
    backdrop-filter: blur(10px);
    padding: 30px 27px 30px;
    margin-bottom: 35px;
}

.olpha-plan h3 {
    font-family: var(--font-family-light);
    margin-bottom: 10px;
    font-size: 45px;
    line-height: 49.5px;
}

.olpha-plan .overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(117, 165, 236, 0.55) 0%, rgba(0, 148, 141, 0.24) 100%);
}

.olpha-plan-list .item {
    background: rgba(220, 230, 240, 1);
    border-radius: 20px;
    padding: 61px 28px 50px;
    height: 100%;
}

.olpha-plan-list h4 {
    font-size: 36px;
    line-height: 39.6px;
    font-family: var(--font-family-light);
    font-weight: 300;
    margin-bottom: 16px;
}

.olpha-plan-list {
    --bs-gutter-x: 20px;
}

.global-list {
    position: absolute;
    background: rgba(0, 46, 45, 0.93);
    top: 0px;
    width: 100%;
    left: 0px;
    right: 0px;
    -webkit-border-bottom-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 75px 30px 100px;
    transform: translateY(-200%);
    transition: all 0.2s ease-in;
}

.global-list .wrapper {
    width: 915px;
    max-width: 100%;
    margin: 0 auto;
}

.global-list a {
    font-size: 18px;
    line-height: 25.2px;
    color: rgba(165, 166, 166, 1);
}

.global-list a:hover {
    color: var(--accent);
}

.global-list li + li {
    margin-top: 6px;
}

.global-list .col-6 .row {
    width: 100%;
}

.active-location .global-list {
    transform: translateY(0%);
}

.active-location .top-bar {
    color: var(--text-light);
}

.global-lang-wrapper {
    position: relative;
    z-index: 2;
}

.top-menu {
    position: relative;
    z-index: 2;
    gap: 20px;
}

body.active-location .global-lang-wrapper .icon svg path,
body.active-location .global-lang-wrapper .icon svg rect {
    stroke: var(--text-light);
}

body.active-location .header .carret svg path {
    stroke: var(--text-light);
}

body.active-location .lang-wrapper a {
    color: var(--text-light);
}

.active-location .global-lang-wrapper .carret svg {
    transform: rotate(180deg);
}

.company-values {
    padding: 71px 0px 60px;
}

.company-values .block-label {
    padding-left: 42px;
    color: var(--text);
    padding-bottom: 24px;
}

.company-values .title-content .title {
    font-size: 45px;
    line-height: 49.5px;
    font-weight: 300;
    font-family: var(--font-family-light);
}

.inner-page-hero .wrapper {
    padding: 68px 44px 68px 44px;
    color: var(--text-light);
    min-height: 313px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-size: cover;
}

.inner-page-hero .wrapper.colored {
    background: linear-gradient(90deg, #002e2d 0%, #00ada3 100%);
}

.inner-page-hero h1 {
    font-family: var(--font-family-light);
    font-size: 45px;
    line-height: 49.5px;
    max-width: 886px;
}

.inner-page-hero p {
    margin-top: 15px;
    max-width: 550px;
}

.inner-page-hero h2 {
    font-size: 25px;
    line-height: 34.6px;
}

.inner-page-hero .more-text {
    text-align: center;
}

.inner-page-hero .btn {
    margin-top: 22px;
}

.ingredient-list {
    padding: 107px 0px 60px;
}

.ingredient-list h3 {
    font-family: var(--font-family-light);
    font-weight: 300;
    color: #006f69;
    font-size: 68px;
    line-height: 74.8px;
    padding: 0px 41px;
    margin-bottom: 34px;
}

.search-icon-wrapper {
    margin: 0px 41px;
}

.item-search-wrapper .ingredient-search,
.item-search-wrapper .search-field {
    width: 100%;
    max-width: 466px;
    background: transparent;
    border-radius: 25px;
    border: 1px solid #006f69;
    color: #4d6d6c;
    font-size: 18px;
    height: 51px;
    line-height: 51px;
    padding: 0px 20px 0px 60px;
}

.search-icon-wrapper::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 50%;
    background: url(../images/input-search.svg);
    background-size: 16.38px 16.39px;
    width: 16.38px;
    height: 16.39px;
    margin-top: -8.2px;
}

.ingredient-search::-webkit-input-placeholder,
.search-field::-webkit-input-placeholder {
    color: rgba(0, 46, 45, 0.5);
}

.ingredient-search::-moz-placeholder,
.search-field::-moz-placeholder {
    color: rgba(0, 46, 45, 0.5);
}

.ingredient-search:-ms-input-placeholder,
.search-field:-ms-input-placeholder {
    color: rgba(0, 46, 45, 0.5);
}

.ingredient-search::-ms-input-placeholder,
.search-field::-ms-input-placeholder {
    color: rgba(0, 46, 45, 0.5);
}

.ingredient-results-list {
    margin-top: 33px;
}

.ingredient-list .block-item {
    border-top: 1px solid #006f69;
    padding: 24px 53px 26px 41px;
    overflow: hidden;
}

.ingredient-list .block-item:last-child {
    border-bottom: 1px solid #006f69;
}

.ingredient-list .block-header .title {
    font-size: 26px;
    line-height: 31.2px;
}

.ingredient-list .block-header .subtext {
    color: rgba(125, 137, 155, 1);
    font-size: 16px;
    line-height: 22.4px;
    margin-top: 4px;
    display: none;
}

.ingredient-list .block-item.active .block-header .subtext {
    display: block;
}

.ingredient-list .block-header {
    cursor: pointer;
}

.ingredient-list .block-header svg {
    margin-top: 15px;
    min-width: 27px;
}

.ingredient-list .block-item.active svg {
    transform: rotate(180deg);
}

.ingredient-list .block-content {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transform: translateY(-20%);
    transition: all 0.2s ease-out;
}

.ingredient-list .column-name {
    font-size: 16px;
    line-height: 22.4px;
    margin-bottom: 10px;
    color: #7d899b;
}

.ingredient-list .column-text {
    font-size: 18px;
    line-height: 25.2px;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ingredient-list .block-item.active .block-content {
    padding-top: 48px;
    height: auto;
    padding-bottom: 18px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
}

.ingredient-list .block-content .row {
    --bs-gutter-x: 55px;
}

.ingredient-list img {
    max-height: 114px;
    margin-top: -24px;
}

.highlight {
    background-color: var(--accent);
    color: var(--text-light);
}

.ingredient-list + .ingredient-list {
    padding-top: 76px;
}

.ingredient-list:last-child {
    padding-bottom: 103px;
}

.page-template-archive .inner-page-hero {
    padding-bottom: 30px;
}

.page-template-archive .inner-page-hero .wrapper,
.page-template-page-stock-news .inner-page-hero .wrapper {
    min-height: auto;
    padding: 38px 44px 41px 44px;
}

.page-template-archive .inner-page-hero h1,
.page-template-page-stock-news .inner-page-hero h1 {
    max-width: 453px;
    font-size: 68px;
    line-height: 74.8px;
}

.featured-post {
    padding: 7px 0px 80px;
}

.featured-post h2 {
    font-size: 36px;
    line-height: 39.6px;
    font-weight: 300;
    font-family: var(--font-family-light);
    margin-bottom: 4px;
}

.featured-post p {
    font-weight: 300;
    font-family: var(--font-family-light);
}

.featured-post .content {
    padding: 36px 0px 0px 43px;
}

.featured-post .post-title {
    padding-bottom: 49px;
}

.featured-post .btn {
    margin-top: 50px;
}

.featured-post .row {
    --bs-gutter-x: 160px;
}

.featured-post .col-5 {
    padding-right: 20px;
}

.featured-post .postFeaturedSlider .item {
    border-radius: 30px;
}

.featured-post .slider-col .item {
    height: 513px;
    background-size: cover;
}

.featured-post .swiper-pagination {
    position: relative;
    top: 0px;
    left: 0px;
    text-align: left;
    margin-top: 63px;
    margin-left: 7px;
    display: flex;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    border: 1px solid #00ada3;
    background: transparent;
    opacity: 1;
    margin: 0px !important;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 14px !important;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background: #00ada3;
}

.featured-post .item {
    width: 100%;
    height: 513px;
    background-size: cover;
}

.blog .item-search-wrapper {
    margin: 0px 0px 20px;
}

.blog .item-search-wrapper .search-field {
    max-width: 100%;
}

.tags input {
    display: none;
}

.tags .col-2 {
    margin-bottom: 10px;
}

.tags {
    --bs-gutter-x: 15px;
    padding-bottom: 64px;
}

.tag-filter {
    border: 1px solid #006f69;
    color: #006f69;
    font-size: 18px;
    padding: 14px 14px 14px;
    border-radius: 25px;
    cursor: pointer;
    display: block;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
    background: transparent;
}

.blog {
    padding-bottom: 60px;
}

#load-more {
    border-radius: 25px !important;
}

.tag-filter:hover,
.tag-filter.active {
    background: #006f69;
    border-color: #006f69;
    color: var(--text-light);
}

.product-list .item .title {
    font-size: 25px;
    line-height: 34.6px;
    width: 50%;
    margin-top: 20px;
    min-height: 70px;
    font-family: var(--font-family);
}

.product-list .item .title a {
    color: inherit;
}

.product-list .item .subtitle {
    font-size: 13px;
    line-height: 18.2px;
    text-align: center;
    color: #97a5b9;
    padding: 0px 30px;
    margin-top: 6px;
}

.product-list .item picture {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-list .item img {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
    padding: 20px;
}

.product-list .img-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 29px 20px 22px;
}

.product-list .term {
    font-size: 18px;
    line-height: 21.78px;
    margin-top: 6px;
}

.products .product-filter {
    padding: 57px 40px 60px;
}

.products .product-filter .search-icon-wrapper {
    margin: 0px 0px 45px;
}

.products .product-item {
    padding-bottom: 60px;
}

.products .product-list {
    padding: 0px 40px;
}

.filter-item {
    width: 100%;
    max-width: 466px;
}

.filter-item label {
    display: block;
    padding: 0px 0px 11px 27px;
    font-size: 16px;
    line-height: 22.4px;
}

.filter-item {
    margin-right: 18px;
}

.filter-item select {
    border-radius: 25px;
    border: 1px solid #006f69;
    background-color: transparent;
    height: 51px;
    line-height: 51px;
    padding: 0px 50px 0px 23px;
    color: rgba(0, 46, 45, 0.5);
    font-size: 18px;
    width: 100%;
}

body:not(.home) main {
    background: #fff;
    position: relative;
}

body:not(.home) main::before {
    content: "";
    width: 100%;
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    height: 200px;
    position: absolute;
    left: 0px;
    right: 0px;
    top: -200px;
}

body:not(.home) main::after {
    content: "";
    width: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    height: 200px;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -200px;
}

.post {
    padding-bottom: 81px;
}

.post .img {
    border-radius: 20px;
    overflow: hidden;
    height: 266px;
    background-size: cover;
}

.post .img img {
    display: none;
}

.post .wrapper {
    color: var(--text);
}

.post .date {
    padding: 14px 0px 0px 0px;
    font-size: 16px;
    line-height: 22.4px;
}

.post .title {
    font-size: 26px;
    line-height: 31.2px;
    font-weight: 300;
    font-family: var(--font-family-light);
    padding-top: 9px;
}

.post .content {
    padding: 0px 11px;
}

.post .more,
.half-content-list .more {
    border-radius: 25px;
    height: 34px;
    line-height: 34px;
    padding: 0px 16px;
    border: 1px solid #006f69;
    color: #4d6d6c;
    margin-top: 11px;
    font-size: 16px;
}

.post .more svg,
.half-content-list .more svg {
    margin-left: 9px;
}

.post .more:hover,
.half-content-list .more:hover {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--text-light);
}

.post .more:hover svg path,
.half-content-list .more:hover svg path {
    stroke: var(--text-light);
}

.mobile-menu-open .mobile-menu .nav {
    display: block;
    z-index: 99;
}

.mobile-menu-open .main-bar {
    background: rgba(253, 254, 254, 0.9);
}

.mobile-menu .navigation,
.mobile-menu .main-navigation {
    flex-direction: column;
}

.team {
    padding: 85px 0px 100px;
}

.team .item {
    padding: 0px 36px 71px;
}

.team img {
    border-radius: 25px;
    margin-bottom: 48px;
}

.team h4 {
    margin-bottom: 84px;
    padding: 0px 38px;
}

.team h5 {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 31.2px;
    font-family: var(--font-family);
}

.team .position {
    font-size: 23px;
    line-height: 27.6px;
    margin-bottom: 31px;
    font-family: var(--font-family-light);
}

.team-list {
    padding: 0px 66px;
}

.council {
    padding: 50px 0px 0px;
}

.council h4 {
    margin-bottom: 72px;
}

.list-wrapper {
    border-top: 1px solid var(--text);
}

.council-list {
    border-bottom: 1px solid var(--text);
    padding: 22px 106px 20px;
}

.council-list-wrapper {
    padding: 0px 38px;
}

.block-slider h2 {
    margin-bottom: 67px;
}

.block-slider {
    padding: 72px 0px 86px;
}

.block-slider .wrap {
    background: #dce6f0;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.block-slider .intro-content {
    max-width: 567px;
}

.block-slider .content {
    padding: 39px 34px 45px 35px;
    min-height: 50px;
}

.block-slider .content .line {
    border-radius: 4px;
    height: 8px;
    width: 127px;
    margin-bottom: 21px;
}

.block-slider .img {
    height: 272px;
    background-size: cover;
}

.block-slider .btn {
    height: 36px;
    line-height: 36px;
    margin-top: 10px;
    font-size: 18px;
}

.block-slider h3 {
    font-size: 32px;
    line-height: 35.2px;
    font-weight: 300;
    margin-bottom: 17px;
}

.block-slider .swiper-slide {
    height: auto;
}

.mySwiper .block-slider-btn {
    cursor: pointer;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.mySwiper .btn-wrapper {
    position: relative;
}

.mySwiper .block-slider-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.mySwiper .block-slider-next {
    background-color: white;
    z-index: 2;
}

/*.mySwiper .block-slider-next.swiper-button-disabled {
    transform: rotateY(180deg);
    z-index: -1;
}*/

.mySwiper .block-slider-prev,
.simpleSlider .block-slider-prev {
    z-index: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.block-slider .btn-wrapper {
    margin-top: 42px;
}

.block-slider {
    overflow: hidden;
}

.block-slider .mySwiper {
    overflow: visible;
}

.simple-content {
    padding: 30px 0px 0px;
}

.simple-content .content {
    max-width: 474px;
    margin: 30px 0px 0px 44px;
}

.simple-content .content p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
}

.card-block-4 .item {
    padding: 50px 33px 60px 51px;
}

.card-block-4 .item p {
    font-weight: 400;
}

.reporting {
    padding: 68px 0px 30px;
}

.reporting .card .item {
    background: rgba(220, 230, 240, 1);
    padding: 37px 60px 32px 46px;
}

.reporting .card .item + .item {
    margin-top: 10px;
}

.reporting .card h3 {
    font-size: 46px;
    line-height: 50.6px;
    margin-bottom: 14px;
}

.reporting .card p {
    font-size: 16px;
    line-height: 22.4px;
}

.reporting .card {
    padding-top: 27px;
}

.reporting .content p {
    margin-bottom: 25px;
    max-width: 492px;
}

.reporting p a {
    color: var(--text);
    text-decoration: underline;
}

.reporting h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 26px;
}

.reporting .block-label {
    padding-bottom: 47px;
}

.reporting .full-height .item {
    height: 100%;
}

.reporting .card p + p {
    margin-top: 20px;
}

.files-dwl {
    padding: 79px 0px 80px;
}

.files-dwl .content p {
    max-width: 475px;
}

.files-dwl h2 {
    margin-bottom: 35px;
    font-size: 54px;
    line-height: 59.4px;
}

.files-dwl h3 {
    font-size: 24px;
    line-height: 26.4px;
    margin-bottom: 9px;
}

.files-dwl p + h3 {
    padding-top: 40px;
}

.files-dwl p a {
    color: rgba(104, 102, 201, 1);
    text-decoration: underline;
}

.files-dwl p a:hover {
    text-decoration: none;
}

.file-list .item {
    background: rgba(220, 230, 240, 1);
    border-radius: 30px;
    padding: 36px 33px 101px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.file-list .item::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-image: url(../images/dwl-el.png);
    background-color: #fff;
    background-size: 84px 84px;
    width: 84px;
    height: 84px;
    -webkit-border-top-left-radius: 30px;
    -moz-border-radius-topleft: 30px;
    border-top-left-radius: 30px;
}

.file-list .item p {
    border-top: 1px solid rgba(125, 137, 155, 1);
    padding: 17px 0px 24px;
}

.file-list {
    padding: 100px 35px 0px;
}

.dwl-btn {
    font-size: 20px;
    color: rgba(104, 102, 201, 1);
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(125, 137, 155, 1);
    margin-top: auto;
    padding-top: 25px;
}

.dwl-btn:hover {
    color: var(--accent);
}

.dwl-btn svg {
    margin-left: 12px;
}

.member-contact-info {
    padding: 69px 0px 65px;
}

.member-contact-info .wrapper {
    padding: 47px 46px 52px;
    background: linear-gradient(90deg, #7be1d4 0%, #ffc814 100%);
}

.member-contact-info h3 {
    font-size: 24px;
    line-height: 26.4px;
    margin-bottom: 18px;
    min-height: 52px;
    font-family: var(--font-family);
}

.member-contact-info .small-wrap {
    padding: 55px 20px 0px 20px;
}

.member-contact-info p {
    font-size: 16px;
    line-height: 22.4px;
}

.member-contact-info .img {
    max-width: 20%;
}

.member-contact-info p a {
    color: inherit;
}

.member-contact-info p a:hover {
    text-decoration: underline;
}

/*.post-wrapper {
padding: 60px 0px 60px;
}

.post-wrapper img {
width: 100%;
margin-bottom: 15px;
}

.post-wrapper h1 {
font-size: 68px;
line-height: 74.8px;
margin-bottom: 20px;
}*/

.hero.full-bg {
    background-size: cover;
    padding-top: 213px;
    padding-bottom: 130px;
}

.page-slug-working-at-olpha .top-space,
.page-slug-pharmaceutical-out-licensing .top-space,
.page-slug-product-governance .top-space {
    padding-top: 0px;
    display: none;
}

.hero.full-bg .title {
    font-size: 45px;
    line-height: 49.5px;
}

.hero.full-bg .breadcrumb-wrapper a,
.hero.full-bg .breadcrumb-wrapper,
.hero.video .breadcrumb-wrapper a,
.hero.video .breadcrumb-wrapper {
    color: var(--text-light);
}

.hero.full-bg .card {
    margin-top: 72px;
    padding: 57px 41px 51px;
}

.hero.full-bg .btn {
    margin-top: 17px;
}

.page-slug-working-at-olpha .olpha-portfolio .col-6 {
    width: 100%;
}

.page-slug-working-at-olpha .cards-light .col-4:nth-child(3n) .item {
    background: linear-gradient(90deg, rgba(0, 147, 139, 1) 0%, rgba(125, 123, 230, 1) 100%);
}

.page-slug-working-at-olpha .olpha-portfolio {
    padding: 106px 0px 40px;
}

.page-slug-working-at-olpha .olpha-portfolio .content {
    margin-bottom: 59px;
}

.page-slug-working-at-olpha .cards .number {
    font-size: 68px;
    line-height: 74.8px;
}

.page-slug-working-at-olpha .cards-light .subtext {
    font-size: 23px;
    line-height: 32.2px;
    margin-bottom: 0px;
}

.page-slug-working-at-olpha .cards .item {
    align-items: center;
    padding: 32px 37px 32px 45px;
}

.page-slug-working-at-olpha .block-slider h2 {
    font-size: 54px;
    line-height: 59.4px;
    padding-left: 34px;
    margin-bottom: 21px;
}

.page-slug-working-at-olpha .block-slider .intro-content {
    padding-left: 34px;
}

.page-slug-working-at-olpha .block-slider .swiper {
    padding-top: 77px;
}

.page-slug-working-at-olpha .block-slider .img {
    height: 396px;
}

.page-slug-working-at-olpha .block-slider .content {
    padding: 30px 34px 27px 35px;
}

.page-slug-working-at-olpha .block-slider .content p {
    max-width: 80%;
    min-height: 50px;
}

.page-slug-working-at-olpha .block-slider h3 {
    margin-bottom: 3px;
}

.half-content-list {
    padding: 22px 0px 60px;
}

.half-content-list h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 76px;
}

.half-content-list .item + .item {
    padding-top: 25px;
}

.half-content-list .wrapper {
    padding: 0px 40px;
}

.half-content-list .item h3 {
    font-size: 36px;
    line-height: 39.6px;
    margin-bottom: 35px;
    color: #00938b;
}

.half-content-list .item .more {
    margin-top: 32px;
}

.half-content-list .item .img {
    height: 365px;
    border-radius: 30px;
    background-size: cover;
}

.half-content-list .item p,
.half-content-list .item h3 {
    max-width: 515px;
}

.gallery-wrapper {
    margin-top: 52px;
    padding: 73px 0px 86px;
    background: rgb(123, 229, 216);
    background: linear-gradient(
        137deg,
        rgba(255, 108, 41, 1) 0%,
        rgba(152, 202, 177, 1) 47%,
        rgba(123, 229, 216, 1) 100%
    );
}

.gallery-wrapper h2 {
    color: var(--text-light);
    padding: 0px 39px 35px;
    font-size: 54px;
    line-height: 59.4px;
}

.masonry {
    column-count: 3;
    column-gap: 20px;
}

.masonry .gallery-item {
    padding-bottom: 20px;
}

.masonry .gallery-item img {
    border-radius: 30px;
}

.awards {
    padding: 81px 0px 23px;
}

.awards h2 {
    padding: 0px 39px 35px;
    font-size: 54px;
    line-height: 59.4px;
}

.awards img {
    max-width: 184px;
    margin: 0 auto;
}

.awards .list {
    text-align: center;
}

.awards p {
    /*    margin-top: auto;*/
    max-width: 180px;
    padding: 0px 20px;
}

.awards .img + .img {
    margin-top: 8px;
}

.awards .logos {
    margin-top: auto;
    margin-bottom: 15px;
}

.colored-orange-promo {
    padding: 60px 0px 108px;
    font-weight: 300;
    font-family: var(--font-family-light);
}

.colored-orange-promo .wrapper {
    padding: 50px 41px 45px;
    background: linear-gradient(306.48deg, #7BE5D8 4.04%, #98CAB1 20.11%, #FF6C29 95.96%);
}

.colored-orange-promo h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 19px;
    color: var(--text-light);
}

.single-hero .wrapper {
    padding: 68px 44px 68px 44px;
    color: var(--text-light);
    min-height: 419px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.single-hero .wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: linear-gradient(90deg, rgba(0, 46, 45, 0.8) 0%, rgba(0, 173, 163, 0) 100%);
}

.single-hero h1 {
    font-family: var(--font-family-light);
    font-size: 68px;
    line-height: 74.9px;
}

.single-hero {
    padding-bottom: 45px;
}

.single-hero .content {
    position: relative;
    z-index: 1;
    max-width: 50%;
}

.simple-content-block {
    padding: 30px 0px 23px;
}

.simple-content-block h2 {
    font-size: 45px;
    line-height: 49.5px;
    color: #00938b;
    margin-bottom: 40px;
}

.simple-content-block ul {
    list-style: disc;
}

.simple-content-block ul,
.simple-content-block ol,
.simple-content-block p {
    max-width: 893px;
}

.simple-content-block ul,
.simple-content-block ol {
    font-size: 18px;
    line-height: 25.2px;
    padding-left: 31px;
}

.simple-content-block .wrapper {
    padding: 0px 40px;
}

.icon-list {
    padding: 110px 0px 26px;
}

.icon-list .item {
    max-width: 188px;
    text-align: center;
}

.icon-list .item img {
    display: block;
    margin: 0 auto;
}

.icon-list .img {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.icon-list h3 {
    font-size: 26px;
    line-height: 31.2px;
    margin-bottom: 23px;
}

.icon-list .list {
    padding: 0px 100px;
}

.single-vacancies .colored-promo {
    padding: 60px 0px 154px;
}

.single-vacancies .colored-promo .wrapper {
    padding: 147px 133px 122px;
}

.single-vacancies .colored-promo .wrapper h4 {
    margin-bottom: 19px;
}

.single-vacancies .colored-promo .wrapper .subtitle p {
    margin-bottom: 0px;
    font-size: 26px;
    line-height: 31.2px;
    margin-bottom: 41px;
}

.single-vacancies .olpha-plan {
    margin-bottom: 67px;
}

.single-vacancies .olpha-plan .title-wrapper {
    max-width: 574px;
    padding: 23px 27px 12px;
}

.single-vacancies .olpha-plan-list .item {
    min-height: 319px;
}

.single-vacancies .olpha-plan-list .item p {
    font-size: 18px;
    line-height: 24.78px;
}

.single-vacancies .olpha-plan-list h4 {
    margin-bottom: 21px;
}

.page-slug-open-vacancies .page-hero .wrapper {
    width: 53%;
}

.page-slug-open-vacancies .page-hero p {
    max-width: 566px;
    margin-top: 24px;
}

.page-hero .card {
    padding: 109px 50px 101px 50px;
    min-height: auto;
}

.vacancy-list {
    padding: 43px 0px 121px;
}

.vacancy-list h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 22px;
}

.vacancy-list .wrapper {
    padding-left: 35px;
}

.open-vacancies h3 {
    font-size: 36px;
    line-height: 39.6px;
    max-width: 80%;
}

.open-vacancies {
    padding-top: 39px;
}

.open-vacancies .item {
    padding: 21px 15px 19px 0px;
    border-top: 1px solid #3b5a5a;
}

.open-vacancies .item:last-child {
    border-bottom: 1px solid #3b5a5a;
}

.open-vacancies .btn {
    background-color: rgba(0, 173, 163, 0.2);
    color: rgba(59, 90, 90, 1);
    font-size: 18px;
    padding: 0px 41px;
}

.open-vacancies .btn svg path {
    stroke: rgba(59, 90, 90, 1);
}

.page-slug-open-vacancies .colored-promo .wrapper {
    padding: 129px 50px 113px;
}

.page-slug-open-vacancies .colored-promo .subtitle {
    margin-top: 31px;
    margin-bottom: 0px;
}

.page-slug-open-vacancies .colored-promo .subtitle p {
    font-size: 26px;
    line-height: 38.48px;
}

.contact-list {
    background: rgb(123, 229, 216);
    background: linear-gradient(-137deg, #7be5d8 0%, #98cab1 17%, #ff6c29 100%);
    padding: 134px 0px 111px;
    color: #fdf9f3;
}

.contact-list .item {
    border: 1px solid #fdf9f3;
    border-radius: 40px;
    padding: 86px 68px 65px 68px;
    margin-bottom: 20px;
}

.contact-list .row {
    --bs-gutter-x: 20px;
}

.contact-list .responsible {
    font-size: 32px;
    line-height: 35.2px;
    margin-bottom: 54px;
}

.contact-list .name {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 16px;
}

.contact-list p {
    max-width: 357px;
}

.contact-list .email {
    margin-top: 25px;
    color: inherit;
    font-weight: 400;
    display: inline-block;
}

.page-slug-contacts .inner-page-hero h1 {
    font-size: 68px;
    line-height: 74.8px;
}

.page-slug-contacts .inner-page-hero .wrapper {
    padding: 38px 44px 25px 44px;
    min-height: auto;
}

.contact-map {
    padding: 117px 0px 103px;
}

.contact-map h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 62px;
    padding-left: 36px;
}

.contact-map .text {
    padding: 55px 30px 30px 104px;
}

.contact-map #map {
    border-radius: 30px;
    width: 100%;
}

.contact-map .list .item + .item {
    padding-top: 36px;
}

.contact-map .list .item {
    font-weight: 400;
    font-size: 18px;
}

.contact-map .list {
    padding-bottom: 52px;
}

.contact-map .text p {
    margin-bottom: 15px;
}

.contact-map .list .icon {
    width: 34px;
    margin-right: 20px;
}

.contact-map .list .item a {
    color: inherit;
}

.offices {
    padding: 205px 0px 178px;
}

.offices h2 {
    margin-bottom: 95px;
    font-size: 54px;
    line-height: 59.4px;
}

.offices.colored {
    background: rgb(123, 229, 216);
    background: linear-gradient(-137deg, #7be5d8 0%, #98cab1 17%, #ff6c29 100%);
    color: #fdf9f3;
    padding: 140px 0px 142px;
    margin-bottom: 183px;
}

.offices h3 {
    margin-bottom: 11px;
    font-size: 32px;
    line-height: 35.2px;
}

.offices .item + .item {
    padding-top: 75px;
}

.offices .item a {
    color: inherit;
    text-decoration: underline;
}

.offices .wrapper {
    padding: 0px 36px;
}

.page-slug-contract-manufacturing .page-hero .wrapper {
    max-width: 798px;
    width: 100%;
}

.page-slug-contract-manufacturing .page-hero .card {
    padding: 49px 50px 45px 40px;
}

.page-slug-contract-manufacturing .page-hero p {
    margin-top: 9px;
}

.page-slug-contract-manufacturing .half-content-list .row.item {
    align-items: center !important;
}

.icon-block {
    padding: 84px 0px 0px;
}

.icon-block h2 {
    font-size: 54px;
    line-height: 74.4px;
    margin-bottom: 61px;
}

.icon-block .items {
    padding-top: 39px;
}

.icon-block .item {
    text-align: center;
}

.icon-block .img {
    height: 72px;
    margin-bottom: 58px;
    display: flex;
    align-items: center;
}

.icon-block .subtext {
    padding: 0px 20px;
}

.simple-slider {
    padding: 134px 0px 50px;
    overflow: hidden;
}

.simple-slider h2 {
    color: #00938b;
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 26px;
}

.simple-slider .swiper {
    padding-top: 116px;
}

.simple-slider .wrap {
    height: 298px;
    border-radius: 40px;
    background: #dce6f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-slider .wrap h3 {
    font-size: 36px;
    line-height: 39.6px;
    text-align: center;
    max-width: 335px;
}

.simpleSlider {
    overflow: visible;
}

.simpleSlider .btn-wrapper {
    padding-top: 57px;
}

.block-slider-next,
.block-slider-prev {
    cursor: pointer;
}

.production-capacity {
    padding: 38px 0px 60px;
}

.production-capacity h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 76px;
}

.production-capacity .scales,
.title-content-button .products {
    padding: 30px 40px 0px;
    --bs-gutter-x: 50px;
}

.production-capacity h3,
.title-content-button h3 {
    font-size: 36px;
    line-height: 39.6px;
    margin-bottom: 56px;
}

.production-capacity .item,
.title-content-button .item {
    padding: 18px 0px 14px;
}

.production-capacity .item,
.title-content-button .item {
    border-bottom: 1px solid #000000;
}

.production-capacity .item:first-child,
.title-content-button .item:first-child {
    border-top: 1px solid #000000;
}

.error-page .error-text {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.error-page .error-text h1 {
    font-size: 11.25em;
    color: var(--text);
    line-height: 198px;
    margin-bottom: 0;
}

.error-page .error-text h2 {
    margin-bottom: 17px;
}

.error-page .error-text p {
    margin-bottom: 36px;
}

.contact-box {
    padding: 4px 0px 19px;
}

.contact-box .wrapper {
    width: 50%;
    padding: 23px 34px 23px;
    background: linear-gradient(90deg, #7be1d4 0%, #ffc814 100%);
}

.contact-box h2 {
    margin-bottom: 33px;
    font-size: 54px;
    line-height: 82px;
}

.contact-box h3 {
    font-size: 36px;
    line-height: 39.6px;
}

.contact-box .text {
    display: block;
    margin-top: 20px;
}

.contact-box a {
    color: inherit;
    text-decoration: underline;
}

.contact-box a:hover {
    color: var(--accent);
}

.contact-box p {
    font-size: 16px;
    line-height: 22.4px;
}

#map {
    height: 601px;
    width: 632px;
}

.achievements {
    padding: 112px 0px 129px;
}

.achievements h2 {
    font-size: 54px;
    line-height: 64.8px;
}

.achievements h3 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 20px;
}

.achievements .block-cards {
    margin-top: 58px;
}

.achievements .item {
    padding: 50px 33px 60px 34px;
    min-height: 285px;
}

.single-product .product-info {
    padding-top: 14px;
    position: relative;
    z-index: 10;
}

.single-product .product-info .img {
    background: #ffffff;
    border-radius: 35px;
    /*    height: 452px;*/
    /*    padding: 105px 50px 102px;*/
    padding: 50px 50px 50px;
    display: flex;
    align-items: center;
}

.single-product .product-info picture {
    /*    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;*/
}

.single-product .product-info .img img {
    /*    display: block;*/
    width: 100%;
    /*    height: auto;
    max-height: 100%;*/
}

.single-product .product-info .subtitle {
    color: #97a5b9;
    font-size: 13px;
    line-height: 18.2px;
    text-align: center;
    border: 1px solid #006f69;
    border-radius: 20px;
    padding: 20px 85px;
    text-align: center;
    text-transform: uppercase;
}

.single-product .text-wrapper {
    padding: 102px 0px 0px 86px;
}

.single-product .product-info h1 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 19px;
}

.single-product .product-info {
    position: relative;
}

.single-product .product-info::after {
    content: "";
    width: 100%;
    background: #fff;
    height: 200px;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.single-product .product-info::before {
    content: "";
    width: 100%;
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    height: 200px;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 200px;
}

.single-product .product-info .container {
    position: relative;
    z-index: 10;
}

.single-product .short-info p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 18px;
}

.link-btn svg {
    margin-left: 14px;
}

.single-product .link-btn {
    font-size: 16px;
    line-height: 22.4px;
    display: flex;
    align-items: center;
}

.single-product .link-btn:hover {
    text-decoration: underline;
}

.about-product {
    padding: 68px 0px 50px;
}

.about-product h2 {
    font-size: 36px;
    line-height: 39.6px;
    margin-bottom: 36px;
    min-height: 80px;
    display: flex;
    align-items: flex-end;
    max-width: 70%;
}

.about-product p {
    max-width: 80%;
}

.about-product .row {
    padding: 0px 70px;
}

.about-product .item {
    margin-bottom: 96px;
}

.attention {
    position: fixed;
    width: 840px;
    max-width: 100%;
    height: 358px;
    background: #00938b;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 20px;
    z-index: 9999;
    border-radius: 5px;
}

.attention .cancel {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #002e2d !important;
    font-size: 20px;
    width: 20px;
}

.attention .wrapper {
    display: flex;
}

.attention .content {
    flex: 1;
    padding: 50px 55px 50px;
}

.attention .info-video {
    width: 355px;
}

.attention h2 {
    font-size: 45px;
    line-height: 49.5px;
    color: #fdf9f3;
    max-width: 375px;
}

.attention .btn {
    position: absolute;
    bottom: 44px;
    left: 57px;
}

.hide-prescription-meds .prescription {
    display: none !important;
}

.prescription-info .item {
    border: 1px solid #00ada3;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 243px;
}

.prescription-info .item h3 {
    font-size: 26px;
    line-height: 36.4px;
    font-weight: 400;
    font-family: var(--font-family);
    margin-bottom: 25px;
}

.prescription-info .item h3 strong {
    font-weight: 400;
    color: var(--accent);
}

.pro-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 100000;
    background: rgba(18, 29, 28, 0.5);
}

.pro-overlay-open .pro-overlay {
    display: flex;
}

.no-prescription-medicine-product.pro-overlay-open.single .pro-overlay {
    display: none !important;
}

.pro-modal {
    width: 840px;
    max-width: 100%;
    padding: 73px 20px 78px;
    background: rgb(211, 206, 219);
    border-radius: 70px;
    color: #fdf9f3;
    background: linear-gradient(297.97deg, #7be5d8 2.1%, #ff6c29 96.96%);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: -webkit-transform 5s;
    transition: -webkit-transform 5s;
    transition: transform 5s;
    transition: transform 5s, -webkit-transform 5s;
    text-align: center;
}

.pro-modal .title {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 23px;
}

.pro-modal p {
    max-width: 482px;
    margin: 0 auto;
}

.pro-modal .divider {
    height: 1px;
    width: 654px;
    max-width: 100%;
    margin: 34px auto 46px;
    background: #fdf9f3;
}

.pro-modal .small-title {
    font-size: 26px;
    line-height: 36.4px;
    margin-bottom: 35px;
}

.pro-modal .btn {
    min-width: 210px;
    margin: 0px 7px;
}

.pro-modal .btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.pro-modal .btn-secondary:hover {
    border: 1px solid var(--primary-button-hover);
}

.area-list .title a {
    color: inherit;
}

.post-content iframe {
    max-width: 100%;
    height: auto;
}

/* .post-content p {
    word-break: break-all;
} */

.mySwiper.end-reached .block-slider-next,
.simpleSlider.end-reached .block-slider-next {
    display: none;
}

.mySwiper.end-reached .block-slider-prev,
.simpleSlider.end-reached .block-slider-prev {
    opacity: 1;
}

.gallery .gallery-item img {
    margin: 5px;
    border-radius: 15px;
    height: auto;
    width: 100%;
}

.gallery-wrapper .gallery .gallery-item img {
    margin: 0px;
}

.post-wrapper {
    overflow: hidden;
}

.page-slug-zasady-pouzivani-souboru-cookie main p {
    padding: 15px 0;
}

.page-slug-zasady-pouzivani-souboru-cookie main .title {
    padding-top: 40px;
}

.page-slug-zasady-pouzivani-souboru-cookie .single-page {
    padding: 0 20px;
}

.page-slug-zasady-pouzivani-souboru-cookie main .wp-block-table table {
    margin: 15px 0;
}

.force-hide {
    display: none !important;
}

.post-list h3 {
    font-size: 26px;
    line-height: 31.2px;
    font-weight: 400;
    margin-bottom: 0px;
}

.post-list a {
    color: inherit;
}

.post-list a:hover {
    color: var(--accent);
}

.post-list .category {
    margin-top: 60px;
}

.post-list h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 20px;
}

.post-list .block-item {
    border-top: 1px solid #006f69;
    padding: 15px 53px 17px 41px;
}

.post-list .block-item:last-child {
    border-bottom: 1px solid #006f69;
}

.post-list {
    padding: 60px 0px 60px;
}

body:not(.home) .hero.video {
    padding-top: 213px;
    padding-bottom: 63px;
}

body:not(.home) .hero.video .title {
    font-size: 45px;
    line-height: 49.5px;
}

body:not(.home) .hero.video p {
    font-size: 16px;
    line-height: 22.4px;
    max-width: 100%;
    margin-top: 12px;
}

body:not(.home) .hero.video .card {
    margin-top: 55px;
    padding: 53px 41px 50px;
}

body:not(.home) .hero.video .btn {
    margin-top: 22px;
}

.grey-blocks {
    padding: 64px 0px 30px;
}

.grey-blocks .card .item {
    background: rgba(220, 230, 240, 1);
    padding: 33px 38px 33px 38px;
    height: 100%;
    min-height: 205px;
}

.grey-blocks .card .col-md-12 {
    margin-bottom: 5px;
}

.grey-blocks .card h3 {
    font-size: 36px;
    line-height: 39.6px;
    margin-bottom: 25px;
}

.grey-blocks .card p {
    font-size: 16px;
    line-height: 22.4px;
}

.grey-blocks .card {
    --bs-gutter-x: 5px;
    padding: 33px 41px 10px;
}

.grey-blocks .content p {
    margin-bottom: 25px;
    max-width: 492px;
}

.grey-blocks p a {
    color: var(--text);
    text-decoration: underline;
}

.grey-blocks h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 26px;
    color: var(--accent);
}

.grey-blocks + .work-together-banner {
    padding-top: 154px;
}

.page-slug-pharmaceutical-out-licensing .work-together-banner .wrapper {
    background: linear-gradient(270deg, #75a5ec 0%, #00948d 100%);
    padding: 81px 99px 81px 72px;
    min-height: 548px;
    justify-content: flex-start;
}

.page-slug-pharmaceutical-out-licensing .work-together-banner .title {
    width: 45%;
    line-height: 59.4px;
}

.text-content {
    padding: 70px 0px 47px;
}

.text-content .wrap,
.title-content-button .wrap {
    padding-left: 44px;
}

.text-content p,
.title-content-button p {
    font-size: 20px;
    line-height: 28px;
    max-width: 474px;
}

.title-content-button {
    padding: 47px 0px 0px;
}

.title-content-button .btn {
    margin-top: 37px;
}

.title-content-button h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 14px;
}

.page-slug-pharmaceutical-out-licensing .work-together-banner .content-wrapper h4 {
    font-size: 26px;
    line-height: 31.2px;
    margin-top: -23px;
    margin-bottom: 25px;
}

.page-slug-pharmaceutical-out-licensing .work-together-banner .content-wrapper a,
.page-slug-pharmaceutical-out-licensing .work-together-banner .content-wrapper p {
    margin-bottom: 22px;
}

.structure {
    padding: 63px 0px 60px;
}

.structure .text {
    padding-left: 44px;
}

.structure h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 29px;
}

.structure .row-content {
    padding-top: 14px;
}

.structure p + p {
    padding-top: 24px;
}

.structure p {
    max-width: 492px;
}

.structure .item {
    padding: 37px 80px 38px 80px;
    background: rgba(151, 165, 185, 0.1);
}

.structure .item h3 {
    font-size: 36px;
    line-height: 39.6px;
}

.structure .item + .item {
    margin-top: 10px;
}

.structure .item:nth-child(1) {
    background: rgba(151, 165, 185, 1);
}

.structure .item:nth-child(2) {
    background: rgba(151, 165, 185, 0.7);
}

.structure .item:nth-child(3) {
    background: rgba(151, 165, 185, 0.5);
}

.structure .item:nth-child(4) {
    background: rgba(151, 165, 185, 0.3);
}

.colored-orange-promo-with-bg {
    padding: 50px 0px 119px;
    font-weight: 300;
    font-family: var(--font-family-light);
}

.colored-orange-promo-with-bg .wrapper {
    padding: 136px 41px 90px 118px;
    background-color: linear-gradient(
        137deg,
        rgba(255, 108, 41, 1) 0%,
        rgba(152, 202, 177, 1) 47%,
        rgba(123, 229, 216, 1) 100%
    );
    background-size: cover;
}

.colored-orange-promo-with-bg h2 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 13px;
    color: var(--text-light);
}

.colored-orange-promo-with-bg p {
    font-size: 18px;
    line-height: 25.2px;
    color: #ffffff;
}

.colored-orange-promo-with-bg .text-size {
    max-width: 320px;
}

.colored-orange-promo-with-bg .btn {
    margin-top: 30px;
    background-color: #fff;
}

.colored-orange-promo-with-bg .btn {
    color: #4d6d6c;
}

.colored-orange-promo-with-bg .btn:hover {
    background: var(--primary-button-hover);
    color: #ffffff;
}

.ethics {
    padding: 60px 0px 76px;
    background: linear-gradient(306.48deg, #7be5d8 4.04%, #98cab1 20.11%, #ff6c29 95.96%);
}

.ethics .block-label {
    color: #fff;
}

.ethics h2 {
    color: #fff;
    font-size: 68px;
    line-height: 74.8px;
    margin-bottom: 7px;
}

.ethics p {
    color: #fff;
    max-width: 529px;
}

.ethics ul {
    padding-top: 79px;
}

.ethics ul li:first-child {
    border-top: 1px solid #fff;
}

.ethics ul li {
    border-bottom: 1px solid #fff;
    padding: 60px 0px 57px;
    color: #fff;
    font-size: 36px;
    line-height: 39.6px;
    font-family: var(--font-family-light);
    font-weight: 300;
}

.block-icon-file-list {
    padding: 120px 0px 76px;
}

.block-icon-file-list h3 {
    font-size: 36px;
    line-height: 39.6px;
    margin-bottom: 19px;
}

.block-icon-file-list .item {
    background: rgba(220, 230, 240, 1);
    border-radius: 30px;
    padding: 50px 33px 24px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.block-icon-file-list .icon-wrapper {
    height: 36px;
    display: flex;
    align-items: center;
    margin-bottom: 19px;
}

.block-icon-file-list .icon-wrapper img {
    max-width: 36px;
}

.block-icon-file-list .file-list {
    padding: 0px;
}

.block-icon-file-list .text {
    max-width: 472px;
    padding-bottom: 56px;
}

.block-icon-file-list h2 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 20px;
}

.block-icon-file-list .file-list {
    max-width: 245px;
}

.block-icon-file-list .file-list .item {
    padding: 43px 33px 94px;
}

.block-icon-file-list .file-list h3 {
    margin-bottom: 10px;
}

.block-icon-file-list .dwl-btn {
    padding-top: 16px;
    width: 100%;
}

.page-slug-product-governance .grey-blocks .content .title {
    color: #3b5a5a;
}

.page-slug-product-governance .grey-blocks {
    padding: 113px 0px 30px;
}

.grey-blocks .block-label {
    padding-bottom: 43px;
}

.page-slug-product-governance .grey-blocks .card {
    padding: 56px 0px 10px;
}

.page-slug-product-governance .grey-blocks .card .item {
    min-height: 275px;
}

.pink-bg-promo {
    padding: 0px 0px 114px;
    font-weight: 300;
    font-family: var(--font-family-light);
    color: #fff;
}

.pink-bg-promo .wrapper {
    padding: 105px 44px 55px;
    background: linear-gradient(270deg, #74a1e8 0%, #7d7be6 100%);
}

.pink-bg-promo .subtitle {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 41px;
}

.pink-bg-promo p {
    max-width: 806px;
}

.pink-bg-promo-block {
    padding: 133px 0px 14px;
}

.pink-bg-promo h4 {
    margin-bottom: 21px;
}

.half-content-promo {
    padding: 50px 0px 64px;
}

.half-content-promo .wrapper {
    padding: 23px 34px 23px;
    background: linear-gradient(90deg, #7be1d4 0%, #ffc814 100%);
}

.half-content-promo h2 {
    margin-bottom: 34px;
    font-size: 54px;
    line-height: 59.4px;
}

.half-content-promo h3 {
    font-size: 36px;
    line-height: 39.6px;
}

.half-content-promo a {
    color: inherit;
    text-decoration: underline;
}

.half-content-promo a:hover {
    color: var(--accent);
}

.half-content-promo p {
    font-size: 18px;
    line-height: 25.2px;
    max-width: 518px;
}

.half-content-promo .row {
    padding: 0px 36px;
}

.half-content-promo .wrapper p {
    font-size: 16px;
    line-height: 22.4px;
}

.half-content-promo .wrapper p + p {
    padding-top: 20px;
}

.environmental-targets {
    padding: 109px 0px 60px;
}

.environmental-targets .text {
    text-align: center;
}

.environmental-targets h2 {
    color: var(--accent);
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 40px;
}

.environmental-targets .text {
    width: 682px;
    max-width: 100%;
    margin: 0 auto;
    padding: 22px 0px 61px;
}

.environmental-targets .text p {
    margin-bottom: 24px;
}

.page-slug-environment .inner-page-hero h1,
.page-slug-sustainability .inner-page-hero h1 {
    font-size: 68px;
    line-height: 74.8px;
}

.page-slug-environment .inner-page-hero p,
.page-slug-sustainability .inner-page-hero p {
    font-size: 16px;
    line-height: 22.4px;
    margin-top: 24px;
}

.environmental-targets .list {
    padding: 0px 160px 0px;
    --bs-gutter-x: 20px;
}

.environmental-targets .list .col-sm-12 {
    padding-bottom: 20px;
}

.environmental-targets .list .item {
    background: rgba(220, 230, 240, 1);
    border-radius: 20px;
    min-height: 319px;
    padding: 61px 16px 20px;
}

.environmental-targets .list h3 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 17px;
}

.recent-actions {
    padding: 31px 0px 93px;
}

.recent-actions .bg-wrapper {
    background-size: cover;
    color: #fff;
    padding: 106px 0px 194px;
}

.recent-actions .bg-wrapper h2 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 30px;
}

.recent-actions .bg-wrapper .text p {
    max-width: 708px;
}

.recent-actions .bg-wrapper .list {
    padding-top: 75px;
    --bs-gutter-x: 25px;
}

.recent-actions .bg-wrapper .item {
    background: #4d6d6c4d;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 266px;
    padding: 20px 30px;
    width: 100%;
}

.recent-actions .bg-wrapper h3 {
    font-size: 36px;
    line-height: 39.6px;
    margin-bottom: 10px;
}

.centered-icon-title {
    padding: 93px 0px 110px;
}

.centered-icon-title h2 {
    text-align: center;
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 20px;
}

.centered-icon-title .row {
    justify-content: center;
}

.centered-icon-title .list {
    padding-top: 85px;
}

.centered-icon-title img {
    max-height: 110px;
    margin-bottom: 27px;
}

.centered-icon-title .list p {
    margin-bottom: 25px;
}

.more-info {
    border-top: 1px solid #006f69;
}

.more-info p {
    margin-bottom: 20px;
}

.page-template .medicine-message,
.archive .medicine-message {
    position: fixed;
    width: 100%;
    bottom: 0px;
    z-index: 9;
    left: 0px;
    right: 0px;
    box-shadow: 0px 4px 34px 0px #7d7be61a;
    padding: 15px 0px;
    text-align: center;
    background: #fff;
    text-transform: uppercase;
}

.medicine-message p {
    font-size: 16px;
}

.medicine-message h6 {
    font-weight: 600;
    margin-top: 10px;
}

.title-content-colored-grid-info {
    padding: 108px 0px 60px;
}

.title-content-colored-grid-info .text h2 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 42px;
}

.title-content-colored-grid-info p {
    max-width: 567px;
}

.cards-dark-green .item {
    background: rgba(0, 147, 139, 1);
    color: #fff;
}

.cards-dark-green .col-4:nth-child(3n) .item {
    background: linear-gradient(90deg, #00938b 0%, #3b5a5a 100%);
    flex-direction: column;
    align-items: start;
}

.title-content-colored-grid-info .text {
    padding: 0px 34px;
}

.title-content-colored-grid-info .list {
    padding-top: 74px;
}

.title-content-colored-grid-info .cards .item p,
.page-slug-sustainability .title-content-colored-grid-info .item .subtext,
.page-slug-sustainability .title-content-colored-grid-info .item .first_subtext {
    font-size: 23px;
    line-height: 30.13px;
    font-weight: 300;
    font-family: var(--font-family-light);
}

.title-content-colored-grid-info .cards .item {
    padding: 25px 55px 25px 60px;
}

.title-content-colored-grid-info .cards h2 {
    margin-right: 12px;
}

.page-slug-sustainability .title-content-colored-grid-info .item .number {
    font-size: 68px;
    line-height: 75px;
}

#posts-container .col-4:first-child {
    display: none !important;
}

.colored-grid-info {
    padding: 46px 0px 44px;
}

.colored-grid-info .colored {
    background: linear-gradient(270deg, #00ada3 0%, #002e2d 100%);
    padding: 121px 0px 136px;
    color: #fff;
}

.colored-grid-info h2 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 5px;
}

.colored-grid-info .article .title {
    color: #00948d;
}

.page-slug-social-responsibility .grey-blocks .card,
.page-slug-sustainability .grey-blocks .card {
    padding: 0px;
}

.page-slug-social-responsibility .grey-blocks .card .item,
.page-slug-sustainability .grey-blocks .card .item {
    padding: 40px 38px 62px 38px;
}

.page-slug-social-responsibility .grey-blocks .card p,
.page-slug-sustainability .grey-blocks .card p {
    font-size: 18px;
    line-height: 25.2px;
}

.page-slug-social-responsibility .gallery-wrapper,
.page-slug-sustainability .gallery-wrapper {
    margin-top: 85px;
}

.logo-list {
    padding: 143px 0px 53px;
}

.logo-list h2 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 40px;
}

.logo-list .text {
    padding: 0px 34px;
}

.logo-list .text p {
    max-width: 567px;
}

.logo-list .logos {
    padding: 104px 32px 0px;
}

.logo-list .img picture {
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 56px;
}

.logo-list .logos {
    text-align: center;
}

.logo-list .logos img {
    max-height: 100%;
    max-width: 157px;
}

.page-slug-social-responsibility .half-content-list .wrapper,
.page-slug-sustainability .half-content-list .wrapper {
    padding: 0px;
}

.page-slug-social-responsibility .half-content-list .item .col-6:first-child,
.page-slug-sustainability .half-content-list .item .col-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.page-slug-social-responsibility .half-content-list .item p,
.page-slug-social-responsibility .half-content-list .item h3,
.page-slug-sustainability .half-content-list .item p,
.page-slug-sustainability .half-content-list .item h3 {
    max-width: 509px;
}

.blue-bg-promo-block {
    padding: 66px 0px 21px;
}

.blue-bg-promo-block .wrapper {
    padding: 102px 68px 101px;
    background: linear-gradient(270deg, #85caff 0%, #00ada3 100%);
}

.blue-bg-promo-block h2 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 41px;
}

.blue-bg-promo-block .text p {
    max-width: 567px;
}

.blue-bg-promo-block .text {
    padding: 29px 34px 0px;
}

.blue-bg-promo-block .subtitle {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 41px;
}

.blue-bg-promo-block p {
    max-width: 658px;
}

.blue-bg-promo {
    padding: 72px 0px 14px;
    color: #fff;
    font-weight: 300;
    font-family: var(--font-family-light);
}

.blue-bg-promo-block h4 {
    margin-bottom: 32px;
}

.page-slug-social-responsibility .simple-slider .wrap h3,
.page-slug-sustainability .simple-slider .wrap h3 {
    font-size: 26px;
    line-height: 31.2px;
}

.page-slug-rd-of-apis-and-intermediates .page-hero .wrapper,
.page-slug-research-development .page-hero .wrapper {
    max-width: 75%;
    width: 100%;
}

.page-slug-rd-of-apis-and-intermediates .page-hero .card,
.page-slug-research-development .page-hero .card {
    padding: 49px 50px 45px 40px;
    min-height: 485px;
}

.page-slug-rd-of-apis-and-intermediates .page-hero p,
.page-slug-research-development .page-hero p {
    margin-top: 9px;
    max-width: 590px;
}

.page-slug-rd-of-apis-and-intermediates .production-capacity,
.page-slug-research-development .production-capacity {
    padding: 77px 0px 60px;
}

.page-slug-rd-of-apis-and-intermediates .production-capacity h3,
.page-slug-research-development .production-capacity h3 {
    font-size: 54px;
    line-height: 59.4px;
}

.page-slug-rd-of-apis-and-intermediates .production-capacity .scales,
.page-slug-research-development .production-capacity .scales {
    padding: 14px 40px 0px;
}

.page-slug-rd-of-apis-and-intermediates .production-capacity .item,
.page-slug-research-development .production-capacity .item,
.title-content-button .item {
    padding: 28px 0px 25px;
}

.page-slug-rd-of-apis-and-intermediates .production-capacity .scales .col-6,
.page-slug-research-development .production-capacity .scales .col-6,
.title-content-button .products .col-6 {
    width: 50% !important;
}

.page-slug-rd-of-apis-and-intermediates .production-capacity .scales,
.page-slug-research-development .production-capacity .scales,
.title-content-button .products {
    --bs-gutter-x: 10px;
}

.page-slug-rd-of-apis-and-intermediates .production-capacity .item,
.page-slug-research-development .production-capacity .item,
.title-content-button .item {
    max-width: 513px;
}

.production-capacity + .production-capacity {
    padding-top: 14px;
}

.know-low {
    padding: 135px 0px 44px;
}

.know-low .title-content {
    padding: 0px;
    margin-bottom: 86px;
}

.know-low .title-content p {
    max-width: 633px;
}

.know-low h2 {
    font-size: 54px;
    line-height: 59.4px;
    margin-bottom: 5px;
}

.know-low .colored {
    padding: 124px 0px 136px;
}

.know-low.block-slider .wrap {
    background: #fff;
}

.know-low.block-slider h3 {
    text-align: center;
    color: #00948d;
    font-size: 36px;
    line-height: 39.6px;
    margin-bottom: 0px;
}

.know-low .mySwiper .block-slider-next {
    background: transparent;
}

.know-low .mySwiper svg path {
    fill: #fff;
}

.know-low.block-slider .img {
    height: 380px;
}

.know-low.block-slider .content {
    min-height: 232px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 34px 42px 35px;
}

.title-promo .colored-orange-promo .wrapper {
    background: linear-gradient(270deg, #7be5d8 0%, #ff6c29 100%);
    padding: 79px 125px 93px;
}

.title-promo .btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 0px 0px 201px;
}

.title-promo {
    padding: 34px 0px 40px;
}

.title-promo h2 {
    font-size: 54px;
    line-height: 74.74px;
    padding: 0px 44px;
}

.title-promo h4 {
    font-size: 36px;
    line-height: 39.6px;
    color: #fff;
    max-width: 454px;
}

.title-promo .btn-wrapper a {
    display: inline-flex;
    height: 62px;
    line-height: 62px;
    font-size: 16px;
}

.title-promo .btn-wrapper a + a {
    margin-top: 22px;
}

.title-promo .colored-orange-promo {
    padding: 60px 0px 23px;
}

.production-capacity .row-item .column-block-label {
    color: #00948d;
    font-size: 23px;
    line-height: 27.6px;
    margin-bottom: 40px;
    font-weight: 300;
}

.production-capacity .row-item + .row-item {
    padding-top: 55px;
}

.page-slug-rd-of-final-dosage-forms .inner-page-hero h1 {
    font-size: 68px;
    line-height: 74.8px;
}

.production-capacity .scales {
    padding: 0px 40px 0px;
}

.page-slug-rd-of-final-dosage-forms .production-capacity {
    padding: 10px 0px 60px;
}

.page-slug-rd-of-final-dosage-forms .production-capacity h3 {
    font-size: 54px;
    line-height: 59.4px;
}

.page-slug-rd-of-final-dosage-forms .production-capacity .item {
    padding: 28px 0px 25px;
}

a.wpml-ls-link {
    display: flex;
}

body {
    overflow-x: hidden;
}

.page-slug-pharmaceutical-co-development .page-hero .card {
    color: #3b5a5a;
}

.icon-block .subtext {
    padding: 0px 30px 66px;
}

.dosage-forms {
    padding: 76px 0px 50px;
}

.dosage-forms h3 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 22px;
}

.dosage-forms .item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    border: 1px solid #dce6f0;
    border-radius: 20px;
    padding: 30px 20px 11px;
    height: 100%;
}

.dosage-forms .item p {
    font-size: 15px;
}

.dosage-forms .item strong {
    display: block;
    font-size: 18px;
    line-height: 25.2px;
}

.dosage-forms .col-3 {
    margin-bottom: 18px;
}

.dosage-forms .item .image-wrapper {
    height: 94px;
    margin-bottom: 4px;
}

.dosage-forms .list {
    --bs-gutter-x: 20px;
    padding-left: 19px;
}

.dosage-forms .wrapper {
    padding-left: 40px;
    padding-top: 15px;
}

.dosage-quantity {
    padding: 30px 0px 30px;
}

.dosage-quantity .wrapper {
    padding-bottom: 49px;
}

.dosage-quantity h3 {
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 22px;
}

.dosage-quantity .block-list {
    border-radius: 20px;
    background: #dce6f0;
    padding: 29px 39px 5px;
    margin-bottom: 26px;
}

.dosage-quantity h4 {
    font-size: 26px;
    line-height: 31.2px;
    margin-bottom: 44px;
}

.dosage-quantity .col-item {
    width: 12.5%;
    padding-bottom: 15px;
}

.dosage-quantity .image-wrapper {
    height: 72px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.dosage-quantity .item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.dosage-quantity .item p {
    font-size: 14px;
    line-height: 22.4px;
}

.dosage-quantity strong {
    display: block;
}

.supplement_content {
    padding: 63px 0px 0px;
}

.supplement_content .item h3 {
    color: #3b5a5a;
    font-size: 45px;
    line-height: 49.5px;
    margin-bottom: 21px;
}

.supplement_content .btn-wrap {
    margin-top: 58px;
}

.supplement_content .item p {
    max-width: 435px;
}

.logo-list-hero {
    position: absolute;
    right: 30px;
    bottom: 35px;
}

.page-hero .card {
    position: relative;
}

.logo-list-hero .item {
    width: 164px;
}

.logo-list-hero .item .item-box {
    background: #dce6f04d;
    border-radius: 20px;
    padding: 12px 17px 9px;
    min-height: 172px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-list-hero .item + .item {
    margin-left: 22px;
}

.logo-list-hero .img-wrap {
    height: 88px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.logo-list-hero .btn {
    background: transparent;
    color: #75777b;
    font-size: 20px;
    margin-top: 0px !important;
}

.logo-list-hero .btn svg {
    width: 100%;
    visibility: visible;
    margin-left: 12px;
}

.logo-list-hero .btn:hover {
    background: var(--primary-button-hover);
    color: #ffffff;
}

.logo-list-hero .btn:hover svg path {
    stroke: #fff;
}

/* 29.08.2024. Form */
.form-area {
    padding: 0px 0px 106px;
}

.form-area .main-form-wrapper {
    padding: 0px 42px;
}

.form-area .wpcf7-text,
.form-area .wpcf7-select {
    height: 50px;
    line-height: 50px;
    padding: 0px 27px;
}

.form-area .wpcf7-textarea,
.form-area .wpcf7-text,
.codedropz-upload-handler,
.form-area .wpcf7-select {
    border: 1px solid #3B5A5A;
    border-radius: 25px;
    width: 100%;
    font-family: var(--font-family);
}

.form-area .wpcf7-textarea {
    outline: none;
    padding: 27px;
    height: 120px;
}

.dnd-upload-counter,
.codedropz-upload-inner span {
    display: none;
}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    font-size: 0px;
}

.codedropz-upload-container {
    min-height: 120px;
}

.codedropz-upload-inner {
    text-align: left;
}

.codedropz-upload-inner h3 {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    letter-spacing: 0.01em;
    color: #97A5B9;
}

.form-area .label {
    display: flex;
    align-items: center;
}

.form-area .label p {
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    letter-spacing: 0.01em;
    color: #00938B;
}

.form-area .col-9 {
    padding-left: 46px;
}

.form-group + .form-group {
    margin-top: 39px;
}

.info-line-text .text p {
    margin-top: 41px;
    color: #97A5B9;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.01em;
    max-width: 773px;
}

.form-area .wpcf7-acceptance input {
    border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #3B5A5A;
    width: 40px;
    height: 40px;
    margin: 0px;
    position: absolute;
    left: -19px;
    top: -8px;
}

.form-area .wpcf7-acceptance label {
    position: relative;
    padding-left: 51px;
    display: flex;
}

.form-area .wpcf7-acceptance input:checked {
    background-color: #3B5A5A;
}

.form-area .btn-wrapper {
    padding-top: 44px;
}

.wpcf7-not-valid {
    border-color: red !important;
}

.wpcf7-not-valid-tip {
    display: none;
}

.main-form-wrapper h4 {
    margin-bottom: 30px;
}

/* End 29.08.2024. Form */

.breadcrumb-wrapper a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}