@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url('variables.css');
@import url('media.css');

/*
  .montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

/* BASE */
::selection {
    background-color: #181a1b;
    color: #fff;
}

/*::placeholder {
    color: #BCBCBC
}*/


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #939393;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #939393;
}

*,
*::before,
*::after {
    border: none;
    outline: none;
    list-style: none;
    box-sizing: border-box;
    border-collapse: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
    /* height: 100%; */
}

    html.js-hidden-layout {
        overflow-y: hidden;
    }

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6667;
    background-color: #fff;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

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

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

h1, h2, h3,
h4, h5, h6 {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    line-height: inherit;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

button, input {
    box-shadow: none;
    outline: none !important;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

[type="button"], [role="button"] {
    -webkit-appearance: none;
    border-radius: 0;
}

.btn {
    padding: 8px 36px;
    border-radius: 8px;
    transition: .15s background-color ease, .15s color ease, .15s transform ease, .15s border-color ease;
    will-change: background-color, color, transform, border-color;
}

.btn-xs {
    padding: 6px 12px
}

.btn-sm {
    padding: 6px 16px !important
}

.btn-main {
    font-weight: 600;
}

.btn-white {
    background-color: var(--light-100)
}

    .btn-white:hover {
        background-color: var(--light-200)
    }

.btn-blue {
    background-color: var(--primary);
    color: #fff;
}

    .btn-blue:hover {
        background-color: var(--primary-darker);
        color: #fff;
    }

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

        .btn-blue.btn-bordered:hover {
            background-color: var(--primary);
            color: #fff;
        }

ul, ol, li {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

p {
    margin: 0
}

textarea {
    resize: none;
}

img[data-image-type="icon"] {
    width: 100%;
    height: auto;
    cursor: pointer
}

img[data-layout-type="cover-w"] {
    width: 100%;
    height: auto
}

img[data-layout-type="cover-h"] {
    width: auto;
    height: 100%
}

img[data-layout-type="cover-f"] {
    width: 100%;
    height: 100%;
    object-fit: cover
}

img[data-layout-type="contain-w"] {
    width: 100%;
    object-fit: contain
}

img[data-layout-type="contain-h"] {
    height: 100%;
    object-fit: contain
}

img[data-layout-type="contain-f"] {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.p10 {
    padding: 10px;
}

.glightbox-open {
    height: 100% !important;
}

.hide-scroll {
    overflow-y: hidden; /* Hide vertical scrollbar */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

body.hidescroll {
    overflow: hidden;
}

.invalid-feedback-custom {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 1em;
    color: var(--bs-form-invalid-color);
}

.formHata {
    background: #e98484;
    padding: 10px 20px;
    color: #fff;
}

h2#swal2-title {
    font-size: 1.3em !important;
}

.swal2-icon {
    font-size: 0.8em !important;
}
/* END BASE*/

.container-fluid {
    padding: 0 5% !important;
}


.progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: transparent;
    z-index: 100;
}

.progress-bar {
    height: 100%;
    background-color: black;
    transition: all 0.3s ease;
}







/* progress circle */

.progress-circle-container {
    position: fixed;
    bottom: 45px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    width: 50px;
    height: 50px;
}

.progress-circle-bar {
    fill: none;
    stroke: black;
    stroke-width: 5;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transform-origin: center;
    transition: stroke-dashoffset 0.3s ease;
}

.progress-background {
    fill: transparent;
    stroke: #ededed;
    stroke-width: 5;
    stroke-dasharray: none;
}


.scroll-to-top {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--secondary);
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

    .scroll-to-top svg {
        display: block;
        width: 20px;
        height: 20px;
        stroke: white;
        transition: all 0.1s ease;
    }

header {
    width: 100% !important;
    height: 100px;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    justify-content: space-between;
}

    header.showbg {
        background: #FFF;
        box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.75);
        transition: 0.2s;
        height: 80px;
    }

        header.showbg .menu a {
            color: #222;
        }

            header.showbg .menu a:before {
                background: #222;
            }

        header.showbg .contact-form .dropdown-center button {
            color: #222;
        }


    header .logo img {
        max-height: 55px;
    }

    header .menu ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }

    header .menu a {
        font-size: 16px;
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        padding: 0 16px 5px 16px;
        /* background-image: linear-gradient(to right, var(--pure-white),var(--pure-white) 0%, --pure-white 100%); */
        /* background-size: 200% 100%; */
        /* background-position: -100%; */
        display: inline-block;
        /* padding: 5px 0; */
        position: relative;
        /* -webkit-background-clip: text; */
        /* -webkit-text-fill-color: transparent; */
        transition: all 0.4s ease-in-out;
        color: #FFF;
    }

        header .menu a:before {
            content: '';
            background: #FFF;
            display: block;
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            transition: all 0.4s ease-in-out;
        }

        header .menu a:hover {
            background-position: 0;
        }

            header .menu a:hover::before {
                width: 100%;
            }

    header .logo {
        /* width: 15%; */
        text-align: left;
    }

    header .menu {
        /* width: 60%; */
    }


    header .contact-form {
        /* width: 15%; */
        text-align: right;
    }

        header .contact-form .wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

            header .contact-form .wrapper .giris {
                color: #FFF;
                font-size: 1.1rem;
            }

    header.showbg .contact-form .wrapper .giris {
        color: black;
    }




    header .contact-form .dropdown-center .dropdown-menu {
        min-width: auto;
    }

    header .contact-form .dropdown-center button {
        color: var(--pure-white);
        padding: 8px 0.7vw;
        display: inline-block;
        float: left;
        font-size: 20px;
        text-decoration: none;
        transition: all 300ms;
        background: transparent;
        border: 0;
        outline: none;
        border-radius: 0 !important;
        box-shadow: none !important;
        min-width: 60px;
        text-align: center;
        cursor: pointer;
    }


    /* Header Mobile*/
    /* mobile header */
    header.mobile {
        display: none;
        padding: 0 10px;
        width: 100%;
        transition: .3s top ease-out;
    }

        header.mobile .container-fluid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container);
            height: 90px;
        }

        header.mobile .btn {
            padding: 8px 12px !important;
            background: #0063a8;
            border: none;
        }

            header.mobile .btn:hover {
                background: #034a7b;
            }

        header.mobile .dropdown-wrapper .mobile-dropdown {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            background-color: #111433;
            font-size: 18px;
            z-index: 12;
            transform: translateY(-100%);
            transition: .3s transform ease-in;
        }

            header.mobile .dropdown-wrapper .mobile-dropdown.visible {
                transform: translateY(0)
            }

            header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 2rem 1.5rem;
            }

                header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-header h2 {
                    font-size: 1.5rem;
                    color: #fff;
                }

            header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-search input {
                display: flex;
                width: 100%;
                padding: 1rem 1.5rem;
                background-color: #242643;
                color: #fff;
                border-radius: 0;
            }

            header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router {
                position: relative;
                display: flex;
                flex: 1;
                width: 100%;
            }

                header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes {
                    display: flex;
                    align-items: flex-start;
                    flex-direction: column;
                    flex: 1;
                    width: 100%;
                }

                    header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route {
                        display: flex;
                        width: 100%;
                        border-bottom: 1px solid #242643;
                    }

                        header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route:last-child {
                            display: flex;
                            width: auto;
                            margin: 0 auto;
                            border-bottom: 1px solid #242643;
                        }

                        header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route .span {
                            width: 24px;
                            height: 24px;
                        }

                        header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route a {
                            display: flex;
                            flex-direction: row;
                            justify-content: space-between;
                            align-items: center;
                            flex: 1;
                            color: #fff;
                            padding: 1rem 1.5rem;
                        }

                        header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route.go-back a {
                            justify-content: flex-start
                        }

                        header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route a span {
                            width: 24px;
                            height: 24px
                        }

                            header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route a span img {
                                filter: brightness(0) invert(1)
                            }

                        header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route .child-dropdown {
                            position: absolute;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            background: #111433;
                            transform: translateX(100%);
                            transition: .25s transform ease-out;
                            z-index: 13;
                        }

                            header.mobile .dropdown-wrapper .mobile-dropdown .dropdown-router .routes .route .child-dropdown.active {
                                transform: translateX(0)
                            }
/* #Header Mobile*/

.page-home section.banner {
    width: 100%;
    height: 100vh;
}

    .page-home section.banner .mobile-banner {
        display: none;
    }

    .page-home section.banner .swiper {
        width: 100%;
        height: 100vh;
    }

        .page-home section.banner .swiper .swiper-slide {
            width: 100%;
            height: 100vh;
        }

            .page-home section.banner .swiper .swiper-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center left;
            }

            .page-home section.banner .swiper .swiper-slide video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }


.page-home section.neden-biz {
    padding-top: 100px;
}

    .page-home section.neden-biz .flex-wrapper {
        display: flex;
        gap: 100px;
        align-items: center;
    }

        .page-home section.neden-biz .flex-wrapper h2 {
            font: 50px Montserrat;
            font-weight: 700;
            padding-bottom: 30px;
        }

            .page-home section.neden-biz .flex-wrapper h2:after {
                content: "";
                background: var(--secondary);
                width: 70px;
                height: 4px;
                display: block;
            }

        .page-home section.neden-biz .flex-wrapper .text {
            font: 20px / 30px Montserrat;
        }

            .page-home section.neden-biz .flex-wrapper .text p {
                padding-bottom: 20px;
            }

    .page-home section.neden-biz .counters {
        padding: 70px 0;
        background: #f3f3f3;
        margin: 200px 5%;
    }

        .page-home section.neden-biz .counters .flex-wrapper .item {
            width: 100%;
            text-align: center
        }

        .page-home section.neden-biz .counters .flex-wrapper .title {
            font: 700 50px Montserrat
        }

        .page-home section.neden-biz .counters .flex-wrapper .subtitle {
            font: 500 25px montserrat;
            padding: 10px 0 20px;
            color: var(--secondary)
        }

        .page-home section.neden-biz .counters .flex-wrapper i {
            font-size: 36px;
        }



.page-home section.servislerimiz h2 {
    display: flex;
    padding-bottom: 30px;
    font: 900 50px Montserrat;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

    .page-home section.servislerimiz h2:after {
        content: "";
        background: var(--secondary);
        width: 85px;
        height: 4px;
        display: block;
    }

.page-home section.servislerimiz .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

    .page-home section.servislerimiz .flex-wrapper .item {
        width: calc((100% - 40px) / 2);
    }

        .page-home section.servislerimiz .flex-wrapper .item .image {
            height: 400px;
            width: 100%;
            overflow: hidden;
        }

section.servislerimiz .item a:hover img {
    transform: scale(1.1);
    transition: .3s;
}

            .page-home section.servislerimiz .flex-wrapper .item .image img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                transition: .3s;
            }

        .page-home section.servislerimiz .flex-wrapper .item .title {
            padding: 20px 0;
            font: 500 26px Montserrat;
        }

        .page-home section.servislerimiz .flex-wrapper .item .text {
            font: 18px / 1.5em Montserrat;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .page-home section.servislerimiz .flex-wrapper .item .link {
            font: 18px / 1.5em Montserrat;
            display: inline-block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 0;
            cursor: pointer;
        }


.page-home section.referanslar {
    padding: 200px 0 100px;
}

    .page-home section.referanslar h2 {
        display: flex;
        padding-bottom: 30px;
        font: 900 50px / 75px Montserrat;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

        .page-home section.referanslar h2:after {
            content: "";
            background: var(--secondary);
            width: 85px;
            height: 4px;
            display: block;
        }

    .page-home section.referanslar .referans-slider {
        padding: 50px 0;
    }

        .page-home section.referanslar .referans-slider .image {
            padding: 10px;
            border: 1px solid #efefef;
            height: 200px;
            display: flex;
            justify-content: center;
        }

            .page-home section.referanslar .referans-slider .image img {
                max-height: 200px;
                max-width: 100%;
                object-fit: cover;
                align-self: center;
            }


    .page-home section.referanslar .yorum-slider {
        padding: 100px 0;
        /* border: 1px solid #e0e0e0; */
        -webkit-box-shadow: 0px 0px 45px -28px rgba(0,0,0,0.7);
        -moz-box-shadow: 0px 0px 45px -28px rgba(0,0,0,0.7);
        box-shadow: 0px 0px 45px -28px rgba(0,0,0,0.7);
    }


        .page-home section.referanslar .yorum-slider .wrapper {
            text-align: center;
            width: 80%;
            margin: 0 auto;
            padding-bottom: 40px;
        }

            .page-home section.referanslar .yorum-slider .wrapper .text {
                font: 300 28px / 42px Montserrat;
                padding-bottom: 30px;
            }

            .page-home section.referanslar .yorum-slider .wrapper .title {
                font: 500 26px / 45px Montserrat;
            }

        .page-home section.referanslar .yorum-slider .glide__arrows {
            text-align: center;
            position: absolute;
            bottom: 40px;
            left: calc(50% - 45px);
        }

            .page-home section.referanslar .yorum-slider .glide__arrows .glide__arrow {
                background: var(--primary);
                border: none;
                padding: 4px 16px;
                border: 1px solid var(--primary);
                color: #FFF;
                font-family: monospace;
            }



    .page section.banner .banner-container {
        position: relative;
        height: 350px;
    }

        .page section.banner .banner-container ul.breadcrumb {
            position: absolute;
            bottom: 5px;
            display: flex;
            justify-content: center;
            width: 100%;
            color: #fff;
            font-size: 18px;
        }

        .page section.banner .banner-container .breadcrumb-item + .breadcrumb-item::before {
            color: #fff;
        }



        .page section.banner .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .page section.banner .overlay {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        /* background: #1c1c1c59;*/
        /* background: rgb(0,0,0); */
        background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 32%, rgba(0,0,0,0.4) 100%);
    }

    .page section.banner h2 {
        position: absolute;
        top: calc(50% - 25px);
        text-align: center;
        width: 100%;
        color: #FFF;
        font-weight: 600;
        text-transform: uppercase;
    }

.page section.content {
    padding: 100px 0;
}

.page-kurumsal section.content {
    font-size: 20px;
}

    .page-kurumsal section.content h1 {
        font: 50px Montserrat;
        font-weight: 700;
        padding-bottom: 70px;
    }

    .page-kurumsal section.content h2 {
        font: 50px Montserrat;
        font-weight: 700;
        padding: 70px 0;
    }


        .page-kurumsal section.content h2:after, .page-kurumsal section.content h1:after {
            content: "";
            background: var(--secondary);
            width: 70px;
            height: 4px;
            display: block;
            /* margin-left: 140px; */
        }

        .page-kurumsal section.content h2 span, .page-kurumsal section.content h1 span {
            display: block;
            /* text-indent: 140px; */
        }

    .page-kurumsal section.content .wrapper {
        display: flex;
        gap: 100px;
        padding-bottom: 50px;
    }

        .page-kurumsal section.content .wrapper .image, .page-kurumsal section.content .wrapper .text {
            width: 50%;
        }

            .page-kurumsal section.content .wrapper .image img {
                width: 100%;
            }


    .page-kurumsal section.content .counters {
        padding: 70px 0;
        background: #f3f3f3;
    }

        .page-kurumsal section.content .counters .flex-wrapper {
            display: flex;
        }

            .page-kurumsal section.content .counters .flex-wrapper .item {
                width: 100%;
                text-align: center
            }

            .page-kurumsal section.content .counters .flex-wrapper .title {
                font: 700 40px Montserrat;
            }

            .page-kurumsal section.content .counters .flex-wrapper .subtitle {
                font: 500 22px montserrat;
                padding: 10px 0 20px;
                color: var(--secondary)
            }

            .page-kurumsal section.content .counters .flex-wrapper i {
                font-size: 29px;
            }

.page-servisler section.content h1 {
    font: 50px Montserrat;
    font-weight: 700;
    padding-bottom: 70px;
}

    .page-servisler section.content h2:after, .page-servisler section.content h1:after {
        content: "";
        background: var(--secondary);
        width: 70px;
        height: 4px;
        display: block;
        /* margin-left: 140px; */
    }


.page-servisler section.content .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

    .page-servisler section.content .flex-wrapper .item {
        width: calc((100% - 40px) / 2);
    }

        .page-servisler section.content .flex-wrapper .item .image {
            height: 400px;
            width: 100%;
        }

            .page-servisler section.content .flex-wrapper .item .image img {
                height: 100%;
                width: 100%;
                object-fit: cover
            }

        .page-servisler section.content .flex-wrapper .item .title {
            padding: 20px 0;
            font: 500 26px Montserrat;
        }

        .page-servisler section.content .flex-wrapper .item .text {
            font: 18px / 1.5em Montserrat;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .page-servisler section.content .flex-wrapper .item .link {
            font: 18px / 1.5em Montserrat;
            display: inline-block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 0;
            cursor: pointer;
        }




.page-servis-detay section.content {
    font-size: 20px;
}

    .page-servis-detay section.content h1 {
        font: 50px Montserrat;
        font-weight: 700;
        padding-bottom: 70px;
    }

    .page-servis-detay section.content h2, .page-servis-detay section.diger-servislerimiz h2 {
        font: 50px Montserrat;
        font-weight: 700;
        padding: 70px 0;
    }


        .page-servis-detay section.content h2:after, .page-servis-detay section.content h1:after, .page-servis-detay section.diger-servislerimiz h2:after {
            content: "";
            background: var(--secondary);
            width: 70px;
            height: 4px;
            display: block;
            /* margin-left: 140px; */
        }

        .page-servis-detay section.content h2 span, .page-servis-detay section.content h1 span {
            display: block;
            /* text-indent: 140px; */
        }

    .page-servis-detay section.content .wrapper {
        display: flex;
        gap: 100px;
        padding-bottom: 50px;
        align-items: center;
    }

        .page-servis-detay section.content .wrapper .image, .page-servis-detay section.content .wrapper .text {
            width: 50%;
        }

            .page-servis-detay section.content .wrapper .image img {
                width: 100%;
            }

    .page-servis-detay section.content .sub-links {
        box-shadow: 0px 1px 7px #DBDBDB;
        padding: 20px;
        position: -webkit-sticky;
        position: sticky;
        top: 80px;
        background: #fff;
        z-index: 10;
    }

        .page-servis-detay section.content .sub-links ul {
            display: flex;
            justify-content: space-evenly;
            font-weight: 600;
        }

            .page-servis-detay section.content .sub-links ul li.active {
                border-bottom: 4px solid var(--secondary);
            }

    .page-servis-detay section.content .scroll-margin-top {
        scroll-margin-top: 130px;
        margin-bottom: 50px;
    }

    .page-servis-detay section.content a[href^="tel"] {
        display: inline-block;
        position: relative;
        padding: 0.8rem 1.9rem;
        cursor: pointer;
        border: 0;
        background-color: var(--secondary);
        color: #fff;
        text-decoration: none;
        border-radius: 1.66667rem;
        font: 500 21px Montserrat;
        transition: .2s;
    }

        .page-servis-detay section.content a[href^="tel"]:hover {
            background-color: #222;
            color: #FFF;
            transition: .2s;
        }



    .page-servis-detay section.content ul.faq {
        list-style: none;
        padding-left: 40px;
        padding-right: 20px;
        padding-bottom: 70px;
    }

        .page-servis-detay section.content ul.faq li {
            border-bottom: 1px solid #999999;
            margin-bottom: 15px;
        }

            .page-servis-detay section.content ul.faq li.active .answer {
                max-height: 4000px !important;
                padding-bottom: 25px;
                transition: max-height 0.5s ease, padding-bottom 0.5s ease;
                background: #f7f7f7;
                padding: 20px 40px;
                border-radius: 20px;
                margin-bottom: 20px;
                visibility: visible;
                opacity: 1;
            }

            .page-servis-detay section.content ul.faq li.active .question {
                transition: color 0.5s ease;
            }

        .page-servis-detay section.content ul.faq .answer {
            max-height: 0;
            overflow: hidden;
            transition: 0.5s ease, padding-bottom 0.5s ease;
            background: #f7f7f7;
            padding: 0px 40px;
            border-radius: 20px;
            /* margin-bottom: 20px; */
            visibility: hidden;
            opacity: 0;
        }

        .page-servis-detay section.content ul.faq .plus-minus-toggle {
            cursor: pointer;
            height: 14px;
            position: absolute;
            width: 14px;
            left: -40px;
            top: 45%;
            z-index: 2;
            font-size: 14px;
        }

            .page-servis-detay section.content ul.faq .plus-minus-toggle:before, .page-servis-detay section.content ul.faq .plus-minus-toggle:after {
                background: #000;
                content: '';
                height: 5px;
                left: 0;
                position: absolute;
                top: 0;
                width: 18px;
                transition: transform 500ms ease;
            }

            .page-servis-detay section.content ul.faq .plus-minus-toggle:after {
                transform-origin: center;
            }

            .page-servis-detay section.content ul.faq .plus-minus-toggle.collapsed:after {
                transform: rotate(90deg);
            }

            .page-servis-detay section.content ul.faq .plus-minus-toggle.collapsed:before {
                transform: rotate(180deg);
            }

        .page-servis-detay section.content ul.faq .question {
            font-size: 18px;
            font-weight: 600;
            position: relative;
            cursor: pointer;
            padding: 20px 0;
            transition: color 0.5s ease;
        }

.page-servis-detay section.diger-servislerimiz .container {
    padding-bottom: 100px;
}

    .page-servis-detay section.diger-servislerimiz .container .flex-wrapper {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        flex-direction: row;
    }

        .page-servis-detay section.diger-servislerimiz .container .flex-wrapper a {
            background-color: var(--primary);
            color: #ffffff;
            padding: 15px 30px;
            transition: .2s;
            font: 500 24px Montserrat;
        }

            .page-servis-detay section.diger-servislerimiz .container .flex-wrapper a:hover {
                background-color: var(--secondary);
                transition: .2s;
            }






.page-kariyer section.content {
    font-size: 20px;
}

    .page-kariyer section.content h1 {
        font: 50px Montserrat;
        font-weight: 700;
        padding-bottom: 70px;
    }

    .page-kariyer section.content h2 {
        font: 50px Montserrat;
        font-weight: 700;
        padding: 50px 0 20px;
    }

    .page-kariyer section.content h3 {
        font: 50px Montserrat;
        font-weight: 700;
    }


        .page-kariyer section.content h2:after, .page-kariyer section.content h1:after, .page-kariyer section.content h3:after {
            content: "";
            background: var(--secondary);
            width: 70px;
            height: 4px;
            display: block;
            /* margin-left: 140px; */
        }

    .page-kariyer section.content h2 span, .page-kariyer section.content h1 span {
        display: block;
        /* text-indent: 140px; */
    }

    .page-kariyer section.content .wrapper {
        display: flex;
        gap: 100px;
        padding-bottom: 50px;
    }

        .page-kariyer section.content .wrapper .image, .page-kariyer section.content .wrapper .text {
            width: 50%;
        }

            .page-kariyer section.content .wrapper .image img {
                width: 100%;
            }

    .page-kariyer section.content .form {
        width: 100%;
        background: #f1f1f1;
        padding: 50px;
        margin-top: 50px;
    }

        .page-kariyer section.content .form .wrapper {
            width: 100%;
            display: inline-block;
        }

            .page-kariyer section.content .form .wrapper div .invalid-feedback {
                font-size: 14px;
                margin-top: 0;
                color: #c10000;
            }

            .page-kariyer section.content .form .wrapper div {
                margin-bottom: 10px;
            }

        .page-kariyer section.content .form .title {
            font-family: 'Oswald', sans-serif;
            font-size: 30px;
            font-weight: 400;
            padding-bottom: 20px
        }

        .page-kariyer section.content .form input[type=text], .page-kariyer section.content .form textarea {
            background: #fff;
            width: 100%;
            /* margin-bottom: 10px; */
            padding: 7px 20px;
            font-size: 16px;
        }

        .page-kariyer section.content .form .form-label {
            font-size: 1rem;
            font-weight: 600;
        }

        .page-kariyer section.content .form .but {
            background: black;
            color: #FFF;
            padding: 5px 20px;
        }

            .page-kariyer section.content .form .but:hover {
                background: #113565;
                color: #FFF;
                padding: 5px 20px;
            }

        .page-kariyer section.content .form .form-check-custom {
            display: flex;
            /* padding:20px 0; */
        }

            .page-kariyer section.content .form .form-check-custom label {
                font-size: 15px;
                /* display: inline; */
                margin-left: 12px;
                line-height: 1.5;
            }








.page-tasiyici-ol section.content {
    font-size: 20px;
}

    .page-tasiyici-ol section.content h1 {
        font: 50px Montserrat;
        font-weight: 700;
        padding-bottom: 30px;
    }

    .page-tasiyici-ol section.content h2 {
        font: 50px Montserrat;
        font-weight: 700;
        padding: 50px 0 20px;
    }

    .page-tasiyici-ol section.content h3 {
        font: 50px Montserrat;
        font-weight: 700;
    }


        .page-tasiyici-ol section.content h2:after, .page-tasiyici-ol section.content h1:after, .page-tasiyici-ol section.content h3:after {
            content: "";
            background: var(--secondary);
            width: 70px;
            height: 4px;
            display: block;
            /* margin-left: 140px; */
        }

    .page-tasiyici-ol section.content h2 span, .page-tasiyici-ol section.content h1 span {
        display: block;
        /* text-indent: 140px; */
    }

    .page-tasiyici-ol section.content .wrapper {
        display: flex;
        gap: 100px;
        padding-bottom: 50px;
    }

        .page-tasiyici-ol section.content .wrapper .image, .page-tasiyici-ol section.content .wrapper .text {
            width: 50%;
        }

            .page-tasiyici-ol section.content .wrapper .image img {
                width: 100%;
            }

    .page-tasiyici-ol section.content .form {
        width: 100%;
        background: #f1f1f1;
        padding: 50px;
        margin-top: 50px;
    }

        .page-tasiyici-ol section.content .form .wrapper {
            width: 100%;
            display: inline-block;
        }

            .page-tasiyici-ol section.content .form .wrapper div .invalid-feedback {
                font-size: 14px;
                margin-top: 0;
                color: #c10000;
            }

            .page-tasiyici-ol section.content .form .wrapper div {
                margin-bottom: 10px;
            }

        .page-tasiyici-ol section.content .form .title {
            font-family: 'Oswald', sans-serif;
            font-size: 30px;
            font-weight: 400;
            padding-bottom: 20px
        }

        .page-tasiyici-ol section.content .form input[type=text], .page-tasiyici-ol section.content .form textarea {
            background: #fff;
            width: 100%;
            /* margin-bottom: 10px; */
            padding: 7px 20px;
            font-size: 16px;
        }

        .page-tasiyici-ol section.content .form .form-label {
            font-size: 1rem;
            font-weight: 600;
        }

        .page-tasiyici-ol section.content .form .but {
            background: black;
            color: #FFF;
            padding: 5px 20px;
            font-size: 1rem;
        }

            .page-tasiyici-ol section.content .form .but:hover {
                background: var(--secondary);
                color: #FFF;
                padding: 5px 20px;
            }

        .page-tasiyici-ol section.content .form .form-check-custom {
            display: flex;
            /* padding:20px 0; */
        }

            .page-tasiyici-ol section.content .form .form-check-custom label {
                font-size: 15px;
                /* display: inline; */
                margin-left: 12px;
                line-height: 1.5;
            }

        .page-tasiyici-ol section.content .form .check-list {
            width: 100%;
        }

            .page-tasiyici-ol section.content .form .check-list label {
                font-size: 16px;
                margin-left: 10px;
            }





.page-iletisim section.content {
    font-size: 20px;
}

    .page-iletisim section.content h1 {
        font: 50px Montserrat;
        font-weight: 700;
        padding-bottom: 30px;
    }

    .page-iletisim section.content h2 {
        font: 50px Montserrat;
        font-weight: 700;
        padding: 50px 0 20px;
    }

    .page-iletisim section.content h3 {
        font: 30px Montserrat;
        font-weight: 700;
        /* padding-bottom: 30px; */
    }


        .page-iletisim section.content h2:after, .page-iletisim section.content h1:after, .page-iletisim section.content h3:after {
            content: "";
            background: var(--secondary);
            width: 70px;
            height: 4px;
            display: block;
            /* margin-left: 140px; */
        }

    .page-iletisim section.content h2 span, .page-iletisim section.content h1 span {
        display: block;
        /* text-indent: 140px; */
    }

    .page-iletisim section.content .iletisim-bilgi-container {
        display: flex;
        gap: 100px;
        width: 100%;
    }

        .page-iletisim section.content .iletisim-bilgi-container .left, .iletisim-bilgi-container .right {
            width: calc((100% - 100px) /2);
        }



            .page-iletisim section.content .iletisim-bilgi-container .left .item {
                padding-bottom: 30px;
            }

                .page-iletisim section.content .iletisim-bilgi-container .left .item .title {
                    font-weight: 700;
                }


    .page-iletisim section.content .form {
        width: 100%;
        background: #f1f1f1;
        padding: 50px;
        margin-top: 50px;
    }

        .page-iletisim section.content .form .wrapper {
            width: 100%;
            display: inline-block;
        }

            .page-iletisim section.content .form .wrapper div .invalid-feedback {
                font-size: 14px;
                margin-top: 0;
                color: #c10000;
            }

            .page-iletisim section.content .form .wrapper div {
                margin-bottom: 10px;
            }

        .page-iletisim section.content .form .title {
            font-family: 'Oswald', sans-serif;
            font-size: 30px;
            font-weight: 400;
            padding-bottom: 20px
        }

        .page-iletisim section.content .form input[type=text], .page-tasiyici-ol section.content .form textarea {
            background: #fff;
            width: 100%;
            /* margin-bottom: 10px; */
            padding: 7px 20px;
            font-size: 16px;
        }

        .page-iletisim section.content .form .form-label {
            font-size: 1rem;
            font-weight: 600;
        }

        .page-iletisim section.content .form .but {
            background: black;
            color: #FFF;
            padding: 5px 20px;
            font-size: 1rem;
        }

            .page-iletisim section.content .form .but:hover {
                background: var(--secondary);
                color: #FFF;
                padding: 5px 20px;
            }

        .page-iletisim section.content .form .form-check-custom {
            display: flex;
            /* padding:20px 0; */
        }

            .page-iletisim section.content .form .form-check-custom label {
                font-size: 15px;
                /* display: inline; */
                margin-left: 12px;
                line-height: 1.5;
            }

        .page-iletisim section.content .form .check-list {
            width: 100%;
        }

            .page-iletisim section.content .form .check-list label {
                font-size: 16px;
                margin-left: 10px;
            }


.page-blog section.content h1 {
    font: 50px Montserrat;
    font-weight: 700;
    padding-bottom: 70px;
}

    .page-blog section.content h2:after, .page-blog section.content h1:after {
        content: "";
        background: var(--secondary);
        width: 70px;
        height: 4px;
        display: block;
        /* margin-left: 140px; */
    }



.page-blog section.content .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

    .page-blog section.content .flex-wrapper .item {
        width: calc((100% - 40px) / 2);
    }

        .page-blog section.content .flex-wrapper .item .image {
            height: 250px;
            width: 100%;
        }

            .page-blog section.content .flex-wrapper .item .image img {
                height: 100%;
                width: 100%;
                object-fit: cover
            }

        .page-blog section.content .flex-wrapper .item .title {
            padding: 20px 0;
            font: 500 26px Montserrat;
        }

        .page-blog section.content .flex-wrapper .item .text {
            font: 18px / 1.5em Montserrat;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .page-blog section.content .flex-wrapper .item .link {
            font: 18px / 1.5em Montserrat;
            display: inline-block;
            color: var(--secondary);
            text-decoration: none;
            padding: 10px 0;
            cursor: pointer;
        }


.page-blog-detay section.content {
    font-size: 20px;
}

    .page-blog-detay section.content h1 {
        font: 50px Montserrat;
        font-weight: 700;
        padding-bottom: 70px;
    }

    .page-blog-detay section.content h2, .page-blog-detay section.diger-yazilarimiz h2 {
        font: 50px Montserrat;
        font-weight: 700;
        padding: 70px 0;
    }


        .page-blog-detay section.content h2:after, .page-blog-detay section.content h1:after, .page-blog-detay section.diger-yazilarimiz h2:after {
            content: "";
            background: var(--secondary);
            width: 70px;
            height: 4px;
            display: block;
            /* margin-left: 140px; */
        }

        .page-blog-detay section.content h2 span, .page-blog-detay section.content h1 span {
            display: block;
            /* text-indent: 140px; */
        }

    .page-blog-detay section.content .wrapper {
        display: flex;
        gap: 100px;
        padding-bottom: 50px;
        align-items: center;
    }

        .page-blog-detay section.content .wrapper .image, .page-blog-detay section.content .wrapper .text {
            width: 50%;
        }

            .page-blog-detay section.content .wrapper .image img {
                width: 100%;
            }






.page-blog-detay section.diger-yazilarimiz .container {
    padding-bottom: 100px;
}

    .page-blog-detay section.diger-yazilarimiz .container .flex-wrapper {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        flex-direction: row;
    }

        .page-blog-detay section.diger-yazilarimiz .container .flex-wrapper a {
            background-color: var(--primary);
            color: #ffffff;
            padding: 15px 20px;
            transition: .2s;
            font: 500 16px Montserrat;
        }

            .page-blog-detay section.diger-yazilarimiz .container .flex-wrapper a:hover {
                background-color: var(--secondary);
                transition: .2s;
            }


.page-uye-ekranlar section.content h1 {
    font: 50px Montserrat;
    font-weight: 700;
    padding-bottom: 70px;
}

.page-uye-ekranlar section.content h2:after, .page-uye-ekranlar section.content h1:after {
    content: "";
    background: var(--secondary);
    width: 70px;
    height: 4px;
    display: block;
    /* margin-left: 140px; */
}

.page-uye-ekranlar .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

    .page-uye-ekranlar .flex-wrapper .item {
        width: calc((100% - 50px) /2);
    }

    .page-uye-ekranlar .flex-wrapper .item a {
        text-align: center;
        background: var(--primary);
        color: #fff;
        padding: 30px;
        transition: .3s;
        display: block;
    }

        .page-uye-ekranlar .flex-wrapper .item a:hover {
            background: var(--secondary);
            color: #fff;
            padding: 30px;
            transition: .3s;
        }


.page-takip-sistemi section.content h1 {
    font: 40px Montserrat;
    font-weight: 700;
    padding-bottom: 70px;
}

    .page-takip-sistemi section.content h2:after, .page-takip-sistemi section.content h1:after {
        content: "";
        background: var(--secondary);
        width: 70px;
        height: 4px;
        display: block;
        /* margin-left: 140px; */
    }

footer .footer-top .container {
    display: flex;
    padding: 100px 0;
    justify-content: flex-start;
    align-items: flex-end;
}

    footer .footer-top .container h2 {
        font: 500 36px Montserrat;
        width: 70%;
    }

    footer .footer-top .container .highlight {
        display: inline-block;
        color: var(--secondary);
        font: 500 40px Montserrat;
    }

    footer .footer-top .container .indent {
        display: block;
        padding-left: 2rem;
    }

    footer .footer-top .container a {
        display: inline-block;
        position: relative;
        padding: 0.8rem 1.9rem;
        cursor: pointer;
        border: 0;
        background-color: var(--secondary);
        color: #fff;
        text-decoration: none;
        border-radius: 1.66667rem;
        font: 500 21px Montserrat;
        transition: .2s;
    }

        footer .footer-top .container a:hover {
            background-color: #222;
            color: #FFF;
            transition: .2s;
        }

footer .footer-main {
    background-color: #eee;
    padding: 30px 0
}

    footer .footer-main .container {
        display: flex;
        flex-direction: row;
        gap: 50px;
        flex-wrap: nowrap;
    }

        footer .footer-main .container h2 {
            font-size: 21px;
        }

        footer .footer-main .container .item .logo img {
            width: 250px
        }

        footer .footer-main .container .item ul.social-media-icons {
            display: flex;
            gap: 20px;
            padding-top: 40px;
        }

            footer .footer-main .container .item ul.social-media-icons a {
                font-size: 30px;
            }

        footer .footer-main .container .item:nth-child(1) {
            width: 25%;
            padding: 30px 30px 30px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        footer .footer-main .container .item:nth-child(2) {
            width: 25%;
            padding: 30px 30px 30px 0;
            display: flex;
            flex-direction: column;
        }

            footer .footer-main .container .item:nth-child(2) ul li {
                padding-bottom: 10px;
            }

                footer .footer-main .container .item:nth-child(2) ul li:nth-child(2) {
                    font-size: 26px;
                }

        footer .footer-main .container .item:nth-child(3) {
            width: 20%;
            padding: 30px 30px 30px 0;
            display: flex;
            flex-direction: column;
        }

        footer .footer-main .container .item:nth-child(4) {
            width: 25%;
            padding: 30px 30px 30px 0;
            display: flex;
            flex-direction: column;
        }



footer .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

    footer .footer-bottom .container .lizbon img {
        height: 16px;
    }
