/*
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-LightItalic/NunitoSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito Sans Bold';
    src: url('../fonts/NunitoSans-LightItalic/NunitoSans-ExtraLight.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}
*/
@font-face {
    font-family: 'Raleway-Light';
    src: url('../font/Raleway13/static/Raleway-Light.ttf') format('truetype');
    font-weight: 300; 
}

/* Genel Stil */
body {
		font-family: "Raleway-Light", sans-serif;
		background-color: #FFF; 
}
h1 {
	font-family: "Raleway-Light", sans-serif;
	font-size:3rem;
}
h2 {
	font-family: "Raleway-Light", sans-serif;
	font-size: 1.5rem;
}
h3 {
	font-family: "Raleway-Light", sans-serif;
	font-size: 1rem;
}
/* Navbar */
.navbar {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 1000;
		background: transparent;
		border: none;
		transition: background 0.3s ease-in-out;
		padding: 10px 5px;
}
.navbar-center {
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.navbar-center2 {
	display:flex;
	align-items:center;
	justify-content:center;
}

.navbar.scrolled {
		background: #2c4664;
}

.navbar-toggler {
		border: none;
		background: none;
		color: #FFF;
		font-size: 24px;
		text-shadow: 0px 1px 6px #000;
}

.navbar-brand  >	.logo{ 
	width:250px;
}
.navbar-brand { 
		font-size: 24px;
		font-weight: bold;
		color: white !important;
}

.social-icons { 
		right: 20px;
		top: 10px;
}

.social-icons a {
		color: white;
		margin: 0 5px;
		font-size: 18px;
		text-decoration: none;
}
.language-selector { 

}


.language-selector select {
		background: transparent;
		color: #FFF;
		border: none;
		font-size: 16px;
}
.scrolled .language-selector select {
		background: #2c4664!important;
		color: #FFF; 
}
	
/* Menü Overlay */
.menu-overlay { 
		position: fixed;
		top: 0;
		opacity: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.4);
		z-index: 1000; 
		transition: left 0.4s ease-in-out,opacity 0.6s ease-in-out;
		display:flex;
}
.menu-overlay1 {  
		position: relative;
		top: 0;
		left: -100%;
		width: fit-content;
		height: 100%;
		background: #2c4664;
		z-index: 1001;
		padding-top: 50px;
		padding-left: 50px;
		padding-right: 50px;
		transition: left 0.4s ease-in-out;
}

.menu-overlay1 ul { 
		list-style: none;
		padding: 0;
		text-align: left;
		margin-top: 50px;
}

.menu-overlay1 ul li { 
		margin: 15px 0;
}

.menu-overlay1 ul li a {
		font-family: "Raleway-Light", sans-serif; 
		color: white;
		font-size: 18px;
		text-decoration: none;
		transition: 0.3s;
}

.menu-overlay1 ul li a:hover {
		color: #ffcc00;
}
.menu-overlay2 { 
		width: fit-content; 
		background: #243c58;
		z-index: 1001;
		padding-top: 200px;
		padding-left: 50px;
		padding-right: 50px;
		transition: left 0.7s ease-in-out;
}

.menu-overlay2 ul {
		list-style: none;
		padding: 0;
		text-align: left;
		margin-top: 15px;
}

.menu-overlay2 ul li {
		margin: 15px 0;
}

.menu-overlay2 ul li a {
		font-family: "Raleway-Light", sans-serif; 
		color: white;
		font-size: 18px;
		text-decoration: none;
		transition: 0.3s;
}

.menu-overlay2 ul li a:hover {
		color: #ffcc00;
}

.menu-close {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 80px;
    color: white;
    cursor: pointer;
}


/* renkler */ 
.bg_beyaz {
		background-color: #FFF;
}
.bg_acik_mavi {
		background-color: #edf1f5;
}
.bg_mavi {
		background-color: #2c4664;
}
/* renkler */ 
section{  
	margin-bottom:3rem;
}

body > section:first-of-type {
	margin-top: 0px!important;
}
body > section:last-of-type{
	margin-bottom:0rem!important;
}

.footer { 
		background: #2c4664;
		padding:25px 0px;
}

.footer_menu_ul { 
	list-style:none; 
	display:flex;
	flex-wrap:wrap;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.footer_menu_ul > li{
	width:fit-content;
	padding:15px; 
} 
.footer_menu_ul > li > a {
	text-decoration:none;
	color:#FFF;
}  