header .inside {
  overflow: unset;
  background-color: unset;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  border-radius: unset;
  height: 75px;
  /*background-color: rgba(255, 255, 255, 0.18); */
  /*-webkit-backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);*/
  /*backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);*/
}

header#header {
  background-color: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);
  backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);
  border-radius: 38px;
  height: 100%;
  max-height: 75px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

header#header.sticky {
  background: linear-gradient(to right, #2D7DB5 0%, #02418F 100%);
  -webkit-backdrop-filter: blur(0px) brightness(1) opacity(1);
  backdrop-filter: blur(0px) brightness(1) opacity(1);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.page-detail {
  color: #000000;
}

.page-detail .sub-main {
  padding: 1rem;
}


.newsletterform .custom-checkbox label,
.newsletter-p-footer {
  font-size: 13px;
  font-weight: 300;
}

.newsletterform .custom-checkbox label a,
.newsletter-p-footer a {
  color: #f27812;
  text-decoration: underline;
}

header .inside nav ul .dropdown a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

header .inside nav ul .dropdown a svg {
  font-size: 15px;
}

header .inside nav ul .dropdown .dropdown-menu {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  display: none;
  margin-top: 0;
  transition: all 250ms ease;
  padding: 0;
  /* background-color: rgba(255, 255, 255, 0.75);*/
  /*-webkit-backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);*/
  /*backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);*/
  border: none;
  border-radius: 0 0 20px 20px;
  /*box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 3px 1px !important;*/
}

header .inside nav ul .dropdown .dropdown-menu li {
  padding: 0;
  height: unset;
}

header .inside nav ul .dropdown .dropdown-menu li .dropdown-item {
  color: #000;
  align-items: start;
  justify-content: start;

}

header .inside nav ul .dropdown .dropdown-menu li:nth-child(2) .dropdown-item {
  margin: 1px 0;
}

header .inside nav ul .dropdown .dropdown-menu li:nth-child(3) .dropdown-item {
  border-radius: 0 0 20px 20px;
}

header .inside nav ul .dropdown:hover {
  /*
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);
    backdrop-filter: blur(3px) brightness(1.15) opacity(0.9);
    */
}

header .inside nav ul .dropdown:hover a {
  color: #FD9D32;
}


header .inside nav ul .dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  min-height: max-content;
  min-height: -moz-calc(100% + 240px);
  min-height: -webkit-calc(100% + 240px);
  min-height: calc(100% + 240px);
  /*overflow-y: scroll;*/
  top: 100%;
  left: 0%;
  padding: 1rem;
}

header nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .inside nav ul {
  height: 100%;
  gap: 0;
}

header .inside nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}

header .dropdown-item.active,
.dropdown-item:active {
  background-color: unset;
}


footer .copyright {
  margin-left: unset !important;
}


/* Mega menu custom styles */
.dropdown-menu {
  min-width: calc(1650px - 600px);
  /* Increase the width for mega menu */
  padding: 20px;
}

.dropdown-item {
  padding: 10px 20px;
}

.dropdown-menu .row {
  display: flex;
  justify-content: space-between;
}

.dropdown-menu .col {
  flex: 1;
  padding: 0 15px;
}

.dropdown-item:hover {
  /*background-color: #f8f9fa;*/
}

.dropdown-menu li {
  margin-bottom: 10px;
}

/* Optionally add a background color */
.mega-menu {
  background-color: transparent;
}

/* BLOG PAGES */
.light-screen header#header {
  background: linear-gradient(to right, #2D7DB5 0%, #02418F 100%);
}

.menu-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.mega-menu .card-body .card-text {
  overflow: hidden;
  display: -webkit-box;
  max-width: 200px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mega-menu .card-body.custom-card-body {
  padding: 10px;
}

.mega-menu .card .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .card.custom-card {
  max-height: 100px;
  background-color: #157ebd;
  color: #ffffff;
  padding: 5px;
  border: .5px solid rgba(175, 175, 175, .5);
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
}

.mega-menu .card.custom-card .card-body.custom-card-body {
  padding: 10px;
}

.mega-menu .card.custom-card:hover {
  border-color: rgba(74, 139, 44, .5);
  background: rgb(239 132 31);
  color: #000000;
}

.mega-menu .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .product-menu-content {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
}

header.sticky .mega-menu .product-menu-content {
  color: #000;

}

header.sticky .mega-menu .custom-link-icon::before {
  background: #000;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>') no-repeat center;
  mask: url("data:image/svg+xml;utf8,%3Csvg%20fill='black'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M9%2C5H19v9.9m-.64-9.26L5%2C19'%20fill='none'%20stroke='black'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'/%3E%3C/svg%3E") no-repeat center;

}



.mega-menu .custom-link-icon::before {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  position: relative;
  top: -20px;
  display: inline-block;
  content: '';
  background: #ffffff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>') no-repeat center;
  mask: url("data:image/svg+xml;utf8,%3Csvg%20fill='black'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M9%2C5H19v9.9m-.64-9.26L5%2C19'%20fill='none'%20stroke='black'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
}

.mega-menu .product-menu-content:hover {
  color: #FD9D32;
  cursor: pointer;
}

.mega-menu .product-menu-content:hover .custom-link-icon::before {
  background: #FD9D32;
  cursor: pointer;
}


.mega-menu .product-menu-title {
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
}

.mega-menu .product-menu-description {
  font-weight: 400;
  font-size: 15px;
}

/*CONTRACTS AND POLICIES*/
.customer-center-item {
  height: 373px;
  background-color: #0a76ba;
  border-radius: 30px;
  position: relative;
}

.customer-center-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px 27px;
  text-align: center;
  color: #000;
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
  height: 373px;
  background-color: #0a76ba;
  border-radius: 30px;
  position: relative;
  width: 100%;
}

.customer-center-item .customer-title {
  font-size: 17px !important;
  color: #ffffff;
}

.customer-center-item p {
  display: -webkit-box;
  color: #ffffff;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 40px;
  -webkit-line-clamp: 2;
  font-size: 15px !important;
}

.customer-center-item .button {
  position: absolute;
  bottom: 10px;
  width: 85%;
  font-size: 15px !important;
  padding: 20px;
  border-radius: 30px;
  background-color: #fff;
  text-decoration: none;
  color: #000;
}

.customer-center-item .button {
  color: #2f87ff;
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -ms-transition: all 300ms;
  -o-transition: all 300ms;
  text-decoration: underline;
}

.customer-center-item:hover {
  background-color: #F9F9F9;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25);
  color: #0a76ba !important;
}

.customer-center-item:hover p {
  color: #0a76ba;
}

.customer-center-item:hover .customer-title {
  color: #0a76ba;
}

.customer-center-item:hover .icon img {
  filter: brightness(0) saturate(100%);
}

.customer-center-item:hover .button {
  background-color: #0a76ba;
  color: #fff;
}

/*CONTRACTS AND POLICIES*/

.pb-unset {
  padding-bottom: unset !important;
}

/* PRODUCTS */
section#products {
  /*background: url('/frontend/images/fluid-bg.webp') no-repeat;*/
  /*background-size: cover;*/
  background: linear-gradient(108deg, rgba(3, 44, 112, 1) 0%, rgba(0, 149, 194, 1) 35%, rgba(3, 44, 112, 1) 79%, rgba(173, 103, 54, 1) 100%);
  min-height: 100vh;
  position: relative;
}


section#products::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
  z-index: 1;
}

section.products.darker::before {
  opacity: 0.58 !important;
}

section#products .sub-banner {
  background: unset;
  padding-bottom: unset;
  background-size: cover;
  min-height: 50vh;
}

section#products .sub-banner::before {
  content: none;
}

section#products .container {
  position: relative;
  z-index: 2;
}

section#products .card {
  border-radius: unset;
  padding: 10px;
}

section#products .card .card-body {
  color: #ffffff;
}

section#products .card .card-body .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section#products .card .card-body .custom-product-title {
  font-size: 30px;
}

section#products .card .card-body .custom-product-category-title {
  font-size: 30px;
}

section#products .card .card-body .custom-product-description {
  color: #8e95a4;
}

section#products .card .card-body .custom-product-link {
  color: #8e95a4;
  text-decoration: underline;
}

section#products .card .card-body .custom-product-link svg {
  margin-left: 10px;
}

section#products .card {
  background-color: #0f1c3d;
}

/* PRODUCTS */
/* PRODUCT DETAIL */
section#product_detail {
  background: url('/frontend/images/fluid-bg.webp') no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}


section#product_detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.54;
  z-index: 1;
}

section#product_detail .sub-banner {
  background: unset;
  padding-bottom: unset;
  background-size: cover;
  min-height: 50vh;
}

section#product_detail .sub-banner::before {
  content: none;
}

section#product_detail .container {
  position: relative;
  z-index: 2;
}

section#product_detail .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section#product_detail .custom-product-detail-image {
  /*max-width: 100px;*/
}

section#product_detail .custom-link-color {
  color: #d3dae0;
  text-decoration: underline;
}

section#product_detail .custom-list-group .list-group-item {
  background-color: unset;
  color: #ffffff;
  border: unset;
}

section#product_detail .custom-list-group .list-group-item::before {
  width: 15px;
  height: 15px;
  margin-right: 15px;
  display: inline-block;
  content: '';
  background: #ffffff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>') no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
}

/* PRODUCT DETAIL */

@media all and (max-width:500px) {
  .bouncing-blob {
    width: 35vw;
  }
}

[data-bs-toggle] {
  cursor: pointer;
}

.board_of_directors .management-area .item .item-img img {
  max-height: 469px;
}

@media all and (max-width: 575px) {
  .board_of_directors .management-area .item .item-img img {
    max-height: 340px;
  }
}

.sub-banner.ver-2 {
  background: url(/public/media/uploads/editor/tedavi-alanlari-bg-2.webp) no-repeat center center;
  background-size: cover;
}

.sub-banner.ver-2::before {
  opacity: 0;
}

.content-wrapper-1 {
  position: relative;
  padding: 48px 70px 80px;
  overflow: hidden;
}

@media all and (max-width: 767px) {
  .content-wrapper-1 {
    padding: 24px 20px 40px;
  }
}

.content-wrapper-1 .bg-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  z-index: -1;
  height: 100%;
}

.content-wrapper-1 .bg-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(3, 19, 56) 100%);
}

@media all and (max-width: 1450px) {
  .content-wrapper-1 .bg-img::after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(3, 19, 56) 70%, rgb(3, 19, 56) 100%);
  }
}

.content-wrapper-1 .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (max-width: 767px) {
  .content-wrapper-1 .bg-img img {
    -o-object-position: left;
    object-position: left;
  }
}

.content-wrapper-2 .bg-img {
  position: relative;
}

.content-wrapper-2 .bg-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #0166AE;
  background: linear-gradient(180deg, rgba(1, 102, 174, 0) 0%, rgb(26, 39, 65) 69%, rgb(31, 34, 59) 100%);
  opacity: 0.78;
}

.content-wrapper-2 article.content {
  position: relative;
  margin-top: 30px;
  z-index: 2;
}

@media all and (max-width: 992px) {
  .content-wrapper-2 article.content {
    margin-top: 25px;
  }
}

.content-wrapper-3 {
  position: relative;
}

.content-wrapper-3::after {
  content: "";
  position: absolute;
  left: -1500px;
  top: 0;
  width: calc(100% + 3000px);
  height: 100%;
  z-index: -1;
  max-height: 610px;
  background-color: #0066AE;
}

@media all and (max-width: 1450px) {
  .content-wrapper-3::after {
    max-height: 700px;
  }
}

@media all and (max-width: 1150px) {
  .content-wrapper-3::after {
    max-height: 500px;
  }
}

@media all and (max-width: 992px) {
  .content-wrapper-3::after {
    max-height: 1000px;
  }
}

.content-wrapper-3 figure img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (max-width: 992px) {
  .content-wrapper-3 figure img {
    max-height: 400px;
  }
}

.content-wrapper-3 .row>div:nth-of-type(1) {
  padding-right: 80px;
}

@media all and (max-width: 1450px) {
  .content-wrapper-3 .row>div:nth-of-type(1) {
    padding-right: 70px;
  }
}

@media all and (max-width: 1250px) {
  .content-wrapper-3 .row>div:nth-of-type(1) {
    padding-right: 35px;
  }
}

@media all and (max-width: 992px) {
  .content-wrapper-3 .row>div:nth-of-type(1) {
    padding-right: 0;
  }
}

/*# sourceMappingURL=style.css.map */

.home-innovation {
  position: relative;
  background: url(/public/media/uploads/editor/fluid_bg.webp) no-repeat;
  background-size: cover;
}

.sub-banner.ver-video-banner {
  background-image: none;

}

.sub-banner.ver-video-banner .banner-image-bg,
.sub-banner.ver-video-banner .banner-video-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sub-banner.ver-video-banner .banner-image-bg::after,
.sub-banner.ver-video-banner .banner-video-bg::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.59);
  z-index: 1;
}

.sub-banner.ver-video-banner .banner-image-bg img,
.sub-banner.ver-video-banner .banner-video-bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sub-banner.ver-video-banner .banner-image-bg img {
  animation: zoomInOut 16s infinite ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.contact-banner-inside .contact-information .contact-items [class*=item_] .social-items {
  gap: 8px;
}

.contact-items .item_social .social-items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #04297B;
  background: linear-gradient(162deg, rgba(4, 41, 123, 1) 0%, rgba(1, 102, 174, 1) 100%);
  font-size: 23px;
}

.contact-items .item_social .social-items a:hover {
  background: linear-gradient(162deg, rgba(1, 102, 174, 1) 0%, rgba(4, 41, 123, 1) 100%);
  transform: scale(0.9);
  transition: background 0.4s ease, transform 0.2s ease;
}

.location-area .location-button {
  background: #1883D0;
  background: linear-gradient(58deg, rgba(24, 131, 208, 1) 0%, rgba(15, 73, 114, 1) 100%);
}

.font-montserrat {
  font-family: "Montserrat", sans-serif !important;
}

.modal-close-button {
  text-align: right;
  padding: 10px;
}

footer form .custom-checkbox label::before {
  mix-blend-mode: lighten;
}

.text-line-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text-line-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-line-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-item {
  height: 100%;
  padding: 50px !important;
  border-radius: 20px !important;
  position: relative;
  background: transparent !important;
  overflow: hidden;
}

.product-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #415C93;
  border-radius: 20px;
  z-index: 0;
  opacity: .55;
  transition: all 300ms;
}

.product-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40%;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: brightness(1);
    backdrop-filter: brightness(1);
    filter: contrast(0.9) opacity(.45);
  z-index: 1;
  transition: all 300ms;
}

.product-item:hover::after {
    height: 100%;
}

.product-item .card-body {
  padding: 0px !important;
  position: relative;
  z-index: 2;
}

.product-item .custom-product-image {
  max-width: 250px;
}

.products-list-banner {}

.products-list-banner .products-list-banner-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.products-list-banner .products-list-banner-content h1,
.products-list-banner .products-list-banner-content h2 {
  max-width: 661px;
}

.custom-product-detail-image {
  max-width: 550px;
}

section#product_detail {
  /*background: url("/public/frontend/images/products/bg.webp") no-repeat;*/
  /*background-size: cover;*/
  /*background: linear-gradient(135deg, #0d2b7e 0%, #0077b6 40%, #00b4d8 70%);*/
  background: #032C70;
  background: linear-gradient(108deg, rgba(3, 44, 112, 1) 0%, rgba(0, 149, 194, 1) 35%, rgba(3, 44, 112, 1) 79%, rgba(173, 103, 54, 1) 100%);

}

section#product_detail::before {
  opacity: .15;
}

section#product_detail .sub-banner {
  min-height: 0;
  padding-top: 200px;
}

.product-documents {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-documents .document {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  border: 1px solid rgba(189, 229, 255, 0.55);
  background: transparent;
  padding: 20px 50px;
  border-radius: 18px;
  overflow: hidden;
  transition: all 300ms;
}

.product-documents .document:hover {
  background: #04297B;
}

.product-documents .document::before {
  border-radius: 18px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, #0166AE, #04297B);
}

.product-documents .document .icon {
  font-size: 40px;
  line-height: 1;
}

.product-documents .document .text-content .fw-light {
  text-decoration: underline;
}

.thanks-page {
  background: linear-gradient(108deg, rgba(3, 44, 112, 1) 0%, rgba(0, 149, 194, 1) 35%, rgba(3, 44, 112, 1) 79%, rgba(173, 103, 54, 1) 100%);
  position: relative;
}

.thanks-page::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
  z-index: 0
}

.thanks-page-content {
  text-align: center;
}

.btn-arrow-orange {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 29px;
  height: 46px;
  border-radius: 23px;
  font-size: 15px;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  cursor: pointer;
  padding: 0 6px 0 70px;
  min-width: 245px;
  background: linear-gradient(235deg, rgb(225, 102, 1) 0%, rgb(74, 83, 110) 51%, rgb(225, 102, 1) 100%);
  background-size: 200% auto;
  transition: background 0.5s ease-in-out;
}

.btn-arrow-orange span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #EF912A;
  background: linear-gradient(225deg, rgb(239, 145, 42) 0%, rgb(245, 102, 1) 100%);
  transition: background 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}

.btn-arrow-orange span img {
  transition: all 0.3s ease;
}

.btn-arrow-orange span::before {
  content: url(../images/icons/arrow-mini-right.svg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-300%, -50%);
  transition: all 0.3s ease;
}

.btn-arrow-orange:hover {
  background-position: right center;
  background-size: 150% auto;
}

.btn-arrow-orange:hover span {
  background: rgb(74, 83, 110);
}

.btn-arrow-orange:hover span::before {
  transform: translate(-50%, -45%);
}

.btn-arrow-orange:hover span img {
  transform: translateX(300%);
}



.text-17 {
  font-size: 17px;
}

@media all and (max-width: 767px) {
  .text-17 {
    font-size: 16px;
  }
}



.text-30 {
  font-size: 30px;
}

@media all and (max-width: 1450px) {
  .text-30 {
    font-size: 28px;
  }
}

@media all and (max-width: 1200px) {
  .text-30 {
    font-size: 25px;
  }
}

@media all and (max-width: 992px) {
  .text-30 {
    font-size: 23px;
  }
}

@media all and (max-width: 768px) {
  .text-30 {
    font-size: 21px;
  }
}

@media all and (max-width: 767px) {
  .text-30 {
    font-size: 19px;
  }
}



.text-175 {
  font-size: 175px;
}

@media all and (max-width: 1450px) {
  .text-175 {
    font-size: 150px;
  }
}

@media all and (max-width: 1200px) {
  .text-175 {
    font-size: 125px;
  }
}

@media all and (max-width: 992px) {
  .text-175 {
    font-size: 100px;
  }
}

@media all and (max-width: 768px) {
  .text-175 {
    font-size: 75px;
  }
}

@media all and (max-width: 767px) {
  .text-175 {
    font-size: 50px;
  }
}


.error-bg {
  background: url("/frontend/images/fluid-bg.webp") no-repeat;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

.error-bg.not-full {
  min-height: 0vh;
}

.error-bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.54;
  z-index: 1;
}

.error-bg>* {
  position: relative;
  z-index: 1;
}

.subpages {}

.subpages .subpages-item {
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding: 55px 40px;
  height: 100%;
  background: rgba(1, 102, 174, 0.55);
  transition: all 300ms;
  border: 1px solid transparent;
  border-radius: 18px;
}

.subpages .subpages-item .subpages-item-title {
  text-wrap: balance;
}

.subpages .subpages-item:hover {
  border-color: rgba(154, 213, 255, 0.5);
}

.basic-page-content {}

.basic-page-content .basic-page-content-text {
  color: #000;
}

.basic-page-content .basic-page-content-text td p:last-child {
  margin-bottom: 0;
}

.basic-page-content .basic-page-content-text ul {
  list-style: circle;
  padding-left: 20px;
}


.cc-window {
  padding: 2em !important;
  max-width: 24em;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  gap: 20px;
}

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

@media all and (min-width: 1400px) {
  .ml-xxl-auto {
    margin-left: auto;
  }
}

/* FARMA */

.ver_farma {
  background-color: #091736;
  background-image: none;
}

.ver_farma::before {
  display: none;
}

.ver_farma p {
  opacity: 0.81;
}

.ver_farma .farmakovijilans-banner .title-area h5 {
  font-size: 27px;
}

@media all and (max-width: 1449px) {
  .ver_farma .farmakovijilans-banner .title-area h5 {
    font-size: 24px;
  }
}

@media all and (max-width: 1199px) {
  .ver_farma .farmakovijilans-banner .title-area h5 {
    font-size: 21px;
  }
}

@media all and (max-width: 991px) {
  .ver_farma .farmakovijilans-banner .title-area h5 {
    font-size: 19px;
  }
}

@media all and (max-width: 767px) {
  .ver_farma .farmakovijilans-banner .title-area h5 {
    font-size: 18px;
  }
}

.color-teal {
  color: #58E3FF !important;
}

.partners-ui-wrapper {
  position: relative;
  z-index: 2;
}

.partners-ui-wrapper .ui_inside {
  display: flex;
  justify-content: center;
}

.partners-ui-wrapper .ui_inside .ui_center {
  position: relative;
  width: 100%;
  max-width: 826px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_materials .center-img {
  padding-bottom: 100px;
}

@media all and (max-width: 1550px) {
  .partners-ui-wrapper .ui_inside .ui_center {
    max-width: 50%;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_materials {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_materials .center-img {
    max-width: 50%;
    padding-bottom: 50px;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_materials .center-img img {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .partners-ui-wrapper .ui_inside .ui_center {
    max-width: 100%;
    display: block;
    aspect-ratio: unset;
    height: auto;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_materials {
    margin-top: 70px;
    margin-bottom: 120px;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media all and (max-width: 574px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_materials {
    margin-top: 70px;
    margin-bottom: 70px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_materials .center-img {
    padding-bottom: 25px;
  }
}

.partners-ui-wrapper .ui_inside .ui_center>.center-img {
  width: 100%;
  max-width: 61.68%;
}

.partners-ui-wrapper .ui_inside .ui_center>.center-img img {
  width: 100%;
}

.partners-ui-wrapper .ui_inside .ui_center .circle-1,
.partners-ui-wrapper .ui_inside .ui_center .circle-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: spin-360-reverse 6s linear infinite;
  width: 100%;
}

.partners-ui-wrapper .ui_inside .ui_center .circle-1 img,
.partners-ui-wrapper .ui_inside .ui_center .circle-2 img {
  width: 100%;
}

.partners-ui-wrapper .ui_inside .ui_center .circle-1 {
  max-width: 84.53%;
}

.partners-ui-wrapper .ui_inside .ui_center .circle-2 {
  animation: spin-360 11s linear infinite;
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item {
  display: flex;
  gap: 21px;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  padding: 25px 20px;
}

@media all and (max-width: 1200px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item .text-35 h3 {
    font-size: 20px;
  }
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item .item-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(244, 103, 0, 0.5);
  background-color: #091736;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item:hover .item-img {
  box-shadow: 0 0 5px 1px #F46700, 0 0 10px 3px rgba(244, 103, 0, 0.5), 0 0 15px 5px rgba(244, 103, 0, 0.65), inset 0 0 7px 1px #F46700;
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-left {
  left: 0;
  transform: translate(-100%, -50%);
  flex-direction: row-reverse;
  text-align: end;
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-left.left-1 {
  top: 35%;
  left: 8%;
}

@media all and (max-width: 1200px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-left.left-1 {
    left: 10%;
  }
}

@media all and (max-width: 991px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-left.left-1 {
    left: 12%;
  }
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-left.left-2 {
  top: 70%;
  left: 8%;
}

@media all and (max-width: 1200px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-left.left-2 {
    left: 10%;
  }
}

@media all and (max-width: 991px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-left.left-2 {
    left: 12%;
  }
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right {
  right: 0;
  transform: translate(100%, -50%);
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-1 {
  top: 20%;
  right: 15%;
}

@media all and (max-width: 1200px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-1 {
    right: 17%;
  }
}

@media all and (max-width: 991px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-1 {
    right: 20%;
  }
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-2 {
  top: 50%;
  right: 5%;
}

@media all and (max-width: 1200px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-2 {
    right: 7%;
  }
}

@media all and (max-width: 991px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-2 {
    right: 9%;
  }
}

.partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-3 {
  top: 80%;
  right: 15%;
}

@media all and (max-width: 1200px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-3 {
    right: 17%;
  }
}

@media all and (max-width: 991px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item.item-right.right-3 {
    right: 20%;
  }
}

@media all and (max-width: 1200px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item {
    max-width: 280px;
    gap: 14px;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item h3 {
    font-size: 20px;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item .item-img {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item .item-img img {
    max-width: 26px;
  }
}

@media all and (max-width: 991px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item {
    max-width: 255px;
    gap: 14px;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item h3 {
    font-size: 16px;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item .item-img {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item .item-img img {
    max-width: 20px;
  }
}

@media all and (max-width: 767px) {
  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items {
    position: static;
    margin-top: 120px;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 22px;
    column-gap: 22px;
    row-gap: 10px;
    justify-content: center;
    height: auto;
  }

  .partners-ui-wrapper .ui_inside .ui_center .ui_center_text_items .item {
    position: static;
    left: 0;
    top: 0;
    flex-direction: column !important;
    text-align: left !important;
    max-width: -moz-max-content;
    width: 100%;
    max-width: 300px !important;
    transform: none !important;
    height: -moz-max-content !important;
    height: max-content !important;
    border: 1px solid rgba(27, 140, 221, 0.5);
    border-radius: 7px;
  }
}

@keyframes spin-360 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-360-reverse {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/*# sourceMappingURL=style.css.map */




.ver_farma_main {
  background-color: #213E64;
  background-image: none;
  padding-bottom: 0;
}

.ver_farma_main::before {
  display: none;
}

.ver_farma_main p {
  opacity: 0.81;
}

.ver_farma_main ul {
  list-style: disc;
  padding-left: 17px;
}

.ver_farma_main .farmakovijilans-banner .title-area h5 {
  font-size: 27px;
}

@media all and (max-width: 1449px) {
  .ver_farma_main .farmakovijilans-banner .title-area h5 {
    font-size: 24px;
  }
}

@media all and (max-width: 1199px) {
  .ver_farma_main .farmakovijilans-banner .title-area h5 {
    font-size: 21px;
  }
}

@media all and (max-width: 991px) {
  .ver_farma_main .farmakovijilans-banner .title-area h5 {
    font-size: 19px;
  }
}

@media all and (max-width: 767px) {
  .ver_farma_main .farmakovijilans-banner .title-area h5 {
    font-size: 18px;
  }
}

.ver_farma_main .farmakovijilans-banner .content-area p {
  position: relative;
}

.ver_farma_main .farmakovijilans-banner .content-area p:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 24px;
}

.ver_farma_main .farmakovijilans-banner .content-area p::before {
  content: "";
  display: inline-block;
  width: 8.5px;
  height: 8.5px;
  background: linear-gradient(to right, #E86A14 0%, #F8A62E 100%);
  border-radius: 50%;
  margin-right: 55px;
}

@media all and (max-width: 767px) {
  .ver_farma_main .farmakovijilans-banner .content-area p::before {
    margin-right: 30px;
  }
}

.ver_farma_main .farmakovijilans-banner .logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ver_farma_main .farmakovijilans-banner .logo-wrapper .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 215px;
  border-radius: 20px;
  background-color: #fff;
}

@media all and (max-width: 991px) {
  .ver_farma_main .farmakovijilans-banner .logo-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media all and (max-width: 767px) {
  .ver_farma_main .farmakovijilans-banner .logo-wrapper .item {
    width: 159px;
    height: 170px;
  }

  .ver_farma_main .farmakovijilans-banner .logo-wrapper .item img {
    max-width: 80%;
  }
}

.ver_farma_main .farma-inf {
  background-color: rgba(255, 255, 255, 0.05);
}

.ver_farma_main .farma-inf .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-radius: 14px;
  padding: 36px 22px;
  background-color: #526E92;
  height: 100%;
  border: 1px solid #0166AE;
  transition: all 0.3s ease;
}

@media all and (max-width: 767px) {
  .ver_farma_main .farma-inf .item {
    padding: 27px 22px;
  }
}

.ver_farma_main .farma-inf .item img {
  filter: invert(1) brightness(500%) opacity(0.5);
  max-width: 100px;
  transition: all 0.3s ease;
}

@media all and (max-width: 1449px) {
  .ver_farma_main .farma-inf .item img {
    max-width: 85px;
  }
}

@media all and (max-width: 1119px) {
  .ver_farma_main .farma-inf .item img {
    max-width: 75px;
  }
}

@media all and (max-width: 767px) {
  .ver_farma_main .farma-inf .item img {
    max-width: 55px;
  }
}

.ver_farma_main .farma-inf .item:hover {
  border-radius: 25px;
  background-color: #0166AE;
}

.ver_farma_main .farma-inf .item:hover img {
  transform: scale(0.9);
}

/*# sourceMappingURL=style.css.map */


.contact-page-btn {
  height: 60px;
  padding: 0 10px 0 70px;
  min-width: 320px;
  border-radius: 30px;
  font-size: 17px;
}


.ver_distribitorluk {
  padding-bottom: 0;
  background: linear-gradient(108deg, rgb(3, 44, 112) 0%, rgb(0, 149, 194) 35%, rgb(3, 44, 112) 79%, rgb(173, 103, 54) 100%);
  position: relative;
  z-index: 2;
}

.ver_distribitorluk::before {
  display: none;
}

.ver_distribitorluk::after {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.ver_distribitorluk p {
  opacity: 0.81;
}

.ver_distribitorluk ul {
  list-style: disc;
  padding-left: 17px;
}

.ver_distribitorluk .btn-arrow {
  min-width: 245px;
  padding-left: 70px;
  background: linear-gradient(235deg, rgb(225, 102, 1) 0%, rgb(74, 83, 110) 51%, rgb(225, 102, 1) 100%);
  background-size: 200% auto;
  transition: background 0.5s ease-in-out;
}

.ver_distribitorluk .btn-arrow:hover {
  background-position: right center;
  background-size: 150% auto;
}

/*# sourceMappingURL=style.css.map */


.burger-menu .outside .inside nav a {
  font-size: 45px
}

@media(max-width: 1399px) {
  .burger-menu .outside .inside nav a {
    font-size: 40px
  }
}

@media(max-width: 1199px) {
  .burger-menu .outside .inside nav a {
    font-size: 36px
  }
}

@media (max-width: 992px) {
  .burger-menu .container {
    max-width: 96% !important;
  }

  .burger-menu .outside .inside nav a {
    font-size: 30px
  }
}

@media (max-width: 767px) {
  .burger-menu .outside .inside nav a {
    font-size: 26px
  }
}

.burger-menu .outside .inside .contact-area .contact-area-links>div a {
  justify-content: start;
  text-align: left;
}

.burger-menu .outside {
  background-color: rgba(0, 0, 0, 1);
}

.product-detail {
  position: relative;
  z-index: 1;

}

.product-detail .col-12 .br-20 {
  max-width: 100%;
}

.product-detail::after {
  content: "";
  position: absolute;
  left: 0;
  top: 325px;
  width: 100%;
  height: 100%;
  max-height: 300px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: brightness(1);
  backdrop-filter: brightness(1);
  filter: contrast(0.9) opacity(.45);
  border: none;
  z-index: -1;
}

.custom-product-detail-image {
  max-width: 450px;
}

@media all and (max-width:574px) {
  .product-detail::after {
    top: 300px;
  }
}

.blog-news .blog-inside .item-description {
    padding: 24px 55px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400 !important
}
@media (max-width: 992px) {
    .blog-news .blog-inside .item-description {
        padding: 24px 27px;
    }
}


.popupmodal .modal-content {
  border-radius: 0;
}
.popupmodal .modal-dialog {
  min-height: calc(100% - 15px);
}
.popupmodal .modal-dialog.modal-dialog-center-left {
  margin: auto;
  margin-left: 15px;
}
.popupmodal .modal-dialog.modal-dialog-center-right {
  margin: auto;
  margin-right: 35px;
}
.popupmodal .modal-dialog.modal-dialog-top-center {
  margin: auto;
  margin-top: 15px;
  align-items: start;
}
.popupmodal .modal-dialog.modal-dialog-top-left {
  margin: auto;
  margin-top: 15px;
  margin-left: 15px;
  align-items: start;
}
.popupmodal .modal-dialog.modal-dialog-top-right {
  margin: auto;
  margin-top: 15px;
  margin-right: 35px;
  align-items: start;
}
.popupmodal .modal-dialog.modal-dialog-bottom-center {
  margin: auto;
  align-items: end;
}
.popupmodal .modal-dialog.modal-dialog-bottom-left {
  margin: auto;
  margin-left: 15px;
  align-items: end;
}
.popupmodal .modal-dialog.modal-dialog-bottom-right {
  margin: auto;
  margin-right: 35px;
  align-items: end;
}
.popupmodal .modal-dialog .modal-content {
  box-shadow: rgb(16 24 40 / 18%) 0px 0px 30px;
  border-radius: 20px !important;
  border: 0;
  overflow: hidden;
}
.popupmodal .modal-dialog .modal-content {
  color: #000;
}
.modal-backdrop.show {
  opacity: .3
}

.popup-close-button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #132848;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}
.popup-close-button.light {
  background: #fff;
  color: rgba(24, 131, 208, 1);
  border: none;
}

.grecaptcha-badge {
  display: none !important;
}