
body {
    font-family: 'Montserrat', sans-serif;
    /*font-family: 'Roboto', sans-serif;*/
    font-weight: 300;
    font-size: 20px;
    line-height: 1.7;
    color: #c4c3ca;
    background-color: #1f2029;
    overflow-x: hidden;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
a {
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}


@media screen and (max-width: 660px) {

    body {
        /*background-image: url(/Resimler/arkaplan.jpg) ;*/
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        height: 100vh;
        width: 100%;
        margin: 0;
        /*
        background-size: 100% 100%;
        background-position: center;
        height: 100vh;
        min-height: 100%;
            */
    }
}

/* #Cursor
================================================== */

.cursor,
.cursor2,
.cursor3{
	position: fixed;
	border-radius: 50%;	
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	left: -100px;
	top: 50%;
	mix-blend-mode: difference;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}
.cursor{
	background-color: #fff;
	height: 0;
	width: 0;
	z-index: 99999;
}
.cursor2,.cursor3{
	height: 36px;
	width: 36px;
	z-index:99998;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out
}
.cursor2.hover,
.cursor3.hover{
	-webkit-transform:scale(2) translateX(-25%) translateY(-25%);
	transform:scale(2) translateX(-25%) translateY(-25%);
	border:none
}
.cursor2{
	border: 2px solid #fff;
	box-shadow: 0 0 22px rgba(255, 255, 255, 0.6);
}
.cursor2.hover{
	background: rgba(255,255,255,1);
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1200px){
	.cursor,.cursor2,.cursor3{
		display: none
	}
}

/* #Primary style
================================================== */

.section {
    position: relative;
	width: 100%;
	display: block;
}
.over-hide{
	overflow: hidden;
}
.full-height {
	height: 100vh;
}

/* #Navigation
================================================== */
 
.cd-header{
    position: fixed;
	width:100%;
	top:0;
	left:0;
	z-index:100;
} 
.header-wrapper{
    position: relative;
	width: calc(100% - 100px);
	margin-left: 50px;
} 
.logo-wrap {
	position: absolute;
	display:block;
	left:0;
	top: 40px;
	cursor: pointer;
}

.logo-wrap a {
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 2px;
	color: #fff;
	transition : all 0.3s ease-out;
}
.logo-wrap a span {
    color: red;
}

.logo-wrap a:hover {
	opacity: 0.9;
}
.nav-but-wrap{ 
	position: relative;
	display: inline-block;
	float: right;
	padding-left: 15px;
	padding-top: 15px;
	margin-top: 26px;
	transition : all 0.3s ease-out;
}
.menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: block;
}
.menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: #fff;
	margin-bottom: 7px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
	width: 16.5px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon__line-right {
	width: 16.5px;
	float: right;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
	width: 30px;
}

.nav {
	position: fixed;
	z-index: 98;
}
.nav:before, .nav:after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(20, 21, 26,0.6);
	border-bottom-left-radius: 200%;
	z-index: -1;
	-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	-webkit-transform: translateX(100%) translateY(-100%);
          transform: translateX(100%) translateY(-100%);
}
.nav:after {
	background: rgba(9,9,12,1);
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav:before {
	-webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.nav__content {
    position: fixed;
    visibility: hidden;
    top: 50%;
    margin-top: 20px;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    width: 100%;
    text-align: center;
}
.nav__list {
	position: relative;
	padding: 0;
	margin: 0;
    margin-bottom: 20px;
	z-index: 2;
}
.nav__list-item {
	position: relative;
	display: block;
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
	opacity: 0;
	text-align: center;
	color: #fff;
	overflow: hidden; 
	font-family: 'Montserrat', sans-serif;
	font-size: 7vh;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 3px;
	-webkit-transform: translate(100px, 0%);
          transform: translate(100px, 0%);
	-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, transform .3s ease;
	transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
	margin-top: 0;
	margin-bottom: 0;
}
.nav__list-item a{ 
	position: relative;
	text-decoration: none;
	color: rgba(255,255,255,0.6);
	overflow: hidden; 
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: 900;
	z-index: 2;
	display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list-item a:after{ 
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -2px;
	left: 50%;
	width: 0;
	height: 0;
	opacity: 0;
	background-color: #8167a9;
	z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list-item a:hover:after{ 
	height: 4px;
	opacity: 1;
	left: 0;
	width: 100%;
}
.nav__list-item a:hover{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a:after{ 
	height: 4px;
	opacity: 1;
	left: 0;
	width: 100%;
}
body.nav-active .nav__content {
	visibility: visible;
}
body.nav-active .menu-icon__line {
	background-color: #fff;
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}
body.nav-active .nav {
	visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
	-webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
	border-radius: 0;
}
body.nav-active .nav:after {
	-webkit-transition-delay: .1s;
          transition-delay: .1s;
}
body.nav-active .nav:before {
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.nav-active .nav__list-item {
	opacity: 1;
	-webkit-transform: translateX(0%);
          transform: translateX(0%);
	-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
	-webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(1) {
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(2) {
	-webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(3) {
	-webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(4) {
	-webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(5) {
	-webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(6) {
	-webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(7) {
	-webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(8) {
	-webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(9) {
	-webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(10) {
	-webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}



@media screen and (max-height: 350px) {
    .logo-wrap {
        top: 20px;
    }

    .nav-but-wrap {
        margin-top: 6px;
    }
}

@media screen and (max-height: 660px) {
    .logo-wrap {
        top: 20px;
    }

    .header-wrapper {
        margin-left: 20px;
        width: calc(100% - 60px);
    }

    .nav-but-wrap {
        margin-top: 6px;
    }

}


    .temaswitchdiv {
        visibility: hidden;
        position: fixed;
        bottom: 20px;
        left: 30px;
        z-index: 200;
        cursor: pointer;
        width: 100px;
        height: 100px;
        text-align: center;
        border-radius: 3px;
        background-position: center center;
        background-size: cover;
        box-shadow: 0 0 0 2px rgba(255,255,255,.1);
        transition: opacity .2s, border-radius .2s, box-shadow .2s;
        transition-timing-function: ease-out;
    }

    .switch-wrap {
        position: absolute;
        top: 60%;
        left: 0;
        z-index: 10;
        transform: translateY(-50%);
        width: 100%;
        -webkit-transition: all 500ms linear;
        transition: all 500ms linear;
        margin: 0 auto;
        text-align: center;
    }

        .switch-wrap h1 {
            font-weight: 900;
            font-size: 38px;
            line-height: 1;
            /*color: #fff;*/
            color: red;
            text-align: center;
            margin-bottom: 40px;
            -webkit-transition: all 300ms linear;
            transition: all 300ms linear;
            font-family: 'Montserrat', sans-serif;
        }

    .switch-wrap quickbut {
        font-weight: 900;
        font-size: 46px;
        line-height: 1;
        /*color: #fff;*/
        color: red;
        text-align: center;
        margin-bottom: 40px;
        -webkit-transition: all 300ms linear;
        transition: all 300ms linear;
    }

    .switch-wrap p {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1;
        color: #8167a9;
        text-align: center;
        margin-top: 15px;
    }

    .switch-wrap p span {
        position: relative;
    }

    .switch-wrap p span:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        bottom: -4px;
        -webkit-transition: all 300ms linear;
        transition: all 300ms linear;
    }

    .switch-wrap p span:nth-child(2):before {
        opacity: 0;
    }


    @media screen and (max-width: 580px) {
        .switch-wrap h1 {
            font-size: 32px;
        }
    }

    @media screen and (max-height: 350px) {
        .switch-wrap h1 {
            font-size: 28px;
            margin-top: 40px;
            margin-bottom: auto;
        }

        .switch-wrap {
            top: 50%;
        }

        .switch-wrap span {
            font-size: 12px;
            margin-top: 30px;
        }
    }


    #switch,
    #circle {
        cursor: pointer;
        -webkit-transition: all 300ms linear;
        transition: all 300ms linear;
    }

    #switch {
        width: 60px;
        height: 8px;
        margin: 0 auto;
        text-align: center;
        border: 2px solid #000;
        border-radius: 27px;
        background: #8167a9;
        position: relative;
        display: inline-block;
    }

    #circle {
        position: absolute;
        top: -11px;
        left: -13px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        box-shadow: 0 4px 4px rgba(26,53,71,0.25), 0 0 0 1px rgba(26,53,71,0.07);
        background: #fff;
    }

    .switched {
        border-color: #8167a9 !important;
        background: #000 !important;
    }

        .switched #circle {
            left: 43px;
            background: #000;
        }

    /* #Light
================================================== */

    body.light {
        background-color: #fff;
    }

        body.light .cursor,
        body.light .cursor2,
        body.light .cursor3 {
            mix-blend-mode: normal;
        }

        body.light .cursor2 {
            border: 2px solid #1f2029;
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
        }

            body.light .cursor2.hover {
                background: rgba(0,0,0,0.06);
                box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
                border-color: transparent;
            }

        body.light .logo-wrap a {
            color: #1f2029;
        }

        body.light .menu-icon__line {
            background-color: #1f2029;
        }

        body.light .nav:before {
            background: rgba(235, 235, 235,0.6);
        }

        body.light .nav:after {
            background: rgba(250,250,250,1);
        }

        body.light .nav__list-item a {
            color: rgba(0,0,0,0.6);
        }

            body.light .nav__list-item a:hover {
                color: #1f2029;
            }

        body.light .nav__list-item.active-nav a {
            color: #1f2029;
        }

        body.light .switch-wrap h1 {
            color: #000;
        }

        body.light .switch-wrap p span:nth-child(2):before {
            opacity: 1;
            background-color: #000;
        }

        body.light .switch-wrap p span:nth-child(1):before {
            opacity: 0;
        }

    /* #Link to page
================================================== */

    .link-to-portfolio {
        position: fixed;
        bottom: 40px;
        right: 50px;
        z-index: 200;
        cursor: pointer;
        width: 40px;
        height: 40px;
        text-align: center;
        border-radius: 3px;
        background-position: center center;
        background-size: cover;
        background-image: url('https://ivang-design.com/ig-logo.jpg');
        box-shadow: 0 0 0 2px rgba(255,255,255,.1);
        transition: opacity .2s, border-radius .2s, box-shadow .2s;
        transition-timing-function: ease-out;
    }

    .link-to-portfolio:hover {
        opacity: 0.8;
        border-radius: 50%;
        box-shadow: 0 0 0 20px rgba(255,255,255,.1);
    }




    /*  main quick buttons */
    .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        display: flex;
        padding: 10px;
        text-align: center;
    }

    .footer {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: 45px;
        margin: 0 0 2em;
        margin-top: 60px;
        max-width: 160px;
        position: relative;
        text-decoration: none;
        width: 100%;
        border: 1px;
        border-color: white;
        background-color: red;
    }

    .footer-btn {
        margin-left: 20px;
        margin-right: 20px;
        left: 0px;
        letter-spacing: 0;
        letter-spacing: 0px;
        border: 0 solid;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
        outline: 1px solid;
        outline-color: rgba(255, 255, 255, .5);
        outline-offset: 0px;
        text-shadow: none;
        transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    }


    .footer-btn:hover,
    .footer-btn:active {
        letter-spacing: 5px;
        background: red;
        border: 1px solid;
        box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
        outline-color: rgba(255, 255, 255, 0);
        outline-offset: 15px;
        text-shadow: 1px 1px 2px #427388;
    }

    .footer-btn:after,
    .footer-btn:before {
        backface-visibility: hidden;
        border: 1px solid rgba(#fff, 0);
        bottom: 20px;
        content: " ";
        display: block;
        margin: 0 auto;
        position: relative;
        transition: all 280ms ease-in-out;
        width: 0;
    }

    .footer-btn:hover:after,
    .footer-btn:hover:before {
        backface-visibility: hidden;
        border-color: #fff;
        transition: width 350ms ease-in-out;
        width: 70%;
    }

    .footer-btn:hover:before {
        bottom: 20px;
        top: 0;
        width: 70%;
        background: red;
    }

    .footer-btn-video {
        background-color: blue;
    }




.vidbutton {
    margin: 0vh auto 0;
    height: 50px;
    padding: 0.8em 1.4em 0.8em 2.8em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: black;
    background: linear-gradient( 180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 100%);
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 5px 0px rgba(158, 66, 61, 0.24);
    transition: all 0.15s ease-in-out;
    cursor: pointer;
    display: block;
    position: relative;
    transform: translate(0,0);
}

    .vidbutton:before {
        content: "";
        width: 26px;
        height: 26px;
        background: transparent url(/Resimler/play.png) no-repeat 0 0;
        background-size: 26px 26px;
        float: left;
        position: absolute;
        top: 24%;
        left: 10px;
    }

    .vidbutton:hover {
        box-shadow: inset 0 3px 40px 3px rgba(255,255,255,0.6), 0px 4px 5px 0px rgba(158, 66, 61, 0.4);
    }

    .vidbutton:active {
        transform: translate(0,1px);
    }

    @media screen and (max-width: 660px) {

        .footer-btn {
            margin-left: 20px;
        }
    }



/* Genel
================================================== */
.GenelHyperlink {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    color: #00FF00;
    text-decoration: none;
}

.GenelHyperlink:hover {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    color: #FFFF00;
    text-decoration: underline;
    font-weight: bold;
}

.Bilgilink {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #00FF00;
    font-size: small;
    text-decoration: none;
    font-weight: bold;
}

.Bilgilink:hover {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    color: #FFFF00;
    text-decoration: underline;
}

.Hatabaslik {
    font-weight: bolder;
    font-size: larger;
    color: Yellow;
}

.Hataaciklama {
    font-weight: bold;
    font-size: medium;
    color: White;
}

/* #Bilgi tabloları 
================================================== */
.BilgiTablolariDis {
    padding-left: 10%;
    padding-right: 10%;
}

.BilgiTablolari{
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.TabloBaslik{
    font-family: Verdana;
    font-weight: normal;
    font-size: smaller;
    color: #00ff00;
}

.Bilgilink {
    font-family: Verdana, Arial, sans-serif;
    color: #00FF00;
    font-size: small;
    text-decoration: none;
    font-weight: bold;
    line-height: 20px;
}

.NormalLink{
    color: #6a8fff;
    font-family: verdana, sans-serif;
    font-size: small;
    text-decoration: underline;
}

.ResimliMenu {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    color: #FF9900;
    text-decoration: none;
}

.ResimliMenu table {
    border-spacing: 5%;
}

.ResimliMenu td {
    padding: 10px;
}


.Hatabaslik {
    font-weight: bolder;
    font-size: larger;
    color: Yellow;
}

.Hataaciklama {
    font-weight: bold;
    font-size: medium;
    color: White;
}

.Bilgi{
    text-align: center;
    margin-left: 15%;
    margin-right: 15%;
    line-height: 20px;
 }

.Bilgi h1 {
    font-family: Verdana;
    font-weight: bolder;
    font-size: large;
    color: #00ff00;
}

.Bilgi p {
    font-family: Verdana;
    font-weight: normal;
    font-size: small;
    color: White;
}

.BilgiLink {
    font-family: Verdana;
    font-weight: normal;
    font-size: small;
    color: White;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center;
    line-height: 20px;
}

.GenelHyperlink {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    color: #00FF00;
    text-decoration: none;
}

.GenelHyperlink:hover {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    color: #FFFF00;
    text-decoration: underline;
    font-weight: bold;
}

.PrBilgiLink {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: crimson;
    text-decoration: none;
}




@media only screen and (max-width:660px) {
    ._ResimliMenu {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: smaller;
        font-weight: bold;
        color: #FF9900;
        text-decoration: none;
    }

    .ResimliMenu table {
        border-spacing: 15px;
    }

    .ResimliMenu td {
        position: relative;
        width: 100%;
        display: block;
        padding: 1px;
    }
    
    .BilgiTablolariDis {
        padding-left: 0;
        padding-right: 0;
    }
}



    /* #Hakkında page
================================================== */
    .hakkindadiv {
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        background-color: black;
        background-color: #1f2029;
    }

    .hakkindabas {
        font-weight: bolder;
        font-size: medium;
        color: #00ff00;
    }

    .hakkindasat {
        font-weight: normal;
        font-size: small;
        color: white;
    }




    /* #Yenilik page
================================================== */
    .yenilikbaslik {
        font-family: Verdana;
        font-size: large;
        color: #00ff00;
    }

    .yenilikaltbas {
        font-family: Verdana;
        font-size: medium;
        color: #00ff00;
    }

    .yenilikayrinti {
        font-family: Verdana;
        font-size: medium;
        color: white;
        line-height: 25px;
        display: inline-block;
    }

    @media screen and (max-width: 660px) {
        .yenilikayrinti {
            font-size: small;
            line-height: 20px;
        }
    }




    /* #Footer info
================================================== */
    .tilabilgi {
        text-align: center;
        font-family: Verdana;
        font-size: small;
        color: #B4B467;
    }




    /* #Program karşılaştırma
================================================== */

    .ozellikler {
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
        width: 80%;
        border-collapse: collapse;
        line-height: 20px;
    }

        .ozellikler td, #customers th {
            font-size: 1em;
            border: 1px solid #98bf21;
            padding: 3px 7px 2px 7px;
            color: White;
        }

        .ozellikler th {
            font-size: 1.1em;
            text-align: left;
            padding-top: 5px;
            padding-bottom: 4px;
            background-color: #A7C942;
            color: #ffffff;
        }

        .ozellikler tr.alt td {
            color: White;
            background-color: #EAF2D3;
        }


/* #Projects 
================================================== */

.ProjectAnaBaslik {
    font-weight: bolder;
    font-size: xx-large;
    color: red;
}

.ProjectOrtam {
    font-weight: bolder;
    font-size: xx-large;
    color: greenyellow;
}

.ProjectBaslik {
    font-weight: bold;
    font-size: larger;
    color: Yellow;
}

.ProjectAciklama {
    font-weight: bold;
    font-size: medium;
    color: White;
}

ProjectHr {
    height: 1px;
    color: red;
    background-color: red;
    border: none;
}



/* #Çözümler 
================================================== */

.CozumBaslik {
    font-weight: bold;
    font-size: larger;
    color: Yellow;
}

.CozumAciklama {
    font-weight: bold;
    font-size: medium;
    color: Yellow;
}

ProjectHr {
    height: 1px;
    color: red;
    background-color: red;
    border: none;
}


/* #Ozellik 
================================================== */

.OzellikAnaBaslik {
    font-weight: bold;
    font-size: xx-large;
    color: red;
}


.OzellikBaslik {
    font-weight: bold;
    font-size: larger;
    color: green;
}

.OzellikAciklama {
    font-weight: normal;
    font-size: medium;
    color: Yellow;
}


