:root {
    --color-dark: #000;
    --theme-color: #e42020;
    --footer-bg: #000;
    --theme-bg-light: rgba(60, 23, 59, 0.1);
    --theme-bg-light-rgb: 60, 23, 59;
}

.nav-right {
	margin-left: 25px;
}

body {
	margin-top: 143.39px;
}

.header {
	position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    top: 0;
    transition: all 0.3s ease;
}

.hero-single {
	height: calc(100vh - 143.39px);
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

@media (max-width: 767px) {
    .hero-single {
    	height: calc(100vh - 143.39px);
    	padding-top: 0 !important;
    	padding-bottom: 0 !important;
    	background-position: 88% 50% !important;
    }
}

.header.header-fixed {
	top: -52.8px;
}

.about-img .img-1 {
    width: 100%;
    border-radius: 20px;
}

.line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog-item-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.footer-logo img {
    width: 350px;
    margin-bottom: 15px;
}

.navbar-brand img {
    width: 300px;
}

.header-top-contact a i {
    color: #fff;
}

.copyright .copyright-text a {
    color: #e103f2;
}

.bg {
    background: rgba(var(--theme-bg-light-rgb), 0.1);
}

.case-img::before {
    background: rgba(var(--theme-bg-light-rgb), 0.6);
}

.references-img img {
    height: 75px;
    width: 100%;
    object-fit: cover;
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: #fff;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        width: 350px;
    }
    .navbar .nav-item .dropdown-services{
        width: 350px;
        height: 30rem;
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 15px;
        padding-right: 10px;
        clip-path: inset(0px 0px 0px 0px round 15px);
    }
}

@media (max-width: 992px) {
    .main-navigation .navbar {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .navbar-brand img {
        width: 300px;
    }
}

@media (max-width: 448px) {
    .navbar-brand img {
        width: 40vh;
    }
}

/* Scrollbar tasarımı */
.dropdown-menu::-webkit-scrollbar {
    width: 8px; /* Scrollbar genişliği */
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: red; /* Scroll rengi kırmızı */
    border-radius: 10px; /* Scrollbar köşeleri yuvarlak */
}

.dropdown-menu::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Scrollbar arka planı */
    border-radius: 10px;
}