/*GOOGLE FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/*VARIABLE CSS*/
:root {
	


/*COLORS*/
/*Color mode HSL(hue, saturation, lightness)*/
--first-color: rgb(37, 98, 126);
--first-color-alt: rgb(74, 151, 169);
--first-color-light: hsl(228, 62%, 59%);
--first-color-lighten: rgb(229, 237, 241);
--second-color: rgb(130, 155, 167);
--title-color: hsl(216, 49%, 18%);
--text-color: hsl(228, 15%, 50%);
--text-color-light: hsl(228, 12%, 75%);
--border-color: hsl(228, 99%, 98%);
--body-color: #fff;
--container-color: #fff;


/*Font and Typography*/
/*.5rem = 8px / 1rem = 16px*/
--body-font: 'Poppins', sans-serif;
--biggest-font-size: 2.25rem;
--h1-font-size: 1.5rem;
--h2-font-size: 1.25rem;
--h3-font-size: 1rem;
--normal-font-size: .938rem;
--small-font-size: .813rem;
--smaller-font-size: .75rem;


/*Font Weigt*/
--font-medium: 500;
--font-semi-bold: 600;

/*z index*/
--z-tooltip: 10;
--z-fixed: 100;
}

/*Responsive Typography*/
@media screen and (min-width: 1024px) {
	:root {
		--biggest-font-size: 4rem;
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: .875rem;
		--smaller-font-size: .813rem;
	}
}

/*Base*/
*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

::selection {
	background-color: var(--first-color-alt); 
	color: #fff; 
}

html{
	scroll-behavior: smooth;
}

body{
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	background-color: var(--body-color);
	color: var(--text-color);
	transition: .3s; /*For animation dark mode*/
}



h1,h2,h3{
	color: var(--first-color);
	font-weight: var(--font-semi-bold);
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
}

hr{
	background-color: var(--first-color);
	height: 2px;
	width: 50%;
	margin: 0 auto;
	border: none;
}

.paket__hr{
	background-color: var(--border-color);
	margin-top: 5px !important;
	margin-bottom: 5px !important;
	height: 2px;
	border: none;
	width: 100%;
	margin: 0 auto;
}

/*img{
	max-width: 100%;
	height: auto;
}
*/

.kurumsal__img{
	max-width: 100%;
	height: auto;
}

.paket__img{
	max-width: 60%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.logolar__img{
	width: 80%;
	height: auto;
	display: block;
	margin: 0 auto;
}

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

.logo__img{
	max-width: 100%;
	height: auto;
}



input,
button{
	font-family: var(--body-font);
	outline: none;
	border: none;
}


/*Theme*/
.change-theme{
	font-size: 1.25rem;

	cursor: pointer;
	transition: .3s;
}

.change-theme:hover{
	color: var(--first-color);
}


/*Variables Dark Theme*/
body.dark-theme{
	--first-color: hsl(228, 66%, 62%);
	--second-color: hsl(25, 57%, 54%);
	--title-color: hsl(228, 8%, 95%);
	--text-color: hsl(228, 8%, 70%);
	--border-color: hsl(228, 16%, 14%);
	--body-color: hsl(228, 12%, 8%);
	--container-color: hsl(228, 16%, 12%);
}


/*
Color changes in some parts of
the website. in dark theme
*/
.dark-theme .home__search,
.dark-theme .swiper-button-next,
.dark-theme .swiper-button-prev{
	border: 3px solid var(--border-color);
}

.dark-theme .nav__menu,
.dark-theme .home__img,
.dark-theme .popular__card:hover,
.dark-theme .value__img,
.dark-theme .accordion-open
.dark-theme .accordion-open .value__accordion-icon
.dark-theme .accordion-open .value__accordion-arrow,
.dark-theme .contact__img,
.dark-theme .contact__card-box:hover,
.dark-theme .scrollup{
	box-shadow: none;
}

.dark-theme .value__orbe,
.dark-theme .value__accordion-icon,
.dark-theme .value__accordion-arrow,
.dark-theme .proje__orbe,
.dark-theme .contact__card i,
.dark-theme .contact__card-button,
.dark-theme .subscribe__container{
	background-color: var(--container-color);
}

.dark-theme .subscribe__container{
	border: 6px solid var(--border-color);
}

.dark-theme .subscribe__description{
	color: var(--text-color);
}

.dark-theme::-webkit-scrollbar{
	background-color: hsl(228, 4%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb{
	background-color: hsl(228, 4%, 25%);
}

.dark-theme::-webkit-scrollbar-thumb: hover{
	background-color: hsl(228, 4%, 35%);
}

.banner-container {
	position: relative;
	text-align: center;
}

.banner-container img {


}

.centered-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white; /* Yazı rengi */
	font-size: 24px; /* Yazı boyutu */
	font-weight: bold; /* Yazı kalınlığı */
}



/*Reusable CSS classes*/
.container{
	max-width: 1024px;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
}

.voldi__link{
	color: var(--body-color);
	transition: .5s;
}

.voldi__link:hover{
	color: #E7333F;
}

.grid{
	display: grid;
}

.section{
	padding: 4.5rem 0 2rem;
}

.section2{
	padding: 4.5rem 2rem 2rem;
}

.section3{
	padding: 3rem 0 5rem;
}

.section4{
	padding: 4.5rem 2rem 2rem;
}

.kurumsal__description{
	text-align: justify;
}

.ihracat__description{
	text-align: justify;
}

.ihracat__description2{
	text-align: justify;
}

.ortak__title{
	text-align: center;
	font-size: var(--h1-font-size);
}

.danismanlik__description{
	text-align: center;
	margin: 0 auto;
	width: 85%;
	font-size: var(--small-font-size);
}

.danismanlik__description2{
	text-align: center;
	margin: 0 auto;
}

.section__title{
	font-size: var(--h2-font-size);
	margin-bottom: 1rem;
	color: var(--first-color-alt);
	text-align: center;
}

.section__title span{
	color: var(--second-color);
}

.section__title2{
	font-size: var(--h2-font-size);
	margin-bottom: 1rem;
	color: var(--first-color-alt);
}

.section__title2 span{
	color: var(--second-color);
}

.kurumsal__big-title{
	font-size: var(--h2-font-size);
	margin-bottom: 1rem;
	color: var(--first-color-alt);
	text-align: center;
}

.ihracat__big-title{
	font-size: var(--h2-font-size);
	margin-bottom: 1rem;
	color: var(--first-color-alt);
	text-align: left;
}

.kurumsal__big-title span{
	color: var(--second-color);
}

.kurumsal__title{
	font-size: var(--h6-font-size);
	color: var(--first-color-alt);
	text-align: left;
}

.kurumsal__title span{
	color: var(--second-color);
}

.section__subtitle{
	display: block;
	font-size: var(--smaller-font-size);
	color: var(--text-color-light);
	text-align: center;
	width: 80%;
	margin: 0 auto;
	padding-bottom: 30px;
}



.main{
	overflow: hidden;
}

.footer__contact{
	font-weight: var(--font-semi-bold);
}

.dil{
	display: flex;
	align-items: center;
	gap: .5rem;
}

.dil a{
	white-space: nowrap;
	margin-left: 3rem;
	margin-bottom: .12rem;
}

.top__header {
	background-color: var(--first-color);
	height: 3rem;
	z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
	display: flex;
	justify-content: space-around !important;
	align-items: center;
	color: #fff;
	padding: 0 20px;
}

.top__header-mobil {
	background-color: var(--first-color);
	height: 3rem;
	z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
	display: flex;
	justify-content: space-around !important;
	align-items: center;
	color: #fff;
	padding: 0 20px;
}

.contact__thin{
	font-weight: 100 !important;
}

.contact__bold{
	font-weight: bolder;
}

.contact-info, .social-media {
	display: flex;
	align-items: center;
}

.contact-info{
	margin-left: 6rem;
}

.social-media{
	margin-right: 1.5rem;
}

.contact-info p, .social-media p {
	margin-right: 20px; /* Metinler arasında boşluk bırakma */
}

.banner{
	opacity: .5;
}



/*Header & Nav*/
.header{
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: white;
	z-index: var(--z-fixed);
	transition: .4s; /*For animation dark mode */
}

.nav{
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: .75rem;
}

.nav__logo{
	display: flex;
	align-items: center;
	padding-right: 7rem;
	transition: .3s;
	width: 100%;
}

.nav__link span {
	white-space: nowrap;
}


.nav__logo:hover{
	color: var(--first-color);
}

#hamburger-icon{
	margin: 0 auto;
	display: none;
	cursor: pointer;
}

#hamburger-icon {
	margin: auto 0;
	display: none;
	cursor: pointer;
}

#hamburger-icon div {
	width: 35px;
	height: 3px;
	background-color: black;
	margin: 6px 0;
	transition: 0.4s;
}


.open .mobile-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 1rem;
	padding-bottom: .5rem;
}


#close-icon {
	display: none;
}


#hamburger-icon.active #menu-icon {
	display: none;
}

#hamburger-icon.active #close-icon {
	display: inline-block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	margin-top: .5rem !important;
	list-style: none;
	padding: 0;
	margin: 0;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.mobil__dil{
	padding-top: .5rem;
}

.dilsecim{
	white-space: nowrap;
}

.dil__text{
	color: var(--text-color);
	text-align: center;
	font-size: var(--small-font-size);
}

.proje__text{
	text-align: left;
}

.dil__text:hover{
	color: var(--first-color);
}

.dropdown-menu li {
	width: 105px;
	padding: 10px;
	text-align: center;
}


.dropdown-menu.active {
	display: block;
	background-color: var(--body-color);
}


.mobile-menu {
	display: none;
	position: absolute;
	left: 0;
	background-color: var(--body-color);
	box-shadow: 0 12px 16px hsla(191, 39.1%, 47.6%, .3);
	width: 100%;
	transition: top 2s ease;
}



.label__ad{
	background-color: var(--body-color);
	border-bottom: 2px solid var(--border-color);
	padding: 1rem;
	height: 10px;
	width: 100%;
}

.mesaj__kısım{
	background-color: var(--body-color);
	border-bottom: 2px solid var(--border-color);
	padding: 1rem;
	height: 100px;
	width: 100%;
}

textarea{
	border: none;
}

.kurumsal-section{
	padding-top: 0rem !important; 
	padding-bottom: 5rem !important;
}

.form-group{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding-bottom: .5rem;
}


@media screen and (max-width: 1023px){
	.nav__menu{
		display: none;
		position: fixed;
		bottom: 2rem;
		background-color: var(--container-color);
		box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
		width: 90%;
		left: 0;
		right: 0;
		margin: 0 auto;
		padding: 1.30rem 3rem;
		border-radius: 1.25rem;
		transition: .4s;
	}

	.ihracat__images {
		order: 2;
	}

	.second-section {
		display: block;
	}

	.prev, .next {
		cursor: pointer;
		position: absolute;
		top: 30% !important;
		width: auto;
		padding: 16px;
		margin-top: -22px;
		color: white;
		font-weight: bold;
		font-size: 20px;
		transition: 0.6s ease;
		border-radius: 0 3px 3px 0;
		user-select: none;
		color: var(--first-color-alt);
	}

	.iletisim__img2{
		padding-top: 1.5rem;
		padding-bottom: 3rem;
		width: 100%;
		margin: 0 auto;
	}

	.top__header {
		background-color: var(--first-color);
		height: 3rem;
		z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
		display: flex;
		justify-content: space-between !important;
		align-items: center;
		color: #fff;
		padding: 0 20px;
	}

	.top__header-mobil {
		background-color: var(--first-color);
		height: 3rem;
		z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
		display: flex;
		justify-content: space-between !important;
		align-items: center;
		color: #fff;
		padding: 0 20px;
	}

	.value__description{
		font-size: var(--smaller-font-size);
		margin-bottom: 2rem;
		text-align: justify;
		color: var(--text-color-light);
	}

	.section__subtitle{
		display: block;
		font-size: var(--smaller-font-size);
		color: var(--text-color-light);
		text-align: center;
		width: 80%;
		margin: 0 auto;
		padding-bottom: 30px;
	}

	.iletisim__card-box{
		background-color: var(--body-color);
		font-weight: var(--font-semi-bold);
		box-shadow: none;
		border: 2px solid var(--border-color);
		padding: 3rem .75rem;
		width: 100% !important;
		border-radius: .5rem;
		transition: .3s;
		height: 100% !important;
	}

	.iletisimform__card-box{
		background-color: var(--body-color);
		font-weight: var(--font-semi-bold);
		box-shadow: none;
		border: 2px solid var(--border-color);
		padding: 1.25rem .75rem;
		width: 100% !important;
		border-radius: .5rem;
		margin-right: 0 !important;
		transition: .3s;
		height: 90% !important;
	}

	.ihracat__img{
		width: 100%;
	}


	.slide {
		clear:both;
		width:100%;
		height:0px;
		overflow: hidden;
		text-align: center;
		transition: height .4s ease;
		background-color: var(--body-color);
	}

	.dil__text{
		font-size: var(--normal-font-size);
	}

	.slide li {padding : 5px;}

	#touch {position: absolute; opacity: 0; height: 0px;}    

	#touch:checked + .slide {height: 85px;} 

	.contact__container{
		padding-right: 2rem !important;
		padding-left: 2rem !important;
		row-gap: 2rem;
	}

	.kurumsal__description{
		text-align: left;
	}

	.ihracat__description{
		text-align: justify;
	}
	.ihracat__description2{
		text-align: left;
	}

	.active-link{
		background: none;
		box-shadow: none;
		color: var(--first-color) !important;
		font-weight: var(--font-medium);
	}

	.dil{
		display: none;
	}

	.mobil {
		display: none;
	}

	#hamburger-icon {
		display: block;
	}
	.contact-info, .social-media {
		flex-direction: column;
		text-align: center;
	}

	

	.social-media{
		flex-direction: row;
	}

	.social-media{
		display: none;
	}

	.contact-info{
		display: none;
	}

	.contact-info2{
		display: block;
	}

	.top__header{
		display: none;
	}

	
	.footer__container{
		padding-top: 1rem;
	}

	.footer__link i {
		vertical-align: top !important;
		padding-right: .5rem;
	}

	.contact__card{
		display: grid;
		grid-template-columns: repeat(1, 1fr) !important;
		gap: 1.25rem .75rem;
	}

	.ortaklar__card{
		display: grid;
		grid-template-columns: repeat(1, 1fr) !important;
		gap: 1.25rem .75rem;
	}

	.contactpage__card{
		display: grid;
		grid-template-columns: repeat(1, 1fr) !important;
		gap: 1.25rem .75rem;
	}

	.danismanlik__description{
		text-align: justify;
		margin: 0 auto;
	}

	.cozum__description{
		text-align: center;
		margin: 0 auto;
	}

	.danismanlik__description2{
		text-align: center;
		margin: 0 auto;
	}

	.kurumsal__button{
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: var(--font-medium);
		padding: 14px 20px;
		width: 70% !important;
		border-radius: .25rem;
		background: var(--first-color-lighten);
		color: var(--first-color);
		font-weight: var(--font-semi-bold);
		box-shadow: none;
		float: left;
	}

	.swiper-button-more{
		border-radius: .5rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: var(--font-medium);
		padding: 14px 20px;
		width: 50% !important;
		background: var(--first-color-lighten);
		color: var(--first-color);
		font-weight: var(--font-semi-bold);
		box-shadow: none;
	}

	.swiper-button-next,
	.swiper-button-prev{
		top: initial;
		bottom: 0 !important;
		width: initial;
		height: initial;
		background-color: var(--container-color);
		border: 2px solid var(--text-color-light);
		padding: 6px;
		border-radius: .5rem;
		font-size: 1.5rem;
		color: var(--first-color);
	}

	.footer__info{
		margin-top: 3rem;
		flex-direction: column;
		text-align: center;
		row-gap: 1.5rem;
		padding-top: 8rem;
	}

	.header__logo{
		max-width: 100%;
		height: auto;
	}

	.mobile-text {
		display: block;
	}

	#telefon b {
		display: block;
	}

	#mobil_telefon b {
		display: block;
	}

	.nav__list{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		align-items: center;
		gap: .5rem;
		justify-content: center;
		text-align: center;
		justify-items: center;
	}

	.paketler__titles{
		text-align: justify;
	}


	.nav__link{
		color: var(--text-color);
		display: flex;
		padding: .5rem;
		border-radius: 50%;
	}

	.dil__link{
		color: var(--text-color);
		display: flex;
		padding: .5rem;
		border-radius: 50%;
	}



	.nav__link i{
		font-size: 1.25rem;
	}

	.nav__link span{
		display: none;
	}


}


/*Change Background Header*/
.scroll-header{
	background-color: var(--body-color);
	box-shadow: 0 1px 4px hsla(228, 4%, 15%, .1);
}

.scroll-header .nav__logo{
	color: var(--first-color);
}

.scroll-header .change-theme{
	color: var(--title-color);
}

/* Active Link */
.active-link{
	/* background-color: var(--first-color-alt);
	color: #fff;
	box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
	*/
}

.bar__title{
	font-size: var(--smaller-font-size);
}

.swiper-container {
	width: 100%;
	height: 100%;
}



/*HOME*/
.home{
	background: linear-gradient(170deg,
		hsl(0, 0%, 22%) 0%,
		hsl(0, 0%, 6%) 30%);
	padding-bottom: 0;
}

.home__container{
	padding-top: 4rem;
	row-gap: 3.5rem;
}

.home__title,
.home__value-number{
	color: #fff;
}

.home__title{
	font-size: var(--biggest-font-size);
	line-height: 120%;
	margin-bottom: 1.25rem;
}

.home__description{
	color: var(--text-color-light);
	margin-bottom: 2rem;
}

.home__search{
	background-color: var(--body-color);
	padding: .35rem .35rem .35rem .75rem;
	display: flex;
	align-items: center;
	border-radius: .75rem;
	border: 3px solid var(--text-color-light);
	margin-bottom: 2rem;
}

.home__search i{
	font-size: 1.25rem;
	color: var(--first-color);
}

.home__search-input{
	width: 90%;
	background-color: var(--body-color);
	color: var(--text-color);
	margin: 0 .5rem;
}

.home__search-input::placeholder{
	color: var(--text-color-light);
}

.home__value{
	display: flex;
	column-gap: 2.5rem;
	justify-content: center;

}

.home__value-number{
	font-size: var(--h1-font-size);
	font-weight: var(--font-medium);

}

.home__value-number span{
	color: var(--second-color);
}

.home__value-description{
	display: flex;
	color: var(--text-color-light);
	font-size: var(--smaller-font-size);

}

.home__images{
	position: relative;
	display: flex;
	justify-content: center;
}

.home__orbe{
	width: 265px;
	height: 284px;
	background: linear-gradient(180deg,
		hsl(0, 0%, 16%)93%,
		hsl(0, 0%, 67%)100%);
	border-radius: 135px 135px 0 0;
}

.home__img{
	position: absolute;
	width: 250px;
	height: 300px;
	overflow: hidden;
	border-radius: 125px 125px 12px 12px;
	display: inline-flex;
	align-items: flex-end;
	bottom: -1.5rem;
	box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

/*BUTTON*/
.button{
	display: inline-block;
	background: linear-gradient(101deg,
		hsl(228, 66%, 53%),
		hsl(228, 66%, 47%));
	color: #fff;
	padding: 14px 28px;
	border-radius: .5rem;
	font-size: var(--normal-font-size);
	font-weight: var(--font-medium);
	box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
	transition: .3s;
	cursor: pointer;
}

.button:hover{
	box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);
}

.nav__button{
	display: none;
}

/*LOGOS*/
.logos__container{

	grid-template-columns: repeat(1, 1fr);
	gap: 3rem 5rem;
	justify-items: center;
}

.logos__title{
	color: var(--title-color);
}

.logos__description{
	width: 300px;
	text-align: center;
	margin-top: .5rem;
	color: var(--text-color-light);
	font-size: var(--small-font-size) !important;
}

.logos__img{
	padding: 10px;
	padding-top: .5rem;
	text-align: center;
	border-radius: 1rem;
	transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.logos__img:hover{
	box-shadow: 0 12px 16px hsla(191, 39.1%, 47.6%, .3);
	transform: scale(1.1);

}

.logos__icon{
	padding-bottom: .5rem;
}

.logos__img img{
	height: 60px;
	transition: .3s;
}

.logos__img img:hover{
	opacity: .6;
}

/*POPULAR*/
.popular__container{
	padding: 1rem 0 5rem;
}



.popular__card{
	width: 300px;
	background-color: var(--container-color);
	padding: .5rem .5rem 1.5rem;
	border-radius: 1rem;
	margin: 0 auto;
	transition: .4s;
}

.popular__img{

	margin-bottom: 1rem;
}

.popular__data{
	padding: 0 1rem 0 .5rem;
}

.popular__price{
	font-size: var(--h2-font-size);
	color: var(--text-color);
	margin-bottom: .25;
}

.popular__price span{
	color: var(--second-color);
}

.popular__title{
	font-size: var(--h3-font-size);
	margin-bottom: .75rem;
	text-align: center;
}

.popular__description{
	font-size: small;
	text-align: center;
}

.popular__card:hover{
	box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

/*Swiper class*/
.swiper-button-prev::after,
.swiper-button-next::after{
	content: '';
}

.swiper-button-next,
.swiper-button-prev{
	top: initial;
	bottom: 0;
	width: initial;
	height: initial;
	background-color: var(--container-color);
	border: 2px solid var(--text-color-light);
	padding: 6px;
	border-radius: .5rem;
	font-size: 1.5rem;
	color: var(--first-color);
}

.swiper-button-prev{
	left: calc(50% - 3rem);
}

.swiper-button-next{
	right: calc(50% - 3rem);
}

/*VALUE*/
.value__container{
	row-gap: 3rem;
}

.kurumsal__container{
	row-gap: 3rem;
}

.ihracat__container{
	row-gap: 3rem;
}

.value__images{
	position: relative;
	display: flex;
	justify-content: center;
}

.ihracat__images{
	position: relative;
	display: flex;
	justify-content: center;
	height: auto;
}

.proje__images{
	position: relative;
	display: flex;
	justify-content: center;
}

.value__orbe{
	width: 290px;
	height: 230px;
	background-color: var(--first-color);
}

.proje__orbe{
	width: 290px;
	height: 290px;
	background-color: var(--first-color);
}

.value__img{
	position: absolute;
	width: 250px;
	height: 190px;
	overflow: hidden;
	inset: 0;
	margin: auto;
	box-shadow: 0 16px 32px hsla(191, 39.1%, 47.6%, .1);
}

.proje__big-img{
	position: absolute;
	width: 250px;
	height: 250px;
	overflow: hidden;
	inset: 0;
	margin: auto;
	box-shadow: 0 16px 32px hsla(191, 39.1%, 47.6%, .1);
}

.value__description{
	font-size: var(--smaller-font-size);
	margin-bottom: 2rem;
	color: var(--text-color-light);
}

.value__accordion{
	display: grid;
	row-gap: 1.5rem;
}

.kurumsal__accordion{
	padding-top: 2rem;
	display: grid;
	row-gap: 1.5rem;
	width: 15%;
}

.proje__img{
	width: 10%;
}

.value__accordion-item{
	background-color: var(--body-color);
	border: 2px solid var(--border-color);
	border-radius: .5rem;
	padding: 1rem .75rem;
}

.value__accordion-header{
	display: flex;
	align-items: center;
	cursor: pointer;
}

.value__accordion-icon{
	background-color: var(--first-color-lighten);
	padding: 5px;
	border-radius: .25rem;
	font-size: 18px;
	color: var(--first-color);
	margin-right: .75rem;
	transition: .3s;
}

.value__accordion-title{
	font-size: var(--small-font-size);
	text-align: center;
}

.value__accordion-arrow{
	display: inline-flex;
	background-color: var(--first-color-lighten);
	padding: .25rem;
	color: var(--first-color);
	border-radius: 2px;
	font-size: 10px;
	margin-left: auto;
	transition: .3s;
}

.value__accordion-arrow i{
	transition: .4s;
}

.value__accordion-description{
	font-size: var(--smaller-font-size);
	padding: 1.25rem 2.5rem 0 2.75rem;
}

.value__accordion-content{
	overflow: hidden;
	height: 0;
	transition: all .25s ease;
}

/*Rotate icon and add shadows*/
.accordion-open{
	box-shadow: 0 12px 32px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-icon{
	box-shadow: 0 4px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow{
	box-shadow: 0 2px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow i{
	transform: rotate(-180deg);
}

/*CONTACT*/
.contact__container{
	row-gap: 2rem;
}

.contact__images{
	position: relative;

	justify-content: center;
}

.contact__orbe{
	width: 266px;
	height: 316px;
	background-color: hsl(228, 24%, 97%);
	border-radius: 135px 135px 16px 16px;
	margin-left: 2rem;
}

.contact__img{
	position: absolute;
	width: 250px;
	height: 300px;
	overflow: hidden;
	border-radius: 125px 125px 12px 12px;
	inset: 0;
	margin: auto;
	box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.contact__description{
	font-size: var(--small-font-size);
	margin-bottom: 2.5rem;
}

.contact__card{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem .75rem;
}





.contact__card-box{
	background-color: var(--body-color);
	border: 2px solid var(--border-color);
	padding: 1.25rem .75rem;
	border-radius: .5rem;
	transition: .3s;
}
.logo__card-box{
	background-color: var(--body-color);
	border: 2px solid var(--border-color);
	padding: 1.25rem .75rem;
	height: 90%;
	border-radius: .5rem;
	transition: .3s;
}

.iletisim__card-box{
	background-color: var(--body-color);
	font-weight: var(--font-semi-bold);
	box-shadow: none;
	border: 2px solid var(--border-color);
	padding: 3rem .75rem;
	width: 70%;
	border-radius: .5rem;
	transition: .3s;
	height: 90%;
}

.iletisim__img{
	width: 70%;
	margin: 0 auto;
}

.iletisim__img2{
	padding-top: 1.5rem;
	width: 100%;
	margin: 0 auto;
}

.iletisimform__card-box{
	background-color: var(--body-color);
	font-weight: var(--font-semi-bold);
	box-shadow: none;
	border: 2px solid var(--border-color);
	padding: 1.25rem .75rem;
	width: 100%;
	margin-right: 150px;
	border-radius: .5rem;
	transition: .3s;
	height: 90%;
}

.contact__card-info{
	display: flex;
	flex-direction: column;
	justify-content: center;
	column-gap: .75rem;
	margin-bottom: 1.25rem;
}

.contact__card i{
	padding: 6px;
	background-color: var(--first-color-lighten);
	border-radius: 6px;
	font-size: 1.25rem;
	color: var(--first-color);
}

.contact__card-title{
	font-size: var(--h2-font-size);
	color: var(--first-color-alt);
	padding-bottom: .5rem;
	text-align: center;
}

.paketler__description{
	text-align: center;
	color: var(--text-color);
	font-size: var(--small-font-size);
}

.iletisim__description{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	padding-bottom: 1rem;
	color: var(--text-color);
	font-size: var(--small-font-size);
}

.iletisim__description i {
	padding-right: .5rem;
	color: var(--first-color-alt);
}

.contact__card-description{
	font-size: var(--smaller-font-size);
}

.paket__card-button{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-size: var(--font-medium);
	padding: 14px 20px;
	width: 100%;
	border-radius: .25rem;
	background: var(--first-color-lighten);
	color: var(--first-color);
	font-weight: var(--font-semi-bold);
	box-shadow: none;
}

.kurumsal__button{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--font-medium);
	padding: 14px 20px;
	width: 20%;
	border-radius: .25rem;
	background: var(--first-color-lighten);
	color: var(--first-color);
	font-weight: var(--font-semi-bold);
	box-shadow: none;
	float: left;
}

.brands__button{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--font-medium);
	padding: 14px 20px;
	width: 50%;
	border-radius: .25rem;
	background: var(--first-color-lighten);
	color: var(--first-color);
	font-weight: var(--font-semi-bold);
	box-shadow: none;
}

.paket__card-button:hover{
	background-color: var(--first-color);
	color: #fff;
}

.kurumsal__button:hover{
	background-color: var(--first-color);
	color: #fff;
}

.brands__button:hover{
	background-color: var(--first-color);
	color: #fff;
}

.contact__card-button{
	font-size: var(--font-medium);
	padding: 14px 0;
	width: 100%;
	border-radius: .25rem;
	background: var(--first-color-lighten);
	color: var(--first-color);
	font-weight: var(--font-semi-bold);
	box-shadow: none;
}

.contact__card-button:hover{
	background-color: var(--first-color);
	color: #fff;
}

.section__subtitle-contact{
	color: var(--second-color);
}

.contact__card-box:hover{
	box-shadow: 0 8px 24px hsla(228, 66%, 450%, .1);
}

.logo__card-box:hover{
	box-shadow: 0 8px 24px hsla(228, 66%, 450%, .1);
}


/*SUBSCRIBE*/
.subscribe{
	padding: 2.5rem 0;
}

.subscribe__container{
	background-color: var(--first-color);
	padding: 3rem 2rem;
	border-radius: 1.25rem;
	border: 6px solid var(--first-color-light);
	text-align: center;
}

.subscribe__title{
	font-size: var(--h2-font-size);
	color: #fff;
	margin-bottom: 1rem;
}

.subscribe__description{
	color: hsl(228, 90%, 92%);
	font-size: var(--small-font-size);
	margin-bottom: 2rem;
}

.subscribe__button{
	border: 2px solid #fff;
	background: var(--first-color-light);
	font-size: var(--small-font-size);
}

.subscribe__button:hover{
	background-color: var(--first-color);
}

/*FOOTER*/
.footer__container{
	row-gap: 2.5rem;
}

.footer{
	background-color: var(--first-color);
}

.footer__logo{
	font-size: var(--h2-font-size);
	font-weight: var(--font-semi-bold);
	display: flex;
	align-items: center;
	column-gap: .25rem;
	margin-bottom: .75rem;
	justify-content: center;

}

.footer__logo i{
	font-size: 1.25rem;
}

.footer__description,
.footer__link{
	font-size: var(--small-font-size);
	font-weight: var(--normal-font-size);
	text-align: center;
	color: var(--body-color);
}

.top__link{
	font-size: var(--small-font-size);
	font-weight: var(--font-medium);
	text-align: center;
	color: var(--body-color);
}

.footer__content,
.footer__links{
	display: grid;
	justify-items: start;
}

.footer__content{
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem 4rem;
	justify-content: center;
}

.footer__title{
	font-size: var(--h3-font-size);
	font-weight: var(--font-medium);
	margin-bottom: 1rem;
	color: var(--text-color-light);
}

.footer__links{
	row-gap: .5rem;
}

.footer__link i {
	vertical-align: middle;
	padding-right: .5rem;
}

.social-media i:hover{
	color: var(--first-color-alt);
	transition: .3s;
}

.footer__link{
	color: var(--body-color);
	transition: .3s;
}

.footer__text:hover{
	color: var(--first-color-alt);
	transition: .3s;
}

.footer__link span:hover{
	color: var(--first-color-alt);
	transition: .3s;
}

.top__link{
	color: var(--body-color);
	transition: .3s;
}

.top__header-link:hover{
	color: var(--first-color-alt);
	transition: .3s;
}

.footer__social{
	display: flex;
	column-gap: 1rem;
	justify-content: center;
}

.footer__social-link{
	font-size: 1.25rem;
	color: var(--body-color);
	transition: .3s;
}

.footer__social-link:hover{
	color: var(--first-color-alt);
	transition: .3s;
}

.footer__info,
.footer__privacy{
	display: flex;
	padding-bottom: 2rem;
}

.footer__info{
	margin-top: 3rem;
	flex-direction: column;
	text-align: center;
	row-gap: 1.5rem;
	background-color: var(--first-color-alt);
	padding: 1rem;

}

.footer__copy,
.footer__privacy a{
	font-size: var(--smaller-font-size);
	font-weight: var(--font-medium);
	color: var(--body-color);
	
}

.footer__privacy{
	justify-content: center;
	column-gap: 1.25rem;
}

/*SCROLL BAR*/
::-webkit-scrollbar{
	width: .6rem;
	border-radius: .5rem;
	background-color: hsl(228, 8%, 76%);
}

::-webkit-scrollbar-thumb{
	background-color: hsl(228, 8%, 64%);
	border-radius: .5rem;
}

::-webkit-scrollbar-thumb: hover{
	background-color: hsl(228, 8%, 54%);
}

/*SCROLL UP*/
.scrollup{
	position: fixed;
	right: 1rem;
	bottom: -30%;
	background-color: var(--container-color);
	box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
	display: inline-flex;
	padding: .35rem;
	border-radius: .25rem;
	color: var(--title-color);
	font-size: 1.25rem;
	z-index: var(--z-tooltip);
	transition: .3s;
}

.scrollup:hover{
	transform: translateY(-.25rem);
	color: var(--first-color);
}


/*Show Scroll Up*/
.show-scroll{
	bottom: 5rem;
}

.swiper__buttons{

}

@media screen and (max-width: 440px) {
	.mobil__footer-text{
		white-space: nowrap;
	}
}

/*BREAKPOINTS*/
/*For Small Devices*/
@media screen and (max-width: 350px){
	.container{
		margin-left: 1rem;
		margin-right: 1rem;
	}



	.section{
		padding: 3.5rem 0 1rem;
	}

	.section2{
		padding: 3.5rem 0 1rem;
	}
	.section3{
		padding: 3.5rem 0 1rem;
	}

	.section4{
		padding: 3.5rem 0 1rem;
	}

	.home{
		padding-bottom: 0;
	}

	.contact__card{
		grid-template-columns: repeat(1, 180px);
		justify-content: center;
	}

	.ortaklar__card{
		grid-template-columns: repeat(1, 180px);
		justify-content: center;
	}

	.contactpage__card{
		grid-template-columns: repeat(1, 180px);
		justify-content: center;
	}

	.section__subtitle-contact{
		color: var(--second-color);
	}
}

@media screen and (max-width: 320px){
	.nav__menu{
		padding: 1.3rem 1.5rem;
	}

	.home__value{
		column-gap: 1.5rem;
		padding-left: 1rem;
	}


	.home__img{
		width: 220px;
		height: 280px;
	}

	.home__orbe{
		width: 240px;
		height: 264px;
	}

	.logos__container{
		gap: 2rem 1rem;
	}

	.popular__card{
		width: 230px;
		padding: .5rem .5rem .75rem;
	}

	.value__img,
	.contact__img{
		width: 220px;
		height: 260px;
	}

	.value__orbe,
	.contact__orbe{
		width: 236px;
		height: 280px;
	}

	.subscribe__container{
		padding: 2rem 1rem;
	}

	.footer__content{
		gap: 2.5rem;
	}

	.section__subtitle-contact{
		color: var(--second-color);
	}
}

/*For Medium Devices*/
@media screen and (min-width: 576px){
	.nav__menu{
		width: 342px;
	}

	.contact-info{
		display: flex;
		flex-direction: row;
		margin-left: 0 !important;
	}

	.social-media{
		display: flex;
		flex-direction: row;
		margin-right: 0 !important;
	}

	.top__header{
		display: none !important;
	}

	.top__header-mobil{
		display: flex; !important;
	}

	.social-media{
		display: none;
	}


	.brands__button{
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: var(--font-medium);
		padding: 14px 20px;
		width: 15%;
		border-radius: .25rem;
		background: var(--first-color-lighten);
		color: var(--first-color);
		font-weight: var(--font-semi-bold);
		box-shadow: none;
	}

	.header__logo{
		width: 17em;
		height: auto;
	}

	/* .logo__content{
		padding-right: 5rem;
	}
	*/

	.home__search{
		width: 412px;

	}

	.contact__card{
		
		justify-content: center;
	}

	.ortaklar__card{
		
		justify-content: center;
	}

	.contactpage__card{
		
		justify-content: center;
	}

	.footer__content{
		grid-template-columns: repeat(3, max-content);
	}

	.section__subtitle-contact{
		color: var(--second-color);
	}
}

@media screen and (min-width: 767px){
	.home__container{
		grid-template-columns: repeat(2, 1fr);
		padding-top: 2rem;
	}

	.danismanlik__description{
		text-align: center;
		margin: 0 auto;
		width: 90%;
		font-size: var(--small-font-size);
		text-align: justify;
	}

	.logos__container{
		grid-template-columns: repeat(3, max-content);
		justify-content: center;
		transform: scale(0.65) !important;
	}

	.ortaklar__card{
		display: grid;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.25rem .75rem;
	}

	.top__header {
		background-color: var(--first-color);
		height: 3rem;
		z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
		display: flex;
		justify-content: space-between !important;
		align-items: center;
		color: #fff;
		padding: 0 20px;
	}

	.top__header-mobil {
		background-color: var(--first-color);
		height: 3rem;
		z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
		display: flex;
		justify-content: space-between !important;
		align-items: center;
		color: #fff;
		padding: 0 20px;
	}

	.logos__description{
		width: 300px;
		text-align: center;
		margin-top: .5rem;
		color: var(--text-color-light);
		font-size: 1.2em ;
	}


	.ihracat__img{
		width: 100%;
	}


	.header__logo{

		height: auto;
	}

	.mobile-text {
		display: block;
	}

	.brands__button{
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: var(--font-medium);
		padding: 14px 20px;
		width: 15%;
		border-radius: .25rem;
		background: var(--first-color-lighten);
		color: var(--first-color);
		font-weight: var(--font-semi-bold);
		box-shadow: none;
	}

	.footer__container{
		grid-template-columns: repeat(1, 1fr) !important;
		justify-content: center !important;
	}

	.home__orbe{
		align-self: flex-end;
	}

	.home__data{
		padding-bottom: 2rem;
	}

	

	.value__container,
	.contact__container{
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
	}

	.kurumsal__container{
		grid-template-columns: repeat(1, 1fr) !important;
		align-items: center !important;
		width: 100% !important;
		margin: 0 auto !important;
	}

	.ihracat__container{
		grid-template-columns: repeat(1, 1fr);
		align-items: center;
		width: 100%;
		margin: 0 auto;
	}

	.contact__img{
		order: 1;
	}

	.contact__card{
		justify-content: initial;
	}

	.ortaklar__card{
		justify-content: initial;
	}

	.contactpage__card{
		justify-content: initial;
	}


	.subscribe__container{
		padding: 3rem 13rem;
	}

	

	.section__subtitle-contact{
		color: var(--second-color);
	}


}

.tren_link{
	font-size: 15px;
}


/*For Large Devices*/
@media screen and (min-width: 1023px){
	.section{
		padding: 5rem 0 2rem;
	}

	.social-media{
		margin-right: 0 !important;
	}

	.top__header-mobil{
		display: none !important;
	}	

	.social-media{
		display: flex;
	}


	.contact-info{
		display: flex;
		flex-direction: row;
		margin-left: 0 !important;
	}

	.top__header {
		background-color: var(--first-color);
		height: 3rem;
		z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
		display: flex !important;
		justify-content: space-around ;
		align-items: center;
		color: #fff;
		padding: 0 20px;
	}

	.contact__card{
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem .75rem;
		padding-left: 3rem;
		padding-right: 3rem;
	}

	.ortaklar__card{
		display: grid;
		grid-template-columns: repeat(5, 1fr) !important;
		gap: 1.25rem .75rem;
		width: 80%;
		margin: 0 auto;
		padding-bottom: 4rem;
	}

	.contactpage__card{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem .75rem;
		justify-items: center;
		width: 100%;
		margin: 0 auto;
	}

	.kurumsal__container{
		padding-left: 0 !important;
		padding-right: 0 !important;
		grid-template-columns: repeat(1, 1fr) !important;
		align-items: center !important;
		width: 80% !important;
		margin: 0 auto !important;
	}

	.nav{
		height: var(--header-height);
		display: flex;
		justify-content: space-around !important;
		align-items: center;
		padding-top: .75rem;
		transform: scale(.9) !important;
	}

	.nav-en{
		height: var(--header-height);
		display: flex;
		justify-content: space-around !important;
		align-items: center;
		padding-top: .75rem;
		transform: scale(0.78) !important;
	}

	.ihracat__container{
		padding-left: 2rem;
		padding-right: 2rem;
		grid-template-columns: repeat(1, 1fr);
		align-items: center;
		width: 100%;
		margin: 0 auto;
	}

	.logos__container{
		grid-template-columns: repeat(3, max-content);
		justify-content: center;
		transform: scale(.9) !important;
	}

	.footer__container{
		grid-template-columns: repeat(2, max-content) !important;
		justify-content: space-between !important;
	}

	.ihracat__img{
		width: 100%;
	}

	.section2{
		padding: 5rem 0 3rem;
	}
	.section3{
		padding: 3rem 0 5rem;
	}

	.section4{
		padding: 0 0 0;
	}

	.header__logo{

		height: auto;
	}

	.section__title{
		font-size: 2.25rem;
	}

	.section__title2{
		font-size: 2.25rem;
	}

	.kurumsal__big-title{
		font-size: 2.25rem;
	}

	.ihracat__big-title{
		font-size: 2.25rem;
	}

	.ihracat__big-title{
		font-size: 1.5rem;
	}

	.section__subtitle{
		font-size: var(--smaller-font-size);

	}

	.mobile-text {
		display: none;
	}


	.nav{
		height: calc(var(--header-height) + 1.5rem);
	}

	.nav__menu{
		width: initial;
		margin-left: auto;
	}

	.nav__list{
		display: flex;
		column-gap: 1.5rem;
		align-items: center;
	}

	.language__text{
		color: var(--first-color-alt);
		font-size: var(--normal-font-size);
	}

	.nav__link{
		color: var(--text-color);
		font-size: var(--normal-font-size);
	}

	.dil__link{
		color: var(--text-color);
		font-size: var(--normal-font-size);
	}

	.nav__link {
		position: relative;
		text-decoration: none;
		color: var(--text-color);
	}

	.dil__link {
		display: flex;
		text-decoration: none;
		color: var(--text-color);
	}

	.nav__link::before {
		content: "";
		position: absolute;
		width: 0; 
		height: 2px;
		background-color: var(--first-color);
		bottom: -2px;
		left: 0;
		transition: width 0.3s ease; 
	}



	.nav__link:hover::before {
		width: 100%; 
	}

	.dil__link:hover::before {
		width: 100%; 
	}

	.nav__link.active-link::before {
		width: 100%;
	}

	.dil__link.active-link::before {
		width: 100%;
	}


	.nav__link i{
		display: none;
	}

	.nav__button{
		display: inline-block;
	}

	.active-link{
		background: none;
		box-shadow: none;
		color: var(--first-color);
		font-weight: var(--font-medium);
	}

	.change-theme{
		margin: 0 3rem;
		color: var(--first-color-alt);
	}

	.scroll-header .nav__link,
	.scroll-header .change-theme{

	}

	.scroll-header .active-link{
		color: var(--first-color);
	}

	.home{
		padding-bottom: 0;
	}

	.home__container{
		padding-top: 5rem;
		column-gap: 2rem;
	}

	.home__data{
		padding-bottom: 4rem;
	}

	.home__title{
		margin-bottom: 2rem;
	}

	.home__description,
	.home__search{
		margin-bottom: 3rem;
	}

	.home__value{
		column-gap: 3.5rem;
	}

	.home__orbe{
		width: 504px;
		height: 611px;
		border-radius: 256px 256px 0 0;
	}

	.home__img{
		width: 472px;
		height: 634px;
		border-radius: 236px 236px 12px 12px;
		bottom: -2.5rem;
	}

	.logos__img img{
		height: 50px;
	}

	.popular__container{
		width: 80%;
	}

	.brands__container{
		padding-bottom: 5rem;
	}

	.paketler__titles{
		padding-left: 5rem;
		padding-right: 5rem;
		text-align: justify;
	}

	.popular__card{
		width: 320px;
		padding: .75rem .75rem 2rem;
	}

	.popular__data{
		padding: 0 .25rem 0 .75rem;
	}

	.value__container{
		align-items: flex-start;
		column-gap: 5rem;
	}

	.kurumsal__container{
		align-items: flex-start;
		column-gap: 5rem;
	}

	.ihracat__container{
		align-items: flex-start;
		column-gap: 5rem;
	}

	.value__orbe{
		width: 501px;
		height: 400px;

	}

	.proje__orbe{
		width: 501px;
		height: 515px;

	}

	.value__img{
		width: 461px;
		height: 355px;

	}

	.proje__big-img{
		width: 461px;
		height: 470px;

	}



	.value__img img{
		max-width: initial;
		width: 100%;
		height: auto;
	}

	.proje__big-img img{
		max-width: initial;
		width: 100%;
		height: auto;
	}

	.contact__orbe{
		display: none;
	}

	.section__subtitle-contact{
		color: var(--second-color);
	}

	.contact__img{
		width: 450px;
		height: 550px;
		border-radius: 238px 238px 12px 12px;
		margin-right: 1.25rem;
		margin-top: 10rem;

	}

	.contact__images{
		justify-content: right;

	}



	.contact__img img{
		max-width: initial;
		width: 490px;

	}

	.value__description{
		font-size: var(--smaller-font-size);
		color: var(--text-color-light);
	}

	.contact__description{
		position: relative;
		text-align: left;
		font-size: var(--normal-font-size);
		margin-top: 20px;
	}

	.value__accordion-title{
		font-size: var(--normal-font-size);
	}

	.value__accordion-item{
		padding: 1.25rem 1.25rem 1.25rem 1rem;
	}

	.value__accordion-description{
		padding-bottom: 1rem;
		font-size: var(--small-font-size);
	}

	.contact__card{
		
	}


	.subscribe__container{
		padding: 4rem 10rem 4.5rem;
		border-radius: 2rem;
		border: 12px solid var(--first-color-light);
	}

	.subscribe__title{
		font-size: 2.5rem;
		margin-bottom: 1.5rem;
	}

	.subscribe__description{
		font-size: var(--normal-font-size);
		padding: 0 8rem;
	}

	.subscribe__button{
		font-size: var(--normal-font-size);
	}

	.footer__container{
		padding-top: 5rem;
	}

	.footer__content{
		grid-template-columns: repeat(4, max-content);
		gap: 2rem;
		padding-right: 2rem;
	}

	.footer__title{
		margin-bottom: 1rem;
	}

	.footer__links{
		row-gap: 1rem;
	}

	.footer__info{

		justify-content: space-between;
	}

	.show-scroll{
		bottom: 3rem;
		right: 3rem;
	}
}
@media screen and (max-width: 767px) {
	.footer__sosyal {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: center;
	}

	.footer__sosyal i {
		margin-bottom: 5px;
	}
	.iletisim__description i{
		padding-right: .3rem;
	}

}


@media screen and (min-width: 1040px){
	.container{
		margin-left: auto;
		margin-right: auto;
	}

	.top__header {
		background-color: var(--first-color);
		height: 3rem;
		z-index: 999; /* Diğer içeriklerin üstünde görüntülenmesini sağlar */
		display: flex !important;
		justify-content: space-around !important;
		align-items: center;
		color: #fff;
		padding: 0 20px;
	}

	.social-media{
		margin-right: 8rem !important;
	}

	.contact-info{
		display: flex;
		flex-direction: row;
		margin-left: 8rem !important;
	}

	.nav{
		height: var(--header-height);
		display: flex;
		justify-content: space-around !important;
		align-items: center;
		padding-top: .75rem;
		transform: scale(.9) !important;
	}

	.contactpage__card{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem .75rem;
		justify-items: center;
		width: 80% !important;
		margin: 0 auto;
	}

	.ihracat__container{
		padding-left: 5rem;
		padding-right: 5rem;
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		width: 100%;
		margin: 0 auto;
	}

	.home__container{
		column-gap: 4rem;
	}

	.header__logo{

		height: auto;
	}

}

.slider__img{
	width: 100%;
}



img {
	vertical-align: middle;
}
/* Slideshow container */
.slideshow-container {

	position: relative;
	margin: auto;
}
/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 30px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	color: var(--first-color-alt);
}

.dot__contain{
	text-align: center;
}
/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: var(--body-color);
}


/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 7px;
	width: 45px;
	border-radius: 3rem;
	background-color: #bbb;
	display: inline-flex;  
	transition: background-color 0.6s ease;
}
.active, .dot:hover {
	background-color: var(--first-color);
}
/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}
@-webkit-keyframes fade {
	from {opacity: .5} 
	to {opacity: 1}
}
@keyframes fade {
	from {opacity: .5} 
	to {opacity: 1}
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
	.prev, .next,.text {font-size: 11px}
	.dot{
		height: 10px;
		width: 10px;

	}
	@media only screen and (max-width: 500px) {
		.prev, .next,.text {font-size: 14px}
	}








