@charset "utf-8";


/*Desktop Wiev*/
@media (min-width: 950px){
	.general-container {
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.radio {
  display: none;
}

.content {
	background-color: transparent;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 3rem;
	cursor: pointer;
	flex: 1;
	margin-right: 0.8rem;
	overflow: hidden;
	position: relative;
	transition: all 0.5s cubic-bezier(0.05, 0.60, 0.39, 0.94);
	background-image: url(resm/aku.png);
	
}

.content::before {
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.content > * {
	position: relative;
	z-index: 1;
	color: #FFFFFF;
}

.content:hover {
  box-shadow: 0.7rem 0.7rem 0.5rem rgba(0, 0, 0, 0.3);
}

.content:nth-of-type(2) {
  background: transparent;
  background-image: url("resm/test.jpg");
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.content:nth-of-type(3) {
  background: transparent;
  background-image: url("resm/yer.png");
background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.content:nth-of-type(4) {
  background: transparent;
  background-image: url("resm/aku-takviyesi.jpg");
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.card-title {
  bottom: 1.2rem;
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  left: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  position: absolute;
  transform: translateX(2rem);
  transition: 290ms cubic-bezier(0.05, 0.62, 0.40, 0.95) 300ms;
  transition-property: opacity, transform;
  user-select: none;
  white-space: nowrap;
}

.title-card{
  top: 2rem;
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  left: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  position: absolute;
  transform: translateX(2rem);
  transition: 290ms cubic-bezier(0.05, 0.60, 0.42, 0.94) 300ms;
  transition-property: opacity, transform;
  user-select: none;
  white-space: nowrap;

}

.subtitle {
	font-size: 1rem;
	color: #FFFFFF;
}

.subsubtitle{
	font-size: 0.85rem;
	color: white;
}

.paddT{
  padding-left: 3rem;
  padding-right: 3rem;
}

.radio:checked + .content {
  border-radius: 2rem;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
  flex: 9;
}

.radio:checked + .content > .card-title {
  opacity: 1;
  transform: translateX(0);
}

.radio:checked + .content > .title-card{
  opacity: 1;
  transform: translateX(0);
}

.marg-bott{
	margin-bottom: 1.5rem;
	color: #FFFFFF;
}
	:root {
            --gradient: linear-gradient(45deg, #7fff00, #003b00, #008000, #00ff41);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --border: 1px solid rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        

        .navbar {
			margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 5%;
            backdrop-filter: blur(12px);
            background: #151212;
            border-bottom: var(--border);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow);
        }

        .navbar.scrolled {
            padding: 0.8rem 5%;
            background: rgba(10, 10, 10, 0.95);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logoo {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 8s linear infinite;
            background-size: 300%;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        }

        .nav-links a:hover::before,
        .nav-links a:hover::after {
            width: 100%;
            animation: gradient 8s linear infinite;
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1001;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .mobile-nav-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-toggle .bar {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: white;
            transition: all 0.4s ease;
        }

        .mobile-nav-toggle .bar:nth-child(1) { top: 14px; }
        .mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
        .mobile-nav-toggle .bar:nth-child(3) { top: 24px; }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

.containernew {
	width: 100%;
	height: 2500px;
	float: left;
}
.containernew .banner {
	background-image: url(bkbanner.png);
	background-size: 100% 100%;
	width: 100%;
	height: 25%;
	float: left;
}
.containernew .bunlar {
	width: 100%;
	height: 750px;
	float: left;
}
.containernew .bunlar .bunbaslik {
	text-align: center;
	width: 100%;
	font-size: x-large;
	margin-top: 10px;
	color: #021A4F;
	text-shadow: 1px 1px 10px #FAC118;
	font-weight: bold;
	float: left;
}
.containernew .bunlar .encokbir {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	
}





.bunbaslik {
	margin-top: 10px;
}
.encokbir {
	width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;;
}
.akubir {
	background-image: url(aku/inci60efb.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazi1 {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyat1 {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokiki {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuiki {
	background-image: url(aku/inci72efb.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yaziiki {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatiki {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokuc {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuuc {
	background-image: url(aku/inci60agm.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yaziuc {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatuc {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokdort {
	
	
  width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;
}
.akudort {
	background-image: url(aku/inci72agm.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazidort {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatdort {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}

.encokalti {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akualti {
	background-image: url(aku/tunc60efb.jfif);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazialti {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatalti {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokyedi {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuyedi {
	background-image: url(aku/tunc72efb.jfif);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yaziyedi {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatyedi {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encoksekiz {
	
	
  width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;
}
.akusekiz {
	background-image: url(aku/inci90.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazisekiz {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatsekiz {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokdokuz {
	width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;;
}
.akudokuz {
	background-image: url(aku/inci55.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazidokuz {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatdokuz {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokon {
	width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;;
}
.akuon {
	background-image: url(aku/inci105.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazion {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyaton {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.konum {
	width: 50%;
	height: 300px;
	float: left;
}
.knm {
	width: 50%;
	height: 300px;
	float: left;
	text-align: center;
	font-size: large;
	font-weight: bold;
}
.akucu {
	width: 100%;
	height: 200px;
	float: left;
}
.containernew .akucu h1 {
	text-align: center;
}
.containernew .akucu h1:hover {
	color: #135AA0;
}
.donenres {
	width: 100%;
	height: 300px;
	float: left;
}
.resm {
	width: 100%;
	height: 500px;
	float: left;
}
.aciklama {
	width: 60%;
	height: 300px;
	float: left;
}
.acikalamresm {
	width: 40%;
	height: 300px;
	float: left;
	background-image: url(resm/degisim.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 61%;
	border-radius: 15px;
}
.aciklamaiki {
	width: 100%;
	height: 200px;
	float: left;
}
.alt {
	width: 100%;
	height: 272px;
	float: left;
	background-image: url(alt.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	margin-top: 25px;
}
.altres {
	width: 12%;
	height: 50%;
	background-image: url(lllgo.webp);
	background-size: 100% 100%;
	margin-top: 55px;
	margin-left: 59px;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0px 0px 64px #000000;
	border-radius: 10px;
	box-shadow: 0px 0px 64px #000000;
	float: left;
}
.linkalt {
	width: 43%;
	color: #FFFFFF;
	float: left;
	margin-left: 20%;
	text-align: center;
	margin-top: 88px;
}
.yerindegisim {
	width: 100%;
	height: 250px;
	float: left;
}
.akudeg {
	width: 100%;
	height: 250px;
	float: left;
}
.containernew .yerindegisim {
	width: 100%;
	height: 250px;
	float: left;
}
.menuaku {
	float: left;
	margin-top: 5px;
	width: 100%;
	height: 80px;
}
.menubam {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	list-style-type: none;
	width: 100%;
	height: 80px;
}
.li {
	float: left;
	width: 25%;
	text-align: center;
	background-color: #13579E;
	color: #FFFFFF;
	font-size: large;
	height: 40px;
	line-height: 250%;
}
.menuaku .menubam .li:hover {
	font-size: large;
	background-color: #FAC117;
	color: #000000;
}

































}
















@media (min-width: 769px) and (max-width: 949px){
	.menuaku {
	float: left;
	margin-top: 5px;
	width: 100%;
	height: 60px;
}
.menubam {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	list-style-type: none;
	width: 100%;
	height: 60px;
}
.li {
	float: left;
	width: 25%;
	text-align: center;
	background-color: #13579E;
	color: #FFFFFF;
	font-size: large;
	height: 30px;
	line-height: 250%;
}
.menuaku .menubam .li:hover {
	font-size: large;
	background-color: #FAC117;
	color: #000000;
}
	
	:root {
            --gradient: linear-gradient(45deg, #7fff00, #003b00, #008000, #00ff41);

            --glass-bg: rgba(255, 255, 255, 0.05);
            --border: 1px solid rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

	  .navbar {
			margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 5%;
            backdrop-filter: blur(12px);
            background: #151212;
            border-bottom: var(--border);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow);
        }

        .navbar.scrolled {
            padding: 0.8rem 5%;
            background: rgba(10, 10, 10, 0.95);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logoo {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 8s linear infinite;
            background-size: 300%;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        }

        .nav-links a:hover::before,
        .nav-links a:hover::after {
            width: 100%;
            animation: gradient 8s linear infinite;
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1001;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .mobile-nav-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-toggle .bar {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: white;
            transition: all 0.4s ease;
        }

        .mobile-nav-toggle .bar:nth-child(1) { top: 14px; }
        .mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
        .mobile-nav-toggle .bar:nth-child(3) { top: 24px; }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
	
	
	
	
	.general-container {
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.radio {
  display: none;
}

.content {
	background-color: transparent;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 3rem;
	cursor: pointer;
	flex: 1;
	margin-right: 0.8rem;
	overflow: hidden;
	position: relative;
	transition: all 0.5s cubic-bezier(0.05, 0.60, 0.39, 0.94);
	background-image: url(resm/aku.png);
	
}

.content::before {
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.content > * {
	position: relative;
	z-index: 1;
	color: #FFFFFF;
}

.content:hover {
  box-shadow: 0.7rem 0.7rem 0.5rem rgba(0, 0, 0, 0.3);
}

.content:nth-of-type(2) {
  background: transparent;
  background-image: url("resm/test.jpg");
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.content:nth-of-type(3) {
  background: transparent;
  background-image: url("resm/yer.png");
background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.content:nth-of-type(4) {
  background: transparent;
  background-image: url("resm/aku-takviyesi.jpg");
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.card-title {
  bottom: 1.2rem;
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  left: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  position: absolute;
  transform: translateX(2rem);
  transition: 290ms cubic-bezier(0.05, 0.62, 0.40, 0.95) 300ms;
  transition-property: opacity, transform;
  user-select: none;
  white-space: nowrap;
}

.title-card{
  top: 2rem;
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  left: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  position: absolute;
  transform: translateX(2rem);
  transition: 290ms cubic-bezier(0.05, 0.60, 0.42, 0.94) 300ms;
  transition-property: opacity, transform;
  user-select: none;
  white-space: nowrap;

}

.subtitle {
	font-size: 1rem;
	color: #FFFFFF;
}

.subsubtitle{
	font-size: 0.85rem;
	color: white;
}

.paddT{
  padding-left: 3rem;
  padding-right: 3rem;
}

.radio:checked + .content {
  border-radius: 2rem;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
  flex: 9;
}

.radio:checked + .content > .card-title {
  opacity: 1;
  transform: translateX(0);
}

.radio:checked + .content > .title-card{
  opacity: 1;
  transform: translateX(0);
}

.marg-bott{
	margin-bottom: 1.5rem;
	color: #FFFFFF;
}
	

.containernew {
	width: 100%;
	height: 2500px;
	float: left;
}
.containernew .banner {
	background-image: url(bkbanner.png);
	background-size: 100% 100%;
	width: 100%;
	height: 25%;
	float: left;
}
.containernew .bunlar {
	width: 100%;
	height: 750px;
	float: left;
}
.containernew .bunlar .bunbaslik {
	text-align: center;
	width: 100%;
	font-size: x-large;
	margin-top: 10px;
	color: #021A4F;
	text-shadow: 1px 1px 10px #FAC118;
	font-weight: bold;
	float: left;
}
.containernew .bunlar .encokbir {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	
}





.bunbaslik {
	margin-top: 10px;
}
.encokbir {
	width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;;
}
.akubir {
	background-image: url(aku/inci60efb.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazi1 {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyat1 {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokiki {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuiki {
	background-image: url(aku/inci72efb.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yaziiki {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatiki {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokuc {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuuc {
	background-image: url(aku/inci60agm.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yaziuc {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatuc {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokdort {
	
	
  width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;
}
.akudort {
	background-image: url(aku/inci72agm.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazidort {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatdort {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}

.encokalti {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akualti {
	background-image: url(aku/tunc60efb.jfif);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazialti {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatalti {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokyedi {
	width: 25%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuyedi {
	background-image: url(aku/tunc72efb.jfif);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yaziyedi {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatyedi {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encoksekiz {
	
	
  width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;
}
.akusekiz {
	background-image: url(aku/inci90.webp);
	width: 100%;
	height: 200px;

	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazisekiz {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatsekiz {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokdokuz {
	width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;;
}
.akudokuz {
	background-image: url(aku/inci55.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazidokuz {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatdokuz {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokon {
	width: 23%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	margin-left: 10px;;
}
.akuon {
	background-image: url(aku/inci105.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazion {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyaton {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.konum {
	width: 50%;
	height: 300px;
	float: left;
}
.knm {
	width: 50%;
	height: 300px;
	float: left;
	text-align: center;
	font-size: large;
	font-weight: bold;
}
.akucu {
	width: 100%;
	height: 200px;
	float: left;
}
.containernew .akucu h1 {
	text-align: center;
}
.containernew .akucu h1:hover {
	color: #135AA0;
}
.donenres {
	width: 100%;
	height: 300px;
	float: left;
}
.resm {
	width: 100%;
	height: 500px;
	float: left;
}
.aciklama {
	width: 60%;
	height: 300px;
	float: left;
}
.acikalamresm {
	width: 40%;
	height: 300px;
	float: left;
	background-image: url(resm/degisim.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 61%;
	border-radius: 15px;
}
.aciklamaiki {
	width: 100%;
	height: 250px;
	float: left;
}
.containernew .akudeg {
	width: 100%;
	height: 250px;
	float: left;
}

.alt {
	width: 100%;
	height: 272px;
	float: left;
	background-image: url(alt.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	margin-top: 25px;
}
.altres {
	width: 12%;
	height: 50%;
	background-image: url(lllgo.webp);
	background-size: 100% 100%;
	margin-top: 55px;
	margin-left: 59px;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0px 0px 64px #000000;
	border-radius: 10px;
	box-shadow: 0px 0px 64px #000000;
	float: left;
}
.linkalt {
	width: 43%;
	color: #FFFFFF;
	float: left;
	margin-left: 20%;
	text-align: center;
	margin-top: 88px;
}
.containernew .yerindegisim {
	width: 100%;
	height: 250px;
	float: left;
}







}

@media (max-width: 768px){
	.general-container {
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.radio {
  display: none;
}

.content {
	background-color: transparent;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 3rem;
	cursor: pointer;
	flex: 1;
	margin-right: 0.8rem;
	overflow: hidden;
	position: relative;
	transition: all 0.5s cubic-bezier(0.05, 0.60, 0.39, 0.94);
	background-image: url(resm/aku.png);
	
}

.content::before {
  background: inherit;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.content > * {
	position: relative;
	z-index: 1;
	color: #FFFFFF;
}

.content:hover {
  box-shadow: 0.7rem 0.7rem 0.5rem rgba(0, 0, 0, 0.3);
}

.content:nth-of-type(2) {
  background: transparent;
  background-image: url("resm/test.jpg");
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.content:nth-of-type(3) {
  background: transparent;
  background-image: url("resm/yer.png");
background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.content:nth-of-type(4) {
  background: transparent;
  background-image: url("resm/aku-takviyesi.jpg");
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
}

.card-title {
  bottom: 1.2rem;
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  left: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  position: absolute;
  transform: translateX(2rem);
  transition: 290ms cubic-bezier(0.05, 0.62, 0.40, 0.95) 300ms;
  transition-property: opacity, transform;
  user-select: none;
  white-space: nowrap;
}

.title-card{
  top: 2rem;
  color: black;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  left: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  position: absolute;
  transform: translateX(2rem);
  transition: 290ms cubic-bezier(0.05, 0.60, 0.42, 0.94) 300ms;
  transition-property: opacity, transform;
  user-select: none;
  white-space: nowrap;

}

.subtitle {
	font-size: 1rem;
	color: #FFFFFF;
}

.subsubtitle{
	font-size: 0.85rem;
	color: white;
}

.paddT{
  padding-left: 3rem;
  padding-right: 3rem;
}

.radio:checked + .content {
  border-radius: 2rem;
  box-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
  flex: 9;
}

.radio:checked + .content > .card-title {
  opacity: 1;
  transform: translateX(0);
}

.radio:checked + .content > .title-card{
  opacity: 1;
  transform: translateX(0);
}

.marg-bott{
	margin-bottom: 1.5rem;
	color: #FFFFFF;
}
   
   
   
    :root {
            --gradient: linear-gradient(-10deg , #7fff00, #003b00, #008000, #00ff41);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --border: 1px solid rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 400px;
                background: linear-gradient( rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
                padding: 2rem;
                backdrop-filter: blur(10px);
            }

            .nav-links::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
                pointer-events: none;
            }

            .nav-links.active {
                right: 0;
            }

          
            .nav-links.active a {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links a:nth-child(1) { transition-delay: 0.1s; }
            .nav-links a:nth-child(2) { transition-delay: 0.2s; }
            .nav-links a:nth-child(3) { transition-delay: 0.3s; }
            .nav-links a:nth-child(4) { transition-delay: 0.4s; }
            .nav-links a:nth-child(5) { transition-delay: 0.5s; }

            .mobile-nav-toggle {
                display: block;
            }

            .mobile-nav-toggle.active .bar:nth-child(1) {
                transform: translate(-50%, 5px) rotate(45deg);
                width: 24px;
            }

            .mobile-nav-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }

            .mobile-nav-toggle.active .bar:nth-child(3) {
                transform: translate(-50%, -5px) rotate(-45deg);
                width: 24px;
            }
 .mobile-nav-toggle {
	display: flex;
	background: #000000;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	position: relative;
	z-index: 1001;
	border-radius: 50%;
	transition: background-color 0.3s ease;
        }
.logoo {
	
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 8s linear infinite;
            background-size: 300%;
            letter-spacing: -0.5px;
        }
		 .navbar {
			margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 5%;
            backdrop-filter: blur(12px);
            background: #151212;
            border-bottom: var(--border);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow);
			  
			  .mobile-nav-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-toggle .bar {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: white;
            transition: all 0.4s ease;
        }

        .mobile-nav-toggle .bar:nth-child(1) { top: 14px; }
        .mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
        .mobile-nav-toggle .bar:nth-child(3) { top: 24px; }
		.nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        }

        .nav-links a:hover::before,
        .nav-links a:hover::after {
            width: 100%;
            animation: gradient 8s linear infinite;
        }
.containernew .bunlar {
	float: left;
	width: 100%;
	height: 1000px;
}
.containernew .bunlar .bunbaslik {
	float: left;
}
.containernew .bunlar .menuaku {
}
.containernew .akucu {
	float: left;
	width: 100%;
}




		 }
.containernew {
	width: 100%;
	height: 2500px;
	float: left;
}
.containernew .banner {
	background-image: url(bkbanner.png);
	background-size: 100% 100%;
	width: 100%;
	height: 10%;
	float: left;
	margin-top: 100px;
}
.containernew .bunlar {
	width: 100%;
	height: 1000px;
	float: left;
}
.containernew .bunlar .bunbaslik {
	text-align: center;
	width: 100%;
	font-size: x-large;
	margin-top: 10px;
	color: #021A4F;
	text-shadow: 1px 1px 10px #FAC118;
	font-weight: bold;
	float: left;
}
.containernew .bunlar .encokbir {
	width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	
}





.bunbaslik {
	margin-top: 10px;
}
.encokbir {
	margin-top: 20px;
}
.akubir {
	background-image: url(aku/inci60efb.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazi1 {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyat1 {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokiki {
	width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuiki {
	background-image: url(aku/inci72efb.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yaziiki {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatiki {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokuc {
	width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 5px;
	
}
.akuuc {
	background-image: url(aku/inci60agm.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yaziuc {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatuc {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokdort {
	
	
  width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 5px;
	margin-left: 10px;
}
.akudort {
	background-image: url(aku/inci72agm.png);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazidort {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatdort {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	margin-top: 20px;
	float: left;
}
.encokalti {
	
	  width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 5px;
	margin-left: 10px;

}
.akualti {
	background-image: url(aku/tunc60efb.jfif);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yazialti {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatalti {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	
	float: left;
}
.encokyedi {
	width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 20px;
	
}
.akuyedi {
	background-image: url(aku/tunc72efb.jfif);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 50%;
	float: left;
}
.yaziyedi {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatyedi {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	
	float: left;
}
.encoksekiz {
	width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 5px;
	
}
.akusekiz {
	background-image: url(aku/inci90.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazisekiz {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatsekiz {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	
	float: left;
}
.encokdokuz {
	
	
  width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 5px;
	margin-left: 10px;
}
.akudokuz {
	background-image: url(aku/inci55.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazidokuz {
	text-align: center;


	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyatdokuz {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	
	float: left;
}.encokon {
	
	
  width: 45%;
	height: 300px;
	float: left;
	background-size: 100% auto;
	background-position: 0% 0;
	background-repeat: no-repeat;
	margin-top: 5px;
	margin-left: 10px;
}
.akuon {
	background-image: url(aku/inci105.webp);
	width: 100%;
	height: 200px;
	background-repeat: no-repeat;
	float: left;
	background-size: 80% 100%;
	background-position: 60% 0%;
}
.yazion {
	text-align: center;
	float: left;
	width: 100%;
	color: #13579D;
	font-weight: bold;
	font-size: large;
}
.fiyaton {
	width: 100%;
	text-align: center;
	font-size: large;
	font-weight: bold;
	
	float: left;
}
.konum {
	width: 100%;
	height: 300px;
	float: left;
	margin-top:10px;
}
.knm {
	width: 100%;
	height: 300px;
	float: left;
	text-align: center;
	font-size: large;
	font-weight: bold;
}
.akucu {
	width: 100%;
	height: 400px;
	float: left;
}
.containernew .akucu h1 {
	text-align: center;
}
.containernew .akucu h1:hover {
	color: #135AA0;
}
.donenres {
	width: 100%;
	height: 100px;
	float: left;
}
.resm {
	width: 100%;
	height: 200px;
	float: left;
}
.aciklama {
	width: 100%;
	height: 300px;
	float: left;
}
.acikalamresm {
	width: 100%;
	height: 300px;
	float: left;
	background-image: url(resm/degisim.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 0% 61%;
	border-radius: 15px;
}
.aciklamaiki {
	width: 100%;
	height: 500px;
	float: left;
}
.alt {
	width: 100%;
	height: 272px;
	float: left;
	background-image: url(alt.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-top: 25px;
}
.altres {
	width: 12%;
	height: 20%;
	background-image: url(lllgo.webp);
	background-size: 100% 100%;
	margin-top: 55px;
	margin-left: 59px;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0px 0px 64px #000000;
	border-radius: 10px;
	box-shadow: 0px 0px 64px #000000;
	float: left;
}
.linkalt {
	width: 43%;
	color: #FFFFFF;
	float: left;
	margin-left: 20%;
	text-align: center;
	margin-top: 20px;
}



.menuaku {
	float: left;
	margin-top: 5px;
	width: 100%;
	height: 200px;
}
.menubam {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	list-style-type: none;
	width: 100%;
	height: 20px;
	float:left;
}
.li {
	float: left;
	width: 100%;
	text-align: center;
	background-color: #13579E;
	color: #FFFFFF;
	font-size: large;
	height: 20px;
	
}
.menuaku .menubam .li:hover {
	font-size: large;
	background-color: #FAC117;
	color: #000000;
}
}
