/* ==============================================
    RESET -->
    =============================================== */
html, body {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
}

body {
    overflow-x: hidden !important;
    overflow-y: scroll;
    -webkit-tap-highlight-color: rgba(0,0,0,0.3);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 30px;
    letter-spacing: 0px;
    color: #797979;
}

section, .cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
    -webkit-text-size-adjust: none;
}
/* Undragable Images */
img {
    display: block;
    /*width: 100%;*/
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, p {
    color: inherit;
    font-variant-ligatures: common-ligatures;
    padding: 0;
    margin: 0;
}

ol, ul {
    list-style: none;
    padding: 0;
}

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

* {
    border: 0;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *, *:hover, *:focus {
        outline: none !important;
    }

.container {
    max-width: 1170px;
}

h6 {
    font-size: 14px;
}

section {
    overflow: hidden;
}

/* ==============================================
		FONTS -->
		=============================================== */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Playfair+Display:400,400i,700&display=swap');

/* ==============================================
HEADER
=============================================== */
header {
    position: fixed;
    width: 100%;
    background: transparent;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid #fff;
}

    header .logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

.navigation-sticky {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0 12% 0 8%;
    margin: 0;
}

header.sticky .navigation-sticky {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

header .logo img {
    padding-left: 15px;
}

.white-logo, .black-logo {
    max-width: 220px;
}

header .col-md-4, header .col-md-8 {
    padding: 0;
}

.black-logo {
    display: none;
}

header.sticky .white-logo {
    display: none !important;
    width: 0 !important;
}

header.sticky .black-logo {
    display: block;
}

header .right-navigation .first-ul {
    display: flex;
    float: right;
    margin: 17px 0 0;
}

header .right-navigation ul li {
    padding: 12.7px 10px;
    font-weight: 500;
    transition: all 300ms ease-in-out;
}

    header .right-navigation ul li a {
        font-size: 14px;
        letter-spacing: 0;
    }

header .right-navigation .dropdown li {
    padding: 0 0 0 20px;
}

header .header-link {
    padding: 10px 30px !important;
    border: 1px solid #fff;
}

header.sticky .header-link1 {
    background-color: #8EC475;
    color: #fff !important;
}

header.sticky .header-link2 {
    border: 1px solid #1BB3D5;
}

header.sticky .core-menu li a {
    color: #333333;
}

header.sticky .hamburger__line-in::before, header.sticky .hamburger__line-in::after {
    background-color: #FF0000 !important;
}

@media screen and (max-width: 768px) {
    header {
        height: 75px;
    }

        header .logo img {
            padding-left: 0;
            max-width: 200px;
        }

        header.sticky .black-logo {
            position: absolute;
            top: 0;
            left: 15px;
        }
}

.color-new {
    color: #717171 !important;
}

.main-menu {
    display: block;
    position: relative;
}

    .main-menu:before, .main-menu:after {
        display: table;
        line-height: 0;
        content: "";
    }

.core-menu {
    text-align: right;
    overflow: hidden;
    margin: 0;
}

    .core-menu li {
        list-style: none;
        display: inline-block;
        cursor: pointer;
    }

        .core-menu li a {
            display: inline-block;
            padding: 0.5em 1em;
        }

li span.toggle {
    padding-left: 8px;
}

.toggle:before {
    content: "\f107";
    font: normal normal normal 16px/1 FontAwesome;
}

header .dropdown {
    position: absolute;
    width: 260px;
    background: #fff;
    text-align: left;
    display: none;
    padding: 15px 0;
    margin-left: -20px;
}

    header .dropdown li {
        display: block;
    }

        header .dropdown li a {
            display: block;
        }

.dropdown2 {
    position: absolute;
    width: 230px;
    background: #2d2d2d;
    text-align: left;
    display: none;
    right: -100%;
    top: 0;
}

    .dropdown2 li {
        display: block;
    }

        .dropdown2 li a {
            display: block;
        }

li span.toggle2 {
    position: absolute;
    right: 0;
    margin-right: 20px;
}

.toggle2:before {
    content: "\f105";
    font: normal normal normal 16px/1 FontAwesome;
}

.hamburger-menu {
    padding: 1em;
    display: none;
    text-transform: uppercase;
}

header .right-navigation ul li:hover {
    background-color: #fff;
    color: #FF0000;
}

.header-active {
    border-bottom: 3px solid #fff;
}

.header2 {
    background-color: #fff;
}

    .header2 .core-menu a {
        color: #333333;
    }

    .header2 .hamburger__line-in::before, .header2 .hamburger__line-in::after {
        background-color: #FF0000;
    }

@media (max-width:720px) {
    .container-menu {
        width: 100%;
    }

    .navigation {
        float: left;
        display: block;
        width: 100%;
    }

    .core-menu {
        float: right;
        width: 100%;
        background: #fff;
        margin: auto;
        display: none;
        height: 100vh;
        overflow: scroll;
        padding-top: 25vh;
    }

        .core-menu li {
            width: 100%;
            display: block;
        }

            .core-menu li a {
                display: block;
                margin: auto;
            }

    .hamburger-menu {
        display: block;
        position: absolute;
        right: 15px;
        top: 20px;
        display: none;
    }

    .burger-1, .burger-2, .burger-3 {
        display: block;
        position: absolute;
        width: 35px;
        height: 3px;
        right: 0;
        margin-right: 15px;
        background: #fff;
        -webkit-transition: .2s ease;
        -ms-transition: .2s ease;
        -moz-transition: .2s ease;
        -o-transition: .2s ease;
        transition: .2s ease;
    }

    .burger-1 {
        top: 15px;
    }

    .burger-2 {
        top: 23px;
    }

    .burger-3 {
        top: 31px;
    }

        .burger-1.open, .burger-2.open, .burger-3.open {
            -webkit-transition: .2s ease;
            -ms-transition: .2s ease;
            -moz-transition: .2s ease;
            -o-transition: .2s ease;
            transition: .2s ease;
            transform-origin: 50% 50%;
        }

    .burger-1.open {
        top: 25px;
        width: 35px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        background-color: #292656 !important;
    }

    .burger-2.open {
        opacity: 0;
    }

    .burger-3.open {
        top: 25px;
        width: 35px;
        transform: rotate(-45deg);
        background-color: #292656 !important;
    }

    .dropdown {
        width: 100%;
        background: #292656;
        text-align: center;
        position: relative;
    }

    .dropdown2 {
        right: 0;
        top: 0;
        width: 100%;
        position: relative;
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .right-navigation {
        position: absolute;
        right: 0;
        top: 0;
        max-width: 100%;
        padding: 0;
    }

    header .right-navigation ul li a {
        color: #292656 !important;
        text-align: center;
    }

    header .right-navigation .dropdown li a {
        color: #fff !important;
    }

    .color-new {
        color: #fff !important;
    }

    header.sticky .burger {
        background: #ffffff;
    }

    .navigation-sticky {
        padding: 16px 0;
        height: 75px;
    }

    header .logo {
        position: absolute;
        top: 16px;
        left: 5px;
    }

    .global-social, .global-contact {
        margin-top: -50px !important;
    }
}

.bottom-nav {
    z-index: 999999;
    width: 20%;
    position: absolute;
    bottom: 0;
}

    .bottom-nav .container {
        max-width: 100%;
    }

    .bottom-nav.sticky {
        position: fixed;
        top: 0;
        z-index: 999999999;
        padding: 0;
        height: 54px;
    }

    .bottom-nav .bottom-nav-left {
        display: flex;
    }

        .bottom-nav .bottom-nav-left a {
            font-weight: 600;
            font-size: 18px;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            padding: 20px 15px;
            background-color: #B30000;
        }

    .bottom-nav .bottom-nav-right a {
        background-color: #B30000;
        padding: 23px;
    }

    .bottom-nav .bottom-nav-right img {
        max-width: 20px;
    }

    .bottom-nav .bottom-nav-right-location {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .bottom-nav .col-md-6 {
        padding: 0;
    }

.bottom-nav2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    right: 0;
    width: 8%;
}

    .bottom-nav2 .row {
        display: flex;
        justify-content: flex-end;
    }

    .bottom-nav2.sticky {
        top: 8px;
    }

.home {
    background-image: url(/resimler/slider-desktop.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
}

    .home .home-description {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

        .home .home-description h1 {
            font-weight: 700;
            font-size: 40px;
            color: #FFFFFF;
            letter-spacing: 2.67px;
            text-align: center;
        }

        .home .home-description p {
            font-weight: 600;
            font-size: 16px;
            color: #FFFFFF;
            letter-spacing: 0;
            text-align: center;
            max-width: 716px;
            margin: 0 auto;
            line-height: 19px;
            padding: 10px 0 30px;
        }

        .home .home-description a {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px 20px;
            border: 1px solid #fff;
            max-width: 265px;
            margin: 0 auto;
            transition: all 300ms ease-in-out;
        }

            .home .home-description a span {
                font-weight: 500;
                font-size: 14px;
                color: #FFFFFF;
                letter-spacing: -0.09px;
                padding-right: 50px;
            }

            .home .home-description a img {
                max-width: 24px;
            }

            .home .home-description a:hover {
                background-color: #FF0000;
                color: #fff;
                border: 1px solid #FF0000;
            }

@media screen and (max-width: 768px) {
    header .hamburger {
        top: 10px;
    }

    .global-menu__item {
        margin: 5px 0;
        font-size: 20px;
    }

    .global-menu-new-item2 {
        margin-top: -35px;
    }

    .mobile-padding {
        padding-top: 30px !important;
    }

    .global-menu-new-item3 {
        padding-top: 0;
        display: flex;
    }

        .global-menu-new-item3 h6 {
            padding-top: 0;
        }

    .shape-overlays {
        height: 102vh;
    }

    .global-menu .global-menu__wrap2 a {
        font-size: 16px;
    }

    .global-menu-new-item3 .social-item {
        text-align: left !important;
        margin: 5px 0;
    }

    .bottom-nav .bottom-nav-right img {
        min-width: 20px;
    }

    .home .home-description h1 {
        font-size: 34px;
    }

    .bottom-nav {
        width: 45%;
    }

    .bottom-nav {
        display: none;
    }

    .home .home-description {
        width: 90%;
    }
}

.video {
    padding: 100px 0;
}

.video2 {
    padding: 100px 0 30px;
}

.video .video-bg {
    background-image: url(/images/video-bg1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-position: center center;
    width: 100%;
    height: 40vh;
    position: relative;
}

.video .video-bg2 {
    background-image: url(/images/video-bg2.jpg);
}

.video .video-bg:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #FF0000;
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    z-index: -1;
}

.video .video-bg {
    position: relative;
    z-index: 2;
}

.video .video-left img {
    max-width: 48px;
    margin: 0 auto;
}

.video .video-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 40vh;
}

    .video .video-left .video-modal {
        width: 100%;
        max-width: 80%;
        border: 5px solid #fff;
        padding: 120px;
    }

.video .video-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}

    .video .video-right h2 {
        font-weight: 700;
        font-size: 24px;
        color: #FFFFFF;
        letter-spacing: 1.6px;
        text-align: right;
        max-width: 375px;
    }

.video .video-bg2 .video-left {
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .video {
        padding: 70px 0;
    }

        .video .video-bg {
            height: 70vh;
        }

        .video .video-left .video-modal {
            margin: 50px auto 0;
        }

        .video .video-right {
            height: auto;
        }

            .video .video-right h2 {
                text-align: left;
                padding: 70px 30px 0;
            }

        .video .video-left img {
            min-width: 40px;
        }
}

.services .col-md-3 {
    padding: 0;
}

.services .services-item {
    position: relative;
}

    .services .services-item img {
        padding: 1.5px;
    }

    .services .services-item .services-item-description {
        position: absolute;
        bottom: 40px;
        left: 40px;
    }

        .services .services-item .services-item-description h6 {
            font-weight: 700;
            font-size: 16px;
            color: #FFFFFF;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(0,0,0,0.50);
        }

        .services .services-item .services-item-description p {
            /*font-weight: 400;*/
            /*font-size: 13px;*/
            color: #FFFFFF;
            letter-spacing: 0.32px;
            text-shadow: 0 0 10px rgba(0,0,0,0.50);
            /*line-height: 16px;*/
            /*max-width: 280px;*/
            padding-top: 10px;
        }

@media screen and (max-width: 768px) {
    .video .video-bg2 .video-left .video-modal {
        padding: 80px 120px;
    }
}

.links .links-item {
    padding: 40px 0 100px;
}

    .links .links-item a {
        display: flex;
        justify-content: center;
        background-color: #fff;
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
        padding: 25px 40px;
    }

        .links .links-item a span {
            font-weight: 700;
            font-size: 16px;
            color: #333333;
            letter-spacing: 1px;
            padding-right: 60px;
        }

        .links .links-item a img {
            max-width: 28px;
        }

@media screen and (max-width: 768px) {
    .links .links-item {
        padding: 0;
        margin-bottom: 10px;
    }

    .links {
        padding-bottom: 50px;
    }
}

.blog {
    background-image: url(/images/blog-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: relative;
    padding: 150px 0;
}

    .blog .blog-left p {
        font-weight: 400;
        font-size: 28px;
        color: #FFFFFF;
        letter-spacing: 0;
        max-width: 275px;
        line-height: 34px;
        padding-bottom: 30px;
    }

    .blog .blog-left a {
        display: flex;
    }

        .blog .blog-left a span {
            font-weight: 800;
            font-size: 16px;
            color: #FFFFFF;
            letter-spacing: 0.4px;
            padding-right: 15px;
        }

        .blog .blog-left a img {
            max-width: 20px;
        }

    .blog .blog-lef-items {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blog .blog-slider .blog-slider-item-description {
        background-color: #fff;
        padding: 30px;
    }

        .blog .blog-slider .blog-slider-item-description h6 {
            font-weight: 700;
            font-size: 16px;
            color: #414042;
            letter-spacing: 0;
        }

        .blog .blog-slider .blog-slider-item-description p {
            font-weight: 400;
            font-size: 14px;
            color: #414042;
            letter-spacing: 0;
            line-height: 18px;
            padding: 10px 0 25px;
        }

        .blog .blog-slider .blog-slider-item-description a {
            display: flex;
        }

            .blog .blog-slider .blog-slider-item-description a span {
                font-weight: 400;
                font-size: 13px;
                color: #DE1F26;
                letter-spacing: 0.32px;
                padding-right: 10px;
            }

            .blog .blog-slider .blog-slider-item-description a img {
                max-width: 16px;
            }

    .blog .blog-slider {
        margin-right: -200px;
    }

@media screen and (max-width: 768px) {
    .blog {
        padding: 80px 0;
    }

        .blog .blog-left {
            padding-bottom: 50px;
        }

        .blog .blog-slider {
            margin: 0;
        }
}

.contact {
    padding: 100px 0;
    background-color: #F5F5F5;
}

    .contact .contact-item h4 {
        font-weight: 700;
        font-size: 28px;
        color: #000000;
        letter-spacing: 0.7px;
    }

    .contact .contact-item p {
        font-weight: 400;
        font-size: 14px;
        color: #000000;
        letter-spacing: 0;
        max-width: 425px;
        padding: 15px 0 90px;
        line-height: 18px;
    }

    .contact .contact-item {
        padding: 50px;
        background-color: #fff;
        height: 100%;
    }

    .contact form {
        display: flex;
    }

        .contact form input {
            border: 1px solid #909090;
            background-color: transparent;
            padding: 6px 20px;
        }

::placeholder {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    color: #414042;
    letter-spacing: 0.35px;
}

.contact form .form-button button {
    display: flex;
    background-color: #A3131D;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.35px;
    padding: 7px 20px;
}

    .contact form .form-button button img {
        max-width: 20px;
        padding-top: 10px;
    }

    .contact form .form-button button span {
        padding-right: 30px;
    }

.contact form .form-button {
    padding-left: 20px;
}

.contact .form2 {
    display: block;
}

    .contact .form2 .form-item2 input {
        width: 100%;
        margin-bottom: 9px;
    }

    .contact .form2 button {
        width: 100%;
    }

        .contact .form2 button span {
            padding-right: 70px !important;
        }

.contact .contact-right h4 {
    padding-bottom: 35px;
}

.references {
    background-color: #fff;
    padding: 50px;
    margin-top: 30px;
}

    .references .references-title {
        position: relative;
    }

        .references .references-title h6 {
            font-weight: 700;
            font-size: 21px;
            color: #414042;
            letter-spacing: 0.52px;
            font-family: 'Playfair Display', serif;
        }

        .references .references-title:after {
            position: absolute;
            content: '';
            width: 80%;
            height: 1px;
            right: 0;
            bottom: 0;
            background-color: #000000;
        }

    .references .references-items {
        padding-top: 35px;
    }

    .references .references-item {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .references .references-item img {
            max-width: 120px;
        }

@media screen and (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

        .contact .contact-item p {
            padding-bottom: 50px;
        }

        .contact form {
            display: block;
        }

            .contact form .form-button {
                padding: 20px 0 0;
            }

        .contact .form2 .form-button {
            padding: 20px 0 0 16px;
        }

        .contact .form2 button {
            width: 70%;
        }

    .references .references-title:after {
        width: 35%;
    }

    .references .references-item {
        padding: 30px;
    }

    .contact .form2 button span {
        padding-right: 50px !important;
    }
}

footer {
    position: relative;
}

    footer .footer-top {
        background-color: #FF0000;
        padding: 25px 0;
    }

        footer .footer-top img {
            max-width: 210px;
        }

    footer .footer-social-items {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    footer .footer-social a {
        font-size: 22px;
        color: #fff;
        padding-left: 20px;
    }

    footer .footer-center {
        background-color: #333333;
        padding: 50px 0;
    }

        footer .footer-center .footer-center-item h6 {
            font-weight: 800;
            font-size: 14px;
            color: #FFFFFF;
            letter-spacing: 0.35px;
            line-height: 21px;
        }

        footer .footer-center .footer-center-item p {
            font-weight: 400;
            font-size: 11px;
            color: #FFFFFF;
            letter-spacing: 0;
            line-height: 16px;
        }

        footer .footer-center .footer-center-item h3, footer .footer-center .footer-center-item a {
            font-weight: 500;
            font-size: 14px;
            color: #FFFFFF;
            letter-spacing: 0.35px;
            line-height: 21px;
        }

        footer .footer-center .footer-center-item-newsletter p {
            padding-bottom: 20px;
            font-weight: 500;
            font-size: 14px;
            color: #F5F5F5;
            letter-spacing: 0.35px;
            line-height: 21px;
        }

        footer .footer-center .footer-center-item-newsletter form {
            position: relative;
        }

            footer .footer-center .footer-center-item-newsletter form input {
                width: 100%;
                background-color: transparent;
                border-bottom: 1px solid #fff;
                width: 100%;
                padding-bottom: 10px;
            }

                footer .footer-center .footer-center-item-newsletter form input::placeholder {
                    font-weight: 300;
                    font-style: italic;
                    font-size: 14px;
                    color: #909090;
                    letter-spacing: 0.35px;
                    line-height: 21px;
                }

            footer .footer-center .footer-center-item-newsletter form .form-item2 {
                position: absolute;
                top: 0;
                right: 0;
            }

                footer .footer-center .footer-center-item-newsletter form .form-item2 button {
                    background-color: transparent;
                }

    footer .footer-bottom {
        background-color: #333333;
        padding: 15px 0;
    }

        footer .footer-bottom p {
            font-weight: 500;
            font-size: 14px;
            color: #F5F5F5;
            letter-spacing: 0.35px;
        }

    footer .footer-bg {
        position: absolute;
        bottom: 0;
        right: 0;
        max-width: 60%;
    }

.footer-center a:hover {
    color: #fff !important;
}

.footer-center-item {
    line-height: 21px;
}

@media screen and (max-width: 768px) {
    footer .footer-social a {
        font-size: 20px;
        padding-left: 10px;
    }

    footer .footer-center .footer-center-item {
        text-align: center;
        padding-bottom: 30px;
    }

    footer .footer-center .footer-center-item-newsletter form {
        max-width: 80%;
        margin: 0 auto;
    }

    footer .footer-bottom .footer-bottom-item {
        text-align: center !important;
        padding: 5px 0;
    }

    footer .footer-bg {
        max-width: 100%;
    }
}

.alt-bg {
    background-image: url(/images/alt-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 40vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .alt-bg h1 {
        font-weight: 700;
        font-size: 40px;
        color: #FFFFFF;
        letter-spacing: 2.67px;
        text-align: center;
    }

.about-page .about-page-top {
    max-width: 80%;
    margin: 0 auto;
    padding: 90px 0;
}

    .about-page .about-page-top .about-page-top-left, .about-page .about-page-top .about-page-top-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .about-page .about-page-top .about-page-top-left h2 {
            font-weight: 700;
            font-size: 36px;
            color: #000000;
            letter-spacing: 2.4px;
            text-align: right;
        }

        .about-page .about-page-top .about-page-top-right p {
            font-weight: 600;
            font-size: 16px;
            color: #414042;
            letter-spacing: 0;
            line-height: 19px;
        }

.about-page .about-page-bottom {
    background-color: #F5F5F5;
    padding: 50px;
}

    .about-page .about-page-bottom .about-page-bottom-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .about-page .about-page-bottom .about-page-bottom-left p {
            font-weight: 500;
            font-size: 14px;
            color: #414042;
            letter-spacing: 0;
            line-height: 18px;
            padding-bottom: 15px;
        }

.about-page2 .about-page-top {
    max-width: 60%;
}

.about-page-top-left-description a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    border: 1px solid #333333;
    max-width: 205px;
    margin-top: 30px;
    transition: all 300ms ease-in-out;
}

    .about-page-top-left-description a span {
        font-weight: 500;
        font-size: 14px;
        color: #333333;
        letter-spacing: -0.09px;
        padding-right: 50px;
    }

    .about-page-top-left-description a img {
        max-width: 24px;
    }

.about-page2 {
    padding-bottom: 90px;
}

.about-form {
    background-image: url(/images/blog-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: relative;
    padding: 120px 0;
}

    .about-form .about-form-title h2 {
        font-weight: 700;
        font-size: 28px;
        color: #FFFFFF;
        letter-spacing: 0.7px;
        padding-bottom: 30px;
    }

.bayi-form {
    padding-top: 30px;
}

    .bayi-form .form-item {
        padding-bottom: 20px;
    }

    .bayi-form input {
        width: 100%;
        padding: 8px 20px;
    }

        .bayi-form input::placeholder {
            font-weight: 400;
            font-style: italic;
            font-size: 14px;
            color: #909090;
            letter-spacing: 0.35px;
        }

    .bayi-form button {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 20px;
        transition: all 300ms ease-in-out;
        background-color: #FF0000;
        width: 100%;
    }

        .bayi-form button span {
            font-weight: 500;
            font-size: 14px;
            color: #fff;
            letter-spacing: -0.09px;
            padding-right: 130px;
        }

        .bayi-form button img {
            max-width: 24px;
        }

.about-sertifikalar {
    padding: 100px 0;
}

    .about-sertifikalar .about-sertifikalar-title h2 {
        font-weight: 700;
        font-size: 28px;
        color: #333333;
        letter-spacing: 0.7px;
        padding-bottom: 40px;
    }

@media screen and (max-width: 768px) {
    .alt-bg h1 {
        padding-top: 50px;
    }

    .about-page .about-page-top {
        max-width: 100%;
        padding: 50px 0;
    }

        .about-page .about-page-top .about-page-top-left, .about-page .about-page-top .about-page-top-right {
            justify-content: flex-start;
        }

            .about-page .about-page-top .about-page-top-left h2 {
                padding-bottom: 10px;
            }

    .about-page .about-page-bottom {
        padding: 30px 20px;
    }

    .about-page-top-left-description a {
        margin: 30px 0;
    }

    .about-page2 {
        padding-bottom: 50px;
    }

    .about-form {
        padding: 70px 0;
    }

    .about-sertifikalar {
        padding: 50px 0;
    }

        .about-sertifikalar .about-sertifikalar-title h2 {
            padding-bottom: 20px;
        }

        .about-sertifikalar .col-md-2 {
            margin-bottom: 20px;
        }
}

.urun-details {
    padding: 60px 0;
}

    .urun-details .urun-left-menu {
        background-color: #fff;
        box-shadow: 0 0 30px rgba(0,0,0,0.05);
    }

        .urun-details .urun-left-menu h6 {
            font-weight: 700;
            font-size: 14px;
            color: #FF0000;
            letter-spacing: -0.09px;
            padding: 12px 0 12px 20px;
        }

        .urun-details .urun-left-menu ul li {
            padding: 6px 30px;
        }

            .urun-details .urun-left-menu ul li a {
                font-weight: 700;
                font-size: 18px;
                color: #333333;
                letter-spacing: -0.09px;
                text-transform: capitalize;
            }

.urun-details-right {
    padding: 40px 50px;
    background-color: #F5F5F5;
}

    .urun-details-right .urun-details-right-title h3 {
        font-weight: 700;
        font-size: 30px;
        color: #333333;
        letter-spacing: -0.14px;
        padding-bottom: 30px;
    }

.urun-active {
    background-color: #F5F5F5;
    border-bottom: 3px solid #A3131D;
}

    .urun-active a {
        color: #A3131D !important;
        font-weight: 700 !important;
    }

.katalog-button {
    padding-top: 10px;
}

    .katalog-button a {
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 30px rgba(0,0,0,0.05);
        padding: 25px;
    }

        .katalog-button a span {
            font-weight: 700;
            font-size: 16px;
            color: #333333;
            letter-spacing: 1px;
            padding-right: 90px;
        }

        .katalog-button a img {
            max-width: 28px;
        }

.swiper-container {
    height: 336px;
}

.swiper-slide {
    overflow: hidden;
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
}

.urun-details-slider {
    position: relative;
}

    .urun-details-slider .swiper-container:after {
        position: absolute;
        content: '';
        height: 100%;
        width: 54px;
        background-color: #A3131D;
        left: 0;
        top: 0;
        z-index: 1;
        mix-blend-mode: multiply;
    }

    .urun-details-slider .swiper-container:before {
        position: absolute;
        content: '';
        height: 100%;
        width: 54px;
        background-color: #A3131D;
        right: 0;
        top: 0;
        z-index: 2;
        mix-blend-mode: multiply;
    }

.swiper-button-next {
    background-image: url(/images/svg/urun-slide-right.svg) !important;
}

.swiper-button-prev {
    background-image: url(/images/svg/urun-slide-left.svg) !important;
}

.swiper-button-next, .swiper-button-prev {
    width: 14px;
    height: 22px;
    background-size: 14px 22px;
    z-index: 2;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 17px;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 17px;
}

.urun-details-right-description {
    padding: 50px 0 30px;
}

    .urun-details-right-description p {
        font-weight: 500;
        font-size: 16px;
        color: #414042;
        letter-spacing: 0;
        line-height: 22px;
        padding-bottom: 20px;
    }

    .urun-details-right-description h6 {
        font-weight: 700;
        padding-bottom: 10px;
        font-size: 16px;
        color: #414042;
    }

@media screen and (max-width: 768px) {
    .katalog-button {
        padding: 10px 0 30px;
    }

    .urun-details-right {
        padding: 30px 20px;
    }
}

.-hide {
    display: none;
}

#level {
    display: none;
}

.-hide, .filter-input {
    display: none;
}

.subeler {
    padding: 60px 0;
}

.filter-top select {
    width: 100%;
    padding: 8px 25px;
    background-color: #fff;
    font-size: 14px;
    color: #7C7C7C;
    letter-spacing: 0;
    box-shadow: 0 0 40px rgba(0,0,0,0.1)
}

.after-icon:after {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    background-image: url(/images/svg/select-icon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 10px;
    width: 17px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 2px 30px 2px 2px;
    border: none;
}

.subeler-items {
    padding-top: 60px;
}

    .subeler-items .col-md-4 {
        margin-bottom: 30px;
    }

    .subeler-items .item-description {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
        width: 100%;
    }

        .subeler-items .item-description .location img {
            max-width: 28px;
            margin: 0 auto;
            padding-bottom: 20px;
        }

        .subeler-items .item-description .location a {
            font-weight: 400;
            font-size: 13px;
            color: #FFFFFF;
            letter-spacing: 0;
            text-align: center;
            background-color: #333333;
            padding: 12px 45px;
        }

.-title {
    font-weight: 800;
    font-size: 14px;
    color: #A3131D;
    letter-spacing: -0.09px;
    text-align: center;
    padding: 50px 0 10px;
    text-transform: uppercase;
    line-height: 20px;
}

.subeler-items .item-description .location2 img {
    max-width: 18px;
    margin: 0 auto;
}

.subeler-items .item-description .-address {
    font-weight: 500;
    font-size: 13px;
    color: #333333;
    letter-spacing: -0.08px;
    text-align: center;
    line-height: 18px;
    padding: 10px 0 20px;
    text-transform: capitalize;
}

.subeler-items .item-description .phone-icon img {
    max-width: 18px;
    margin: 0 auto;
}

.subeler-items .item-description .tel {
    font-weight: 500;
    font-size: 13px;
    color: #333333;
    letter-spacing: -0.08px;
    text-align: center;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    .subeler-items {
        padding-top: 10px;
    }

    .filter-top select {
        margin-bottom: 20px;
    }

    .subeler-items .col-md-4 {
        margin-bottom: 20px;
    }
}

.galeri {
    padding: 60px 0;
}

    .galeri button {
        font-weight: 400;
        font-size: 13px;
        color: #414042;
        letter-spacing: 0.32px;
        background-color: transparent;
        padding-left: 20px;
    }

    .galeri .mixitup-control-active {
        font-weight: 700;
    }

    .galeri .mix {
        padding: 10px;
    }

    .galeri ul.container {
        list-style-type: none;
        margin: 0px;
    }

    .galeri li {
        display: inline-block;
    }

    .galeri ul li img {
        min-height: 100%;
        object-fit: cover;
    }

@media screen and (max-width: 768px) {
    .galeri {
        padding: 40px 0;
    }

        .galeri button {
            background-color: #fafafa;
            margin-bottom: 10px;
        }

        .galeri nav {
            text-align: center;
        }
}

.contact-bg {
    background-image: url(/images/map-page-bg.jpg);
    padding-top: 50px;
}

    .contact-bg .contact-button {
        padding-top: 100px;
    }

    .contact-bg .location-icon img {
        max-width: 29px;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .contact-bg .location-button {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #FF0000;
        padding: 5px 25px;
        min-width: 295px;
    }

        .contact-bg .location-button span {
            font-weight: 500;
            font-size: 14px;
            color: #FFFFFF;
            letter-spacing: -0.09px;
            padding-right: 80px;
        }

        .contact-bg .location-button img {
            max-width: 22px;
        }

.contact-bottom {
    background-image: url(/images/contact-bottom-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: relative;
    padding: 80px 0;
}

    .contact-bottom .contact-bottom-item h2 {
        font-weight: 700;
        font-size: 28px;
        color: #FFFFFF;
        letter-spacing: 0.7px;
        padding-bottom: 20px;
    }

    .contact-bottom .contact-bottom-item p {
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
        letter-spacing: 1px;
        line-height: 22px;
    }

@media screen and (max-width: 768px) {
    .contact-bg .contact-button {
        padding-top: 20px;
    }

    .contact-bottom-item {
        text-align: center !important;
        margin-bottom: 30px;
    }

    .contact-bottom .contact-bottom-item h2 {
        padding-bottom: 10px;
    }

    .contact-bottom {
        padding: 50px 0;
    }

    #demo-test-gallery {
        padding: 0 15px;
    }
}

.new-sartname a {
    padding: 10px 30px;
    background-color: #fff;
}

.new-product-page .new-product-page-item {
    position: relative;
    margin-bottom: 20px;
}

    .new-product-page .new-product-page-item .new-product-page-item-description {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 15px;
        width: 100%;
        text-align: center;
    }

        .new-product-page .new-product-page-item .new-product-page-item-description:after {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            bottom: 0;
            left: 0;
            mix-blend-mode: multiply;
            background-color: #A3131D;
        }

        .new-product-page .new-product-page-item .new-product-page-item-description h6 {
            position: relative;
            z-index: 2;
            font-weight: 700;
            font-size: 16px;
            color: #fff;
        }

/*==================================
             SWIPER
===================================*/
/* remove styles from the list */
ul.swiper-wrapper {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Swiper styles */
.swiper-container {
    max-width: 100%;
}

.swiper-slide {
    text-align: center;
    /* remove this if you want 1 slide perview - than change slidesPerView js-option to 1 instead of auto */
    /* width: 100%; */
}

.swiper-pagination-bullet {
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    font-size: 14px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: black;
}

#docs h3 {
    margin-bottom: 0px;
    webkit-margin-after: 0em;
}

#docs ol li:not(:first-of-type) {
    border-top: thin solid rgba(203, 202, 204, 1);
}

#docs p {
    -webkit-margin-before: 1em;
    line-height: 22px;
    font-size: 0.9em;
}

code {
    padding: 0;
    padding: 3px 5px;
    margin: 0;
    background: #f2f2f2;
    border-radius: 2px;
}


.new-product-page-item-img img {
    max-height: 230px;
    min-height: 230px;
    object-fit: cover;
}


.language {
    position: absolute;
    right: 192px;
    top: 20px;
    cursor: pointer;
    text-align: center;
    z-index: 99;
}

    .language .language-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .language .language-menu img {
            max-width: 14px;
        }

        .language .language-menu span, .language a {
            font-weight: 700;
            font-size: 14px;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            text-align: right;
            padding-right: 5px;
        }

    .language a {
        color: #fff;
        background-color: #FF0000;
        padding: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }

.language-hover {
    display: none;
}

.language:hover .language-hover {
    display: inline-grid;
    text-align: center;
    padding-top: 20px;
}

.language-menu2 span {
    color: #333333 !important;
}

header.sticky .language .language-menu span {
    color: #333333
}


@media screen and (max-width: 768px) {
    .language {
        right: -105px;
        top: 25px;
    }
}




.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 5px;
    right: 80px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    box-shadow: 0 0 30px rgba(0,0,0,0.1)
}

.my-float {
    margin-top: 16px;
}

.float:hover {
    color: #c5c5c5;
}



@media screen and (max-width: 768px) {
    .float {
        width: 50px;
        height: 50px;
        right: 25px;
    }

    .my-float {
        margin-top: 10px;
    }
}
