:root {
    --blue-color: #45B9FB;
    --dark-color: #232C34;
    --text-color: #91A2BA;
    --box-shadow: 0px 25px 40px 0 rgb(65 80 144 / 10%);
}

/* General */
body {
    font-family: acumin-pro, sans-serif;
    scrollbar-width: none;
}

#smooth-scroll {
    height: 100vh;
}

*::-webkit-scrollbar {
    display: none;
}

main {
    position: relative;
    margin-top: -180px;
}

p {
    color: var(--text-color);
}

.icon-bltk {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.word , .char {
    display: inline-block;
}

@media screen and (min-width: 1680px) {
    .container {
        max-width: 1580px;
    }
}

.more-btn {
    height: 65px;
    color: var(--blue-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blue-color);
    border-radius: 20px;
    padding: 0 35px;
    font-weight: 600;
    transition: .4s;
}

.pagination span:before {
    content: "0";
}

.navigation svg {
    fill: none;
    stroke: #cdd4de;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    transition: .4s;
}

.line {
    display: block;
    width: 48px;
    height: 6px;
    background: var(--blue-color);
    border-radius: 3px;
    margin-bottom: 40px;
}

/* General */
/* Header */
.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #232C34, rgb(35 44 52 / 0%));
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .4s;
}

.header-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

header {
    position: sticky;
    top: -180px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .4s;
}

header.active {
    top: 0px;
}

header .header-wrapper {
    display: flex;
    align-items: center;
    height: 180px;
    transition: .4s;
    position: relative;
}

header.fixed-active .header-wrapper {
    background: white;
    box-shadow: var(--box-shadow);
    height: 120px;
}

header .header-wrapper .header-left, header .header-wrapper .header-right {
    width: 50%;
}

header .header-wrapper .inner-wrapper .menu .dropdownmenu, header .header-wrapper .inner-wrapper .menu .megamenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .4s;
}

header .header-wrapper .inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 75px;
}

header .header-wrapper .inner-wrapper .logo a {
    display: block;
}

header .header-wrapper .inner-wrapper .menu > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header-wrapper .inner-wrapper .menu ul li {
    transition: .4s;
}

header .header-wrapper .inner-wrapper .menu > ul > li.has-mega-menu {
    position: relative;
}

header .header-wrapper .inner-wrapper .menu > ul > li > a {
    font-size: 18px;
    color: white;
    padding: 20px 15px;
    display: block;
    position: relative;
}

header .header-wrapper .inner-wrapper .menu ul li.has-mega-menu > a:after, header .header-wrapper .inner-wrapper .menu ul li.has-dropdown-menu > a:after {
    content: "";
    width: 9px;
    height: 7px;
    position: absolute;
    background: url('../img/svg/caret.svg') no-repeat center;
    background-size: contain;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

header.color-header .header-wrapper .inner-wrapper .menu ul li a:after, header.fixed-active .header-wrapper .inner-wrapper .menu ul li a:after {
    background: url(../img/svg/caret-color.svg) no-repeat center;
}

header .header-wrapper .inner-wrapper .menu .has-dropdown-menu .dropdownmenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 30px;
    width: 100%;
    padding-top: 50px;
    transition: .4s;
}

header .header-wrapper .inner-wrapper .menu .has-dropdown-menu .dropdownmenu ul {
    background: white;
    border-radius: 117px 50px;
    padding: 80px;
}

header .header-wrapper .inner-wrapper .menu ul {
    position: relative;
}

header .header-wrapper .inner-wrapper .menu .dropdownmenu li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 10px 0;
    display: block;
    opacity: .5;
}

header .header-wrapper .inner-wrapper .hamburger {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .header-wrapper .inner-wrapper .logo {
    width: 30%;
}

header.color-header .header-wrapper .inner-wrapper .logo a svg .a {
    fill: #008c99;
}

header.color-header .header-wrapper .inner-wrapper .logo a svg .b {
    fill: #4d77a8;
}

header.color-header .header-wrapper .inner-wrapper .logo a svg .c {
    fill: #225b94;
}

header.color-header .header-wrapper .inner-wrapper .logo a svg .d {
    fill: #7580bd;
}

header.color-header .header-wrapper .inner-wrapper .logo a svg .e {
    fill: #484d8d;
}

header.color-header .header-wrapper .inner-wrapper .logo a svg .f {
    fill: #2e2e2d;
    stroke: rgba(0,0,0,0);
}

header.fixed-active .header-wrapper .inner-wrapper .logo a svg .a {
    fill: #008c99;
}

header.fixed-active .header-wrapper .inner-wrapper .logo a svg .b {
    fill: #4d77a8;
}

header.fixed-active .header-wrapper .inner-wrapper .logo a svg .c {
    fill: #225b94;
}

header.fixed-active .header-wrapper .inner-wrapper .logo a svg .d {
    fill: #7580bd;
}

header.fixed-active .header-wrapper .inner-wrapper .logo a svg .e {
    fill: #484d8d;
}

header.fixed-active .header-wrapper .inner-wrapper .logo a svg .f {
    fill: #2e2e2d;
    stroke: rgba(0,0,0,0);
}

header .header-wrapper .inner-wrapper .logo a svg {
    fill: white
}

header .header-wrapper .inner-wrapper .logo a svg path {
    transition: .4s;
}

header .header-wrapper .inner-wrapper .logo a svg .alpha {
    opacity: .7;
}

.logo.white a svg path {
    fill: white !important
}

.logo.white a svg .alpha {
    opacity: .7 !important;
}

header .header-wrapper .inner-wrapper .menu {
    flex: 1;
}

header .header-wrapper .inner-wrapper .hamburger a {
    display: block;
    width: 30px;
    height: 16px;
    position: relative;
}

header .header-wrapper .inner-wrapper .hamburger a:before, header .header-wrapper .inner-wrapper .hamburger a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transform-origin: left;
    transition: .4s;
}

header .header-wrapper .inner-wrapper .hamburger a:before {
    bottom: auto;
    top: 0;
}

header .header-wrapper .inner-wrapper .search {
    margin-left: 60px;
}

header .header-wrapper .inner-wrapper .search .search-btn {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 50%;
}

header .header-wrapper .search .search-btn svg {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
}

header.fixed-active .header-wrapper .search .search-btn svg {
    stroke: var(--text-color);
}

header.fixed-active .header-wrapper .inner-wrapper .search .search-btn {
    border-color: var(--text-color);
}

.header-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    background: #F2F8FF;
    padding: 0 35px;
    border-radius: 20px;
    color: var(--blue-color);
}

.header-contact-btn svg {
    fill: var(--blue-color);
    margin-right: 15px;
}

header.color-header .header-wrapper .inner-wrapper .menu ul li a, header.fixed-active .header-wrapper .inner-wrapper .menu ul li a {
    color: #91A2BA;
}

header.color-header .header-wrapper .inner-wrapper .hamburger a:before, header.fixed-active .header-wrapper .inner-wrapper .hamburger a:before, header.color-header .header-wrapper .inner-wrapper .hamburger a:after, header.fixed-active .header-wrapper .inner-wrapper .hamburger a:after {
    background: #91A2BA;
}

header.color-header .header-wrapper .inner-wrapper .search .search-btn, header.fixed-active .header-wrapper .inner-wrapper .search .search-btn {
    border-color: var(--text-color);
}

header.color-header .header-wrapper .search .search-btn svg, header.fixed-active .header-wrapper .search .search-btn svg {
    stroke: var(--text-color);
}

header.products-header {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom-right-radius: 90px;
    background: white;
}

header.products-header.fixed-active .header-wrapper {
    height: 180px;
    box-shadow: none;
}

header.header-op {
    border-color: transparent !important;
    background: transparent !important;
}

header.header-op .header-wrapper {
    background: transparent !important;
    box-shadow: none !important;
}

header.home-header .header-wrapper .inner-wrapper .search .search-btn {
    border-color: var(--text-color);
}

header.home-header .header-wrapper .search .search-btn svg {
    stroke: var(--text-color);
    transition: .4s;
}

/* Header */
/* Home Intro */
.main-slider {
    position: relative;
    z-index: 10;
}

.slider-wrapper {
    display: flex;
}

.slider-image {
    position: relative;
    width: 50%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}

.slider-image .slider-holder .img-holder {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slider-image .slider-holder .img-holder .img {
    top: 0;
    position: relative;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider-image .slider-holder .img-holder:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #232C34, rgb(35 44 52 / 0%));
    z-index: 1;
}

.slider-image .slider-holder .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    width: 50%;
    height: 100vh;
    padding: 180px 110px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-title-content .title-content h3 {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #232C34;
}

.slider-title-content .title-content h3 .word .char {
    display: inline-block;
}

.slider-title-content {
    margin-bottom: 60px;
}

.slider-title-content .swiper-container {
    padding-top: 60px;
}

.slider-category .category-content .title-wrapper .title h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.slider-category .category-content .title-wrapper .navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slider-category .category-content .title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slider-category .category-content .title-wrapper .navigation > div {
    display: block;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    margin-left: 15px;
    cursor: pointer;
    transition: .4s;
}

.slider-category .category-content {
    margin-bottom: 30px;
}

.category-area {
    position: relative;
}

.category-area:before {
    /* content: ""; */
    position: absolute;
    top: -40px;
    bottom: -40px;
    right: 0;
    width: 110px;
    /* background: linear-gradient(to left, white, rgba(255,255,255,0)); */
    z-index: 1;
    pointer-events: none;
}

.categories {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -10px;
}

.categories.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(1);
}

.categories .item {
    width: calc(100% / 6);
    padding: 0 10px;
}

.categories .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: relative;
    border: 2px solid #E5EFF1;
}

.categories .item a .icon {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories .item a .icon img {
    max-width: 70%;
}

.slider-category .categories .item:nth-child(3) a .icon img {
    max-width: 100%;
}

.categories .item a .icon svg {
    fill: #A3D8FA;
    width: 45%;
    transition: .4s;
    height: 50px;
    width: auto;
}

.categories .item .caption {
    transition: .4s;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    background: #232C34;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 13px 20px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-bottom: 20px;
}

.categories .item .caption:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 20px;
    height: 20px;
    background: #232c34;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 3px;
    z-index: -1;
}

.categories .item .caption h3 {
    font-size: 15px;
    margin: 0;
    color: white;
}

/* Home Intro */
/* Home Circle Items */
.about {
    position: relative;
    padding: 360px 0;
}

.about .about-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about .about-wrapper .about-img-area {
    width: 600px;
    min-height: 680px;
    position: relative;
}

.about-content {
    width: 65%;
    padding-left: 140px;
}

.about-content .content .line {
    margin-bottom: 65px;
}

.about-content h3 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 60px;
    padding: 5px 0;
    color: #232C34;
}

.about-content .content {
    max-width: 400px;
}

.about-content .content .cnt p {
    font-size: 15px;
    color: var(--text-color);
}

.about-content .content .cnt {
    margin-bottom: 50px;
}

.circle, .about-items {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 1030px;
    height: 1030px;
    border-radius: 50%;
    border: 1px solid #BADBE6;
    pointer-events: none;
}

.circle-blur {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1470px;
    height: 1470px;
    background: #C4B936;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.05;
    filter: blur(50px);
}

.circle:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #FCFCF4, rgb(252 252 244 / 0%));
    border-radius: 50%;
    z-index: 1;
}

.about-img-area .img1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 480px;
    mask-image: url('../img/about/mask1.svg');
    -webkit-mask-image: url('../img/about/mask1.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.about-img-area .img1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 480px;
    mask-image: url('../img/about/mask1.svg');
    -webkit-mask-image: url('../img/about/mask1.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.about-img-area .img2 {
    position: absolute;
    top: 200px;
    right: 40px;
    width: 480px;
    height: 300px;
    mask-image: url('../img/about/mask2.svg');
    -webkit-mask-image: url('../img/about/mask2.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.img2-caret {
    position: absolute;
    top: 0;
    right: 0;
    opacity: .75;
}

.img3-caret {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    opacity: .75;
}

.about-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-area .img3 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 550px;
    height: 290px;
    mask-image: url('../img/about/mask3.svg');
    -webkit-mask-image: url('../img/about/mask3.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.about-items {
    border: none;
    z-index: 10;
}

.about-items .item {
    position: absolute;
    z-index: 1;
    pointer-events: all;
}

.about-items .item.item1 {
    top: 0;
    right: 60px;
}

.about-items .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 0 35px;
    background: white;
    border-radius: 20px;
    border: 1px solid #E6EFF2;
    box-shadow: var(--box-shadow);
}

.about-items .item a .icon {
    display: block;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.about-items .item a .text {
    color: var(--dark-color);
    font-size: 17px;
    max-width: 100px;
}

.about-items .item.item1 a .icon {
    background: #FFF6F0;
}

.about-items .item.item2 {
    top: 40%;
    right: -200px;
}

.about-items .item.item2 a .icon {
    background: #FFF0F0;
}

.about-items .item.item3 a .icon {
    background: #F0FAFF;
}

.about-items .item.item3 {
    bottom: 10%;
    right: -20px;
}

/* Home Circle Items */
/* Home Product Category Area */
.product-categories {
    padding: 100px 0 230px;
}

.product-categories .wrapper {
    display: flex;
    align-items: flex-start;
    margin: 0 -120px;
    position: relative;
}

.product-categories .wrapper .categories-content {
    padding: 0 120px;
    width: 40%;
    position: sticky;
    top: 240px;
}

.product-categories .wrapper .product-category-list {
    width: 60%;
    padding: 0 120px;
}

.product-categories .wrapper .categories-content .content h3 {
    font-size: 45px;
    color: #232C34;
    font-weight: 600;
    margin-bottom: 40px;
}

.product-categories .wrapper .categories-content .content h3 span.blue {
    color: var(--blue-color);
}

.product-categories .wrapper .product-category-list .category-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}

.product-categories .wrapper .product-category-list .category-wrapper .item {
    padding: 0 30px;
    width: 50%;
}

.product-categories .wrapper .product-category-list .category-wrapper .item a {
    display: block;
    padding: 100px 80px;
    border: 1px solid #E6EFF2;
    border-radius: 60px;
    margin-bottom: 70px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.product-categories .wrapper .product-category-list .category-wrapper .item a .img img {
    width: 100%;
}

.product-categories .wrapper .product-category-list .category-wrapper .item a .title h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 25px;
    font-weight: 300;
    transition: .4s;
}

.product-categories .wrapper .product-category-list .category-wrapper .item a .img {
    margin-bottom: 60px;
    transition: .4s;
}

.product-categories .wrapper .product-category-list .category-wrapper .item:nth-child(2n) {
    transform: translateY(300px);
}

.product-categories .wrapper .product-category-list .category-wrapper .item:nth-child(2n + 1) {
    transform: translateY(100px);
}

.product-categories .wrapper .product-category-list .category-wrapper .item a .more-btn {
    margin-top: 40px;
}

/* Home Product Category Area */
/* Home Action Area */
.action-area {
    margin-top: 200px;
}

.action-main {
    display: block;
    border-radius: 45px;
    background: #EDF7FF;
    padding: 90px;
}

.action-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-content .need-help {
    display: flex;
    align-items: center;
}

.action-content .need-help .icon {
    margin-right: 40px;
}

.action-content .need-help .text h3 {
    color: var(--dark-color);
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 500;
}

.action-content .need-help .text .cnt {
    font-size: 15px;
    font-weight: 300;
}

.action-content .need-help .text .cnt p {
    color: var(--dark-color);
}

.action-content .need-help .text {
    max-width: 350px;
}

.action-wrapper .button a {
    height: 94px;
    display: flex;
    align-items: center;
    background: white;
    padding: 0 60px;
    border-radius: 47px;
    font-size: 27px;
    font-weight: 500;
    color: var(--dark-color);
    border: 1px solid #E6EFF2;
    box-shadow: var(--box-shadow);
}

.action-wrapper .button a .icon {
    margin-right: 20px;
}

/* Home Action Area */
/* Home News */
.news-slider-wrapper {
    padding: 0 100px;
    display: flex;
}

.news-slider-wrapper .news-action {
    width: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.news-slider-wrapper .news-slider {
    width: 90%;
}

.news-item .img img {
    width: 100%;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 223px;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.news-action .news-count {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 40px;
    padding: 5px 0;
    display: block;
    color: #CDD4DE;
    font-size: 25px;
    font-weight: 300;
}

.news-action .pagination span {
    font-weight: 600;
}

.news-action .title h3 {
    color: #45B9FB;
    font-size: 25px;
    font-weight: 300;
}

.home-news {
    padding: 200px 0;
}

.news-action .navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-action .navigation > div {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.news-action .navigation > div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% ;
    border-radius: 50%;
    border: 1px solid #CDD4DE;
}

.news-action .navigation > .prev:before {
    clip-path: polygon(100% 0, 50% 0, 50% 100%, 100% 100%);
}

.news-action .navigation .next:before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}

.news-item {
    display: block;
    padding: 2px;
    border: 1px solid #CDE7E9;
    border-radius: 30px;
    background: white;
}

.news-item .img {
    position: relative;
}

.news-item .content {
    padding: 45px 30px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item .content h3 {
    color: var(--dark-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: .4s;
}

.news-item .content .date {
    color: #CDD4DE;
    font-size: 15px;
}

.news-item .img .detail {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    background: white;
}

/* Home News */
/* Footer */
footer .footer-container {
    padding: 0 50px;
}

.footer-top {
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.footer-top .footer-top-wrapper {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px;
    height: 155px;
    border-radius: 78px;
    box-shadow: 0 33px 36px 0px rgba(100,126,162,.1);
    background: #FAFAFA;
}

.footer-top .footer-top-wrapper .footer-contact ul {
    display: flex;
    align-items: center;
}

.footer-top .footer-top-wrapper .footer-contact ul li a {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #45B9FB;
    border-radius: 32px;
    padding: 0 40px;
    margin-left: 10px;
    background: white;
}

.footer-top .footer-top-wrapper .footer-contact ul li a .icon {
    margin-right: 20px;
}

.footer-main {
    background: #fafafa;
    margin-top: -78px;
    border-top-right-radius: 36px;
    border-top-left-radius: 36px;
    padding: 80px 120px 20px;
}

.footer-main .footer-links {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-main .footer-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    position: relative;
    z-index: 1;
    padding: 0 60px;
}

.footer-main .footer-links ul li a {
    display: block;
    padding: 0 30px;
    color: #91A2BA;
    font-size: 20px;
}

.footer-main .footer-links:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #E6E6E6;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright .copy p {
    color: #91A2BA;
    opacity: .6;
    font-size: 20px;
    margin: 0;
}

.footer-copyright .social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border: 1px solid #E6E6E6;
    border-radius: 25px;
}

.footer-copyright .social > a {
    font-size: 20px;
    color: #91A2BA;
    font-weight: 500;
    line-height: 1;
}

.footer-copyright .social ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.footer-copyright .social ul li a {
    padding: 0 10px;
}

.footer-copyright .social ul li a svg {
    fill: #91A2BA;
    transition: .4s;
}

.footer-copyright .design {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 15px;
}

.footer-copyright .design a {
    color: #91A2BA;
}

.footer-copyright .design a.biltek {
    position: relative;
    margin-left: 10px;
    top: -2px;
}

/* Footer */
/* About Intro */
.about-intro {
    height: 100vh;
    position: relative;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 180px;
}

.about-intro .content {
    text-align: center;
}

.about-intro .content h2 {
    color: rgba(35,44,52,1);
    font-size: 15px;
    letter-spacing: .6rem;
    font-weight: 100;
    margin-bottom: 80px;
}

.about-intro .content h3 {
    font-size: 110px;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 120px;
    background: -webkit-linear-gradient(to bottom, #00B59C 0%, #9CFFAC 100%);
    background: linear-gradient(to bottom, #00B59C 0%, #9CFFAC 100%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.about-intro .content h4 {
    color: rgba(35,44,52,1);
    font-size: 24px;
    letter-spacing: .6rem;
    font-weight: 200;
    margin-bottom: 140px;
}

.about-intro .content h4 span {
    display: block;
    cursor: pointer;
    transition: .4s;
}

.about-intro .content .scroll {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 50px;
    margin: auto;
}

.about-intro .content .scroll span {
    display: block;
    width: 55px;
    height: 28px;
    background-image: url('../img/svg/scroll.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-animation: 2s infinite scrollAnim;
    animation: 2s infinite scrollAnim;
}

.about-intro .content .scroll span:nth-child(1) {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.about-intro .content .scroll span:nth-child(2) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes scrollAnim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* About Intro */
/* About Slider */
.about-solutions {
    padding: 250px 0;
}

.about-solutions .wrapper {
    display: flex;
    align-items: center;
    margin: 0 -80px;
}

.solution-content-slider {
    width: 45%;
    padding: 0 80px;
}

.about-solution-sliders {
    width: 55%;
    padding: 0 80px;
    position: relative;
}

.solution-img-slider {
    position: absolute;
    top: -100px;
    left: -10px;
    width: 300px;
    height: 300px;
    z-index: 2;
    border-radius: 52px;
    overflow: hidden;
    direction: rtl;
}

.solution-img-slider .swiper-slide .img img {
    transform: scale(1.5);
    transition: .8s;
}

.solution-img-slider .swiper-slide.swiper-slide-active .img img {
    transform: scale(1);
}

.solution-img-slider .swiper-slide .img {
    overflow: hidden;
}

.solution-img-slider .img img {
    width: 100%;
}

.solution-icon-slider .icon {
    height: 820px;
    background: #FFFCED;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 350px 112px 112px;
}

.solution-icon-slider .icon.show img {
    transform: scale(1);
    opacity: 1;
}

.solution-icon-slider .icon img {
    transform: scale(.5);
    opacity: 0;
    transition: .4s;
}

.solution-content-slider .slide-content {
    text-align: center;
    margin: 100px 0;
}

.solution-icon-slider .icon img {
    max-width: 40%;
}

.solution-content-slider .slide-content h3 {
    font-size: 62px;
    font-weight: 900;
    margin-bottom: 70px;
    color: #45B9FB;
    transition: .4s;
}

.solution-content-slider .slide-content h3 .word {
    overflow: hidden;
}

.slide-content .cnt {
    font-size: 17px;
    color: #91A2BA;
    transition: .4s;
    transition-delay: .2s;
}

.solution-content-slider .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-content-slider .navigation svg {
    fill: none;
    stroke: #cdd4de;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    transition: .4s;
}

.solution-content-slider .navigation > div {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.navigation >div.swiper-button-disabled svg {
    opacity: .4;
}

.navigation > div.swiper-button-disabled {
    cursor: auto;
}

.solution-content-slider .navigation > div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% ;
    border-radius: 50%;
    border: 1px solid #CDD4DE;
}

.solution-content-slider .navigation > .prev:before {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.solution-content-slider .navigation .next:before {
    clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 50%);
}

.solution-content-slider .pagination {
    justify-content: center;
}

.solution-content-slider .pagination span {
    color: #CDD4DE;
    font-size: 37px;
    padding: 0 10px;
}

.solution-content-slider .pagination span.total {
    font-weight: 600;
}

/* About Slider */
/* About Content */
.about-content-area {
    position: relative;
    padding-bottom: 0;
    text-align: center;
}

.about-content-area .content .cnt {
    font-size: 40px;
    font-weight: 900;
}

.about-dot-log {
    margin-bottom: 60px;
}

.about-dot-log svg .a, .about-dot-log svg .b, .about-dot-log svg .d {
    fill: none;
    stroke-dasharray: 6;
}

.about-dot-log svg .a {
    stroke: #008c99;
}

.about-dot-log svg .b {
    stroke: #4c77a7;
}

.about-dot-log svg .c {
    fill: #225b94;
}

.about-dot-log svg .c, .about-dot-log svg .e {
    opacity: 0.091;
}

.about-dot-log svg .d {
    stroke: #7580bd;
}

.about-dot-log svg .e {
    fill: #484d8d;
}

.about-content-area .content {
    padding: 0 20px;
}

.about-content-area .content .cnt .purple {
    color: #7580BD;
}

.about-content-area .content .cnt .dark-blue {
    color: #4D77A8;
}

.about-content-area .content .cnt .dark-green {
    color: #008C99;
}

/* About Content */
/* About Gallery */
.about-gallery {
    padding: 200px 0 0;
    position: relative;
    z-index: 2;
}

.gallery-wrapper {
    grid-gap: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 0 100px;
}

.gallery-wrapper .item.item-lg {
    grid-area: 1 / 1 / 3 / 2;
}

.gallery-wrapper .item img {
    width: 100%;
    border-radius: 30px;
}

/* About Gallery */
/* About Tab Area */
.about-tab-area {
    position: relative;
    padding: 300px 0 0;
    margin-top: -150px;
    z-index: 1;
    background: linear-gradient(to bottom , rgb(208 255 183 / 12%), rgb(208 255 183 / 0%));
}

.about-tab-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.about-tab-content {
    width: 60%;
    position: relative;
    transition: .4s;
}

.about-content-wrapper {
    position: relative;
    transition: .6s;
    overflow: hidden;
}

.about-tab-content .tab-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    transition: .4s;
    justify-content: center;
}

.about-tab-items {
    width: 30%;
    position: sticky;
    top: 150px;
}

.about-tab-content .tab-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.about-tab-content .tab-content .content h3 {
    font-size: 50px;
    margin-bottom: 60px;
    font-weight: 900;
    color: var(--dark-color);
}

.about-tab-content .tab-content .content .cnt {
    font-size: 25px;
    line-height: 30px;
    opacity: .75;
}

.about-tab-items .tab-item {
    padding: 50px 60px;
    display: block;
    background: white;
    position: relative;
    transition: .4s;
}

.about-tab-items .tab-item h4 {
    font-weight: 900;
    font-size: 27px;
    margin-bottom: 20px;
    transition: .4s;
}

.about-tab-items .tab-item p {
    font-size: 18px;
    margin: 0;
}

.about-tab-items .tab-item:first-child {
    border: 1px solid #7580BD;
    z-index: 2;
    border-radius: 48px;
}

.about-tab-items .tab-item:nth-child(2) {
    border: 1px solid #21ACB9;
    margin-top: -40px;
    padding-top: 80px;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.about-tab-items .tab-item:nth-child(2) h4 {
    color: #225B94;
}

.about-tab-items .tab-item:nth-child(2) h4 {
    color: #484D8D;
    transition: .4s;
}

.about-tab-items .back {
    padding: 40px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 17px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
}

.about-tab-items .back.active {
    opacity: 1;
    visibility: visible;
}

.about-tab-items .back svg {
    fill: var(--blue-color);
    margin-right: 15px;
}

/* About Tab Area */
/* Founder Area */
.about-founder {
    position: relative;
    padding: 200px 0 180px;
}

.founder-main {
    padding: 0px 60px;
}

.founder-card {
    position: relative;
    min-height: 700px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

.founder-card:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    box-shadow: 0px 50px 60px 0px rgb(4 55 65 / 10%);
    border-radius: 40px;
}

.founder-content {
    max-width: 35%;
    padding-top: 66px;
    padding-left: 120px;
    position: relative;
}

.founder-content .line {
    margin-bottom: 30px;
}

.founder-content h3 {
    color: var(--dark-color);
    font-size: 35px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 40px;
}

.founder-content h3 span {
    display: block;
    color: var(--blue-color);
}

.founder-content .cnt {
    font-size: 20px;
    margin-bottom: 60px;
}

.founder-content .blue-border-btn {
    padding: 0 40px;
    color: var(--blue-color);
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blue-color);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
}

.founder-content .blue-border-btn .icon {
    margin-left: 20px;
    transform: rotate(-45deg);
}

/* Founder Area */
/* Page Header */
.page-header {
    border-bottom-left-radius: 124px;
    border-bottom-right-radius: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header.career-header {
    height: 700px;
    background: #4d77a8;
}

.page-header-title {
    text-align: center;
    max-width: 60%;
    margin: auto;
}

.page-header-title h2 {
    font-size: 70px;
    color: white;
    font-weight: 900;
    line-height: 84px;
}

/* Page Header */
/* Career */
.career {
    padding-bottom: 100px;
    transition: .4s;
}

.career-main {
    max-width: 1230px;
    margin: auto;
    margin-top: -180px;
    position: relative;
}

.career .swiper-wrapper {
    justify-content: center;
}

.career-form {
    display: block;
}

.career-slider .swiper-container {
    padding: 50px 30px;
}

x .career-slider input {
    display: none;
    appearance: none;
}

.career-slider label {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 0;
    cursor: pointer;
}

.career-slider label .single-career-item {
    background: white;
    height: 400px;
    border-radius: 31px;
    border: 1px solid #E6EFF2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .4s;
}

.single-career-item .logo svg * {
    transition: .4s;
}

.single-career-item .logo svg .a, .single-career-item .logo svg .b, .single-career-item .logo svg .d {
    fill: rgb(76 119 167 / 0%);
    stroke-dasharray: 1;
}

.single-career-item .logo svg .a {
    stroke: #008c99;
}

.single-career-item .logo svg .b {
    stroke: #4c77a7;
}

.single-career-item .logo svg .c {
    fill: #225b94;
}

.single-career-item .logo svg .c, .single-career-item .logo svg .e {
    opacity: 0.091;
}

.single-career-item .logo svg .d {
    stroke: #7580bd;
}

.single-career-item .logo svg .e {
    fill: #484d8d;
}

.career-slider label .single-career-item .title h4 {
    color: #91A2BA;
    font-size: 35px;
    font-weight: 900;
    transition: .4s;
}

.career-slider label .single-career-item .title {
    padding-left: 40px;
}

.career-form {
    padding: 20px 60px;
    background: white;
    border-radius: 31px;
    border: 1px solid #E6EFF2;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100px);
}

.career-form-wrapper {
    display: flex;
}

.form-department {
    width: 25%;
    border-right: 1px solid #E6EFF2;
}

.current-department {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    padding-right: 60px;
    align-items: center;
    gap: 30px;
}

.current-department .title h4 {
    font-size: 33px;
    color: var(--dark-color);
    font-weight: 900;
}

.career-form .form {
    flex: 1;
    padding: 60px 80px;
    padding-right: 0;
}

.career-form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.career-form-title h3 {
    font-size: 20px;
    color: #717F81;
}

.career-form-title .back a {
    color: #FD6F88;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-form-title .back a .icon-arrow-back {
    width: 16px;
    height: 13px;
    background-image: url('../img/svg/arrow-back.svg');
}

.career-form-main input:not([type="file"]), .career-form-main label {
    height: 65px;
    line-height: 65px;
    width: 100%;
    border: 1px solid #E6EFF2;
    border-radius: 32px;
    padding: 0 30px;
    margin: 0;
    transition: .4s;
}

.career-form-main input[type="file"] {
    display: none;
}

.career-form-main .form-wrapper {
    display: flex;
    align-items: center;
    margin: 0 -10px;
    flex-wrap: wrap;
}

.career-form-main .form-wrapper .item {
    padding: 0 10px;
    margin-bottom: 20px;
}

.career-form-main .form-wrapper .item.item-6 {
    width: 50%;
}

.career-form-main .form-wrapper .item.item-4 {
    width: 33.3%;
}

.career-form-main .form-wrapper .item.item-8 {
    width: 66.6%;
}

.career-form-main label {
    color: #91A2BA;
    font-size: 13px;
    position: relative;
}

.career-form-main input:not([type="file"])::placeholder {
    color: #91A2BA;
}

.career-form-main label .file-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    display: block;
    padding: 0 30px;
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 25px;
    color: #19C19E;
    transition: .4s;
}

.career-form-main label .file-btn .icon-upload {
    display: block;
    width: 20px;
    height: 18px;
    background-image: url('../img/svg/upload.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-right: 15px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    margin-left: -2px;
}

.captcha-wrapper .captcha {
    padding: 0 10px;
    width: 50%;
}

.captcha-wrapper .captcha .captcha_img {
    position: relative;
}

.captcha-wrapper .captcha .captcha_img img {
    height: 65px;
    border-radius: 32px;
}

.captcha-wrapper .captcha .captcha_img a {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #19C19E;
    border-radius: 50%;
}

.career-form-desc h3 {
    font-size: 20px;
    color: #717f81;
    margin-bottom: 20px;
}

.career-form-desc p {
    font-size: 16px;
    color: #717f81;
    line-height: 25px;
}

.career-form-desc {
    margin-top: 30px;
}

.career-form-main .form-wrapper .item button {
    width: 100%;
    height: 65px;
    border: none;
    background: #232c34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 32px;
    color: var(--blue-color);
    font-size: 15px;
}

.icon-bltk.icon-send {
    width: 20px;
    height: 20px;
    background-image: url('../img/svg/send.svg');
}

.pagination-dot {
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.pagination-dot .swiper-pagination-bullet {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D8D8D8;
    transition: .4s;
}

.pagination-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--blue-color);
    width: 12px;
    height: 12px;
}

.current-department .a {
    fill: #008c99;
}

.current-department .b {
    fill: #4d77a8;
}

.current-department .c {
    fill: #225b94;
}

.current-department .d {
    fill: #7580bd;
}

.current-department .e {
    fill: #484d8d;
}

/* Career */
/* Catalog */
.page-header.catalog-header {
    height: 520px;
    background: #008c99;
}

.catalogs {
    position: relative;
    padding-bottom: 100px;
}

.catalog-main {
    background: white;
    max-width: 900px;
    margin: auto;
    margin-top: -170px;
    border-radius: 31px;
    border: 1px solid #E6EFF2;
    padding: 25px;
}

.catalog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    border-radius: 31px;
    border: 1px solid transparent;
    transition: .4s;
    position: relative;
}

.catalog-item:before {
    position: absolute;
    content: "";
    height: 1px;
    left: 220px;
    right: 75px;
    bottom: 0;
    background: #F1F1F1;
}

.catalog-item:last-child:before {
    display: none;
}

.catalog-item .caption {
    display: flex;
    align-items: center;
    flex: 1;
    padding-right: 50px;
}

.catalog-item .caption .title h3 {
    font-size: 20px;
    font-weight: 500;
    color: #91A2BA;
    transition: .4s;
}

.catalog-item .date {
    writing-mode: vertical-lr;
    transform: rotate(-180deg) translateX(-20px);
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
}

.catalog-item .date span {
    color: #525BFF;
    font-size: 15px;
    font-weight: 500;
}

.catalog-item .date .icon-stopwatch {
    width: 11px;
    height: 12px;
    background: url('../img/svg/stopwatch.svg');
    margin-bottom: 10px;
    margin-right: 0;
}

.catalog-item .caption .img {
    max-width: 80px;
    height: 80px;
    margin-right: 60px;
    border: 1px solid #E6EFF2;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-item .caption .img img {
    width: 70%;
}

.catalog-item:hover {
    border-color: #E6EFF2;
    box-shadow: var(--box-shadow);
}

.catalog-item .view a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0 30px;
    background: var(--dark-color);
    height: 55px;
    color: white;
    background: #fafafa;
    color: #91A2BA;
    border-radius: 27px;
    transition: .4s;
}

.catalog-item .view a .icon-view {
    width: 28px;
    height: 18px;
    background-image: url('../img/svg/view.svg');
}

/* Catalog */
/* Sss */
.page-header.sss-header {
    height: 600px;
    background: #7580bd;
}

.sss {
    position: relative;
    padding-bottom: 200px;
}

.sss-main {
    position: relative;
    margin-top: -340px;
    padding: 0 100px;
}

.sss-wrapper {
    display: flex;
    margin: 0 -50px;
}

.sss-content {
    padding: 0 50px;
    width: 40%;
    text-align: right;
}

.sss-content .sss-title {
    text-align: right;
    margin-bottom: 140px;
}

.sss-content .sss-title h3 {
    color: white;
    font-size: 47px;
    font-weight: 900;
    line-height: 56px;
}

.sss-content .content .cnt {
    font-size: 25px;
    font-weight: 500;
}

.sss-content .content .sss-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-left: auto;
    background: #EDFFF4;
    border-radius: 45px;
    padding: 45px 60px;
    font-size: 31px;
    font-weight: 600;
    text-align: left;
}

.sss-green-card {
    margin-bottom: 100px;
}

.sss-content .content .sss-card .icon-hearth {
    min-width: 81px;
    height: 73px;
    background-image: url('../img/svg/heart-green.svg');
    margin-right: 30px;
}

.sss-accordion {
    padding: 0 50px;
    width: 60%;
}

.accordion-main {
    background: linear-gradient(to bottom, #EAF6FF, #ffffff);
    padding: 50px 100px;
    border-radius: 31px;
}

.sss-accordion .accordion-item {
    border-bottom: 1px solid #F1F1F1;
}

.sss-accordion .accordion-item:last-child {
    border: none;
}

.sss-accordion .accordion-item .accordion-title {
    padding: 40px 0;
    position: relative;
    cursor: pointer;
    padding-right: 70px;
}

.sss-accordion .accordion-item .accordion-content {
    display: none;
}

.sss-accordion .accordion-item .accordion-title h4 {
    color: #793EFF;
    font-size: 25px;
    line-height: 40px;
    font-weight: 600;
    margin: 0;
}

.sss-accordion .accordion-item .accordion-title .plus {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
    width: 35px;
    height: 35px;
}

.sss-accordion .accordion-item .accordion-title .plus:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg , #03EFFE, #4FACFE);
    border-radius: 2px;
    transition: .4s;
}

.sss-accordion .accordion-item .accordion-title.active .plus:before {
    transform: translateX(-50%) scaleY(0);
}

.sss-accordion .accordion-item .accordion-title .plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #03EFFE, #4FACFE);
    border-radius: 2px;
}

.sss-accordion .accordion-item .accordion-content {
    font-size: 24px;
    padding-bottom: 70px;
}

/* Sss */
/* Gallery */
.page-header.gallery-header {
    height: 420px;
    background: linear-gradient(to bottom, #00B59C, #9CFFAC);
}

.gallery-header .page-header-title h2 {
    font-size: 47px;
}

.gallery {
    padding-bottom: 100px;
    position: relative;
}

.gallery-page-main {
    margin-top: -75px;
}

.gallery-links-wrapper {
    position: relative;
    background: white;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 150px;
    padding: 0 75px;
    box-shadow: var(--box-shadow);
    margin-bottom: 100px;
    z-index: 2;
}

.gallery-links-wrapper .links span {
    display: none;
}

.gallery-links-wrapper .links ul {
    display: flex;
    align-items: center;
}

.gallery-links-wrapper .links ul li a {
    font-size: 15px;
    color: #CDD4DE;
    margin-right: 50px;
    font-weight: 600;
}

.gallery-links-wrapper .links ul li a.active {
    color: var(--dark-color);
}

.gallery-page-wrapper {
    display: flex;
    align-items: center;
    margin: 0 -25px;
    flex-wrap: wrap;
}

.gallery-page-wrapper .item {
    width: 25%;
    padding: 0 25px;
}

.gallery-page-wrapper .item a {
    display: block;
    margin-bottom: 50px;
    border-radius: 30px;
    overflow: hidden;
}

.gallery-page-wrapper .item a img {
    transition: .4s;
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.gallery-links-wrapper .date {
    min-width: 18%;
}

.date select {
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #10BC9D;
    line-height: 60px;
    padding-left: 90px;
    padding-right: 50px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__rendered:before {
    content: "";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('../img/svg/hour.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1px solid #0FBC9D;
    border-bottom: 1px solid #0FBC9D;
    top: 45%;
    right: 30px;
    transform: rotate(45deg) translateY(-50%);
    transition: .4s;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(-135deg) translateY(-50%);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single {
    height: 60px;
    border-radius: 30px;
    border: 1px solid #F1F1F1;
}

.select2-dropdown {
    border: 1px solid #F1F1F1;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.select2-search--dropdown {
    padding: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #F1F1F1;
    height: 40px;
    border-radius: 20px;
    padding: 0 20px;
}

#sort-dropdown .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #FD6900;
    color: white;
}

#date-dropdown .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #11bc9d;
    color: white;
}

.select2-container--default .select2-results>.select2-results__options {
    padding: 10px 10px;
    max-height: 220px;
}

.select2-results__option {
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--dark-color);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #fafafa;
    color: var(--dark-color);
}

.product-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
    border-color: #FD6900;
}

.product-filter .select2-container--default .select2-selection--single .select2-selection__rendered:before {
    background-image: url('../img/svg/sort.svg');
}

.product-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #FD6900;
}

/* Gallery */
/* News Page */
.news-page {
    position: relative;
    padding-bottom: 100px;
}

.news-main {
    max-width: 1050px;
    margin: auto;
    margin-top: -170px;
}

.news-page .news-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.news-page .news-wrapper .item {
    padding: 0 15px;
    width: 33.3%;
    margin-bottom: 60px;
}

.news-header {
    position: relative;
    height: 630px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.news-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #45B9FB;
    opacity: .65;
}

.news-header .banner-news {
    text-align: center;
    position: relative;
}

.news-header .banner-news h2 {
    color: white;
    font-size: 47px;
    font-weight: 900;
}

.news-header .banner-news > a {
    padding: 0 30px;
    border: 1px solid rgb(255 255 255 / 80%);
    margin-bottom: 50px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: white;
    border-radius: 30px;
}

/* News Page */
/* News Detail Page */
.news-detail-header {
    position: relative;
    height: 630px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.news-detail-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    opacity: .85;
}

.news-detail-header .banner-detail-news {
    text-align: center;
    position: relative;
}

.news-detail-header .banner-detail-news h2 {
    color: white;
    font-size: 35px;
    font-weight: 500;
}

.news-detail {
    position: relative;
    padding-bottom: 100px;
}

.news-detail-main {
    position: relative;
    margin-top: -170px;
    padding: 0 110px;
}

.news-detail-content {
    background: white;
    border-radius: 50px;
    padding: 140px 120px;
    border: 1px solid #E6EFF2;
    position: relative;
}

.news-detail-content .content {
    font-size: 24px;
    font-weight: 100;
    text-align: center;
    margin-bottom: 100px;
}

.news-detail-content .date {
    position: absolute;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--blue-color);
    padding: 0 80px;
    border-radius: 55px;
    font-size: 35px;
    box-shadow: var(--box-shadow);
    font-weight: 100;
}

.news-detail-content .news-detail-img img {
    border-radius: 44px;
    box-shadow: var(--box-shadow);
    height: 400px;
    object-fit: cover;
}

/* News Detail Page */
/* Contact Page */
.map-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fafafa;
    overflow: hidden;
}

.map-responsive .map-scope {
    transform: translateX(-800px);
    width: calc(100% + 800px);
}

.map-responsive:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to bottom, #fafafa 50%, rgb(250 250 250 / 0%));
    z-index: 1;
}

.map-responsive iframe {
    height: 100%;
    width: 100%;
    filter: grayscale(1);
}

.contact {
    position: relative;
}

.contact .contact-map {
    border-bottom-left-radius: 124px;
    border-bottom-right-radius: 124px;
    height: 100vh;
    width: 100%;
    position: relative;
}

.map-contact-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100vh;
    position: relative;
    padding-bottom: 100px;
}

.map-contact-wrapper .contact-button {
    display: none;
}

.map-contact-wrapper .contact-button a {
    height: 100px;
    background: white;
    box-shadow: var(--box-shadow);
    display: block;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 28px;
    line-height: 1;
    color: var(--dark-color);
}

.icon-contact {
    display: block;
    width: 30px;
    height: 39px;
    background-image: url('../img/svg/contact.svg');
}

.contact-info-card {
    background: white;
    padding: 90px;
    padding-left: 60px;
    border-radius: 31px 124px;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.contact-info-card .contact-info-tab {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin-right: 40px;
}

.contact-info-card .contact-info-tab ul {
    display: flex;
    align-items: center;
}

.contact-info-card .contact-info-tab ul li a {
    padding: 40px 20px;
    display: block;
    font-size: 18px;
    color: var(--text-color);
    transition: .6s;
}

.contact-info-card .contact-info-tab ul li a.active {
    border-radius: 32px;
    background: #fafafa;
    color: var(--dark-color);
}

.contact-info-content {
    position: relative;
    width: 370px;
    height: 300px;
    border-left: 1px solid #E6EFF2;
    transition: .4s;
}

.contact-info-content .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .6s;
}

.contact-info-content .content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-info-content .content h3 {
    font-size: 30px;
    color: var(--dark-color);
    font-weight: 900;
    margin-bottom: 30px;
}

.contact-info-content .content .cnt {
    color: var(--text-color);
    font-size: 21px;
    margin-bottom: 30px;
}

.contact-info-content .content ul li a {
    display: block;
    font-size: 18px;
    height: 65px;
    border-radius: 35px;
    border: 1px solid #E6EFF2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    margin-bottom: 10px;
}

.contact-info-content .content ul li:last-child a {
    margin-bottom: 0;
}

.contact-info-content .content ul li a.phone {
    color: var(--blue-color);
}

.contact-info-content .content ul li a.phone .icon-contact-phone {
    display: block;
    width: 22px;
    height: 22px;
    background-image: url('../img/svg/contact-phone.svg');
}

.contact-info-content .content ul li a.mail .icon-message {
    display: block;
    width: 31px;
    height: 27px;
    background-image: url('../img/svg/message.svg');
}

.contact-info-content .content ul li a.mail {
    color: #A484FC;
}

.contact-info-content:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    border-top: 1px solid #E6EFF2;
    border-right: 1px solid #E6EFF2;
    transform: rotate(45deg);
    background: white;
}

.contact .contact-form-area {
    z-index: 1;
    background: white;
}

.contact .contact-form-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 150px;
}

.contact-form-wrapper {
}

footer {
    position: relative;
    z-index: 2;
}

.page-header.contact-header {
    height: 420px;
    background: #fafafa;
}

.form-main {
    max-width: 1050px;
    margin: auto;
}

.contact-form-main {
    margin-top: -250px;
}

.form-main .form-wrapper {
    display: flex;
    margin: 0 -20px;
    flex-wrap: wrap;
}

.form-main .form-wrapper .item {
    padding: 0 20px;
}

.form-main .form-wrapper .item.item-6 {
    width: 50%;
}

.form-main .form-wrapper .item .form-item input, .form-main .form-wrapper .item .form-item textarea {
    width: 100%;
    height: 60px;
    border: none;
    border-bottom: 1px solid #E6EFF2;
    font-size: 19px;
    color: var(--dark-color);
    transition: .4s;
}

.form-main .form-wrapper .item .form-item {
    margin-bottom: 30px;
}

.form-main .form-wrapper .item .form-item input::placeholder, .form-main .form-wrapper .item .form-item textarea::placeholder {
    color: #91A2BA;
}

.form-main .form-wrapper .item.item-12 {
    width: 100%;
}

.form-main .form-wrapper .item .form-item textarea {
    resize: none;
    height: 120px;
}

.captcha-area {
    position: absolute;
    bottom: -37px;
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    height: 75px;
    padding: 5px;
    background: white;
    border: 1px solid #e6eff2;
    border-radius: 37px;
}

.form-main .form {
    position: relative;
    padding: 90px 120px;
    background: white;
    border-radius: 60px;
    border: 1px solid #E6EFF2;
    box-shadow: var(--box-shadow);
}

.form-close {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.form-close a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 0 50px;
    background: white;
    border-radius: 45px;
    box-shadow: var(--box-shadow);
}

.form-close a .icon-reply-message {
    width: 47px;
    height: 41px;
    background-image: url('../img/svg/reply-message.svg');
    margin: 0;
}

.captcha-area .captcha-wrapper {
    flex: 1;
}

.captcha-area .captcha-wrapper .captcha {
    padding: 0 5px;
}

.captcha-area .captcha-wrapper button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
}

.captcha-area .captcha-wrapper .captcha .captcha-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.captcha-area .captcha-wrapper .captcha input {
    height: 60px;
    background: #F1F1F1;
    width: 100%;
    border-radius: 10px;
    border: none;
    font-size: 19px;
    padding: 0 20px;
}

.captcha-area .captcha-wrapper .captcha input::placeholder {
    color: #91A2BA;
}

.captcha-area .captcha-area-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
}

.captcha-area .captcha-wrapper .captcha .captcha_img img {
    height: 60px;
    border-radius: 30px 10px 10px 30px;
}

.captcha-area .captcha-area-wrapper .button button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    border: 1px solid #E6EFF2;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.captcha-area .captcha-area-wrapper .button button .icon-bltk {
    margin: 0;
}

/* Contact Page */
/* Products */
.products {
    padding-bottom: 100px;
    padding-top: 180px;
}

.products-wrapper {
    display: flex;
    align-items: flex-start;
}

.products-sidebar {
    width: 480px;
    padding: 50px 80px;
    padding-right: 40px;
    min-height: calc(100vh - 180px);
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom-right-radius: 90px;
    position: fixed;
    top: 180px;
    transition: .4s;
}

.products-sidebar.active {
    top: 0;
    min-height: 100vh;
}

.sidebar-title a {
    display: none;
}

.products-sidebar .sidebar-title h2 {
    font-weight: 900;
    font-size: 50px;
    margin-bottom: 50px;
    color: #CDD4DE;
}

.sidebar-items .item ul {
    display: none;
}

.products-sidebar .sidebar-items .item > a {
    color: #81858d;
    font-weight: 600;
    display: block;
    font-size: 19px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
    position: relative;
}

.products-sidebar .sidebar-items .item > a .open {
    width: 15px;
    height: 15px;
    position: absolute;
    display: block;
    margin-top: 6px;
    margin-left: 15px;
    right: 0;
    top: 15px;
}

.products-sidebar .sidebar-items .item > a .open:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 2px;
    background: var(--dark-color);
}

.products-sidebar .sidebar-items .item > a .open:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 2px;
    height: 100%;
    background: var(--dark-color);
    transition: .4s;
}

.products-sidebar .sidebar-items .item > a.active .open:after {
    transform: translate(-50%,-50%) scaleY(0);
}

.products-sidebar .sidebar-items .item ul.open {
    display: block;
}

.products-sidebar .sidebar-items .item ul li a {
    display: block;
    color: #81858d;
    font-weight: 300;
}

.products-sidebar .sidebar-items .item ul li a.active {
    color: var(--dark-color);
    font-weight: 600;
}

.products-sidebar .sidebar-items .item ul li a.has-child .plus {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 20px;
    position: relative;
}

.products-sidebar .sidebar-items .item ul li a.has-child .plus:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    width: 1px;
    height: 100%;
    background: #CDD4DE;
    transition: .4s;
}

.products-sidebar .sidebar-items .item ul li a.has-child .plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #CDD4DE;
}

.products-sidebar .sidebar-items .item ul li a.has-child.active .plus:before {
    transform: scaleY(0) translateX(-50%);
}

.sidebar-items .item > ul > li > a {
    padding: 10px 0;
}

.sidebar-items .item ul {
    padding-left: 20px;
    border-left: 1px solid #f1f1f1;
    display: none;
}

.sidebar-items .item ul li a {
    display: block;
    font-size: 17px;
    padding: 5px 0;
}

.sidebar-items .item > ul > li > ul > li > a {
    font-size: 12px;
    color: #5C6F89;
}

.product-list-header {
    position: sticky;
    top: 0;
    padding: 0 80px;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom-right-radius: 80px;
    background: white;
    z-index: 2;
}

.product-list-header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.product-list-header .wrapper .title h4 {
    margin: 0;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.product-result p {
    font-size: 15px;
    font-weight: 100;
    margin: 0;
}

.product-filter {
    min-width: 18%;
}

.product-list-header .category {
    display: none;
}

.product-filter select {
    width: 100%;
}

.product-list {
    width: calc(100% - 480px);
    margin-left: auto;
}

.product-list-main .product-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -35px;
}

.product-list-main {
    padding: 60px 80px;
}

.product-list-main .product-list-wrapper .item {
    width: 33.3%;
    padding: 0 35px;
    margin-bottom: 50px;
}

.product-item {
    border: 1px solid #E6EFF2;
    border-radius: 30px;
    display: block;
    background: white;
    height: 100%;
}

.product-item .product-img img {
    width: 100%;
    margin: auto;
    transition: .4s;
}

.product-item .product-img {
    padding: 40px 55px;
    border-bottom-right-radius: 90px;
    box-shadow: var(--box-shadow);
}

.product-item .content {
    text-align: center;
    padding: 35px;
}

.product-item .content .code span {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

.product-item .content .code span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    width: 20px;
    height: 1px;
    background: var(--text-color);
}

.product-item .content .code span:after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    width: 20px;
    height: 1px;
    background: var(--text-color);
}

.product-item .content .code {
    margin-bottom: 20px;
}

.product-item .content h3 {
    font-size: 25px;
    color: var(--text-color);
    font-weight: 100;
    margin-bottom: 40px;
    line-height: 30px;
    transition: .4s;
}

/* Products */
/* Product Detail */
.product-detail {
    position: relative;
    padding-bottom: 100px;
}

.product-detail-main {
    margin-top: -300px;
    padding: 0 100px;
}

.page-header.product-detail-header {
    background: #45B9FB;
    height: 480px;
}

.product-detail-wrapper {
    display: flex;
    align-items: flex-start;
    margin: 0 -45px;
}

.product-detail-image {
    position: sticky;
    top: 100px;
    width: 50%;
    padding: 0 45px;
}

.product-detail-content {
    width: 50%;
    padding: 0 45px;
}

.product-image-main .img {
    padding: 120px;
    background: white;
    border-radius: 80px 170px;
    box-shadow: var(--box-shadow);
}

.product-content .title h1 {
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 47px;
    line-height: 60px;
}

.product-content .title .code span {
    opacity: .75;
    color: white;
    font-size: 35px;
    font-weight: 500;
}

.product-content {
    padding-right: 100px;
    padding-top: 50px;
}

.product-content .content {
    margin-bottom: 70px;
    padding: 0 50px;
}

.product-content .content .cnt {
    font-size: 25px;
    font-weight: 100;
}

.product-content .title {
    margin-bottom: 50px;
    padding: 0 50px;
}

.product-content .offer-area {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 50px;
}

.offer-area .offer a {
    display: flex;
    height: 120px;
    align-items: center;
    justify-content: center;
    padding: 0 65px;
    background: var(--dark-color);
    border-radius: 45px;
    font-size: 31px;
    font-weight: 500;
    color: #C9D2E0;
    min-width: 380px;
}

.offer-area .offer a .icon-offer {
    width: 41px;
    height: 54px;
    background-image: url('../img/svg/offer.svg');
    margin-right: 35px;
}

.product-content .offer-area .offer {
    margin-right: 25px;
}

.product-content .offer-area .documents .pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.product-content .offer-area .documents .pdf-btn .icon-pdf {
    width: 61px;
    height: 61px;
    background-image: url('../img/svg/pdf.svg');
    margin: 0;
}

.related-files {
    position: absolute;
    top: 100%;
    margin-top: 60px;
    z-index: 1;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #C3FFE8, #F0FFF4);
    padding: 65px 85px;
    border-radius: 31px;
    display: none;
}

.related-files:after {
    content: "";
    position: absolute;
    top: -10px;
    right: 25%;
    width: 30px;
    height: 30px;
    background: #c5ffe8;
    transform: rotate(45deg);
}

.related-files ul li a {
    display: block;
    padding: 21px 0;
    font-size: 25px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,.05);
    position: relative;
    opacity: .55;
}

.related-files ul li a span {
    font-weight: 100;
    font-size: 15px;
    margin-left: 20px;
}

.related-files h3 {
    font-size: 25px;
    margin-bottom: 40px;
    font-weight: 900;
}

.related-files ul li:last-child a {
    border: none;
}

.related-files ul li a:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    transform: translateY(-50%);
}

.related-files ul li a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 22px;
    height: 21px;
    transform: translateY(-50%);
    background: url('../img/svg/download.svg') no-repeat center center;
    background-size: cover;
}

.product-content .scroll {
    display: flex;
    align-items: center;
    color: var(--blue-color);
    font-size: 25px;
    margin-left: 50px;
    transition: none;
}

.product-content .scroll .icon-arrow-down {
    width: 25px;
    height: 14px;
    background-image: url('../img/svg/arrow-down.svg');
}

.product-tab-area {
    margin: 150px;
}

.product-tab-main {
    border: 1px solid #E6EFF2;
    border-radius: 45px;
}

.product-tab-area .nav {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.product-tab-area .nav .item {
    color: #91A2BA;
    font-size: 25px;
    font-weight: 100;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    border-radius: 50px;
    transition: .4s;
    position: relative;
    border: 1px solid transparent;
}

.product-tab-area .nav .item.active {
    background: white;
    box-shadow: var(--box-shadow);
    color: var(--dark-color);
    font-weight: 600;
    border: 1px solid #E6EFF2;
}

.product-tab-area .nav {
    position: relative;
}

.product-tab-area nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    z-index: 1;
}

.product-tab-area .nav:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    bottom: 10px;
    width: 100%;
    border: 1px solid #E6EFF2;
    border-radius: 40px;
    background: white;
}

.product-tab-main .tab-content {
    max-width: 70%;
    margin: auto;
    padding: 40px 0 80px;
}

.product-tab-main .tab-content h3, .product-tab-main .tab-content .content p {
    font-size: 25px;
    font-weight: 100;
    margin-bottom: 30px;
    color: #343a40;
}

.product-tab-main .tab-content .content p:last-child {
    margin: 0;
}

.feautures .features-item {
    margin-bottom: 50px;
}

.feautures .features-item:last-child {
    margin: 0;
}

.feautures .features-item ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -20px;
    font-size: 18px;
    padding: 8px 0;
}

.feautures .features-item h3 {
    text-align: center;
}

.feautures .features-item ul li .key {
    text-align: right;
    padding: 0px 20px;
    width: 50%;
    position: relative;
    font-weight: 600;
    color: #232C34;
}

.feautures .features-item ul li .value {
    text-align: left;
    padding: 0px 20px;
    width: 50%;
    font-weight: 100;
    color: #5D6D84;
}

.feautures .features-item ul li .key:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    width: 6px;
    height: 8px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #E6EFF2;
}

.other-products-slider h3 {
    font-size: 70px;
    text-align: center;
    margin-bottom: 100px;
    font-weight: 900;
    color: var(--blue-color);
}

.other-products .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.other-products .navigation svg {
    fill: none;
    stroke: #cdd4de;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    transition: .4s;
}

.other-products .navigation > div {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.other-products .navigation > div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #CDD4DE;
}

.other-products .navigation > .prev:before {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.other-products .navigation .next:before {
    clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 50%);
}

.product-offer-modal, .fast-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(250 250 250 / 85%);
    z-index: 1;
    padding-top: 150px;
    backdrop-filter: blur(15px);
    z-index: 99999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .4s;
}

.product-offer-modal.active, .fast-contact-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Product Detail */
/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .6s;
}

.side-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.side-menu .side-menu-main {
    background: white;
    height: 100%;
    width: 50%;
    position: relative;
    margin-left: auto;
    padding: 75px 65px;
    border-radius: 95px 0 0 95px;
    transform: translateX(100%);
    transition: .6s;
}

.side-menu .side-menu-main.active {
    transform: translateX(0);
}

.side-menu .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
}

.side-menu .side-menu-main .side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}

.side-close svg {
    fill: none;
    stroke: #ff6969;
    stroke-linecap: round;
    stroke-width: 2px;
}

.side-menu .side-menu-main .side-menu-header .languages ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu .side-menu-main .side-menu-header .languages ul li a {
    font-size: 15px;
    color: #91A2BA;
    margin-left: 20px;
    font-weight: 500;
}

.side-menu .side-menu-main .contact-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu .side-menu-main .contact-info ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #E6EFF2;
    background: white;
    border-radius: 35px;
    margin: 0 10px;
    box-shadow: var(--box-shadow);
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-color);
}

.side-menu .side-menu-main .contact-info ul li a .icon {
    margin-right: 15px;
}

.side-menu .side-menu-main .social-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu .side-menu-main .contact-info {
    margin-bottom: 100px;
}

.side-menu .side-menu-main .side-content {
    margin: 0 60px;
    text-align: center;
    padding: 0 100px;
    padding-bottom: 70px;
    border: 1px solid #CDD4DE;
    border-radius: 65px;
    margin-bottom: 60px;
}

.side-menu .side-menu-main .social-links {
    margin-bottom: 100px;
}

.side-menu .side-menu-main .social-links ul li a {
    margin: 0 10px;
}

.side-menu .side-menu-main .social-links ul li a svg {
    transition: .4s;
}

.side-menu .side-menu-main .side-content .side-logo {
    max-width: 50%;
    margin: auto;
    background: white;
    margin-top: -70px;
}

.side-menu .side-menu-main .side-content .content {
    margin-top: 30px;
}

.side-menu .side-menu-main .side-content .content p {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.side-menu .side-menu-main .side-content .content p .purple {
    color: #7580BD;
}

.side-menu .side-menu-main .side-content .content p .dark-blue {
    color: #4D77A8;
}

.side-menu .side-menu-main .side-content .content p .dark-green {
    color: #008C99;
}

.side-menu .side-menu-main .kvkk-links ul li a {
    font-size: 20px;
    margin: 0 20px;
    font-weight: 500;
    color: #91A2BA;
}

.side-menu .side-menu-main .kvkk-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kvkk-links ul li a:hover {
    color: var(--dark-color);
}

/* Side Menu */
/* Search Area */
.search-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--blue-color);
    z-index: 99985;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .4s;
}

.search-area.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 31px;
    cursor: none;
}

.search-area .fade-bottom {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    height: 190px;
    border-bottom-left-radius: 31px;
    border-bottom-right-radius: 31px;
    background: linear-gradient(to top, white, rgba(255,255,255,0));
    z-index: 2;
    pointer-events: none;
}

.search-area .search-main {
    position: relative;
    height: 100%;
}

.search-form {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(220px);
    text-align: center;
    width: 70%;
    margin: auto;
    background: white;
    z-index: 2;
    pointer-events: none;
}

.search-form .logo img, .search-form form #search-input {
    pointer-events: all;
}

.search-form:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, white, rgba(255,255,255,0));
}

.search-form .form-content {
    margin-bottom: 100px;
    position: relative;
}

.search-form form {
    position: relative;
    margin: auto;
    max-width: 60%;
}

.search-form form:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 34px;
    height: 34px;
    background: url('../img/svg/form-search.svg') no-repeat center center;
    background-size: cover;
}

.search-form form input {
    width: 100%;
    border: none;
    font-size: 25px;
    color: var(--dark-color);
    font-weight: 500;
    height: 90px;
    border-bottom: 1px solid #CDD4DE;
    background: transparent;
}

.search-form form input::placeholder {
    color: var(--blue-color);
}

.search-results {
    margin: auto;
    padding: 0 50px;
    padding-top: 270px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
    pointer-events: none;
    height: calc(100vh - 60px);
    overflow-y: auto;
    overflow-x: visible;
    transition: .4s;
}

.search-results.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.search-results #ust_sonuclar {
    max-width: 70%;
    margin: auto;
}

.search-categories .categories .item .caption {
    display: flex;
    flex: 1;
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    background: transparent;
    margin: 0;
    padding: 0;
    border-radius: 0;
    pointer-events: auto;
}

.search-main h3 {
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}

.search-categories {
    margin-bottom: 40px;
}

.search-categories .categories .item {
    width: 33.3%;
}

.search-categories .categories {
    display: flex;
    white-space: inherit;
    flex-wrap: wrap;
    overflow: initial;
    padding: 0;
}

.search-categories .categories .item a {
    margin-bottom: 30px;
    padding: 7px 30px;
}

.search-categories .categories .item a .icon {
    width: 100px;
}

.search-categories .categories .item .caption span {
    font-size: 20px;
}

.search-categories .categories .item .caption:before {
    display: none;
}

.search-products .search-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}

.search-products .search-list-wrapper .item {
    width: 33.3%;
    padding: 0 30px;
}

.search-products {
    margin-bottom: 100px;
}

.search-close {
    max-width: 100px;
    margin: auto;
    margin-bottom: 200px;
    cursor: pointer;
}

.search-close .icon-search-close {
    width: 100%;
    height: 100px;
    background-image: url('../img/svg/close.svg');
    margin: 0;
}

/* Search Area */
/* Megamenu */
.megamenu {
    position: absolute;
    top: 100%;
    left: 30px;
    width: calc(100vw - 348px);
    padding-top: 50px;
    overflow: hidden;
}

.megamenu .menu-wrapper {
    display: flex;
    background: white;
    border-radius: 117px 0 0 50px;
    padding: 80px 400px 80px 120px;
}

.megamenu .menu-wrapper .main-menu ul li a {
    color: var(--dark-color);
    display: block;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: .5;
}

.megamenu .menu-wrapper .second-menu ul li ul {
    display: none;
    padding: 10px 0;
    padding-left: 30px;
}

.megamenu .menu-wrapper .main-menu {
    position: relative;
    padding-right: 0;
    border-right: 1px solid #E6EFF2;
    padding-top: 20px;
    width: 45%;
}

.megamenu .menu-wrapper .main-menu:before {
    content: "";
    position: absolute;
    right: -10px;
    width: 20px;
    height: 20px;
    border-right: 1px solid #E6EFF2;
    border-top: 1px solid #E6EFF2;
    transform: rotate(45deg);
    background: white;
}

.megamenu .menu-wrapper .main-menu ul li a.active {
    opacity: 1;
}

.second-menu .child-menu {
    position: absolute;
    top: 0;
    left: 60px;
    right: 0;
    height: 100%;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 40px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    overflow: auto;
    scrollbar-width: none;
}

.second-menu .child-menu::-webkit-scrollbar {
    width: 0px;
}

.second-menu {
    position: relative;
    width: 45%;
}

.second-menu .second-menu-wrapper {
    position: relative;
    height: 270px;
    overflow: auto;
    padding-left: 60px;
}

.fadeMenu {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, white, rgba(255,255,255,0));
    z-index: 1;
    pointer-events: none;
}

.second-menu .child-menu.active {
    opacity: 1;
    visibility: visible;
}

.second-menu .child-menu ul li a {
    font-size: 15px;
    color: var(--dark-color);
    padding: 8px 0;
    display: block;
    position: relative;
    font-weight: 300;
}

.second-menu .child-menu ul li a .count {
    color: #91A2BA;
}

.second-menu .child-menu ul li a.has-child-menu:before {
    content: "";
    position: absolute;
    top: 15px;
    right: 0px;
    width: 12px;
    height: 1px;
    background: var(--dark-color);
}

.second-menu .child-menu ul li a.has-child-menu:after {
    content: "";
    position: absolute;
    right: 5px;
    top: 10px;
    width: 1px;
    height: 11px;
    background: var(--dark-color);
    transition: .4s;
    transform-origin: center;
}

.second-menu .child-menu h3 {
    color: var(--blue-color);
    font-size: 15px;
    margin-bottom: 30px;
}

.megamenu .menu-wrapper .second-menu ul li ul li a {
    font-size: 12px;
    color: #5C6F89;
}

.second-menu .child-menu ul a.active:after {
    transform: scale(0);
}

.number {
    position: absolute;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    right: 450px;
}

.number span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 225px;
    font-weight: 900;
    color: var(--dark-color);
    opacity: .03;
    height: 325px;
}

.menu-title {
    position: absolute;
    top: 0;
    right: 0;
    width: 425px;
    height: 100%;
    background: url('../img/main/megamenu-bg.svg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 220px;
    padding-top: 50px;
}

.menu-title h3 {
    writing-mode: vertical-lr;
    color: white;
    font-size: 30px;
    font-weight: 600;
}

.arrow-up {
    position: absolute;
    top: 52px;
    left: 0;
    width: 27px;
    height: 27px;
    background: url('../img/svg/arrow.svg') no-repeat center center;
}

/* Megamenu */
.product-image-thumb .item .img img {
    width: 100%;
}

.product-image-thumb {
    padding: 0px 220px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.product-image-thumb .item {
    padding: 0 10px;
}

.product-image-thumb .item .img-thumb {
    border: 1px solid #E6EFF2;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    background: white;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: .4s;
}

.product-image-thumb .item:nth-child(1) .img-thumb {
    transition-delay: 0.1s;
}

.product-image-thumb .item:nth-child(2) .img-thumb {
    transition-delay: 0.2s;
}

.product-image-thumb .item:nth-child(3) .img-thumb {
    transition-delay: 0.3s;
}

.product-image-thumb .item:nth-child(4) .img-thumb {
    transition-delay: 0.4s;
}

.product-image-thumb .item:nth-child(5) .img-thumb {
    transition-delay: 0.5s;
}

.product-image-thumb .item:nth-child(6) .img-thumb {
    transition-delay: 0.6s;
}

.product-image-thumb .item:nth-child(7) .img-thumb {
    transition-delay: 0.7s;
}

.product-image-thumb .item:nth-child(8) .img-thumb {
    transition-delay: 0.8s;
}

.product-image-thumb .item:nth-child(9) .img-thumb {
    transition-delay: 0.9s;
}

.product-image-thumb .item:nth-child(10) .img-thumb {
    transition-delay: 1s;
}

.product-image-thumb .item .img-thumb img {
    width: 70%;
}

.product-image-main .item {
    padding: 60px;
}

.single-page-main {
    margin-top: -140px;
    background: white;
    position: relative;
    padding: 100px;
    border-radius: 80px;
}

.single-page strong {
    font-weight: 900;
    color: var(--dark-color);
}

.single-page p, .single-page li, .single-page td, .single-page th {
    font-size: 15px;
    font-weight: 300;
    line-height: 27px;
    color: var(--text-color);
}

.single-page h1, .single-page h2, .single-page h3, .single-page h4, .single-page h5, .single-page h6 {
    font-weight: 900;
    color: var(--dark-color);
}

.nf404-main {
    padding: 100px 60px;
    background: white;
    margin-top: -100px;
    border-radius: 80px;
    box-shadow: var(--box-shadow);
    margin-bottom: 100px;
}

.nf404-main .svg svg {
    width: 100%;
}

.nf404-main svg path {
    fill: var(--blue-color);
}

.nf404-main h3 {
    font-weight: 900;
    color: var(--dark-color);
}

.nfg404 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nfg404 a svg {
    margin-right: 15px;
}

.nf404 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 60px;
    border-radius: 30px;
    border: 1px solid #e1e1e1;
    margin-top: 40px;
    font-size: 15px;
    font-weight: 600;
}

.nf404 a svg {
    margin-right: 20px;
}

/* Cookie detail */
/* Cookie */
body .cc-window.in-active {
    opacity: 0;
    visibility: hidden;
}

body .cc-window {
    bottom: 50px !important;
    left: 80px !important;
    max-width: 420px !important;
    height: 93px;
    border-radius: 100px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(34, 41, 48, 0.8) !important;
    padding: 0 30px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

body .cc-window .cc-message {
    font-size: 15px;
    color: #fff;
    line-height: normal;
    margin: 0 !important;
    padding-right: 40px;
}

body .cc-window .cc-message a {
    opacity: 1;
    outline: none;
    text-decoration: none;
}

body .cc-compliance a.cc-btn.cc-dismiss {
    width: 56px;
    height: 56px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 100px;
    position: relative;
    padding: 0;
    color: transparent;
    display: block;
    outline: none;
}

body .cc-compliance a.cc-btn.cc-dismiss:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url(../img/svg/check-icon.svg);
    width: 20px;
    height: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.cc-floating.cc-theme-edgeless .cc-message {
    margin: 0 !important;
}

@media (hover: hover) {
    body .cc-compliance a.cc-btn.cc-dismiss:hover {
        background: var(--blue-color);
        border-color: var(--blue-color);
    }

    body .cc-banner.cc-theme-edgeless .cc-message a.cc-link:hover {
        color: var(--blue-color);
    }
}

@media only screen and (max-width: 991px) {
    body .cc-window {
        left: 50px !important;
    }
}

@media only screen and (max-width: 767px) {
    body .cc-window {
        width: 100%;
        max-width: 100% !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        left: 50% !important;
        right: auto !important;
        -webkit-transform: translateX(-50%) scale(0.9);
        transform: translateX(-50%) scale(0.9);
        bottom: 30px !important;
        height: 100px;
        padding: 0 30px !important;
    }

    .cc-floating.cc-theme-edgeless .cc-message {
        margin: 0 !important;
        padding-right: 0;
    }
}

/* Cookie detail */
.mobile-header {
    display: none;
}

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .4s;
}

.mobile-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0,0,0,.7);
}

.mobile-header-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    background: white;
    z-index: 2;
    height: 80%;
    border-bottom-left-radius: 90px;
    padding: 100px 60px;
    padding-bottom: 150px;
    transform: translateX(100%);
    transition: .4s;
}

.mobile-header.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-header-main.active {
    transform: translateX(0);
}

.mobile-header-main .menu > ul > li > ul {
    display: none;
    padding-left: 20px;
}

.mobile-header-main .menu > ul >li > a {
    font-size: 27px;
    color: var(--dark-color);
    font-weight: 600;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mobile-header-main .menu {
    margin: 60px 0;
}

.mobile-header-main .page-menu ul {
    display: flex;
    align-items: center;
}

.mobile-header-main .page-menu ul li a {
    font-size: 20px;
    color: var(--text-color);
    margin-right: 20px;
}

.mobile-header-main .language {
    position: absolute;
    bottom: 60px;
    right: 60px;
    left: 60px;
}

.mobile-header-main .language select {
    width: 100%;
    height: 60px;
    text-align: center;
}

.mobile-header-main .language .select2-container--default .select2-selection--single .select2-selection__rendered:before {
    display: none;
}

.mobile-header-main .language .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: center;
    padding: 0 30px;
    color: var(--dark-color);
    font-weight: 500;
}

.mobile-header-main .language .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 100px;
    border-color: var(--dark-color);
    border-width: 2px;
    top: 48%;
}

.mobile-header-main .language .select2-container--default .select2-selection--single {
    border-radius: 20px 10px 20px 20px;
    border-color: #E6E6E6;
}

.mobile-header-main .menu > ul >li > a .plus {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
}

.mobile-header-main .menu > ul >li > a .plus:before, .mobile-header-main .menu > ul >li > a .plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    transition: .4s;
    background: var(--dark-color);
}

.mobile-header-main .menu > ul >li > a .plus:before {
    width: 100%;
    height: 4px;
}

.mobile-header-main .menu > ul >li > a .plus:after {
    width: 3px;
    height: 100%;
}

.mobile-header-main .menu > ul >li > a.active .plus:after {
    transform: translate(-50%, -50%) scale(0);
}

.mobile-header-main .menu > ul >li > a:not(.has-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 15px;
    height: 15px;
    border-right: 3px solid var(--dark-color);
    border-top: 3px solid var(--dark-color);
    transform: rotate(45deg) translateY(-50%);
}

.mobile-header-main .menu > ul > li > ul > li > a {
    font-size: 15px;
    display: block;
    padding: 10px 0;
    font-weight: 300;
    color: #5C6F89;
}

.news-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.news-navigation a {
    color: var(--dark-color);
    font-size: 21px;
    font-weight: bold;
}

.news-navigation a .icon svg {
    fill: var(--blue-color);
}

.news-navigation > div a {
    display: flex;
}

.news-navigation > .prev-news a {
    align-items: flex-end;
    flex-direction: row-reverse;
}

.news-navigation > .prev-news a .icon {
    margin-right: 15px;
}

.news-navigation > div.next-news a .icon {
    margin-left: 15px;
}

/* Gsap Animation */
@media screen and (min-width: 1200px) {
    .slider-image {
        transform: translateX(-100%);
    }

    .slider-image .slider-holder {
        transform: translateX(100%);
    }

    .slider-title-content .title-content h3 {
        transform: translateY(-40px);
        opacity: 0;
    }

    .title-content .more-btn {
        transform: translateY(-30px);
        opacity: 0;
    }

    .slider-category .category-content .title-wrapper .title {
        transform: translateX(-30px);
        opacity: 0;
    }

    .slider-category .category-content .title-wrapper .navigation {
        transform: translateX(30px);
        opacity: 0;
    }

    .slider-category .categories .item {
        transform: translateY(-30px);
        opacity: 0;
    }

    .about-content .content .word {
        overflow: hidden;
        padding: 3px 0;
    }

    .about-content .content .word .char {
        transform: translateY(70px);
        display: inline-block;
    }

    .about-items .item {
        transform: translateX(-40px);
        opacity: 0;
    }

    .about-content .content .cnt {
        transform: translateY(-30px);
        opacity: 0;
    }

    .about-content .content a {
        transform: translateY(-30px);
        opacity: 0;
    }

    .about .about-wrapper .about-img-area > div {
        transform: rotate(15deg);
    }

    .product-categories .wrapper .categories-content .content h3 .word {
        overflow: hidden;
    }

    .product-categories .wrapper .categories-content .content h3 {
        transform: translateY(50px);
        opacity: 0;
        display: inline-block;
    }

    .product-categories .wrapper .categories-content .content .cnt {
        transform: translateY(50px);
        opacity: 0;
    }

    .product-categories .wrapper .categories-content .content .line {
        display: block;
        transform: scaleX(0);
        transform-origin: left;
    }

    .action-main {
        transform: translateY(40px);
        opacity: 0;
    }

    .action-content .need-help .icon {
        transform: scale(0.5);
        opacity: 0;
    }

    .action-content .need-help .text {
        transform: translateX(-30px);
        opacity: 0;
    }

    .action-wrapper .button {
        transform: translateX(40px);
        opacity: 0;
    }

    .news-slider-wrapper .news-action {
        transform: translateX(-40px);
        opacity: 0;
    }

    .news-slider-wrapper .swiper-slide {
        transform: translateY(-30px);
        opacity: 0;
    }

    .about-intro {
        transform: translateY(-100%);
    }

    .about-intro .content h2 {
        transform: translateY(-30px);
        opacity: 0;
    }

    .about-intro .content h3 {
        transform: translateY(-30px);
        opacity: 0;
    }

    .about-intro .content h4 {
        transform: translateY(-30px);
        opacity: 0;
    }

    .about-intro .content .scroll {
        transform: translateY(-30px);
        opacity: 0;
    }

    .solution-img-slider {
        transform: translateY(360px);
    }

    .solution-icon-slider .icon {
        border-radius: 500px;
    }

    .about-dot-log svg {
        stroke-dasharray: 500;
        stroke-dashoffset: 500;
    }

    .about-content-area .content .cnt .word {
        overflow: hidden;
    }

    .about-content-area .content .cnt .word .char {
        transform: translateY(70px) rotate(45deg);
    }

    .gallery-wrapper .item:nth-child(1) {
        transform: translateX(-60px);
        opacity: 0;
    }

    .gallery-wrapper .item:nth-child(2) {
        transform: translateY(-60px);
        opacity: 0;
    }

    .gallery-wrapper .item:nth-child(3) {
        transform: translateY(60px);
        opacity: 0;
    }

    .about-tab-items .tab-item {
        transform: translateY(40px);
        opacity: 0;
    }

    .about-tab-content {
        transform: translateX(-40px);
        opacity: 0;
    }

    .page-header {
        transform: translateY(-40px);
        opacity: 0;
    }

    .news-header .banner-news > a {
        transform: translateY(-40px);
        opacity: 0;
    }

    .news-header .banner-news h2 .word {
        overflow: hidden;
    }

    .news-header .banner-news h2 .word .char {
        transform: translateY(50px);
    }

    .news-page .news-wrapper .item {
        transform: translateY(-40px);
        opacity: 0;
    }

    .news-detail-content {
        transform: translateY(-40px);
        opacity: 0;
    }

    .catalog-main {
        transform: translateY(-40px);
        opacity: 0;
    }

    .catalog-item {
        transform: translateY(-40px);
        opacity: 0;
    }

    .gallery-links-wrapper {
        transform: translateY(-40px);
        opacity: 0;
    }

    .sidebar-items .item {
        transform: translateY(50px);
        opacity: 0;
    }

    .products-sidebar .sidebar-title h2 .word {
        overflow: hidden;
    }

    .products-sidebar .sidebar-title h2 .word .char {
        transform: translateY(50px);
    }

    .product-list-main .product-list-wrapper .item {
        transform: translateY(50px);
        opacity: 0;
    }

    .product-list-header .wrapper > div {
        opacity: 0;
    }

    .product-detail-image {
        transform: translateX(-50px);
        opacity: 0;
    }

    .product-content .title h1 .word {
        overflow: hidden;
    }

    .product-content .title h1 .word .char {
        transform: translateY(-40px);
        opacity: 0;
    }

    .product-content .title .code {
        transform: translateY(-40px);
        opacity: 0;
    }

    .product-content .offer-area > div {
        transform: translateY(-40px);
        opacity: 0;
    }

    .product-content .content {
        transform: translateY(-40px);
        opacity: 0;
    }

    .product-content .scroll {
        transform: translateY(-40px);
        opacity: 0;
    }

    .product-tab-area .nav {
        transform: translateY(-30px);
    }

    .career-slider label {
        opacity: 0;
    }

    .sss-content .sss-title h3 .word {
        overflow: hidden;
    }

    .sss-content .sss-title h3 .word .char {
        transform: translateY(70px);
    }

    .sss-green-card {
        transform: translateY(50px);
        opacity: 0;
    }

    .sss-content .content .cnt {
        transform: translateY(39px);
        opacity: 0;
    }

    .sss-accordion .accordion-item {
        transform: translateY(40px);
        opacity: 0;
    }

    .accordion-main {
        transform: translateY(40px);
        opacity: 0;
    }

    .page-header-title h2 .word {
        overflow: hidden;
    }

    .page-header-title h2 .word .char {
        transform: translateY(70px);
    }

    .gallery-main {
        transform: translateY(-30px);
        opacity: 0;
    }
}

/* Gsap Animation */
@media (hover: hover) {
    .categories .item a:hover .caption {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .categories .item a:hover {
        box-shadow: var(--box-shadow);
    }

    .categories .item a:hover .icon svg {
        fill: var(--blue-color);
    }

    header .header-wrapper .inner-wrapper .menu .has-dropdown-menu:hover .dropdownmenu {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }

    header .header-wrapper .inner-wrapper .menu .has-mega-menu:hover > .megamenu {
        pointer-events: auto;
        opacity: 1;
        visibility: visible;
    }

    .news-navigation > div a:hover {
        color: var(--blue-color)
    }

    .career-slider label:hover .single-career-item .a {
        fill: #008c99;
        stroke: none;
        stroke-dasharray: 0;
    }

    .career-slider label:hover .single-career-item .b {
        fill: #4d77a8;
        stroke: none;
        stroke-dasharray: 0;
    }

    .career-slider label:hover .single-career-item .d {
        fill: #7580bd;
        stroke: none;
        stroke-dasharray: 0;
    }

    .career-slider label:hover .single-career-item .title h4 {
        color: var(--dark-color);
    }

    .career-slider label:hover .single-career-item {
        box-shadow: var(--box-shadow);
    }

    .catalog-item:hover {
        border: 1px solid #E6EFF2;
        box-shadow: var(--box-shadow);
    }

    .catalog-item:hover .caption .title h3 {
        color: var(--dark-color);
    }

    .news-header .banner-news > a:hover {
        background: white;
        color: var(--blue-color);
    }

    .catalog-item:hover .date {
        opacity: 1;
        transform: rotate(-180deg) translateX(0);
    }

    .catalog-item:hover .view a {
        background: var(--dark-color);
        color: white;
    }

    .contact-info-content .content ul li a:hover {
        background: #E6EFF2;
    }

    .contact-info-card .contact-info-tab ul li a:hover {
        color: var(--dark-color);
    }

    .product-tab-area .nav .nav-item:hover {
        color: var(--dark-color);
    }

    .related-files ul li a:hover {
        opacity: 1;
    }

    .side-menu .side-menu-main .kvkk-links ul li a:hover {
        color: var(--dark-color);
    }

    .side-menu .side-menu-main .side-menu-header .languages ul li a:hover {
        color: var(--dark-color);
    }

    .product-detail-image:hover .product-image-thumb .item .img-thumb {
        transform: translateY(0);
        opacity: 1;
    }

    .header-contact-btn:hover {
        background: var(--dark-color);
        color: var(--blue-color);
    }

    header .header-wrapper .inner-wrapper .search .search-btn:hover {
        background: var(--blue-color);
        border-color: var(--blue-color);
    }

    header .header-wrapper .inner-wrapper .search .search-btn:hover svg {
        stroke: white;
    }

    .more-btn:hover {
        background: var(--blue-color);
        color: white;
    }

    header .header-wrapper .inner-wrapper .hamburger a:hover:after {
        transform: scaleX(1.2);
    }

    header .header-wrapper .inner-wrapper .hamburger a:hover:before {
        transform: scaleX(.8);
    }

    .single-category:hover .title h4 {
        color: var(--dark-color);
    }

    .about-tab-items .back:hover {
        color: var(--dark-color);
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a:hover .title h4 {
        color: var(--dark-color);
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a:hover .img {
        transform: scale(1.2);
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a:hover .more-btn {
        background: var(--blue-color);
        color: white;
    }

    .footer-main .footer-links ul li a:hover {
        color: var(--dark-color);
    }

    .action-wrapper .button a:hover {
        background: var(--dark-color);
        color: white;
    }

    .footer-top .footer-top-wrapper .footer-contact ul li a:hover {
        background: var(--dark-color);
    }

    .footer-copyright .social ul li a:hover svg {
        fill: var(--dark-color);
    }

    .slider-category .category-content .title-wrapper .navigation > div:hover {
        background: var(--dark-color);
    }

    .slider-category .category-content .title-wrapper .navigation > div:hover svg {
        stroke: var(--blue-color);
    }

    .solution-content-slider .navigation >div:hover svg {
        stroke: var(--dark-color);
    }

    .founder-content .blue-border-btn:hover {
        background: var(--blue-color);
        color: white;
    }

    .founder-content .blue-border-btn:hover svg {
        fill: white !important;
    }

    .founder-content .blue-border-btn:hover svg .arrow-right {
        fill: white;
    }

    .side-menu .side-menu-main .social-links ul li a:hover svg {
        fill: var(--blue-color);
    }

    .about-tab-items .tab-item:hover {
        box-shadow: var(--box-shadow);
        border-color: var(--blue-color);
    }

    .about-tab-items .tab-item:hover h4 {
        color: var(--blue-color);
    }

    .gallery-page-wrapper .item a:hover img {
        transform: scale(1.2);
    }

    .gallery-links-wrapper .links ul li a:hover {
        color: var(--dark-color);
    }

    .career-form-main input:not([type="file"]):hover, .career-form-main label:hover {
        border-color: var(--dark-color);
    }

    .career-form-main input:not([type="file"]):focus, .career-form-main label:focus {
        border-color: var(--dark-color);
    }

    .career-form-main .form-wrapper .item button {
        background: #fafafa;
        color: var(--blue-color);
    }

    .career-form-main label:hover span.file-btn {
        background: #c9ffe9;
    }

    .form-main .form-wrapper .item .form-item input:hover, .form-main .form-wrapper .item .form-item textarea:hover {
        border-color: var(--dark-color);
    }

    .form-main .form-wrapper .item .form-item input:focus, .form-main .form-wrapper .item .form-item textarea:focus {
        border-color: var(--dark-color);
    }

    .captcha-area .captcha-area-wrapper .button button:hover {
        border-color: var(--blue-color);
    }

    header.color-header .header-wrapper .inner-wrapper .menu ul li a:hover, header.fixed-active .header-wrapper .inner-wrapper .menu ul li a:hover {
        color: var(--dark-color);
    }

    .product-item:hover .product-img img {
        transform: scale(1.05);
    }

    .product-item:hover .content h3 {
        color: var(--dark-color);
    }

    .products-sidebar .sidebar-items .item > a:hover {
        color: var(--blue-color);
    }

    .products-sidebar .sidebar-items .item ul li a:hover {
        color: var(--dark-color);
    }

    .news-item:hover .img img {
        border-bottom-right-radius: 0;
    }

    .news-item:hover .content h3 {
        color: var(--blue-color);
    }

    .about-intro .content h4 span:hover {
        color: var(--blue-color);
    }

    header.color-header .header-wrapper .inner-wrapper .menu > ul > li.has-mega-menu > a:hover, header.color-header .header-wrapper .inner-wrapper .menu > ul > li.has-dropdown-menu > a:hover {
        color: white;
    }

    header.color-header .header-wrapper .inner-wrapper .menu > ul > li.has-mega-menu > a:hover:after, header.color-header .header-wrapper .inner-wrapper .menu > ul > li.has-dropdown-menu > a:hover:after {
        background: url(../img/svg/caret.svg) no-repeat center;
    }

    header.fixed-active .header-wrapper .inner-wrapper .menu > ul > li.has-mega-menu > a:hover, header.fixed-active .header-wrapper .inner-wrapper .menu > ul > li.has-dropdown-menu > a:hover {
        color: white;
    }
}

@media screen and (max-width: 1681px) {
    .container {
        max-width: 1530px;
    }

    .megamenu .menu-wrapper {
        padding: 40px 360px 40px 90px;
    }

    .page-header-title h2 {
        font-size: 55px;
        line-height: 60px;
    }

    /* Homepage */
    header .header-wrapper .inner-wrapper .logo a svg {
        width: 160px;
    }

    .slider-title-content .title-content h3 {
        font-size: 60px;
    }

    .slider-content {
        padding: 180px 80px 60px;
    }

    .slider-category .category-content .title-wrapper .title h4 {
        font-size: 21px;
    }

    header .header-wrapper .inner-wrapper {
        padding: 0 40px;
    }

    header .header-wrapper .inner-wrapper .menu ul li a {
        font-size: 15px;
    }

    header .header-wrapper .inner-wrapper .search {
        margin-left: 20px;
    }

    .news-item .content h3 {
        font-size: 21px;
    }

    /* Homepage */
    /* About */
    .about-intro .content h3 {
        font-size: 90px;
        line-height: 100px;
        margin-bottom: 80px;
    }

    .about-intro .content h2 {
        margin-bottom: 60px;
    }

    .solution-content-slider .slide-content h3 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .solution-icon-slider .icon {
        height: 750px;
    }

    .solution-content-slider .slide-content {
        margin: 60px 0;
    }

    .solution-icon-slider .icon img {
        max-width: 30%;
    }

    .about-content-area .content .cnt {
        font-size: 36px;
        line-height: 45px;
    }

    .about-tab-items .tab-item h4 {
        font-size: 27px;
    }

    .about-tab-items .tab-item p {
        font-size: 15px;
    }

    .about-tab-content .tab-content .content .cnt {
        font-size: 21px;
        line-height: 32px;
    }

    .about-tab-content .tab-content .content h3 {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .founder-card {
        min-height: 675px;
    }

    /* about */
    /* news detail */
    .news-detail-content .content {
        font-size: 28px;
    }

    /* news detail */
    /* sss */
    .sss-wrapper {
        margin: 0 -30px;
    }

    .sss-content {
        padding: 0 30px;
        width: 40%;
    }

    .sss-accordion {
        width: 60%;
    }

    .sss-accordion .accordion-item .accordion-content {
        font-size: 18px;
        padding-bottom: 40px;
    }

    .sss-content .content .cnt {
        font-size: 21px;
    }

    /* sss */
    /* products */
    .products-sidebar {
        width: 420px;
    }

    .product-list {
        width: calc(100% - 420px);
    }

    .products-sidebar .sidebar-title h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .product-list-main .product-list-wrapper .item {
        padding: 0 20px;
    }

    .product-list-main .product-list-wrapper {
        margin: 0 -20px;
    }

    /* products */
    /* products detail */
    .product-content .title h1 {
        font-size: 36px;
        line-height: 45px;
        margin-bottom: 31px;
    }

    .product-content .title .code span {
        font-size: 24px;
    }

    .offer-area .offer a {
        font-size: 21px;
        min-width: 325px;
    }

    .related-files:after {
        right: 19%;
    }

    .product-content .content .cnt {
        font-size: 21px;
    }

    .product-content .content {
        margin-bottom: 50px;
    }

    .product-content .offer-area {
        margin-bottom: 50px;
    }

    .related-files {
        margin-top: 40px;
        padding: 60px;
    }

    .related-files h3 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .related-files ul li a {
        font-size: 21px;
    }

    .product-tab-area {
        margin: 150px 0;
    }

    .product-tab-area .nav .item {
        font-size: 21px;
    }

    .product-tab-main .tab-content .content p, .product-tab-main .tab-content h3 {
        font-size: 24px;
    }

    .other-products-slider h3 {
        font-size: 50px;
    }

    .product-content .scroll {
        font-size: 21px;
    }

    /* products detail */
    /* contact */
    .map-contact-wrapper .contact-button a {
        font-size: 21px;
        height: 80px;
    }

    .form-main .form-wrapper .item .form-item input, .form-main .form-wrapper .item .form-item textarea {
        font-size: 17px;
    }

    /* contact */
    .product-image-thumb {
        padding: 0 160px;
    }
}

@media screen and (max-width: 1601px) {
    /* Homepage */ .slider-title-content {
        margin-bottom: 60px;
    }

    .slider-title-content .title-content h3 {
        font-size: 45px;
    }

    .about-content {
        padding-left: 100px;
    }

    .product-categories .wrapper .categories-content .content h3 {
        font-size: 45px;
    }

    /* Homepage */
    /* About */
    .about-intro .content h4 {
        margin-bottom: 90px;
    }

    .solution-content-slider .slide-content h3 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 40px;
    }

    .slide-content .cnt {
        max-width: 80%;
        margin: auto;
    }

    /* About */
    /* Product Detail */
    .offer-area .offer a {
        font-size: 18px;
        height: 90px;
    }

    .offer-area .offer a .icon-offer {
        margin-right: 15px;
    }

    .product-content .offer-area .documents .pdf-btn {
        width: 90px;
        height: 90px;
    }

    .product-content .offer-area .documents .pdf-btn .icon-pdf {
        width: 45px;
        height: 45px;
    }

    .product-content .title {
        margin-bottom: 84px;
    }

    .product-detail-content {
        padding: 0 20px;
    }

    .product-detail-image {
        padding: 0 20px;
    }

    .product-detail-wrapper {
        margin: 0 -20px;
    }

    /* Product Detail */
    /* Contact */
    .contact-info-card {
        padding: 60px;
        padding-left: 40px;
    }

    .contact-info-card .contact-info-tab {
        margin-right: 30px;
    }

    .contact-info-content .content h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .contact-info-content .content ul li a {
        font-size: 18px;
    }

    .form-main .form-wrapper .item .form-item {
        margin-bottom: 10px;
    }

    .form-main .form {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    /* Contact */
    .product-image-main .item {
        padding: 40px;
    }

    .product-image-thumb {
        padding: 0 120px;
        bottom: 0px;
    }
}

@media screen and (min-width: 1500px) and (max-width: 1550px) {
    header .header-wrapper .inner-wrapper .hamburger {
        width: 15%;
    }

    .container {
        max-width: 1350px;
    }

    .slider-content {
        padding-top: 140px;
    }

    .slider-title-content .title-content h3 {
        margin-bottom: 70px;
    }

    .slider-title-content {
        margin-bottom: 70px;
    }

    .categories {
        padding-top: 30px;
        margin: 0 -20px;
    }

    .categories .item a .icon {
        width: 100px;
        height: 100px;
    }

    .categories .item svg {
        width: 40px;
    }

    .about-content h3 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .about-intro .content h2 {
        margin-bottom: 30px;
    }

    .about-intro .content h3 {
        font-size: 64px;
        line-height: 70px;
        margin-bottom: 60px;
    }

    .about-intro .content h4 {
        margin-bottom: 60px;
    }

    .about-intro .content .scroll span {
        width: 40px;
        height: 21px;
    }

    .solution-img-slider {
        width: 240px;
        height: 240px;
        top: -180px;
    }

    .solution-icon-slider .icon {
        height: 600px;
        border-radius: 190px 80px 80px !important;
    }

    .founder-card {
        min-height: 588px;
    }

    .career-slider label .single-career-item .title h4 {
        font-size: 27px;
    }

    .sss-main {
        padding: 0 30px;
    }

    .side-menu .side-menu-main .contact-info {
        margin-bottom: 50px;
    }

    .side-menu .side-menu-main .side-menu-header {
        margin-bottom: 50px;
    }

    .side-menu .side-menu-main .social-links {
        margin-bottom: 110px;
    }

    .side-menu .side-menu-main .side-content {
        margin: 0;
        padding: 0 60px;
        padding-bottom: 50px;
        margin-bottom: 20px;
    }

    .search-form {
        padding: 0;
    }

    .search-form form {
        max-width: 50%;
    }

    .search-results {
        padding: 0;
        padding-top: 200px;
    }

    .search-main h3 {
        margin-bottom: 30px;
    }

    .search-categories {
        margin-bottom: 40px;
    }

    .product-offer-modal, .fast-contact-modal {
        padding-top: 100px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a {
        padding: 60px;
    }

    .megamenu .menu-wrapper {
        padding: 60px 125px 60px 60px;
    }

    .second-menu {
        height: 270px;
    }

    .number {
        margin-left: 60px;
    }

    .related-files:after {
        right: 15%;
    }

    .product-offer-modal, .fast-contact-modal {
        padding-top: 60px;
    }

    .form-main .form-wrapper .item .form-item input, .form-main .form-wrapper .item .form-item textarea {
        height: 50px;
    }

    .form-main .form-wrapper .item .form-item textarea {
        height: 110px;
    }

    .form-close a {
        padding: 0 30px;
        border-radius: 35px;
    }

    .form-close a .icon-reply-message {
        height: 35px;
        width: 40px;
    }

    .contact-form-main {
        margin-top: -350px;
    }

    .contact-info-content {
        height: 270px;
    }

    .map-contact-wrapper {
        padding-bottom: 50px;
    }

    .contact-info-content .content h3 {
        font-size: 27px;
        margin-bottom: 20px;
    }

    .contact-info-content .content ul li a {
        height: 60px;
        font-size: 16px;
    }

    .contact-info-card .contact-info-tab ul li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1441px) {
    .about-content h3 {
        font-size: 42px;
    }

    .container {
        max-width: 1200px;
    }

    .product-categories .wrapper .product-category-list {
        padding: 0 60px;
    }

    .product-categories .wrapper .categories-content {
        padding: 0 60px;
    }

    .product-categories .wrapper {
        margin: 0 -60px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item {
        padding: 0 15px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper {
        margin: 0 -15px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a {
        margin-bottom: 30px;
        padding: 60px 45px;
    }

    .action-wrapper .button a {
        padding: 0 60px;
        font-size: 21px;
        height: 75px;
    }

    .action-content .need-help .text h3 {
        font-size: 36px;
    }

    .action-main {
        padding: 70px;
    }

    .about-intro .content h3 {
        font-size: 72px;
        line-height: 80px;
    }

    .founder-card {
        min-height: 515px;
    }

    .founder-content h3 {
        font-size: 27px;
        line-height: 35px;
    }

    .founder-content .cnt {
        font-size: 18px;
    }

    .founder-content {
        padding-left: 80px;
    }

    .product-filter {
        min-width: 200px;
    }

    .products-sidebar .sidebar-items .item > a {
        font-size: 16px;
    }

    .offer-area .offer a {
        font-size: 16px;
        min-width: auto;
    }

    .related-files:after {
        right: 24%
    }

    .product-content .scroll {
        font-size: 18px;
    }

    .product-tab-area .nav .item {
        font-size: 18px;
        height: 80px;
    }

    .product-tab-area nav {
        margin-top: -8px;
    }

    .news-detail-main {
        padding: 0;
    }

    .news-detail-content .content {
        font-size: 24px;
    }

    .news-detail-content .date {
        font-size: 24px;
        height: 80px;
        top: -40px;
    }

    .gallery-page-wrapper .item {
        padding: 0 10px;
    }

    .gallery-page-wrapper {
        margin: 0 -10px;
    }

    .gallery-page-wrapper .item a {
        margin-bottom: 20px;
    }

    .gallery-header .page-header-title h2 {
        font-size: 36px;
        line-height: 45px;
    }

    .page-header-title {
        max-width: 100%;
    }

    .gallery-links-wrapper .date {
        min-width: 230px;
    }

    .sss-main {
        padding: 0;
    }

    .sss-content .sss-title {
        margin-bottom: 90px;
    }

    .sss-content .sss-title h3 {
        line-height: 45px;
    }

    .sss-content .content .sss-card {
        font-size: 24px;
    }

    .sss-accordion .accordion-item .accordion-title h4 {
        font-size: 24px;
    }

    .accordion-main {
        padding: 30px 70px;
    }

    .sss-main {
        margin-top: -270px;
        overflow: hidden;
    }

    .sss-accordion .accordion-item .accordion-content {
        font-size: 18px;
        padding-bottom: 40px;
    }

    header .header-wrapper .inner-wrapper .menu ul li a {
        padding: 0 10px;
    }

    .megamenu .menu-wrapper {
        padding: 60px;
        padding-right: 370px;
        border-radius: 90px 0 0 30px;
    }

    .megamenu .menu-wrapper .number {
        right: 360px;
    }

    .product-image-thumb .item .img-thumb {
        height: 100px;
    }

    .page-header.career-header {
        height: 500px;
    }

    .page-header-title h2 {
        font-size: 38px;
        line-height: 45px;
    }

    .career-slider label .single-career-item {
        height: 330px;
    }

    .career-slider label .single-career-item .title h4 {
        font-size: 24px;
    }

    .current-department .title h4 {
        font-size: 21px;
    }

    .career-form-title {
        margin-bottom: 30px;
    }

    .slider-content {
        width: 50%;
        padding: 160px 55px 60px;
    }

    .slider-image {
        width: 50%;
    }

    .categories .item {
        padding: 0 5px;
    }

    .side-menu .side-menu-main .side-menu-header {
        margin-bottom: 50px;
    }

    .side-menu .side-menu-main .contact-info {
        margin-bottom: 60px;
    }

    .side-menu .side-menu-main .social-links {
        margin-bottom: 90px;
    }

    .side-menu .side-menu-main .side-content {
        margin: 0;
        margin-bottom: 30px;
    }

    .side-menu .side-menu-main {
        border-radius: 65px 0 0 65px;
    }

    .about-content-area .content .cnt {
        font-size: 35px;
        line-height: 45px;
    }
}

@media screen and (max-width: 1367px) {
    header .header-wrapper .inner-wrapper .hamburger {
        width: 10%;
    }

    .slider-title-content .swiper-container {
        padding-top: 0;
    }

    .slider-content {
        padding: 160px 60px 60px;
    }

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

    .categories .item a .icon {
        width: 90px;
        height: 90px;
    }

    .categories .item svg {
        width: 40px;
    }

    .categories .item {
        padding: 0 5px;
    }

    .categories .item a {
        border-radius: 15px;
    }

    .about-content h3 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .about-content .content {
        max-width: 300px;
    }

    .circle , .about-items {
        width: 900px;
        height: 900px;
    }

    .circle-blur {
        width: 1260px;
        height: 1260px;
    }

    .solution-icon-slider .icon {
        border-radius: 180px 100px 100px !important;
        height: 570px;
    }

    .product-list-main .product-list-wrapper .item {
        width: 50%;
    }

    .contact-info-content .content .cnt {
        font-size: 18px;
    }

    .contact-info-content {
        height: 300px;
    }

    .contact-info-card {
        padding: 50px 30px;
        border-radius: 31px 60px;
    }

    .contact-info-card .contact-info-tab {
        margin-right: 20px;
    }

    .contact-info-card .contact-info-tab ul li a {
        font-size: 16px;
        padding: 30px 10px;
    }

    .contact-info-content .content ul li a {
        font-size: 16px;
        height: 60px;
        border-radius: 30px;
    }

    header {
        top: -120px;
    }

    header.products-header.fixed-active .header-wrapper {
        height: 120px;
    }

    header .header-wrapper {
        height: 120px;
    }

    main {
        margin-top: -120px;
    }

    .products {
        padding-top: 120px;
    }

    .about-intro {
        padding-top: 120px;
    }

    .related-files:after {
        right: 18%;
    }

    .other-products-slider h3 {
        margin-bottom: 50px;
        font-size: 36px;
    }

    .product-item .content .code {
        margin-bottom: 10px;
    }

    .other-products-slider .more-btn {
        height: 50px;
    }

    .product-item .content h3 {
        font-size: 21px;
        margin-bottom: 25px;
    }

    .product-item .content {
        padding: 25px;
    }

    .search-form {
        transform: translateX(-50%) translateY(150px);
    }

    .search-results {
        padding-top: 200px;
    }

    header .header-wrapper .inner-wrapper .logo a svg {
        width: 140px;
    }

    .news-slider-wrapper {
        padding: 0 60px;
    }

    header .header-wrapper .inner-wrapper .menu .has-dropdown-menu .dropdownmenu ul {
        padding: 40px 60px;
        border-radius: 70px 45px;
    }

    .arrow-up {
        top: 42px;
    }

    .about-intro .content h2 {
        margin-bottom: 40px;
    }

    .about-intro .content h3 {
        margin-bottom: 90px;
    }

    .solution-img-slider {
        width: 200px;
        height: 200px;
    }

    .about-content-area .content .cnt {
        font-size: 32px;
        line-height: 45px;
    }

    .products-sidebar {
        min-height: calc(100vh - 120px);
        padding-right: 40px;
        top: 120px;
    }

    .products-sidebar .sidebar-items {
        height: 370px;
        overflow: auto;
        padding-right: 35px;
    }

    .products-sidebar .sidebar-items::-webkit-scrollbar {
        width: 0px;
    }

    .product-image-main .img {
        border-radius: 50px 120px;
        padding: 50px;
    }

    .side-menu .side-menu-main .contact-info ul li a {
        height: 60px;
        font-size: 17px;
    }

    .side-menu .side-menu-main .contact-info {
        margin-bottom: 40px;
    }

    .side-menu .side-menu-main .side-menu-header {
        margin-bottom: 40px;
    }

    .side-menu .side-menu-main .side-content {
        margin: 0;
        padding: 0 30px;
        padding-bottom: 30px;
        margin-bottom: 25px;
    }

    .side-menu .side-menu-main {
        padding: 50px 60px;
    }

    .side-menu .side-menu-main .kvkk-links ul li a {
        font-size: 17px;
    }

    .side-menu .side-menu-main .side-content .content {
        margin-top: 15px;
    }

    .product-offer-modal, .fast-contact-modal {
        padding-top: 70px;
    }

    .form-close a {
        height: 70px;
        padding: 0 30px;
    }

    .form-close a .icon-reply-message {
        width: 35px;
        height: 30px;
    }

    .contact-info-content .content .cnt {
        font-size: 17px;
    }

    .map-contact-wrapper {
        padding-bottom: 50px;
    }

    .product-list-header .wrapper {
        height: 80px;
    }

    .fast-contact-modal .form-main .form-wrapper .item .form-item input {
        height: 55px;
    }

    .fast-contact-modal .form-main .form-wrapper .item .form-item textarea {
        height: 100px;
    }
}

@media screen and (max-width: 1200px) {
    header .header-wrapper .inner-wrapper .menu {
        display: none;
    }

    header .header-wrapper .header-left {
        width: auto;
        flex: 1;
    }

    header .header-wrapper .header-right {
        width: auto;
    }

    header .header-wrapper .inner-wrapper {
        padding: 0;
    }

    header .header-wrapper .inner-wrapper .search {
        margin: 0 20px;
        margin-left: 30px;
    }

    header.fixed-active .header-wrapper {
        padding: 0 30px;
    }

    .about-circle .circle {
        border: none;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        width: 100%;
        height: auto;
    }

    .about {
        padding: 100px 0;
        padding-top: 0;
        overflow: hidden;
    }

    .about-items {
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 30px;
    }

    .about-items .item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 33.3%;
        padding: 0 15px;
    }

    .circle:before {
        display: none;
    }

    .about .about-wrapper .about-img-area {
        width: 55%;
    }

    .about-content {
        width: 45%;
    }

    .product-categories .wrapper {
        margin: 0;
        flex-wrap: wrap;
        padding: 0 40px;
    }

    .product-categories .wrapper .categories-content {
        width: 70%;
        padding: 0;
        position: relative;
        top: 0;
    }

    .product-categories .wrapper .product-category-list {
        width: 100%;
        padding: 0;
    }

    .product-list {
        width: 100%;
    }

    .news-slider-wrapper {
        padding: 0 30px;
    }

    .news-slider-wrapper .news-action {
        width: 20%;
        padding-right: 15px;
    }

    .news-slider-wrapper .news-slider {
        width: 80%;
    }

    .footer-top .footer-top-wrapper .footer-contact ul li a .text {
        display: none;
    }

    .footer-top .footer-top-wrapper .footer-contact ul li a {
        font-size: 15px;
        padding: 0 20px;
    }

    .footer-top .footer-top-wrapper .footer-contact ul li a .icon {
        margin: 0;
    }

    header.home-header .header-wrapper .inner-wrapper .search .search-btn {
        border-color: white;
    }

    header.home-header .header-wrapper .search .search-btn svg {
        stroke: white;
    }

    header.home-header.fixed-active .header-wrapper .inner-wrapper .search .search-btn {
        border-color: var(--text-color);
    }

    header.home-header.fixed-active .header-wrapper .search .search-btn svg {
        stroke: var(--text-color);
    }

    header .header-wrapper {
        padding: 0 30px;
    }

    .about-solutions .wrapper {
        margin: 0;
        flex-direction: column-reverse;
    }

    .about-solution-sliders {
        width: 100%;
        margin-bottom: 80px;
    }

    .solution-content-slider {
        width: 100%;
    }

    .solution-img-slider {
        top: -40px;
        left: 50px;
    }

    .about-solutions {
        padding: 100px 0;
    }

    .about-content-area .content {
        padding: 0 30px;
    }

    .about-gallery {
        padding: 0;
    }

    .gallery-wrapper .item.item-lg {
        grid-area: 1;
    }

    .gallery-wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-gap: 30px;
        padding: 0 30px;
    }

    .gallery-wrapper .item img {
        height: 100%;
        object-fit: cover;
    }

    .about-tab-wrapper {
        flex-direction: column-reverse;
        padding: 0 30px;
    }

    .about-tab-content {
        width: 100%;
    }

    .about-tab-items {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .about-tab-items .tab-item {
        padding: 40px 80px;
    }

    .about-tab-items .tab-item:nth-child(2) {
        margin: 0;
        margin-left: -40px;
        padding-top: 40px;
        padding-left: 100px;
        border-radius: 0 35px 35px 0px;
    }

    .about-founder {
        padding: 0;
        padding-bottom: 100px;
    }

    .founder-card {
        min-height: auto;
        height: 430px;
    }

    .founder-content {
        padding-left: 60px;
    }

    .founder-content h3 {
        font-size: 21px;
        line-height: 27px;
        margin-bottom: 20px;
    }

    .founder-content .cnt {
        margin-bottom: 30px;
    }

    .news-page .news-wrapper .item {
        width: 50%;
    }

    .news-detail-main {
        margin: 0 40px;
        margin-top: -140px;
    }

    .page-header {
        border-radius: 0 0 45px 45px;
    }

    .news-detail-content {
        padding: 140px 80px 0;
    }

    .products-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 360px;
        height: 100vh;
        background: white;
        z-index: 999;
        transform: translateX(-100%);
        transition: .4s;
        padding: 0 40px;
        padding-top: 50px;
    }

    .products-sidebar.fixed {
        transform: translateX(0);
    }

    .product-list-header .category {
        display: block;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #F1F1F1;
        border-radius: 30px;
        padding: 0 50px;
        font-weight: 600;
        font-size: 15px;
    }

    .product-result {
        display: none;
    }

    .products-sidebar .sidebar-title h2 {
        font-size: 32px;
        margin: 0;
    }

    .sidebar-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .sidebar-title a {
        display: block;
    }

    .sidebar-title a svg {
        stroke: red;
    }

    .products {
        padding-top: 120px;
    }

    .product-detail-image {
        width: 80%;
        padding: 0;
        margin: auto;
        position: relative;
        top: 0;
    }

    .product-detail-content {
        padding: 0;
        width: 100%;
    }

    .product-detail-wrapper {
        flex-wrap: wrap;
    }

    .product-content .title h1 {
        color: var(--dark-color);
    }

    .product-content .title .code span {
        color: var(--text-color);
    }

    .product-content {
        padding: 0;
        padding-top: 60px;
        text-align: center;
    }

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

    .product-content .scroll {
        justify-content: center;
        margin-bottom: 100px;
    }

    .product-detail-main {
        padding: 0 60px;
    }

    .product-tab-main .tab-content {
        max-width: 100%;
        padding: 100px;
    }

    .product-tab-area nav {
        margin-top: -40px;
    }

    .related-files {
        left: 30%;
        width: 50%;
        text-align: left;
    }

    .gallery-page-wrapper .item {
        width: 33.3%;
    }

    .gallery-page-main {
        padding: 0 30px;
    }

    .map-contact-wrapper {
        padding: 0 30px;
        padding-bottom: 100px;
    }

    .search-products .search-list-wrapper .item {
        width: 50%;
    }

    .search-results {
        max-width: 100%;
    }

    .search-form form {
        max-width: 70%;
    }

    .product-image-thumb .item .img-thumb {
        transform: none;
        opacity: 1;
    }

    .product-image-thumb .item .img-thumb {
        height: 150px;
    }

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

    .footer-copyright {
        flex-wrap: wrap;
        margin: 0 -20px;
    }

    .copy {
        order: 2;
        width: 50%;
    }

    .footer-copyright .social {
        order: 1;
        width: 60%;
        margin: auto;
        margin-bottom: 30px;
    }

    .footer-copyright .design {
        order: 3;
        width: 50%;
    }

    header .header-wrapper .inner-wrapper .header-contact {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .side-menu {
        display: none;
    }

    .product-offer-modal, .fast-contact-modal {
        padding-left: 30px;
        padding-right: 30px;
    }

    .captcha-area {
        width: 80%;
    }

    .about-items {
        width: auto;
        height: auto;
    }

    .action-area {
        padding: 0 40px;
    }

    .search-categories .categories .item .caption span {
        font-size: 16px;
    }

    .search-form {
        width: 90%;
    }

    .search-results #ust_sonuclar {
        max-width: 90%;
    }

    .search-categories .categories .item a .icon {
        width: 60px;
        justify-content: flex-start;
    }

    .search-categories .categories .item a .icon img, .search-categories .categories .item a .icon svg {
        width: 90%;
    }

    .search-results {
        padding-top: 270px;
    }

    .search-products .search-list-wrapper {
        padding: 0 100px;
    }

    .search-list-wrapper .item {
        margin-bottom: 40px;
    }

    .news-navigation {
        margin: 60px 0px 30px;
    }

    .map-responsive .map-scope {
        transform: none;
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .slider-image {
        width: 100%;
        height: 60vh;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 50px;
    }

    .slider-wrapper {
        flex-wrap: wrap;
    }

    .slider-content {
        width: 100%;
        padding: 60px 120px;
        height: auto;
    }

    .slider-content {
        padding: 100px 30px;
    }

    .slider-image .slider-holder .img-holder {
        height: 60vh;
    }

    .slider-image .slider-holder {
        height: 100%;
    }

    .about .about-wrapper .about-img-area {
        transform: scale(0.5);
        width: 60%;
    }

    .about-img-area .img3 {
        right: 0;
        left: auto;
    }

    .about-content {
        width: 40%;
        padding: 0;
    }

    .about .about-wrapper {
        padding: 0 30px;
    }

    .about-circle .circle {
        margin: 0;
        margin-top: -100px;
    }

    .about-items {
        padding: 0 15px;
    }

    .about-items .item {
        padding: 0 5px;
        display: inline-block;
    }

    .about-items .item a .text {
        flex: 1;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item:nth-child(2n) {
        transform: translateY(100px);
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item:nth-child(2n + 1) {
        transform: translateY(0);
    }

    .product-categories .wrapper .categories-content {
        margin-bottom: 100px;
    }

    .product-categories {
        padding-bottom: 0;
    }

    .action-area {
        margin-top: 180px;
    }

    .action-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .action-content {
        margin-bottom: 50px;
    }

    .action-main {
        max-width: 100%;
        margin: auto;
    }

    .news-item .img img {
        border-bottom-right-radius: 150px;
    }

    .footer-top .footer-top-wrapper {
        padding: 0 40px;
    }

    footer .footer-container {
        padding: 0 30px;
    }

    .home-news {
        padding: 100px 0;
    }

    .footer-top {
        padding: 0 30px;
    }

    .footer-main .footer-links ul li a {
        font-size: 16px;
        padding: 0 15px;
    }

    .footer-main {
        padding: 80px 40px 20px;
    }

    .mobile-header-main {
        height: 90%;
    }

    .mobile-header-main .menu {
        height: 370px;
        overflow: auto;
    }

    .footer-copyright .copy p {
        font-size: 16px;
    }

    .about-content-area {
        margin-bottom: 100px;
    }

    .solution-icon-slider .icon {
        height: 590px;
    }

    .solution-img-slider {
        width: 240px;
        height: 240px;
    }

    .page-header {
        border-radius: 0 0 20px 20px;
    }

    .news-main {
        max-width: 100%;
        padding: 0 20px;
    }

    .news-detail-content {
        padding: 0 50px;
        padding-top: 100px;
    }

    .news-detail-content .content {
        font-size: 21px;
        margin-bottom: 60px;
    }

    .news-detail-content .news-detail-img img {
        height: 240px;
    }

    .side-menu .side-menu-main {
        width: 90%;
    }

    .gallery-links-wrapper .links span {
        position: relative;
        display: block;
        height: 60px;
        border: 1px solid #f1f1f1;
        display: flex;
        align-items: center;
        border-radius: 30px;
        padding: 0 40px;
        padding-right: 50px;
        font-weight: 600;
        color: var(--dark-color);
    }

    .gallery-links-wrapper .links {
        min-width: 30%;
        position: relative;
    }

    .gallery-links-wrapper .links ul {
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--box-shadow);
        border-radius: 0 0 31px 31px;
        border: 1px solid #f1f1f1;
        display: none;
    }

    .gallery-links-wrapper .links ul li a {
        margin: 0;
        display: block;
        padding: 6px 0;
    }

    .gallery-links-wrapper .links span.active {
        border-radius: 30px 30px 0 0;
    }

    .gallery-links-wrapper .links span:after {
        content: "";
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        right: 40px;
        width: 10px;
        height: 10px;
        border-top: 1px solid var(--blue-color);
        border-right: 1px solid var(--blue-color);
        transform: rotate(135deg);
    }

    .gallery-links-wrapper .links span.active:after {
        transform: rotate(-45deg);
        top: 50%;
    }

    .sss-content {
        width: 100%;
        margin-bottom: 90px;
    }

    .sss-wrapper {
        flex-wrap: wrap;
    }

    .sss-content .sss-title {
        text-align: center;
    }

    .sss-content .content .sss-card {
        margin: auto;
    }

    .page-header.sss-header {
        height: 480px;
    }

    .sss-main {
        margin-top: -180px;
    }

    .sss-content .content .cnt {
        max-width: 80%;
        margin: auto;
        text-align: center;
    }

    .sss-green-card {
        margin-bottom: 60px;
    }

    .sss-accordion {
        width: 100%;
    }

    .product-list-header {
        padding: 0 100px;
    }

    .product-list-main {
        padding: 60px 30px;
    }

    .product-detail-main {
        padding: 0 30px;
    }

    .map-contact-wrapper {
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
    }

    .map-contact-wrapper .contact-button {
        margin-bottom: 30px;
    }

    .form-main .form {
        margin: 0 20px;
        padding-left: 60px;
        padding-right: 60px;
    }

    .search-categories .categories .item {
        width: 50%;
    }

    .catalog-item .date {
        opacity: 1;
        transform: rotate(-180deg) translateX(0);
    }

    .product-detail-image {
        width: 90%;
    }

    .product-image-thumb .item .img-thumb {
        height: 125px;
    }

    .current-department {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .career-form-wrapper {
        flex-wrap: wrap;
    }

    .form-department {
        width: 199%;
        border-right: none;
        border-bottom: 1px solid #E6EFF2;
    }

    .career-form .form {
        padding: 30px 0;
    }

    .career-form {
        padding: 30px 50px;
    }

    .career-form-main label .file-btn {
        padding: 0 15px;
    }

    .founder-main {
        display: none;
    }

    .contact-form-main {
        margin-top: -150px;
    }

    .about-tab-items .tab-item p {
        display: none;
    }

    .about-tab-items .tab-item h4 {
        margin: 0;
    }

    .about-tab-items .tab-item:first-child {
        border-radius: 35px;
    }

    .about-tab-items {
        margin-bottom: 40px;
        position: relative;
        top: 0;
    }

    .about-tab-items .back {
        display: none;
    }

    .sss-content .content .sss-card {
        max-width: 70%;
    }

    .product-tab-area {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .product-tab-main .tab-content {
        padding: 20px 100px 70px;
    }
}

@media screen and (max-width: 767px) {
    header .header-wrapper {
        padding: 0 20px;
    }

    header .header-wrapper .inner-wrapper .logo a svg {
        width: 120px;
    }

    header .header-wrapper .inner-wrapper .search .search-btn {
        height: 40px;
        width: 40px;
    }

    header.home-header .header-wrapper .search .search-btn svg {
        width: 15px;
    }

    header .header-wrapper .inner-wrapper .search {
        margin: 0;
        margin-left: 20px;
    }

    re {
        padding: 60px 30px;
    }

    .slider-title-content .title-content h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .more-btn {
        height: 60px;
        border-radius: 15px;
    }

    .slider-image .slider-holder .img-holder .img {
        top: 0;
        right: 0;
    }

    .slider-category .category-content .title-wrapper .title h4 {
        font-size: 17px;
    }

    .categories {
        padding: 40px 0;
        display: block;
        overflow: auto;
        white-space: nowrap;
        margin-right: -10px;
    }

    .categories .item {
        width: 120px;
        display: inline-block;
    }

    .about .about-wrapper {
        flex-wrap: wrap;
    }

    .about .about-wrapper .about-img-area {
        width: 100%;
        transform: scale(.5) translateX(110px);
    }

    .about-content {
        width: 100%;
    }

    .about-circle .circle {
        margin: 0;
        margin-top: 0;
    }

    .about-content {
        margin-top: -100px;
    }

    .about-content .content .line {
        margin-bottom: 30px;
    }

    .slider-category .category-content {
        margin-bottom: 0;
    }

    .slider-content {
        height: auto;
        background: rgb(255 255 255 / 50%);
        position: relative;
        width: 95%;
        margin: auto;
        margin-top: -200px;
        border-radius: 25px;
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        padding: 50px 30px;
        z-index: 1;
    }

    .slider-category {
        padding: 0;
    }

    .about {
        margin-top: -100px;
        padding: 0;
    }

    .about-content h3 {
        margin-bottom: 30px;
    }

    .about-content .content .cnt {
        margin-bottom: 30px;
    }

    .about-items {
        display: block;
        white-space: nowrap;
        overflow: auto;
        padding: 50px 20px 30px;
        height: auto;
        border-radius: 0;
        pointer-events: auto;
    }

    .about-items .item {
        display: inline-block;
        width: auto;
    }

    .about-circle .circle:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(to left, #fcfbf4, rgb(252 251 240 / 0%));
        z-index: 1;
    }

    .about-items .item + .item {
        transform: translateY(-8px);
    }

    .about-items .item a .text {
        max-width: 150px;
    }

    .about-items .item a .icon {
        width: 60px;
        height: 60px;
    }

    .about-items .item a .icon img {
        width: 25px;
    }

    .about-items .item a {
        height: 100px;
    }

    .product-categories .wrapper {
        padding: 0 10px;
    }

    .product-categories .wrapper .categories-content {
        width: 100%;
    }

    .product-categories .wrapper .categories-content .content h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .product-categories .wrapper .categories-content {
        margin-bottom: 60px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item:nth-child(2n) {
        transform: translateY(60px);
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item {
        padding: 0 5px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a .title h4 {
        font-size: 16px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a {
        border-radius: 20px;
        padding: 20px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a .img {
        margin-bottom: 20px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item a .more-btn {
        margin-top: 20px;
        font-size: 12px;
        padding: 0 20px;
        height: 45px;
        border-radius: 10px;
    }

    .action-area {
        margin-top: 60px;
        margin-bottom: 60px;
        padding: 0 10px;
    }

    .action-main {
        max-width: 100%;
        padding: 45px;
    }

    .action-content .need-help .text h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .action-content .need-help .icon {
        margin-right: 20px;
        width: 100%;
        margin-bottom: 30px;
    }

    .action-content .need-help .text {
        flex: 1;
    }

    .action-content .need-help {
        flex-wrap: wrap;
    }

    .action-content {
        margin-bottom: 30px;
    }

    .action-wrapper .button a {
        padding: 0 40px;
        height: 60px;
    }

    .action-wrapper .button a .icon svg {
        width: 25px;
    }

    .action-content .need-help .icon img {
        width: 80px;
    }

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

    .footer-top .footer-top-wrapper {
        height: 70px;
        border-radius: 35px;
    }

    .footer-contact {
        display: none;
    }

    footer .footer-container {
        padding: 0;
    }

    .footer-main {
        margin-top: -35px;
        padding: 50px 30px;
        padding-bottom: 20px;
    }

    .footer-main .footer-links {
        padding: 0;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .footer-main .footer-links ul {
        animation: none;
        padding: 0 30px;
        text-align: center;
        flex-wrap: wrap;
        background: transparent;
    }

    .footer-main .footer-links ul li {
        width: 50%;
    }

    .footer-main .footer-links ul li a {
        padding: 7px 0;
    }

    .footer-copyright .copy p {
        font-size: 12px;
    }

    .footer-copyright .design a {
        font-size: 12px;
    }

    .footer-main .footer-links:before {
        display: none;
    }

    .about-intro .content h3 {
        font-size: 45px;
        line-height: 54px;
    }

    .about-intro .content h4 {
        line-height: 30px;
    }

    .solution-icon-slider .icon {
        height: 400px;
        border-radius: 45px !important;
    }

    .about-solution-sliders {
        padding: 0;
    }

    .solution-img-slider {
        width: 180px;
        height: 180px;
        border-radius: 24px;
        top: -100px;
    }

    .solution-icon-slider .icon img {
        max-width: 40%;
    }

    .about-solutions {
        padding-top: 200px;
    }

    .solution-content-slider {
        padding: 0;
    }

    .solution-content-slider .slide-content h3 {
        font-size: 32px;
        line-height: 32px;
    }

    .solution-content-slider .pagination span {
        font-size: 21px;
    }

    .solution-content-slider .slide-content {
        margin: 30px 0;
    }

    .about-content-area .content .cnt {
        font-size: 16px;
        line-height: 30px;
    }

    .about-content-area .content {
        padding: 0;
    }

    .about-dot-log {
        margin-bottom: 30px;
    }

    .gallery-wrapper {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .gallery-wrapper .item.item-lg {
        width: 100%;
    }

    .gallery-wrapper .item img {
        height: 300px;
        object-fit: cover;
        border-radius: 20px;
    }

    .about-tab-area {
        margin: 0;
        padding: 60px 0;
    }

    .about-tab-items .tab-item {
        padding: 20px 35px;
    }

    .about-tab-items .tab-item.active {
        border-color: var(--blue-color);
        box-shadow: var(--box-shadow);
    }

    .about-tab-items .tab-item.active h4 {
        color: var(--blue-color);
    }

    .about-tab-items .tab-item h4 {
        font-size: 16px;
        margin: 0;
    }

    .about-tab-wrapper {
        padding: 0;
    }

    .about-tab-items .tab-item p {
        display: none;
    }

    .about-tab-items .tab-item:nth-child(2) {
        padding-left: 60px;
        padding-top: 20px;
    }

    .about-tab-content .tab-content {
        align-items: flex-start;
    }

    .about-tab-content .tab-content .content h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-tab-content .tab-content .content .cnt {
        font-size: 15px;
        line-height: 21px;
    }

    .news-header .banner-news h2 {
        font-size: 32px;
    }

    .news-header .banner-news > a {
        font-size: 12px;
        height: 45px;
    }

    .news-page .news-wrapper .item {
        width: 100%;
    }

    .news-detail-main {
        margin: 0;
        margin-top: -140px;
        padding-bottom: 100p;
    }

    .news-detail-content {
        padding: 0 30px;
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .news-detail-content .date {
        height: 60px;
        font-size: 12px;
        padding: 0 50px;
        top: -30px;
    }

    .news-detail-content .content {
        font-size: 18px;
    }

    .news-detail-content .content p {
        color: #343a40;
    }

    .news-detail-content .news-detail-img img {
        height: 130px;
        border-radius: 22px;
    }

    .footer-logo img {
        width: 60%;
        margin: auto;
        display: block;
    }

    .news-detail-header {
        height: 450px;
    }

    .product-list-header .wrapper {
        flex-wrap: wrap;
        margin: 0 -5px;
        justify-content: center;
    }

    .product-list-main .product-list-wrapper .item {
        width: 100%;
    }

    .product-list-header .wrapper .title {
        display: none;
    }

    .product-list-header .category {
        width: 50%;
    }

    .product-filter {
        min-width: auto;
        width: 50%;
        padding: 0 5px;
    }

    .product-list-header .category {
        padding: 0 5px;
        height: 45px;
    }

    .product-list-header {
        padding: 0 15px;
        top: 90px;
        border-bottom-right-radius: 50px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 12px;
        padding-left: 50px;
        line-height: 45px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered:before {
        left: 20px;
        width: 20px;
        height: 20px;
    }

    .select2-container--default .select2-selection--single {
        height: 45px;
    }

    .category span {
        font-size: 12px;
        padding: 0 30px;
    }

    header {
        top: -90px;
    }

    header .header-wrapper {
        height: 90px;
    }

    main {
        margin-top: -90px;
        overflow-x: hidden;
    }

    header.products-header {
        border-bottom-right-radius: 50px;
    }

    header.fixed-active .header-wrapper {
        height: 90px;
    }

    .products {
        padding-top: 90px;
        padding-bottom: 0;
    }

    .catalog-item {
        margin-bottom: 20px;
        padding: 30px;
        flex-wrap: wrap;
        box-shadow: var(--box-shadow);
    }

    .catalog-item .date {
        writing-mode: inherit;
        transform: none;
        position: relative;
        justify-content: flex-start;
        width: 100%;
        border-bottom: 1px solid #E6EFF2;
        padding-bottom: 20px;
    }

    .catalog-item .date .icon-stopwatch {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .catalog-item .caption .title h3 {
        font-size: 14px;
    }

    .catalog-item .caption {
        width: 100%;
        padding: 0;
        padding: 20px 0;
        border-bottom: 1px solid #E6EFF2;
    }

    .catalog-item .caption .img {
        margin-right: 20px;
        max-width: none;
        width: 80px;
        border-radius: 10px;
    }

    .catalog-item .view {
        padding-top: 20px;
    }

    .page-header.catalog-header {
        height: 440px;
    }

    .catalog-main {
        margin-top: -140px;
    }

    .page-header-title h2 {
        font-size: 40px;
    }

    .page-header.sss-header {
        height: 400px;
    }

    .page-header {
        border-radius: 0 0 40px 40px;
    }

    .sss-content .content .sss-card {
        padding: 30px 40px;
        width: 100%;
        font-size: 18px;
        max-width: 100%;
    }

    .sss-content .content .sss-card .icon-hearth {
        min-width: 70px;
        height: 63px;
    }

    .sss-green-card {
        margin-bottom: 30px;
    }

    .sss-content {
        margin-bottom: 60px;
        padding: 0;
    }

    .sss-accordion .accordion-item .accordion-title h4 {
        font-size: 15px;
        line-height: 30px;
        padding-right: 30px;
    }

    .accordion-main {
        padding: 30px 30px;
    }

    .sss-accordion .accordion-item .accordion-title {
        padding: 20px 0;
    }

    .sss-accordion .accordion-item .accordion-title .plus {
        width: 20px;
        height: 20px;
    }

    .sss-accordion .accordion-item .accordion-content {
        font-size: 15px;
    }

    .sss-content .sss-title h3 {
        font-size: 27px;
        line-height: 35px;
    }

    .sss {
        padding-bottom: 60px;
    }

    .sss-wrapper {
        margin: 0;
    }

    .sss-accordion {
        padding: 0;
    }

    .gallery-links-wrapper {
        padding: 0 30px;
        height: 80px;
        margin-bottom: 60px;
    }

    .gallery-page-main {
        padding: 0;
        margin-top: -40px;
    }

    .gallery-links-wrapper .links {
        width: 50%;
        min-width: auto;
        padding: 0 5px;
    }

    .gallery-links-wrapper .date {
        min-width: auto;
        width: 50%;
        padding: 0 5px;
    }

    .gallery-links-wrapper .links span {
        height: 45px;
    }

    .gallery-links-wrapper .links ul {
        left: 5px;
        right: 5px;
        width: auto;
    }

    .gallery-page-wrapper .item {
        width: 50%;
    }

    .page-header.gallery-header {
        height: 400px;
    }

    .product-detail-image {
        width: 100%;
    }

    .product-detail-image .img {
        padding: 60px;
        border-radius: 40px 85px;
    }

    .product-detail-main {
        margin-top: -200px;
    }

    .product-content .title h1 {
        font-size: 24px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .product-content .title .code span {
        font-size: 18px;
    }

    .page-header.product-detail-header {
        height: 350px;
    }

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

    .offer-area .offer a {
        height: 60px;
        padding: 0 50px;
    }

    .product-content .offer-area .documents .pdf-btn {
        height: 60px;
        width: 60px;
    }

    .product-content .offer-area .documents .pdf-btn .icon-pdf {
        width: 30px;
        height: 30px;
    }

    .offer-area .offer a .icon-offer {
        width: 23px;
        height: 30px;
    }

    .product-content .offer-area .offer {
        margin-right: 15px;
    }

    .product-content .offer-area {
        padding: 0;
    }

    .product-content .content .cnt {
        font-size: 18px;
    }

    .product-content .content {
        padding: 20px;
    }

    .product-content .scroll {
        margin-left: 0;
        margin-bottom: 80px;
    }

    .product-tab-area .nav .item {
        font-size: 10px;
        padding: 0 20px;
        width: 50%;
        height: 60px;
    }

    .product-tab-area nav {
        display: block;
        padding: 0 20px;
    }

    .product-tab-main .tab-content {
        padding: 30px;
    }

    .product-tab-main {
        border-radius: 25px;
    }

    .product-tab-main .tab-content .content p, .product-tab-main .tab-content h3 {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .feautures .features-item ul li {
        font-size: 12px;
    }

    .feautures .features-item ul li .key {
        width: 55%;
    }

    .feautures .features-item ul li .value {
        width: 45%;
    }

    .other-products-slider h3 {
        font-size: 27px;
        margin-bottom: 60px;
    }

    .product-tab-area {
        margin: 0 -30px;
        margin-bottom: 60px;
    }

    .other-products-slider .swiper-container {
        margin-right: -45px;
        margin-left: -25px;
    }

    .product-item .content h3 {
        font-size: 21px;
    }

    .other-products-slider .swiper-container:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(to left, white, rgba(255,255,255,0));
        z-index: 3;
        pointer-events: none;
    }

    .map-contact-wrapper .contact-button a {
        height: 60px;
        font-size: 15px;
    }

    .icon-contact {
        width: 20px;
        height: 26px;
    }

    .contact-info-card .contact-info-tab {
        writing-mode: inherit;
        transform: none;
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-info {
        width: 90%;
    }

    .contact-info-card {
        flex-wrap: wrap;
        width: 100%;
        padding: 30px;
    }

    .contact-info-card .contact-info-tab ul li a {
        padding: 10px 25px;
        font-size: 14px;
    }

    .contact-info-content {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e6eff2;
        height: 250px;
    }

    .contact-info-content .content {
        padding: 20px 0 0;
    }

    .contact-info-content:before {
        display: none;
    }

    .contact-info-content .content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-info-content .content .cnt {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contact-info-content .content ul li a {
        font-size: 13px;
        height: 50px;
    }

    .contact-info-content .content ul li a.mail .icon-message {
        width: 24px;
        height: 21px;
    }

    .map-contact-wrapper {
        padding: 0;
        padding-bottom: 60px;
    }

    .map-responsive:before {
        height: 170px;
    }

    .contact .contact-map {
        border-radius: 0 0 35px 35px;
        position: relative;
    }

    .form-main .form-wrapper .item.item-6 {
        width: 100%;
    }

    .form-main .form {
        padding: 40px;
        padding-top: 70px;
    }

    .form-main .form-wrapper .item .form-item input, .form-main .form-wrapper .item .form-item textarea {
        font-size: 15px;
    }

    .form-main .form {
        margin: 0;
    }

    .captcha-area {
        width: 90%;
        height: auto;
        border-radius: 19px;
    }

    .captcha-area .captcha-wrapper {
        flex-wrap: wrap;
        padding-right: 10px;
    }

    .captcha-area .captcha-wrapper .captcha {
        width: 100%;
    }

    .captcha-area .captcha-wrapper .captcha:last-child {
        margin-top: 5px;
    }

    .contact {
        padding-bottom: 130px;
    }

    .product-image-main .item {
        padding: 0 10px;
        padding-bottom: 40px;
    }

    .product-image-thumb {
        padding: 0 40px;
    }

    .product-image-thumb .item .img-thumb {
        height: 72px;
        border-radius: 12px;
        transition-delay: 0s !important;
    }

    .product-image-thumb .item {
        padding: 0 5px;
    }

    .footer-copyright .social {
        width: 100%;
    }

    .footer-copyright .social > a {
        font-size: 15px;
    }

    .footer-copyright .social ul {
        padding: 0 20px;
    }

    .news-action .title {
        writing-mode: vertical-lr;
        transform: rotate(-180deg);
    }

    .news-action .title h3 {
        font-size: 17px;
    }

    .news-slider-wrapper {
        padding: 0 15px;
    }

    .search-form form {
        max-width: 90%;
    }

    .search-form form input {
        font-size: 15px;
        height: 60px;
    }

    .search-area .overlay {
        top: 15px;
        left: 15px;
        bottom: 15px;
        right: 15px;
    }

    .search-results {
        padding: 0 15px;
        padding-top: 220px;
    }

    .search-area {
        padding: 0;
    }

    .search-categories .categories {
        margin: 0;
    }

    .search-main h3 {
        margin-bottom: 30px;
    }

    .search-categories {
        margin-bottom: 0;
    }

    .search-products .search-list-wrapper {
        margin: 0;
    }

    .search-products .search-list-wrapper .item {
        width: 100%;
    }

    .nf404-main {
        padding: 40px;
    }

    .nf404-main .svg svg {
        max-height: 160px
    }

    .single-page-main {
        padding: 50px 40px;
    }

    .category-area:before {
        content: "";
        position: absolute;
        width: 100px;
        height: 100%;
        top: -20px;
        bottom: -20px;
        right: -10px;
        background: linear-gradient(to left, white, rgba(255,255,255,0));
        z-index: 2;
        pointer-events: none;
    }

    .home-news {
        padding: 60px 0 100px;
    }

    .career-slider .swiper-container {
        padding: 50px 0;
    }

    .captcha-area .captcha-wrapper .captcha .captcha_img img {
        border-radius: 13px;
    }

    .current-department .logo svg {
        max-width: 40px;
        height: 50px;
    }

    .page-header-title h2 {
        font-size: 27px;
        line-height: 32px;
    }

    .page-header.career-header {
        height: 400px;
    }

    .career-main {
        margin-top: -120px;
    }

    .career-form-title h3 {
        font-size: 15px;
        margin: 0;
    }

    .career-form-main .form-wrapper .item.item-6 {
        width: 100%;
    }

    .career-form {
        padding: 30px;
    }

    .career-form-desc h3 {
        font-size: 17px;
        color: #717f81;
    }

    .career-form-desc p {
        font-size: 15px;
        color: #717f81;
    }

    .career-form-main label {
        font-size: 12px;
    }

    .career-form-main input:not([type="file"]), .career-form-main label {
        height: 50px;
        line-height: 50px;
        padding: 0 20px;
        font-size: 13px;
    }

    .captcha-wrapper .captcha .captcha_img img {
        height: 50px;
    }

    .career-form-main .form-wrapper .item button {
        height: 50px;
    }

    .career-form-main .form-wrapper .item.item-4 {
        width: 100%;
    }

    .career-form-main .form-wrapper .item.item-8 {
        width: 100%;
    }

    .captcha-wrapper .captcha {
        padding: 0 2px;
    }

    .captcha-wrapper .captcha .captcha_img a {
        right: -16px;
    }

    .captcha-area .captcha-wrapper .captcha input {
        height: 50px;
        font-size: 15px;
    }

    .captcha-area .captcha-wrapper .captcha .captcha_img img {
        height: 50px;
        width: 100%;
    }

    .captcha-area .captcha-wrapper .captcha .captcha_img a {
        right: 10px;
    }

    .mobile-header-main {
        height: 95%;
        width: 80%;
        padding: 40px;
    }

    .mobile-header-main .menu > ul >li > a {
        font-size: 18px;
    }

    .mobile-header-main .menu > ul >li > a .plus {
        width: 15px;
        height: 15px;
    }

    .mobile-header-main .menu > ul >li > a .plus:before {
        height: 2px;
    }

    .mobile-header-main .menu > ul >li > a .plus:after {
        width: 2px;
    }

    .mobile-header-main .menu > ul >li > a:not(.has-child):after {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .mobile-header-main .page-menu ul li a {
        font-size: 15px;
    }

    .mobile-header-main .language .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 65px;
        top: 45%;
        border-width: 2px;
        width: 8px;
        height: 8px;
    }

    .form-main {
        padding: 40px 0 90px;
        height: calc(100vh - 30px);
    }

    .product-offer-modal, .fast-contact-modal {
        padding: 0;
        padding-top: 30px;
    }

    .form-close a {
        padding: 0 40px;
        height: 70px;
    }

    .form-close a .icon-reply-message {
        width: 30px;
        height: 25px;
    }

    .form-main {
        overflow: auto;
    }

    .page-header.contact-header {
        height: 220px;
    }

    .founder-main {
        padding: 0;
        display: block;
    }

    .founder-card {
        background-image: url('../img/about/founder-mobile.png') !important;
        width: 344px;
        display: flex;
        align-items: flex-end;
        margin: auto;
        height: 760px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .founder-content h3 {
        font-size: 27px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    .founder-content .cnt {
        display: none;
    }

    .founder-content {
        max-width: 100%;
        padding: 30px;
        padding-bottom: 50px;
        text-align: center;
    }

    .founder-content .line {
        margin: auto;
        margin-bottom: 30px;
    }

    .related-files {
        left: 0;
        width: 100%;
    }

    .contact .contact-form-area {
        height: auto;
    }

    .form-main.contact-form-main {
        overflow: inherit;
    }

    .contact-form-wrapper {
        height: auto;
    }

    .news-navigation > div a {
        font-size: 15px;
    }

    .news-detail-header .banner-detail-news h2 {
        font-size: 27px;
    }

    .product-tab-main .tab-content h3, .produc-tab-main .tab-content .content p {
        color: #818893;
    }

    .product-tab-area .nav .item {
        color: #343a40;
        font-weight: 300;
    }

    .product-content .content .cnt p {
        color: #343a40;
        font-size: 16px;
    }

    .search-categories .categories .item {
        width: 100%;
    }

    .news-navigation {
    }

    .career .swiper-wrapper {
        justify-content: flex-start;
    }
}

#searchClose {
    margin: 0;
    max-width: none;
    width: 20px;
    height: 15px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

#searchClose.active {
    opacity: 1;
}

@media only screen and (min-device-width: 810px) and (max-device-width: 1080px) and (orientation: landscape) {
    .slider-image {
        width: 50%;
    }

    .slider-content {
        width: 50%;
    }

    .categories .item a .icon svg {
        height: 31px;
    }

    .categories .item a .icon {
        width: auto;
        height: 60px;
    }

    header.home-header .header-wrapper .inner-wrapper .search .search-btn {
        border-color: var(--text-color);
    }

    header.home-header .header-wrapper .search .search-btn svg {
        stroke: var(--text-color);
    }

    header .header-wrapper .inner-wrapper .hamburger a:before, header .header-wrapper .inner-wrapper .hamburger a:after {
        background: var(--text-color);
    }

    .about .about-wrapper .about-img-area {
        transform: scale(.7);
        min-height: 700px;
    }

    .about-content {
        padding-left: 0;
    }

    .mobile-header-main {
        padding: 60px;
        height: 95%;
        padding-bottom: 200px;
    }

    .mobile-header-main .menu {
        max-height: 300px;
        overflow: auto;
    }

    .about-solution-sliders {
        width: 80%;
        margin: auto;
    }

    .solution-content-slider .pagination {
        margin-top: 30px;
    }

    .solution-content-slider .slide-content {
        margin: 30px 0;
    }

    .solution-content-slider .slide-content h3 {
        margin-bottom: 20px;
    }

    .about-content-area {
        margin-bottom: 100px;
    }

    .about-tab-items {
        position: relative;
        justify-content: center;
        width: 100%;
        top: 0;
        margin-bottom: 60px;
    }

    .about-tab-items .tab-item p {
        display: none;
    }

    .about-tab-items .tab-item {
        padding: 30px !important;
    }

    .about-tab-items .tab-item h4 {
        margin: 0;
        font-size: 21px;
    }

    .about-tab-items .tab-item:nth-child(2) {
        padding-left: 70px !important;
    }

    .about-tab-items .tab-item:first-child {
        border-radius: 35px;
    }

    .about-tab-content .tab-content .content h3 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-tab-items .back {
        display: none;
    }

    .about-tab-area {
        margin-bottom: 100px;
    }

    .about-tab-content .tab-content .content .cnt {
        font-size: 17px;
        line-height: 27px;
    }

    .products-sidebar .sidebar-items {
        padding-right: 0;
    }

    .products-sidebar .sidebar-items .item > a {
        padding-right: 40px;
    }

    .career .swiper-wrapper {
        justify-content: flex-start;
    }

    .product-categories .wrapper .product-category-list .category-wrapper .item {
        padding: 0 70px;
    }

    .product-categories .wrapper .product-category-list .category-wrapper {
        margin: 0 -70px;
    }

    .product-list-main .product-list-wrapper .item {
        padding: 0 50px;
    }

    .product-list-main .product-list-wrapper {
        margin: 0 -50px;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    right: -100%;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: 990;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    min-height: 100vh;
    padding-bottom: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 40px;
    padding-top: 90px;
}

@media only screen and (max-width: 991px) {
    .mobile-menu {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-menu {
        padding: 15px;
        padding-top: 90px;
    }
}

.mobile-menu .mobile-nav-title {
    padding: 15px 0;
}

.mobile-menu .mobile-nav-title h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .mobile-menu .mobile-nav-title h3 {
        display: block;
    }
}

.mobile-menu .mobile-menu-back {
    -webkit-transform: scale(0);
    transform: scale(0);
    position: fixed;
    right: 5rem;
    top: 1rem;
    width: 3rem;
    height: 3rem;
    z-index: 53;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mobile-menu .mobile-menu-back a {
    position: relative;
    border: 1px solid #fff;
    bottom: 0;
    color: #fff;
    height: 3rem;
    top: 10px;
    line-height: 3rem;
    position: absolute;
    width: 100%;
    -webkit-transition: 0.1s all ease-in;
    transition: 0.1s all ease-in;
}

.mobile-menu .mobile-menu-back a span.arrow {
    display: block;
    width: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 10px;
    height: 2rem;
    position: absolute;
}

.mobile-menu .mobile-menu-back a span.arrow span {
    display: block;
    width: 8px;
    height: 2rem;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

.mobile-menu .mobile-menu-back a span.arrow span i {
    position: absolute;
    left: 0.3rem;
    top: 0;
    font-size: 2rem;
}

.mobile-menu .mobile-menu-back a span.arrow span.arrow-1 {
    left: 0px;
    opacity: 1;
}

.mobile-menu .mobile-menu-back a span.arrow span.arrow-2 {
    left: 10px;
    opacity: 0.5;
    display: none;
}

.mobile-menu .mobile-menu-back a span.arrow span.arrow-3 {
    left: 20px;
    opacity: 0.3;
    display: none;
}

.mobile-menu .mobile-menu-back.active {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@-webkit-keyframes menuListAnimate {
    0% {
        margin-top: 40px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes menuListAnimate {
    0% {
        margin-top: 40px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

.mobile-menu .mobile-nav {
    overflow-y: auto;
    margin-top: 30px;
}

.mobile-menu .mobile-nav::-webkit-scrollbar {
    width: 0px;
}

.mobile-menu .mobile-nav > ul {
    position: relative;
    width: 100%;
}

.mobile-menu .mobile-nav > ul > li:first-child > a {
    padding-top: 0;
}

.mobile-menu .mobile-nav > ul > li:first-child > a:before, .mobile-menu .mobile-nav > ul > li:first-child > a:after {
    top: 30%;
}

.mobile-menu .mobile-nav > ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    text-align: left;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .mobile-menu .mobile-nav > ul {
        padding: 0;
    }
}

.mobile-menu .mobile-nav ul li a.bid-btn {
    margin-top: 20px;
    opacity: 0.7;
}

.mobile-menu .mobile-nav ul li a.sub-item.active {
    color: var(--blue-color);
}

.mobile-menu .mobile-nav ul li a.sub-item.active:before, .mobile-menu .mobile-nav ul li a.sub-item.active:after {
    background: var(--blue-color);
}

.mobile-menu .mobile-nav ul li a.sub-item.active:before {
    height: 0;
}

.mobile-menu .mobile-nav ul li a.sub-item.active:after {
    height: 8px;
}

.mobile-menu .mobile-nav ul li a.sub-item:before, .mobile-menu .mobile-nav ul li a.sub-item:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 3px;
    height: 12px;
    background: var(--dark-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.mobile-menu .mobile-nav ul li a.sub-item:before {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile-menu .mobile-nav ul li a.sub-item:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.mobile-menu .mobile-nav ul li a i {
    margin-left: 10px;
}

.mobile-menu .mobile-nav ul li ul {
    background: var(--blue-color);
    padding: 0 0 5px;
    padding: 20px;
    display: none;
}

.mobile-menu .mobile-nav ul li ul li a {
    border-top: none;
    font-size: 15px;
    padding: 7px 15px;
    font-weight: 500;
    color: white;
}

.mobile-menu .mobile-nav ul li ul li a.sub-item:before, .mobile-menu .mobile-nav ul li ul li a.sub-item:after {
    right: 30px;
}

.mobile-menu .mobile-nav ul li ul li ul {
    display: none !important;
}

.mobile-menu .mobile-nav ul li ul li ul li a {
    padding: 15px 35px;
}

.mobile-menu .mobile-nav ul li ul li ul li a.sub-item:before, .mobile-menu .mobile-nav ul li ul li ul li a.sub-item:after {
    right: 40px;
}

.mobile-menu .mobile-nav ul li ul li ul li ul {
    background: #071625;
}

.mobile-menu .mobile-nav ul li ul li ul li ul a {
    padding: 15px 50px;
}

.mobile-menu .mobile-nav ul li.active {
    position: relative;
    z-index: 34;
}

.mobile-menu .mobile-nav ul li.active ul {
    display: block;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu.open .hamburger-menu .bar.first {
    margin-top: 0px;
    -webkit-transform: translateX(-20%) rotate(45deg);
    transform: translateX(-20%) rotate(45deg);
}

.mobile-menu.open .hamburger-menu .bar.second {
    opacity: 0;
}

.mobile-menu.open .hamburger-menu .bar.third {
    margin-top: 0px;
    -webkit-transform: translateX(-20%) rotate(-45deg);
    transform: translateX(-20%) rotate(-45deg);
}

.mobile-menu.open .mobile-nav > ul > li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0s both;
    animation: menuListAnimate 0.5s ease-in-out 0s both;
}

.mobile-menu.open .mobile-nav > ul > li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.1s both;
    animation: menuListAnimate 0.5s ease-in-out 0.1s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.2s both;
    animation: menuListAnimate 0.5s ease-in-out 0.2s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.3s both;
    animation: menuListAnimate 0.5s ease-in-out 0.3s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.4s both;
    animation: menuListAnimate 0.5s ease-in-out 0.4s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.5s both;
    animation: menuListAnimate 0.5s ease-in-out 0.5s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.6s both;
    animation: menuListAnimate 0.5s ease-in-out 0.6s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li + li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.7s both;
    animation: menuListAnimate 0.5s ease-in-out 0.7s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li + li + li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.8s both;
    animation: menuListAnimate 0.5s ease-in-out 0.8s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li + li + li + li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 0.9s both;
    animation: menuListAnimate 0.5s ease-in-out 0.9s both;
}

.mobile-menu.open .mobile-nav > ul > li + li + li + li + li + li + li + li + li + li + li {
    -webkit-animation: menuListAnimate 0.5s ease-in-out 1s both;
    animation: menuListAnimate 0.5s ease-in-out 1s both;
}

@media only screen and (max-width: 767px) {
    .career {
        padding-bottom: 30px;
    }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!DEÄžÄ°ÅžTÄ°RMEYÄ°N!!!!!!!!!!!!!!!!!!!!!!!!!*/


.news-detail-content .content img {
    height: auto !important;
    width: 100% !important;
}