﻿
@import url('https://fonts.googleapis.com/css2?family=Liter&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/*@import url('normalize.css');*/


:root {
    --dts-color-primary: #177E7D;
    --dts-color-accent: #CFDFDE;
    --dts-color-black: #0D0D0D;
    --dts-color-gray: #B1B2B1;
    --dts-color-gray-light: #F3F3F3;
    --dts-color-white: #FBFBFB;
    --dts-font-body: 'Mulish', sans-serif;
    --dts-font-heading: 'Outfit', sans-serif;
    --text-body: 1rem;
    --border-radius-1: 4px;
    --border-radius-2: 6px;
    --border-radius-3: 8px;
    --font-xs: 10px;
    --font-sm: 12px;
    --font-md: 14px;
    --font-lg: 16px;
    --font-xl: 18px;
    --font-xxl: 22px;
    --font-xxxl: 28px;
}


/*--------------------------------------------------------------
# Genel
--------------------------------------------------------------*/

* {
    /*font-size: var(--text-body);*/
    box-sizing: border-box;
}


html {
    height: 100vh;
}


body {
    background-color: var(--bs-gray-200);
    font-family: var(--dts-font-body);
    font-weight: 400;
}

a {
    color: var(--gray-800);
    background-color: unset;
    transition: 0.2s;
    text-decoration: none;
}

    a:hover, a:active, a:focus {
        outline: none;
        text-decoration: none;
    }

p {
    font-weight: 400;
    padding: 0;
    margin: 0 0 12px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--dts-font-heading);
    font-weight: 600 !important;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top */
.back-to-top {
    position: fixed;
    display: none;
    background: var(--dts-color-primary);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1.4;
    font-size: 28px;
    border-radius: 50%;
    right: 25px;
    bottom: 60px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top i {
        color: #fff;
    }

@media (max-width: 992px) {
    .back-to-top {
        bottom: 60px;
    }
}

::selection {
    background-color: #00b0b5;
    color: #fff;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    border-radius: 1rem;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #848484;
    border: 5px none #ffffff;
    border-radius: 0;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--dts-color-primary);
    }

    ::-webkit-scrollbar-thumb:active {
        background: var(--dts-color-primary);
    }

::-webkit-scrollbar-track {
    background: transparent;
    border: 5px none #ffffff;
    border-radius: 0;
}

    ::-webkit-scrollbar-track:hover {
        background: #ddd;
    }

    ::-webkit-scrollbar-track:active {
        background: #ababab;
    }

::-webkit-scrollbar-corner {
    background: transparent;
}

.heading {
    display: flex;
    flex-direction: column;
}

    .heading h1 {
        color: var(--dts-color-primary) !important;
        margin: 0 0 .5rem 0 !important;
        text-align: left !important;
        font-size: 1.7rem !important;
        border-left: 0.3rem solid var(--dts-color-primary);
        padding: 0 0 0 5px !important;
    }

@media (max-width:992px) {
    .heading h1 {
        font-size: 1.5rem !important;
        border-left: unset;
    }
}

@media (max-width:768px) {
    .heading h1 {
        font-size: 1.3rem !important;
        text-align: center !important;
    }
}

/* Helpers */

.no-list {
    list-style: none !important;
}

.no-resize {
    resize: none;
}

.text-center {
    text-align: center;
}

.text-nowrap {
    white-space: nowrap;
}

.text-justify {
    text-align: justify;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-underline {
    text-decoration: underline;
}

.overflow-y {
    overflow-y: auto;
    overflow-x: hidden;
}

.overflow-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.border-radius-1 {
    border-radius: var(--border-radius-1);
}

.border-radius-2 {
    border-radius: var(--border-radius-2);
}

.border-radius-3 {
    border-radius: var(--border-radius-3);
}

/* Text Fonts */


.font-xs {
    font-size: var(--font-xs);
}

.font-sm {
    font-size: var(--font-sm);
}

.font-md {
    font-size: var(--font-md);
}

.font-xl {
    font-size: var(--font-xl);
}

.font-xxl {
    font-size: var(--font-xxl);
}

.font-xxxl {
    font-size: var(--font-xxxl);
}

.font-icon-lg {
    font-size: 96px !important;
}

.font-icon {
    font-size: 72px !important;
}

.font-icon-sm {
    font-size: 48px !important;
}

.font-icon-xs {
    font-size: 36px !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-italic {
    font-style: italic !important;
}

.font-body {
    font-size: var(--font-body) !important;
}

.font-heading {
    font-family: var(--dts-font-heading);
}

.gap-1 {
    gap: .25rem;
}

.gap-2 {
    gap: .5rem;
}

.gap-3 {
    gap: 1rem;
}


dl, ol, ul {
    padding: 0;
    margin: 0;
}

/*:placeholder {
    color: unset;
    opacity: 1;
}*/

img {
    width: 100%;
    height: auto;
}

main {
    position: relative;
}


section {
    margin: 0% 0;
    padding: 5% 0;
}

.section-header {
    text-align: center;
    margin-bottom: 8px;
}



body > section {
}

.icon-box {
}

    .icon-box:hover {
        background: var(--bs-gray-200);
    }

    .icon-box i {
    }


/* Colors */
.color-primary {
    color: var(--dts-color-primary);
}

.color-accent {
    color: var(--dts-color-accent);
}

.color-white {
    color: var(--dts-color-white);
}

.bg-color-primary {
    background: var(--dts-color-primary);
}

.bg-color-accent {
    background: var(--dts-color-accent);
}

.bg-white {
    background: var(--dts-color-white);
}

.color-gray-100 {
    color: var(--bs-gray-100) !important;
}

.color-gray-200 {
    color: var(--bs-gray-200) !important;
}

.color-gray-200 {
    color: var(--bs-gray-200) !important;
}

.color-gray-300 {
    color: var(--bs-gray-300) !important;
}

.color-gray-400 {
    color: var(--bs-gray-400) !important;
}

.color-gray-500 {
    color: var(--bs-gray-500) !important;
}

.color-gray-600 {
    color: var(--bs-gray-600) !important;
}

.color-gray-700 {
    color: var(--bs-gray-700) !important;
}

.color-gray-800 {
    color: var(--bs-gray-800) !important;
}

.color-gray-900 {
    color: var(--bs-gray-900) !important;
}

.color-green {
    color: var(--bs-green) !important;
}


/* Inputs */

input, textarea, select {
    display: block;
    width: 100%;
    outline: none;
    min-height: 32px;
    margin-bottom: 0;
    padding: 0.4rem 0.5rem;
    font-family: var(--dts-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    background-clip: padding-box;
    border: 1px solid var(--bs-gray-500);
    border-radius: var(--border-radius-1);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    input:hover, textarea:hover, select:hover {
    }

    input:focus-visible, textarea:focus-visible, select:focus-visible {
        border: 1px solid var(--dts-color-primary);
    }

    input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }


@media (max-width: 992px) {

    input, textarea, select {
        padding: 6px 6px !important;
        min-height: unset;
    }
}


/* Butons */

.btn {
    width: 100% !important;
    height: 32px;
    font-size: 14px;
    padding: 6px 12px;
    display: inline-flex;
    border: 1px solid transparent;
    align-items: center;
    justify-content: center;
}

.btn-search {
    background: var(--dts-color-accent) !important;
    color: var(--dts-color-primary) !important;
}

.btn-primary {
    background: var(--dts-color-primary) !important;
    color: var(--dts-color-white) !important;
}

.btn-back {
    background: var(--dts-color-primary) !important;
    color: var(--dts-color-white) !important;
}

    .btn-back:before {
        content: "\ea5c";
        font-family: IcoFont !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        margin-right: 4px;
    }

    .btn-detail {
        background: var(--dts-color-primary) !important;
        color: var(--dts-color-white) !important;
    }

.btn-buy {
    background: var(--dts-color-accent) !important;
    color: var(--dts-color-primary) !important;
}

    .btn-buy::after {
        content: "\eed2";
        font-family: IcoFont !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
    }

    .btn-buy:hover {
        background: #feda00 !important;
        color: var(--dts-color-black) !important;
    }

.btn-get-info {
    background: var(--dts-color-white) !important;
    color: var(--dts-color-primary) !important;
    border: 1px solid var(--dts-color-primary) !important;
}

    .btn-get-info:hover, .btn-get-info.active {
        /*background: var(--dts-color-primary);
        color: var(--dts-color-white);
        border: 1px solid var(--dts-color-primary);*/
    }

/*.btn:hover {
    background: unset !important;
    background-color: unset !important;
    border-color: unset !important;
    color: unset !important;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background: unset !important;
    color: unset !important;
}*/


@media (max-width: 992px) {
    #menu-toggle {
        display: none;
    }
}


/* Header */

#header {
    background: var(--bs-gray-700);
    color: transparent;
    transition: all 0.5s;
    z-index: 997;
    position: sticky;
    top: 0;
}

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        position: sticky;
    }

    #header .logo a {
        color: transparent;
    }

    #header .logo img {
        width: auto;
    }

@media (max-width: 992px) {
    #header {
        padding: 10px 0;
        margin-top: 0;
    }
}


.header-top {
    width: 100%;
    background: var(--dts-color-primary);
    position: sticky;
    justify-content: center;
    z-index: 9999;
    top: 0;
    padding: 8px 0;
}

    .header-top ul {
        display: flex;
        flex-direction: row;
        gap: 14px;
    }

        .header-top ul li {
            color: var(--bs-gray-100);
            list-style: none;
        }

            .header-top ul li:not(:last-child) {
                border-right: 1px solid var(--bs-border-color-translucent);
                padding-right: 1rem;
            }

            .header-top ul li a span {
                font-size: 14px;
            }

            .header-top ul li a i {
                font-size: 14px;
                margin-right: 4px;
            }

    .header-top .header {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }


    .header-top input, .header-top .btn {
    }



.header-nav {
    padding: 12px 0;
}

    .header-nav a img {
        width: auto;
        height: 100%;
    }

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
    align-items: center;
}

    .nav-menu > ul > li {
        position: relative;
        white-space: nowrap;
        padding: 4px 8px;
    }

.nav-menu a {
    display: block;
    position: relative;
    color: var(--dts-color-white);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
}

    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
        color: #fff;
    }

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: var(--border-radius-2);
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    border-radius: var(--border-radius-2);
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    text-transform: none;
    font-weight: 400;
    color: #111111;
    background-color: none !important;
    font-size: 14px;
}

    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
        background: var(--dts-color-primary);
        color: var(--dts-color-white);
        border-left-width: thick;
        border-left-style: solid;
        border-left-color: var(--dts-color-primary);
        font-weight: 500;
    }

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

    .nav-menu .drop-down .drop-down > a:after {
        content: "\eaa0";
        font-family: IcoFont;
        position: absolute;
        right: 15px;
    }

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

.mobile-nav-toggle {
    position: fixed;
    right: 12px;
    top: 28px;
    z-index: 19844;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

    .mobile-nav-toggle i {
        color: var(--dts-color-white);
    }

.mobile-nav {
    position: fixed;
    top: 80px;
    bottom: 0;
    right: 0px;
    left: 0px;
    z-index: 19841;
    overflow-y: auto;
    background: var(--dts-color-primary);
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    padding-top: 0;
}

    .mobile-nav * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-nav a {
        font-size: 14px;
        display: block;
        position: relative;
        color: #dedede;
        padding: 15px 20px;
        font-weight: 500;
        outline: none;
    }

        .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
            color: var(--dts-color-black);
            text-decoration: none;
            background: var(--dts-color-accent);
            font-weight: 800;
        }

    .mobile-nav .drop-down > a:after {
        content: "\ea99";
        font-family: IcoFont;
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .mobile-nav .active.drop-down > a:after {
        content: "\eaa1";
    }

    .mobile-nav .drop-down > a {
        padding-right: 35px;
    }

    .mobile-nav .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .mobile-nav .drop-down li {
        padding-left: 12px;
    }

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    /*background: rgba(0, 0, 0, 0.6);*/
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

    .mobile-nav-active .mobile-nav {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-active .mobile-nav-toggle i {
        color: #fff;
    }


.menu-link {
    display: block;
    color: #3edddd;
    padding: 10px 20px;
    text-decoration: none !important;
}

.menu-item:hover .menu-link {
    color: #fff;
}

.menu-content {
    position: absolute;
    width: 100%;
    background-color: #ebebeb;
    padding: 30px 0;
    left: 0;
    border-bottom: 5px solid var(--main);
    box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    display: none;
    z-index: 3;
}

    .menu-content .menu-content-link {
        display: block;
        padding: 5px 15px;
        transition: 0.25s;
    }

        .menu-content .menu-content-link:hover {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }

.menu-item .list-group {
    background-color: var(--dts-color-primary);
    border-color: #111111;
}

    .menu-item .list-group .active {
        background-color: var(--main);
    }

.menu-item:hover .menu-content {
    display: block;
}

.tab-content-img {
    width: 300px;
    height: 150px;
    object-fit: cover;
    object-position: center;
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

#accordion {
    padding: 30px 0;
}

#navbar-mobile .accordion-item .btn {
    padding: 15px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.accordion-item-content {
    background-color: #f9f9f9;
}

.accordion-item-content-item {
    padding: 15px 20px;
}

.accordion-content-link {
    display: inline-block;
    padding: 5px 15px;
    transition: 0.25s;
}

    .accordion-content-link:hover {
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }


#intro {
    width: 100%;
    height: 75vh;
    background: #000;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

    #intro .carousel, #intro .carousel-inner, #intro .carousel-item, #intro .carousel-item::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: auto;
    }

    #intro .carousel-item {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

@media (max-width:992px) {
    #intro .carousel-item {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

#intro .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.202);
}

#intro .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 30px;
    left: 30px;
    right: 30px;
}

#intro .container {
    align-self: center;
}

#intro h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: var(--font-xxxl);
    font-weight: 700;
    text-align: left;
}

#intro p {
    width: 100%;
    margin: 0 auto 20px auto;
    color: #fff !important;
    text-align: left;
    font-size: var(--font-md);
}

#intro .img-intro {
    height: auto;
    width: 90%;
}

@media (max-width:992px) {
    #intro .carousel-container {
        text-align: center;
        -webkit-align-items: center;
        top: -10px;
    }

    #intro h2 {
        font-size: 24px;
        line-height: 1.3;
        padding: 10px 0 5px 0;
        margin-bottom: 0;
        -webkit-align-items: center;
        text-align: center;
        text-shadow: 4px 4px 5px #1111114d;
    }

    #intro p {
        width: 100%;
        margin: auto;
        object-fit: contain;
    }

    #intro .container p {
        display: none;
    }

    #intro .container img {
        height: 190px;
        width: 190px;
    }
}

@media (max-width:768px) {

    #intro {
        height: 100vh;
        max-height: -webkit-fill-available;
    }

        #intro .container {
            margin-top: 0px;
        }

            #intro .container img {
                height: auto;
                width: 100%;
            }


    .scroll {
        width: 30px;
        height: 50px;
        position: absolute;
        bottom: 15%;
        left: 50%;
        cursor: pointer;
        margin-top: -25px;
        margin-left: -15px;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }

        .scroll .mouse {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            border: 2px solid #fff;
            border-radius: 20px;
        }

        .scroll .wheel {
            width: 4px;
            height: 4px;
            top: 15px;
            left: 50%;
            position: absolute;
            background: #fff;
            display: block;
            border-radius: 40%;
            margin-left: -2px;
            -webkit-animation-name: scroll-wheel;
            animation-name: scroll-wheel;
            -webkit-animation-duration: 1.3s;
            animation-duration: 1.3s;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
        }

    @-webkit-keyframes scroll-wheel {
        from {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            opacity: 1;
        }

        to {
            -webkit-transform: translate3d(0, 15px, 0);
            transform: translate3d(0, 15px, 0);
            opacity: 0;
        }
    }

    @keyframes scroll-wheel {
        from {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            opacity: 1;
        }

        to {
            -webkit-transform: translate3d(0, 15px, 0);
            transform: translate3d(0, 15px, 0);
            opacity: 0;
        }
    }
}

@media (max-height: 576px) {
    #intro {
        height: 150vh;
    }
}



#intro .carousel-fade {
    overflow: hidden;
}

    #intro .carousel-fade .carousel-inner .carousel-item {
        transition-property: opacity;
    }

    #intro .carousel-fade .carousel-inner .carousel-item, #intro .carousel-fade .carousel-inner .active.carousel-item-left, #intro .carousel-fade .carousel-inner .active.carousel-item-right {
        opacity: 0;
    }

    #intro .carousel-fade .carousel-inner .active, #intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left, #intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
        opacity: 1;
        transition: 0.5s;
    }

        #intro .carousel-fade .carousel-inner .carousel-item-next, #intro .carousel-fade .carousel-inner .carousel-item-prev, #intro .carousel-fade .carousel-inner .active.carousel-item-left, #intro .carousel-fade .carousel-inner .active.carousel-item-right {
            left: 0;
            transform: translate3d(0, 0, 0);
        }

#intro .carousel-control-prev, #intro .carousel-control-next {
    width: 10%;
    margin-right: 10px;
    opacity: .8;
}

@media (min-width: 1024px) {
    #intro .carousel-control-prev, #intro .carousel-control-next {
        width: 5%;
    }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
    margin-bottom: 7px;
}

#intro .btn-get-started {
    padding: 6px 18px;
    color: var(--dts-color-white);
    background: var(--dts-color-primary);
}


    #intro .btn-get-started:hover {
        background: var(--bs-yellow);
        color: var(--dts-color-black);
    }

@media (max-width: 768px) {
    #intro .btn-get-started {
        font-size: 12px;
        width: auto;
        font-weight: 600;
        font-size: medium;
        border-radius: 5px;
    }
}

@media (max-width: 470px) {
    #intro .btn-get-started {
        font-size: 10px;
        width: auto;
        font-weight: 600;
        font-size: 14px;
        border-radius: 5px;
    }
}


/* Feature Section */


#intro-features {
    /*margin-top: -15%;
    margin-bottom: -5%;*/
    margin: 0;
    padding: 0;
}

.icon-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 246px);
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
}

.icon-box {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--dts-color-gray);
    text-align: center;
    background-color: #f9f9f9;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-heading {
    display: inline-flex;
    flex-direction: column;
}


    .section-heading h1 {
        text-align: center;
        -webkit-align-items: center;
        font-size: 42px;
        color: var(--dts-color-primary);
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        padding-bottom: 0px;
        margin-bottom: 10px;
        word-break: break-word;
    }

    .section-heading span {
        font-size: 24px;
        font-weight: 700;
        color: var(--bs-gray-700);
        text-align: center;
        -webkit-align-items: center;
    }

        .section-heading span:before {
            content: "";
            width: 20px;
            height: 1px;
            display: inline-block;
            background: var(--dts-color-primary);
            margin: 8px 10px;
        }

        .section-heading span:after {
            content: "";
            width: 20px;
            height: 1px;
            display: inline-block;
            background: var(--dts-color-primary);
            margin: 8px 10px;
        }

@media(max-width:992px) {
    .icon-wrapper {
        grid-template-columns: repeat(1, 100%);
    }
}

.optik {
}

.aciklama {
}

    .aciklama p:last-of-type {
        padding: 0;
        margin: 0;
        min-height: 11rem;
    }


#getdemo {
}


#tabs-nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

    #tabs-nav li {
        padding: 6px 12px;
        border-radius: var(--border-radius-2);
        border: 1px solid var(--dts-color-primary);
    }

        #tabs-nav li:hover {
            cursor: pointer;
        }

        #tabs-nav li a {
        }

        #tabs-nav li.active {
            background: var(--dts-color-primary);
            color: var(--dts-color-white);
        }


@media (max-width: 992px) {

    #tabs-nav {
        flex-direction: column;
    }
}

#contactus {
    background: var(--dts-color-accent);
    padding: unset;
}

    #contactus ul {
        display: grid;
        grid-template-columns: repeat(4, 25%);
    }

        #contactus ul li {
            display: contents;
            text-align: center;
        }


            #contactus ul li a {
                padding: 5vh 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

                #contactus ul li a:hover {
                    background: var(--bs-gray-200);
                    color: var(--dts-color-primary);
                }

                #contactus ul li a i {
                    font-size: 64px;
                }

            #contactus ul li span {
                margin-top: 8px;
            }

            #contactus ul li a:not(:last-child) {
                border-right: 1px solid var(--dts-color-primary);
            }






#faq {
    padding: 60px 0;
    overflow: hidden;
}

    #faq h1 {
        text-align: center;
        -webkit-align-items: center;
        font-size: 42px;
        color: var(--dts-color-primary);
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        padding-bottom: 30px;
        margin-bottom: 10px;
        word-break: break-word;
    }

        #faq h1 span {
            color: #111111;
            word-break: break-word;
            white-space: pre-line;
        }

@media (max-width:768px) {
    #faq h1 {
        text-align: center;
        font-size: 36px;
        color: var(--dts-color-primary);
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        padding-bottom: 0px;
        padding-top: 0px;
        overflow-wrap: break-word;
        white-space: pre-wrap;
    }
}

#faq h3 {
    font-size: 20px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    margin-bottom: 5px;
}

    #faq h3::before {
        content: "";
        width: 40px;
        height: 2px;
        display: inline-block;
        background: var(--dts-color-primary);
        margin: 6px 10px;
    }

    #faq h3::after {
        content: "";
        width: 40px;
        height: 2px;
        display: inline-block;
        background: var(--dts-color-primary);
        margin: 6px 10px;
    }

#faq h4 {
    font-size: 1.2rem;
    color: var(--dts-color-primary);
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    margin-bottom: 5px;
}

#faq h5 {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    text-align: center;
    transition: all ease-in-out 0.2s;
}

#faq a {
    color: var(--dts-color-primary);
    font-size: 18px;
    font-weight: 600;
}

#faq p {
    padding: 5px 10px 5px 10px;
}

#faq #faq-list p a {
    font-size: 16px;
}

#faq #faq-list {
    padding: 0;
    list-style: none;
}

    #faq #faq-list li {
        border-bottom: 1px solid #ddd;
    }

    #faq #faq-list a {
        padding: 14px 0;
        display: block;
        position: relative;
        font-family: var(--dts-font-body);
        line-height: 1.4;
        font-weight: 800 !important;
    }

        #faq #faq-list a:hover {
            color: var(--dts-color-primary);
            font-weight: 800 !important;
        }

    #faq #faq-list i {
        font-size: 24px;
        position: absolute;
        right: 0;
        top: 16px;
    }

    #faq #faq-list p {
        margin-bottom: 20px;
        text-align: start;
        padding-left: 0px;
        margin-right: 20px;
    }

@media (max-width: 768px) {
    #faq #faq-list a {
        font-size: 16px;
    }

        #faq #faq-list a:hover {
            font-size: 16px !important;
        }

    #faq #faq-list i {
        top: 10px;
    }
}

#faq #faq-list a.collapse {
    font-weight: 800 !important;
}

#faq #faq-list a.collapsed {
    color: var(--bs-gray-700);
    font-weight: 800 !important;
}

    #faq #faq-list a.collapsed i::before {
        content: "\ea5b" !important;
    }


#footer {
    background: var(--bs-gray-800);
    padding: 0 0 0 0;
}

    #footer .footer-top {
        padding: 30px 0;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 34px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 10px;
                line-height: 1;
                font-weight: 700;
                letter-spacing: 3px;
                border-left: 4px solid var(--dts-color-primary);
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                color: #f9f9f9;
                text-align: left;
            }

        #footer .footer-top .social-links a {
            font-size: 16px;
            display: inline-block;
            background-color: #252525;
            color: var(--dts-color-accent);
            line-height: 1;
            padding: 12px 0;
            margin-right: 4px;
            border-radius: 10%;
            text-align: center;
            width: 42px;
            height: 42px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background-color: var(--dts-color-primary);
                color: var(--dts-color-white);
            }

        #footer .footer-top h1 {
            font-size: 16px;
            font-weight: bold;
            color: var(--dts-color-white);
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

            #footer .footer-top h1::before, #footer .footer-top h1::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                height: 2px;
            }

            #footer .footer-top h1::before {
                right: 0;
                background: var(--bs-gray-600);
            }

            #footer .footer-top h1::after {
                background: var(--dts-color-accent);
                width: 60px;
            }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 8px;
                    color: #ddd;
                }

                #footer .footer-top .footer-links ul li {
                    border-bottom: 1px solid var(--bs-gray-700);
                    padding: 7px 0;
                    display: flex;
                    align-items: baseline;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: var(--dts-color-accent);
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: var(--dts-color-white);
                    }

        #footer .footer-top .footer-contact {
            color: var(--dts-color-white);
        }

    #footer .copyright {
        background: var(--dts-color-primary);
        color: var(--dts-color-white);
        text-align: center;
        padding: 16px 0;
    }

    #footer .credits {
        text-align: center;
        font-size: 14px;
        color: #ddd;
    }

    #footer .footer-logo {
        width: 240px;
        align-content: center;
        background-color: #252525;
        color: #fff;
    }

@media (max-width:575px) {
    #footer .footer-logo {
        width: 240px;
        align-content: center;
    }
}

#footer .footer-apps {
    display: flex;
    align-content: center;
    justify-content: center;
}

@media (max-width: 776px) {
    #footer .footer-apps {
        width: auto;
        display: flex;
    }
}


#yazilimpage {
    margin: 0;
    padding: 0;
}

    #yazilimpage h2 {
        margin: 0 0 12px 0;
    }


.optik-form {
}


/* Tabs */

#tabs {
    margin: 0;
}

    #tabs .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        border: 0;
        justify-content: center;
        list-style: none;
        padding-left: 0;
    }

@media (max-width: 768px) {
    #tabs h1 {
        text-align: center;
        font-size: 1.7rem;
        color: #111;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
        margin-bottom: 0;
        padding-bottom: 0px;
        padding-top: 0px;
        overflow-wrap: break-word;
    }

        #tabs h1 span {
            color: var(--dts-color-primary);
            white-space: nowrap;
        }

    #tabs h3 {
        font-size: 18px;
        color: #696969;
        text-align: center;
        text-transform: uppercase;
        font-weight: 600;
        position: relative;
        margin-bottom: 0.5rem !important;
    }

        #tabs h3::before {
            display: none;
        }

        #tabs h3::after {
            display: none;
        }
}

@media (max-width: 768px) {
    #tabs .nav-tabs {
        justify-content: center;
    }
}

#tabs .nav-tabs .nav-item {
    padding-bottom: 2%;
    padding-right: 4px;
}

#tabs .nav-link {
    border: 1px solid #848484;
    padding: 13px 27px;
    transition: 0.1s;
    color: #111111;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tabs .nav-tabs .nav-link:hover {
    border-color: var(--dts-color-primary);
    background: var(--dts-color-accent);
}

#tabs .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

#tabs .nav-link h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

#tabs .nav-link:hover {
    color: var(--dts-color-primary);
}

#tabs .nav-link.active {
    background: var(--dts-color-accent);
    color: var(--dts-color-primary);
    border-color: var(--dts-color-primary);
}

@media (max-width: 768px) {
    #tabs .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    #tabs .nav-link {
        padding: 15px;
    }

    #tabs .tab-pane h3
    #tabs .nav-link i {
        font-size: 24px;
    }
}

#tabs .tab-content {
    margin-top: 30px;
}


#tabs .tab-pane p {
    font-size: var(--font-md);
    text-align: justify;
}

#tabs .tab-pane ul {
    list-style: none;
    padding: 5px;
}

    #tabs .tab-pane ul li {
        padding-bottom: 0px;
        margin-left: 10px;
    }

    #tabs .tab-pane ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #21c5c4;
    }

#tabs .tab-pane p:last-child {
    margin-bottom: 0;
}

#tabs .tab-pane .buttons {
    padding-bottom: 20px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    padding: 0px 30px 20px 30px;
}

#tabs .tab-pane hr {
    margin: 0 4px 5px 4px;
    padding: 5px 0 5px 0;
    display: flex;
    border-top: 1px solid rgba(0,0,0,.2);
}

#tabs .img-tabs {
    max-width: 100%;
    height: auto;
    padding-bottom: 10%;
}

@media (max-width: 991px) {
    #tabs .img-tabs {
        max-width: 75%;
        height: auto;
        padding-bottom: 2%;
    }

    #tabs .tab-pane .buttons {
        padding-bottom: 20px;
        text-align: center;
        display: inline-flex;
        flex-direction: column;
        padding: 0 20px 0 20px;
    }
}

@media (max-width:575px) {
    #tabs .tab-pane .buttons {
        padding-bottom: 5px;
        padding-top: 30px;
        position: inherit;
    }
}

#tabs .img-logo {
    max-height: 3rem;
    margin-right: 4%;
    justify-content: left;
}

.d-desktop {
    display: block !important;
}

.d-desktop-flex {
    display: flex !important;
}

.d-mobile {
    display: none !important;
}

@media (max-width:992px) {
    .d-desktop {
        display: none !important;
    }

    .d-desktop-flex {
        display: none !important;
    }

    .d-mobile {
        display: block !important;
    }
}


.modal-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 19831983;
    background-color: #000000cf;
    transition: .5s;
}

.modal-content {
    z-index: 19841984;
    opacity: 1;
    overflow: hidden;
    position: fixed;
    width: 40%;
    height: max-content;
    background-color: #dcdcdc;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #00a1a1;
    box-shadow: 0 5px 10px #00000042;
    transition: .5s;
}

    .modal-content h1 {
        font-size: 1.4rem !important;
        color: var(--dts-color-primary) !important;
        text-align: left !important;
        border-bottom: 1px solid var(--dts-color-primary);
        padding: 0 0 5px 0 !important;
    }

    .modal-content span {
        font-size: .9rem;
    }

.model-content {
    height: calc(1.5 em + 0.6 rem + 2 px );
    border: 1px solid #00000038;
}

.modal-content .form-control:hover {
    border: 1px solid #00a1a1;
}

.modal-content .form-control:focus {
    color: #495057;
    border: 1px solid var(--dts-color-primary);
    outline: 0;
    box-shadow: 2px 0 0 0.1rem #00aaa721;
}

.modal-close {
    color: #fff;
    font-weight: 600;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 1.5rem;
    background: linear-gradient( 225deg, #00b3ae, var(--dts-color-primary));
    margin: 0.5rem;
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
}

    .modal-close:hover {
        box-shadow: 0px 2px 4px 0rem #00000024;
    }

@media (max-width:992px) {
    .modal-content {
        width: 60%;
        padding: 1.3rem;
    }
}

@media (max-width:768px) {
    .modal-content {
        width: 90%;
        height: max-content;
        padding: 1rem;
    }

    .form-group {
        margin-bottom: .6rem;
    }

    .modal-content span {
        font-size: .8rem;
    }
}


#urundetay {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 0;
}

    #urundetay h1 {
        text-align: left;
        font-size: 32px;
        text-transform: uppercase;
        font-weight: 600;
        position: relative;
        padding-bottom: 0;
        margin-bottom: 0;
    }

        #urundetay h1 b {
            color: var(--dts-color-primary);
            white-space: inherit;
            font-weight: 600;
            font-size: 2rem;
            text-transform: capitalize;
        }

    #urundetay b {
        /*border-bottom: 1px solid var(--dts-color-primary);*/
        width: auto;
        display: block;
        color: #434343;
        padding-bottom: 0.5rem;
    }

    #urundetay h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    #urundetay span {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px !important;
    }

    #urundetay ul {
        padding: 0 0px 0 0px !important;
        margin-left: 0px !important;
    }

        #urundetay ul li {
            font-size: 1rem;
            margin-bottom: 8px;
            margin-left: 1rem;
            list-style-type: disclosure-closed;
        }

            #urundetay ul li::marker {
                color: var(--dts-color-primary);
            }

        #urundetay ul i {
            padding: 0 5px 0 5px;
            color: var(--dts-color-primary);
        }

    #urundetay p {
        text-align: justify;
        margin-bottom: 8px;
        word-break: break-word;
        white-space: inherit;
    }

        #urundetay p i {
            padding: 0 5px 0 10px;
        }

    #urundetay a {
        color: #111111;
    }

        #urundetay a:hover {
            color: #111111;
        }

    #urundetay hr {
        color: var(--dts-color-primary);
        border: 1px solid;
        border-style: solid;
    }

    #urundetay .imgdetay {
        max-width: 100%;
        height: auto;
        mix-blend-mode: multiply;
        margin-bottom: 2rem;
    }

@media (max-width:992px) {
    #urundetay {
        padding-top: 8vh;
    }

        #urundetay h1 {
            text-align: center;
            text-wrap-style: balance;
        }

        #urundetay p {
            font-size: .9rem;
        }

        #urundetay ul li {
            font-size: .9rem;
        }

        #urundetay b {
            margin-bottom: unset;
        }
}

@media (max-width:768px) {
    #urundetay h1 span {
        font-size: 28px;
    }

    #urundetay li {
        font-size: 14px;
    }
}


.optik-model {
    display: flex;
    justify-content: center;
}

    .optik-model .box {
        color: #111111;
        padding: 1rem;
        border: 1px solid #11111117;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: .1s;
        font-size: .9rem;
        margin: 0 .5rem;
        border-radius: 1rem;
        max-width: 25%;
    }

        .optik-model .box:hover {
            color: #fff;
            background-color: #17a2b852;
            border-color: #17a2b8;
        }

        .optik-model .box img {
            width: 100%;
            height: auto;
        }

            .optik-model .box img:hover {
                filter: drop-shadow(1px 1px 1px #146cc14d);
            }

        .optik-model .box p {
            font-size: .9rem;
            font-weight: 500;
        }

    .optik-model span {
        color: var(--dts-color-primary);
    }

    .optik-model h1 {
        font-size: 1.7rem !important;
        font-weight: 700 !important;
        padding: 0 !important;
        margin: 0 !important;
        color: #01798c !important;
        margin-bottom: 1.7rem !important;
    }

    .optik-model .box a {
        text-align: center;
        font-weight: 600;
    }

        .optik-model .box a:hover {
            color: #111;
        }

@media (max-width:992px) {

    .optik-model h1 {
        text-align: center !important;
    }

        .optik-model h1 span {
            white-space: pre-wrap !important;
        }

    .optik-model p {
        font-size: .9rem;
    }

    .optik-model .box {
        font-size: .8rem;
        max-width: unset;
        min-width: 46%;
        margin-bottom: 1rem;
    }

    .optik-model .mobile {
    }
}

@media (max-width: 768px) {
    .om h1 {
        font-size: 1.5rem !important;
    }

    .om a {
        font-size: .85rem !important;
    }
}


#contact {
}

    #contact .contact-info {
        margin-bottom: 20px;
        text-align: center;
    }

        #contact .contact-info i {
            font-size: 48px;
            display: inline-block;
            margin-bottom: 10px;
            color: var(--dts-color-primary);
        }

        #contact .contact-info address, #contact .contact-info p {
            margin-bottom: 0;
            color: #000;
        }

        #contact .contact-info h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
            color: #111111;
        }

        #contact .contact-info a {
            color: var(--dts-color-primary);
            font-weight: 500;
        }

            #contact .contact-info a:hover {
                color: var(--dts-color-primary);
            }

    #contact .contact-address, #contact .contact-phone, #contact .contact-email {
        margin-bottom: 20px;
    }

@media (min-width: 768px) {
    #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    }
}

@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}



@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#destek {
    padding-bottom: 60px;
}


    #destek h1 {
        text-align: center;
        font-size: 42px;
        color: #111;
        text-transform: uppercase;
        font-weight: 700;
        position: relative;
    }

        #destek h1 span {
            color: var(--dts-color-primary);
        }

    #destek h2 {
        font-size: 24px;
        color: #696969;
        text-align: center;
        text-transform: uppercase;
        font-weight: 600;
        position: relative;
        margin-bottom: 25px;
    }

        #destek h2::before {
            content: "";
            width: 40px;
            height: 1px;
            display: inline-block;
            background: var(--dts-color-primary);
            margin: 4px 10px;
        }

        #destek h2::after {
            content: "";
            width: 40px;
            height: 1px;
            display: inline-block;
            background: var(--dts-color-primary);
            margin: 4px 10px;
        }

    #destek h4 {
        font-size: 16px;
        color: #111111;
        text-transform: capitalize;
        font-weight: 600;
        position: relative;
        margin-bottom: 0px;
        text-align: left;
    }

    #destek h5 {
        font-size: 1.2rem;
        text-transform: uppercase;
        font-weight: 600;
        position: relative;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 0;
        text-align: center;
        transition: all ease-in-out 0.2s;
    }

    #destek a {
        font-weight: 500;
        color: #111111;
    }

    #destek p {
        padding: 5px 10px 5px 10px;
    }

    #destek .nav-tabs {
        border: 0;
        justify-content: space-between;
        list-style: none;
        padding-left: 0;
    }

        #destek .nav-tabs .nav-item {
        }

@media (max-width: 1198px) {
    #destek .nav-tabs .nav-item {
        width: 240px;
    }
}

@media (max-width: 992px) {
    #destek .nav-tabs .nav-item {
    }

    #destek .nav-tabs {
        display: inline-flex;
        border: 0;
        justify-content: center;
        list-style: none;
        padding-left: 0;
    }

    #destek h2 {
        font-size: 20px;
        text-transform: capitalize;
    }

        #destek h2:before {
            display: none;
        }

        #destek h2:after {
            display: none;
        }
}

#destek .nav-link {
    border: 1px solid #b9b9b9;
    padding: 15px;
    transition: 0.3s;
    color: #111111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#destek .nav-tabs .nav-link:hover {
    border-color: var(--dts-color-primary);
}

#destek .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

#destek .nav-link h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

#destek .nav-link:hover {
    color: #00899c;
}

#destek .nav-link.active {
    background: var(--dts-color-primary);
    color: var(--dts-color-white);
}

@media (max-width: 768px) {
    #destek .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    #destek .nav-link {
        padding: 15px;
    }

        #destek .nav-link i {
            font-size: 24px;
        }
}

#destek .tab-content {
    margin-top: 30px;
    width: 100%;
    display: block;
}

    #destek .tab-content .searchforminput[type=text] {
        background-color: white;
        background-image: url('searchicon.png');
        background-position: 10px 10px;
        background-repeat: no-repeat;
        padding: 10px;
        transition: width 0.4s ease-in-out;
        border-radius: 5px;
        border: #848484 1px solid;
        width: 200px;
        height: 30px;
        margin-top: 20px;
    }

        #destek .tab-content .searchforminput[type=text]:focus {
            transition: background 0.25s, border-color 0.25s;
            background: #fff;
            border-color: #cecfcf;
            outline: none;
            width: 50%;
        }

    #destek .tab-content .talepdropdown {
        width: 100%;
        padding: 5px 5px;
        border: 1px solid #bebebe;
        border-radius: 4px;
        background-color: #fff;
        height: 37px;
    }

        #destek .tab-content .talepdropdown:focus {
            border-left: 5px solid var(--dts-color-primary);
        }

    #destek .tab-content .taleptxtbox {
        width: 100%;
        padding: 5px 5px;
        border: 1px solid #bebebe;
        border-radius: 4px;
        background-color: #fff;
        height: 37px;
        font-size: 16px;
        font-weight: 400;
    }

        #destek .tab-content .taleptxtbox:focus {
            background-color: #fff;
            border-left: 5px solid var(--dts-color-primary);
        }

    #destek .tab-content .taleptxtarea {
        width: 100%;
        padding: 5px 5px;
        border: 1px solid #bebebe;
        border-radius: 4px;
        background-color: #fff;
        height: 30px;
        font-size: 16px;
        font-weight: 400;
        height: 200px;
        resize: none;
    }

        #destek .tab-content .taleptxtarea:focus {
            border-left: 5px solid var(--dts-color-primary);
        }

#destek .tab-pane {
    width: 100%;
}

    #destek .tab-pane formlabel {
        padding: 12px 12px 12px 0;
        display: inline-block;
    }

    #destek.tab-pane forminput {
        background-color: white;
        background-image: url(searchicon.png);
        background-position: 10px 10px;
        background-repeat: no-repeat;
        padding: 10px;
        transition: width 0.4s ease-in-out;
        border-radius: 5px;
        border: #848484 1px solid;
        width: 200px;
        height: 35px;
    }

    #destek .tab-pane h3 {
        font-weight: 600;
        font-size: 26px;
        padding-bottom: 30px;
    }

    #destek .tab-pane h4 {
        font-weight: 700;
        font-size: 24px;
        color: #495057;
        padding: 5px 10px 5px 10px;
    }

    #destek .tab-pane h5 {
        text-align: left;
        font-weight: 500;
        font-size: 18px;
        text-transform: none;
        padding-bottom: 20px;
    }

    #destek .tab-pane p {
        text-align: justify;
        font-weight: 400;
    }

    #destek .tab-pane ul {
        list-style: none;
        padding: 0;
    }

        #destek .tab-pane ul li {
            padding-bottom: 10px;
            width: 100%;
        }

        #destek .tab-pane ul i {
            font-size: 20px;
            padding-right: 4px;
            color: var(--dts-color-primary);
            float: right;
            padding-left: 10px;
        }

        #destek .tab-pane ul a {
            float: right;
        }

    #destek .tab-pane p:last-child {
        margin-bottom: 0;
    }

    #destek .tab-pane .tbProduct {
        width: 100%;
        margin-bottom: 1rem;
        border: 1px solid var(--dts-color-gray);
    }

        #destek .tab-pane .tbProduct thead {
            font-size: 14px;
            font-weight: 500;
            color: var(--dts-color-primary);
            table-layout: fixed;
            border-collapse: collapse;
        }


        #destek .tab-pane .tbProduct tbody {
            max-height: 30vh;
            overflow-y: auto;
        }


        #destek .tab-pane .tbProduct tr {
        }

            #destek .tab-pane .tbProduct tr:first-child {
            }

            #destek .tab-pane .tbProduct tr th {
                padding: 6px;
                font-size: var(--font-lg);
                font-weight: 800;
                background: var(--dts-color-primary);
                color: var(--dts-color-white);
            }


                #destek .tab-pane .tbProduct tr th:not(:last-child) {
                    border-right: 1px solid var(--dts-color-gray);
                }



            #destek .tab-pane .tbProduct tr td {
                font-size: var(--font-md);
                border: 1px solid var(--dts-color-gray);
                padding: 6px;
                text-wrap-style: pretty;
            }

                #destek .tab-pane .tbProduct tr td a {
                    color: var(--bs-gray-700);
                    padding: 4px;
                }

                    #destek .tab-pane .tbProduct tr td a:hover {
                        color: var(--dts-color-primary);
                    }
