/*! formalize.css | MIT License | github.com/interacthings/formalize */
*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

a:active,
a:focus,
a:hover {
    outline: none;
    color: currentColor;
    text-decoration: none;
}

button:active,
button:focus,
button:hover {
    outline: none;
    color: currentColor;
    text-decoration: none;
}

img {
    vertical-align: middle;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre,
fieldset,
ul,
ol,
menu,
form {
    margin: 0;
}

button,
fieldset,
iframe {
    border: 0;
}

fieldset,
ul,
ol,
button,
menu {
    padding: 0;
}

ol,
ul {
    list-style: none;
}

textarea {
    resize: vertical;
}

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

td {
    padding: 0;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

body {
    font-family: "gilroy", sans-serif;
}

body .container {
    max-width: 1300px;
    padding-left: 45px;
    padding-right: 45px;
}

.button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 500ms;
    z-index: 1;
    cursor: pointer;
}

.button:hover {
    transition: 500ms;
}

.lv_skin canvas {
    opacity: 0 !important;
}

.mobile {
    display: none !important;
}

.mobile-f {
    display: none !important;
}

.desktop {
    display: block;
}

.desktop-f {
    display: flex;
}

.scroll {
    bottom: 10vh;
    z-index: 99;
    position: absolute;
    left: 40%;
    display: flex;
    align-items: center;
}

.scroll:before {
    content: "";
    display: inline-block;
    transition: 500ms;
    width: 1px;
    height: 56px;
    background-color: #ffffff;
    margin-right: 24px;
}

.scroll span {
    display: block;
    width: 2px;
    left: 38px;
    height: 8px;
    border-radius: 4px;
    background: red;
    border: 1px solid transparent;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(18px);
        transform: translateY(18px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(18px);
        transform: translateY(18px);
    }
}

.global_link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
}

@font-face {
    font-family: 'gilroy';
    src: url(../font/gilroy/Gilroy-Light.ttf);
    font-weight: 300;
}

@font-face {
    font-family: 'gilroy';
    src: url(../font/gilroy/Gilroy-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: 'gilroy';
    src: url(../font/gilroy/Gilroy-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: 'gilroy';
    src: url(../font/gilroy/Gilroy-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: 'gilroy';
    src: url(../font/gilroy/Gilroy-ExtraBold.ttf);
    font-weight: 800;
}

@font-face {
    font-family: 'gilroy';
    src: url(../font/gilroy/Gilroy-Black.ttf);
    font-weight: 900;
}

.Navtop {
    width: 100%;
    z-index: 9999;
    position: relative;
    transition: 500ms;
}

.Navtop-top {
    background-color: #1b1464;
}

.Navtop-top-in {
    display: flex;
    justify-content: space-between;
}

.Navtop-top-left {
    padding-top: 10px;
    padding-bottom: 10px;
}

.Navtop-top-left a {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
    color: white;
    margin-right: clamp(10px, 1.4vw, 30px);
}

.Navtop-top-right {
    display: flex;
    align-items: center;
    position: relative;
}

.Navtop-top-language {
    display: flex;
    align-items: center;
}

.Navtop-top-language span {
    font-size: 10px;
    font-weight: 100;
    line-height: 1.2;
    color: white;
}

.Navtop-top-language a {
    border-radius: 3px;
    padding: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 0.9;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 10px;
}

.Navtop-top-language a:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    right: -7px;
    content: "";
    width: 2px;
    height: 15px;
    display: block;
    background-color: white;
    transition: 500ms;
}

.Navtop-top-language a:hover {
    color: #29a5a8;
    transition: 500ms;
}

.Navtop-top-language a:last-child:after {
    display: none;
}

.Navtop-top-language .active {
    pointer-events: none;
    border: 1px solid white;
}

.Navtop-search-open {
    margin-left: 15px;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    background-color: #29a5a8;
}

.Navtop-search-open:before {
    content: "";
    display: inline-block;
    transition: 500ms;
    width: 19px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url(../images/icon-search.svg);
}

.Navtop-search-open-active:before {
    background-image: url(../images/close.svg);
}

.Navtop-search-open:hover:before {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: 500ms;
}

.Navtop-search-content {
    position: absolute;
    background-color: #29a5a8;
    z-index: 99;
    top: 0;
    height: 100%;
    right: 40px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
    transition: 500ms;
}

.Navtop-search-content-active {
    transition: 500ms;
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.Navtop-search-content-in {
    display: flex;
    align-items: center;
}

.Navtop-search-content-in input {
    margin-right: 10px;
    height: 30px;
    border: none;
    border-radius: 0;
    width: 180px;
    padding-bottom: 7px;
    font-size: 13px;
    color: #1b1464;
}

.Navtop-search-content-in input:focus {
    box-shadow: none;
    outline: none;
}

.Navtop-search-content-in input::-webkit-input-placeholder {
    font-size: 11px;
}

.Navtop-search-content-in input:-ms-input-placeholder {
    font-size: 11px;
}

.Navtop-search-content-in input::-ms-input-placeholder {
    font-size: 11px;
}

.Navtop-search-content-in input::placeholder {
    font-size: 11px;
}

.Navtop-search-button {
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.Navtop-search-button:before {
    content: "";
    display: inline-block;
    transition: 500ms;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url(../images/icon-search.svg);
}

.Navtop-search-button:hover:before {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: 500ms;
}

.Navtop-bottom {
    background-color: #e8e8e8;
}

.Navtop .navbar-brand {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.Navtop .navbar-brand img {
    height: 65px;
    -o-object-fit: contain;
    object-fit: contain;
}

.Navtop .navbar {
    position: relative;
    z-index: 99;
}

.Navtop .navbar-nav {
    transition: 400ms;
}

.Navtop .navbar-collapse .nav-item {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: center;
    padding-right: 40px;
    margin-right: 30px;
    border-right: solid 1px #c4c4c4;
    transition: 500ms;
}

.Navtop .navbar-collapse .nav-item-other {
    width: 138px;
    height: 39px;
    border: solid 1px #20358e;
    padding-right: 0;
    margin-right: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.Navtop .navbar-collapse .nav-item-other2{
        width: 160px;
}

.Navtop .navbar-collapse .nav-item-other:hover {
    background-color: #20358e;
    transition: 500ms;
}

.Navtop .navbar-collapse .nav-item-other:hover .nav-link {
    color: white !important;
    transition: 500ms;
}

.Navtop .navbar-collapse .nav-item .nav-link {
    padding: 0px 5px;
    font-size: 14.2px;
    line-height: 1.2;
    color: #20358e;
    position: relative;
    transition: 500ms;
    height: 75px;
    display: flex;
    align-items: center;
}

.Navtop .navbar-collapse .nav-item .nav-link img {
    height: 80px;
    margin-right: 15px;
}

.Navtop .navbar-collapse .nav-item .nav-link:hover {
    color: #29a5a8;
    transition: 500ms;
}

.Navtop .navbar-collapse .active .nav-link {
    color: #000;
}

.Navbottom {
    position: relative;
    z-index: 99;
    background-color: #030323;
}

.Navbottom-in {
    display: flex;
    justify-content: space-between;
}

.Navbottom h6 {
    font-size: 24.2px;
    font-weight: 500;
    line-height: 1.2;
    color: #2521d6;
}

.Navbottom ul {
    padding-top: 15px;
    padding-bottom: 15px;
}

.Navbottom ul a {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.86;
    letter-spacing: -0.56px;
    color: #dbdbff;
}

.Navbottom-left {
    padding-top: 15px;
    width: 18%;
    border-right: solid 1px #0e0e7c;
}

.Navbottom-middle {
    padding-top: 15px;
    width: 20%;
}

.Navbottom-right {
    width: 50%;
    border-left: solid 1px #0e0e7c;
    display: flex;
    flex-direction: column;
}

.Navbottom-right-top {
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.Navbottom-right-top-text {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.21;
    color: #ffdbdb;
    margin-right: 10px;
}

.Navbottom-right-top-item {
    border-radius: 100px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #dbdbff;
    color: white;
    transition: 500ms;
}

.Navbottom-right-top-item:hover {
    color: #29a5a8;
    border-color: #29a5a8;
    transition: 500ms;
}

.Navbottom-right-bottom {
    flex-grow: 2;
    height: 100%;
    border-top: solid 1px #0e0e7c;
    display: flex;
}

.Navbottom-right-bottom-logo {
    width: 185px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.Navbottom-right-bottom-address {
    width: calc(100% - 185px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-right: solid 1px #0e0e7c;
    padding-right: 30px;
}

.Navbottom-right-bottom-address p {
    text-align: right;
    max-width: 280px;
    padding-left: 15px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.3;
    color: #dbdbff;
}

.Navbottom-menu {
    border-top: solid 1px #0e0e7c;
    padding-top: 15px;
    padding-bottom: 15px;
}

.Navbottom-menu ul {
    padding: 0;
}

.Navbottom-menu-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Navbottom-menu-in ul {
    display: flex;
    align-items: center;
}

.Navbottom-menu-in li {
    margin-right: 25px;
}

.Navbottom-menu a {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.43;
    letter-spacing: -0.56px;
    color: white;
}

.Navbottom-menu-right {
    width: 160px;
    height: 30px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.2;
    color: white;
    background-color: #1b16be;
    border: 2px solid #1b16be;
    transition: 500ms;
}

.Navbottom-menu-right:hover {
    background-color: transparent;
    transition: 500ms;
}

.Navbottom-copy {
    border-top: solid 1px #0e0e7c;
    padding-top: 20px;
    padding-bottom: 20px;
}

.Navbottom-copy-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Navbottom-copy p {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.43;
    letter-spacing: -0.56px;
    color: white;
}

.Navbottom a {
    transition: 500ms;
}

.Navbottom a:hover {
    color: #29a5a8;
    transition: 500ms;
}

.icon-menu {
    position: absolute;
    right: 15px;
    top: 19px;
    z-index: 999;
    cursor: pointer;
    background-color: transparent;
}

.icon-menu:before {
    -webkit-filter: invert(1);
    filter: invert(1);
    content: "";
    display: inline-block;
    transition: 500ms;
    width: 32px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url(../images/menu.svg);
    background-position: center;
}

.icon-menu-active:before {
    background-image: url(../images/close.svg);
}

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

.Slider .swiper-container .swiper-button-prev,
.Slider .swiper-container .swiper-button-next {
    transition: 500ms;
}

.Slider .swiper-container .swiper-button-prev:after,
.Slider .swiper-container .swiper-button-next:after {
    content: " ";
}

.Slider .swiper-container .swiper-button-prev:focus,
.Slider .swiper-container .swiper-button-next:focus {
    outline: none;
}

.Slider .swiper-container .swiper-button-prev:hover,
.Slider .swiper-container .swiper-button-next:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: 500ms;
}

.Slider .swiper-container .swiper-button-prev {
    width: 46px;
    height: 42px;
    left: 45px;
}

.Slider .swiper-container .swiper-button-prev:after {
    width: 46px;
    height: 42px;
    background-image: url(../images/icon-slider_left.svg);
}

.Slider .swiper-container .swiper-button-next {
    width: 46px;
    height: 42px;
    right: auto;
    left: 97px;
}

.Slider .swiper-container .swiper-button-next:after {
    width: 46px;
    height: 42px;
    background-image: url(../images/icon-slider_right.svg);
}

.Slider .swiper-container .swiper-slide {
    position: relative;
    height: clamp(450px, 40vw, 800px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.Slider-text {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    right: 0;
    bottom: 7vh;
    position: absolute;
    padding-right: calc((100vw - 1300px) / 2);
}

.Slider-text-in {
    max-width: 430px;
    padding-right: 45px;
}

.Slider-text-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 45px;
}

.Slider-text-links a {
    width: 150px;
    height: 39px;
    border: solid 0.5px #20358e;
    margin-left: 10px;
    font-size: 14.2px;
    color: #20358e;
    transition: 500ms;
}

.Slider-text-links a:last-child {
    background-color: #1b1464;
    color: white;
}

.Slider-text-links a:hover {
    letter-spacing: 1px;
    transition: 500ms;
}

.Slider-text h6 {
    font-size: 28px;
    font-weight: bold;
    color: #0e3189;
}

.Slider-text p {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.53;
    color: white;
}

.Slider-button {
    position: absolute;
    left:calc((100vw - 1300px) / 2);
    bottom: 7vh;
    padding-left: calc((100vw - 1300px) / 2);
}

@media (min-width:991px) and (max-width:1267px){
  .Slider-button {
    left:0;
}  
} 

.H_about {
    padding-top: 50px;
}

.H_about-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.H_about-left {
    position: relative;
    width: 48%;
    height: clamp(320px, 25vw, 380px);
    border-radius: 9.2px;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.H_about-left-image {
    position: absolute;
    left: -20%;
    bottom: -20px;
    width: 70%;
}

.H_about-left-text {
    position: absolute;
    top: 30px;
    right: 20px;
    text-align: right;
    left: 30%;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.H_about-left-text h6 {
    font-size: 23px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.H_about-left-text p {
    font-weight: 300;
    line-height: 1.4;
    color: white;
    font-size: 15px;
}

.H_about-left-text a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 39px;
    background-color: white;
    margin-left: auto;
    font-size: 13px;
    color: #20358e;
    border: solid 1px #20358e;
    transition: 500ms;
}

.H_about-left-text a:hover {
    color: white;
    background-color: #20358e;
    transition: 500ms;
}

.H_about-right {
    width: 48%;
    height: clamp(280px, 25vw, 380px);
    position: relative;
    border-radius: 9.2px;
    border: solid 1px #e5e5e5;
    background-color: #f9f9f9;
}

.H_about-right-image {
    position: absolute;
    right: -35%;
    bottom: -10%;
    max-height: 120%;
}

.H_about-right-text {
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 20px;
    right: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.H_about-right-text h6 {
    font-size: 23px;
    font-weight: bold;
    color: #0e3189;
    margin-bottom: 10px;
}

.H_about-right-text p {
    font-weight: 300;
    line-height: 1.4;
    color: #848484;
    font-size: 15px;
}

.H_about-right-text a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 39px;
    background-color: white;
    font-size: 13px;
    color: #20358e;
    border: solid 1px #20358e;
    transition: 500ms;
}

.H_about-right-text a:hover {
    color: white;
    background-color: #20358e;
    transition: 500ms;
}

.H_ozon {
    margin-top: 50px;
    position: relative;
}

.H_ozon-header {
    background-color: #07053f;
}

.H_ozon-header-in {
    padding-top: 18px;
    padding-bottom: 18px;
}

.H_ozon-header-in h3 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: white;
}

.H_ozon-in {
    position: relative;
    background-color: #1b1464;
    padding-top: 40px;
    padding-bottom: 40px;
}

.H_ozon .swiper-button-prev,
.H_ozon .swiper-button-next {
    position: relative;
    transition: 500ms;
}

.H_ozon .swiper-button-prev:after,
.H_ozon .swiper-button-next:after {
    content: " ";
}

.H_ozon .swiper-button-prev:focus,
.H_ozon .swiper-button-next:focus {
    outline: none;
}

.H_ozon .swiper-button-prev:hover,
.H_ozon .swiper-button-next:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: 500ms;
}

.H_ozon .swiper-button-prev {
    width: 46px;
    height: 42px;
    right: auto;
    left: auto;
    margin-right: 7px;
}

.H_ozon .swiper-button-prev:after {
    width: 46px;
    height: 42px;
    background-image: url(../images/icon-slider_left.svg);
}

.H_ozon .swiper-button-next {
    width: 46px;
    height: 42px;
    right: auto;
    left: auto;
}

.H_ozon .swiper-button-next:after {
    width: 46px;
    height: 42px;
    background-image: url(../images/icon-slider_right.svg);
}

.H_ozon-dots {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    left: 0;
    top: -30px;
    right: 45px;
    padding-right: calc((100vw - 1300px) / 2);
}

.H_ozon-item {
    position: relative;
}

.H_ozon-item:after {
    content: "";
    display: inline-block;
    transition: 500ms;
    width: 27.2px;
    height: 27.2px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url(../images/icon-link.svg);
    position: absolute;
    right: 20px;
    top: 15px;
}

.H_ozon-item-image {
    overflow: hidden;
}

.H_ozon-item-image img {
    transition: 700ms;
    width: 100%;
}

.H_ozon-item-text {
    position: absolute;
    bottom: 15%;
    left: 20px;
    right: 30px;
    z-index: 9;
}

.H_ozon-item-text h6 {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
}

.H_ozon-item-text p {
    color: white;
    font-weight: 300;
    font-size: 13px;
    line-height: normal;
}

.H_ozon-item:hover .H_ozon-item-image img {
    transition: 500ms;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.Mail {
    background-color: #07053f;
    padding-top: 18px;
    padding-bottom: 18px;
}

.Mail-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Mail-left {
    flex-grow: 2;
}

.Mail-left h6 {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.2;
    color: white;
    white-space: nowrap;
}

.Mail-left p {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.03;
    letter-spacing: -0.56px;
    color: white;
}

.Mail-right {
    max-width: 650px;
    margin-left: 30px;
    flex-grow: 3;
    padding-right: 25px;
    background-color: white;
    display: flex;
    align-items: center;
}

.Mail-item {
    max-width: 170px;
}

.Mail-item input {
    padding-left: 18px;
    height: 60px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #07053f;
    border: none;
    border-left: 1px solid #b5b5b5;
    border-radius: 0;
}

.Mail-item input::-webkit-input-placeholder {
    font-weight: 500;
}

.Mail-item input:-ms-input-placeholder {
    font-weight: 500;
}

.Mail-item input::-ms-input-placeholder {
    font-weight: 500;
}

.Mail-item input::placeholder {
    font-weight: 500;
}

.Mail-item input:focus {
    box-shadow: none;
    border-color: #b5b5b5;
}

.Mail-button {
    width: 103px;
    height: 40px;
    margin: 13px 0 13px 66.4px;
    padding: 10px 22.4px 9px 22.6px;
    background-color: #1b1464;
    border: 2px solid #1b1464;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.2;
    color: white;
    transition: 500ms;
}

.Mail-button:hover {
    color: #1b1464;
    background-color: transparent;
    transition: 500ms;
}

.fancybox-container {
    z-index: 9999999999 !important;
}

.Banner-in {
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
}

.Banner-iletisim .Banner-in {
    height: clamp(400px, 35vw, 650px);
}
.Banner-in img{
    max-height: 450px;
}
#map {
    width: 100%;
    height: 100%;
}

.ymaps-2-1-78-map ymaps {
    -webkit-filter: grayscale(20%);
    filter: grayscale(20%);
}

.Kurumsal-in {
    display: flex;
    padding-top: clamp(20px, 2.5vw, 50px);
    padding-bottom: clamp(20px, 2.5vw, 50px);
}

.Kurumsal-sidebar {
    width: 300px;
    border-right: solid 1px #707070;
}

.Kurumsal-sidebar h6 {
    font-size: 33px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.32px;
    color: #20358e;
    padding-left: 30px;
    margin-bottom: 30px;
}

.Kurumsal-sidebar ul li a {
    padding-left: 30px;
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top: solid 1px #707070;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.95;
    color: #86868b;
    transition: 500ms;
}

.Kurumsal-sidebar ul li a:hover {
    color: #1b1464;
    transition: 500ms;
}

.Kurumsal-sidebar .active {
    color: #1b1464;
}

.Kurumsal-content {
    padding-left: 20px;
    width: calc(100% - 300px);
}

.Kurumsal-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #898989;
    margin-bottom: 20px;
}

.Kurumsal-text-logo {
    display: flex;
}

.Kurumsal-text-logo img {
    margin-left: auto;
}

.Kurumsal-info h6 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5;
    color: #898989;
}

.Kurumsal-info p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #898989;
}

.Kurumsal-info a {
    transition: 500ms;
}

.Kurumsal-info a:hover {
    color: #1b1464;
    transition: 500ms;
}

.Kurumsal-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.Kurumsal-form-item {
    width: 49%;
    margin-bottom: 2%;
}

.Kurumsal-form-item input,
.Kurumsal-form-item textarea {
    padding-left: 25px;
    font-size: 16px;
    line-height: 1.56;
    color: #8d8d8d;
    border-radius: 0;
    border: solid 1px #bfbfbf;
}

.Kurumsal-form-item input:focus,
.Kurumsal-form-item textarea:focus {
    border-color: #1b1464;
    box-shadow: none;
}

.Kurumsal-form-item input {
    height: 60px;
}

.Kurumsal-form-item textarea {
    padding-top: 15px;
    height: 160px;
}

.Kurumsal-form-button {
    width: 133px;
    height: 50px;
    background-color: #20358e;
    margin-left: auto;
    font-size: 18px;
    color: white;
    transition: 500ms;
}

.Kurumsal-form-button:hover {
    background-color: #29a5a8;
    transition: 500ms;
    color: white;
}

.Kurumsal-form-cv {
    border: solid 2px #20358e;
    background-color: #20358e;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Kurumsal-form-cv input[type='file'] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    cursor: pointer;
}

.Kurumsal-form-cv-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.Kurumsal-form-cv:hover {
    background-color: transparent;
    transition: 500ms;
}

.Kurumsal-form-cv:hover span {
    color: #1b1464;
}

.Kurumsal-media {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
}

.Kurumsal-media-item {
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(33.33% - 20px);
}

.Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.Pagination-item {
    font-size: 15px;
    font-weight: 600;
    line-height: 2.2;
    letter-spacing: -0.6px;
    color: #20358e;
    transition: 500ms;
}

.Pagination-item:after {
    margin-left: 5px;
    margin-right: 5px;
    content: "/";
    display: inline-block;
    transition: 500ms;
}

.Pagination-item:last-child {
    pointer-events: none;
}

.Pagination-item:last-child:after {
    display: none;
}

.Pagination-item:hover {
    transition: 500ms;
    color: #29a5a8;
}

.Header {
    background-color: #daefee;
    padding-top: 15px;
    padding-bottom: 15px;
}

.Header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Header-left h1 {
    font-size: 33px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.32px;
    color: #20358e;
}

.Product-in {
    margin-right: -25px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: clamp(30px, 3vw, 60px);
}

.Product-item {
    margin-right: 25px;
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 30px;
    position: relative;
    transition: 500ms;
    margin-bottom: 20px;
}

.Product-item h3 {
    font-size: clamp(24px, 3vw, 48px);
    font-weight: bold;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #20358e;
    margin-bottom: 10px;
}

.Product-item h6 {
    margin-right: auto;
    font-size: 21px;
    font-weight: bold;
    line-height: 2.19;
    letter-spacing: -0.6px;
    color: #20358e;
}

.Product-item p {
    margin-top: clamp(10px, 1.5vw, 20px);
    font-size: 15px;
    line-height: 1.67;
    color: #898989;
}

.Product-item img {
    max-width: 80%;
    max-height: 90%;
    margin-bottom: auto;
    margin-top: auto;
}

.Product-item  a{
        display: flex;
    align-items: center;
    justify-content: center;
}

.Product-item .button {
    position: absolute;
    right: 7%;
    bottom: 7%;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.01;
    color: #20358e;
}

.Product-item .button:after {
    margin-left: 10px;
    content: "";
    display: inline-block;
    transition: 500ms;
    width: 44px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url(../images/icon-right.svg);
}

.Product-item .button:hover:after {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    transition: 500ms;
}

.Product-item:hover {
    background-color: #20358e;
    transition: 500ms;
}

.Product-item:hover h3,
.Product-item:hover h6,
.Product-item:hover p {
    color: white;
    transition: 500ms;
}

.Product-item:hover a {
    color: white;
    transition: 500ms;
}

.Product-item:hover a:after {
    transition: 500ms;
    -webkit-filter: brightness(10);
    filter: brightness(10);
}

.Product-item-master {
    flex-direction: row;
    width: 100%;
    padding-bottom: clamp(40px, 5vw, 60px);
}

.Product-item-master .Product-item-in {
    padding-left: 15px;
}

.Product-item-master img {
    width: 50%;
}

.Product-other {
    padding-bottom: clamp(15px, 3vw, 40px);
}

.Product-other-header {
    background-color: #030323;
    padding-top: 20px;
    padding-bottom: 20px;
}

.Product-other-header h2 {
    font-size: clamp(24px, 2.5vw, 40px);
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
}

.Product-other-in {
    margin-right: -25px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: clamp(30px, 6vw, 100px);
}

.Product_detail-header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(20px, 1.7vw, 30px);
    padding-bottom: clamp(20px, 1.7vw, 30px);
}

.Product_detail-header-left {
    width: 30%;
}

.Product_detail-header-left h1 {
    font-size: clamp(24px, 1.66vw, 32px);
    font-weight: bold;
    line-height: 1;
    letter-spacing: -1.6px;
    color: #000000;
}

.Product_detail-header-right {
    width: 65%;
}

.Product_detail-header-right h6 {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.2;
    color: #0e3189;
    margin-bottom: 10px;
}

.Product_detail-header-right p {
    font-size: 15px;
    line-height: 1.67;
    color: #898989;
}

.Product_detail-text h6 {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.2;
    color: #0e3189;
    margin-bottom: 10px;
}

.Product_detail-text p {
    font-size: 15px;
    line-height: 1.67;
    color: #898989;
}

.Product_detail-text img{

}

.Product_detail-in {
    padding-top: clamp(30px, 2.5vw, 40px);
    padding-bottom: clamp(30px, 3.5vw, 60px);
    border-top: solid 1px #707070;
}

.Product_detail-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(30px, 3.5vw, 60px);
}

.Product_detail-left {
    width: 42%;
}

.Product_detail-right {
    width: 56%;
}

.Product_detail-right .table tbody tr td {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #575756;
    border-right: solid 1px #9d9d9c;
}

.Product_detail-right .table tbody tr td:first-child {
    width: 200px;
}

.Product_detail-right .table tbody tr td:last-child {
    border-right: none;
}

.Product_detail-right .table tbody tr:nth-of-type(even) {
    background-color: #f4f5f9;
}

.Product_detail-document-header {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #000000;
}

.Product_detail-document-in {
    margin-top: 20px;
    background-color: #f2f2f2;
    padding-top: clamp(15px, 3vw, 45px);
    padding-bottom: clamp(15px, 3vw, 45px);
}

.Product_detail-document-item {
    max-width: 1100px;
    padding-left: 30px;
    margin-left: -30px;
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #707070;
    position: relative;
}

.Product_detail-document-item:last-child {
    border-bottom: none;
}

.Product_detail-document-item img {
    margin-right: 20px;
    height: 25px;
    -o-object-fit: contain;
    object-fit: contain;
}

.Product_detail-document-item h6 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.8px;
    color: #86868b;
}

.Product_detail-other {
    position: relative;
    padding-top: 30px;
    padding-bottom: clamp(30px, 3vw, 50px);
    border-top: solid 1px #707070;
}

.Product_detail-other-header {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -1.92px;
    color: #000000;
}

.Product_detail-other-in {
    margin-top: 40px;
    position: relative;
}

.Product_detail-other .Product-item {
    height: 400px;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    width: auto;
}

.Product_detail-other .Product-item img {
    max-height: 390px;
}

.Product_detail-other .Product-item h6 {
    margin-top: 30px;
    margin-left: 30px;
}

.Product_detail-other .Product-item:first-child {
    padding-bottom: 30px;
    flex-direction: column;
}

.Product_detail-other .Product-item:first-child img {

}

.Product_detail-other .swiper-button-prev,
.Product_detail-other .swiper-button-next {
    position: relative;
    transition: 500ms;
}

.Product_detail-other .swiper-button-prev:after,
.Product_detail-other .swiper-button-next:after {
    content: " ";
}

.Product_detail-other .swiper-button-prev:focus,
.Product_detail-other .swiper-button-next:focus {
    outline: none;
}

.Product_detail-other .swiper-button-prev:hover,
.Product_detail-other .swiper-button-next:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: 500ms;
}

.Product_detail-other .swiper-button-prev {
    width: 46px;
    height: 42px;
    right: auto;
    left: auto;
    margin-right: 7px;
}

.Product_detail-other .swiper-button-prev:after {
    width: 46px;
    height: 42px;
    background-image: url(../images/icon-left-g.svg);
}

.Product_detail-other .swiper-button-next {
    width: 46px;
    height: 42px;
    right: auto;
    left: auto;
}

.Product_detail-other .swiper-button-next:after {
    width: 46px;
    height: 42px;
    background-image: url(../images/icon-right-g.svg);
}

.Product_detail-other-dots {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    left: 0;
    top: -60px;
    right: 45px;
    padding-right: calc((100vw - 1300px) / 2);
    z-index: 99;
}

@media (max-width: 991px) {
    .mobile {
        display: block !important;
    }

    .mobile-f {
        display: flex !important;
    }

    .desktop {
        display: none !important;
    }

    .Navtop {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 99999;
        box-shadow: 2px 0px 3px -1px rgba(0, 0, 0, 0.3);
        background-color: white;
    }

    .Navtop .navbar {
        padding: 0px;
    }

    .Navtop .navbar-brand {
        padding: 5px 0;
        margin-bottom: 0px;
    }

    .Navtop .navbar-brand img {
        height: 50px;
    }

    .Navtop .navbar-nav {
        margin-right: auto;
        width: 100%;
    }

    .Navtop .navbar-collapse {
        position: fixed;
        left: 0;
        right: 0;
        top: 102px;
        bottom: 0;
        display: flex;
        align-items: flex-start;
        transition: 300ms;
        opacity: 0;
        pointer-events: none;
        padding-top: 2vh;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    .Navtop .navbar-collapse:before {
        content: "";
        display: inline-block;
        transition: 500ms;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #29a5a8;
        opacity: 0.95;
    }

    .Navtop .navbar-collapse-active {
        pointer-events: auto;
        transition: 300ms;
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .Navtop .navbar-collapse .nav-item {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        border-bottom: solid 1px #c4c4c440;
    }

    .Navtop .navbar-collapse .nav-item img {
        -webkit-filter: brightness(10);
        filter: brightness(10);
    }

    .Navtop .navbar-collapse .nav-item-other {
        margin-right: auto;
        margin-left: auto;
        margin-top: 20px;
        background-color: #20358e;
        width: 160px;
        height: 45px;
    }

    .Navtop .navbar-collapse .nav-item .nav-link {
        height: auto;
        line-height: 3;
        padding: 0px 5px;
        font-size: 20px;
        color: white;
    }

    .Navtop .navbar-collapse .nav-item .nav-link:hover {
        transition: 500ms;
    }

    .Navtop-top {
        background-color: #1b1464;
    }

    .Navtop-top .container {
        padding: 0 !important;
    }

    .Navtop-top-left {
        display: none;
    }

    .Navtop-top-right {
        padding-left: 25px;
        padding-right: 25px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .Navtop-top-language {
        display: flex;
        align-items: center;
    }

    .Navtop-top-language span {
        font-size: 10px;
        font-weight: 100;
        line-height: 1.2;
        color: white;
    }

    .Navtop-top-language a {
        border-radius: 3px;
        padding: 4px;
        font-size: 12px;
        font-weight: 500;
        line-height: 0.9;
        color: white;
        display: flex;
        align-items: center;
        position: relative;
        margin-left: 10px;
    }

    .Navtop-top-language a:after {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        position: absolute;
        right: -7px;
        content: "";
        width: 2px;
        height: 15px;
        display: block;
        background-color: white;
        transition: 500ms;
    }

    .Navtop-top-language a:hover {
        color: #29a5a8;
        transition: 500ms;
    }

    .Navtop-top-language a:last-child:after {
        display: none;
    }

    .Navtop-top-language .active {
        pointer-events: none;
        border: 1px solid white;
    }

    .Navtop-search-open {
        z-index: 9999;
    }

    .Navtop-search-content {
        left: 0;
        right: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    .Navtop-search-content-active {
        -webkit-transform: none;
        transform: none;
    }

    .Navtop-search-content-in input {
        width: calc(100% - 120px);
    }

    .Slider {
        padding-top: 100px;
    }

    .Slider .swiper-container .swiper-slide:before {
        content: "";
        display: inline-block;
        transition: 500ms;
        background-color: #29a5a8;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }

    .Slider .swiper-container .swiper-button-prev,
    .Slider .swiper-container .swiper-button-next {
        transition: 500ms;
    }

    .Slider .swiper-container .swiper-button-prev {
        left: 30px;
    }

    .Slider .swiper-container .swiper-button-next {
        right: 30px;
        left: auto;
    }

    .Slider-text {
        text-align: center;
        left: 0;
        right: 0;
        bottom: 55%;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    .Slider-text-in {
        padding-left: 15px;
        padding-right: 15px;
    }

    .Slider-text-links {
        margin-top: 30px;
        justify-content: center;
    }

    .Slider-button {
        position: absolute;
        left: 0;
        right: 0;
    }

    .H_about {
        padding-top: 15px;
        overflow: hidden;
    }

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

    .H_about-left {
        width: 100%;
    }

    .H_about-left-image {
        position: absolute;
        left: -10%;
        bottom: -10px;
        width: 60%;
    }

    .H_about-left-text {
        position: absolute;
        top: 20px;
    }

    .H_about-left-text h6 {
        font-size: 20px;
    }

    .H_about-left-text a {
        width: 125px;
        height: 39px;
        font-size: 12px;
    }
    .H_about-left-text p{
            font-size: 14px;
    }

    .H_about-right {
        margin-top: 15px;
        width: 100%;
        height: auto;
        min-height: 300px
    }
    
    .H_about-right-image{
        right: -25%;
    }

    .H_about-right-text {
        top: 20px;
        right: 30%;
    }

    .H_about-right-text h6 {
        font-size: 20px;
    }

    .H_about-right-text p {
        line-height: 1.3;
        font-size: 14px;
    }

    .H_about-right-text a {
        width: 125px;
        height: 35px;
        font-size: 12px;
        margin-top: 10px;
    }

    .H_ozon {
        margin-top: 30px;
    }

    .H_ozon-header-in {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .H_ozon-header-in h3 {
        max-width: 250px;
        font-size: 20px;
    }

    .H_ozon-in {
        padding-top: 15px;
        padding-bottom: 30px;
    }

    .H_ozon-dots {
        top: -38px;
        right: 15px;
    }

    .Mail {
        display: none;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .Mail-in {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .Mail-left {
        flex-grow: 2;
    }

    .Mail-left h6 {
        font-size: 23px;
        font-weight: bold;
        line-height: 1.2;
        color: white;
        white-space: nowrap;
    }

    .Mail-left p {
        font-size: 14px;
        font-weight: 100;
        line-height: 1.03;
        letter-spacing: -0.56px;
        color: white;
    }

    .Mail-right {
        max-width: 650px;
        margin-left: 30px;
        flex-grow: 3;
        padding-right: 25px;
        background-color: white;
        display: flex;
        align-items: center;
    }

    .Mail-item {
        max-width: 170px;
    }

    .Mail-item input {
        padding-left: 18px;
        height: 60px;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        color: #07053f;
        border: none;
        border-left: 1px solid #b5b5b5;
        border-radius: 0;
    }

    .Mail-item input::-webkit-input-placeholder {
        font-weight: 500;
    }

    .Mail-item input:-ms-input-placeholder {
        font-weight: 500;
    }

    .Mail-item input::-ms-input-placeholder {
        font-weight: 500;
    }

    .Mail-item input::placeholder {
        font-weight: 500;
    }

    .Mail-item input:focus {
        box-shadow: none;
        border-color: #b5b5b5;
    }

    .Mail-button {
        width: 103px;
        height: 40px;
        margin: 13px 0 13px 66.4px;
        padding: 10px 22.4px 9px 22.6px;
        background-color: #1b1464;
        border: 2px solid #1b1464;
        font-size: 13px;
        font-weight: 300;
        line-height: 1.2;
        color: white;
        transition: 500ms;
    }

    .Mail-button:hover {
        color: #1b1464;
        background-color: transparent;
        transition: 500ms;
    }

    .Navbottom-in {
        flex-wrap: wrap;
    }

    .Navbottom h6 {
        font-size: 20px;
    }

    .Navbottom ul a {
        font-size: 13px;
        line-height: 1.7;
    }

    .Navbottom-left {
        width: 42%;
        padding-left: 15px;
    }

    .Navbottom-middle {
        width: 47%;
    }

    .Navbottom-right {
        width: 100%;
        border-top: solid 1px #0e0e7c;
        border-left: none;
    }

    .Navbottom-right-top {
        padding-top: 20px;
        padding-bottom: 20px;
        justify-content: center;
    }

    .Navbottom-right-bottom {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .Navbottom-right-bottom-logo {
        margin-top: 10px;
        width: 140px;
        justify-content: center;
    }

    .Navbottom-right-bottom-logo img {
        width: 100%;
    }

    .Navbottom-right-bottom-address {
        width: 100%;
        justify-content: center;
        border-right: none;
        padding-right: 0;
    }

    .Navbottom-right-bottom-address p {
        padding-left: 0;
        font-size: 15px;
        text-align: center;
    }

    .Navbottom-menu {
        border-top: solid 1px #0e0e7c;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .Navbottom-menu ul {
        padding: 0;
    }

    .Navbottom-menu-in {
        flex-direction: column;
        align-items: center;
    }

    .Navbottom-menu-in ul {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .Navbottom-menu-in li {
        text-align: center;
        width: 100%;
        margin-right: 0;
    }

    .Navbottom-menu-right {
        margin-top: 10px;
    }

    .Navbottom-copy {
        border-top: solid 1px #0e0e7c;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .Navbottom-copy-in {
        flex-direction: column;
    }

    .Navbottom-copy p {
        font-size: 13px;
        text-align: center;
    }

    .Navbottom a {
        transition: 500ms;
    }

    .Navbottom a:hover {
        color: #29a5a8;
        transition: 500ms;
    }

    .Header {
        margin-top: 100px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

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

    .Header-left h1 {
        font-size: 24px;
        letter-spacing: -0.32px;
    }

    .Pagination-item {
        font-size: 14px;
    }

    .Product-in {
        margin-right: 0;
        padding-top: 15px;
    }

    .Product-item {
        margin-right: 0;
        width: 100%;
        padding: 30px 15px;
        margin-bottom: 15px;
        text-align: center;
    }

    .Product-item img {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .Product-item h3 {
        letter-spacing: -0.52px;
    }

    .Product-item h6 {
        margin-left: auto;
        font-size: 16px;
    }

    .Product-item p {
        font-size: 14px;
    }

    .Product-item a {
        position: relative;
        right: auto;
        bottom: auto;
        font-size: 16px;
        margin-top: 15px;
    }

    .Product-item:first-child {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .Product-item:first-child .Product-item-in {
        padding-left: 0;
    }

    .Product-item:first-child img {
        width: auto;
        max-width: 80%;
    }

    .Product-other {
        padding-bottom: clamp(15px, 3vw, 40px);
    }

    .Product-other-header {
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
    }

    .Product-other-in {
        margin-right: 0;
        padding-top: 30px;
    }

    .Product_detail-header {
        text-align: center;
    }

    .Product_detail-header-in {
        flex-direction: column;
        align-items: center;
    }

    .Product_detail-header-left {
        width: 100%;
    }

    .Product_detail-header-left h1 {
        letter-spacing: -0.8px;
    }

    .Product_detail-header-right {
        width: 100%;
        margin-top: 10px;
    }

    .Product_detail-header-right h6 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .Product_detail-header-right p {
        font-size: 14px;
        line-height: 1.5;
    }

    .Product_detail-in {
        padding-top: 10px;
    }

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

    .Product_detail-document-header {
        text-align: center;
        font-size: 32px;
    }

    .Product_detail-document-item {
        padding-left: 15px;
        margin-left: 0;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .Product_detail-document-item img {
        margin-right: 15px;
    }

    .Product_detail-document-item h6 {
        font-size: 16px;
    }

    .Product_detail-other-header {
        max-width: 200px;
        font-size: 24px;
    }

    .Product_detail-other-in {
        margin-top: 30px;
    }

    .Product_detail-other .Product-item {
        height: 300px;
    }

    .Product_detail-other .Product-item img {
        max-height: 60%;
        margin-bottom: 0;
    }

    .Product_detail-other .Product-item h6 {
        margin-left: auto;
        text-align: center;
        margin-top: 20px;
    }

    .Product_detail-other .Product-item:first-child {
        padding-bottom: 30px;
        flex-direction: column;
    }

    .Product_detail-other .Product-item:first-child img {
        width: auto;
        max-width: 80%;
    }

    .Product_detail-other-dots {
        top: -50px;
        right: 15px;
    }

    .Product_detail-left {
        width: 70%;
    }

    .Product_detail-right {
        margin-top: 15px;
        width: 100%;
    }

    .Product_detail-right .table tbody tr td {
        font-size: 13px;
    }

    .Product_detail-right .table tbody tr td:first-child {
        width: 120px;
    }

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

    .Kurumsal-sidebar {
        width: 100%;
        border-right: none;
    }

    .Kurumsal-sidebar h6 {
        text-align: center;
        font-size: 32px;
        letter-spacing: -0.32px;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .Kurumsal-sidebar ul li a {
        text-align: center;
        justify-content: center;
        padding-top: 3px;
        padding-left: 0;
        padding-bottom: 3px;
        font-size: 18px;
    }

    .Kurumsal-content {
        margin-top: 10px;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }

    .Kurumsal-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .Kurumsal-text-logo {
        display: flex;
    }

    .Kurumsal-text-logo img {
        margin-right: auto;
        margin-left: auto;
    }

    .Kurumsal-info h6 {
        font-size: 24px;
    }

    .Kurumsal-info p {
        font-size: 18px;
    }

    .Kurumsal-form-item {
        width: 100%;
        margin-bottom: 15px;
    }

    .Kurumsal-form-item input,
    .Kurumsal-form-item textarea {
        padding-left: 20px;
        font-size: 14px;
    }

    .Kurumsal-form-item input {
        height: 50px;
    }

    .Kurumsal-form-item textarea {
        height: 140px;
    }

    .Kurumsal-form-button {
        width: 100%;
        margin-right: auto;
    }

    .Kurumsal-form-cv {
        height: 50px;
        margin-bottom: 15px;
    }

    .Kurumsal-form-cv-text {
        font-size: 14px;
    }

    .Kurumsal-media {
        margin-right: -15px;
    }

    .Kurumsal-media-item {
        margin-right: 15px;
        margin-bottom: 15px;
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.dataTables_wrapper label {
    width: 100%;
    display: flex;
    align-items: center;
}

.dataTables_length,
.dataTables_filter {
    width: 100%;
}

table.dataTable tbody td {
    padding: 10px;
}

table.dataTable tbody td a {
    color: #20358e;
}

.dataTables_wrapper .dataTables_length select {
    margin-right: 10px;
}

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

.dataTables_wrapper .dataTables_filter label input {
    margin-left: 10px;
}

.dataTables_wrapper label select,
.dataTables_wrapper label input {
    width: max-content;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    margin-top: 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: none;
    padding: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: none;
    background: none;
}

@media (max-width:768px) {
    .dataTables_filter label {
        justify-content: flex-start;
    }
}

.Makale-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.Makale-list .H_ozon-item {
    width: calc(25% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
}

@media (min-width:768px) and (max-width:991px){
    .Makale-list .H_ozon-item {
    width: calc(33.3% - 20px);


} 
}

@media (max-width:768px) {
   .Makale-list .H_ozon-item {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
} 
    .Makale-list .H_ozon-item p{
        display: none;
    }
    
}

@media (max-width:499px){
    .H_about-right-image{
        right: -30%;
    bottom: -8%;
    max-height: 260px;
    }   
}