@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:wght@400;600&display=swap');

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    letter-spacing: 1.2px;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 19px;
}

h4 {
    font-size: 18.5px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 17.5px;
}

section {
    padding: 50px 0px;
}

.home-section {
    padding-bottom: 0px;
}

.contact-page {
    padding: 90px 0px;
}

header {
    background: #f9f8f8;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
	z-index: 1;
}

.main-menu {
    display: flex;
    list-style-type: none;
    gap:20px;
    margin: 0;
    padding: 0;
}



.main-menu li a {
    color: black;
    text-decoration: none;
}

.main-menu li a:hover {
    color:black;
    opacity:0.8;
}


.blog-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    text-decoration: none;
}

.blog-card .blog-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    margin-top:10px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f9f8f8;
    color: black;
    padding: 20px 0px;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    color: white;
    margin: 0;
    gap: 20px;
}

.footer-menu li {
    list-style-type: none;
    color: white;
}

.footer-menu li a {
    color: black;
    text-decoration: none;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}

.site-header .logo {
    max-width: 200px;
}

/* breadcrumb */

.breadcrumb {
    margin: 0px;
    background: #eff8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0px;
}

.breadcrumb-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-area .title {
    margin: 0;
}

.breadcrumb .links {
    display: flex;
    gap: 20px;
    text-decoration: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.breadcrumb .links li {
    margin: 0px;
    padding-right: 20px;
    position: relative;
}

.breadcrumb .links li a {
    color: black;
    text-decoration: none;
}

.breadcrumb .links li a::after {
    position: absolute;
    content: '\f105'; /* Font Awesome 6 - angle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; /* solid ikonlar için */
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: black;
}


.content-wrapper {
    background-color: aliceblue;
    padding:20px;
    border-radius: 10px;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
}

.not-found-page .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items:center;
    padding: 190px 0px;
}


.contact-form input {
    border: solid 1px #d6d6d6;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 10px;
    outline: none;
}

.contact-form textarea {
    border: solid 1px #d6d6d6;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 10px;
    outline: none;
}

.btn-spec {
    color: black;
    background: #f9f8f8;
    min-width: 300px;
    height: 60px;
    outline: none;
    border: 1px solid #333;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group:last-child {
    text-align: center;
}

.contact-message {
    font-size: 40px;
    padding: 50px 0px;
}

.seo-text {
    padding: 0px 0px 50px 0px;
}
.menu-toggle {
	display: none;
	cursor: pointer;
}

@media (max-width: 992px) {
	.logo img {
		max-height: 50px;
	}


	.hamburger {
		width: 25px;
		height: 3px;
		background: #333;
		position: relative;
		transition: all 0.3s;
	}

	.hamburger::before,
	.hamburger::after {
		content: '';
		position: absolute;
		width: 25px;
		height: 3px;
		background: #333;
		transition: all 0.3s;
	}

	.hamburger::before {
		top: -8px;
	}

	.hamburger::after {
		bottom: -8px;
	}

	.menu-text {
		font-size: 30px;
		margin-left: 10px;
		color: #333;
	}

	.main-menu {
		list-style: none;
	}

	.menu-toggle {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.main-menu {
		position: fixed;
		top: 85px;
		left: -250px;
		width: 250px;
		height: calc(100% - 70px);
		background: #f4f4f4;
		padding: 20px;
		transition: left 0.3s ease;
		z-index: 5;
		flex-direction: column;
	}

	.main-menu.active {
		left: 0;
		width: 100%;
	}

	.menu-toggle.active .hamburger {
		background: transparent;
	}

	.menu-toggle.active .hamburger::before {
		transform: rotate(45deg);
		top: 0;
	}

	.menu-toggle.active .hamburger::after {
		transform: rotate(-45deg);
		bottom: 0;
	}
	.blog-sidebar {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.blog-sidebar a {
    width: 50%;
    padding: 10px;
}
	
footer .col-lg-8 {
    text-align: center;
}

ul.footer-menu {
    justify-content: center;
    padding: 0;
}
	.breadcrumb .links {
    gap: 10px;
    margin: 0px;
    padding: 0px;
    flex-wrap: wrap;
    font-size: 12px;
}
	.breadcrumb-area .title {
    margin: 0;
    font-size: 19px;
    margin-bottom: 9px;
}
	section.breadcrumb {
    padding: 15px 0px;
}
	section {
    padding: 25px 0px;
}
}
