@charset "utf-8";
/*!
 * custom.css
 * Webkokteyli - 2022
 */


/* root */
:root{
    --color-primary: #B70D0C;
}

/* body */
body{
    font-family: 'Mulish', sans-serif;
}

/* button */
.buttons {
    display: flex;
}
.button {
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.9375rem;
    padding: 0 40px;
    height: 44px;
    transition: all .15s ease-in-out;
}
.button i {
    margin-left: 10px;
    font-size: 0.8125rem;
}
.button.button-hollow {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.btn:first-child:hover,
:not(.btn-check)+.btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    filter: brightness(1.1);
}


/* a */
a, a:hover, a:focus, a:active {
    color: inherit;
    text-decoration: none;
}

/* headers */
.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
    font-weight: 600;
}
.h1, h1 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2.2rem;
}
.h2, h2 {
    font-weight: 700;
    font-size: 2rem;
}
.h3, h3 {
    font-weight: 700;
    font-size: 1.75rem;
}
.h4, h4 {
    font-size: 1.5rem;
}
.h5, h5 {
    font-size: 1.25rem;
}
.h6, h6 {
    font-size: 1.1rem;
}
.headers .h {
    margin-bottom: 0;
}
.headers.headers-styled {
    position: relative;
    padding-bottom: 30px;
}
.headers.headers-styled:before,
.headers.headers-styled:after {
    content: "";
    display: block;
    width: 100px;
    height: 0;
    background-color: #910a09;
    position: absolute;
    bottom: 0;
    border-width: 6px 6px 0 0;
    border-style: solid;
    border-color: transparent #fff #fff transparent;
}
.headers.headers-styled:before {
    bottom: 7px;
    width: 140px;
    background-color: #c31711;
}


/* topbar */
.topbar {
    z-index: 999;
    position: relative;
}
.topbar .topbar-content {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    font-size: 0.8125rem;
    font-weight: 700;
    height: 50px;
    display: flex;
    align-items: center;
}
.topbar ul.social-list li.list-inline-item {
    text-transform: lowercase;
}
.topbar ul li.list-inline-item:not(:last-child) {
    margin-right: 40px;
    position: relative;
}
.topbar ul li.list-inline-item:not(:last-child):after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--color-primary);
    display: block;
    border-radius: 50%;
    position: absolute;
    right: -24px;
    top: 8px;
}
.topbar-contact {
    display: flex;
}

/* lang */
.topbar-tools {
    margin-left: 20px;
}
.language-changer-wrapper {
    position: relative;
    width: 50px;
    height: 20px;
    overflow: hidden;
    padding: 4px;
}
.language-changer-wrapper:hover {
    overflow: visible;
}
.language-changer-wrapper:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 1px solid var(--color-primary);
    transform: rotate(45deg);
    border-top: 0;
    border-left: 0;
    /* position: absolute; */
    /* margin: 0 0 -1px 7px; */
    right: 3px;
    top: 5px;
    position: absolute;
}
.language-changer-wrapper .language-dropdown {
    position: absolute;
    top: -3px;
    margin: 0;
    left: 0;
    padding: 4px 6px;
    border-radius: 3px;
    /* width: 100%; */
    opacity: 0.8;
}
.language-changer-wrapper:hover .language-dropdown {
    background-color: #efe3e3;
    background-color: #eee;
    opacity: 1;
}
.language-changer-wrapper .language-dropdown li:not(:last-child) {
    margin-bottom: 7px;
}
.language-changer-wrapper .language-dropdown li a {
}
.language-changer-wrapper .language-dropdown li a img {
    width: 25px;
}

/* navbar */
header {
    position: absolute;
    top: 50px;
    width: 100%;
    background-color: #fff;
    z-index: 16;
    box-shadow: 0 0 10px 2px #00000000;
}
header.affix {
    position: fixed;
    top: 0;
    box-shadow: 0 0 10px 2px #00000010;
}
.navbar {
    padding: 0;
    height: 90px;
    transition: height .2s ease-in-out;
}
header.affix .navbar {
    height: 72px;
}
.navbar .navbar-brand {
    padding: 0;
    margin: 0;
    margin-top: -9px;
}
.navbar-light .navbar-nav .nav-link {
    font-size: 0.9375rem;
    /* font-size: 0.875rem; */
    font-weight: 600;
    color: #000;
}
.navbar-expand-md .navbar-nav .nav-item {
    margin-left: 25px;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--color-primary);
    font-weight: 700;
    padding: 8px 7px;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

/* drop */
.dropdown-toggle::after {
    margin-left: 7px;
    vertical-align: middle;
}
.dropdown-item {
    font-size: 0.875rem;
    padding: 8px 18px;
    font-weight: 600;
}
.dropdown-menu[data-bs-popper] {
    border-radius: 0;
    box-shadow: 0 0 10px 2px #00000010;
    border: 0;
    top: 50px;
}
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--color-primary);
}

/* carousel */
.carousel-item:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(35deg, #000 20%, #0000 70%);
    opacity: 0.6;
}
.carousel-captions {
    position: absolute;
    bottom: 10vh;
    width: 100%;
    color: #fff;
}
.carousel-captions .h {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.carousel-captions .h:before {
    content: "";
    background-image: url(../images/logo/tkb-makina-icon-02.png);
    width: 54px;
    height: 54px;
    position: absolute;
    z-index: -1;
    left: -50px;
    top: -10px;
    opacity: 0.8;
}
.carousel-captions .text-content {
    width: 38%;
    width: 46%;
    font-size: 1.0625rem;
    font-weight: 300;
    color: #fffc;
}
.carousel-item > img {
    /* height: 785px; */
    max-height: 785px;
    object-fit: cover;
    width: 100%;
    height: 81.1vh;
}
.carousel-controls {
    display: flex;
    width: 30px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border: 1px solid #b70d0c75;
    /* left: -45px; */
    top: 50%;
    margin-top: -20px;
    margin: 0 50px;
    opacity: 1;
    /* background-color: #f002; */
}
.carousel-controls span {
    filter: invert(28%) sepia(98%) saturate(6619%) hue-rotate(355deg) brightness(99%) contrast(121%);
    width: 18px;
}
.carousel-indicators [data-bs-target] {
    width: 13px;
    opacity: 0.2;
}
.carousel-indicators .active {
    background-color: var(--color-primary);
    opacity: 1;
}

/* separator */
.separator-content {
    position: relative;
}
.separator-content > img {
    height: 34vh;
    max-height: unset;
}
.breadcrumbs {
    position: absolute;
    bottom: 30px;
    z-index: 1;
    width: 100%;
    color: #fff;
}
.breadcrumbs .breadcrumb li a {
    color: #444;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}
.breadcrumb-item+.breadcrumb-item::before {
    border-color: #fff;
    border-color: var(--color-primary);
    width: 5px;
    height: 5px;
    margin-right: 10px;
}
.breadcrumbs .breadcrumb {
    display: inline-flex;
    background-color: #fff;
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--color-primary);
}
.breadcrumbs ol li {
    display: inline-flex;
    position: relative;
}
.breadcrumbs > .container {
    display: flex;
    justify-content: center;
}
.breadcrumbs .breadcrumb li:last-child a {
    color: var(--color-primary);
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 4px;
}


/* card */
.card {
    border: 0;
    border-radius: 0;
}
.card-body {
    padding: 24px 30px;
}

.card-body p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #999;
    transition: color .2s ease-in-out;
}
.card-body .h.card-title {
    font-size: 1.3rem;
    /* font-weight: 700; */
    margin-bottom: 7px;
}
.card-img-top {
    border-radius: 0;
    min-height: 345px;
    object-fit: cover;
}

.body-arrow {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all .2s ease-in-out;
}
.body-arrow i {
    font-size: 18px;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    margin-left: -80px;
    transition: all .2s ease-in-out;
    border-radius: 1px;
}
.body-arrow .text-content {
    position: absolute;
    left: 30px;
    transition: left .2s ease-in-out;
}
a:hover .body-arrow {
    background-color: var(--color-primary);
    color: #fff;
}
a:hover .body-arrow i {
    opacity: 1;
    margin-left: 0;
    background-color: #ffff;
    color: var(--color-primary);
}
a:hover .body-arrow .text-content {
    left: 100px;
}
a:hover .card-body p {
    color: #fff9;
}
a:hover .body-arrow .h {
    color: #fff;
}

/* content */
.text-content {
    font-weight: 400;
    line-height: 2;
    color: #616161;
}
.section{
    margin: 6rem 0;
}
.section.section-bg-gray {
    margin: 0;
    padding: 3rem 0;
    padding: 6rem 0;
    background-color: #f4f4f7;
}
.section.section-home {
    padding: 6rem 0;
}
.section.section-bg-gray-gradient {
    margin: 0;
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 90%, #f4f4f7);
}

/* slick */
.slick-slide img {
    max-width: 100%;
    max-height: 100%;
}
.row.slick-slider {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-next,
.slick-prev {
    display: block;
    width: 30px;
    height: 40px;
    border: 1px solid var(--color-primary);
    left: -45px;
}
.slick-next {
    left: auto;
    right: -45px;
}
.slick-next:before,
.slick-prev:before {
    color: var(--color-primary);
}

/*  */
.about-cards-area {
    margin-top: 60px;
}
.about-cards-area .card {
    background-color: #f3f3f3;
    min-height: 194px;
    cursor: default;
}
.about-cards-area .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
}
.about-cards-area .card-body .icon {
    padding: 11px;
    background-color: #fff8;
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}
.about-cards-area .card-body .text-content {
    font-size: 14px;
    line-height: 2;
    color: #888;
}
.about-cards-area .card-body > div {
    flex: 1 1 auto;
}
.about-cards-area .card-body .icon img {
    width: 48px;
    filter: grayscale(0) brightness(1);
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 64px;
}
.about-cards-area .card-body p {
}
.about-cards-area .card:hover .card-body .icon {
    background-color: #b70d0c;
}
.about-cards-area .card:hover .card-body .icon img {filter: grayscale(1) brightness(999);}


/* products */
.product-groups {
    margin-top: 70px;
}
.section.section-home.section-product-groups {
    background-image: url(../images/yapi/bg-pattern-01.png);
    background-repeat: no-repeat;
    background-position: 50% -50px;
    padding: 120px 0;
}
.section-product-groups .card img {
    max-height: 200px;
}
.section-product-groups .card-body {
    padding: 30px 35px;
}
.section-product-groups .card-body .text-content .h {
    margin-bottom: 2rem;
}
.section-product-groups .card-body .text-content ul {
    column-count: 2;
    margin: 0 0 10px;
}
.section-product-groups .col-sm-12 .card-body .text-content ul {
    column-count: 3;
}


/* references */
.references-all {
    margin: 80px 0 60px;
}
.references-all .slick-list {
    padding: 0 1px;
}
.references-single {
    background-color: #fff;
    width: 100%;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    /* border-right: 0; */
    padding: 40px;
    position: relative;
}
.references-single:before {
    content: "";
    position: absolute;
    height: 100%;
    border-left: 1px solid #fff;
    left: -2px;
}
.references-single img {
    max-width: 100%;
    max-height: 100%;
}
.references-all + .buttons {
    justify-content: flex-end;
}
.references-all .row.slick-slider {
    margin: 0;
}
.references-all .slick-slide {
    margin: 0;
}
.section.section-home.section-references {
    background-image: url(../images/yapi/bg-pattern-02.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    padding: 120px 0;
    margin: 0;
    /* padding: 3rem 0; */
    padding-bottom: 270px;
}

/* certs */
.section.section-home.section-certificates {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100%;
    margin-top: -140px;
}
.section.section-home .certificates-all {
    background-color: #98130f;
    color: #fff;
    position: relative;
    padding: 60px 0;
    background-image: url(../images/yapi/bg-pattern-04.png);
    background-position: 100% 50%;
    background-repeat: no-repeat;
}
.section.section-home .certificates-all:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 100%;
    background-color: #98130f;
    top: 0;
}
.slick-content-all.slick-certs-all {
    padding-right: 30px;
}
.section.section-home .certificates-all .text-content {
    color: #fffc;
}
.section.section-home .certificates-all .buttons {
    margin-top: 35px;
}
.section.section-home .certificates-all .button {
    border-color: #fff3;
    color: #fffe;
}

/* news */
.body-arrow-top {
    padding: 32px;
    position: relative;
    z-index: 1;
    overflow: visible;
    /* border-top: 1px solid #eee; */
}
.body-arrow-top i {
    opacity: 1;
    margin: 0;
    /* margin-top: -80px; */
    position: absolute;
    top: -32px;
    z-index: 1;
    background-color: var(--color-primary);
    color: #fff;
}
.body-arrow-top .text-content {
    position: relative;
    left: 0;
}
.slick-news-single img {
    filter: brightness(0.95);
    min-height: auto;
    min-height: 240px;
    height: 24vh;
    object-fit: cover;
}
.slick-news-single a:hover .body-arrow .text-content {
    left: 0;
}
.section.section-home.section-news {
    background-image: url(../images/yapi/bg-pattern-03.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    padding: 100px 0 60px;
    padding-top: 270px;
}
.slick-news-all {
    margin: 80px 0 50px;
}

/* news page */
.headers .h + span {
    display: inline-block;
    margin-top: 9px;
    color: #666;
}
.section-news-detail .text-content {
    margin-top: 4rem;
}

/* cert */
.certificate-single {
    /* width: fit-content; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.certificate-single a {
    display: block;
}
.certificate-single img {
    filter: brightness(0.97);
    box-shadow: 0 0 8px -3px #0006;
}

/* refs */
.section-home .references-single:before {
    left: -1px;
}
.section-references .references-single:after {
    content: "";
    display: block;
    width: 100%;
    width: calc(100% + 1px);
    border-top: 1px solid #fff;
    position: absolute;
    top: -2px;
    left: 0px;
}

/* contact */
.contact-info {
}
.contact-info .contact-list {
    font-size: 0.9375rem;
    margin-top: 50px;
}
.contact-info .contact-list > p {
    display: none;
}
.contact-info .contact-list ul li p {
    border-bottom: 1px solid #f5f5f5;
    margin: 0;
    padding: 14px 5px;
}
.contact-info .contact-list ul li:last-child p {
    border: 0;
}
.contact-info .contact-list ul li p i {
    font-size: 0.8125rem;
    width: 25px;
    color: var(--color-primary);
}
.section-contact .headers .h + span {
    margin-top: 15px;
    display: inline-block;
    font-size: 0.9375rem;
}
.contact-maps iframe {
    height: 360px;
}

.form-control {
    min-height: 46px;
    border-radius: 0;
    background-color: #f5f6f7;
    font-size: 0.9375rem;
    color: #999;
    padding: 12px 20px;
}
.contact-form-area .card {
    box-shadow: 0 0 14px -6px #9995;
}
.contact-form-area .card-body {
    padding: 40px;
}
.contact-form-area form {
}
.contact-form-area form .form-group {
    width: 50%;
    flex: 1 1 auto;
    margin-bottom: 30px;
    padding: 0 15px;
}
.contact-form-area form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex-flow: wrap;
    margin: 0 -15px;
}
.contact-form-area form .form-group:nth-child(5),
.contact-form-area form .form-group:nth-child(6),
.contact-form-area form .form-group:nth-child(7) {
    width: 100%;
}
.contact-form-area form .form-group.form-check {
    padding-left: 40px;
}
.form-control::placeholder {
    font-size: 0.9375rem;
    color: #999;
}
textarea.form-control {
    min-height: 150px;
}
.contact-form-area button {
    width: 100%;
}
label.form-check-label {
    font-size: 0.8125rem;
    font-weight: 600;
}


/* footer */
.footer-content {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #999;
    padding: 60px 0;
}
.footer-info img {
    max-height: 31px;
    margin-bottom: 30px;
}
.footer-info .text-content {
    padding-right: 60px;
}
.footer-content .headers .h {
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-primary);
}
.footer-content .contact-list > p {
    display: none;
}
.footer-content .contact-list {
    padding-right: 100px;
}
.footer-copyright {
    background-color: #f4f4f7;
    background-color: #f7f7fb;
}
.footer-copyright .container > div {
    display: flex;
    min-height: 70px;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright p {
    margin: 0;
    font-size: 0.875rem;
    color: #999;
}
.footer-copyright p i {
    font-size: 0.75rem;
    color: var(--color-primary);
    margin: 0 4px;
    opacity: 0.7;
}
.footer-content ul {
    line-height: 2.3;
}
.footer-content .contact-list ul {
    line-height: 1.5;
}
.footer-content ul.social-list li {
    margin-right: 25px;
}
.footer-content ul.social-list li a:hover {
    color: var(--color-primary);
}
.grecaptcha-badge {
    display: none;
}


@media (max-width: 768px){

    html, body {
        font-size: 14px;
    }
    .h1, h1 {
        font-size: 1.875rem;
    }
    .h2, h2 {
        font-size: 1.5rem;
    }
    .h3, h3 {
        font-size: 1.375rem;
    }
    .h4, h4 {
        font-size: 1.25rem;
    }
    .h5, h5 {
        font-size: 1.125rem;
    }
    .h6, h6 {
        font-size: 1rem;
    }
    .topbar {
        display: none;
    }
    header {
        top: 0;
        /* position: relative; */
    }
    .slider {
        padding-top: 70px;
    }
    .carousel-item > img {
        height: 45vh;
    }
    .carousel-captions .text-content {
        width: auto;
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .carousel-captions .h {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        margin-left: 15px;
    }
    .carousel-captions {
        padding: 0 20px;
        bottom: 30px;
    }
    .carousel-item:before {
        opacity: 0.9;
        background: rgb(0 0 0 / 65%);
    }
    .carousel-controls {
        display: none;
    }
    ol.carousel-indicators {
        display: none;
    }
    .carousel-captions .h:before {
        width: 30px;
        height: 40px;
        background-size: contain;
        background-repeat: no-repeat;
        left: -31px;
        top: -5px;
    }
    .section.section-home.section-product-groups {
        padding: 2rem 0;
    }
    .product-groups {
        margin-top: 3rem;
    }
    .section-product-groups .card img {
        max-height: unset;
        width: 100%;
        max-width: 100%;
        min-height: 200px;
    }
    .section-product-groups .card-body {
        /* display: block; */
    }
    .section-product-groups .card-body .text-content ul {
        column-count: 1;
    }
    .section-product-groups .col-sm-12 .card-body .text-content ul {
        column-count: 1;
    }
    .section.section-home.section-references {
        padding: 2rem 0;
    }
    .section.section-home.section-certificates {
        position: relative;
        margin-top: auto;
        background-color: #98130f;
    }
    .section.section-home .certificates-all {
        padding: 3rem 1rem;
        background-color: transparent;
        background-image: unset;
    }
    .slick-content-all.slick-certs-all {
        margin-top: 3rem;
        padding-right: 0;
    }
    .section.section-home.section-news {
        padding: 2rem 0;
    }
    .slick-news-all {
        margin: 3rem 0 0;
        overflow: hidden;
    }
    .footer-content {
        padding: 2rem 1rem;
    }
    .footer-content .row > div:not(:last-child) > div {
        margin-bottom: 3rem;
    }
    .footer-copyright .container > div {
        flex-direction: column;
        min-height: auto;
        padding: 15px 0;
    }
    .separator:after {
        display: none;
    }
    .section.section-bg-gray-gradient {
        padding: 2rem 0;
    }
    .about-cards-area .card-body {
        /* flex-direction: column; */
        align-items: flex-start;
    }
    .section.section-bg-gray {
        padding: 2rem 0;
    }
    .certificate-single {
        margin-bottom: 30px;
    }
    .references-single {
        padding: 15px;
        height: 120px;
    }
    .contact-info .contact-list ul li p {
        padding-left: 30px;
        position: relative;
    }
    .contact-info .contact-list ul li p i {
        position: absolute;
        left: 8px;
        top: 17px;
    }
    .contact-info .contact-list {
        margin-top: 2rem;
    }
    .contact-maps iframe {
        width: 100%;
        height: 199px;
    }
    .contact-form-area {
        margin-top: 3rem;
    }
    .contact-form-area .card-body {
        padding: 2rem;
    }
    .contact-form-area form .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    .burger-menu .navbar-tools {
        margin-top: 30px;
        padding: 0 2.3rem;
    }
    .burger-menu .navbar-tools a {
        margin-right: 10px;
    }
    .burger-menu .navbar-tools img {
        width: 30px;
    }
    .section.section-home .certificates-all:before {
        display: none;
    }
    .slick-next,
    .slick-prev {
        left: 20px;
        z-index: 1;
        display: none !important;
    }
    .slick-next {
        left: auto;
        right: 20px;
    }
}