/*-----------------------------------------------------------------------------
    * Website Style
    * @author: Hasan YUKSEL
----------------------------------------------------------------------------- */
@import url('font.css');

* {
    outline: none;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}


h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: inherit;
    font-size: inherit;
}

body {
    overflow-x: hidden;
}


html, body, form {
    height: 100%;
    background-color: #fdfdf8 !important;
    font-family: 'Museo Sans Cyrl', sans-serif;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    float: left;
    width: 100%;
}

header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, .7);
    z-index: 1;
    border-bottom: 2px solid rgba(140, 56, 114, .7);
    padding: 15px 0;
}

form {
    background: transparent;
}

.scrollTop {
    display: block;
    width: auto;
    height: auto;
    position: fixed;
    right: 20px;
    top: auto;
    z-index: 99;
    bottom: 90px;
    cursor: pointer;
    font-size: 18px;
    transition: all 300ms;
    width: 44px;
    text-align: center;
    height: 44px;
    line-height: 44px;
    background: #8c3872;
    border-radius: 50%;
    color: #fff;
}

    .scrollTop.animatedIn {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: bounceInRight;
        animation-name: bounceInRight;
    }


    .scrollTop.animatedOut {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: bounceOutRight;
        animation-name: bounceOutRight;
    }

.revealOnScroll {
    opacity: 0;
}

.animated {
    opacity: 1;
}



.header .logo {
    align-items: center;
    display: flex;
    height: 100%;
}

.header .menu {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    font-family: 'From Where You Are';
}

    .header .menu nav {
        width: 100%;
    }
    .header .menu ul li.language > ul {
        width: 100%;
        padding-top: 0;
    }

    .header .menu ul li.language > ul li a {
        background: rgba(140, 56, 114, .5);
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 0;
        border: 0;
        transition: all 500ms ease;
        color: #fff;
    }

    .header .menu ul li.language > a {
        background: hsl(319, 43%, 38%);
        padding-top: 8px;
        padding-bottom: 8px;
        color: #fff !important;
    }

    .header .menu ul li.language > ul li a:hover {
        background: hsl(319, 43%, 38%);
    }
    .header .menu ul {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .header .menu ul li {
            float: left;
            display: inline-block;
            position: relative;
        }
        .header .menu ul li > ul {
            position: absolute;
            left: 0;
            top: 100%;
            display: none;
            width: 250px;
            padding-top: 34px;
        }

        .header .menu ul li > ul li {
            width: 100%;
        }

        .header .menu ul li > ul li a {
            width: 100%;
            display: inline-block;
            float: left;
            padding-top: 7.5px;
            padding-bottom: 7.5px;
            /* color: #fff; */
            border-bottom: 1px solid #8c3872;
            background: rgba(255, 255, 255, .7);
        }

        .header .menu ul li > ul li:last-child a {
            border-bottom: 0;
        }

        .header .menu ul li > ul li a:Hover {
            background: #ab2a34;
            color: #fff;
        }
            .header .menu ul li a {
                float: left;
                color: #8c3872;
                font-size: 14px;
                padding: 20px 8px;
                font-weight: 500;
                text-decoration: none;
                transition: all 500ms ease;
            }

            .header .menu ul li:last-child a {
            }

            .header .menu ul li a:hover {
                color: #bd1723;
            }
/*------------------------------------------ banner style ------------------------------------------*/
.banner {
    float: left;
    width: 100%;
    display: inline-block;
    position: relative;
}

    .banner.homepage .carousel-item {
        -webkit-transition: all 1.5s !important;
        -moz-transition: all 1.5s !important;
        -o-transition: all 1.5s !important;
        transition: all 1.5s !important;
        height: 100%;
    }

.homepage.banner .carousel-caption {
    right: 0;
    left: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

    .homepage.banner .carousel-caption .carousel-item {
        height: 100%;
    }

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1.5s;
    transition-property: opacity;
}

    .carousel-fade .carousel-item.active,
    .carousel-fade .carousel-item-next.carousel-item-left,
    .carousel-fade .carousel-item-prev.carousel-item-right {
        opacity: 1;
    }

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}




.homepage.banner .carousel-caption .carousel-text-wrap {
    display: table;
    width: 100%;
    height: 100%;
    float: left;
}

    .homepage.banner .carousel-caption .carousel-text-wrap .verMid {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
    }

        .homepage.banner .carousel-caption .carousel-text-wrap .verMid .wrapper {
            text-align: right;
        }

.homepage.banner .carousel-item > img,
.homepage.banner .carousel-item > a > img {
    width: 100%;
    height: 100%;
    display: inline-block;
    object-fit: cover;
}

.banner.homepage .carousel {
    display: inline-block;
    width: 100%;
    float: left;
    height: 100%;
}

    .banner.homepage .carousel .carousel-inner {
        display: inline-block;
        float: left;
        height: 100%;
    }
/*------------------------------------------ banner style ------------------------------------------*/
.section.section-1 {
    background: #fcfcf2;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #f1e6ee;
    padding: 60px 0;
}

.section {
    padding: 40px 0;
    display: inline-block;
    float: left;
    width: 100%;
}

.section-wrapper {
    width: 100%;
    display: inline-block;
    float: left;
    padding-right: 90px;
}

.section .img {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 30px;
}

    .section .img img {
        max-width: 90%;
    }

.section .text {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    color: #8c3872;
    font-size: 18px;
}

.section .text-font {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #8c3872;
    font-size: 36px;
    font-family: 'Arima Koshi';
}
.section .text-font.font-2 {
    font-family: 'From Where You Are';
    font-size: 20px;
}
.section .image-box {
    width: 100%;
}

    .section .image-box img {
        width: 100%;
    }

.section-2 .image-box a {
    width: 100%;
    display: inline-block;
    float: left;
    position: relative;
    transition: all 500ms ease;
}

.section-2 .image-box .title-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

    .section-2 .image-box .title-image img {
        width: auto;
        max-width: 75%;
    }

.section-2 > .container > .row > div:first-child .image-box {
    padding-right: 35px;
}

.section-2 > .container > .row > div:last-child .image-box {
    padding-left: 35px;
}

.section.section-2 {
    padding: 120px 0;
    background: #f7f7f7;
}

.section.section-3 {
    padding: 0;
}

.section.section-4 {
    padding: 80px 0;
}

    .section.section-4 .item a {
        width: 90%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
        text-decoration: none;
        font-family: 'raustila';
        font-family: 'From Where You Are';
        background: #fcfcf2;
        padding: 20px 0;
        margin: 0 auto;
        transition: all 500ms ease;
    }

        .section.section-4 .item a .img_box {
            display: inline-block;
            width: 100%;
            text-align: center;
        }

        .section.section-4 .item a .title-box {
            width: 100%;
            display: inline-block;
            text-align: center;
            float: left;
            color: #8c3872;
            font-size: 30px;
            margin-top: 15px;
        }

footer {
    width: 100%;
    display: inline-block;
    float: left;
    background: #ffffff;
    padding: 60px 0px;
}

.footer-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    float: left;
    flex-wrap: wrap;
}

    .footer-container .logo {
        width: 300px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .footer-container .footer-menu {
        flex: 1 0 0;
        display: flex;
        justify-content: space-between;
        float: left;
    }

    .footer-container .footer-menu .item {
            list-style-type: none;
            padding: 0;
            margin: 0;
            padding: 0 20px;
            flex: 1 0 0;
            background: url("../images/general/footer-list-border.png");
            background-position: left center;
            background-repeat: no-repeat;
            background-size: 1px;
            display: flex;
            align-content: space-between;
            flex-wrap: wrap;
        }
.footer-container .footer-menu .item > .icon {
    width: 100%;
    display: inline-block;
    text-align: center;
    float: left;
    margin-bottom: 30px;
}

.footer-container .footer-menu .item > .text {
    width: 100%;
    display: inline-block;
    text-align: center;
    float: left;
    color: #636363;
    font-size: 15px;
    font-weight: 300;
}

.footer-container .footer-menu .item > .text > * {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.footer-container .footer-menu .item > .text > b {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}
        .footer-container .footer-menu .item li:First-child {
                color: #8c3872;
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .footer-container .footer-menu .item li a {
                color: #8c3872;
                width: 100%;
                display: inline-block;
                float: left;
                font-weight: 300;
                font-size: 18px;
                text-decoration: none;
                transition: all 500ms ease;
            }

            .footer-container .footer-menu .item li {
                width: 100%;
                display: inline-block;
                float: left;
                margin-bottom: 10px;
            }

            .footer-container .footer-menu .item li a:hover {
                    color: #bd1723;
                }

.section.section-4 .item a:hover {
    box-shadow: 0 1px 10px 0px rgba(0, 0, 0, .10);
}

.section-2 .image-box a:hover {
    transform: translateY(-15px);
}

.section .social-title {
    width: 100%;
    display: inline-block;
    float: left;
    text-align: center;
    font-family: 'raustila';
    font-family: 'From Where You Are';
    color: #8c3872;
    font-size: 32px;
}

.section .social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    list-style-type: none;
    padding: 0;
    margin: 40px 0;
}

.section .social li {
    float: left;
    display: inline-block;
    margin: 0 15px;
}

    .section .social li a img {
        transition: all 500ms ease;
    }

    .section .social li a:Hover img {
    filter: grayscale(100%);
    opacity: .4;
    }

    .section .font-title {
        width: 100%;
        display: inline-block;
        float: left;
        color: #8c3872;
        font-size: 38px;
        font-family: 'Billgates';
        margin-bottom: 10px;
    }
    
    .about-us-container .section .text {
        text-align: left;
        font-size: 16px;
    }
    
    .about-us-container .section {
        padding: 20px 0;
    }
    
    .about-us-container {
        padding: 30px 0;
        width: 100%;
        display: inline-block;
        float: left;
    }
    
.products-container .products-wrapper {
    width: 100%;
    display: inline-block;
    float: left;
}
.products-container .products-wrapper .left-wrapper {
    width: 100%;
    display: inline-block;
    float: left;
    padding-top: 10px;
    font-family: 'From Where You Are';
}

.products-container .products-wrapper .left-wrapper ul {
    width: 100%;
    display: inline-block;
    float: left;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

.products-container .products-wrapper .left-wrapper ul li {
    float: left;
    width: 100%;
    display: inline-block;
    margin: 2px 0;
}

.products-container .products-wrapper .left-wrapper ul li a {
    width: 100%;
    display: inline-block;
    float: left;
    background: #f6f6f6;
    text-decoration: none;
    transition: all 500ms ease;
    text-align: center;
    padding: 10px 10px;
    font-weight: 300;
    color: #a7a9ac;
    font-size: 21px;
}

.products-container .products-wrapper .left-wrapper ul li a:Hover, .products-container .products-wrapper .left-wrapper ul li.active > a {
    color: #8c3872;
}

.products-container .products-wrapper .left-wrapper ul li:first-child a {
}

.products-container .products-wrapper .left-wrapper ul li:first-child {
    margin-top: 0;
}

.products-container .products-wrapper .left-wrapper ul li:last-child {
    margin-bottom: 0;
}

.products-container .products-wrapper .left-wrapper ul:last-child {
    margin-bottom: 0;
}

.products-container .products-wrapper .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

.products-container .products-wrapper .container-fluid .row {
    margin-left: -10px;
    margin-right: -10px;
}

.products-container .products-wrapper > .container-fluid > .row > div {
    padding-left: 10px;
    padding-right: 10px;
}

.products-container .products-wrapper .right-wrapper {
    width: calc(100% + 10px);
    display: flex;
    float: left;
    padding-top: 10px;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -5px;
}

.products-container .products-wrapper .right-wrapper .item {
    width: calc(50% - 10px);
    margin: 5px 5px;
    position: relative;
    overflow: hidden;
}

.products-container .products-wrapper .right-wrapper .item > a {
    width: 100%;
    height: 100%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: space-between;
    flex-wrap: wrap;
    padding: 30px 30px;
}
.products-container .products-wrapper .right-wrapper .item .title-container {
    width: 100%;
    display: inline-block;
    text-align: center;
    float: left;
    margin-bottom: 30px;
}

.products-container .products-wrapper .right-wrapper .item .image-container {
    width: 100%;
    display: inline-block;
    text-align: center;
    float: left;
}

.products-container .products-wrapper .right-wrapper .item .image-container .icon {
    margin-top: 30px;
    width: 100%;
    display: inline-block;
    float: left;
}

.products-container .products-wrapper .right-wrapper .item .image-container .img {
    width: 100%;
    display: inline-block;
    float: left;
    text-align: center;
}

.products-container .products-wrapper .right-wrapper .item .image-container .img img {
    max-width: 100%;
    display: inline-block;
}

.products-container .products-wrapper .right-wrapper .item .title-container .title {
    width: 100%;
    display: inline-block;
    float: left;
    color: #000000;
    font-size: 60px;
    font-weight: 300;
    line-height: 60px;
}

.products-container .products-wrapper .right-wrapper .item .title-container .subtitle {
    color: #6d6e71;
    font-weight: 300;
    font-size: 30px;
    width: 100%;
    display: inline-block;
    float: left;
    margin-bottom: 25px;
}

.products-container .products-wrapper .right-wrapper .item .title-container .read-more {
    display: block;
    margin: 0 auto;
    text-decoration: underline;
    color: #000;
    font-size: 18px;
    font-weight: 300;
}
.products-container .products-wrapper .right-wrapper .item .hover-container {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    border: 1px solid #f6f6f6;
    padding: 50px 25px;
    height: 100%;
    width: 100%;
    transition: all 550ms ease;
    transform: translateY(100%);
    opacity: 0;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .title-container {
    margin-bottom: 20px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text {
    width: 100%;
    display: inline-block;
    float: left;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .info-title {
    width: 100%;
    display: inline-block;
    float: left;
    color: #000000;
    font-size: 22px;
    font-weight: 100;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .txt {
    width: 100%;
    display: inline-block;
    float: left;
    color: #000000;
    font-size: 19px;
    font-weight: 100;
    line-height: 24px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .list {
    width: 100%;
    display: inline-block;
    float: left;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin: 20px 0;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .bg {
    width: 100%;
    display: inline-block;
    float: left;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    z-index: 1;
    height: 35%;
}
.products-container .products-wrapper .right-wrapper .item .hover-container .text .bg img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
}
.products-container .products-wrapper .right-wrapper .item .hover-container .text .list li {
    float: left;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 17px;
    color: #000;
    font-weight: 300;
    padding: 3px 0;
    border-bottom: 1px solid #ddd;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .list li span {
    min-width: 180px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .list li b {
    font-weight: 600;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text > * {
    position: relative;
    z-index: 2;
}
.products-container .products-wrapper .right-wrapper .item .hover-container .close-button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px;
    z-index: 3;
}
.products-container .products-wrapper .right-wrapper .item.active .hover-container {
    transition: all 750ms ease;
    transform: translateY(0%);
    opacity: 1;
}
.footer-bottom {
    width: 100%;
    display: inline-block;
    float: left;
    background: #ffffff;
}

.footer-bottom .wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: #939598;
    font-size: 18px;
    font-weight: 300;
}
.bayilik-container {
    width: 100%;
    display: inline-block;
    float: left;
    padding: 50px 0;
}

.bayilik-container .item .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
}

.bayilik-container .item .title {
    margin-top: 30px;
    width: 100%;
    display: inline-block;
    text-align: center;
    float: left;
    font-family: 'From Where You Are';
    color: #8c3872;
    font-size: 23px;
}

.bayilik-container .item .text {
    margin-top: 5px;
    width: 100%;
    display: inline-block;
    text-align: center;
    float: left;
    color: #8c3872;
    font-size: 15px;
    font-weight: 500;
}

.bayilik-container .item {
    margin: 20px 0;
    transition: all 500ms ease;
    filter: grayscale(100%);
}
.bayilik-container .item:hover {
    filter: grayscale(0%);
}
.bayilik-container .item .image img {
    max-width: 85%;
}
.nasil-yapilir-container {
    width: 100%;
    display: inline-block;
    float: left;
    padding: 30px 0;
}

.nasil-yapilir-container .item {
    padding: 30px 0;
    width: 100%;
    display: inline-block;
    float: left;
}

.nasil-yapilir-container .item .image img {
    max-width: 100%;
}

.nasil-yapilir-container .item .image {
    width: 100%;
    display: inline-block;
    float: left;
}

.nasil-yapilir-container .item .wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.nasil-yapilir-container .item .wrapper .left {
    flex: 1 0 0;
}

.nasil-yapilir-container .item .wrapper .right > a {
    background: #8c3872;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 5px 15px;
    font-size: 23px;
    font-weight: bold;
    text-decoration: none;
    transition: all 500ms ease;
}

.nasil-yapilir-container .item .wrapper .right > a img {
    margin-right: 10px;
}

.nasil-yapilir-container .item .wrapper .right > a span {
    margin-right: 5px;
}

.nasil-yapilir-container .item .wrapper .right > a img {}

.nasil-yapilir-container .item .wrapper .left .title {
    width: 100%;
    display: inline-block;
    float: left;
    color: #8c3872;
    font-size: 18px;
    line-height: 36px;
    padding-right: 20px;
    font-family: 'From Where You Are';
}

.nasil-yapilir-container .item .wrapper .left .title > * {
    width: 100%;
    display: inline-block;
    float: left;
}

.nasil-yapilir-container .item .wrapper .right > a:hover {
    background: #702c5b;
}

/*-----------------------------------------------------------------------------
    Contact
----------------------------------------------------------------------------- */
.contact-page-container > section .checkbox label a {
    color: #8c3872;
}
.contact .map-container #map {
    width: 65%;
    height: 333px;
    display: inline-block;
    float: left;
}

.contact .map-container #map iframe {
    width: 100%;
    height: 100%;
    display: inline-block;
    float: left;
}
.contact { overflow: hidden; }
.contact h1 {font-size: 1.75em;font-family: 'From Where You Are';color: #8c3872;font-size: 34px;margin-bottom: 15px;}
.contact h1 span {font-style: normal; font-weight: normal; }
.contact hr {  width: 12%;  margin: 0 0 1rem 0;  display: inline-block; border-top: 3px solid #007D32; }
.contact .map-container {width: 100%;height: auto;min-height: 333px;display: block;margin: 2.5% 0;padding: 0;overflow: hidden;position: relative;margin-bottom: 3%;}
.contact .map-container .address {width: 35%;height: 100%;min-height: 333px;float: left;padding: 2.5% 2.5% 2% 2.5%;background: #fffaf1;}
.contact .map-container .address h5 {color: #8c3872;margin: 0 0 5% 0;font-style: normal;font-weight: bold;font-size: 1.4em;}
.contact .map-container .address p { overflow: hidden; }
.contact .map-container .address p i {width: 2%;display: inline-block;float: left;margin:0;padding: 0;color: #8c3872;line-height: 1.5em;}
.contact .map-container .address p span  {
                                           width: 92%;
                                           display: inline-block;
                                           float: right;
                                           margin:0;
                                           padding: 0;
                                           color: #8c3872;
                                           font-size: .95em;
                                           font-style: normal;
                                           font-weight: normal;
                                           text-align: justify;
                                           }  
.contact .map-container .address p span a {
    color: #8c3872;
}
.contact .map-container .address p span a:hover {color: #8c3872;}
#headoffice, #branchoffice { width: 65%; height: 100%;  min-height: 333px; float: left; }
.contact .text-box { margin: 2.5% 0 0 0; font-size: .9em; }
.contact .text-box:first-child { margin: 0; }
.contact .text-area { height: 100%; font-size: .9em; resize: none; }
.contact .btn {background: #8c3872;color: #fff;font-size: 1em;margin: 0 0 7.5% 0;cursor: pointer;}
.contact .text-box:focus, .contact .text-area:focus, .contact .btn:focus { outline: none; }

.contact-page-container {
    width: 100%;
    display: inline-block;
    float: left;
}

.contact-page-container > section {
    width: 100%;
    display: inline-block;
    float: left;
    padding: 30px 0;
}
/*-----------------------------------------------------------------------------
    Contact
----------------------------------------------------------------------------- */
.carousel-control-next > *, .carousel-control-prev > * {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bd1723;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}
.carousel-control-next, .carousel-control-prev {
    opacity: 1 !important;
    padding-top: 130px;
}
.about-us-container .section .font-title {
    font-size: 25px;
    font-family: 'From Where You Are';
    margin-bottom: 15px;
}
.products-container.cat_1 .products-wrapper .right-wrapper .item .title-container .title,
.products-container.cat_7 .products-wrapper .right-wrapper .item .title-container .title,
.products-container.cat_8 .products-wrapper .right-wrapper .item .title-container .title {
    font-family: 'Abuget';
    font-size: 90px;
    margin-bottom: 25px;
}
.footer-container .footer-menu .item > .text a {
    text-decoration: none;
    color: #636363;
    transition: all 500ms ease;
}

.footer-container .footer-menu .item > .text a:Hover {
    color: #8c3872;
}
.contact .map-container .address.w100 > h5 {
    margin-bottom: 0;
}

.contact .map-container .address .other-address-container {
    width: 65%;
    display: inline-block;
    float: left;
}

.contact .map-container .address .other-address-container .box {
    float: left;
    display: inline-block;
    width: 50%;
    margin: 15px 0;
}

.contact .map-container .address .other-address-container .box .title {
    width: 100%;
    display: inline-block;
    float: left;
    color: #8c3872;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact .map-container .address .other-address-container .box .black-title {
    width: 100%;
    display: inline-block;
    float: left;
    color: #717171;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact .map-container .address .other-address-container .box > a {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 2px 0;
    float: left;
    color: #717171;
    font-size: 14px;
}

.contact .map-container .address .other-address-container .box > a > i {
    margin-right: 10px;
    font-size: 110%;
    color: #8c3872;
}
.w100 {
    width: 100% !important;
}

.fixed-whatsapp {
    position: fixed;
    right: 0;
    top: 200px;
    z-index: 3;
}
/*------------------------------------------ #responsive ------------------------------------------*/
@media (min-width: 1200px) {
    .container.cont-2 {
        max-width: 92% !important;
    }

    .container.cont-3 {
        max-width: 1500px !important;
    }
}
@media (max-width: 1400px) {
    .products-container .products-wrapper .right-wrapper .item .hover-container .text .bg {
    height: 31%;
    padding-top: 15px;
    }
    .products-container .products-wrapper .right-wrapper .item .title-container .title {
    font-size: 40px;
    line-height: 45px;
    }
    .products-container.cat_1 .products-wrapper .right-wrapper .item .title-container .title, .products-container.cat_7 .products-wrapper .right-wrapper .item .title-container .title, .products-container.cat_8 .products-wrapper .right-wrapper .item .title-container .title {
        font-size: 60px;
    }
    .products-container .products-wrapper .right-wrapper .item .title-container .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
}

.products-container .products-wrapper .right-wrapper .item .title-container .read-more {}

.products-container .products-wrapper .right-wrapper .item > a {
    padding: 20px 15px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container {
    padding: 20px 20px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .close-button {
    padding: 10px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .title-container {
    margin-bottom: 15px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .info-title {
    font-size: 18px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .txt {
    font-size: 16px;
    line-height: 22px;
}

.products-container .products-wrapper .right-wrapper .item .hover-container .text .list li {
    font-size: 14px;
    padding: 2px 0;
}

}
@media (max-width: 1200px) {
    .products-container .products-wrapper .right-wrapper .item {
    min-height: 610px;
    }
    .products-container .products-wrapper .right-wrapper .item .hover-container .text .list li span {
        min-width: 0;
        text-align: right;
    }
    
    .products-container .products-wrapper .left-wrapper ul li a {
        font-size: 17px;
        padding: 7.5px 10px;
    }
    .header .menu ul li a {
        padding: 0 10px;
        font-size: 18px;
    }
    .section .font-title {
        font-size: 35px;
    }
    
    .about-us-container .section .text {
        font-size: 17px;
    }
    
    .about-us-container .section {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .header .menu ul li:Hover > ul {
        display: block;
    }
}
@media (min-width: 992px) {
    .header .menu .logo, .header .menu .close-icon, .header .mobile-menu-button {
        display: none;
    }
}

@media (max-width: 992px) {
    header {
        position: relative;
    }
    .contact .map-container .address .other-address-container {
        width: 100%;
    }
    .header .menu ul li.language > ul {
        padding: 0;
        position: relative;
        left: initial;
        top: initial;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
    }

    .header .menu ul li.language {
        display: flex;
        align-items: center;
    }

    .header .menu ul li.language > * {
        width: auto;
    }

    .header .menu ul li.language > *, .header .menu ul li.language > ul > li > a {
        padding: 0 !important;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        background: hsl(319, 43%, 38%) !important;
    }

    .header .menu ul li.language > ul li {
        width: auto;
    }
    .header .menu ul li.active > ul {
        display: block;
    }
    .header .menu ul li > ul {
        position: relative;
        left: 0;
        top: initial;
        padding: 0;
        width: 100%;
        display: none;
    }
    
    .header .menu ul li > ul li a {
        background: #8b3770 !important;
        color: #fff !important;
    }
    .carousel-control-next, .carousel-control-prev {
        display: none !important;
    }
    .contact-page-container > section .checkbox label {
        max-width: calc(100% - 25px);
        padding-left: 10px;
        line-height: 16px;
    }
    .contact .map-container .address {
        width: 100%;
        min-height: 0;
        height: auto;
    }
    
    .contact .map-container #map {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    .nasil-yapilir-container .item .image {
    text-align: center;
    margin-bottom: 20px;
}

.nasil-yapilir-container .item .wrapper .left {
    width: 100%;
    text-align: center;
    flex: 100%;
}

.nasil-yapilir-container .item .wrapper .right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.nasil-yapilir-container .item .wrapper .left .title {
    padding: 0;
}
    .bayilik-container .item {
        filter: grayscale(0%);
    }
    .about-us-container .section .image-box {
    margin-bottom: 20px;
}

.about-us-container .section .image-box img {
    max-width: 100%;
    width: 320px;
    float: none;
    display: block;
    margin: 0 auto;
}
    /*MOBILE MENU*/
    .header .menu div.logo img {
        height: auto;
    }

    .header .menu ul li:first-child a {
        border-top: 1px solid;
    }

    .header .menu {
        position: fixed;
        left: 0;
        display: none;
    }

    .header .menu {
        overflow: hidden;
        width: 100%;
        display: inline-block;
        float: left;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 99;
        -webkit-transition: all 650ms ease;
        transition: all 650ms ease;
        direction: ltr;
        position: fixed;
        z-index: 9;
        background-color: rgba(0, 0, 0, 0.78);
        padding: 0;
        max-width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        left: -100%;
    }

        .header .menu.active {
            left: 0;
        }

        .header .menu ul {
            margin: 0;
            max-width: 0;
            height: 100%;
            display: inline-block;
            float: left;
            overflow-x: hidden;
            overflow-y: scroll;
            transition: all 300ms;
            position: relative;
            z-index: 2;
            padding: 120px 0 0 0;
            background-color: #ffffff;
        }

        .header .menu .close-icon {
            position: absolute;
            top: 0;
            font-size: 24px;
            color: #fff;
            display: inline-block;
            width: 100%;
            right: 0;
            height: 100%;
            z-index: 1;
            padding-left: 310px;
        }

        .header .menu.active ul {
            max-width: 300px;
        }

        .header .menu nav {
            height: 100%;
            width: 100%;
            flex-wrap: wrap;
            align-items: center;
            align-content: center;
            display: inline-block;
        }

        .header .menu ul li {
            width: 100%;
            display: inline-block;
            padding: 0;
            text-align: left;
            border: 0;
        }

            .header .menu ul li a {
                width: 100%;
                display: inline-block;
                font-size: 14px;
                border-bottom: 1px solid;
                font-weight: normal;
                padding: 10px 20px;
                border-color: rgba(140, 56, 114, 0.25) !important;
                color: #8c3872;
                font-weight: 500;
            }

        .header .menu div.logo {
            position: absolute;
            left: 0;
            top: 0;
            z-index: 9;
            width: 300px;
            text-align: center;
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            align-self: center;
        }

    .menu .close-icon i {
        float: left;
    }

    .header .mobile-menu-button {
        width: 48px;
        float: left;
        height: 48px;
        background: #bd1723;
        color: #fff;
        border: 2px solid #fff;
        border-radius: 50%;
        font-size: 22px;
        line-height: 44px;
        text-align: center;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
        transition: all 540ms ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        align-self: center;
        justify-content: center;
    }

    .header .logo {
        justify-content: space-between;
        align-items: center;
        align-self: center;
    }
    /*MOBILE MENU*/

    .section-wrapper {
        padding-right: 0;
        margin-top: 15px;
    }

    .section.section-1,
    .section.section-2,
    .section.section-3,
    .section.section-4 {
        padding: 30px 0;
    }

    .section-2 > .container > .row > div:first-child .image-box, .section-2 > .container > .row > div:last-child .image-box {
        padding: 15px 0;
        display: inline-block;
    }

    .section.section-4 .item a {
        margin-top: 15px;
        height: auto;
        margin-bottom: 15px;
    }

    .footer-container .logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-container .footer-menu .item {
        padding: 0 20px;
    }

    .footer-container .footer-menu .item li:First-child {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .footer-container .footer-menu .item li a {
            font-size: 16px;
        }
}
@media (max-width: 767px) {
        
    .contact .map-container .address .other-address-container .box {
        width: 100%;
    }
    .nasil-yapilir-container .item .wrapper .left .title {
        font-size: 20px;
        line-height: 22px;
    }
    .bayilik-container .item .title {
        margin-top: 20px;
        font-size: 21px;
    }
    
    .bayilik-container .item .text {
        font-size: 13px;
    }
    
    .footer-bottom .wrapper {
        flex-wrap: wrap;
        font-size: 15px;
    }
    
    .footer-bottom .wrapper > * {
        width: 100%;
        display: inline-block;
        text-align: center;
        margin: 7px 0;
    }
}
@media (max-width: 576px) {
    .products-container .products-wrapper .right-wrapper .item {
        width: calc(100% - 10px);
    }
    .header .logo img {
        height: 60px;
    }

    .section .text, .about-us-container .section .text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .section .text-font {
        font-size: 26px;
    }

    .section.section-3, .section.section-4 {
        padding: 0;
    }

    .footer-container .footer-menu {
        flex-wrap: wrap;
    }

    .footer-container .footer-menu .item {
            width: 100%;
            background: transparent;
            padding: 15px 0;
            flex: 100%;
        }

    .section .social-title {
        font-size: 30px;
    }
    .section .font-title {
    font-size: 26px;
}
}
/*------------------------------------------ #responsive ------------------------------------------*/
html[lang="en"] .header .menu ul li.online-satis {
    display: none !important;        
}

.header .menu ul li.online-satis > a {
    text-align: center;
    font-family: 'Museo Sans Cyrl', sans-serif;
    font-size: 14px;
    line-height: 14px;
}

.header .menu ul li.online-satis > a > span {
    padding-top: 10px;
    display: block;
    width: 100%;
    float: left;
}

.header .menu ul li.online-satis > a > img {
    max-height: 28px;
}

.footer-bottom .wrapper > a > img {
    height: 35px;
}

.blog-container {
    padding: 30px 0;
    display: block;
    width: 100%;
    float: left;
}

.blog-detail {
    padding: 30px 0;
    display: block;
    width: 100%;
}

.blog-container .blog-item {
    margin: 30px 0;
    filter: grayscale(1);
    transition: all 500ms ease;
}
.blog-container .blog-item:hover {
    filter: grayscale(0);
}
.blog-container .blog-item  a {
    width: 100%;
    display: block;
    text-decoration: none;
}

.blog-container .blog-item .img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.blog-container .blog-item .img img{
    width: 100%;
    display: block;
}

.blog-container .blog-item .content {
    width: 100%;
    display: block;
}

.blog-container .blog-item .content .title {
    width: 100%;
    display: block;
    font-size: 22px;
    font-family: 'From Where You Are';
    margin-bottom: 15px;
    color: #8c3872;
}

.blog-container .blog-item .content .text {
    width: 100%;
    display: block;
    font-weight: 500;
    color: #8c3872;
    font-size: 16px;
    height: 100px;
    overflow: hidden;
}

.blog-container .blog-item .content .fake-button {
    width: 100%;
    display: block;
    font-weight: 600;
    color: #8c3872;
    font-size: 16px;
}


.blog-detail {
    display: block;
    width: 100%;
}


#footerInfoBanner>div>button {
    font-size: 100%;
}

#footerInfoBanner>div>div {
    flex: 1 0 0;
}

#footerInfoBanner>div {
    display: flex;
    text-align: left;
    font-size: 100%;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

#footerInfoBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 21;
    background-color: #f1f1f1;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: none;
}

#footerInfoBanner button {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #0064BC;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: $transition-base;
}

#footerInfoBanner button:hover {
    background-color: rgb(1, 69, 129);
}

@media (max-width: 767px) {
    #footerInfoBanner > div {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}