﻿@charset "UTF-8";

/*
 *
 *
 *  ANIMATE CSS
 *
 *
 *
 */


@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }

    100% {
        opacity: 1;
    }
}


@font-face {
  font-family: 'Ubuntu-Regular';
  src: 
  url('/Start/fonts/ubuntu/Ubuntu-Regular.eot?#iefix') format('embedded-opentype'),  
  url('/Start/fonts/ubuntu/Ubuntu-Regular.woff') format('woff'),
  url('/Start/fonts/ubuntu/Ubuntu-Regular.ttf')  format('truetype'),
  url('/Start/fonts/ubuntu/Ubuntu-Regular.svg#Ubuntu-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

body.pace-done .zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
    animation-timing-function:cubic-bezier(0, 1, 0.25,1);
    -webkit-animation-timing-function:cubic-bezier(0, 1, 0.25,1);
    -webkit-animation-iteration-count: 1; /* Safari 4.0 - 8.0 */
    animation-iteration-count: 1;
}

/*
 *
 *
 *  MAIN
 *
 *
 *
 */
html, body {
    font-family: arial,tahoma,verdana,helvetica;
    height: 100%;
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden !important;
    min-width: 800px !important;
    min-height: 768px !important;
    margin: 0;
    padding: 0;
}

a.cdmy-btn  {
    content: "CD MEDYA";
    position: absolute;
    bottom: 0;
    right: 0;
    font-weight: 300;
    transform: translateY(100%);
    z-index: 11;
    color: #fff;
    opacity: 0;
    font-size: 12px;
    line-height: 25px;
    padding: 10px;
    transition: opacity 3s ease 0s,transform 1s ease 0s;
    text-decoration:none;
}
a.cdmy-btn img{
	height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}




body.pace-done a.cdmy-btn  {
    opacity: 1;
    transform: translateY(0);
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    transition: all 500ms ease;
    text-align: center;
}

    .loader:before {
        content: " ";
        height: 50%;
        width: 1px;
        position: relative;
        display: inline-block;
    }

    .loader .loader-center {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin: 0 auto;
        text-align: center;
    }

body.pace-done .loader {
    opacity: 0;
}


.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: none;
    line-height: 40px;
    text-align: center;
}

@media only screen and (max-height: 580px) {
    .header {
        position: relative;
    }
}

@media only screen and (max-height: 650px) and (max-width:1000px) {
    .header {
        position: relative;
    }
}


.header > .header-item {
    position: absolute;
    top: 20px;
}

    .header > .header-item.left {
        left: 0;
        text-align: left;
    }

    .header > .header-item.right {
        right: 0;
        text-align: right;
    }

.header .btn {
    background-color: transparent;
    box-shadow: none;
    line-height: 60px;
    height: 60px;
}

.header .head {
    color: #fff;
    text-transform: uppercase;
    font-size: 2rem;
    padding: 0 30px;
    font-weight: 100;
}

.viewport-container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
    min-width: 800px !important;
    cursor: -webkit-grab;
    cursor: grab;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.router {
    display: inline-block;
    position: relative;
    margin: 0;
    list-style: none;
    padding: 5px;
    background-color: #EFEBE7;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 3px 20px rgba(0,0,0,0.2);
    border-radius: 0 0 5px 5px;
    border: 1px solid #A29587;
    border-top: none;
}

    .router .router-btn {
        padding: 0 30px;
        color: #222;
        font-weight: 300;
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

        .router .router-btn + .router-btn {
            border-left: 1px solid #be873c;
        }

        .router .router-btn:first-child:after {
            background-color: rgba(255,255,255,0.0);
        }

        .router .router-btn:first-child {
            border-radius: 0 0 0 3px;
        }

        .router .router-btn:last-child {
            border-radius: 0 0 3px 0;
        }

        .router .router-btn:after {
            content: " ";
            width: 100%;
            height: 0;
            top: 0;
            left: 0;
            background: rgb(255,199,122);
            background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmYzc3YSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZGJlNjgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
            background: -moz-linear-gradient(top, rgba(255,199,122,1) 0%, rgba(253,190,104,1) 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,199,122,1)), color-stop(100%,rgba(253,190,104,1)));
            background: -webkit-linear-gradient(top, rgba(255,199,122,1) 0%,rgba(253,190,104,1) 100%);
            background: -o-linear-gradient(top, rgba(255,199,122,1) 0%,rgba(253,190,104,1) 100%);
            background: -ms-linear-gradient(top, rgba(255,199,122,1) 0%,rgba(253,190,104,1) 100%);
            background: linear-gradient(to bottom, rgba(255,199,122,1) 0%,rgba(253,190,104,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc77a', endColorstr='#fdbe68',GradientType=0 );
            position: absolute;
            transition: all 500ms ease;
            box-shadow: inset 0 0 3px rgba(0,0,0,0.2);
            z-index: -1;
        }

        .router .router-btn.active {
            color: #222;
        }

            .router .router-btn.active:after {
                height: 100%;
            }

        .router .router-btn .material-icons {
            display: inline-block;
            vertical-align: top;
            line-height: 60px;
            margin-right: 15px;
        }

        .router .router-btn .text {
            display: inline-block;
        }

.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}

    .parallax-bg:before {
        content: " ";
        background-color: rgba(0,0,0,0.07);
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
}

    .swiper-slide .item-viewport {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        margin: 0 auto;
        text-align: center;
        max-width: 90%;
    }

    .swiper-slide:before {
        content: " ";
        height: 50%;
        width: 1px;
        position: relative;
        display: inline-block;
    }

@media only screen and (max-height: 580px) {
    .swiper-slide:before {
        display: none;
    }
}
/* w >= 1600 */
.item {
    display: inline-block;
    position: relative;
    vertical-align: top;
    transition: all 400ms ease 0s;
    cursor: pointer;
    padding: 15px 10px;
    vertical-align: top;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    margin: 10px;
    border-radius: 3px;
    text-decoration: none;
}


    .item:hover {
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
        background-color: rgba(255,255,255,0.9);
        z-index: 10;
    }

        .item:hover > .text {
            color: #222;
        }

        .item:hover > .icon:after {
            opacity: 0;
        }

    .item .icon {
        height: 140px;
        width: 140px;
        background-position: center;
        background-size:55% auto;
        background-repeat: no-repeat;
        display: block;
        position: relative;
        overflow: hidden;
        margin: 0;
    }



    .item .text {
        font-size: 13px;
        max-width: 140px;
        min-height: 42px;
        color: #fff;
        -webkit-transition: all 700ms ease 0s;*/
        padding: 10px 0;
      	font-family: 'Ubuntu-Regular', sans-serif;
		letter-spacing: 0.5px;
      
    }

/* w = 1366 ~ 1662 */

@media only screen and (min-width: 1250px) and (max-width: 1662px) {
    .item {
        padding: 10px;
        margin: 5px;
    }

        .item .icon {
            height: 85px;
            width: 100px;
            border-radius: 5px;
            background-size: auto 80%;
        }

        .item .text {
            width: 100px;
            overflow: hidden;
            max-height: 43px;
        }
}
/* w = 1024 ~ 1366 */

@media only screen and (max-width: 1250px) {
    .item {
        padding: 15px;
        background-color: rgba(255,255,255,0.2);
        margin: 5px;
    }

        .item .icon {
            height: 50px;
            width: 50px;
            float: left;
            border-radius: 0;
            background-size: auto 60%;
        }

            .item .icon:after {
                border-radius: 0;
            }

        .item .text {
            text-align: left;
            width: 120px;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            padding: 0;
            margin-left: 10px;
            line-height: 50px;
            float: left;
        }
}


/*
 *
 *
 * WAVES
 *
 *
 *
 */

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    transition: .7s ease-out;
}

    .waves-effect .waves-ripple {
        position: absolute;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        margin-left: -10px;
        opacity: 0;
        background: rgba(0, 0, 0, 0.2);
        transition: all 0.7s ease-out;
        transition-property: transform, opacity;
        transform: scale(0);
        pointer-events: none;
    }

    .waves-effect.waves-light .waves-ripple {
        background-color: rgba(255, 255, 255, 0.45);
    }

    .waves-effect.waves-red .waves-ripple {
        background-color: rgba(244, 67, 54, 0.7);
    }

    .waves-effect.waves-yellow .waves-ripple {
        background-color: rgba(255, 235, 59, 0.7);
    }

    .waves-effect.waves-orange .waves-ripple {
        background-color: rgba(255, 152, 0, 0.7);
    }

    .waves-effect.waves-purple .waves-ripple {
        background-color: rgba(156, 39, 176, 0.7);
    }

    .waves-effect.waves-green .waves-ripple {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .waves-effect.waves-teal .waves-ripple {
        background-color: rgba(0, 150, 136, 0.7);
    }

    .waves-effect input[type="button"], .waves-effect input[type="reset"], .waves-effect input[type="submit"] {
        border: 0;
        font-style: normal;
        font-size: inherit;
        text-transform: inherit;
        background: none;
    }

    .waves-effect img {
        position: relative;
        z-index: -1;
    }

.waves-notransition {
    transition: none !important;
}

.waves-circle {
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

    .waves-input-wrapper .waves-button-input {
        position: relative;
        top: 0;
        left: 0;
        z-index: 1;
    }

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    -webkit-mask-image: none;
}

.waves-block {
    display: block;
}

/* Firefox Bug: link not triggered */
.waves-effect .waves-ripple {
    z-index: -1;
}





/*
*
*
*
*/
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: relative;
    height: 3px;
    width: 100%;
    border: 1px solid #222;
    overflow: hidden;
}

    .pace .pace-progress {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        max-width: 100%;
        position: fixed;
        z-index: 2000;
        display: block;
        position: absolute;
        top: 0;
        right: 100%;
        height: 100%;
        width: 100%;
        background: #E0002E;
    }

    .pace.pace-inactive {
        display: none;
    }

.bribbon{
    background-image: url(/Start/image/siyah_kurdela_02.png);
    height: 50px;
    width: 50px;
    position: absolute;
    right: 10px;
    top: 10px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.cdmy-sign{
	background-image: url(/Start/image/cdmy-corpus-sign-logo.png);
    height: 19px;
    width: 100px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}