@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    border: none;
}


body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

}

html {
    scroll-behavior: smooth;
}

#wrapper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header .container {
    height: 60px;
    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
}

.header .container .logo a {
    display: block
}

.header .container .logo a img {
    height: 50px
}

.header .container .search {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 20px
}

.header .container .search form {
    position: relative
}

.header .container .search form input {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500
}

.header .container .search form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    font-size: 16px;
    color: #666;
    cursor: pointer
}

.header .container .menu {
    padding: 0 15px
}

.header .container .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header .container .menu ul li {
    margin-left: 35px
}

.header .container .menu ul li:first-child {
    margin-left: 0
}

.header .container .menu ul li a {
    display: block;
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    -webkit-transition: .3ms all ease-in;
    -o-transition: .3ms all ease-in;
    transition: .3ms all ease-in;
}

.header .container .menu ul li.active a {
    color: #212AA0;
}

.header .container .social {
    margin-left: 15px;
    padding-left: 15px;
}

.header .container .social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

.header .container .social ul li {
    margin-left: 10px
}

.header .container .social ul li:first-child {
    margin-left: 0
}

.header .container .social ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.header .container .social ul li a:hover,
.header .container .menu ul li a:hover,
.responsive-menu .menu ul li a:hover,
.responsive-menu .close-menu:hover,
.header .container .menu-btn:hover,
.responsive-menu .social ul li a:hover {
    text-decoration: none;
}

.header .container .social ul li a span {
    display: none
}

.header .container .menu-btn {
    width: 60px;
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 21px;
    color: #333;
    margin-right: -20px
}

.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    -webkit-transition: 300ms all;
    -o-transition: 300ms all;
    transition: 300ms all;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.responsive-menu.active {
    left: 0;
    opacity: 1
}

.responsive-menu .close-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 21px;
    color: #333
}

.responsive-menu .logo a img {
    height: 40px
}

.responsive-menu .search {
    margin-top: 20px
}

.responsive-menu .search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.responsive-menu .search form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    font-size: 15px;
    color: #999
}

.responsive-menu .search form input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.responsive-menu .search form input:focus {
    border: 0;
}

.responsive-menu .menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.responsive-menu .menu ul {
    padding: 15px 0
}

.responsive-menu .menu ul li a {
    padding: 10px 12px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #333
}

.responsive-menu .menu ul li.active a {
    color: #1b40e7;
    background: rgba(27, 64, 231, .03);
    -webkit-box-shadow: -3px 0 0 0 #1b40e7 inset;
    box-shadow: -3px 0 0 0 #1b40e7 inset
}

.responsive-menu .social {
    border-top: 1px solid #eee;
    padding-top: 15px;
    padding-bottom: 5px
}

.responsive-menu .social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

.responsive-menu .social ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.responsive-menu .social ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.responsive-menu .social ul li a span {
    color: #555;
    font-size: 14px;
    font-weight: 500
}

.responsive-menu .social ul li a i {
    margin-right: 10px
}

.responsive-menu .social ul li.facebook a i {
    color: #3b5998
}

.responsive-menu .social ul li.twitter a i {
    color: #1da1f2
}

.mobile-show {
    display: none
}


@media (max-width: 900px) {
    .mobile-hide {
        display: none
    }

    .mobile-show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#home-slider {
    width: 100%;
    height: 100vh;

}

.swiper-slide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#home-slider .swiper-slide::after {
    content: '';
    position: absolute;
    background: url(../images/home-slider-background.png) no-repeat;
    background-size: cover;
    background-position: bottom;
    bottom: 0;
    width: 100%;
    min-height: 200px;
}

#home-slider .swiper-slide .images {
    background-size: cover !important;
    background-position: center center !important;
    height: 100% !important;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

#home-slider .swiper-slide .images .swiper-slide-image-text {
    width: 100%;
    text-align: center;
    margin-top: 100px;
    line-height: 150%;
    font-size: 2.5rem;
}

#home-slider .swiper-slide .images.two-slider .swiper-slide-image-text {
    color: #ffffff;
    position: relative;
    top: 15%;
}

.swiper-slide-caption .sambros-btn::after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 900;
    position: relative;
    top: 1px;
}

.sambros-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 230px;
    margin: 0 auto;
    background: #212AA0;
    color: #fff;
    border-radius: 20px;
    height: 50px;
    font-size: 20px;
}

.sambros-btn:hover {
    background: #4834d4;
    color: #fff;
}

#home-slider .swiper-button-prev::after {
    content: '\f359';
    font-family: "Font Awesome 5 Free";
    font-size: 30px;
    color: #212AA0;
}

#home-slider .swiper-button-next::after {
    content: '\f35a';
    font-family: "Font Awesome 5 Free";
    font-size: 30px;
    color: #212AA0;
}

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

.section-sambros h5.text-center {
    font-weight: 400;
    line-height: 150%;
}

.section-sambros .row {
    -webkit-box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.4);
    box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.4);
}

.urunler-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #ffffff;
    position: relative;
    cursor: pointer;
    padding: 20px;
    min-height: 50px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #c9c9c9;
}

.urunler-images .urunler-images-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
}

.urunler-images .urunler-images-box img {
    margin-bottom: 20px;
}

.urunler-images:hover .urun-overlay {
    opacity: 1;
}

.urun-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    background-color: rgba(33, 41, 160, 0.9);

}

.urun-overlay .urun-text {
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 15px;
}

.section-sambros span.center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sambros-btn-grey {
    max-width: 230px;
    width: 100%;
    border-radius: 20px;
    color: #333333;
    font-weight: 400;
    background: inherit;
    border: 1px solid #333333;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    font-size: 20px;
}

.sambros-btn-grey:hover {
    background: #212AA0;
    color: #fff;

}

.sambros-btn-grey:focus, .sambros-btn:focus {
    outline: navajowhite;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.section-sambros-two {
    background: #f7f7f7;
    padding-top: 50px;
    padding-bottom: 50px;
}

#home-slider-two {
    background: #f7f7f7;
    -webkit-box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.4);
    box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.4);
    padding-top: 35px;
    padding-left: 35px;
    padding-right: 30px;


}

#home-slider-two .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}

#home-slider-two .slide-bg-grey .swiper-slide h3 {
    font-weight: 900;
    margin: 0;
    font-size: 30px;
    line-height: 120%;
}

#home-slider-two .slide-bg-grey {
    padding: 20px;
}

#home-slider-two .slide-bg-grey .swiper-slide h6 {
    font-weight: 600;
    font-size: 19px;
}

#home-slider-two .slide-bg-grey .swiper-slide p {
    font-size: 19px;
    font-weight: 300;
}

#home-slider-two .swiper-button-next, #home-slider-two .swiper-button-prev {
    bottom: 0;
    top: inherit;
    width: 85%;
    vertical-align: middle;

}

#home-slider-two .swiper-button-prev::after {
    content: '\f053';
    font-family: "Font Awesome 5 Free";
    color: #333;
    font-weight: 900;
    font-size: 20px;
}

#home-slider-two .swiper-button-next::after {
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    color: #333;
    font-weight: 900;
    font-size: 20px;
}


#home-slider-two .slider-nav .swiper-pagination .swiper-pagination {
    bottom: 5%;
    right: 10%;
}

#home-slider-two .slider-nav .swiper-pagination-bullet {
    margin: 3px;

}

#home-slider-two .swiper-pagination-clickable .swiper-pagination-bullet {
    background: #333;
    border: 1px solid #333;
    padding: 3px;
}

.col-md-5.col-12.d-flex.mt-5.mt-md-0.mt-lg-0 img {
    -o-object-fit: cover;
    object-fit: cover;
}

.section-sambros-three {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-sambros-three .home-page-bize-ulasin {
    padding: 20px;
    background: url(../images/resim-3.jpg) no-repeat;
    min-height: 250px;
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(28, 30, 35, 0.4);
    box-shadow: 0px 30px 40px 0px rgba(28, 30, 35, 0.4);
    border-radius: 10px;


}

.section-sambros-three .home-page-bize-ulasin h4 {
    font-size: 30px;
    font-weight: 900;

}

.section-sambros-three .home-page-brosur {
    position: relative;
    background: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.section-sambros-three .home-page-brosur img {
    width: 40%;
}

.section-sambros-three .home-page-brosur a {
    position: absolute;
    bottom: 0;
    background: #2129a0;
    color: #ffffff;
    font-weight: 400;
    width: 100%;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

.section-sambros-three .home-page-brosur a:hover {
    text-decoration: none;
}

footer {
    background: #f7f7f7;
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer a {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
}

.footer a:hover {
    color: #212AA0;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 30px;
    color: #adb5bd;
    font-weight: 400;
    font-size: 15px;
}

.footer-bottom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-bottom-list li {
    margin-left: 10px;
}

.footer-bottom-list li a {
    color: #adb5bd;
}


/*BLOG DETAY*/

.page-header-big-title {
    position: relative;
    background: url(../images/page-bg-cloud.jpg) no-repeat;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-header-big-title h2 {
    font-weight: 900;
    font-size: 36px;
}

.blog-detay-content-wrapper h1 {
    font-size: 48px;
    font-weight: 900;
}

.blog-detay-content-wrapper p.mt-3 {
    text-align: center;
    color: #9fa3a7;
    font-size: 16px;
    font-weight: 400;
}

#blog-detay-content-slider .swiper-button-prev::after {
    content: url(../images/circle-arrow-left-icon.png);
    margin-left: 20px;
}

#blog-detay-content-slider .swiper-button-next::after {
    content: url(../images/circle-arrow-icon.png);
    margin-right: 20px;
}

.blog-detay-content-text {
    margin-top: 50px;
    color: #9f9f9f;
    font-size: 16px;
}

.blog-detay-content-text h6 {
    color: #757575;
    font-weight: 600;
}

.blog-detay-content-text-left p:nth-child(2) {
    font-style: italic;
}

.blog-detay-content-text-right {
    font-weight: 500;
}

.blog-detay-content-text p.text-center.font-weight-bolder {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    color: #212121;
}

/*BLOG DETAY*/


/*İLETİŞİM*/
.contact-page-wrapper {

    margin-bottom: 30px;
    color: #9fa3a7;
}

.slide-bg-grey {
    background: #f7f7f7;
    padding: 50px;
}

.contact-page-info h1 {
    font-weight: 900;
    font-size: 4em;
    color: #2c2c2c;
}

.contact-page-info ul li {
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-page-info ul li .fas {
    color: #212AA0;
    font-weight: bold;
    font-size: 20px;
    vertical-align: middle;
}

.contact-page-info ul li a {
    color: #9fa3a7;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.contact-page-info ul li a:hover {
    text-decoration: none;
    color: #212AA0;
}

input.form-control {
    background-color: inherit;
    border: 0;
    border-bottom: 2px solid #ccc !important;
    border-radius: 0;
    padding-left: 0;
}

input.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: inherit;
}

input.form-control::-webkit-input-placeholder {
    color: #efefef;
    color: rgba(0, 0, 0, .4);
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
}

input.form-control:focus::-webkit-input-placeholder {
    color: transparent;

}

#message {
    resize: none;
    border: 0;
    background-color: inherit;
    border-bottom: 2px solid #ccc !important;
    border-radius: 0;
    padding-left: 0;
}

#message:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: inherit;
}

.line-left,
.line-right {
    background: #212AA0;
    height: 2px;
    margin-bottom: 0;
    position: relative;
    bottom: 2px;
}

.line-left {
    width: 0;
    -webkit-transition: width .25s ease;
    -o-transition: width .25s ease;
    transition: width .25s ease;
}

.line-right {
    width: 0%;
    position: absolute;
    right: 0;
    -webkit-transition: width 0.25s ease;
    -o-transition: width 0.25s ease;
    transition: width 0.25s ease;
}

input.form-control:focus + .line-left, #message:focus + .line-left,
input.form-control:focus + .line-right {
    width: 100%;
    -webkit-transition: width .25s ease;
    -o-transition: width .25s ease;
    transition: width .25s ease;

}

.contact-page-wrapper a.sambros-btn {
    margin-top: 30px;
    float: right;
    width: 100%;
}

.contact-page-wrapper a.sambros-btn:hover {
    text-decoration: none;
}

/*İLETİŞİM*/
/*SSS*/
section.sss-page-wrapper {
    margin-bottom: 50px;
}

.sss-accordion .card {
    border: 0;
}

.sss-accordion .card .card-header {
    background-color: #F7F7F7 !important;
}

.sss-accordion .card .card-header:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
}

.collapsible-link::before {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 0.8rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    font-family: 'FontAwesome';
    font-size: 1.1rem;
}

.collapsible-link[aria-expanded='true']::before {
    content: '\f106';
}

.collapse.show {
    border-left: 4px solid #212AA0;
}

button.btn.btn-link.collapsible-link {
    font-size: 16px;
    font-weight: 800;
    color: #333333;
}

button.btn.btn-link.collapsible-link:hover {
    text-decoration: none !important;
}

/*SSS*/
/*ÜRÜN DETAY*/

.urun-detay-wrapper {
    position: relative;
    background-color: #e1e1e1;
    min-height: 100vh;
}

.urun-detay-wrapper::after {
    content: '';
    position: absolute;
    background: url(../images/home-slider-background.png) no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    min-height: 90vh;
    bottom: 0;
    z-index: 0;
}

.urun-detay-slider {
    position: relative;
    top: 50px;
    background: #ffffff;
    -webkit-box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.19);
    box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.19);
    z-index: 999;
}

#carousel-custom {
    min-height: 200px;
}

#carousel-example-generic {
    margin: 20px auto;
}

#carousel-custom .carousel-indicators {
    position: relative;
    margin: 10px 0 0;
    overflow: auto;
    white-space: nowrap;
    width: 100%;
    /*bottom: -45%;*/
    left: 0;
    display: inline-block;
}

#carousel-custom .carousel-indicators li {
    background-color: transparent;
    border-radius: 0;
    display: inline-block;
    height: auto;
    width: auto;
    margin-left: 35px;
}

#carousel-custom .carousel-indicators li img {
    display: block;

}

#carousel-custom .carousel-indicators li.active img {
    padding: 5px;
    opacity: 1;
    background: #ffffff;
    -webkit-box-shadow: 0 10px 10px 0 rgba(28, 30, 35, 0.19);
    box-shadow: 0 10px 10px 0 rgba(28, 30, 35, 0.19);
    border-radius: 10px;
}

#carousel-custom .carousel-indicators li:hover img {
    opacity: 1;
}

.urun-detay-slider-item {
    margin-top: 30px;
    padding: 20px;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

}

.urun-detay-slider-item img {
    width: calc(100% - 40%);
}

.urun-detay-text {
    position: relative;
    z-index: 999;
    padding-top: 80px;
}

.urun-detay-text h4 {
    font-size: 32px;
    color: #1c1e23;
    font-weight: 800;
}

.urun-detay-text p {
    color: #1c1e23;
    font-weight: 400;
    font-size: 24px;
}

.urun-detay-ozellik {
    margin-top: 30px;
    color: #1c1e23;

}

.urun-detay-ozellik p {
    font-size: 16px;
    margin: 0;
}

.ozellik-sec {
    background: #212AA0;
    color: #ffffff;
}

.urun-detay-ozellik button.btn:active {
    background: #212AA0;
    color: #ffffff;
}

.urun-detay-ozellik ul.d-flex li {
    margin: 10px;
}

.urun-detay-ozellik ul.d-flex li .btn {
    max-width: 100%;
    width: 150px;
    font-size: 16px;
    height: 40px;
    border: 1px solid #333333;
    border-radius: 40px;
}

.urun-detay-ozellik a.sambros-btn-grey {
    height: 40px;
    font-size: 15px;
    width: 100px;
    margin-bottom: 30px;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.urun-detay-ozellik a.sambros-btn-grey:hover {
    text-decoration: none;
}

.urun-ozellikler-wrapper h5 {
    font-size: 25px;
    font-weight: 800;
}

.urun-teknik-ozellikler-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

.urun-teknik-ozellikler-wrapper .urun-model-adi {
    background: #F7F7F7;
    padding: 30px;
}

.urun-teknik-ozellikler-wrapper .urun-model-adi h6 {
    font-size: 25px;
    font-weight: 800;
}

.urun-model-adi details.text-center {
    display: list-item;
    text-align: center;
}

.urun-model-adi details.text-center summary {
    padding-top: 20px;
    padding-bottom: 20px;
}

.urun-model-adi details.text-center summary:focus {
    outline: none;
}

.urun-model-adi .p-big-title {
    font-weight: 800;
    font-size: 20px;
}

.media .fa-file-pdf {
    font-size: 30px;
}

.media .media-body span.d-block {
    font-size: 15px;
    color: #333333;
    font-weight: 600;
}

.media .media-body span.d-block.date, .media .media-body span.d-block.lang {
    color: #808080;
    font-size: 14px;
    font-weight: 400;
}

.media a {
    color: #333333;
}

.media a:hover {
    color: #212AA0;
    text-decoration: none;
}

/*ÜRÜN DETAY*/

/*BLOG*/
.blog-page-wrapper h2 {
    font-weight: 800;
    text-align: center;
}

.blog-card-box {
    width: 100%;
    max-width: 100%;
    font-size: 1em;
    overflow: hidden;
    padding: 0;
    border: none;
    border: 0;
    border-radius: 5px;
    background: #f7f8f9;
}

.blog-page-wrapper a:hover {
    text-decoration: none;
}

.blog-page-wrapper a {
    width: 100%;
    max-width: 100%;
}

.blog-card-box .card-block {
    font-size: 1em;
    position: relative;
    margin: 0;
    padding: 1em;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.blog-card-box .card-img-top {
    display: block;
    width: 100%;
    height: auto;
}

.blog-card-box .card-title {
    font-size: 22px;
    font-weight: 400;
    color: #212121;

}

.blog-card-box .card-text {
    clear: both;
    margin-top: .5em;
    color: #9fa3a7;
    font-size: 14px;
    font-weight: 400;
}

.blog-card-box .card-footer {
    font-size: 12px;
    position: static;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: .75em 1em;
    color: #9fa3a7;
    background: inherit;
    border: 0;
}

.blog-card-box.bg-yellow {
    background: #ffc80a;
}

.blog-card-box.bg-yellow .card-title,
.blog-card-box.bg-yellow .card-text,
.blog-card-box.bg-yellow .card-footer,
.blog-card-box.bg-darked .card-title,
.blog-card-box.bg-darked .card-text,
.blog-card-box.bg-darked .card-footer {
    color: #ffffff;
}

.blog-card-box.bg-darked {
    background: #292929;
}

/*BLOG*/
/*ÜRÜNLER*/
.filtre-wrapper {
    background: #F7F7F7;
}

.custom-select {
    position: relative;
    padding: 0;
    border: 0;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: #F7F7F7;
    color: #343e5c;
    border-left: 1px solid #cccccc;
    font-size: 14px;
    text-align: center;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid #343e5c;
    border-color: #343e5c transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #343e5c transparent;
    top: 7px;
}

.select-items div, .select-selected {
    color: #343e5c;
    padding: 8px 16px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: #F7F7F7;;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.filtre-btn {
    font-weight: 800;
    font-size: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

.urunler-images-box ul.urunler-images-box-list {
    font-size: 12px;
    color: #333333;
    font-weight: 400;
}

.urunler-images-box ul.urunler-images-box-list li .fa-circle {
    font-size: 6px;
    vertical-align: middle;
}

.urunler-images-box span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 235px;
    max-width: 100%;
}

.urun-guc {
    width: 100%;
}

.urun-page-list-content {
    -webkit-box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.2);
    box-shadow: 0 30px 40px 0 rgba(28, 30, 35, 0.2);
    background: #ffffff;
    margin-bottom: 50px;
}

.urun-guc .guc-box {
    font-size: 13px;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 5px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin: 4px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;

}

.urun-guc .guc-box.active {
    background: #212AA0;
    color: #ffffff;
}

/*ÜRÜNLER*/


@media screen and (max-width: 767px) {
    #home-slider .swiper-slide .images .swiper-slide-image-text {
        font-size: 1.5em;
    }

    .urun-detay-text {
        padding-left: 20px;
    }

    .urun-ozellikler-wrapper {
        margin-top: 100px;
    }


    .urun-detay-slider-item img {
        width: 100%;
    }


}

@media screen and (max-width: 991px) {
    .swiper-slide .images {
        background-size: cover !important;
    }

    ul.mobile-social {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    ul.mobile-social li {
        margin-left: 20px;
    }

    ul.mobile-social li:first-child {
        margin-left: 0;
    }

    #home-slider-two {
        padding-left: 0;
    }

    .urun-detay-slider-item {
        text-align: left;
        width: inherit;
    }

    #home-slider-two .slide-bg-grey .swiper-slide p {
        font-size: 14px;
    }

    .section-sambros-three .home-page-brosur {
        min-height: 235px;
    }

    .section-sambros-three .home-page-brosur img {
        width: 20%;
    }

    .custom-select {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-height: 40px;
    }

    .filtre-btn {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        min-height: 50px;
    }

    #home-slider-two .swiper-button-next, #home-slider-two .swiper-button-prev {
        width: 70%;

    }


}

@media screen and (min-width: 992px) {
    .swiper-slide .images.two-slider .swiper-slide-caption {
        margin-top: 160px;
    }
}

@media screen and (min-width: 1199px) {
    .swiper-slide-caption {
        padding-top: 100px;
    }

}

.ozellik-sec:hover {
    color: #fff !important;
}
