.slider {
    background-color: var(--alman-kurdu-black);
    display: flex;
    min-height: calc(100vh - 93px);
    transition: min-height .2s;
}

.slider-bg {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.slider-head {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
}

.slider-text {
    max-width: 515px;

}

.slider-text-head h1 {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 50px;
    color: white;
}

.slider-text-head p {
    color: white;
    font-size: 18px;
}

.slider-img {
    margin-left: auto;
}

.slider-text-btn {
    display: flex;
}

.slider-bottom {
    display: flex;
    align-items: center;
    -webkit-column-gap: 1.55rem;
    column-gap: 1.55rem;
    margin: 40px 0;
}

.slider-bottom-item-point {
    margin-top: 5px;
}

.slider-bottom-item-point span {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.slider-bottom-item-link {
    margin-top: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    -webkit-column-gap: 0.75rem;
    column-gap: 0.75rem;
    transition: transform .3s;
}

.slider-bottom-item-link-text {
    color: white;
    font-size: 12px;
    font-weight: 300;
    transition: transform .3s;
    opacity: .7;
}

.slider-bottom-item-link-icon {
    width: 18px;
    transition: transform .3s;
    display: flex;
}

.slider-bottom-item:hover .slider-bottom-item-link-text {
    color: var(--orange);
    transition: transform .3s;
}

.slider-bottom-item:hover .slider-bottom-item-link-icon {
    transform: translateX(5px);
    transition: transform .3s;
}

.slider-bottom-item:hover .slider-bottom-item-link-icon svg path {
    fill: var(--orange);
    transition: transform .3s;
}

.slider-bottom-left {
    display: flex;
    align-items: center;
    -webkit-column-gap: 2rem;
    column-gap: 2rem;
}

.slider-bottom-center {
    height: 100%;
    width: 1px;
    background-color: var(--gray);
}

.slider-bottom-right {
    display: flex;
    align-items: center;
    -webkit-column-gap: 1.25rem;
    column-gap: 1.25rem;
    transition: transform .3s;
}

.slider-bottom-project-head {
    font-size: 40px;
    font-weight: 600;
    color: var(--yellow);
}

.slider-bottom-project-desc {
    margin-top: 0px;
    font-size: 20px;
    font-weight: 300;
    color: white;
}

.slider-bottom-item-img {
    max-width: 130px;
}

@media only screen and (max-width: 992px) {
    .slider-head {
        flex-direction: column;
    }

    .slider-text {
        max-width: unset;
    }

    .slider-img {
        margin-left: unset;
        margin-top: 25px;
    }

    .slider-bg {
        padding-top: 30px;
    }

    main {
        margin-top: 66px;
    }
}

@media only screen and (max-width: 768px) {
    .slider-text-head h1 {
        font-size: 40px;
    }

    .slider-text-head p {
        font-size: 16px;
    }
    .slider{
        margin-top: 65px;
        min-height: calc(100dvh - 65px);
    }
}

@media only screen and (max-width: 576px) {
    .slider{
        min-height: unset;
    }
    .slider-bottom {
        display: block;
    }

    .slider-bottom-center {
        display: none;
    }
    .slider-text-head h1{
        font-size: 31px;
    }
    .slider-text-head p{
        font-size: 14px;
    }
    .btn-orange{
        font-size: 14px;
        padding: 12px 8px;
        border-radius: 8px;
    }
    .btn-tra{
        font-size: 14px;
        padding: 12px 8px;
        border-radius: 8px;
    }
    .slider-bottom-right{
        display: none;
    }
}