/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/* *************************** GENERAL *************************** */

/*  Reset.Css */

body {
    font-family: 'Barlow-Regular';
    font-weight: 400;
    font-size: 16px;
    color: rgb(255, 255, 255);
    height: 100%;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, li, ol, table, tr, td, h1, h2, h3, h4, h5, h6, p, form, input, select, textarea, button, img {
    font-size: 100%;
    color: rgb(255, 255, 255);
    vertical-align: baseline;
    padding: 0;
    margin: 0;
    border: 0;
    list-style: none
}

a {
    -webkit-transition: all 0.3 ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

strong {
    font-family: "Barlow-Bold";
}

.padding0 {
    padding: 0;
}

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

.row {
    margin: 0;
}

.pt-50 {
    padding-top: 50px;
}

.form-control:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.25);
}

/* reset */

/* *************************** MENÜ *************************** */

.header {
    background-color: white;
}

.header-collapse {
    -webkit-transition: .8s ease;
    -o-transition: .8s ease;
    transition: .8s ease;
    background-color: white;
}

.header .navbar-brand {
    padding: 0;
}

.header .navbar-default.navbar {
    padding: 18px 0;
}

.header .navbar-brand img {
    /*vertical-align: middle;*/
    border-style: none;
    max-width: 150px;
	height:70px;
}

.header .navbar-nav {
    margin-top: -15px;
}

.header .nav-item {
    position: relative;
}

.header .nav-item .nav-link {
    font-size: 16px;
    font-family: "Barlow-Regular";
    line-height: 22px;
    color: #353f47;
    padding: 20px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header .nav-item .nav-link:after {
    content: "";
    background-image: url("../images/icon.png");
    height: 13px;
    width: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 13px;
    position: absolute;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    transition: 500ms;
}

.header .nav-item.has-sub .sub-menu {
    position: absolute;
    width: 100%;
    transform: scaleY(0);
    transform-origin: top;
    background: #fff;
    top: 60px;
    padding: 10px 5px;
    border-top: 20px solid transparent;
    background-clip: padding-box;
}

.header .nav-item.has-sub:hover .sub-menu {
    transform: scaleY(1);
}

.header .nav-item.has-sub .sub-menu a {
    font-size: 17px;
    font-family: "Barlow-Regular";
    color: #353f47;
    margin-bottom: 5px;
    display: block;
}

.header .nav-item.has-sub .sub-menu a:hover{
    color: #af936f;
}


.header .nav-item:hover .nav-link:after, .header .nav-item.active .nav-link:after {
    opacity: 1;
    transition: 500ms;
}

.header .nice-select {
    border-width: 2px;
    border-color: #af936f;
    border-style: solid;
    border-radius: 5px;
    width: 80px;
    height: 41px;
    background-color: transparent;
    font-size: 20px;
    font-family: "Barlow-Medium";
    color: #353f47;
    line-height: 39px;
    padding-left: 10px;
}

.header .nice-select:before {
    content: "";
    background-color: rgb(229, 229, 229);
    position: absolute;
    left: 55%;
    top: 8px;
    width: 1px;
    height: 22px;
}

.header .nice-select:after {
    border-bottom: 2px solid #353f47;
    border-right: 2px solid #353f47;
    height: 10px;
    margin-top: -7px;
    width: 10px;
}

.header .nice-select .list {
    background-color: rgb(229, 229, 229);
}

.header .nice-select .option:hover, .header .nice-select .option.focus, .header .nice-select .option.selected.focus {
    background-color: #af936f;
}

/* *************************** HOME *************************** */

.banner-home {
    position: relative;
}

.banner-home .owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    position: absolute;
    top: 50%;
    left: 13%;
}

.banner-home .owl-theme .owl-nav .owl-next {
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    top: calc(50% - 21px);
}

.banner-home .owl-theme .owl-nav .owl-prev {
    top: calc(50% + 21px);
}

.banner-home .owl-theme .owl-nav i {
    width: 42px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    float: left;
    padding-right: 1px;
    -webkit-transition: all 0.3 ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.sliderDown {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.sliderDown-in {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sliderButton li {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: transparent;
    -webkit-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-width: 2px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-radius: 7px;
    width: 143px;
    height: 41px;
    text-align: center;
}

.sliderButton li:hover {
    border-color: #af936f;
}

.sliderButton li:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #af936f;
    border-radius: 4px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.sliderButton li:hover:before, .sliderButton li:focus:before, .sliderButton li:active:before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.sliderButton li a {
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 38px;
}

.sliderScroll {
    float: right;
}

.sliderScroll li {
    vertical-align: middle;
}

.sliderScroll a {
    font-size: 20px;
    font-family: "Barlow-Regular";
    color: rgb(255, 255, 255);
    line-height: 1.2;
}

.sliderScroll a i {
    color: #af936f;
    margin-right: 15px;
}

.homeSliderScroll {
    border-radius: 3px;
    background-color: #af936f;
    width: 57px;
    height: 117px;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    padding: 20px 0;
}

.homeSliderScroll i {
    margin-top: 10px;
    font-size: 20px;
}

.content {
    margin-top: -10px;
}

.corporate {
    background-image: url("../images/kurumsal_back.png");
    min-height: 760px;
    width: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.corporate-in {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.corporate h1 {
    font-size: 45px;
    line-height: 1.2;
    margin: 5% 0;
    color: rgb(127, 131, 138);
}

.corporate h1 strong {
    color: #af936f;
}

.corporate p {
    font-size: 19px;
    color: rgb(127, 131, 138);
    line-height: 1.684;
}

.button {
    border: 2px solid #af936f;
    ;
    width: -webkit-max-content;
    ;
    width: -moz-max-content;
    ;
    width: max-content;
    height: 55px;
    padding: 0 30px;
    background: transparent;
    border-radius: 7px;
}

.button a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    color: rgb(127, 131, 138);
    font-family: "Barlow-Regular";
    line-height: 50px;
    text-decoration: none;
    margin: 0 auto;
}

.button:before {
    background: #af936f;
    border-radius: 4px;
}

.button:hover a {
    color: rgb(255, 255, 255);
}

.corporate .button {
    margin: 50px 0;
}

.block {
    background-image: url("../images/background.jpg");
    min-height: 618px;
    width: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.offer {
    border-radius: 7px;
    background-color: #af936f;
    padding: 30px;
    position: relative;
    top: -90px;
}

.offer .title {
    font-size: 32px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
}

.offer .title span {
    font-family: "Barlow-Regular";
}

.offer li {
    width: 24%;
}

.offer .form-control {
    height: calc(2.5em + 0.75rem + 2px);
    color: rgb(255, 255, 255);
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 7px;
}

.offer .form-control::-webkit-input-placeholder {
    color: rgb(255, 255, 255);
}

.offer .form-control::-moz-placeholder {
    color: rgb(255, 255, 255);
}

.offer .form-control:-ms-input-placeholder {
    color: rgb(255, 255, 255);
}

.offer .form-control::-ms-input-placeholder {
    color: rgb(255, 255, 255);
}

.offer .form-control::placeholder {
    color: rgb(255, 255, 255);
}

.offer .btn {
    width: 100%;
    height: calc(2.5em + 0.75rem + 2px);
    color: #333f48;
    background-color: white;
    border-radius: 7px;
    margin-top: -3px;
}

.countAll ul {
    border-radius: 15px;
    background-color: transparent;
    width: calc(100%);
    ;
    height: 151px;
    margin: 0 0 30px 0;
    padding: 30px 15px;
    -webkit-transition: all .44s ease-in;
    -o-transition: all .44s ease-in;
    transition: all .44s ease-in;
    display: flex;
    align-items: center;
}

.countAll ul li {
    vertical-align: middle;
    font-size: 17px;
    line-height: 1.2;
    margin-right: 10px !important;
}

.countAll ul:hover .circle {
    background-color: #af936f;
    border-color: #af936f;
    transition: 500ms;
}

.countAll ul li span {
    font-size: 30px;
    font-family: "Barlow-Black";
}

.countAll ul li .count {
    line-height: 1.5;
}

.brandAll .title {
    font-size: 40px;
    color: rgb(102, 102, 102);
}

.brandAll .desc {
    font-size: 30px;
    color: rgb(102, 102, 102);
}

.brandAll .desc span {
    font-family: "Barlow-Black";
}

.brandAll .button {
    height: 45px;
}

.brandAll .button a {
    font-size: 16px;
    line-height: 40px;
}

.brandAll .button a i {
    color: #af936f;
    margin-right: 10px;
}

.brandAll .button:hover a i {
    color: rgb(255, 255, 255);
}

.A_info {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
}

.A_info-inner {
    width: 700px;
    transform: translateX(100px);
}

.A_info .block {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    background-position: center center;
    border-radius: 20px;
    background-image: none;
}

.circle {
    border: 2px solid white;
    border-radius: 100%;
    padding: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 500ms;
}

.A_urun {
    margin-top: 50px;
}

.A_urun-in {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

.A_urun-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.A_urun-head h3 {
    font-size: 40px;
    font-weight: bold;
    line-height: normal;
    color: #333f48;
}

.A_urun-head p {
    font-size: 30px;
    letter-spacing: 3px;
    color: #333f48;
}

.A_urun-head p strong {
    font-weight: 800;
}

.A_urun-item {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(33.33% - 20px);
    border-radius: 15px;
    position: relative;
    display: block;
    z-index: 3;
}

.A_urun-item img {
    border-radius: 15px;
}

.A_urun-item:nth-of-type(1) {
    width: 100%;
}

.A_urun-item:before {
    content: "";
    display: inline-block;
    transition: 500ms;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    background-image: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
    border-radius: 15px;
}

.A_urun-item-text {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 500ms;
}

.A_urun-item-text:after {
    content: "";
    display: inline-block;
    min-width: 16px;
    height: 21px;
    background-size: auto 100%;
    background-image: url("../images/icon-right.svg");
    opacity: 0;
    transition: 500ms;
    transform: translateX(-10px);
}

.A_urun-item-text h6 {
    font-size: 24px;
    font-weight: 300;
    line-height: normal;
    color: #ffffff;
    max-width: 240px;
    padding-right: 10px;
}

.A_urun-item:hover .A_urun-item-text {
    transition: 500ms;
    bottom: 50%;
    transform: translateY(50%);
}

.A_urun-item:hover .A_urun-item-text:after {
    transition: 500ms;
    opacity: 1;
    transform: translateX(0);
}

.A_urun-item:hover:before {
    opacity: 1;
    height: 100%;
    background-color: #af936f;
    background-image: none;
}

.Urunler {
    margin-top: 0;
}

.Urunler-in {
    margin-top: 0;
}

.Urun_detay {
    margin-top: 30px;
    margin-bottom: 30px;
    background-image: url(../images/kurumsal_back.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    position: relative;
}

.Urun_detay-in {}

.Urun_detay-item {
    display: flex;
}

.Urun_detay-item:nth-of-type(2) {
    flex-direction: row-reverse;
}

.Urun_detay-image {
    width: 50%;
    border-radius: 12px;
}

.Urun_detay-image img {
    width: 100%;
    border-radius: 12px;
}

.Urun_detay-text {
    width: 50%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.Urun_detay-text h1 {
    font-size: 45px;
    font-weight: bold;
    color: #b5926a;
}

.Urun_detay-text p {
    font-size: 19px;
    line-height: 1.68;
    color: #303f49;
}

.Urun_detay-item:nth-of-type(2) .Urun_detay-text {
    padding-left: 0;
    padding-right: 30px;
}

.brands {
    background-image: url("../images/brands.png");
    min-height: 536px;
    width: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.brands li {
    margin-bottom: 15px;
}

.brands .left {
    position: absolute;
    top: calc(50% - 115px);
    left: 7%;
}

.brands .right {
    position: absolute;
    top: calc(50% - 115px);
    right: 7%;
}

figure {
    margin: 0;
    -webkit-transition: all 0.3 ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
}

figure .overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #333f48;
    -webkit-box-shadow: 0px 1px 31.15px 3.85px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 1px 31.15px 3.85px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    width: 100%;
    height: 0;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

figure:hover .overlay {
    bottom: 3px;
    height: calc(100% + 20px);
}

figure:hover .button {
    opacity: 1;
    transition: 500ms;
}

figure.effect-lily figcaption>div {
    position: absolute;
    bottom: 0;
    left: 15px;
    padding: 2em;
    width: calc(100% - 30px);
}

figure .date {
    font-size: 19px;
    margin-bottom: 10px;
}

figure.effect-lily h2 {
    font-family: "Barlow-Medium";
    font-size: 19px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 1.316;
    text-align: left;
    position: relative;
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

figure.effect-lily p {
    font-size: 19px;
    color: rgba(255, 255, 255, 1);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, -webkit-transform 0.35s;
    -o-transition: opacity 0.2s, transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
    transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s;
}

figure .button {
    border: 2px solid rgb(255, 255, 255);
    position: absolute;
    left: 50px;
    bottom: 25px;
    z-index: 99;
    opacity: 0;
    transition: 500ms;
}

figure .button a {
    color: rgb(255, 255, 255);
}

figure.effect-lily:hover figcaption>div {
    height: 80%;
}

figure.effect-lily:hover h2, figure.effect-lily:hover p {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    margin-bottom: 30px;
}

figure.effect-lily:hover p {
    -webkit-transition-delay: 0.05s;
    -o-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

figure.effect-lily:hover h2 {
    font-family: "Barlow-Black";
    font-size: 30px;
}

footer {
    border-top: 1px solid rgb(246, 246, 246);
}

.form h5 {
    font-size: 35px;
    line-height: 1.468;
    color: rgb(102, 102, 102);
    text-transform: uppercase;
}

.form p {
    font-size: 17px;
    line-height: 1.471;
    color: rgb(127, 131, 138);
}

.form .input-group {
    margin-top: 20px;
}

.form .form-control {
    width: 100%;
    height: 66px;
    padding: 20px 30px;
    font-size: 16px;
    color: rgb(83, 81, 82);
    background-color: transparent;
    border: 3px solid #af936f;
    border-right: 0;
    border-radius: 10px;
}

.form .form-control::-webkit-input-placeholder {
    color: rgb(100, 100, 100);
}

.form .form-control::-moz-placeholder {
    color: rgb(100, 100, 100);
}

.form .form-control:-ms-input-placeholder {
    color: rgb(100, 100, 100);
}

.form .form-control::-ms-input-placeholder {
    color: rgb(100, 100, 100);
}

.form .form-control::placeholder {
    color: rgb(100, 100, 100);
}

.form .btn {
    background-color: transparent;
    height: 66px;
    padding: 15px 30px;
    border: 3px solid #af936f;
    border-left: 0;
    border-radius: 0 10px 10px 0;
}

.form .name {
    font-size: 20px;
    color: rgb(102, 102, 102);
    text-align: center;
}

.social li {
    border-width: 2px;
    border-color: rgb(228, 228, 228);
    border-style: solid;
    border-radius: 14px !important;
    width: 43px;
    height: 43px;
    margin: 15px auto;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    text-align: center;
}

.social li.list-group-item {
    position: relative;
    display: block;
    padding: 0;
    background-color: transparent;
    border: 2px solid rgb(228, 228, 228);
}

.social .list-group-horizontal .list-group-item+.list-group-item {
    border-top-width: 2px;
    border-left-width: 2px;
}

.social li a {
    color: rgb(228, 228, 228);
    font-size: 18px;
    line-height: 40px;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.social li:hover a {
    color: #af936f;
}

.social li:hover {
    border-color: #af936f;
}

.form .img {
    margin: 0 auto 30px;
    display: block;
}

.A_haber {
    background-color: #eff0f1;
    margin-top: 40px;
}

.copy-logo {
    width: 32px;
    height: 32px;
    display: block;
    transition: 500ms;
}

.copy-logo:hover {
    transform: skew(-15deg);
    transition: 500ms;
}

.master {
    border-top: 1px solid rgb(246, 246, 246);
    padding: 30px;
    color: rgb(102, 102, 102);
    line-height: 2.5;
}

.master img {
    float: right;
}

.local a {
    font-size: 22px;
    color: rgb(102, 102, 102);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.local a i {
    padding-left: 15px;
    color: #af936f;
}

.local a:hover {
    color: #af936f;
}

.master .container {
    position: relative;
}

.master .container:after {
    content: "";
    border-radius: 7px 7px 0 0;
    background-color: #af936f;
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: 14px;
}

/* *************************** SUBPAGE *************************** */

.breadcrumbList {
    position: absolute;
    left: 25%;
    top: 45%;
    width: 50%;
}

.breadcrumbList h1 {
    font-size: 45px;
    color: #ffffff;
    text-align: center;
}

.breadcrumbList .breadcrumb {
    background-color: transparent;
}

.breadcrumbList .breadcrumb-item a, .breadcrumbList .breadcrumb-item.active {
    font-size: 15px;
    font-family: "Barlow-Regular";
    color: rgb(255, 255, 255);
}

.breadcrumbList .breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255, 255, 255);
    content: ">";
}

.breadcrumbList .breadcrumb:after {
    content: "";
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: calc(50% - 25px);
    bottom: 5px;
    width: 51px;
    height: 5px;
    z-index: 11;
}

.subPage {
    margin-top: 0px;
}

.corporate.left {
    min-height: 585px;
    background-position: left center;
}

.corporate.right {
    min-height: 405px;
    background-position: right top;
}

.quickMenu {
    border-radius: 3px;
    background-color: #af936f;
    padding: 30px 0;
    position: relative;
    top: -50px;
}

.quickMenu li {
    padding: 0 30px;
    position: relative;
}

.quickMenu li a {
    font-size: 16px;
    font-family: "Barlow-Regular";
    color: rgb(255, 255, 255);
    line-height: 3.313;
}

.quickMenu li:hover:before {
    content: "";
    background-color: #af936f;
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 32px;
    border-radius: 0 5px 5px 0;
}

.newsDetail .button {
    margin-right: 30px;
}

.newsDetail figure.effect-lily:hover figcaption>div {
    height: 83%;
}

.newsDetail .media {
    margin-bottom: 50px;
    position: relative;
    background-color: #af936f;
    -webkit-box-shadow: 0px 1px 31.15px 3.85px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 1px 31.15px 3.85px rgba(0, 0, 0, 0.32);
}

.newsDetail .media-body {
    padding: 50px;
    width: 60%;
}

.newsDetail .media-body .button {
    border: 2px solid rgb(255, 255, 255);
}

.newsDetail .media-body .button a {
    color: rgb(255, 255, 255);
}

.newsDetail .desc {
    font-size: 19px;
    margin: 5% 0;
}

.newsDetail .title {
    color: rgb(255, 255, 255);
    margin: 5% 0;
    font-family: "Barlow-Black";
    font-size: 30px;
    text-transform: uppercase;
}

.corporate.right.min {
    background-size: 50%;
}

.brandTitle {
    position: relative;
    top: -125px;
}

.brandTitle .title {
    font-size: 39px;
    color: #af936f;
}

.brandTitle span {
    font-size: 39px;
    color: rgb(127, 131, 138);
}

.brandTitle img {
    position: relative;
    top: 25px;
    max-width: 75%;
}

.color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 15px;
    background-color: rgb(237, 237, 237);
    margin-top: -103px;
    padding: 50px 50px 150px 80px;
}

.color-item {
    width: calc(33.33% - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
    height: 16vw;
    max-height: 240px;
    min-height: 180px;
    background-color: white;
}

.color-item img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
}

.color img:hover {
    -webkit-box-shadow: 0px 1px 31.15px 3.85px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 1px 31.15px 3.85px rgba(0, 0, 0, 0.09);
}

.block.none {
    background-image: none;
    min-height: inherit;
}

.catalogAll .name {
    font-size: 39px;
    color: rgb(127, 131, 138);
    line-height: 1.489;
    margin: 50px 0;
}

.catalogAll .name strong {
    color: #af936f;
}

.catalogAll .desc {
    font-size: 17px;
    color: rgb(91, 94, 101);
}

.catalogAll .cdetay {
    margin-bottom: 120px;
}

.catalogAll .detay {
    margin-top: 30px;
}

.catalogAll .item {
    border-radius: 7px;
    background-color: rgb(237, 237, 237);
    width: 100%;
    height: 100%;
    -webkit-transition: .8s ease;
    -o-transition: .8s ease;
    transition: .8s ease;
    position: relative;
}

.catalogAll .item:hover {
    background-color: #af936f;
}

.catalogAll .item img {
    width: 100%;
    background: #fff;
    padding: 20px;
}

.catalogAll .item p {
    font-size: 22px;
    font-family: "Barlow-Medium";
    color: rgb(89, 93, 99);
    text-transform: uppercase;
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.catalogAll .item:hover p {
    color: rgb(255, 255, 255);
}

.catalogAll .detay .button {
    width: 80%;
    max-width: 160px;
    margin: 20px auto;
    display: block;
}

.catalogAll .detay .button a {
    margin: 0;
}

.catalogAll .detay .button i {
    position: relative;
    top: 2px;
    margin-left: 35px;
    font-size: 20px;
}

.contact {
    border-radius: 7px;
    background-color: rgb(237, 237, 237);
}

.address {
    background-size: contain !important;
}

.address h2 {
    font-size: 25px !important;
}

.address ul li {
    padding-left: 50px;
    margin-bottom: 30px;
    position: relative;
}

.address ul li img {
    position: absolute;
    left: 0;
}

.address ul li, .address ul li a {
    font-size: 20px;
    font-family: "Barlow-Medium";
    color: rgb(82, 82, 82);
    line-height: 1.2;
}

.cForm form {
    display: inherit;
    width: 100%;
}

.cForm .form-control {
    background-color: transparent;
    -webkit-box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.06);
    width: 100%;
    height: 56px;
    border-width: 2px;
    border-color: #af936f;
    border-style: solid;
    border-radius: 10px;
}

.cForm textarea.form-control {
    height: 130px;
}

.cForm .button {
    border-radius: 10px;
    border: 2px solid #af936f;
    float: right;
    width: 100%;
    padding: 30px 0;
    height: inherit;
    font-size: 20px;
}

.cForm .button:hover {
    border: 2px solid #af936f;
}

.cForm .button:before {
    background: #af936f;
    border-radius: 0px;
    border-radius: 8px;
}

.banner-image {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 400px;
}

.brandTitle {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.brandTitle .m-auto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#TeklifFormu .list-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.list-inline-item {}

.Brands-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 24px;
}

.Brands-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 180px;
    padding-bottom: 5px;
    padding-top: 5px;
}

.Brands-item img {
    width: 70%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.brands-slider1 {
    width: 25%;
}

.brands-slider2 {
    width: 25%;
}

.owl-carousel .owl-item img {
    height: calc(100vh - 50px);
    -o-object-fit: cover;
    object-fit: cover;
}

.swiper-container-multirow-column>.swiper-wrapper {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header .nav-item .nav-link {
        padding: 5px 20px;
    }
    .brandTitle span, .brandTitle .title {
        font-size: 32px;
    }
    .Brands-item {
        height: 150px;
    }
}

@media only screen and (max-width: 992px) {
    .header .navbar-nav {
        margin-top: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .header .navbar-brand img {
        width: 100%;
    }
    .header .navbar-brand {
        width: 159px;
    }
    .header .navbar-default.navbar {
        padding: 11px 0;
    }
    .navbar-toggler {
        background-color: #af936f;
    }
    .header .nav-item .nav-link:after {
        display: none;
    }
    .header .navbar-flex-icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .header .nice-select {
        width: 70px;
        height: 35px;
        font-size: 14px;
        line-height: 32px;
        padding-left: 7px;
    }
    .banner-home {
        margin-top: 64px;
    }
    .banner-image {
        -o-object-fit: cover;
        object-fit: cover;
        height: 280px;
        min-height: 280px;
    }
    .sliderDown {
        bottom: 5px;
    }
    .banner-home .owl-theme .owl-nav .owl-next {
        top: 27%;
        right: 5% !important;
        left: inherit !important;
    }
    .banner-home .owl-theme .owl-nav [class*=owl-] {
        top: 27%;
        left: 5%;
    }
    .padding-50 {
        padding: 30px 0;
    }
    .corporate h1, .brandAll .title, .breadcrumbList h1 {
        font-size: 35px;
    }
    .corporate h1 br, footer .local, .breadcrumb, .brandTitle img, .catalogAll .name br {
        display: none;
    }
    .corporate .button {
        margin: 30px 0;
    }
    .offer li {
        width: 100%;
        margin-bottom: 10px;
    }
    .countAll ul {
        height: auto;
        padding: 10px 15px;
    }
    .countAll ul li span {
        font-size: 18px;
    }
    .countAll ul li {
        margin-right: 0 !important;
    }
    .circle {
        width: 80px;
        height: 80px;
        margin-left: auto;
        margin-right: auto;
    }
    .countAll ul li, .brandAll .desc, .master {
        font-size: 13px;
    }
    .brandAll .button {
        margin-top: 30px;
    }
    .form {
        padding: 30px 15px;
    }
    .form h5, .catalogAll .name {
        font-size: 20px;
    }
    .form .name {
        margin-top: 30px;
    }
    .brandTitle {
        display: none;
    }
    .breadcrumbList {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }
    .color {
        padding: 30px 15px 100px 30px;
        margin-top: -70px;
    }
    .color-item {
        width: calc(50% - 15px);
        margin-right: 15px;
        margin-bottom: 15px;
        min-height: 160px;
    }
    .catalogAll .detay .button {
        padding: 0 15px;
    }
    .catalogAll .name {
        margin: 15px 0;
    }
    .catalogAll .desc {
        margin-bottom: 10px;
    }
    .header .nav-item:hover .nav-link:after, .header .nav-item.active .nav-link:after {
        bottom: -24px;
        left: calc(40% - 7px);
    }
    .owl-carousel .owl-item img {
        height: 400px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .sliderDown-in {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: 20px;
    }
    .content {
        overflow: hidden;
    }
    .A_info {
        padding-left: 0;
        padding-right: 0;
    }
    .A_info .offer {
        top: -30px;
    }
    .A_info .block {
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 10px;
    }
    .A_info-inner {
        transform: translateX(0);
        width: 100%;
    }
    .A_urun {
        margin-top: 30px;
    }
    .A_urun-in {
        margin-top: 30px;
        width: 100%;
    }
    .A_urun-head {
        flex-direction: column;
        text-align: center;
    }
    .A_urun-head h3 {
        font-size: 24px;
    }
    .A_urun-head p {
        font-size: 18px;
    }
    .A_urun-item {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .A_urun-item:before {
        content: "";
        display: inline-block;
        transition: 500ms;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        z-index: 1;
        background-image: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
        border-radius: 15px;
    }
    .A_urun-item-text {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    .A_urun-item-text:after {
        opacity: 1;
    }
    .A_urun-item-text h6 {
        font-size: 16px;
    }
    .A_urun-item:hover .A_urun-item-text {
        transition: 500ms;
        bottom: 50%;
        transform: translateY(50%);
    }
    .A_urun-item:hover .A_urun-item-text:after {
        transition: 500ms;
        opacity: 1;
        transform: translateX(0);
    }
    .A_urun-item:hover:before {
        opacity: 1;
        height: 100%;
        background-color: #af936f;
        background-image: none;
    }
    .Urunler {
        margin-top: 0;
    }
    .Urunler-in {
        margin-top: 0;
    }
    .copy {
        flex-direction: column;
        align-items: center;
    }
    .copy-logo {
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }
    .copy-right {
        line-height: normal;
        text-align: center;
    }
    .Urun_detay {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .Urun_detay-in {}
    .Urun_detay-item {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .Urun_detay-image {
        width: 100%;
    }
    .Urun_detay-text {
        margin-top: 15px;
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    .Urun_detay-text h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .Urun_detay-text p {
        font-size: 15px;
    }
    .Urun_detay-item:nth-of-type(2) {
        flex-direction: column;
    }
    .Urun_detay-item:nth-of-type(2) .Urun_detay-text {
        padding-right: 0;
    }
}

.Iletisim-in {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {
    .corporate {
        padding-top: 0;
    }
    .corporate-in {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .corporate .corporate-text {
        margin-bottom: 30px;
        padding-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
    .corporate .corporate-image {
        padding: 0 30px 30px 30px !important;
    }
    .sliderScroll {
        display: none;
    }
    .list-inline {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .Iletisim-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
    .Info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .Info-in {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .Info-in .col-6 {}
    .Info-in .list-inline {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    .Info-in .list-inline .list-inline-item:first-child {
        width: 100%;
    }
    .Info-in .list-inline .list-inline-item:last-child {
        width: 100%;
        margin-top: 10px;
    }
    .Brands-item {
        height: 104px;
    }
    .brands {
        min-height: 350px;
    }
    figure.effect-lily:hover h2 {
        font-size: 24px;
    }
    figure.effect-lily:hover p {
        font-size: 14px;
    }
    figure.effect-lily:hover figcaption>div {
        height: 90%;
    }
    figure.effect-lily:hover h2, figure.effect-lily:hover p {
        margin-bottom: 15px;
    }
}

.catalogAll-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
/*------------------PopUp -------------------*/

/* Arka planın blur ve kararma efekti */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}

/* Popup kutusu */
#popup {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    text-align: center;
}

/* Popup içindeki resmi boyutlandırma */
#popup img {
    max-width: 35vw;
    height: auto;
    border-radius: 10px;
}

/* Kapatma düğmesi */
#close-popup {
	position: absolute;
    top: -13px;
    right: 5px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: black;
}
/* ----------------Teklif Formu--------------------*/
#TeklifFormu {
  display: none;
}