/* General */

body {
    font-family: "Montserrat", sans-serif;
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

:root {
    --color1: #111111;
    --color2: #7d0c07;
}

a {
    color: inherit;
}

    a:hover {
        text-decoration: none;
        transition: all 0.3s ease;
        color: inherit;
    }

p {
    line-height: 30px;
}

.img-fluid {
    max-width: 100%;
}

.mobile-nav {
    display: none;
}

.mobile-close-menu {
    display: none;
}

/* fly alert */

.fly-alert {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 9999;
    margin: 0;
    font-size: 18px;
    display: inline-block;
    width: auto;
}

.alert-danger {
    background-color: #f44336;
}

.alert-success {
    background-color: #2ec4b6;
}

.alert {
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
}

/* mobil hemen ara */

.footer-sticky-bar {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #003399;
    z-index: 999;
    text-align: center;
}

    .footer-sticky-bar a {
        color: #fff;
        width: 100%;
        font-weight: 700;
        font-size: 22px;
        display: flex;
        padding: 15px 0;
        justify-content: center;
        align-items: center;
    }

        .footer-sticky-bar a i {
            position: relative;
            bottom: -1px;
            margin-right: 10px;
            font-size: 30px;
        }

/*fixed header*/

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 999;
}

.logo-menu.fixed-header {
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
    border-bottom: none;
    background-color: white;
}

    .logo-menu.fixed-header .logo img {
        max-width: 180px;
    }

    .logo-menu.fixed-header .main-menu .navigation > li {
        padding: 15px 0;
    }

.p70 {
    padding: 70px 0;
}

.section-title {
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-sub-title {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #7d0c07;
}

.button1 a {
    border: solid 1px #7d0c07;
    padding: 3px 40px;
    font-size: 13px;
    font-weight: 600;
}

    .button1 a:hover {
        border: solid 1px #1b1918;
        background-color: #1b1918;
        color: white;
    }

/* header */

.header .area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .top-header {
    background-color: #1b1918;
    color: white;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.91);
}

    .header .top-header a:hover {
        opacity: 0.7;
    }

    .header .top-header .left {
        position: relative;
        z-index: 1;
        padding: 10px 160px 10px 0;
    }

        .header .top-header .left:before {
            content: "";
            position: absolute;
            right: 0px;
            top: 0px;
            background-color: var(--color-background2);
            z-index: -1;
            width: 6000px;
            bottom: 0px;
        }

    .header .top-header .right {
        display: flex;
        align-items: center;
    }

        .header .top-header .right .item {
            border-right: solid 1px var(--color-background2);
            padding: 10px 20px;
        }

            .header .top-header .right .item i {
                margin-left: 6px;
            }

        .header .top-header .right .social ul {
            padding: 0;
            margin: 0;
            list-style: none;
            display: flex;
        }

            .header .top-header .right .social ul li a {
                margin-left: 20px;
                font-size: 18px;
            }

.main-menu {
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

    .main-menu .navigation {
        position: relative;
        margin: 0px;
        padding: 0;
        display: flex;
        justify-content: space-between;
        list-style: none;
    }

        .main-menu .navigation > li {
            position: relative;
            float: left;
            padding: 35px 0px;
            margin-right: 15px;
            transition: all 300ms ease;
            white-space: nowrap;
        }

            .main-menu .navigation > li:last-child {
                margin-right: 0px;
            }

            .main-menu .navigation > li > a {
                position: relative;
                display: block;
                text-align: center;
                font-weight: 700;
                opacity: 1;
                color: var(--color1);
                padding: 0;
                transition: all 300ms ease;
                font-size: 13px;
            }

                .main-menu .navigation > li > a:before {
                    position: absolute;
                    content: "";
                    width: 0px;
                    height: 2px;
                    background-color: var(--color2);
                    bottom: -8px;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .main-menu .navigation > li > a:hover:before {
                    width: 100%;
                    transition: all 0.3s ease;
                }

            .main-menu .navigation > li:hover > a,
            .main-menu .navigation > li.current > a {
                color: var(--color2);
            }

            .main-menu .navigation > li > ul {
                position: absolute;
                left: 0px;
                top: 99%;
                min-width: 210px;
                padding: 0px 0px;
                z-index: 100;
                opacity: 1;
                margin-top: 1px;
                background: white;
                border: 1px solid #ededed;
                transform: scaleY(0);
                transform-origin: top;
                transition: all 100ms ease;
                list-style: none;
            }

                .main-menu .navigation > li > ul > li {
                    position: relative;
                    width: 100%;
                    border-bottom: 1px solid #ededed;
                }

                    .main-menu .navigation > li > ul > li:hover {
                        background: #ededed;
                        transition: all 300ms ease;
                    }

                    .main-menu .navigation > li > ul > li:last-child {
                        border-bottom: none;
                    }

                    .main-menu .navigation > li > ul > li > a {
                        position: relative;
                        font-size: 13px;
                        line-height: 24px;
                        color: var(--color1);
                        font-weight: 700;
                        text-align: left;
                        display: inline-block;
                        transition: all 200ms ease;
                        padding: 10px 30px 10px 10px;
                        width: 100%;
                    }

                    .main-menu .navigation > li > ul > li:hover > a:before {
                        width: 15px;
                        opacity: 1;
                    }

            .main-menu .navigation > li.dropdown > a:after {
                font-family: "Font Awesome 5 Pro";
                content: "\f107";
                margin-left: 3px;
            }

            .main-menu .navigation > li > ul > li.dropdown > a:after {
                position: absolute;
                font-family: "Font Awesome 5 Pro";
                content: "\f105";
                margin-left: 3px;
                right: 10px;
            }

            .main-menu .navigation > li > ul > li > ul {
                position: absolute;
                left: 100%;
                margin-top: -45px;
                min-width: 210px;
                padding: 0px 0px;
                z-index: 100;
                opacity: 1;
                background: white;
                border: 1px solid #ededed;
                transform: scaleY(0);
                transform-origin: top;
                transition: all 100ms ease;
                list-style: none;
            }

                .main-menu .navigation > li > ul > li > ul > li {
                    position: relative;
                    width: 100%;
                    border-bottom: 1px solid #ededed;
                    white-space: nowrap;
                }

                    .main-menu .navigation > li > ul > li > ul > li:hover {
                        background: #ededed;
                        transition: all 300ms ease;
                    }

                    .main-menu .navigation > li > ul > li > ul > li:last-child {
                        border-bottom: none;
                    }

                    .main-menu .navigation > li > ul > li > ul > li > a {
                        position: relative;
                        font-size: 13px;
                        line-height: 24px;
                        color: var(--color1);
                        font-weight: 700;
                        text-align: left;
                        display: inline-block;
                        transition: all 200ms ease;
                        padding: 10px 30px 10px 10px;
                        width: 100%;
                    }

                    .main-menu .navigation > li > ul > li > ul > li:hover > a:before {
                        width: 15px;
                        opacity: 1;
                    }

            .main-menu .navigation > li.dropdown:hover > ul {
                transform: scale(1);
                visibility: visible;
                opacity: 1;
                background-color: white;
                border: solid 1px #ededed;
            }

        .main-menu .navigation li > ul > li.dropdown:hover > ul {
            transform: scale(1);
            visibility: visible;
            opacity: 1;
            top: 99%;
            background-color: white;
        }

/* slider */

.owl-prev {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-next {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev i {
    color: white;
    font-size: 20px;
    background-color: var(--color2);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-next i {
    color: white;
    font-size: 20px;
    background-color: var(--color2);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-prev i:hover {
    background-color: var(--color1);
}

.owl-next i:hover {
    background-color: var(--color1);
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: none;
    color: white;
    text-decoration: none;
}

.owl-dots {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color1);
    width: 25px;
    height: 10px;
    border-radius: 0;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--color2);
    width: 25px;
    height: 10px;
    border-radius: 0;
}

.owl-next:focus,
.owl-prev:focus {
    outline: none;
}

.owl-dot,
.owl-dot:active,
.owl-dot:focus {
    outline: none;
}

.owl-desk .owl-prev {
    left: -70px;
}

.owl-desk .owl-next {
    right: -70px;
}

.owl-desk .owl-dots {
    bottom: -9%;
}

.slider-mobile {
    display: none;
}

/* about home */

.about-home {
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.03);
}

    .about-home .area {
        align-items: center;
    }

.about-icon {
    border-bottom: solid 1px #ededed;
    padding: 15px 0;
}

    .about-icon:last-child {
        border: none;
    }

    .about-icon i {
        color: #7d0c07;
        font-size: 22px;
    }

    .about-icon span {
        display: block;
        font-weight: 800;
    }

/* our products home*/

.our-products-home {
    background: url(../images/dotted-bg.png) bottom center repeat-x;
}

    .our-products-home .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

.general-box {
    margin-bottom: 30px;
}

    .general-box .title {
        font-weight: 800;
        font-size: 17px;
        position: relative;
        margin-top: 15px;
        padding-top: 10px;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

        .general-box .title:after {
            position: absolute;
            content: "";
            background-color: var(--color2);
            width: 50px;
            height: 2px;
            left: 0;
            top: 0;
            transition: all 0.3s ease;
        }

    .general-box:hover .title:after {
        width: 100%;
    }

    .general-box img {
        transition: all 0.3s ease;
    }

    .general-box:hover img {
        opacity: 0.8;
    }

    .general-box .title {
        transition: all 0.3s ease;
    }

    .general-box:hover .title {
        color: #444;
    }

    .general-box .desc {
        transition: all 0.3s ease;
    }

    .general-box:hover .desc {
        color: #444;
    }

/* cta */

.cta {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 10;
    position: relative;
    color: white;
    padding: 50px 0;
}

    .cta:before {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: #1b1918;
        opacity: 0.8;
        z-index: -1;
    }

    .cta a:hover {
        opacity: 0.7;
    }

    .cta .logo-cta {
        text-align: center;
        margin-bottom: 20px;
    }

    .cta .social ul {
        padding: 0;
        margin: 0;
        display: flex;
        list-style: none;
        justify-content: center;
        margin-bottom: 20px;
    }

        .cta .social ul li a {
            margin-left: 10px;
            margin-right: 10px;
            font-size: 25px;
        }

    .cta .section-title {
        position: relative;
        text-align: center;
        margin-bottom: 55px;
    }

        .cta .section-title:after {
            position: absolute;
            content: "";
            background-color: white;
            width: 100px;
            height: 1px;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.7;
        }

    .cta:hover .section-title:after {
        width: 400px;
        transition: all 0.3s ease;
    }

.cta-box {
    display: flex;
    align-items: center;
}

    .cta-box .icon i {
        margin-right: 20px;
        border: solid 1px white;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        border-radius: 5px;
    }

    .cta-box .info a {
        display: block;
    }

.footer {
    padding-top: 50px;
    background-color: #0b0b0b;
    color: white;
}

    .footer a:hover {
        opacity: 0.7;
    }

    .footer .footer-title {
        font-weight: 800;
        font-size: 17px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: solid 1px #1b1918;
    }

    .footer ul.item {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .footer ul.item li {
            position: relative;
            width: 100%;
            float: left;
            margin-bottom: 10px;
        }

            .footer ul.item li:before {
                content: "\f105";
                font-family: "Font Awesome 5 Pro";
                margin-right: 2px;
            }

    .footer ul.blog {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .footer ul.blog li {
            position: relative;
            margin-bottom: 10px;
        }

            .footer ul.blog li:before {
                content: "\f105";
                font-family: "Font Awesome 5 Pro";
                margin-right: 2px;
            }

    .footer .bottom {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 15px;
        border-top: solid 1px #1b1918;
        padding-top: 15px;
    }

/* breadcrumb 

.breadcrumb1 {
    padding: 40px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.breadcrumb1 .bread-title {
    text-align: center;
    color: #fff
}

.breadcrumb1 .section-title-ab {
    margin: 0 auto 30px;
    background: #fff
}

.breadcrumb1 .section-title-ab:before {
    background: #fff
}

.breadcrumb1 .section-title-ab:after {
    background: #fff
}

.breadcrumb1 ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #fff
}

.breadcrumb1 ul li {
    list-style: none
}

.breadcrumb1 ul li a {
    color: #fff
}

.breadcrumb1 ul li a:hover {
    opacity: 0.7;
    transition: all .3s ease
}

.breadcrumb1 ul li a:after {
    margin-left: 10px;
    margin-right: 10px;
    font-family: "Font Awesome 5 Pro";
    content: "\f054";
}
*/

/* text area */

.text-area img {
    max-width: 100%;
    margin-bottom: 15px;
}

.text-area a {
    font-weight: 700;
}

.text-area ul {
    padding: 0;
}

    .text-area ul li {
        list-style: none;
        margin-bottom: 10px;
    }

        .text-area ul li:before {
            content: "\f105";
            font-family: "Font Awesome 5 Pro";
            color: var(--color2);
            font-weight: 700;
            margin-right: 7px;
        }

.text-area iframe {
    max-width: 100%;
}

/* sidebar area */

.sidebar-area {
    border-left: solid 1px #ddd;
    padding-left: 15px;
    position: sticky;
    top: 70px;
}

    .sidebar-area .sidebar-title {
        font-weight: 800;
        font-size: 17px;
        position: relative;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .sidebar-area ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .sidebar-area ul li {
            border-bottom: solid 1px #ddd;
            position: relative;
            display: flex;
            padding: 7px 0;
        }

            .sidebar-area ul li:before {
                content: "\f105";
                font-family: "Font Awesome 5 Pro";
                font-weight: 700;
                margin-right: 7px;
            }

            .sidebar-area ul li a {
                display: inline-block;
            }

                .sidebar-area ul li a:hover {
                    color: var(--color2);
                }

/* about page */

.about-page .about-icon {
    border: solid 1px #ddd;
    padding: 15px;
    border-radius: 5px;
    max-width: 160px;
    min-width: 160px;
    text-align: center;
    height: 100%;
}

/* FORM */
.form-area {
    background: white;
}

    .form-area .title {
        margin-left: 1px;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--color1);
    }

    .form-area input.form-control {
        width: 100%;
        background: white;
        border: solid 1px #ddd;
        height: 40px;
        margin-bottom: 15px;
        padding: 0 10px;
        outline: none;
    }

    .form-area input[type="file"] {
        width: 100%;
        background: white;
        border: solid 1px #ddd;
        margin-bottom: 15px;
        padding: 9px 10px;
        outline: none;
        height: 50px;
    }

    .form-area select.form-control {
        width: 100%;
        background: white;
        border: solid 1px #ddd;
        height: 40px;
        margin-bottom: 15px;
        padding: 0 10px;
        outline: none;
    }

    .form-area textarea.form-control {
        background: white;
        border: solid 1px #ddd;
        width: 100%;
        height: 160px;
        margin-bottom: 15px;
        padding: 10px 10px;
        outline: none;
    }

    .form-area .nobot {
        text-align: center;
        margin-bottom: 15px;
    }

        .form-area .nobot img {
            max-width: 100%;
        }

    .form-area .cbutton {
        text-align: center;
    }

    .form-area button.contact-button {
        background: var(--color2);
        border-radius: 5px;
        color: white;
        border: none;
        padding: 10px 50px;
        font-weight: bold;
        font-size: 18px;
        line-height: 21px;
        outline: none;
        cursor: pointer;
    }

        .form-area button.contact-button:hover {
            background: var(--color1);
            outline: none;
            transition: all 0.3s ease;
        }

/* bank number page */

.bank-items {
    margin-bottom: 25px;
}

.hesap-card {
    margin-bottom: 20px;
    padding: 10px;
}

    .hesap-card .hesap-images {
        text-align: center;
        margin-bottom: 20px;
    }

        .hesap-card .hesap-images img {
            max-height: 100px;
        }

    .hesap-card .hesap-adi {
        display: flex;
        border-bottom: 1px solid #ddd;
        padding: 5px 0;
    }

    .hesap-card .hesap-title {
        font-weight: 700;
        min-width: 125px;
        position: relative;
    }

        .hesap-card .hesap-title:after {
            content: ":";
            position: absolute;
            right: 0px;
            margin-right: 12px;
        }

/* home sss */

.sss-home .sss-title {
    color: var(--color1);
}

    .sss-home .sss-title:before {
        font-family: "Font Awesome 5 Pro";
        content: "\f107";
        margin-right: 10px;
    }

.sss-home .card {
    margin-bottom: 20px;
    border: none;
}

.sss-home .card-header {
    background-color: white;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    border: solid 1px #ddd;
}

.sss-home .card-body {
    background-color: white;
    border: solid 1px #ddd;
    padding: 10px;
    line-height: 26px;
}

.sss-home .button1 {
    text-align: center;
}

/* Contact Page */

.contact-page .full-contact {
    margin-bottom: 60px;
}

.contact-page .contact-infos {
    padding: 0 15px;
    height: 100%;
}

    .contact-page .contact-infos .title {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact-page .contact-infos .infos {
        display: flex;
        align-items: center;
        padding-bottom: 10px;
        margin-bottom: 15px;
        border-bottom: solid 1px #ddd;
    }

        .contact-page .contact-infos .infos .icon {
            font-size: 40px;
            margin-right: 10px;
            min-width: 48px;
            text-align: center;
        }

        .contact-page .contact-infos .infos a {
            display: block;
        }

.contact-page .maps {
    padding: 0;
    margin-bottom: -77px;
}

.contact-page .form-area {
    padding: 0 15px;
}

/* general page */

.page-desc {
    margin-bottom: 20px;
}

/* video page */

.video-box {
    margin-bottom: 30px;
}

    .video-box .video-title {
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 10px;
    }

/* photo page */

.picture-box {
    position: relative;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
    margin-bottom: 35px;
}

    .picture-box .picture-button {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        opacity: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

        .picture-box .picture-button a {
            font-size: 40px;
            text-shadow: 1px 0px 10px rgba(0, 0, 0, 0.5);
            color: white;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .picture-box .picture-button:hover {
            opacity: 1;
            transition: all 0.3s ease;
        }

/* testimonials home */

.testimonials-box {
    border: solid 1px #ddd;
    position: relative;
    padding: 30px;
}

    .testimonials-box:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 80px;
        height: 2px;
        background-color: var(--color2);
    }

    .testimonials-box .picture {
        margin-bottom: 10px;
    }

        .testimonials-box .picture img {
            position: absolute;
            top: -45px;
            border-radius: 50%;
            left: 25px;
            min-width: 80px;
            min-height: 80px;
            max-height: 80px;
            max-width: 80px;
            border: solid 1px #ddd;
        }

    .testimonials-box .infos {
        margin-left: 75px;
        position: relative;
    }

        .testimonials-box .infos:after {
            font-family: "Font Awesome 5 Pro";
            content: "\f10d";
            left: -66px;
            top: -4px;
            position: absolute;
            font-size: 45px;
            color: #ddd;
        }

        .testimonials-box .infos .name {
            font-size: 16px;
            font-weight: 700;
            color: var(--color1);
            display: block;
        }

        .testimonials-box .infos .job {
            font-size: 14px;
            font-weight: 600;
            color: var(--color2);
            display: block;
            min-height: 21px;
        }

    .testimonials-box .quate {
        margin-top: 10px;
    }

.testimonials-page .testimonials-box .picture img {
    top: 10px;
    left: auto;
    right: 10px;
}

.testimonials-page .testimonials-box {
    margin-bottom: 40px;
}

    .testimonials-page .testimonials-box:after {
        right: auto;
        left: 0;
    }

/* calc */

.top-selector {
    display: flex;
    flex-wrap: wrap;
}

.top-selector-item img {
    padding: 10px 10px 7px 10px;
    background-color: #a13a3d;
    width: 45px;
    height: 42px;
    opacity: 0.5;
}

.top-selector-item input {
    display: none;
}

.top-selector-item {
    display: flex;
    flex-direction: column;
    color: inherit;
}

.top-selector-item {
    margin-right: 10px;
}

    .top-selector-item:last-child {
        margin-right: 0;
    }

    .top-selector-item input:checked + img {
        opacity: 1;
    }

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

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

.hide {
    display: none;
}

.calc-input-label {
    border: none;
    outline: none;
}

.calc-input {
    display: flex;
    margin-bottom: 10px;
}

input.cacl-input-element {
    width: 100%;
    margin-right: 10px;
}

input[name="totalweight"] {
    border: none;
    pointer-events: none;
    font-weight: 600;
    font-size: 25px;
    text-align: center;
}

.btn-style-one {
    position: relative;
    padding: 11px 40px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: #9a2c2c;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #9a2c2c;
    font-family: Montserrat, sans-serif;
}

/* sidebar hemen ara */

.sidebar-iletisim-alani {
    margin-top: 30px;
}

    .sidebar-iletisim-alani a {
        display: block;
        margin-bottom: 10px;
    }

    .sidebar-iletisim-alani i {
        width: 20px;
        text-align: center;
    }

@media only screen and (min-width: 900px), (height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape), (width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    .header-mobile {
        display: none;
    }
}

@media only screen and (max-width: 900px), (height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape), (width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    .mobile-header-icons {
        display: flex;
    }

        .mobile-header-icons .i {
            font-size: 22px;
        }

        .mobile-header-icons a i {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

            .mobile-header-icons a i.far.fa-map-marker-alt {
                margin-left: 15px;
                background-color: #4d4c4c;
            }

            .mobile-header-icons a i.fas.fa-phone {
                background-color: #00aad0;
            }

    .mobile-header-hamburger .hamburger-toggle {
        background: transparent;
        padding: 0px;
        margin: 0 10px;
        border: none;
        display: flex;
        align-items: center;
        outline: none;
        color: #222;
    }

        .mobile-header-hamburger .hamburger-toggle i {
            font-size: 30px;
            margin-left: 10px;
        }

    .mobile-nav {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        width: 100%;
        -webkit-animation: fadeOutLeft 0.5s ease-in-out;
        animation: fadeOutLeft 0.5s ease-in-out;
    }

    .mobile-nav-content {
        padding-top: 20px;
        background: #1d1e1f;
        width: 75%;
        height: 100%;
        cursor: copy;
        overflow-y: scroll;
    }

    .mobile-nav-logo {
        padding-left: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-bottom: 20px;
    }

    .mobile-nav-logo-content {
        position: relative;
    }

        .mobile-nav-logo-content i {
            display: block;
            margin: 0 auto 10px;
            max-width: 30px;
            line-height: 32px;
            font-size: 30px;
        }

        .mobile-nav-logo-content a {
            color: #b5bbc2;
            font-size: 14px;
            font-weight: 600;
        }

    .mobile-nav-logo > a {
        display: block;
        padding: 30px 60px;
    }

        .mobile-nav-logo > a img {
            width: 100%;
        }

    .mobile-nav-menu ul li {
        padding: 10px 25px;
        list-style: none;
    }

    .sub-menu ul {
        background-color: #28292a;
    }

    .mobile-nav-menu ul li .sub-menu-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-nav-menu ul li i {
        font-size: 14px;
        fill: #b5bbc2;
        color: #b5bbc2;
    }

    .mobile-nav-menu ul li a {
        color: #b5bbc2;
        font-weight: 600;
        font-size: 14px;
    }

    .mobile-nav-menu ul li ul {
        display: none;
        margin-top: 10px;
        margin-right: -25px;
        margin-left: -25px;
        padding-left: 25px;
    }

    .mobile-nav-login a {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #b5bbc2;
        padding-left: 25px;
        padding-bottom: 20px;
        font-weight: 600;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .mobile-nav-login a svg {
            font-size: 18px;
            margin-right: 5px;
        }

    .mobile-nav.open {
        display: block;
        -webkit-animation: fadeInLeft 0.5s;
        animation: fadeInLeft 0.5s;
        overflow-x: scroll;
    }

    .cta-link {
        line-height: 40px;
        -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
        display: block;
        color: #fff;
        border-radius: 3px;
        background: #00aad0;
        text-align: center;
        margin: 20px;
        margin-bottom: 10px;
    }

    .mobile-close-menu {
        position: fixed;
        top: 18px;
        right: 20px;
        display: none;
        z-index: 9999;
    }

        .mobile-close-menu i {
            color: #fff;
            font-size: 25px;
        }

    ul.mobile-menu-social {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        list-style: none;
    }

        ul.mobile-menu-social li + li {
            margin-left: 15px;
        }

        ul.mobile-menu-social li a {
            border: 1px solid #00aad0;
            display: flex;
            width: 35px;
            height: 35px;
            align-items: center;
            justify-content: center;
            color: #fff;
            border-radius: 50%;
        }

    .mobile-nav-menu ul {
        padding: 0px;
    }

    .header-mobile {
        display: block;
        background-color: #fff;
    }

    .header-mobile-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header-mobile .header-mobile-logo img {
        max-width: 120px;
    }

    /* fly alert */

    .fly-alert {
        top: 30px;
        left: 10px;
        right: 10px;
        font-size: 16px;
        text-align: center;
    }

    /* footer sticky hemen ara */

    .footer-sticky-bar {
        display: block;
    }

    .p70 {
        padding: 40px 0;
    }

    /* header */

    .header {
        display: none;
    }

    /* slider */

    .slider {
        display: none;
    }

    .owl-prev {
        left: 0px;
    }

    .owl-next {
        right: 0px;
    }

    .slider-mobile {
        display: block;
    }

    .owl-desk .owl-dots {
        display: none;
    }

    .owl-desk .owl-prev {
        left: 0px;
    }

    .owl-desk .owl-next {
        right: 0px;
    }

    /* about home */

    .about-home .text {
        margin-bottom: 30px;
    }

    .about-home .picture {
        margin-bottom: 30px;
    }

    .about-home .about-icon {
        text-align: center;
    }

    /* cta */

    .cta-box {
        margin-bottom: 30px;
    }

    /* footer */

    .footer {
        padding-top: 30px;
        padding-bottom: 100px;
    }

        .footer .footer-title {
            margin-top: 20px;
        }

        .footer .bottom {
            display: block;
            text-align: center;
        }

            .footer .bottom span {
                margin-bottom: 10px;
                display: inline-block;
            }

    /* breadcrumb */

    .breadcrumb1 ul li {
        font-size: 15px;
    }

    /* sidebar */

    .sidebar-area {
        border: none;
        padding-left: 0;
    }

    /* about page */

    .about-page .about-icons .col-6 {
        margin-bottom: 30px;
    }

    /* testimonials page */

    .testimonials-form {
        display: block;
        text-align: center;
    }

        .testimonials-form .slogan {
            margin-bottom: 30px;
        }
}

/* Bread */
.breadcrumb {
    position: relative;
    background-position: center;
    background-size: cover;
}

    .breadcrumb .title {
        color: white;
        padding: 40px 0 65px;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.02em;
        text-align: center;
    }

@media (max-width: 991px) {
    .breadcrumb .title {
        padding: 100px 0 45px;
        font-size: 32px;
    }
}

.bread {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .bread {
        color: #494c51;
        justify-content: center;
    }
}

.bread-area {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -30%);
    bottom: 0;
    color: #fff;
}

@media (max-width: 991px) {
    .bread-area {
        background-color: #fdfdfe;
        top: 0;
        left: 0;
        bottom: auto;
        width: 100%;
        transform: none;
    }
}

.bread-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
}

@media (max-width: 991px) {
    .bread-item {
        display: none;
        line-height: 1.5;
    }
}

.bread-item i {
    margin-left: 15px;
    margin-right: 15px;
}

.bread-item.active {
    opacity: 1;
}

.bread-item:first-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.bread-item:nth-child(2) {
    display: none;
}

@media (max-width: 991px) {
    .bread-item:nth-child(2) {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
}

@media (max-width: 991px) {
    .bread-item:last-child {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.js-bread-list {
    display: none;
    background-color: #fdfdfe;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px 30px 20px;
    font-size: 12px;
    z-index: 8;
    color: #333;
}

    .js-bread-list .bread-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .js-bread-list .bread-item i {
            margin-left: 0;
        }

        .js-bread-list .bread-item + .bread-item {
            margin-top: 20px;
        }

        .js-bread-list .bread-item:nth-child(2) {
            margin-left: 10px;
        }

        .js-bread-list .bread-item:nth-child(3) {
            margin-left: 20px;
        }

        .js-bread-list .bread-item:nth-child(4) {
            margin-left: 30px;
        }

        .js-bread-list .bread-item:nth-child(5) {
            margin-left: 40px;
        }

    .js-bread-list .js-bread-close {
        position: absolute;
        top: 20px;
        right: 20px;
    }
/* Bread */

.fake_error {
    white-space: nowrap;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px;
    background-color: #f44336;
    color: #fff;
    padding: 5px 15px;
    top: calc(100% - 40px);
    margin-bottom: 20px;
    position: absolute;
    z-index: 9;
    font-weight: 500;
}

    .fake_error:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(194, 225, 245, 0);
        border-bottom-color: #f44336;
        border-width: 10px;
        margin-left: -10px;
    }

.g-recaptcha {
    display: flex;
    justify-content: center;
}

.whatsapp-sticky-bar {
    display: none;
    position: fixed;
    right: 6px;
    bottom: 49px;
    width: 100%;
    background-color: #25d366;
    z-index: 999;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

    .whatsapp-sticky-bar a {
        color: #fff;
        width: 100%;
        font-weight: 700;
        font-size: 22px;
        display: flex;
        padding: 0;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
    }

        .whatsapp-sticky-bar a svg {
            height: 35px;
            width: 35px;
        }

@media (max-width: 992px) {
    .whatsapp-sticky-bar {
        display: block;
        bottom: 95px;
    }
}

.footer-sticky-bar {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #a13a3d;
    z-index: 999;
    text-align: center;
}

    .footer-sticky-bar a {
        color: #fff;
        width: 100%;
        font-weight: 700;
        font-size: 22px;
        display: flex;
        padding: 5px 0;
        justify-content: center;
        align-items: center;
    }

        .footer-sticky-bar a i {
            position: relative;
            bottom: -1px;
            margin-right: 10px;
            font-size: 30px;
        }

@media (max-width: 992px) {
    .footer-sticky-bar {
        display: block;
    }
}

.error-page {
    padding: 70px 0;
    text-align: center;
}

    .error-page .top-title {
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .error-page .top-desc {
        margin-bottom: 50px;
    }

.ilk-kirilim .general-box {
    margin-right: 30px;
}

.text-area table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
    border: none;
}

    .text-area table td,
    .text-area table th {
        border: 1px solid #ddd;
        padding: 10px 15px;
    }

    .text-area table thead tr {
        background-color: var(--color2);
        color: #fff;
    }

        .text-area table thead tr th,
        .text-area table thead tr td {
            font-weight: 700;
        }

    .text-area table tbody tr:nth-child(even) {
        background-color: #f7f7f7;
    }

@media (min-width: 768px) {
    .general-box.ilk-kirilim {
        margin-right: 30px;
    }
}

/* custom */

.services-list {
    min-height: 650px;
}

.footer-sticky {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #000810;
    position: fixed;
    z-index: 11;
    width: 100%;
    bottom: 0;
    padding: 0 0.5rem 1.15rem 0.5rem;
    border-top-left-radius: 2.15rem;
    border-top-right-radius: 2.15rem;
    border-top: 6px solid #7d0c07;
}

    .footer-sticky .sticky-box {
        width: 20%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: default;
    }

        .footer-sticky .sticky-box .icon {
            height: 48px;
            width: 48px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .footer-sticky .sticky-box .icon i {
                font-size: 24px;
                color: #d5dae5;
            }

        .footer-sticky .sticky-box .text {
            font-size: 9px;
            color: white;
            text-align: center;
        }

    .footer-sticky .top-box {
        -webkit-transform: translateY(-1.5rem);
        transform: translateY(-1.5rem);
    }

        .footer-sticky .top-box .icon {
            background: #7d0c07;
            border-radius: 50%;
            position: relative;
            -webkit-box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.77);
            box-shadow: -1px 4px 4px rgba(0, 0, 0, 0.77);
        }

            .footer-sticky .top-box .icon::after {
                content: "";
                position: absolute;
                height: 56px;
                width: 56px;
                border: 1px solid #cb9393c0;
                border-radius: 50%;
                opacity: 0.75;
            }

            .footer-sticky .top-box .icon::before {
                content: "";
                position: absolute;
                height: 66px;
                width: 66px;
                border: 1px solid #cb939380;
                border-radius: 50%;
                opacity: 0.5;
            }

        .footer-sticky .top-box .text {
            -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
            text-align: center;
        }

@media (max-width: 992px) {
    .footer-sticky {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 320px) {
    .footer-sticky .sticky-box .text {
        font-size: 10px;
    }
}

.contact-page .contact-infos .infos .top {
    display: flex;
    align-items: center;
}

.contact-page .contact-infos .infos {
    flex-wrap: wrap;
}

    .contact-page .contact-infos .infos .tableScroll {
        font-size: 15px;
        margin-top: 10px;
        font-weight: 600;
        color: #7d0c07;
    }

.scroll-text {
    max-height: 500px;
    overflow-y: auto;
}

    .scroll-text::-webkit-scrollbar {
        width: 8px;
    }

    /* Track */
    .scroll-text::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .scroll-text::-webkit-scrollbar-thumb {
        background: #888;
    }

        /* Handle on hover */
        .scroll-text::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.contact-form .form-group .form-item {
    width: 100%;
    border: 1px solid #c4c4c475;
    margin-bottom: 10px;
    outline: none;
    padding: 8px 10px;
}

    .contact-form .form-group .form-item:focus {
        border: solid 1px #050c28;
    }

.contact-form .form-group label {
    font-size: 14px;
    color: #706f6d;
    margin-bottom: 4px;
    display: inline-block;
}

.contact-form .form-group textarea {
    height: 150px;
    min-height: 150px;
}

.contact-form .recaptcha {
    margin: 15px 0px 25px 15px;
    display: block;
    width: 100%;
}

#exampleModal3 .modal-form-area {
    padding: 30px;
}

#exampleModal3 .modal-header button {
    border: none;
    padding: 10px;
    background: #9a2c2c;
    color: white;
    cursor: pointer;
}

#exampleModal3 .modal-header {
    display: flex;
    justify-content: flex-end;
}

#exampleModal3 button.btn.btn-blue {
    background: #9a2c2c;
    border: none;
    padding: 5px 15px;
    color: white;
    width: 100%;
    cursor: pointer;
}

#exampleModal3 .modal-form-area .title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.calculation-bottom {
    margin-top: 20px;
    margin-bottom: 25px;
}

.modal-open {
    overflow: hidden;
}

    .modal-open .modal {
        overflow-x: hidden;
        overflow-y: auto;
    }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    max-height: calc(100% - 1rem);
}

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 1rem);
        overflow: hidden;
    }

    .modal-dialog-scrollable .modal-footer,
    .modal-dialog-scrollable .modal-header {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
    }

.modal-dialog-centered {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

    .modal-dialog-centered::before {
        display: block;
        height: calc(100vh - 1rem);
        content: "";
    }

    .modal-dialog-centered.modal-dialog-scrollable {
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        height: 100%;
    }

        .modal-dialog-centered.modal-dialog-scrollable .modal-content {
            max-height: none;
        }

        .modal-dialog-centered.modal-dialog-scrollable::before {
            content: none;
        }

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 0.5;
    }

.modal-header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

    .modal-header .close {
        padding: 1rem 1rem;
        margin: -1rem -1rem -1rem auto;
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

    .modal-footer > :not(:first-child) {
        margin-left: 0.25rem;
    }

    .modal-footer > :not(:last-child) {
        margin-right: 0.25rem;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }

        .modal-dialog-scrollable .modal-content {
            max-height: calc(100vh - 3.5rem);
        }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

        .modal-dialog-centered::before {
            height: calc(100vh - 3.5rem);
        }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

.flex-center {
    align-items: center;
}

.mb50 {
    margin-bottom: 50px;
}

img {
    max-width: 100%;
}

.contact-page .contact-infos .infos:last-child {
    border: none;
}

.contact-page .full-contact {
    padding-top: 40px;
    border-top: solid 1px #ddd;
}

@media (max-width: 992px) {
    .contact-image {
        margin-bottom: 30px;
    }
}

.news-box {
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 30px 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 40px;
}

.news-text {
    margin-top: 15px;
    font-weight: 700;
}

.news-desc {
    margin-top: 20px;
}

.news-box img {
    border-radius: 12px;
}

div.contact_lang ul.site_lang {
    position: relative;
    margin: 0px;
    padding: 0;
    display: flex;
    list-style: none;
}




    div.contact_lang ul.site_lang span.aktif_dil {
        float: left;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 4px;
        margin-right: 4px;
        border: 1px solid #ddd;
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 4px;
        padding-right: 4px;
    }

    div.contact_lang ul.site_lang li {
        float: left;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 4px;
        margin-right: 4px;
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 4px;
        padding-right: 4px;
    }
