﻿.main-carousel .carousel-inner .carousel-caption {
    top: 105px;
    max-width: 100%;
    width: 100%;
    height: calc(100% - 195px);
    margin: 0 auto;
    left: 50%;
    right: unset;
    transform: translate(-50%, 0);
    text-align: start;
    padding-left: 202px;
    padding-right: 202px;
    z-index: 1;
}

.carousel-text {
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    width: 582px;
    max-width: 100%;
    row-gap: 32px;
}

.carousel-logo, .carousel-logo img {
    max-width: 270px;
    object-fit: contain;
}

.carousel-title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 68px;
    line-height: 78px;
    color: #FFFFFF;
}

.carousel-description {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.carousel-description-and-button {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

    .carousel-description-and-button .carousel-button a {
        font-family: 'Montserrat';
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 2px;
        color: #3A394F;
        text-decoration: none;
        display: flex;
        align-items: center;
        column-gap: 10px;
        padding: 16px 30px;
        background: #fff;
        width: max-content;
        max-width: 100%;
    }

.carousel-indicator-and-buttons {
    width: 100%;
    max-width: 100%;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 202px;
    padding-right: 202px;
}

    .carousel-indicator-and-buttons .carousel-indicators {
        position: unset;
        margin: 0;
        width: max-content;
        max-width: 100%;
        border-bottom: 1px solid #ffffff63;
    }

        .carousel-indicator-and-buttons .carousel-indicators button {
            position: unset;
            padding: 4px 18px;
            margin: 0;
            border: none;
            text-indent: unset;
            color: #FFFFFF;
            height: unset;
            width: max-content;
            background: none;
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
            font-family: 'Montserrat';
            font-weight: 600;
            font-size: 14px;
            line-height: 22px;
        }

        .carousel-indicator-and-buttons .carousel-indicators button.active {
            background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
        }

    .carousel-indicator-and-buttons .carousel-buttons {
        display: flex;
        align-items: center;
        column-gap: 7px;
    }

        .carousel-indicator-and-buttons .carousel-buttons button {
            position: unset;
            padding: 30px 74px;
            width: max-content;
            max-width: 100%;
            backdrop-filter: blur(4px);
            border: 2px solid #FFFFFF57;
            background: #FFFFFF14;
            opacity: 1;
            transition: .4s;
        }

            .carousel-indicator-and-buttons .carousel-buttons button:hover {
                background: #FFFFFF;
                border: 2px solid #FFFFFF;
                transition: .4s;
            }

                .carousel-indicator-and-buttons .carousel-buttons button svg path
                {
                    transition: .4s;
                }
                .carousel-indicator-and-buttons .carousel-buttons button:hover svg path {
                    fill: #EA711F;
                    transition: .4s;
                }


.main-carousel, .main-carousel .carousel-inner, .main-carousel .carousel-inner .carousel-item, .main-carousel .carousel-inner .carousel-item > img {
    height: 100vh;
    object-fit: cover;
}

    .main-carousel .carousel-inner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #00000033;
    }

/*Çözümler*/

.solutions-area {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #1818211F;
    border-left: 1px solid #1818211F;
}

.solution-box-link
{
    text-decoration: none;
}

.solution-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 61px;
    border-right: 1px solid #1818211F;
    border-bottom: 1px solid #1818211F;
    position: relative;
    height: 310px;
}

.solution-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    padding: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    overflow: hidden;
    overflow-y: auto;
}

/* width */
    .solution-box-overlay::-webkit-scrollbar {
        width: 6px;
    }

/* Track */
    .solution-box-overlay::-webkit-scrollbar-track {
        background: #f9f9f9;
    }

/* Handle */
    .solution-box-overlay::-webkit-scrollbar-thumb {
        background: #ed7612;
    }

    /* Handle on hover */
        .solution-box-overlay::-webkit-scrollbar-thumb:hover {
            background: #ed7612;
        }


.solution-box:hover .solution-box-overlay {
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

.solution-box-overlay-icon-and-detail-button {
    display: flex;
    column-gap: 10px;
    justify-content: space-between;
}

.solution-box-overlay-icon-and-title {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.solution-box-overlay-title {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

.solution-box-overlay-icon img {
    filter: brightness(5);
}

.solution-box-overlay-detail-button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
}

.solution-box-overlay-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.solution-box-overlay-button {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 11px;
    line-height: 19px;
    padding: 10px 20px;
    border: 1px solid #FFFFFF29;
    border-radius: 50px;
    background: #FFFFFF1F;
    color: #fff;
    transition: .4s;
}

    .solution-box-overlay-button:hover {
        background: #FFFFFF;
        border: 1px solid #FFFFFF;
        color: #3A394F;
        transition: .4s;
    }


.solution-box-title {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #3A394F;
}

.solutions-area > .solution-box {
    padding-bottom: 54px;
    justify-content: end;
}

.solution-box-button a {
    padding: 16px 30px;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
    text-decoration: none;
    color: #FFFFFF;
}

.mobile-solutions-button a {
    width: max-content;
    max-width: 100%;
    margin: auto;
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
    padding: 16px 30px;
    text-decoration: none;
}


/*Bayilik Alanı*/

.dealership-box-area {
    position: relative;
}

.dealership-box-area-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .dealership-box-area-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.dealership-box {
    position: relative;
    padding: 140px 62px;
    height: 100%;
    display: flex;
    align-items: center;
}

.dealership-box-content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    position: relative;
    z-index: 1;
    width: 410px;
    max-width: 100%;
}

.dealership-box-title-area {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.dealership-box-description-and-button {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.dealership-box-sup-title {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 7px;
}

    .dealership-box-sup-title::before {
        width: 9px;
        height: 9px;
        content: "";
        background: #3A394F;
        border-radius: 50px;
    }

.dealership-box-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 52px;
    line-height: 65px;
    color: #FFFFFF;
}
    .dealership-box-title * {
        color: #fff !important;
    }
.dealership-box-description {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #EBEBED;
}

.dealership-box-button a, .dealership-box-button button {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #fff!important;
    padding: 16px 30px;
    background: #181821;
    width: max-content;
    max-width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    outline: none;
}



.dealership-box-area .row .col-xl-6:first-child .dealership-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ED7512 0%, #f06c09b5 100.01%);
}

.dealership-box-area .row .col-xl-6:last-child .dealership-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3a394fe3 0%, #181821e3 100%);
}

.dealership-box-area .row .col-xl-6:last-child .dealership-box .dealership-box-sup-title::before {
    background: #EA711F;
}

.dealership-box-area .row .col-xl-6:last-child .dealership-box .dealership-box-button a {
    background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
}


/*Markalar*/

.brands-area {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    border-top: 1px solid #1818211F;
    border-left: 1px solid #1818211F;
}

.brand-card {
    aspect-ratio: 1/1;
    border-right: 1px solid #1818211F;
    border-bottom: 1px solid #1818211F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    background: white;
}

    .brand-card img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        filter: grayscale(100%) contrast(0.5) brightness(1.2);
        transition: all 0.4s ease;
        opacity: 0.6;
    }

    .brand-card:hover img {
        filter: none;
        opacity: 1;
    }


.mobile-brands-button a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #FFFFFF;
    padding: 16px 30px;
    display: none;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
    text-decoration: none;
    margin: auto;
    margin-top: 42px;
}

    /*Hakkımızda*/

.home-about-us-card {
    background: #F6F5F7;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}

    .home-about-us-card p {
        margin: 0;
    }

.home-about-us-card-value {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    color: #3A394F;
}

.home-about-us-card-title {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #3A394F;
}

.home-page-about-us-text {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.home-page-about-us-title-area {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.home-page-about-us-description-and-button {
    display: flex;
    flex-direction: column;
    row-gap: 42px;
}

.home-page-about-us-sup-title {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    display: flex;
    align-items: center;
    column-gap: 7px;
}

    .home-page-about-us-sup-title::before {
        content: "";
        width: 9px;
        height: 9px;
        background: #EA711F;
        border-radius: 50px;
    }

.home-page-about-us-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 52px;
    line-height: 68px;
    color: #333333;
}

.home-page-about-us-description {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #3A394F;
}

.home-page-about-us-button a {
    padding: 16px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    max-width: 100%;
    background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}


/*Blog*/

.blog-card-link {
    text-decoration: none;
}

.blog-card {
    display: flex;
    column-gap: 20px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 9px;
}

.blog-card-image, .blog-card-image img {
    width: 340px !important;
    object-fit: cover;
    min-width: 340px;
}

    .blog-card-image img
    {
        height: 100%;
        object-fit: cover;
    }

    .blog-card-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 16px 0;
        padding-right: 16px;
        row-gap: 42px;
    }

.blog-card-datetime-and-title {
    display: flex;
    flex-direction: column;
    row-gap: 42px;
}

.blog-card-date-and-time {
    display: flex;
    align-items: center;
    column-gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 12px;
}

.blog-card-date {
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-transform: capitalize;
    color: #7B7A89;
}

.blog-card-time {
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-transform: capitalize;
    color: #7B7A89;
}

.blog-card-title {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #3A394F;
}

.blog-card-button {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    display: flex;
    align-items: center;
    column-gap: 12px;
    color: #3A394F;
    border-bottom: 1px solid #EA711F;
    width: max-content;
    max-width: 100%;
    padding-bottom: 10px;
}

.home-blog-carousel .owl-dots {
    margin-top: 32px !important;
    display: flex;
    justify-content: center;
    column-gap: 6px;
}

.home-blog-carousel .owl-dots button span {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
    opacity: 1 !important;
    background: #D9D9D9 !important;
}

.home-blog-carousel .owl-dots button.active span {
    background: #EA711F !important;
}

.blog-carousel-and-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 42px;
}

.home-blog-button a {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
    padding: 16px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

@media only screen and (max-width: 1700px)
{
    .blog-card-image, .blog-card-image img {
        width: 280px !important;
        object-fit: cover;
        min-width: 280px;
    }
}

@media only screen and (max-width: 1580px)
{
    .blog-card-title {
        font-size: 16px;
        line-height: 24px;
    }

    .blog-card-image, .blog-card-image img {
        width: 250px !important;
        object-fit: cover;
        min-width: 250px;
    }

    .blog-card-text {
        padding-right: 0px;
    }
}

@media only screen and (max-width: 1399px)
{
    .solutions-area {
        grid-template-columns: repeat(3,1fr);
    }

    .custom-container-title {
        font-size: 32px;
        line-height: 42px;
    }

    .home-page-about-us-title {
        font-size: 32px;
        line-height: 42px;
    }

    .home-page-about-us-description {
        font-size: 15px;
        line-height: 24px;
    }

    .home-about-us-card-value {
        font-size: 40px;
        line-height: 50px;
    }

    .home-about-us-card {
        row-gap: 10px;
    }

    .dealership-box-title * {
        font-size: 32px !important;
        line-height: 45px !important;
    }

    .dealership-box-description {
        font-size: 16px;
        line-height: 24px;
    }

    .dealership-box {
        padding: 70px 62px;
    }

    .dealership-box-button a {
        font-size: 14px;
        line-height: 22px;
        padding: 12px 24px;
    }

    .custom-container-description {
        font-size: 16px;
        line-height: 24px;
    }

    .home-page-about-us-sup-title {
        font-size: 14px;
        line-height: 22px;
    }

    .home-page-about-us-title * {
        font-size: 32px !important;
        line-height: 42px !important;
    }

    .home-page-about-us-description * {
        font-size: 15px !important;
        line-height: 24px !important;
    }

    .home-page-about-us-button a {
        padding: 12px 24px;
        font-size: 14px;
        line-height: 22px;
    }

    .blog-card-image, .blog-card-image img {
        width: 220px !important;
        object-fit: cover;
        min-width: 220px;
    }

    .blog-card-button {
        font-size: 14px;
        line-height: 22px;
    }

}


@media only screen and (max-width: 1366px)
{
    .main-carousel .carousel-inner .carousel-caption {
        padding-right: 102px;
    }

    .carousel-indicator-and-buttons {
        padding-right: 102px;
    }
}

@media only screen and (max-width: 1280px) {
    .main-carousel .carousel-inner .carousel-caption {
        padding-right: 102px;
        padding-left: 160px;
    }

    .carousel-indicator-and-buttons {
        padding-right: 102px;
        padding-left: 160px;
    }

    
}

@media only screen and (max-width: 1199px)
{
    .main-carousel .carousel-inner .carousel-caption {
        padding-right: 40px;
        padding-left: 40px;
    }

    .carousel-indicator-and-buttons {
        padding-right: 40px;
        padding-left: 40px;
    }

    .carousel-text {
        height: 100%;
        width: 450px;
    }

    .carousel-title {
        font-size: 42px;
        line-height: 52px;
    }

    .carousel-description {
        font-size: 15px;
        line-height: 23px;
    }

    .carousel-description-and-button .carousel-button a {
        font-size: 14px;
        line-height: 22px;
        padding: 12px 20px;
    }

    .carousel-indicator-and-buttons .carousel-buttons button {
        padding: 20px 48px;
    }
}

@media only screen and (max-width: 991px)
{
    .solutions-area {
        grid-template-columns: repeat(2,1fr);
    }

    .solution-box {
        height: 100%;
    }

    .solution-box-icon {
        display: none;
    }

    .solution-box-title {
        display: none;
    }

    .solution-box-overlay {
        opacity: 1;
        visibility: visible;
        background: #fff;
        position: unset;
    }

    .solution-box-overlay-icon img {
        filter: unset;
    }

    .solution-box-overlay-title {
        color: #3A394F;
    }

    .solution-box-overlay-button {
        border: 1px solid #ea711f57;
        background: #FFF;
        color: #3A394F;
    }

        .solution-box-overlay-button:hover {
            background: #FFFFFF;
            border: 1px solid #ea711f57;
            color: #3A394F;
        }

    .solution-box-overlay-detail-button {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #EA711F;
        border-radius: 50px;
    }

    .solution-box-overlay-detail-button svg path {
        stroke: #fff;
    }

    .carousel-buttons
    {
        display: none!important;
    }

    .carousel-indicator-and-buttons {
        padding-bottom: 54px;
    }

    .solutions-area > .solution-box {
        display: none;
    }

    .mobile-solutions-button a 
    {
        display: flex;
    }

    .dealership-box {
        padding: 80px 42px;
    }

    .dealership-box-title {
        font-size: 36px;
        line-height: 50px;
    }

    .dealership-box-content {
        row-gap: 20px;
    }

    .dealership-box-title-area {
        row-gap: 4px;
    }

    .dealership-box-description-and-button {
        row-gap: 20px;
    }

    .dealership-box-button a {
        font-size: 14px;
        line-height: 22px;
        padding: 14px 20px;
    }

    .custom-container-button
    {
        display: none;
    }

    .mobile-brands-button a {
        display: flex;
    }

    .blog-card {
        flex-direction: column;
        row-gap: 24px;
    }

    .blog-card-image, .blog-card-image img {
        width: 100% !important;
        object-fit: cover;
        min-width: 100%;
        aspect-ratio: 2/1.5;
    }

}

@media only screen and (max-width: 767px)
{
    .main-carousel .carousel-inner .carousel-caption {
        height: calc(100% - 208px);
    }

    .carousel-indicator-and-buttons {
        flex-direction: column;
        align-items: start;
        row-gap: 12px;
    }

    .solutions-area {
        grid-template-columns: repeat(1,1fr);
    }

    .brands-area {
        grid-template-columns: repeat(4,1fr);
    }
}

@media only screen and (max-width: 575px)
{
    .dealership-box {
        padding: 48px 42px;
    }

    .dealership-box-title {
        font-size: 24px;
        line-height: 40px;
    }

    .dealership-box-sup-title {
        font-size: 12px;
        line-height: 20px;
    }

    .dealership-box-description {
        font-size: 15px;
        line-height: 23px;
    }

    .dealership-box-button a {
        font-size: 12px;
        line-height: 20px;
        padding: 12px 16px;
    }

    .brands-area {
        grid-template-columns: repeat(3,1fr);
    }
}

@media only screen and (max-width: 475px)
{
    .carousel-indicator-and-buttons .carousel-buttons {
        width: 100%;
    }

        .carousel-indicator-and-buttons .carousel-buttons button {
            padding: 20px 20px;
            width: 100%;
        }

    .brands-area {
        grid-template-columns: repeat(2,1fr);
    }
}
