@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400..700&display=swap');

:root {
    --white: #FFFFFF;
    --white-2: #E5E5E5;
    --white-rgba: rgba(255, 255, 255, .3);
    --gray: #CECECE;
    --gray-2: #DDDDDD;
    --gray-3: #F5F5F5;
    --gray-4: #F1F1F1;
    --blue: #0E519E;
    --blue-2: #213E65;
    --black: #000000;
    --black-2: #142230;
    --p-color: rgba(100, 112, 124, 0.7);
}

/* General */
::-moz-selection {
    background: var(--blue-2);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--blue-2);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--blue-2);
    color: var(--white);
    text-shadow: none;
}

::-webkit-selection {
    background: var(--blue-2);
    color: var(--white);
    text-shadow: none;
}

ul {
    margin-bottom: 0;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

a {
    color: var(--black);
}

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

section {
    padding-block: 80px;
}

.my-10px {
    margin-block: 10px;
}

.my-15px {
    margin-block: 15px;
}

.my-20px {
    margin-block: 20px;
}

.my-50px {
    margin-block: 50px;
}

.my-70px {
    margin-block: 70px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-15px {
    margin-bottom: 15px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-50px {
    margin-bottom: 50px;
}

.mt-10px {
    margin-top: 10px;
}

.mt-15px {
    margin-top: 15px;
}

.mt-20px {
    margin-top: 20px;
}

.mt-30px {
    margin-top: 30px;
}

.mt-50px {
    margin-top: 50px;
}

.mt-70px {
    margin-top: 70px;
}

.section-title {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.section-title h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--gray);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 3.2px;
    margin-bottom: 0;
}

.btn-classic {
    font-size: 15px !important;
    padding: 12px 30px !important;
    letter-spacing: .6px;
    border-radius: 60px !important;
    color: var(--white);
    background-color: var(--blue);
    font-weight: 500;
    display: inline-block;
}

button.btn-classic {
    border: none;
    outline: none;
    width: 100%;
    padding-block: 15px !important;
}

.btn-classic.bg-style-linear {
    background: linear-gradient(135deg, var(--black-2), #005994 50.61%, #0181c2);
    color: var(--white) !important;
}

.btn-classic.bg-style-white {
    background-color: var(--white);
    color: var(--blue);
}

.btn-classic.bg-style-gray {
    background-color: var(--gray-4);
    color: var(--blue-2);
}

.btn-classic.bg-style-transparent {
    background-color: transparent;
    color: var(--blue);
    padding-inline: 0 !important;
}

.btn-classic.bg-style-bordered {
    background-color: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.btn-classic>span {
    display: inline-flex;
    align-items: center;
}

.btn-classic .btn-text {
    margin-left: -13px;
    position: relative;
    z-index: 3;
    transition: transform .6s .125s cubic-bezier(0.1, 0.75, 0.25, 1);
}

.btn-classic .btn-icon {
    margin-left: 6px;
    position: relative;
    transition: opacity .4s 0.25s, transform .6s .25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
    line-height: 0;
    z-index: 3;
}

.btn-classic .btn-icon i {
    margin: 0;
    line-height: 0;
    font-size: 12px;
}

.btn-classic .btn-icon+.btn-icon {
    order: -2;
    opacity: 0;
    transition-delay: 0s;
    margin-left: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.btn-classic:hover .btn-text {
    transition-delay: .1s;
    transform: translateX(23px);
}

.btn-classic:hover .btn-icon {
    transition-delay: 0s;
    transform: translateX(10px);
    opacity: 0;
}

.btn-classic:hover .btn-icon+.btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .225s;
}

.btns-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlighted {
    color: var(--blue);
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--blue);
    color: var(--white);
    border: 7px solid var(--white);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none !important;
}

.video,
.b-n-img {
    height: 500px;
}

.video {
    width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video .img-effect {
    background-color: var(--black-2);
    opacity: .6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.video .play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--blue);
    transition: .3s;
}

.video:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

/* #General */

/* Header & Topbar */
header {
    height: 60px;
    z-index: 123;
}

#header-wrap {
    background-color: var(--blue);
    border-bottom: none !important;
}

#logo {
    width: 130px;
    margin-bottom: -4px;
}

#header-wrap .container-fluid {
    padding-right: 0;
    padding-left: 30px;
}

.menu-link {
    font-size: 16px;
    padding: 20px 12px;
    color: var(--white);
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
}

.menu-item:hover>.menu-link {
    color: var(--white);
    /*  background-color: var(--blue-2); */
}


.is-expanded-menu .sub-menu-container,
.is-expanded-menu .mega-menu-content {
    border-top: 2px solid var(--blue-2);
}

.is-expanded-menu .sub-menu-container .menu-item:hover>.menu-link,
.is-expanded-menu .sub-menu-container .menu-item.current>.menu-link {
    color: var(--blue);
}

.top-bar .top-links-item>a {
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 500;
}

.language-area>a {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--white);
    background-color: var(--blue-2);
    padding-block: 0;
    padding-inline: 25px;
    height: 62px;
}

.language-area .top-links-sub-menu {
    right: 0;
    left: auto;
}

.language-area .top-links-item {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.language-area .top-links-sub-menu .top-links-item:last-child {
    border-bottom: none;
}

.language-area .top-links-sub-menu a {
    font-size: 14px;
    padding-block: 10px;
}

.language-area .top-links-sub-menu .top-links-item>a>img {
    width: 20px;
    height: 20px;
}

.header-misc {
    margin-left: 1px;
}

.is-expanded-menu .sticky-header #header-wrap {
    background-color: var(--blue-2);
}

.is-expanded-menu .sticky-header #header-wrap .language-area>a {
    background-color: var(--blue);
}

/* #Header & Topbar */

/* Slider */
.section-slider {
    height: 83vh;
    padding-block: 0;
}

.section-slider .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

.section-slider .slider-content {
    position: relative;
    z-index: 2;
}

.section-slider .slider-content .subtitle {
    display: block;
}

.section-slider h1,
.section-slider .subtitle,
.section-slider p {
    color: var(--white);
}

.section-slider h1 {
    font-size: 52px;
    font-weight: 500;
}

.section-slider .slider-effect {
    position: absolute;
    background-color: var(--black-2);
    opacity: .7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.section-slider .swiper-button-next,
.section-slider .swiper-button-prev {
    background-color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--black);
    transition: all .3s ease-in-out;
}

.section-slider .swiper-button-prev {
    left: 30px;
}

.section-slider .swiper-button-next {
    right: 30px;
}

.section-slider .swiper-button-next:hover,
.section-slider .swiper-button-prev:hover {
    transform: scale(1.1);
}

.section-slider .swiper-pagination {
    width: max-content;
    left: auto;
    right: 200px;
    bottom: 40px !important;
}

.section-slider .swiper-pagination span {
    background-color: var(--white-rgba);
    width: 75px;
    height: 4px;
    border-radius: 0;
    border: none;
    margin: 0 7px !important;
}

.section-slider .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--white);
}

.section-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-slider .slider-video-area {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* #Slider */

/* Services Section */
.section-services .section-content {
    background-color: var(--gray-4);
    border-radius: 30px;
    padding: 15px;
    position: relative;
    display: block;
}

.section-services .section-content .services-img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.section-services .section-content .services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.section-services .section-content:hover img {
    transform: scale(1.1);
}

.section-services .section-content .services-information {
    position: absolute;
    background: linear-gradient(135deg, var(--black-2), rgba(0, 114, 190, 0.8) 65.61%, rgb(0, 126, 253));
    left: 15px;
    right: 15px;
    bottom: 15px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: 120px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-block: 15px;
}

.section-services .section-content .services-information h3 {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0;
}

.section-services .services-slider {
    padding-bottom: 50px;
}

.section-services .swiper-button-next,
.section-services .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}

.section-services .swiper-button-next {
    right: -20px;
}

.section-services .swiper-button-prev {
    left: -20px;
}

.section-services .swiper-button-disabled {
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
}

/* #Services Section */

/* About Section */
.section-about h3.h3 {
    font-size: 34px;
    font-weight: 700;
}

.section-about .img-area {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--gray-3);
    display: flex;
    align-items: flex-end;
}

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

.section-about .social-media-icons {
    display: flex;
    gap: 5px;
}

.section-about .social-media-icons .social-icon {
    margin: 0;
    width: 35px;
    height: 35px;
    --cnvs-socialicon-size: 35px;
}

/* #About Section */

/* News Section */
.section-news .section-content {
    display: block;
}

.section-news .news-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    user-select: none;
}

.section-news .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.section-news .news-img .news-effect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--black-2), rgba(0, 114, 190, 0.7) 65.61%, rgb(0, 126, 253));
    padding-block: 15px;
    height: 100%;
    font-size: 28px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2.8px;
}

.section-news .news-top {
    display: flex;
    align-items: center;
    color: var(--blue);
}

.section-news .news-top .news-date::before {
    content: '|';
    margin-inline: 6px 3px;
    color: var(--blue);
}

.section-news h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.section-news p {
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.section-news .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.section-news .swiper-button-next,
.section-news .swiper-button-prev {
    top: auto;
    bottom: -20px;
}


.section-news .swiper-button-prev {
    left: -20px;
}

.section-news .swiper-button-next {
    right: -20px;
}

.section-news .swiper-button-disabled {
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
}

/* #News Section */

/* KAAF Section */
.section-kaaf .section-content {
    max-width: 700px;
    height: 100%;
    margin-inline: auto;
}

.section-kaaf .section-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* #KAAF Section */

/* Section Category */
.section-category-area .section-content .category-item {
    display: flex;
    align-items: center;
}

.section-category-area .section-content .information-area {
    width: 55%;
}

.section-category-area .section-content .category-image {
    width: 45%;
}

.section-category-area .section-content .information-area h3 {
    font-size: 34px;
    font-weight: 700;
}

.section-category-area .section-content .category-image {
    position: relative;
}

.section-category-area .section-content .category-image .category-effect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: polygon(86% 0, 100% 0, 100% 100%, 0% 100%);
    background: linear-gradient(to bottom, #027aba 0%, #00004d);
    z-index: 1;
}

.section-category-area .section-content .category-image img {
    position: relative;
    z-index: 2;
}

.section-category-area .section-content .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

/* #Section Category */

/* Section Documents */
.section-documents .document-card-wrapper {
    background-color: var(--gray-4);
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
}

.section-documents .document-card-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    display: block;
}

.section-documents .document-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-documents .document-card-img .document-card-top {
    position: absolute;
    background: linear-gradient(135deg, var(--black-2), rgba(0, 114, 190, 0.8) 65.61%, rgb(0, 126, 253));
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.section-documents .document-card-img .document-card-top h4 {
    margin-bottom: 0;
    color: var(--white);
}

.section-documents .document-card-information {
    padding-inline: 10px;
}

/* #Section Documents */

/* Pagination */
.pagination-classic .swiper-pagination {
    bottom: 0 !important;
}

.pagination-classic .swiper-pagination span {
    border-radius: 120px;
    border: none;
    background-color: var(--gray-2);
    width: 12px;
    height: 12px;
}

.pagination-classic .swiper-pagination span:hover {
    background-color: var(--gray-2) !important;
}

.pagination-classic .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--blue) !important;
    width: 75px;
}

/* #Pagination */

/* Footer */
footer {
    background-color: var(--black);
    padding-block: 80px;
}

footer h4,
footer span {
    color: var(--white) !important;
}

footer .footer-logo {
    width: 150px;
}

footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer .footer-desc {
    padding-right: 60px;
}

footer .contact-info {
    display: flex;
    flex-direction: column;
}

footer .contact-info .social-media-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer .contact-info .social-media-icons a {
    font-size: 20px;
    color: var(--white) !important;
}

footer .links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer p,
footer a {
    color: var(--gray) !important;
}

/* #Footer */

/* Page Title */
.page-title {
    background-image: url('../images/slider/slider-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-block: 120px;
}

.page-title .page-title-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-2);
    opacity: .6;
}

.page-title .breadcrumb a {
    color: var(--white);
}

.page-title .breadcrumb-item.active {
    color: var(--gray);
}

.page-title .breadcrumb-item+.breadcrumb-item::before {
    color: var(--gray);
}

.page-title-content h1 {
    color: var(--white);
    margin-top: 20px;
    font-size: 46px;
    line-height: 1.3;
}

/* #Page Title */

/* Contact Page */
.page-contact-section {
    padding-bottom: 0;
}

.page-contact-section .content-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 20px;
    gap: 25px;
    height: 370px;
}

.page-contact-section .content-area h3 {
    color: var(--blue);
    margin-bottom: 0;
}

.page-contact-section .content-area .icon {
    padding: 20px;
    background-color: var(--gray-4);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--blue-2);
}

.page-contact-section .content-area a.contact-info {
    color: var(--p-color);
    text-align: center;
}

.page-contact-form form,
.page-career form {
    padding: 25px;
    background-color: var(--gray-3);
    border-radius: 20px;
}

.page-contact-form input,
.page-contact-form textarea,
.page-career input,
.page-career textarea {
    width: 100%;
    border: 1px solid var(--gray-2);
    border-radius: 50px;
    padding: 10px 12px;
}

.page-contact-form input::placeholder,
.page-contact-form textarea::placeholder,
.page-career input::placeholder,
.page-career textarea::placeholder {
    color: var(--p-color);
}

.page-contact-form textarea,
.page-career textarea {
    border-radius: 20px;
    margin-top: 30px;
}

.page-contact-form .map,
.page-career .map {
    margin-top: 50px;
    height: 700px;
    border-radius: 20px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.page-contact-form .map iframe,
.page-career .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* #Contact Page */

/* About Page */
.page-about .our-vision h3,
.page-about .our-mission h3,
.page-about .certificate h3 {
    color: var(--blue);
    margin-bottom: 15px;
}

.page-about .our-vision p,
.page-about .our-mission p,
.page-about .certificate p {
    margin-bottom: 0;
}

.page-about .bg-overlay {
    border-radius: 20px;
}

.page-about .bg-overlay-bg {
    background-color: rgba(33, 62, 101, .7);
}

.page-about .certificate-desc span {
    color: var(--blue);
    font-size: 14px;
}

.page-about .certificate-desc h3 {
    color: var(--black);
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 0;
}

/* #About Page */

/* Blog Page */
.page-blog .section-news {
    /* margin-bottom: 25px; */
}

.page-blog .section-news .news-img {
    height: 300px;
}

.page-blog .section-news h3 {
    font-size: 20px;
    font-weight: 500;
    -webkit-line-clamp: 3;
}

.page-blog .section-news .section-content {
    background: var(--gray-3);
    padding: 20px;
    border-radius: 30px;
}

.page-blog .section-news:hover img {
    transform: scale(1.1);
}

.page-blog .section-news:hover h3 {
    color: var(--blue);
}

.pagination-area .pagination {
    margin-top: 40px;
    margin-bottom: 0;
}

.pagination-area .page-link {
    padding: 12px 20px;
    font-size: 16px;
    color: var(--blue-2);
}

.pagination-area .page-link:hover {
    background-color: var(--blue-2);
    border-color: var(--blue-2);
    color: var(--white);
}

.pagination-area .page-link.active,
.pagination-area .active>.page-link {
    background-color: var(--blue-2);
    color: var(--white);
    border-color: var(--blue-2);
}

.pagination-area .page-item:first-child .page-link {
    border-top-left-radius: 120px;
    border-bottom-left-radius: 120px;
}

.pagination-area .pagination:not(.pagination-circle):not(.pagination-rounded) .page-item:last-child .page-link {
    border-top-right-radius: 120px;
    border-bottom-right-radius: 120px;
}

/* #Blog Page */

/* Blog Detail Page */
.b-n-img {
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 50px;
    padding: 10px;
    background-color: var(--gray-3);
    border: 2px solid var(--gray-4);
}

.b-n-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.b-n-desc {
    margin-bottom: 50px;
}

.b-n-desc h3,
.b-n-desc h4 {
    color: var(--blue);
    margin-bottom: 15px;
}

.b-n-content .b-n-desc:last-child,
.b-n-content .b-n-desc:last-child p {
    margin-bottom: 0;
}

/* #Blog Detail Page */

/* Career Page */
.page-career .career-links .row {
    align-items: stretch;
}

.page-career .career-links .career-links-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}

.page-career .career-links .career-links-wrapper img {
    width: 120px;
    height: 100%;
    object-fit: contain;
}

.page-career .career-links .career-links-wrapper:hover {
    transform: translateY(-12px);
}

.page-career .career-links .career-links-wrapper.kariyer-net {
    border-color: #831DB5;
}

.page-career .career-links .career-links-wrapper.linkedin {
    border-color: #0073B1;
}

.page-career .career-links .career-links-wrapper.eleman-net {
    border-color: #0063A8;
}

.page-career .career-links .career-links-wrapper.kaaf {
    border-color: var(--blue);
}

.page-career .map {
    margin-top: 0;
}

/* #Career Page */

/* Product Detail Page */
.page-product-detail .swiper-slide {
    background-color: var(--gray-3);
    border-radius: 20px;
    overflow: hidden;
}

.page-product-detail .product-gallery-thumbs .swiper-slide {
    width: 25%;
    opacity: .4;
    transition: .2s;
    cursor: pointer;
}

.page-product-detail .product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.page-product-detail .product-gallery-thumbs .swiper-slide {
    margin-top: 10px;
}

.page-product-detail .swiper-button-next,
.page-product-detail .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}

.page-product-detail .swiper-button-next {
    right: -20px;
}

.page-product-detail .swiper-button-prev {
    left: -20px;
}

.page-product-detail .product-detail-content {
    padding-left: 20px;
}

.text-editor-content table,
.page-product-detail table,
.page-products-2 table {
    border-top: transparent;
}

.text-editor-content table thead th,
.page-product-detail table thead th,
.page-products-2 table thead th {
    background-color: var(--blue);
    color: var(--white);
    padding-block: 20px;
    font-weight: 600;
    border: none;
    padding-inline: 20px;
    vertical-align: middle;
}

.text-editor-content table thead tr th:first-child,
.page-product-detail table thead tr th:first-child,
.page-products-2 table thead tr th:first-child {
    border-top-left-radius: 20px;
}

.text-editor-content table thead tr th:last-child,
.page-product-detail table thead tr th:last-child,
.page-products-2 table thead tr th:last-child {
    border-top-right-radius: 20px;
}

.text-editor-content table tbody b,
.page-product-detail table tbody b,
.page-products-2 table tbody b {
    font-weight: 600;
}

.text-editor-content table tbody td,
.page-product-detail table tbody td,
.page-products-2 table tbody td {
    padding: 10px 20px;
    font-size: 15px;
    vertical-align: middle;
}

/* #Product Detail Page */

/* Product Detail Page - Locomotive */
.page-products-2 table {
    margin-bottom: 40px;
}

.page-products-2 table.table-imaged {
    margin-bottom: 0;
}

.wide-product-list-wrapper {
    /* margin-top: 100px; */
}

.wide-product-list-wrapper .wide-p-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 260px;
    border-radius: 20px;
    background-color: var(--gray-3);
    margin-bottom: 100px;
}

.wide-product-list-wrapper .wide-p-content {
    width: 45%;
    position: absolute;
    left: 40px;
}

.wide-product-list-wrapper .wide-p-content h2 {
    color: var(--blue);
    margin-bottom: 10px;
}

.wide-product-list-wrapper .wide-p-content p {
    color: var(--black);
    margin-bottom: 0;
}

.wide-product-list-wrapper .wide-p-image {
    width: auto;
}

.wide-product-list-wrapper .wide-p-image {
    position: absolute;
    height: 320px;
    right: 0;
    bottom: 0;
}

.wide-product-list-wrapper .wide-p-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.p-product-2-desc {
    margin-block: 50px;
}

.p-product-2-desc h3 {
    margin-bottom: 10px;
}

.p-product-2-desc p {
    margin-bottom: 5px;
}

.p-product-2-desc li {
    margin-left: 20px;
    color: var(--p-color);
}

.p-product-2-desc li::marker {
    color: var(--black);
}

.page-products-2 table.table-imaged tbody td.table-image {
    text-align: center;
}

.page-products-2 table.table-imaged tbody td.table-image img {
    width: 60px;
    height: 50px;
    object-fit: cover;
}

/* #Product Detail Page - Locomotive */

/* Subsystems Page */
.page-subsystems .subsystems-desc {
    margin-bottom: 80px;
}

.page-subsystems .subsystems-desc h3 {
    margin-bottom: 15px;
}

.page-subsystems .subsystems-desc:last-child {
    margin-bottom: 0;
}

/* #Subsystems Page */

/* Product List */
.product-list-wrapper .row {
    align-items: stretch;
}

.product-list-wrapper .p-wrapper {
    background-color: var(--gray-3);
    border-radius: 20px;
    padding: 20px 30px;
    display: block;
    height: 100%;
    transition: .3s;
}

.product-list-wrapper .p-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    transition: .3s;
    padding: 10px;
}

.product-list-wrapper .p-wrapper:hover .p-image {
    padding: 0;
}

.product-list-wrapper .p-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-list-wrapper h4 {
    color: var(--blue);
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-list-wrapper p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 0;
}

/* #Product List */

/* Page New Detail */
.page-new-detail .b-n-content .b-n-desc p {
    margin-bottom: 30px;
}

.page-new-detail .b-n-content {
    min-height: 126vh;
}

/* #Page New Detail */

/* Media Queries */

@media (max-width: 1500px) {
    .menu-link {
        padding: 25px 9px;
    }
}

@media (max-width: 1499px) {
    #logo {
        width: 120px;
    }

    .menu-link {
        font-size: 15px;
    }

    .language-area>a {
        font-size: 15px;
        padding-inline: 20px;
    }

    .section-slider .swiper-button-next {
        right: 5px;
    }

    .section-slider .swiper-button-prev {
        left: 5px;
    }

    .section-slider .swiper-button-next,
    .section-slider .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .section-slider h1 {
        font-size: 50px;
    }
}

@media (max-width: 1440px) {
    .page-title {
        padding-block: 100px;
    }

    .page-title-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 1366px) {
    .language-area>a {
        padding-inline: 15px;
    }

    .top-bar .top-links-item>a {
        padding: 8px 10px;
    }

    .menu-link {
        font-size: 14px;
        padding: 25px 8px;
    }

    .wide-product-list-wrapper .wide-p-image {
        height: 290px;
    }

    .wide-product-list-wrapper .wide-p-card {
        margin-bottom: 70px;
    }

    .wide-product-list-wrapper {
        margin-top: 70px;
    }

    .page-product-detail table thead th,
    .page-products-2 table thead th {
        font-size: 15px;
        padding-block: 15px;
    }

    .p-product-2-desc {
        margin-block: 30px;
    }
}

@media (max-width: 1280px) {
    header div.swiper-pagination span.swiper-pagination-bullet-active {
        background-color: #ffffff !important;
    }

    header .primary-menu .mega-menu-content .sub-menu-container {
        border-top: transparent !important;
    }

    header .primary-menu .menu-item a.menu-link:hover {
        color: #000000 !important;
        transition: 0.3s;
    }

    header .menu-item:last-child {
        margin-bottom: 10px;
    }

    .page-services .section-services .section-content .services-information {
        padding-inline: 40px;
    }

    .page-blog .section-news .news-img {
        height: 260px;
    }

    .page-contact-section .content-area .icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .page-contact-section .content-area {
        height: 300px;
        gap: 0;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-category-area .section-content .category-image {
        width: 38%;
    }

    .section-category-area .section-content .information-area {
        width: 62%;
    }

    .mb-20px {
        margin-bottom: 10px;
    }

    .my-15px {
        margin-block: 8px;
    }

    .mb-15px {
        margin-bottom: 10px;
    }

    .mb-30px {
        margin-bottom: 20px;
    }

    h3,
    .section-news .news-img .news-effect {
        font-size: 22px;
    }

    .section-news .news-img .news-effect {
        padding-block: 12px;
    }

    .section-slider h1 {
        font-size: 46px;
    }

    .btn-classic {
        padding: 10px 27px !important;
    }

    .section-category-area .section-content .information-area h3,
    .section-about h3.h3 {
        font-size: 30px;
    }

    .section-services .section-content .services-img {
        height: 280px;
    }

    .section-kaaf .section-content {
        height: 650px;
    }

    .section-documents .document-card-img .document-card-top {
        padding: 17px 20px;
    }

    footer {
        padding-block: 50px;
    }

    footer .links {
        gap: 12px;
    }

    footer p,
    footer a {
        font-size: 15px;
    }

    #header-wrap .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }

}

@media (max-width: 1024px) {
    .page-blog .section-news .news-img {
        height: 240px;
    }

    .p-product-2-desc li {
        font-size: 15px;
    }

    .wide-product-list-wrapper .wide-p-card {
        overflow: hidden;
    }

    .wide-product-list-wrapper .wide-p-image {
        height: 250px;
        right: -20px;
    }

    .cnvs-hamburger .cnvs-hamburger-inner,
    .cnvs-hamburger .cnvs-hamburger-inner::before,
    .cnvs-hamburger .cnvs-hamburger-inner::after {
        background-color: var(--white);
    }

    .section-slider h1 {
        font-size: 40px;
    }

    .language-area>a {
        padding-inline: 20px;
    }

    .section-slider .swiper-button-next,
    .section-slider .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    p {
        font-size: 15px;
    }

    .btn-classic {
        padding: 8px 25px !important;
    }

    .section-slider .swiper-pagination {
        right: 50px;
    }

    .section-category-area .section-content .information-area h3,
    .section-about h3.h3 {
        font-size: 28px;
    }

    .pagination-classic .swiper-pagination span {
        height: 10px;
    }

    .section-services .section-content .services-information {
        padding-inline: 60px;
    }

    .section-services .section-content .services-img {
        height: 250px;
    }

    h3,
    .section-news .news-img .news-effect {
        font-size: 21px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 55px;
        height: 55px;
        border: 4px solid var(--white);
    }

    .section-news .news-img .news-effect {
        padding-block: 9px;
    }

    .section-kaaf .section-content {
        height: 580px;
    }

    .section-kaaf .section-content img {
        object-fit: contain;
    }

    .section-documents .document-card-wrapper {
        padding: 10px;
    }

    h4 {
        font-size: 17px;
    }

    .section-documents .document-card-img .document-card-top {
        padding: 13px 20px;
    }
}

@media (max-width: 991px) {
    .railway-anim-section #KaafRailwayAnimation {
        margin-top: 50px;
    }

    .urunler-p .page-products-2 .section-title {
        margin-top: 30px;
    }

    #header,
    .language-area>a {
        height: 60px;
    }

    #logo {
        width: 110px;
    }

    .page-subsystems .subsystems-desc {
        margin-bottom: 40px;
    }

    .page-subsystems .subsystems-desc p {
        margin-bottom: 15px;
    }

    .page-subsystems .subsystems-desc h3 {
        margin-bottom: 8px;
    }

    .page-products-2 h3 {
        margin-bottom: 8px;
    }

    .page-products-2 .mt-70px {
        margin-top: 40px;
    }

    .page-product-detail .mt-70px {
        margin-top: 40px;
    }

    .page-product-detail .product-detail-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .page-product-detail .swiper-button-next,
    .page-product-detail .swiper-button-prev {
        top: 43%;
    }

    .page-product-detail .product-detail-content p {
        margin-bottom: 0;
    }

    .page-product-detail .btns-wrapper {
        gap: 5px;
    }

    .page-product-detail .my-70px {
        margin-block: 30px;
    }

    .page-product-detail h2 {
        margin-bottom: 15px;
    }

    .page-product-detail .section-title h2 {
        margin-bottom: 10px;
    }

    .product-detail-desc p {
        margin-bottom: 15px;
    }

    .b-n-img,
    .b-n-desc {
        margin-bottom: 30px;
    }

    .b-n-desc p {
        margin-bottom: 0 !important;
    }

    .pagination-area .pagination {
        margin-top: 20px;
    }

    .section-news .news-top {
        font-size: 15px;
    }

    .page-blog .section-news .section-content {
        padding: 15px;
    }

    .page-blog .section-news .news-img {
        height: 200px;
    }

    .page-career .career-links .career-links-wrapper img {
        height: 120px;
    }

    .my-50px {
        margin-block: 30px;
    }

    .page-contact-form form,
    .page-career form {
        padding: 20px;
    }

    .page-contact-form .btn-classic.bg-style-linear,
    .page-career form .btn-classic.bg-style-linear {
        margin-top: 0;
    }

    .fluid-width-video-wrapper {
        padding-top: 0 !important;
        height: 100%;
    }

    .page-contact-form .map,
    .page-career .map {
        height: 450px;
        padding: 15px;
        margin-top: 40px;
    }

    .page-contact-form textarea,
    .page-career textarea {
        margin-top: 0;
    }

    .page-contact-section .content-area {
        height: 240px;
        padding: 20px;
    }


    .section-documents .document-card-img {
        height: 280px;
    }

    .wide-product-list-wrapper .wide-p-content {
        position: relative;
        width: 100%;
        left: auto;
    }

    .wide-product-list-wrapper .wide-p-image {
        position: relative;
        right: auto;
        bottom: auto;
        height: auto;
    }

    .wide-product-list-wrapper .wide-p-card {
        flex-direction: column-reverse;
        overflow: visible;
        height: auto;
        position: relative;
        background-color: transparent;
        padding: 20px 100px;
    }

    .wide-product-list-wrapper .wide-p-card::before {
        content: '';
        background-color: var(--gray-3);
        position: absolute;
        height: 70%;
        width: 100%;
        bottom: 0;
        left: 0;
        border-radius: 20px;
    }

    .section-slider h1 {
        font-size: 38px;
    }

    .section-slider .swiper-pagination {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-category-area .section-content .category-item {
        flex-direction: column-reverse;
        row-gap: 15px;
    }

    .section-category-area .section-content .category-image,
    .section-category-area .section-content .information-area {
        width: 100%;
    }

    .section-category-area .section-content .category-image img {
        width: 400px;
    }

    .section-category-area .section-content .category-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-about .section-about-row {
        flex-direction: column-reverse;
        row-gap: 40px;
    }

    .section-kaaf .section-content {
        padding-left: 90px;
        height: 430px;
    }

    footer .mb-30px {
        margin-bottom: 10px;
    }

    footer .footer-desc.mb-30px,
    footer .footer-contact,
    footer .footer-content {
        margin-bottom: 30px;
    }

    footer .footer-contact {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
    }

    h2 {
        font-size: 28px;
    }

    .wide-product-list-wrapper {
        margin-top: 0;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 32px;
        writing-mode: unset;
        transform: unset;
    }

    .section-kaaf .section-title {
        margin-bottom: 35px;
    }

    section {
        padding-block: 40px;
    }

    .section-kaaf .section-content {
        height: 100%;
        padding-left: 0;
    }

    .section-news .pagination-area .pagination {
        margin-top: 0;
    }

    .blog-p .page-blog .blog-filter {
        margin-top: 20px;
    }

    .haber-p .page-news .haber-filter {
        margin-top: 20px;
    }

    .urunler-p .wide-product-list-wrapper .wide-p-card {
        margin-bottom: 20px;
    }
}

.hakkimizda .page-about .certificate {
    margin-top: 30px;
}

.urunler-p .page-products-2 .wide-product-list-wrapper div.text-editor-content {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    header .menu-item:last-child {
        margin-bottom: 5px;
    }

    header .product-list-wrapper .p-wrapper {
        padding: 15px 20px;
    }

    #header-wrap .container-fluid {
        padding-right: 10px;
        padding-left: 10px;
    }

    #page-anasayfa .railway-anim-section .railway-img-area div.col-4 {
        width: 50%;
    }

    #page-anasayfa .railway-anim-section .railway-anim-btn-wrapper {
        width: 100%;
        flex-direction: column;
    }

    .section-category-area .section-content .category-image img {
        width: 330px;
    }

    .section-category-area .section-content .information-area h3,
    .section-about h3.h3 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .hakkimizda .page-about .certificate {
        margin-top: 50px;
    }

    .top-links {
        display: flex;
        justify-content: flex-end;
    }

    .b-n-desc h3,
    .b-n-desc h4 {
        margin-bottom: 8px;
    }

    .video .play-icon {
        width: 65px;
        height: 65px;
    }

    .page-about .our-vision h3,
    .page-about .our-mission h3,
    .page-about .certificate h3 {
        margin-bottom: 5px;
    }

    .page-about .mb-50px {
        margin-bottom: 30px;
    }

    .page-about .mt-50px {
        margin-top: 30px;
    }

    .video,
    .b-n-img {
        height: 340px;
    }

    button.btn-classic {
        padding-block: 10px !important;
    }

    .page-contact-form .map,
    .page-career .map {
        margin-top: 30px;
    }

    .page-contact-form form,
    .page-career form {
        padding: 20px 15px;
    }

    .p-product-2-desc li {
        font-size: 15px;
    }

    .page-products-2 table {
        margin-bottom: 0;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 30px;
    }

    table {
        min-width: auto;
    }

    .page-title {
        padding-block: 70px;
    }

    .breadcrumb {
        justify-content: flex-start;
        margin-top: 0;
    }

    .page-title-content h1 {
        text-align: left;
    }

    h2 {
        font-size: 26px;
    }

    .wide-product-list-wrapper .wide-p-card {
        padding: 20px 40px;
        margin-bottom: 30px;
    }

    .mb-control {
        margin-bottom: 0;
    }

    .btn-classic {
        font-size: 14px !important;
    }

    .section-category-area .section-content .information-area h3,
    .section-about h3.h3 {
        font-size: 23px;
    }

    .section-category-area .section-content .category-image img {
        width: 300px;
    }

}

@media (max-width: 600px) {
    .page-product-detail .swiper-button-next {
        right: 0;
    }

    .page-product-detail .swiper-button-prev {
        left: 0;
    }

    .section-services .swiper-button-prev,
    .section-news .swiper-button-prev {
        left: -10px;
    }

    .section-services .swiper-button-next,
    .section-news .swiper-button-next {
        right: -10px;
    }
}

@media (max-width: 575px) {
    .page-product-detail .p-product-2-desc {
        justify-content: center;
    }

    .hakkimizda .page-about .certificate .certificate-desc {
        text-align: center;
    }

    .page-contact-form input,
    .page-contact-form textarea,
    .page-career input,
    .page-career textarea {
        font-size: 15px;
    }

    .page-contact-form .map,
    .page-career .map {
        height: 360px;
    }

    section[class^="page-"] .section-title {
        margin-bottom: 10px;
    }

    .page-title-content h1 {
        font-size: 38px;
    }

    .section-services .swiper-button-prev,
    .section-news .swiper-button-prev {
        left: 0;
    }

    .section-services .swiper-button-next,
    .section-news .swiper-button-next {
        right: 0;
    }

    .section-slider .swiper-pagination span {
        margin: 0 4px !important;
    }

    .section-services .services-slider {
        padding-bottom: 30px;
    }

    .section-services .swiper-button-next,
    .section-services .swiper-button-prev {
        top: 53%;
    }

    section {
        padding-block: 30px;
    }

    .section-title h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .section-about .section-about-row {
        row-gap: 30px;
    }

    .section-about p {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .railway-anim-section #KaafRailwayAnimation {
        margin-top: 10px;
    }

    header .mega-menu-2 .nav-pills a.nav-link {
        padding: 10px;
    }

    header .primary-menu .menu-link {
        padding: 12px 5px;
    }

    header div.product-list-wrapper h4 {
        font-size: 14px;
    }

    header .product-list-wrapper .p-wrapper {
        padding: 10px 10px;
    }

    .page-product-detail .text-editor-content ul,
    .page-product-detail .text-editor-content ol {
        margin-bottom: 12px;
    }

    .urunler-p section.page-products-2 {
        margin-top: -30px;
    }

    .page-product-detail .text-editor-content ul li,
    .page-product-detail .text-editor-content ol li {
        font-size: 14px;
    }

    .page-product-detail .p-product-2-desc p {
        font-size: 14px;
    }

    .page-product-detail .product-detail-content p {
        font-size: 14px;
    }

    .urunler-p .page-products-2 .wide-product-list-wrapper div.text-editor-content {
        margin-bottom: 0px;
    }

    .urunler-p .page-products-2 .wide-product-list-wrapper .wide-p-image {
        height: 160px;
    }

    .urunler-p .wide-product-list-wrapper .wide-p-card {
        gap: 20px;
    }

    .urunler-p .page-products-2 .p-product-2-desc p {
        font-size: 14px;
    }

    .urunler-p .page-products-2 .wide-product-list-wrapper div.text-editor-content table {
        margin-bottom: 40px;
    }

    .urunler-p .page-products-2 .wide-product-list-wrapper .wide-p-content h2 {
        font-size: 21px;
    }

    .urunler-p .page-products-2 .wide-product-list-wrapper div.text-editor-content ul li {
        font-size: 14px;
    }

    .urunler-p .page-products-2 .wide-product-list-wrapper div.text-editor-content ul {
        margin-bottom: 8px;
    }

    .urunler-p .page-products-2 .wide-product-list-wrapper div.text-editor-content p {
        font-size: 14px;
    }

    .page-contact-section .content-area a.contact-info {
        font-size: 14px;
    }

    .page-contact-section .content-area .icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .page-contact-section .content-area {
        height: 210px;
    }

    .page-contact-section .content-area h3 {
        font-size: 19px;
    }

    .page-career .wts-form-iletisim-formu .buttons button.btn-classic,
    .page-contact-form .wts-form-iletisim-formu .buttons button.btn-classic {
        padding-block: 8px !important;
    }

    .page-career .career-links .career-links-wrapper img {
        height: 100px;
    }

    .page-career .wts-form-iletisim-formu .form-group,
    .page-contact-form .wts-form-iletisim-formu .form-group {
        text-align: center;
        margin-bottom: 15px !important;
    }

    .page-career .wts-form-iletisim-formu .form-group label,
    .page-contact-form .wts-form-iletisim-formu .form-group label {
        font-size: 14px;
    }

    .page-career .wts-form-iletisim-formu .form-group input,
    .page-contact-form .wts-form-iletisim-formu .form-group input {
        padding: 7px 12px;
    }

    .page-news .section-news .news-top {
        justify-content: center;
    }

    .page-news .section-news {
        text-align: center;
    }

    .page-blog-detail .text-editor-content ul li {
        font-size: 14px;
    }

    .page-blog-detail .text-editor-content h2 {
        font-size: 22px;
    }

    .page-blog-detail .text-editor-content h3 {
        font-size: 19px;
    }

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

    /*     .page-blog-detail .text-editor-content{
        text-align: center;
    } */
    .page-blog-detail .text-editor-content p {
        font-size: 14px;
    }

    .widget .widget-body .search-area form {
        margin-bottom: 15px;
    }

    .blog-p .page-blog .blog-filter .widget-title {
        font-size: 15px;
    }

    .page-blog .section-title {
        justify-content: center;
    }

    .page-about .text-editor-content .text-editor-video-wrap {
        padding: 10px 0 10px;
    }

    .hakkimizda .page-about .certificate .mt-50px {
        margin-top: 20px;
    }

    .page-about .certificate-desc span {
        font-size: 13px;
    }

    .hakkimizda .page-about .certificate .certificate-desc h3 {
        font-size: 19px;
    }

    .hakkimizda .page-about .b-n-content h3 {
        font-size: 19px;
        margin-top: 15px;
    }

    .hakkimizda .page-about .b-n-content p {
        font-size: 14px;
    }

    .page-about .section-title {
        justify-content: center;
    }

    .hakkimizda .page-about .certificate {
        text-align: center;
    }

    .hakkimizda .page-about .b-n-content {
        text-align: center;
    }

    footer .footer-contact {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    footer a {
        font-size: 14px;
    }

    footer p {
        font-size: 14px;
    }

    footer .footer-logo {
        margin: auto;
        padding-bottom: 15px;
    }

    footer .contact-info .social-media-icons {
        justify-content: center;
    }

    footer .footer-desc {
        padding-right: 0px;
    }

    footer {
        text-align: center;
    }

    .section-slider .slider-content {
        text-align: center;
    }

    .section-documents .section-content .document-card-wrapper .document-card-information p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .anasayfa .swiper-button-next,
    .anasayfa .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .section-news .news-top {
        font-size: 14px;
    }

    .pagination-classic .swiper-pagination span {
        height: 9px;
        width: 9px;
    }

    .section-news p {
        font-size: 14px;
    }

    .section-kaaf .section-title,
    .section-documents .section-title {
        justify-content: center;
    }

    .section-news .section-title {
        justify-content: center;
    }

    .anasayfa .btns-wrapper {
        align-items: center;
    }

    .section-about .section-about-row .section-content div p {
        text-align: center !important;
        font-size: 14px;
    }

    .section-about .section-about-row .section-content h3 {
        text-align: center;
    }

    .section-about .section-title {
        justify-content: center;
    }

    .section-services .btns-wrapper {
        align-items: center;
        margin-bottom: 15px !important;
    }

    .section-services .section-title {
        justify-content: center;
    }

    .section-category-area.bakim-makine .section-content .category-item .btns-wrapper a {
        margin: auto;
    }

    .section-category-area.bakim-makine .section-content .category-item .btns-wrapper {
        flex-direction: column;
    }

    .railway-anim-section .section-title {
        justify-content: center;
    }

    .section-category-area .section-title {
        justify-content: center;
    }

    .section-category-area .section-content .information-area {
        text-align: center;
    }

    .section-category-area .section-content .information-area h2 {
        font-size: 22px;
    }

    .section-category-area .section-content .information-area h3,
    .section-about h3.h3 {
        font-size: 21px;
    }

    .btn-classic {
        padding: 6px 20px !important;
    }

    .section-category-area .section-content .category-item .btns-wrapper {
        flex-direction: row;
        justify-content: center;
    }

    .section-category-area .section-content .information-area p {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .section-category-area .section-content .information-area h2 {
        margin-bottom: 15px;
    }

    .railway-bottom-images .railway-img-area .railway-img-bottom span {
        font-size: 16px;
    }

    .railway-bottom-images .railway-img-area .railway-img-wrapper img {
        height: 125px;
    }

    .railway-bottom-images .railway-img-area .railway-img-bottom {
        margin-top: 15px;
    }

    .railway-anim-section #KaafRailwayAnimation img {
        margin-top: -20px !important;
    }

    .railway-anim-section button.btn-classic {
        padding-block: 6px !important;
    }

    .section-slider .swiper-button-next,
    .section-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
        font-size: 18px;
        opacity: 0.8;
    }

    .section-slider .slider-content .btns-wrapper a.btn-classic {
        padding: 7px 20px !important;
    }

    .section-slider .slider-content .btns-wrapper a {
        margin-top: 0px;
    }

    .section-slider .slider-content .btns-wrapper {
        flex-direction: row;
        margin-top: 25px;
        justify-content: center;
    }

    .anasayfa .section-slider .swiper-slide .slider-content p {
        font-size: 14px;
    }

    .anasayfa .section-slider .swiper-pagination span {
        width: 45px;
        height: 3px;
    }

    #page-anasayfa .railway-anim-section .railway-img-area div.col-4 {
        width: 100%;
    }

    .page-products-2 .mt-70px {
        margin-top: 35px;
    }

    .page-product-detail .mt-70px {
        margin-top: 30px;
    }

    .product-list-wrapper .p-wrapper {
        padding: 15px 20px;
    }

    .product-list-wrapper .p-image {
        height: 180px;
    }

    .page-product-detail .swiper-button-next,
    .page-product-detail .swiper-button-prev {
        top: 49%;
    }

    .video,
    .b-n-img {
        height: 250px;
    }

    .b-n-desc {
        margin-bottom: 25px;
    }

    .pagination-area .page-link {
        padding: 8px 15px;
        font-size: 14px;
    }

    .page-blog .section-news h3 {
        font-size: 19px;
    }

    .text-editor-content table thead th,
    .page-product-detail table thead th,
    .page-products-2 table thead th {
        font-size: 14px;
        padding-block: 10px;
    }

    .text-editor-content table tbody td,
    .page-product-detail table tbody td,
    .page-products-2 table tbody td {
        padding: 10px;
        font-size: 14px;
    }

    .section-about .section-about-row {
        row-gap: 15px;
    }

    .page-title-content h1 {
        font-size: 32px;
        margin-top: 10px;
    }

    .page-title {
        padding-block: 50px;
    }

    .page-products-2 table.table-imaged tbody td.table-image img {
        width: 50px;
        height: 40px;
    }

    h2 {
        font-size: 24px;
    }

    .wide-product-list-wrapper .wide-p-card {
        padding: 20px;
    }

    .section-documents .document-card-img {
        height: 220px;
    }

    .section-services .section-content {
        padding: 10px;
    }

    .section-services .section-content .services-information {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .btns-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-slider .btn-classic.bg-style-white {
        margin-top: 0 !important;
    }

    .section-slider h1 {
        font-size: 34px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .page-product-detail .btns-wrapper .mt-15px {
        margin-top: 0;
    }

    .page-product-detail .btns-wrapper {
        margin-top: 15px;
        gap: 10px;
    }

    .page-product-detail .my-70px {
        margin-block: 20px;
    }
}

@media (max-width: 425px) {
    .top-links {
        justify-content: unset;
    }

    .top-links-container {
        justify-content: space-between;
        width: 100%;
    }

    .top-bar .top-links-item>a {
        padding: 8px;
    }

    h3,
    .section-news .news-img .news-effect {
        font-size: 20px;
    }

    .section-services .section-content .services-information {
        padding-inline: 30px;
    }
}

@media (max-width: 390px) {
    header div.product-list-wrapper h4 {
        font-size: 13px;
    }

    .text-editor-content table tbody td,
    .page-product-detail table tbody td,
    .page-products-2 table tbody td {
        padding-left: 10px;
        padding-right: 3px;
    }

    .section-category-area .section-content .category-item .btns-wrapper {
        flex-direction: column;
    }

    h2 {
        font-size: 22px;
    }

    .wide-product-list-wrapper .wide-p-content h2 {
        margin-bottom: 5px;
    }

    footer .links {
        gap: 8px;
    }

    footer {
        padding-block: 35px;
    }

    footer .footer-desc.mb-30px,
    footer .footer-contact,
    footer .footer-content {
        margin-bottom: 20px;
        font-size: 14px;
    }

    footer .contact-info .social-media-icons a {
        font-size: 18px;
    }

    .section-documents .document-card-img {
        height: 180px;
    }

    .section-category-area .section-content .information-area h3,
    .section-about h3.h3 {
        font-size: 22px;
    }

    .section-services .section-content .services-information {
        min-height: 60px;
        padding-block: 10px;
    }

    .section-services .section-content .services-img {
        height: 200px;
    }

    h3,
    .section-news .news-img .news-effect {
        font-size: 18px;
    }
}

@media (max-width: 375px) {
    footer a {
        font-size: 13px;
    }

    footer p {
        font-size: 13px;
    }

    .btn-classic {
        font-size: 13px !important;
    }

    .section-news p {
        font-size: 13px !important;
    }

    .section-about .section-about-row .section-content div p {
        font-size: 13px !important;
    }

    .section-category-area .section-content .information-area p {
        font-size: 13px !important;
    }

    .railway-bottom-images .railway-img-area .railway-img-bottom span {
        font-size: 15px;
    }

    .top-bar .top-links .top-links-item a {
        font-size: 13px;
        padding: 6px;
    }

    .anasayfa .section-slider .swiper-slide .slider-content p {
        font-size: 13px !important;
    }

    .section-slider .slider-content .btns-wrapper a.btn-classic {
        font-size: 13px !important;
    }

    .section-news .news-top {
        font-size: 13px;
    }

    .section-slider h1 {
        font-size: 30px;
    }

    p,
    .p-product-2-desc li {
        font-size: 14px;
        font-size: 14px !important;
    }

    .p-product-2-desc h3 {
        margin-bottom: 5px;
    }

    .p-product-2-desc {
        margin-block: 15px;
    }

    .btn-classic {
        padding: 7px 20px !important;
    }

    .news-content .mb-15px {
        margin-bottom: 5px;
    }

    .news-content .my-15px {
        margin-block: 5px;
    }

    .section-slider .swiper-button-next,
    .section-slider .swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-category-area .section-content .information-area h3,
    .section-about h3.h3 {
        font-size: 20px;
    }

    .section-category-area .section-content .category-image img {
        width: 260px;
    }

    .section-category-area .section-content .swiper-pagination {
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 15px;
    }

    .table-wrapper {
        margin-bottom: 15px;
    }

    .page-title-content h1 {
        font-size: 28px;
    }
}

/* #Media Queries */

.wide-product-list-wrapper .wide-p-image {
    transition: all .3s ease-in-out;
}

.wide-product-list-wrapper .wide-p-card:hover .wide-p-image {
    transform: translateY(-10px);
}

.table>thead {
    position: sticky;
    top: 72px;
    bottom: 40px;
}

.top-links-sub-menu,
.top-links-section {
    border-top: 1px solid #0E519E;
}

.menu-item.current>.menu-link {
    color: #FFFFFF;
}

.menu-item .sub-menu-trigger {
    color: #FFFFFF;
    top: 20px;
}

@media (max-width: 1280px) {
    .sub-menu-container .menu-item>.menu-link {
        color: #FFFFFF;
    }

    .menu-link {
        border-radius: 12px;
    }
}

























/* v2 modules from -> narcsoft.site/kaaff */
header .product-list-wrapper .p-image {
    height: 180px;
}

header .product-list-wrapper h4 {
    font-size: 16px;
}

header .product-list-wrapper p {
    font-size: 14px;
}

header .swiper-pagination {
    position: relative;
    top: auto !important;
    bottom: 0 !important;
    margin-top: 20px;
}

header .swiper-pagination span {
    border-radius: 120px;
    border: none;
    background-color: var(--gray-2);
    width: 10px;
    height: 10px;
}

header .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--blue) !important;
    width: 75px;
}

header .swiper-button-next,
header .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: 6px solid var(--white);
}

.is-expanded-menu .mega-menu-2 .mega-menu-style-2 .mega-menu-column {
    padding-block: 25px !important;
}

header .mega-menu-2 .nav-pills .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    background-color: var(--gray-3);
    color: var(--blue);
    transition: .3s;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--gray-3);
}

/* header .mega-menu-2 .nav-pills .nav-link:hover {
    background-color: var(--white);
} */

header .mega-menu-2 .nav-pills .nav-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blue);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: var(--blue);
}

header .mega-menu-2 .nav-pills .nav-link>span {
    display: flex;
    flex-direction: column;
}

header .mega-menu-2 .nav-pills .nav-link>span span {
    font-size: 10px;
}

header .mega-menu-2 .nav-pills .nav-link.active {
    background-color: var(--white);
}

.is-expanded-menu .mega-menu-style-2 .mega-menu-title>.menu-link {
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-decoration-color: rgb(205 205 205 / 23%) !important;
    text-underline-offset: 4px !important;
}

.is-expanded-menu .mega-menu-style-2 .sub-menu-container:not(.mega-menu-dropdown) .menu-link {
    border-radius: 10px;
}

.is-expanded-menu .mega-menu-style-2 .sub-menu-container:not(.mega-menu-dropdown) .menu-item:not(.mega-menu-title):hover>.menu-link {
    background-color: var(--gray-3);
}

.railway-bottom-area {
    position: relative;
}

.railway-bottom-area .btn-classic:hover .btn-text {
    transform: unset;
}

.railway-bottom-area .btn-classic:hover .btn-icon {
    opacity: 1;
    transform: unset;
}

.railway-bottom-area .btn-classic .btn-text {
    margin-left: 0;
}

.railway-bottom-area .btn-classic:hover .btn-icon+.btn-icon {
    display: none;
}

.railway-bottom-area .btn-classic:not(.active) {
    background: none !important;
    background-color: var(--gray-4) !important;
    color: var(--blue-2) !important;
}


.railway-anim-btn-wrapper {
    display: flex;
    gap: 8px;
    width: 720px;
    margin-inline: auto;
    margin-top: 30px;
}

.railway-anim-section #KaafRailwayAnimation {
    width: 100%;
    height: auto !important;
}

.railway-anim-section #turntable {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.railway-anim-section button.btn-classic {
    padding-block: 8px !important;
}

.railway-anim-section #KaafRailwayAnimation img {
    position: relative !important;
    margin-top: -60px;
}

.railway-anim-btn-wrapper button {
    transition: .25s ease-in-out;
    display: flex;
    justify-content: space-between;
    color: #AAA !important;
    border: 1px solid transparent !important;
}

.railway-anim-btn-wrapper button span {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.railway-anim-btn-wrapper button span::before {
    content: '';
    width: 100%;
    height: 0px;
    background-color: #AAA;
    position: absolute;
    bottom: -1px;
}

.railway-anim-btn-wrapper button:hover {
    border: 1px solid #AAA !important;
}

.railway-anim-btn-wrapper button.active {
    border: 1px solid #AAA !important;
}

.railway-anim-btn-wrapper button span i {
    transition: all .25s ease-in-out;
}

.railway-anim-btn-wrapper button.active span i {
    transform: rotate(45deg);
}

.railway-anim-section #viewwindow>div:not(:first-child) {
    display: none;
}

.railway-bottom-images {
    background-color: #F5F5F5;
    border-radius: 30px;
}

.railway-img-area {
    display: none;
    margin-top: 30px;
    padding: 20px 10px;
}

.railway-img-area.active {
    display: flex;
    justify-content: center;
}

.railway-img-area .row {
    width: 100%;
}

.railway-img-area .railway-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.railway-img-area .railway-img-wrapper img {
    height: 150px;
    object-fit: contain;
}

.railway-img-area .railway-img-content {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
}

.railway-img-area .railway-img-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.railway-img-area .railway-img-bottom span {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}











/* yeni ek stiller */
header .product-list-wrapper .swiper-slide h4 {
    text-align: center;
}




/* New */
/* Widget Area */
.widget {
    background-color: var(--gray-3);
    border-radius: 20px;
    padding: 25px;
}

.widget .widget-title {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: rgba(149, 157, 165, .4);
    text-underline-offset: 2px;
    position: relative;
    margin-left: 20px;
    text-transform: capitalize;
    font-size: 16px;
    color: var(--blue);
}

.widget .widget-title::before {
    content: "";
    background: var(--blue);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: 50%;
    margin-top: -4px;
    animation: shadow-pulse 1s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(0 74 99 / 70%);
    }

    100% {
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }
}

.widget .widget-body ul {
    padding-inline: 20px;
    list-style-type: none;
}

.widget .widget-body ul li {
    font-size: 14px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gray-2);
}

.widget .widget-body ul li a {
    display: block;
}

.widget .widget-body ul li:hover {
    color: var(--blue);
}

.widget .widget-body ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.widget .widget-body .search-area {
    position: relative;
}

.widget .widget-body .search-area input {
    display: block;
    width: 100%;
    border-radius: 120px;
    background-color: var(--white);
    outline: none !important;
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid var(--gray-2);
}

.widget .widget-body .search-area button {
    outline: none !important;
    border: none !important;
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-color: var(--blue);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget .widget-body .search-area button {
    color: var(--white);
    font-size: 15px;
}

/* #Widget Area */

@media (max-width: 1280px) {
    header .mega-menu-2 .nav-pills .nav-link {
        background-color: #0a4b96;
        color: var(--white);
        border: 1px solid var(--blue-2);
    }

    header .nav.nav-sm.tab-hover.flex-column.nav-pills {
        margin-top: 8px;
    }

    header .mega-menu-2 .nav-pills .nav-link i {
        border: 2px solid var(--white);
        color: var(--white);
        font-size: 12px;
        width: 24px;
        height: 24px;
    }

    header .mega-menu-2 .nav-pills .nav-link {
        gap: 10px;
        padding: 12px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    header .mega-menu-2 .nav-pills .nav-link.active {
        background-color: var(--blue-2);
    }

    .menu-link {
        padding: 15px 8px;
    }

    .menu-item .sub-menu-trigger {
        top: 10px;
    }

    header .product-list-wrapper .p-image {
        height: 150px;
        padding: 0;
        margin-bottom: 10px;
    }

    .product-list-wrapper .p-wrapper {
        padding: 15px 30px;
    }

    .product-list-wrapper h4 {
        margin-bottom: 0;
    }

    header .tab-content>.tab-pane {
        margin-bottom: 15px;
    }

    header .swiper-button-next,
    header .swiper-button-prev {
        width: 50px;
        height: 50px;
        border: 5px solid var(--white);
    }
}



.text-editor-content h1 {
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-editor-content h2 {
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-editor-content h3 {
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-editor-content h4 {
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-editor-content h5 {
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-editor-content h6 {
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-editor-content p {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .3px;
    line-height: 1.7;
    color: #868e95;
}

.text-editor-content ul,
.text-editor-content ol {
    padding: 8px 34px;
    margin-bottom: 20px;
    list-style-type: disc;
    color: var(--blue)
}

.text-editor-content>ol {
    padding-left: 0
}

.text-editor-content ol {
    counter-reset: level-1;
    list-style: none
}

.text-editor-content ol li:before {
    counter-increment: level-1;
    content: counter(level-1) '. '
}

.text-editor-content ol ol {
    counter-reset: level-2
}

.text-editor-content ol ol li:before {
    counter-increment: level-2;
    content: counter(level-1) '.' counter(level-2) '. '
}

.text-editor-content ol ol ol {
    counter-reset: level-3
}

.text-editor-content ol ol ol li:before {
    counter-increment: level-3;
    content: counter(level-1) '.' counter(level-2) '.' counter(level-3) '. '
}

.text-editor-content ol ol ol ol {
    counter-reset: level-4
}

.text-editor-content ol ol ol ol li:before {
    counter-increment: level-4;
    content: counter(level-1) '.' counter(level-2) '.' counter(level-3) '.' counter(level-4) '. '
}

.text-editor-content ol ol ol ol ol {
    counter-reset: level-5
}

.text-editor-content ol ol ol ol ol li:before {
    counter-increment: level-5;
    content: counter(level-1) '.' counter(level-2) '.' counter(level-3) '.' counter(level-4) '.' counter(level-5) '. '
}

.text-editor-content ul li,
.text-editor-content ol li {
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
    color: #868e95;
    margin-bottom: 2px;
    letter-spacing: .3px
}

.text-editor-content ol li::marker,
.text-editor-content ul li::marker {
    color: var(--blue)
}

.text-editor-content u {
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-decoration-color: #b5b5b5 !important;
    text-underline-offset: 3px !important
}

.text-editor-content strong {
    font-weight: 700
}

.text-editor-content .text-editor-img-wrap {
    padding: 10px 0 20px
}

.text-editor-content img {
    height: auto;
    margin: auto;
    display: block;
    border-radius: 14px
}

.text-editor-content img.withBorder {
    border: 10px solid #eee
}

.text-editor-content .text-editor-img-wrap.withBackground {
    width: 100%;
    background-color: #eee
}

.text-editor-content .text-editor-img-wrap.withBackground img {
    width: 70%;
    margin: auto;
    display: block
}

.text-editor-content .text-editor-video-wrap {
    padding: 10px 0 20px
}

.text-editor-content .editor-hr {
    line-height: 1.6em;
    width: 100%;
    text-align: center
}

.text-editor-content .editor-hr:before {
    display: inline-block;
    content: "***";
    font-size: 30px;
    line-height: 65px;
    height: 30px;
    letter-spacing: .2em;
    color: var(--blue)
}

.text-editor-content blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #EEE;
    font-size: 15px
}

.text-editor-content blockquote cite {
    color: var(--blue);
    font-style: italic;
    font-weight: 600;
    padding: 10px 0 0 10px;
    display: block
}

.text-editor-content .text-editor-warning-box {
    background-color: #eee;
    padding: 25px;
    width: 95%;
    margin: 20px auto
}

.text-editor-content .text-editor-warning-box span {
    color: var(--blue);
    line-height: 1.5;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block
}

.text-editor-content .text-editor-warning-box p {
    margin-bottom: 0 !important
}

.text-editor-content .order-one {
    order: 1;
    margin: auto;
}

.text-editor-content .order-two {
    order: 2;
    margin: auto;
}

.text-editor-content .text-editor-faq:first-of-type {
    margin-top: 30px
}

.text-editor-content .order-one h3 {
    font-size: 24px;
}

.text-editor-content .order-two h3 {
    font-size: 24px;
}

.text-editor-content img.text-editor-inline-img.float-left {
    float: left;
    margin-right: 40px;
    margin-bottom: 10px;
}

.text-editor-content img.text-editor-inline-img.float-right {
    float: right;
    margin-left: 40px;
    margin-bottom: 10px;
}

.text-editor-content .video-js {
    border-radius: 20px;
}

.text-editor-content .video-js video {
    border-radius: 20px;
}

.video-js .vjs-tech {
    border-radius: 20px
}

.text-editor-video-wrap .NanoVideo25091-dimensions.vjs-fluid:not(.vjs-audio-only-mode) {
    border-radius: 20px
}

.text-editor-content .text-editor-img-wrap img {
    border-radius: 20px
}