:root {
    --container-width: 1410px;
    --container-width-2: 1600px;
    --container-out: calc(calc(100vw - var(--container-width)) / 2);
    --container-out-2: calc(calc(100vw - var(--container-width-2)) / 2);
    --primary-color: #141f78;
    --white-color: #ffffff;
    --secondary-color: #141f78;
    --gray-color: #707070;
    --soft-blue: #E5E8EF;
    --soft-gray: #F2F4F7;
    --fancybox-bg: #fff;
    --drawer-w: min(470px, 92vw);
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,.15);
    --bg: #141f78;
    --panel: #ffffff;
    --text: #141f78;
    --muted: #707070;
    --accent: #141f78;
    --chip: #fff;
    --chip-text: #707070;
    --overlay: rgba(2,6,23,.55);
}
.fancybox__container {
    --fancybox-color: #282828;
    --fancybox-hover-color: #282828;
    --fancybox-bg: rgb(255 255 255 / 80%);
}
* {
	font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: normal;
    scroll-behavior: smooth;
    outline: 0 !important;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}
::selection { background: none;  color: inherit;}
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}
.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}
.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}
img.lazy-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}
img:not(.lazy-img) {
    opacity: 1;
}
.slick-prev:before, .slick-next:before {
    display: none;
}
strong,b {
    font-weight: 700;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
::after, ::before {
    box-sizing: border-box;
}
body {
   font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    outline: 0 !important;
    outline: none;
    text-decoration: none;
    margin: 0;
}
 @font-face {
      font-family: 'evopharma-icon-font';
      src: url('./icon-font/font/evopharma-icon-font.eot?16551954');
      src: url('./icon-font/font/evopharma-icon-font.eot?16551954#iefix') format('embedded-opentype'),
	  url('./icon-font/font/evopharma-icon-font.woff?16551954') format('woff'),
           url('./icon-font/font/evopharma-icon-font.ttf?16551954') format('truetype'),
           url('./icon-font/font/evopharma-icon-font.svg?16551954#evopharma-icon-font') format('svg');
      font-weight: normal;
      font-style: normal;
    }
.demo-icon {
    font-family: "evopharma-icon-font"; 
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
    padding-bottom: 0;
}
/* width */
::-webkit-scrollbar {
    width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--default-color);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--default-color);
}

.toast-message {
    font-size: 14px;
    color: #fff;
}

#toast-container>.toast {
    background: var(--primary-color);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-position: left center;
    background-position-x: 14px;
    padding: 25px 34px 25px 50px;
    width: initial;
}

.c-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}
.c-container-two {
    width: 100%;
    max-width: var(--container-width-2);
    margin: 0 auto;
}
.cl-container {
    margin: 0 auto;
    margin-left: var(--container-out);
}
.gap-1 {
    gap: 1rem!important;
}
.gap-2 {
    gap: 2rem!important;
}
.gap-8 {
    gap: 8rem!important;
}
.pore {
    position: relative;
}
.poab {
    position: absolute;
}
h1, h2, h3, h4, h5, h6 ,p {
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
	}
.w-25 {
    width: calc(25% - 7px);
}
.w-33 {
    width: calc(100% / 3)
}
.w-50 {
    width: calc(50% - 7px);
}
.w-100 {
    width: 100%;
}
.d-block {
    display: block;
}
.text-center {
    text-align: center;
}
.h-100 {
    height: 100%;
}
.row-gap {
    row-gap: var(--bs-gutter-x);
}
.column-gap {
    column-gap: var(--bs-gutter-x);
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
li {
    list-style: none;
}
ul {
    margin: 0;
    padding-left: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background-color: var(--primary-color);
  font-size: 16px;
  color: var(--white-color);
  gap: 16px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: all .5s;
  font-weight: 800;
}
.btn i {
  font-size: 10px;
  color: var(--white-color);
}
.btn:hover {
 gap: 24px;
}
.btn-primary-green {
  background-color: var(--secondary-color);
}
.btn-contact-white {
	background-color: var(--white-color);
	color: var(--primary-color);
	font-weight: 800;
}
.btn-contact-white i{
color: var(--primary-color);
}
.btn-contact-blue {
  padding: 24px 26px;
  background-color: var(--primary-color);
  gap: 10px;
  max-width: max-content;
}
.btn-contact-blue i {
  font-size: 24px;
}
.btn-contact-green  {
  padding: 24px 26px;
   background-color: var(--secondary-color);
	gap: 10px;
}
.btn-contact-green  i {
  font-size: 24px;
}
.btn-text-green {
	background:transparent;
	max-width:max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  gap: 8px;
  cursor: pointer;
  
}
.btn-text-green i {
  font-size: 8px;
    color: var(--secondary-color);
}
.btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 26px;
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  color: var(--primary-gray);
  gap: 10px;
  border-radius:  10px;
  border: none;
  cursor: pointer;
}
.btn-copy i {
  font-size: 20px;
}
header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 35px 0;
}
header .logo{
    display: flex;
    align-items: center;
    gap: 15px;
}
header .logo-text{
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    max-width: 7rem;
    line-height: 14px;
    letter-spacing: 1.5px;
}
header.header .logo-text{   color: #707070;}
.menu-search{display:flex;align-items:center;gap: 20px;}
.menu-search #btn-search{border-radius: 5px;color:#fff;background:var(--primary-color);width:60px;padding: 12px 16px 12px;font-size: 21px;cursor: pointer;}
header .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}
header .menu li {
    position: relative;
    margin: 0 2px;
    padding: 18px 0px 18px 0;
    font-weight: 500;
    margin-left: 40px;
}
header .menu> li:first-child {
    margin-left: 0
}
header .menu li.no-drop:last-child {
    margin-right: 0;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 12px 16px 12px;
}
header .menu li.no-drop:last-child a {
  color:#fff;
  font-size: 16px;
  font-weight: 500;
}
header .menu li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 2px 20px 2px;
    background: var(--primary-color);
    display: none;
    z-index: 88;
    border-radius: 20px;
}
header .menu li .dropdown-menu li {
    margin: 0;
    padding: 13px 45px 13px 30px;
    border-bottom: 2px solid rgb(255 255 255 / 10%);
}
header .menu li .dropdown-menu li:last-child {
    border-bottom:none;
}
header .menu li.dropdown:hover .dropdown-menu {
    display: block
}
header .menu li .dropdown-menu li:hover{
   background: rgb(255 255 255 / 10%);
   border-color: var(--primary-color);
}
header .menu li a,header .menu li span {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 8px;
    cursor: pointer;
}
header .menu li a i {
   font-size:20px;
 
}
header.header .menu li a i {
   font-size:20px;
   color: var(--primary-color);
}
header.header .menu li a,header.header .menu li span {
   
    color: var(--primary-color);
}
header .menu li .dropdown-menu a {
    color: #fff;
    text-transform: initial;
    font-weight: 500;
    font-size: 16px;
}
.menu-btn {
    display: none;
}
.slider {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}
.slider picture img {
    height: 100vh;
    width: 100%;
    object-position: center;
    object-fit: cover;
    max-width: 100%;
}
.slider .item {
    position: relative
}
.slider .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding-top: 0;
    left: 0;
    bottom: 0;
    z-index: 16;
}
.slider .content-detail {
    padding-left: 0;
    padding-bottom: 0;
}
.slider .content .text1 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}
.slider .content .text2 {
    font-size: 54px;
    line-height: 64px;
    font-weight: 800;
    margin-bottom: 48px;
    color: #fff;
    letter-spacing: -1.5px;
    max-width: 46rem;
}
.slider .content a {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 0px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.slider .content a i{
  font-size:8px;
}
.scroll-indicator {
    position: absolute;
    left: 0px;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    cursor: pointer;
	width:100%;
	font-size:16px;
}
.scroll-text {
font-size: 14px;
color: #707070;
font-weight: 400;
display: inline-flex;
align-items: center;
gap: 20px;
}
.scroll-indicator i{
  height:48px;
  width:48px;
  font-size:10px;
  background:var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  color: #fff;
}
.home-about{margin-top: 36px;height: 100%;}
.home-about .icon-favicon{
	position: absolute;
	font-size: 34rem;
	color: #F1F1F1;
	transform: translateX(-13rem);
	z-index: 1;
	}
	.home-about-flex {display:flex;align-items: start;justify-content:space-between;position: relative;padding-top: 185px;gap: 15px;position: relative;}
	.home-about-flex > div{/* flex:1; */width: 50%;position: relative;z-index: 2;}
	.home-about-left {display:flex;align-items: start;gap: 10%;}
	.home-about-left .title1{color:#707070;font-size:24px;font-weight:600;}
	.home-about-text .title2{color:var(--primary-color);font-size:48px;font-weight:400;max-width: 27rem;line-height: 54px;margin-bottom:10px;}
	.home-about-text {font-size: 20px;color: #707070;max-width: 35.5rem;}
	.home-about-text p{margin-bottom:40px;line-height: 28px;}
.home-category{position:relative;}
.home-category-bg {background:#F2F4F7;border-radius:72px;padding:115px 95px 85px;position:relative;overflow:hidden;z-index: 0;height: 100%;position: absolute;width: 100%;left: var(--container-out-2);top: 0;max-width: var(--container-width-2);}
.home-category-bg:before {background:#F2F4F7;border-radius:72px;content:"";position:absolute;height: calc(100% + 190px);width:100%;top:0;left:0;}
.home-category {margin-top: 120px;margin-bottom: -2px;padding: 115px 30px 85px;position: relative;}
.home-category:after {content:"";position:absolute;bottom: 0px;left:0;width:100%;height:50%;background: #e5e8ef;border-radius: 72px 72px 0 0;z-index: -1;}
.home-category-flex {display:flex;align-items: stretch;justify-content:space-between;position: relative;z-index: 2;flex-wrap: wrap;gap: 20px;}
.home-category-flex > div{position:relative;width: calc(25% - 15px);overflow: hidden;border-radius: 32px;}
.home-category-flex > div a{display: flex;flex-direction: column;justify-content: space-between;}
.home-category-flex > div img{max-width:450px;}
.home-category-content{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;display: flex;align-items: center;justify-content: center;background: #fff;transition: all .5s;flex-direction: column;gap: 30px;}
.home-category-content p{font-size:18px;color:#707070;font-weight:600;text-align: center;max-width: 90%;}
.home-category-content p strong{color:var(--primary-color)}
.home-category-flex > div:hover .home-category-content{height:0;}
.home-product{background:#E5E8EF;padding-bottom:155px;padding-top:198px;margin-bottom:93px;border-radius: 0 0 72px 72px;}
.home-product-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:65px;}
.product{width:450px;padding: 30px 0px;background:#fff;border-radius:20px;}
.product .product-img{margin-bottom:36px;position: relative;overflow: hidden;}
.product .product-img:after{content:"";background-image:url(./emblem.png);position:absolute;top: 7%;width: 86%;left: 7%;background-size: 100%;height: 100%;background-repeat: no-repeat;opacity: .4;}
.product .product-img img{aspect-ratio:1/1;position: relative;z-index: 1;transform: scale(1);transition: all .5s;padding: 25px;}
.product:hover .product-img img{transform: scale(1.09);}
.product .logo-icon{margin-bottom: 17px;padding-left: 25px;}
.product .product-name{margin-bottom:14px;font-size: 16px;font-weight:600;color:#707070;line-height:27px;padding-left: 25px;padding-right: 20px;min-height: 54px;}
.product-list .product .product-name,.other-product .product .product-name{display: flex;align-items: center;justify-content: space-between;padding-right: 40px;margin-bottom: 0;}
.product-list .product:hover .product-name,.other-product .product:hover .product-name,.category .product:hover .product-name{color:var(--primary-color);}
.product-list .product:hover,.other-product .product:hover,.category .product:hover {border-color:var(--secondary-color);}
.product-list .product .product-name i,.other-product .product .product-name i{display: flex;height:48px;width:48px;background:var(--secondary-color);color:#ffF;align-items:center;justify-content:center;font-size:10px;transition:all .5s;position:relative;left:-25px;border-radius:48px;opacity: 0;display: none;}
.product-list .product:hover .product-name i,.other-product .product:hover .product-name i{left:0px;opacity: 1;}
.product .category-name{margin-bottom:19px;font-size: 24px;font-weight:600;color:var(--primary-color);line-height:18px;padding-left: 25px;letter-spacing: -1px;}
.product b{
    color: var(--secondary-color);
    padding: 0;
    background: transparent;
    font-size: 14px;
    gap:8px;
    padding-left: 25px;
}
.product b i{
    color: var(--secondary-color);
}
.product:hover b {
gap:16px;
  }

.home-product-slider-container {margin-left:var(--container-out);width:100%;}
.home-product-slider .slick-slide {
  margin-right: 30px; 
}
.home-product-dots {margin-top:55px;}
.home-product-dots .slick-dots {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
	width: 100%;
    justify-content: start;
    margin: 0 auto;
}
.home-product-dots .slick-dots  li {
    position: relative;
    display: inline-block;
    height: 3px;
    margin: 0 8px 0 0;
    padding: 0;
    cursor: pointer;
}
.home-product-dots .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    background: transparent;
    border: none;
}
.home-product-dots .slick-dots  li button:before {
    content: "";
    width: 34px;
    background: #002561;
    height: 4px;
    border: none;
    border-radius: 20px;
    opacity: .2;
    display: block;
}
.home-product-dots .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #002561;
}
.home-product .arrows {display:flex;align-items:center;justify-content:center;gap:10px;}
.home-product .arrows i{cursor:pointer;height:48px;width:48px;display:flex;align-items:center;justify-content:center;border:1px solid var(--secondary-color);border-radius:48px;color:var(--secondary-color);}
.home-product .arrows .home-product-right {color:#fff;background:var(--secondary-color);}
.home-product-text1{color:#707070;line-height:22px;margin-bottom:0;}
.home-product-text2{color:var(--primary-color);line-height:65px;margin-bottom:0;font-size:48px;font-weight:700;}
.home-banner{margin-bottom:83px;}
.home-banner-content{width: 410px;margin-right: 30px;border-radius: 32px;overflow: hidden;}
.blog{width:450px;margin-left:30px;background: #fff;border-radius: 36px;overflow:hidden;border: 1px solid #f1f1f1;}
.blog .blog-img{position:relative;}
.blog .content{padding:40px;display: flex;flex-direction: column;justify-content: space-between;height: 50%;}
.home-blog{margin-bottom: 90px;}
.home-blog .left {
  width: calc(100% * 1 / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-blog .left img{
 position:relative;
 top: -25px;
 left: -75px;
}
.home-blog .left a{max-width:max-content;text-transform: uppercase;position: relative;top: -35px;}
.home-blog .left p{font-size:20px;color:#707070;line-height:27px;font-weight:400;margin-bottom:15px;max-width: 20rem;}
.home-blog .left h3{font-size: 39px;color:var(--primary-color);line-height: 53px;font-weight:700;max-width: 14rem;}
.home-blog .right {
  width: calc(100% * 2 / 3);
}

.home-blog .c-container-two{/* background:#E5E8EF; */border-radius:72px;}
.home-blog-content{max-width:var(--container-width);margin:0 auto;padding:130px 0;display:flex;align-items: stretch;justify-content:space-between;}
.blog .btn{padding:0;}
.blog-slider-dots .slick-dots {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
	width: 100%;
    justify-content: start;
    margin: 0 auto;
}
.blog-slider-dots .slick-dots  li {
    position: relative;
    display: inline-block;
    height: 3px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.blog-slider-dots .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    background: transparent;
    border: none;
}
.blog-slider-dots .slick-dots  li button:before {
    content: "";
    width: 48px;
    background: #002561;
    height: 4px;
    border: none;
    border-radius: 20px;
    opacity: .2;
    display: block;
}
.blog-slider-dots .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #002561;
}
.blog p{font-size:16px;color:#707070;line-height:22px;font-weight:400;margin-bottom:38px;}
.blog h4{font-size:18px;color:var(--primary-color);line-height:27px;font-weight:600;margin-bottom:10px;}
.site-footer {margin: 0 45px 0;background:var(--primary-color);border-radius: 72px 72px 0 0;padding:71px 0 43px;position:relative;}
.site-footer .logo{
    display: flex;
    align-items: center;
    gap: 20px;
	margin-bottom:72px;
}
.site-footer .logo h6{
    font-size: 11px;
    color: #fff;
    line-height: 14px;
    max-width: 6rem;
    font-weight: 400;
    margin-bottom: 0;
}
.site-footer .w-50{
  width:50%;
}
.site-footer .center{display:flex;align-items: stretch;justify-content:space-between;gap: 0;}
.site-footer .center .right{display:flex;align-items:start;justify-content:space-between;padding-left: 104px;border-left: 1px solid rgb(255 255 255 / 25%);padding-bottom: 40px;}
.site-footer .bottom{display:flex;align-items:start;justify-content:space-between;}
.site-footer .bottom .w-50{padding-top:50px}
.site-footer .bottom .right{display:flex;align-items:start;justify-content:space-between;padding-left: 104px;border-left: 1px solid rgb(255 255 255 / 25%);}
.site-footer .bottom ul{display:flex;align-items:start;justify-content:space-between;gap: 15px;}
.site-footer .footer-slogan{font-size:32px;font-weight:700;color:#fff;line-height:44px;max-width:28rem;margin-bottom: 75px;}
.social{display:flex;align-items:center;justify-content:start; gap:5px;}
.social i{height:72px;width:72px;border-radius:72px;border:1px solid #fff;color:#fff;font-size:26px;display:flex;align-items:center;justify-content:center;}
.social i:hover{color: var(--secondary-color);background: var(--white-color);}
.copyright{font-size:14px;color:#fff;line-height:19px;}
.site-footer .bottom ul a{font-size:14px;color:#fff;line-height:19px;}
.contact-info {display:flex;flex-direction:column;gap:15px;max-width: 15rem;margin-bottom: 55px;}
.contact-info a{width:max-content;color:#fff;font-size:20px;line-height:27px;}
.contact-info p{color:#fff;line-height: 26px;font-size: 18px;}
.site-footer .center .right ul li{
  margin-bottom:12px;
}
.site-footer .center .right ul li:last-child{
  margin-bottom:0;
}
.site-footer .center .right ul a{
   font-size:16px;line-height:27px;color:#fff;font-weight:700;
}
.site-footer .icon-arrow-up {position:absolute;top:71px;right:75px;height:64px;width:64px;background: var(--white-color);color: var(--primary-color);display:flex;align-items:center;justify-content:center;border-radius:64px;cursor:pointer;}
.contact-buttons {position:fixed;right:0;top: 23%;display: flex;flex-direction: column;background: var(--primary-color);padding: 10px 11px;gap: 10px;z-index: 2;border-radius: 15px 0 0 15px;}
.contact-buttons a{width:48px;height:48px;display: flex;align-items:center;justify-content:center;color: #fff;font-size: 30px;border-radius: 15px;transition: all .5s;}
.contact-buttons a:hover{background:#fff;color: var(--primary-color);}
.banner{position:relative;width: calc(100% - 126px);margin: 0 auto;}
.breadcrumb {
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 140px;
	 height: 80%;
}
.breadcrumb, .breadcrumb ul {
    align-items: center;
    display: flex;
    width: 100%;
}
.breadcrumb ul {
    justify-content: start;
    gap: 4px;
    margin-bottom: 7px;
    overflow: auto;
    white-space: nowrap;
}
.breadcrumb ul::-webkit-scrollbar {
    width: 0px;height:0;
}
.breadcrumb ul li {
    position: relative;
    padding-right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #707070;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}
.breadcrumb ul li a {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
}
.breadcrumb h1 {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -1.5px;
}
.breadcrumb-flex {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page{margin-bottom:110px;margin-top: 70px;}
.old-page{margin-bottom:110px;margin-top: 160px;}
.about-flex {display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap: 19px;}
.about-flex > div {width: calc(50% - 15px);}
.about-flex h2 {  color: var(--primary-color);letter-spacing: -1.5px;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;margin-bottom:40px;}
.about-flex p {
    color: #707070;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 20px;
    }
.about-flex p strong {
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
    margin-bottom:30px;
    display: block;
    }
.about-flex	.page-img {text-align:center;}
.old-flex {display:flex;gap: 30px;}
.old-page .w-33{
    border: 1px solid #D1D1D1;
    padding: 48px 35px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.old-page .w-33 > i{
   width:96px;
   font-size: 92px;
   color: var(--primary-color);
}
.old-page .w-33 p{
	margin-bottom:20px;
	 font-size: 14px;
	 color:#707070;
	 line-height:19px;
}
.old-page .w-33 a{
	padding:0;
   font-weight:500;
   font-size: 20px;
   color: var(--primary-color);
}
.old-page .w-33 a i{
   font-size: 14px;
   color: var(--primary-color);
}
.page-quality img{width:330px;height:500px;object-fit:cover;}
.page-quality p{
	 text-align: center;
	 font-size: 24px;
	 color:#707070;
	 line-height:33px;
	 font-weight:600;
	 letter-spacing: -1px;
	 max-width: 56rem;
	 margin:0 auto 80px;
	 }
 .form-policy-group label {
    padding-left: 36px;
    opacity: .8;
    height: 100%;
    z-index: 9;
    color: #707070;
}

.form-policy-group {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    padding-left: 0;
    min-height: 27px;
    margin-bottom: 45px;
}

.form-policy-group input {
    width: 0px;
    height: 0px;
    opacity: 0;
    position: absolute
}

 .form-policy-group:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 2px solid #707070;
    border-radius: 5px;
}

.form-policy-group:after {
    content: "\e81e";
    font-family: "evopharma-icon-font";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    color: #002561;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    opacity: 0
}

.form-policy-group:has(input:valid):after {
    opacity: 1
}
.human-resources{margin-bottom:115px;}
.human-resources-flex{
    display: flex;
    align-items: stretch;
    flex-wrap:wrap;
    gap:15px;
}
.human-resources-flex .w-50{
width:calc(50% - 15px)
}
.human-resources-flex .w-50:last-child{
   margin-left: 8.5%;
   padding-left: 9%;
   border-left: 1px solid #D1D1D1;
   width: calc(41% - 7px);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
.form form {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    align-items: center;
    justify-content: start;
    column-gap: 30px;
}
#careerForm button[type="submit"] {display:none;}
.form .custom-select, .form select {
    width:100%;
}
.form .form-input{
    width: calc(50% - 15px);
}
.form .form-text {
    width: 100%;
    position: relative;
}

.form input,.form textarea {
    border: 1px solid #d9d9d9;
    color: #ABABAB;
    font-size: 16px;
    width: 100%;
    padding: 16px 14px;
    height: 64px;
    border-radius: 5px;
}
.form input::placeholder,.form textarea::placeholder {
   
    color: #ABABAB;
  
}
.form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 0;
    min-height: 120px;
    max-width: 100%;
    min-width: 100%;
}
.custom-select select,.select-hide {
    display: none;
}
.custom-select {
    position: relative;
    height: 64px;
    padding: 0;
    outline: 0;
    color: #707070
}

.select-selected {
    border: 1px solid #D1D1D1;
    border-radius: 5px;
}

.select-selected:after {
    content: "\e801";
    font-family: "evopharma-icon-font";
    position: absolute;
    top: 30px;
    right: 0;
    width: 20px;
    height: 20px;
    font-size: 10px;
    color: #ABABAB !important;
    font-weight: 700
}

.select-selected.select-arrow-active:after {
    content: "\e802"
}

.select-items div,.select-selected {
    color: #ABABAB!important;
    padding: 0 10px;
    cursor: pointer;
    user-select: none;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    opacity: 1;
}

.select-items div {
    height: 53px;
    border-bottom: 1px solid #D1D1D1;
    color: #1d1d1d!important
}

.select-items {
    position: absolute;
    background-color: #000;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 225px;
    overflow: auto;
    border: 1px solid #D1D1D1;
    border-top: none;
    border-radius: 5px;
}

.same-as-selected,.select-items div:hover {
    background-color: var(--primary-color);
    color: #fff!important
}
.select-selected:not(.select-arrow-active) + .select-items {display:none;}
.form-group.form-file-group{position:relative;width: max-content;display: flex;flex-direction: column;justify-content: start;align-items: start;background: #E5E8EF;border-radius: 16px;padding: 30px 40px 30px 75px;cursor: pointer;}
.form-group.form-file-group:before{
    content: "\e806";
    font-family:"evopharma-icon-font";
    position: absolute;
    top: 0;
    bottom:0;
    left: 40px;
    font-size: 30px;
    color: var(--primary-color) !important;
    font-weight: 400;
    height: 100%;
    display: flex;
    align-items: center;
    }
.form-group.form-file-group input {
   display:none;
}
.form-group.form-file-group label {color:var(--primary-color);font-weight:400;font-size:12px;line-height:22px;cursor:pointer;}
.form-group.form-file-group .placeholder-title {font-weight:600;font-size:16px;}
.human-resources h2{font-size:24px;font-weight:600;margin-bottom:32px;color:var(--primary-color);line-height:64px;}
.human-resources p{font-size:20px;font-weight:400;color:#707070;line-height:27px;}
 .banka-karti {
      display: flex;
      border-radius: 24px;
      background: #fff;
      padding: 0px 25px 0  0;
      align-items: center;
      margin-bottom: 30px;
      box-shadow: 0px 0px 32px -10px rgba(112,112,112,0.29);
      -webkit-box-shadow: 0px 0px 32px -10px rgba(112,112,112,0.29);
      -moz-box-shadow: 0px 0px 32px -10px rgba(112,112,112,0.29);
    }

    .banka-logo {
      flex: 0 0 234px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .banka-logo img {
      max-width: 100%;
    }

    .banka-bilgileri {
      flex: 1;
      padding: 0 10px 0 36px;
    }

    .banka-bilgileri h3 {
      margin-top: 0;
      color: #707070;
      font-size: 20px;
      font-weight: 700;
      line-height: 27px;
      margin-bottom: 27px;
    }

    .banka-bilgileri p {
      margin: 5px 0;
      color: #707070;
      font-size: 16px;
      margin-bottom: 11px;
    }
 .banka-bilgileri p strong{
    font-weight:600;
    min-width:110px;
    display: inline-block;
    }

    .iban-kutusu {
      border-radius: 24px;
      padding: 40px 40px 45px;
      min-width: 250px;
      display: block;
      box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
      -webkit-box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
      -moz-box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
    }

    .iban-kutusu span {
      font-size: 20px;
      line-height: 27px;
    }
 .iban-kutusu h4 {
	  color: var(--primary-color);
      font-size: 20px;
	 font-weight:600;
      line-height: 27px;
	  margin-bottom:20px;
    }
 .iban-kutusu h5 {
	  color: var(--primary-color);
      font-size: 16px;
      line-height: 16px;
	 margin-bottom:-5px;
	 font-weight:600;
    }
.iban-kutusu-flex{display:flex;align-items:center;gap:10px;}
    .iban-kutusu .iban {
      font-weight: 400;
      color: var(--primary-color);
      margin-top: 5px;
      display: inline-block;
    }

    .copy-button {
      display: flex;
      margin-left: 10px;
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 13px;
      cursor: pointer;
      gap: 10px;
      align-items: center;
      background: #fff;
      border: 1px solid #D1D1D1;
    }
 .copy-button:hover {
    background:#F1F1F1;
    }
 .copy-button i{
    font-size: 20px;
    color: #707070;
    }
	.referances-flex {margin-top:78px;display:flex;align-items:start;flex-wrap: wrap;text-align: center;gap: 23px;justify-content: center;}
	.referances-flex .referance {
      min-width:330px;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
      -webkit-box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
      -moz-box-shadow: 0px 0px 62px -10px rgba(112,112,112,0.20);
      cursor: pointer;
      width: calc(calc(100% / 3 ) - 18px);
      padding: 10px 25px 10px 25px;
      }
	.referances-flex .referance .firma{position:absolute;bottom: 0px;height:60px;display:flex;align-items:center;justify-content:center;font-size:16px;color:#707070;width: 100%;left: 0;}
	.referances p {
    text-align: center;
    font-size: 24px;
    color: #707070;
    line-height: 33px;
    font-weight: 600;
    letter-spacing: -1px;
    max-width: 56rem;
    margin: 0 auto 0px;
}
.services .service{margin-bottom:94px;display:flex;align-items:center;justify-content: space-between;gap: 30px;flex-wrap: wrap;}
.services .service img{border-radius:72px;max-width: 810px;}
.services .service:nth-child(even){flex-direction:row-reverse;}
.services .service .content{width:450px;}
.services .service .content h4{font-size:32px;font-weight:700;letter-spacing:-1.5px;color:var(--primary-color);margin-bottom:15px;line-height:40px;}
.services .service .content p{font-size:20px;font-weight:500;color:#707070;margin-bottom:63px;line-height:27px;}
.banner .bottom{display:flex;align-items:end;justify-content:space-between;}
.banner .bottom p{font-size:24px;font-weight:600;letter-spacing:-1px;color:#707070;line-height:33px;max-width: 43rem;margin-top: 40px;}
.banner-services .breadcrumb {
 
    height: 92%;
}
.services-detail {display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;}
.services-detail p{width:50%;font-size:20px;line-height:27px;color:#707070;}
.services-detail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white-color);
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: all .5s;
  font-weight: 400;
  padding: 24px 26px;
  background-color: var(--secondary-color);
	gap: 10px;
}
.services-detail a  i {
  font-size: 24px;
  color: var(--white-color);
}
.services-detail a:hover {
background-color:#63AF37;
}
.services-detail-banner {margin-top:112px;position:relative;overflow:hidden;display: flex;}
.services-detail-banner img{border-radius:72px;min-height:400px;object-fit:cover;}
 .product-overlay {
      position: absolute;
      top: 0;
      right: 120px;
      width: max-content;
      height:100%;
      display: flex;
      align-items: center;
    }
 .product-overlay-center {
    
      padding: 58px 30px;
      border-radius: 36px;
      height: max-content;
      width: max-content;
      background: rgba(229, 232, 239, 0.61); /* #E5E8EF + %61 opacity */
      backdrop-filter: blur(8px) brightness(0.9);
      -webkit-backdrop-filter: blur(8px) brightness(0.9); /* Safari için */
      border: 1px solid #E5E8EF;
      /* text-align: center; */
      min-width: 450px;
	 display: flex;
      flex-direction: column;
      align-items: center;
    }

    .product-overlay h3 {
      font-size: 24px;
      margin-bottom: 24px;
      font-weight: 600;
      line-height: 33px;
      color: var(--primary-color);
      text-align: center;
    }
 .product-overlay a {
    text-transform:uppercase;
	 
    }
 .product-overlay a:hover {
  margin-left:8px;
	 
    }
	.contact-maps {
	margin-top:110px;
    width: 100%;
    height: 60vh;
	max-height:500px;
    position: relative;
}
.contact-maps #map {
    height: 100%;
    width: 100%;
	border-radius:72px;
}
.contact-page h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--primary-color);
    line-height: 64px;
}
.contact-flex {display:flex;align-items:start;justify-content:space-between;}
.contact-page .form-policy-group {margin-bottom:0px;}
.page-contact-info {display:flex;flex-direction:column;gap:10px;}
.page-contact-info p {font-size: 23px;line-height: 31px;color:#707070;max-width: 18rem;}
.page-contact-info button {padding:0;margin-bottom:10px;}
.page-contact-info a {font-size:20px;line-height:27px;color:#707070;max-width: 18rem;display:flex;align-items:center;gap:15px;font-weight:500;margin-bottom:12px;}
.page-contact-info a:hover {color:var(--secondary-color);}
.page-contact-info .social {margin-top:30px;}
.page-contact-info .social i{border:1px solid #707070;color:#707070;font-size:24px;}
.page-contact-info .social i:hover{border:1px solid var(--secondary-color);color:var(--white-color);font-size:24px;}
.page-kvkk p,.page-kvkk a{color:#707070;line-height:22px;font-size:16px;font-weight:400;}
.page-kvkk h2{color:#707070;line-height:27px;font-size:20px;font-weight:400;margin-top:25px;font-weight:500;}
.news-flex {display:flex;align-items: stretch;flex-wrap:wrap;gap:30px;}
.page-news .blog {margin-left:0;   border: 1px solid #eee;}
.blog-detail-flex {display:flex;flex-wrap:wrap;justify-content:space-between;margin-top: -30%;position: relative;margin-bottom:76px;}
.blog-detail-flex img{width: 57.44%;height:550px;object-fit:cover;border-radius: 36px;}
.blog-detail-flex .left{width: calc(100% - 57.45%);max-width: calc(100% - 57.45%);display: flex;flex-direction: column;justify-content: space-between;padding: 100px 0 0px;}
.blog-detail-flex .left h1{font-size: 38px;color:var(--primary-color);line-height: 55px;letter-spacing:-1.5px;font-weight:600;}
.blog-detail-flex .left p {font-size:24px;color:#707070;line-height:33px;font-weight:500;max-width: 32rem;}
.blog-detail-text p,.blog-detail-text a,.blog-detail-text li{color:#707070;line-height:22px;font-size:16px;font-weight:400;}
.blog-detail-text ul{margin-left:20px}
.blog-detail-text li{list-style: disc;}
.blog-detail-text h2{color:#707070;line-height:27px;font-size:20px;font-weight:400;margin-top:25px;font-weight:500;}
.blog-detail-text h3{color:#707070;line-height:27px;font-size:18px;font-weight:400;margin-top:25px;font-weight:500;}
.other-blogs {margin-bottom:110px;}
.other-blogs-bg {background:#E5E8EF;border-radius:72px;padding:68px 0;}
.other-blogs .blog {margin-left:0;margin-right:30px;}
.other-blogs h2 {text-align:center;color:var(--primary-color);font-size:32px;font-weight:600;line-height:44px;letter-spacing:-1.5px;margin-bottom:40px;}
.category-flex,.product-list-flex{display:flex;align-items:start;gap:30px;flex-wrap:wrap;}
.category-flex .product,.product-list-flex .product,.other-product .product{border:1px solid #D1D1D1;}
 .product-box {
      display: flex;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      text-align: center;
      width: max-content;
      padding: 36px 0;
    }

    .product-box > div {
      flex: 1;
      padding: 1px 0px;
      border-right: 1px solid #eee;
      max-width: 190px;
      width: 190px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .product-box > div:last-child {
      border-right: none;
    }

    .title {
      font-size: 13px;
      color: #707070;
      line-height: 18px;
      font-weight: 400;
      margin-bottom: 20px;
    }

    .value {
      font-weight: bold;
      font-size: 16px;
      color: #707070;
    }

    .status {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }

    .dot {
      width: 7px;
      height: 7px;
      background: #71BF44;
      border-radius: 7px;
    }
 .dot.red {
   
      background: #b51625;
    }
.down-link{font-size:13px;color:#707070;line-height: 18px;font-weight: 400;max-width: 9rem;cursor: pointer;}
.technic-table{margin-top: 15%;}
.technic-table h2{color:#707070;font-size:24px;font-weight:700;margin-bottom:31px;}
.technic-table ul{margin-left:20px;}
.technic-table ul li,.technic-table p{list-style: disc;font-size: 16px;color: #707070;line-height: 28px;}
.technic-table-2{margin-top:25px;margin-bottom: 60px;}
.technic-table-2 .table-overflow{max-height: 400px;overflow: auto;}
.technic-table-2 table{width:100%}
.technic-table-2 h2{color:#707070;font-size:24px;font-weight:700;margin-bottom:31px;}
.technic-table-2 ul{margin-left:20px;}
.technic-table-2 ul li,.technic-table-2 p{list-style: disc;font-size: 16px;color: #707070;line-height: 28px;}
.technic-table-2 table {margin: 30px auto;text-align: center;border-collapse: separate;border-spacing: 13px 6px;max-height: 324px;overflow: auto;}
 .technic-table-2 table th,.technic-table-2 table td {
   
    padding: 10px;
  }
 .technic-table-2 table th {
     border-bottom: 1px solid var(--primary-color); font-weight:600;color:var(--primary-color);font-size:18px;
   
  }
  .technic-table-2 table tbody tr:nth-child(even) {
    background-color: #fafafa;
  }
.product-detail-flex {display:flex;align-items:stretch;justify-content:space-between;margin-top: -30%;position: relative;}
.product-detail-flex .w-50 {
    width: min-content;
}
.product-detail-img {
    border-radius: 72px;
    box-shadow: 0px 0px 32px -10px rgba(112, 112, 112, 0.29);
    -webkit-box-shadow: 0px 0px 32px -10px rgba(112, 112, 112, 0.29);
    -moz-box-shadow: 0px 0px 32px -10px rgba(112,112,112,0.29);
    background: #fff;
    padding-right: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-width: 690px;
    max-width: 50%;
}
.large-img {width:calc(100% - 96px);}
.product-detail-thumbnail {display:flex;align-items:center;flex-direction:column;gap:10px;}
.product-detail-thumbnail img{border:1px solid #00000000;border-radius:10px}
.product-detail-thumbnail img:hover,.product-detail-thumbnail img.active{border-color:var(--secondary-color);cursor:pointer;}
.product-phone { display: flex; align-items:center;justify-content:center;margin-top:40px;}
.product-phone a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white-color);
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: all .5s;
  font-weight: 400;
  padding: 24px 26px;
  background-color: var(--secondary-color);
	gap: 10px;
}
.product-phone s i {
  font-size: 24px;
  color: var(--white-color);
}
.product-phone a:hover {
background-color:#63AF37;
}
.product-detail h1,.product-detail .marka{font-size: 28px;font-weight:500;line-height: 48px;letter-spacing:-1.5px;margin-bottom: 56px;color: var(--primary-color);}
.product-detail .marka{margin-bottom:0px;font-weight:600;font-size:36px}
.other-product-slider .slick-slide {
  margin: 0 15px; 
}
.other-product{margin-bottom:110px;margin-top:165px;}
.other-product h3{color:var(--primary-color);font-size:32px;font-weight:600;margin-bottom:70px;letter-spacing:-1.5px;text-align:center;}
.product-slider-dots {margin-top:55px;}
.product-slider-dots .slick-dots {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
	width: 100%;
    justify-content: center;
    margin: 0 auto;
}
.product-slider-dots .slick-dots  li {
    position: relative;
    display: inline-block;
    height: 3px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.product-slider-dots .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    background: transparent;
    border: none;
}
.product-slider-dots .slick-dots  li button:before {
    content: "";
    width: 48px;
    background: #002561;
    height: 4px;
    border: none;
    border-radius: 20px;
    opacity: .2;
    display: block;
}
.product-slider-dots .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #002561;
}
.menu-wrapper {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    background: #fff;
    height: 100%;
    padding: 35px 40px 40px 40px;
    width: 420px;
    overflow: auto;
    transition: .3s;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    max-width: 100%
}
.form-input label,.form-text label,.custom-select > label{display: none;}
.contact-page .form .form-input:nth-child(8) {
    width: 100%;
}
.blog img{
border-radius: 32px;
    aspect-ratio: 5 / 3;}


.d-1024-block, .d-768-block, .radiusdijital-mobile, .d-800-block, .d-1200-block { display: none; }

@media(max-width:1700px){
.banner {
 width: calc(100% - 30px);
 border-bottom-left-radius: 64px;
 overflow: hidden;
}
	.banner>picture img{
 min-height:400px;
 object-fit: cover;
 object-position: right;
}
.blog h4 {
    font-size: 19px;
  
}
.banner-services .breadcrumb {
    height: 97%;
}
.banner-services{min-height: 620px;}
    .banner-services>picture img {
        min-height: 620px;
    }
}
@media(max-width:1550px){
.product-detail-img {
  min-width: 600px;
}
.product-detail h1 {
    margin-bottom: 35px;
    max-width: 96%;
    min-height: 100px;
}
.product-detail-flex {
  
    margin-top: -26%;
}
}
@media(max-width:1500px){
:root {
   --container-width: calc(100% - 90px);
    --container-width-2: calc(100% - 60px);
   }
   .site-footer {
    margin: 0 30px 0px;
}
.home-services-flex {
  
    gap: 30px;
}
.home-services-flex li {

    font-size: 26px;
    line-height: 40px;

}
.home-product {
  
    padding-top: 110px;
}
.home-blog-content {
    max-width: 100%;
    padding-left: 30px;
}
.page-news .blog {
    width: calc(100% / 3 - 20px);
   
}
.page-news .blog .blog-img:after {
    height: 47%;
}
.blog-detail-flex {
  
    margin-top: -27%;
}
.blog-detail-flex .left h1 {
    font-size: 36px;
    line-height: 48px;
}
}
@media(max-width:1366px){
    .site-footer .w-50{
    width: 60%;
}
.site-footer .w-50:not(.right) {
    width: 40%;
}
.site-footer .footer-slogan {
    font-size: 24px;
    line-height: 32px;
    max-width: 25rem;
}
.about-flex h2 {

    font-size: 48px;
    line-height: 60px;
}
.site-footer .logo img{
    height: 29px;
}
.site-footer .logo {
    align-items: start;
    gap: 4px;
   flex-direction: column;
}
.site-footer .logo h6 {
max-width: 100%;

}
.home-services-flex > div img {
 
    margin-left: 0px;
}
.iban-kutusu span {
    font-size: 16px;
}
.banka-bilgileri h3 {
  
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 20px;
}
.product-detail-img {
        min-width: 600px;
    }
     .banner-product>picture img {
        min-height: 510px;
        
    }
    .page.product-detail {
    margin-top: 20px;
}
.page-news .blog .blog-img:after {
    height: 50%;
}
    .blog-detail-flex {
        margin-top: -30%;
    }
	header .menu li {
 
    margin-left: 25px;
}
.home-category-content p {
    font-size: 16px;
 text-align: center;
}
}
@media(max-width:1300px){
header .logo {
 flex-direction:column;
 align-items: start;
}
header .logo-text {
    max-width: 11rem;
}
.product-box > div {
  
    width: 160px;
}
.page-news .blog .blog-img:after {
    height: 55%;
}
	    header .menu li:nth-child(4) {
      display:none;
    }
}
@media(max-width:1200px){
.iban-kutusu {
   
    padding: 40px 25px 45px;
  
}
.banka-logo {
    flex: 0 0 180px;
   
}
    .banka-karti {
      padding: 20px 20px 20px 0px;
    }
    .banka-bilgileri {
    
    padding: 0 10px 0 10px;
}
    .product-detail-img {
        min-width: 525px;
    }
	.home-services-flex li {
        font-size: 24px;
       
    }
        .blog-detail-flex {
      margin-bottom: 15px;
        flex-direction: column;
    }
    .blog-detail-flex img {
    width: 100%;
   
}
.blog-detail-flex .left {
    width: 100%;
    max-width:  100%;
  padding: 50px 0 0px;
}
.blog-detail-flex .left p {

    max-width: 100%;
}
.d-1200-block{display: block;}
.d-1200-none{display: none;}
    .blog-detail-flex .left h1 {
      margin-bottom: 48px;
    }
        .blog-detail-flex {
        margin-top: -36%;
    }
    .blog-detail-flex p {
    font-size: 24px;
    color: #707070;
    line-height: 33px;
    font-weight: 500;
    margin-top: 60px;
}
}
@media(max-width:1170px){
    header .logo {
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.breadcrumb {
  
    padding-top: 160px;
}
header .logo-text {
  max-width: initial;
}
.scroll-text d{
   display: none;
}
  .product {
    width: 300px;
    padding: 15px 0px;
}
.product .category-name {
  
    font-size: 18px;
}
.product .product-img {
    margin-bottom: 0px;
   
}
.product .product-img img {
  
    padding: 11px;
}
.product .product-name {
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 18px;
}
.product b {
   
    font-size: 9px;
}
.home-about-left .title2 {
   
    font-size: 32px;
    line-height: 40px;
}
.banka-karti {
    flex-wrap: wrap;
}
.banner-services{min-height: 648px;}
    .banner-services>picture img {
        min-height: 640px;
    }
    .banner-services .bottom img{
  
    width: 380px;
    }
    .banner-title{width: calc(100% -  410px)}
      .product-detail-flex {
        margin-top: -30%;
    }  
        .product-detail h1 {
        margin-bottom: 30px;
        min-height: 75px;
        font-size: 38px;
    }
        .page-news .blog {
        width: calc(100% / 2 - 15px);
    }
  .page-news  .blog .content {
   
    height: initial;
}
    .page-news .blog .blog-img:after {
        height: 123px;
        bottom: initial;
        top: calc(100% - 100px);
    }
    .bayilerimiz .col-6 {width: 100%;}
    .bayii-filter .input {
  min-width: 150px;
  
    width: initial !important;
}
.bayii-filter .konum {white-space: nowrap;  padding: 0 10px !important;}
 .home-category-content p strong {
    display: block;
}
}
@media(max-width:1100px){
    .product-detail-img {
      
        flex-direction: column;
    }
    .product-detail-thumbnail {

    flex-direction: row;
    gap: 10px;
    margin-bottom: 23px;
}
    .product-detail-img {
        min-width: 430px;
    }
        .product-detail h1 {
        margin-bottom: 3px;
        min-height: 80px;
        font-size: 36px;
        line-height: 49px;
    }
        .banner-product>picture img {
        min-height: 460px;
        
    }
    .page.product-detail
 {
    margin-bottom: 110px;
    margin-top: 20px;
}
    .home-services-flex li {
        font-size: 20px;
    }
    }
@media(max-width:1024px){
.about-flex > div {
    width: 100%;
}
.about-flex {

    flex-direction: column-reverse;
}
.home-about-left {
 
    gap: 10px;
    flex-direction: column;
}
    .home-services-flex {
        gap: 50px;
        flex-direction: column-reverse;
    }
    .home-services-flex > div {
    width: 100%;
   align-items: center;
}
.home-services-flex > div p {
  text-align: center;
    max-width: 100%;
}
    .home-services-flex > div img {
      
        margin: 0 auto;
    }
.home-services-right ul {display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-direction: column;}
    .home-services-flex > div .title1 {
  text-align: center;
  margin-bottom: 45px;
}
.d-1024-block{display: flex;align-items: center;justify-content: center;position: relative;margin-top: 40px;}
.d-1024-none{display: none;}
.home-banner-content .content {
   left: initial;
   right: 30px;
}
    .iban-kutusu {
       width: calc(100% - 20px);
       margin-left: 20px;
    }
        .banka-logo {
        flex: 0 0 240px;
    }
    .services .service img {
    border-radius: 36px;
    max-width: initial;
    width: 100% ;
}
.services .service .content {
    width: 100%;
}
.services .service .content p {
  
    margin-bottom: 15px;
  
}
.services .service .content .btn {
    padding: 16px 0px;
   
}
    .product-detail-flex {
        flex-direction: column;
    }
        .product-detail-thumbnail {
        flex-direction: column;
       
    }
        .product-detail-img {
        flex-direction: row;
    }
        .product-detail-img {
        width: 100%;
        min-width: calc(100vw - 120px);
    }
    .technic-table {
    margin-top: 30px;
}
.product-detail-flex .w-50 {
    width: 100%;
}
.product-box {border: 1px solid #D1D1D1;margin-top: 50px;width: 100%;}
    .product-box > div {
        width: calc(100% / 3);
        max-width: initial;
    }
}

@media(max-width:991px){
     .open-menu .menu-wrapper {
        transform: translateX(0);
        opacity: 1;
        visibility: visible
    }

    .menu-wrapper .close-button {
        text-align: right;
        margin-bottom: 0;
        cursor: pointer;
        display: flex;
        justify-content: end;
    }
.toggle-menu{color:#fff;background:var(--secondary-color);height:48px;width:48px;display: flex;align-items: center;justify-content: center;border-radius: 5px;}
    .menu-wrapper .menu>ul {
        list-style: none;
        padding: 0;
        margin: 34px 0 0;
        font-size: 18px
    }

    .menu-wrapper .menu>ul>li>a,.menu-wrapper .menu>ul>li>span {
       color: var(--primary-color);
        display: block;
        padding: 10px 0;
        font-weight: 500;
        cursor: pointer
    }

    .menu-wrapper .menu>ul>li>ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none
    }
    .menu-wrapper .icon-home{color: var(--secondary-color);}
    .menu-wrapper .menu>ul>li>ul>li a {
        padding: 10px 0;
        display: flex;
        color: var(--primary-color);
        font-size: 16px;
        align-items: center;
    }

    .menu-wrapper .menu>ul>li>ul>li a:before {
        content: "\e800";
        font-family: 'evopharma-icon-font';
        margin-right: 10px;
        font-size: 10px
    }
    header .menu {
  
    display: none;
}
    header .logo img{
     height: 34px;
     width: initial;
    }
.menu-btn{cursor: pointer;display: flex;height: 48px;width: 48px;background: var(--secondary-color);align-items: center;justify-content: center;color: #fff;border-radius: 5px;}
.site-footer .center .right {

    padding-left: 30px;
}
.human-resources-flex .w-50:last-child {
    margin-left: 4.5%;
    padding-left: 6%;
    width: calc(45% - 7px);
  
}
.contact-flex {
   flex-direction: column;
   gap:40px;
}
.contact-flex  .w-50 {
    width: 100%;
}
.services-detail-banner img {
    border-radius: 72px;
    min-height: 330px;
    object-fit: cover;
}
.product-overlay {
   
    right: 5%;
}
   .blog-detail-flex {
        margin-top: -42%;
    }
}
@media(max-width:890px){
.banner .bottom {
    align-items: center;
    justify-content: center;
    flex-direction: column;text-align: center;
    gap:30px;
}
    .banner-title {
        width: 100%;
    }
        .banner-services .bottom img {
        width: initial;
    }
    .banner .bottom p {
   
    margin: 40px auto;
}
    .banner-services>picture img {
       
        max-height: 950px;
    }
        .banner-services .breadcrumb {
        height: 100%;
    }
     .home-category-flex > div {
  
    width: calc(50% - 10px);
    border-radius: 20px;
}
}
@media(max-width:800px){
  .services-detail {align-items: center;flex-direction: column;gap: 30px;text-align: center;}
.services-detail p {
    width: 100%;
  
}
	.home-banner-content .content {
   left: 0;
   justify-content: end;
   height: 100%;
   align-items: center;
   width: 100%;
   padding-bottom: 50px;
   text-align: center;
}
.scroll-text {
   position: relative;
   left: 80px;
   top: 15px;
}
.breadcrumb-flex {
justify-content: initial;align-items: center;
}
.breadcrumb ul {
    justify-content: center;
   
}
.referances-flex .referance {
    width: 45%;
    min-width: initial;
}
.referances-flex .referance .firma {
   bottom: 2px;
   font-size: 13px;
   height: 28px;
}
.human-resources-flex {
  
    flex-direction: column;
}
.human-resources-flex .w-50 {
    width: 100%;
}
    .human-resources-flex .w-50:last-child {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        border: none;
    }
    .human-resources p {
  display: none;
}
.form .w-recaptcha {width: 100%;}
.form-group.form-file-group {
 
    padding: 30px 30px 30px 60px;
  
}
.form-group.form-file-group:before {
    left: 20px;}
    .d-800-block{display: block;}
    .d-800-block p{display: block;margin-bottom: 50px;}
    .human-resources h2 {
    margin-bottom: 10px;}
        .blog-detail-flex .left h1 {
       
        text-align: center;
    }
        .blog-detail-flex {
        margin-top: -54%;
    }
}
@media(max-width:768px){
	.home-about .icon-favicon {
    font-size: 23rem;
    top: -15px;
}
.home-about-flex {
  flex-direction: column;
  padding-top: 70px;
}
.home-about-flex > div {
   width: 75%;
   gap: 25px;
}
	.home-about-flex > .home-about-text {
   width: 100%;
}
.home-blog-content {

    flex-direction: column;
    gap: 40px;
}
.home-blog .left {
    width: 100%;
align-items: center;
}
.home-blog .right{ width: 100%;}
.home-blog-content {padding: 65px 0 65px 30px;}
.home-blog .left p {
   
    text-align: center;
    margin: 0 auto 15px;
}
.home-blog .left h3 {
  
    text-align: center;
    margin: 0 auto 40px;
}
.d-768-none{display: none;}
.d-768-block{display: flex;}
.blog-slider-dots .slick-dots {
  
    justify-content: center;
    margin: 25px auto 0;
}
        .banka-logo {
        flex: auto;
        width: 100%;
    }
        .banka-bilgileri {
        width: calc(100% - 20px);
        margin-left: 20px;
        margin-bottom: 27px;
    }
    .banka-logo img {
    max-width: 240px;
    height: initial;
}
    .product-overlay {
        left: 0;top:initial;
        bottom: 50px;
        justify-content: center;
        width: 100%;
        align-items: end;
    }
        .product-detail h1,.product-detail .marka  {
      
        text-align: center;
    }
        .breadcrumb ul {
       
        flex-wrap: wrap;
    }
	    .page-news .blog {
        width: 100%;
    }
        .blog-detail-flex {
        margin-top: -100%;
    }
}
@media(max-width:600px){
    :root {
        --container-width: calc(100% - 48px);
        --container-width-2:100%;
    }
     .site-footer {
    margin: 0px 0px 0px;
    text-align: center;
    border-radius: 36px 36px 0 0;
}
    .banner {
        width: calc(100% - 0px);
      
    }
.menu-wrapper {
  
    padding: 35px 24px 40px 24px;
   
}
.scroll-text d{
   display: none;
}
.site-footer .center {

    flex-direction: column;
}
    .site-footer .center .right {
        padding-left: 0px;
        flex-direction: column-reverse;
        gap: 30px;padding-bottom: 0px;
    }
    .site-footer .bottom {
  
    flex-direction: column-reverse;
}
.radiusdijital{display: none;}
.site-footer .bottom ul {
    flex-direction: column;
}
    .site-footer .w-50:not(.right),.site-footer .w-50 {
        width: 100%;
    }
    .site-footer .icon-arrow-up {
  display: none;
}
.home-services {
margin-top: 90px;
    padding: 75px 0px 55px;
  
}
.home-product-top {
    margin-bottom: 45px;
    flex-direction: column;
    gap: 25px;
}
.home-product-text1 {
  margin-bottom: 15px;
  font-size: 14px;
}
.site-footer .center .right,.site-footer .bottom .right {align-items: center;border-left: 0px solid rgb(255 255 255 / 25%);padding-left: 0;justify-content: center;}
    .site-footer .logo {
        align-items: center;
        margin-bottom: 30px;
    }
.site-footer   .social {
    justify-content: center;
    margin-bottom: 30px;
}
    .site-footer .footer-slogan {
        font-size: 22px;
      
        margin-bottom: 30px;
    }
    .contact-info {

align-items: center;

margin: 0 auto 55px;
}
.radiusdijital-mobile{display: flex;align-items: center;justify-content: center;margin-top: 30px;}
.blog {
    max-width: 450px;
   width: calc(100vw - 60px);
   margin-left: 0;
   margin-right: 0;
}
    .home-blog-content {
        padding: 65px 30px 65px 30px;
    }
    .blog .blog-img:after {

    height: 55%;
}
.blog .content {
    padding: 30px 20px;
  
}
.slider .content .text1 {
    font-size: 14px;
    line-height: 20px;}
    .slider .content .text2 {
    font-size: 32px;
    line-height: 36px;margin-bottom: 30px;}
    .slider .content {
  
    bottom: 14%;
}
    .scroll-text {
        position: relative;
        left: 40px;
        top: 30px;
    }
    .home-services-flex > div .title1 {
    font-size: 16px;
    line-height: 26px;
}
    .home-services-flex li {
        font-size: 18px;
        line-height: 26px;
    }
    .home-product-text2 {
   
    line-height: 49px;
    font-size: 36px;
    text-align: center;
}
.home-banner-content h4 {
    font-size: 14px;
    line-height: 19px;
    max-width: 19rem;
    }
    .home-banner-content h5 {
    font-size: 24px;
    line-height: 32px;
    max-width: 19rem;
    }
    .home-banner .btn-contact-blue {
    font-size: 12px;
    font-weight: 400;
    padding: 19px 10px;
    }
.home-banner    .btn-contact-blue i {
    font-size: 19px;
}
.home-services-bg {
   border-radius: 36px;

}
.home-banner-content {
    border-radius: 36px;
}
.home-product {

    border-radius: 0 0 36px 36px;
}
.home-blog .c-container-two {
  
    border-radius: 36px;
}
    .about-flex h2 {
        font-size: 32px;
        line-height: 44px;
    }
    .about-flex p strong {
    font-size: 20px;
    line-height: 27px;
}
.about-flex p {
   
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
}
.old-page {
  
    margin-top: 80px;
}
.old-page .w-33 {
    padding: 42px 35px;}
    .old-page .w-33 > i {
    width: 72px;
    font-size: 72px;
    margin: 0;
}
    .old-page .w-33 {
        min-width: 100%;
        gap: 30px;
    }
    .page-quality p {
  
    font-size: 20px;
    line-height: 27px;
}
.breadcrumb h1 {
  
    font-size: 36px;
}
.form .form-input {
    width: 100%;
}
    .iban-kutusu span {
        font-size: 13px;
    }
    .contact-maps #map {
  
    border-radius: 36px;
}
.services-detail-banner img {
    border-radius: 36px;
}
    .banner-services>picture img {
        max-height: initial;
    }
       .banner-services  .bottom p {
        margin: 18px auto;
        font-size: 16px;
        line-height: 22px;
    }
    .breadcrumb ul li,.breadcrumb ul li a {
    font-size: 11px;
}
.product-overlay-center {

    width: calc(100% - 50px);
    min-width: initial;

}
    .breadcrumb {
        padding-top: 121px;
    }
        .banner-services .bottom img {
        width: 80%;
    }
    .product-overlay h3 {
    font-size: 20px;
   
}
    .breadcrumb h1 {
        text-align: center;
    }
    .product-list .product,.category  .product{
        width: 100%;
        padding: 15px 0px;
    }
        .banner-product>picture img {
        height: auto;
        min-height: auto;
    }
        .product-detail-flex {
        margin-top: -72%;
    }
        .product-detail h1 {
    text-align: center;margin-top: 15px;font-size: 26px;
        line-height: 40px;
    }
        .product-detail-img {
        min-width: 100%;flex-direction: column;
    border-radius: 36px;
    }
       .large-img {
    width: calc(100% - 30px);
}
    .product-detail-thumbnail {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    .product-phone a {
  
    flex-direction: column;
    text-align: center;
}
    .product-box {
      padding: 21px;
      flex-direction: column;
    }
        .product-box > div {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #D1D1D1;
        margin-bottom: 21px;
        padding-bottom: 20px;
    }
    .product-box > div:last-child {
    border-bottom: none;margin-bottom: 0;padding-bottom: 0;
}
.title {
    margin-bottom: 8px;
}
.home-about{overflow: hidden;}
.home-services-flex li {
  
    margin-bottom: 2px;
}
.home-services-left {margin-top:20px;}
.home-services-flex > div p {
  
    margin-top: 35px;
}
.home-product-dots .slick-dots {
 
    justify-content: center;
}
    .blog-detail-flex img {
    height: initial;
}
    .home-banner-content {
    width: 300px;
  
}.home-blog .left img {
  
    left: 0;
}
    .home-blog .left h3 {
     
        margin: 0px auto 60px;
        max-width: 16rem;
    }
    .home-about-text .title2 {
  
    font-size: 40px;
    max-width: 37rem;
    margin-bottom:20px;
}
	    .referances-flex .referance {
        width: 100%;
    }
    .home-category {
   margin-top: 75px;
        padding: 60px 0 60px;
}
    .home-category-flex > div {
        min-width: calc(50% - 10px);  border-radius: 20px;
    }
    .home-category-bg {
    border-radius: 36px;
    padding: 0;
    }
    .home-category-content p strong {
    display: block;
}
.home-category-content p {
    font-size: 12px;
 
    text-align: center;
}
    header .logo img {
        height: 24px;
    }
        .banner-product>picture img {
     
        min-height: 400px;
    }
    .menu-search #btn-search {

    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        }
@media (max-width: 370px) {
    .home-services-flex li {
        font-size: 16px;
        line-height: 26px;
    }
    .home-banner-content {
    width: 250px;
  
}
}


    .overlay {z-index: 11; position: fixed; inset: 0; background: var(--overlay); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
    .overlay.open { opacity: 1; pointer-events: auto; }

    .drawer {z-index: 12; position: fixed; inset-block: 0; inset-inline-end: 0; width: var(--drawer-w); background: var(--panel); color: var(--text); box-shadow: var(--shadow); transform: translateX(110%); transition: transform .28s cubic-bezier(.2,.8,.2,1); display: grid; grid-template-rows: auto 1fr auto; }
    .drawer.open { transform: translateX(0); }
    .drawer h3 { font-size: 18px; margin: 0; font-weight: 700; letter-spacing: .2px; }
    .icon-btn {border: 0;background: var(--primary-color);padding: 13px 18px;border-radius: 10px;cursor: pointer;color: #fff;}
   .searchbar { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 16px 18px; }
    .searchbar input { width: 100%; font-size: 16px; padding: 12px 14px; border-radius: 12px; border: 1px solid #e5e7eb; outline: none; }
    .searchbar input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(37,99,235,.15); }
    .searchbar button { background: var(--accent); color: white; border: 0; padding: 12px 16px; border-radius: 12px; cursor: pointer; font-weight: 600; }

    .content { padding: 8px 18px 18px; overflow: auto; }
    .section-title { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin: 12px 0 8px; }

    .chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .chip { background: var(--chip); color: var(--chip-text); border-radius: 999px; padding: 8px 12px; font-size: 14px; border: 1px solid #e5e7eb; cursor: pointer; }
    .chip:hover { background: #eef2f7; }
    .chip .x { margin-left: 6px; opacity: .6; }
.drawer-footer { border-top: 1px solid #eef2f7; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; }
kbd {  border: 1px solid #e5e7eb; border-bottom-width: 2px; border-radius: 6px; padding: 2px 6px; background: #f9fafb; color: #374151; font-size: 12px; }
    @media (max-width: 480px) {
      :root { --drawer-w: 100vw; }
      .drawer { border-top-left-radius: 0; border-bottom-left-radius:0; }
    }