.calendar {
    display: flex;
    flex-flow: column
}

.calendar .header .month-year {
    font-size: 20px;
    font-weight: 700;
    color: #636e73;
    padding: 20px 0
}

.calendar .days {
    display: flex;
    flex-flow: wrap
}

.calendar .days .day_name {
    width: calc(100% / 7);
    border-right: 1px solid #2c7aca;
    padding: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: #818589;
    color: #fff;
    background-color: #448cd6
}

.calendar .days .day_name:nth-child(7) {
    border: none
}

.calendar .days .day_num {
    display: flex;
    flex-flow: column;
    width: calc(100% / 7);
    border-right: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    padding: 15px;
    font-weight: 700;
    color: #7c878d;
    cursor: pointer;
    min-height: 100px
}

.calendar .days .day_num span {
    display: inline-flex;
    width: 30px;
    font-size: 14px
}

.calendar .days .day_num .event {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 4px;
    background-color: #f7c30d;
    color: #fff;
    word-wrap: break-word
}

.calendar .days .day_num .event.green {
    background-color: #51ce57
}

.calendar .days .day_num .event.blue {
    background-color: #518fce
}

.calendar .days .day_num .event.red {
    background-color: #ce5151
}

.calendar .days .day_num:nth-child(7n+1) {
    border-left: 1px solid #e6e9ea
}

.calendar .days .day_num:hover {
    background-color: #fdfdfd
}

.calendar .days .day_num.ignore {
    background-color: #fdfdfd;
    color: #ced2d4;
    cursor: inherit
}

.calendar .days .day_num.selected {
    background-color: #0884ff;
    color: #fff;
    cursor: inherit
}

.item {
    animation-name: anim-1
}

@keyframes anim-1 {
    0%,8.3% {
        left: -100%;
        opacity: 0
    }

    14%,8.3% {
        left: 14%;
        opacity: 1
    }
}

nav ul li a,nav ul li a:after,nav ul li a:before {
    transition: all .8s
}

nav.fill ul li a,nav.stroke ul li a {
    position: relative
}

nav.fill ul li a:after,nav.stroke ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: ".";
    color: transparent;
    background: #fff;
    height: 1px
}

nav.stroke ul li a:hover:after {
    width: 100%
}

nav.fill ul li a {
    transition: all 2s
}

nav.fill ul li a:after {
    text-align: left;
    content: ".";
    margin: 0;
    opacity: 0
}

nav.fill ul li a:hover {
    z-index: 1
}

nav.fill ul li a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1
}

nav.circle ul li a {
    position: relative;
    overflow: hidden;
    z-index: 1
}

nav.circle ul li a:after {
    display: block;
    position: absolute;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: ".";
    color: transparent;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: 0 0
}

nav.circle ul li a:hover:after {
    -webkit-animation: circle 1.5s ease-in forwards
}

nav.shift ul li a {
    position: relative;
    z-index: 1
}

nav.shift ul li a:hover {
    color: #b40000
}

nav.shift ul li a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: ".";
    color: transparent;
    background: #dadada;
    visibility: none;
    opacity: 0;
    z-index: -1
}

nav.shift ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%
}

.telerisim {
    position: absolute;
    bottom: 0;
    left: 70%;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30%;
    text-align: center;
    opacity: 1;
    transition: opacity .15s ease
}

@-webkit-keyframes fill {
    0% {
        width: 0%;
        height: 1px
    }

    50% {
        width: 100%;
        height: 1px
    }

    100% {
        width: 100%;
        height: 100%;
        background: #333
    }
}

@-webkit-keyframes circle {
    0% {
        width: 1px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 1px;
        z-index: -1;
        background: #fff;
        border-radius: 100%
    }

    100% {
        background: #fff;
        height: 5000%;
        width: 5000%;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 0
    }
}

.video {
    height: 176px;
    width: 100%;
    overflow: hidden;
    position: relative
}

.bg-koyuturuncu:hover {
    background-color: #0064E0!important
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-radius: .25rem
}

.dropdown:hover>.dropdown-menu {
    display: block
}

.dropdown>.dropdown-toggle:active {
    pointer-events: none
}

.trp {
    background-color: #fbd6c0
}

.zoom {
    padding: 20px;
    transition: transform .2s;
    width: 200px;
    height: 200px;
    margin: 0 auto
}

.zoom:hover {
    -ms-transform: scale(1.5);
    -webkit-transform: scale(.15);
    transform: scale(1.5)
}

.video video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%)
}

.text-block {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px
}

.video .caption {
    position: relative;
    text-align: left;
    color: #fff;
    text-align: left;
    padding: 70px 0 15px 25px
}

@media only screen and (max-width: 1025px) {
    .butonerisimi {
        display:none
    }

    .item {
        text-align: left;
        padding: 0;
        position: absolute;
        display: block;
        top: 25%;
        width: 100%;
        font-size: 18px;
        animation-duration: 25s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        font-weight: 700;
        color: #fff;
        text-shadow: 5px 4px 10px rgb(0 0 0);
        -webkit-text-stroke: .5px #000
    }
}

.sss {
    margin: 10px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    position: relative;
    overflow: hidden
}

.sss:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top,rgba(255,255,255,0) 0,rgba(128,194,196,.75) 60%,rgba(128,194,196,1) 80%);
    background: -webkit-gradient(left top,left bottom,color-stop(0,rgba(255,255,255,0)),color-stop(60%,rgba(128,194,196,.75)),color-stop(80%,rgba(128,194,196,1)));
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0,rgba(128,194,196,.75) 60%,rgba(128,194,196,1) 80%);
    background: -o-linear-gradient(top,rgba(255,255,255,0) 0,rgba(128,194,196,.75) 60%,rgba(128,194,196,1) 80%);
    background: -ms-linear-gradient(top,rgba(255,255,255,0) 0,rgba(128,194,196,.75) 60%,rgba(128,194,196,1) 80%);
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(128,194,196,.75) 60%,rgba(128,194,196,1) 80%)
}

@media only screen and (min-width: 450px) {
    footer {
        background-color:#0064E0
    }

    .texts-light {
        color: #fff
    }

    a.texts-light:focus,a.texts-light:hover {
        color: #fff!important
    }
}

@media only screen and (max-width: 450px) {
    footer {
        background-color:#f8f8ff
    }

    .texts-light {
        color: #000
    }

    a.texts-light:focus,a.texts-light:hover {
        color: #000!important
    }
}

@media only screen and (min-width: 1025px) {
    .butonerisimi {
        position:absolute;
        top: 0;
        bottom: 0;
        right: 10%;
        z-index: 1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 30%;
        text-align: center;
        opacity: 1;
        transition: opacity .15s ease
    }

    .item {
        text-align: center;
        padding: 15px;
        position: absolute;
        display: block;
        top: 40%;
        width: 30%;
        font-size: 3em;
        animation-duration: 25s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        font-weight: 700;
        color: #fff;
        text-shadow: 5px 4px 10px rgb(0 0 0);
        -webkit-text-stroke: 2px #000
    }

    .erisim2 {
        display: none
    }
}

.bg-kurumsalumavi {
    background-color: #0064E0
}

.text-koyumavi {
    color: #0064E0
}

.bounce {
    display: inline-block;
    position: relative;
    -moz-animation: bounce .5s infinite linear;
    -o-animation: bounce .5s infinite linear;
    -webkit-animation: bounce .5s infinite linear;
    animation: bounce .5s infinite linear;
    color: 000
}

.fa-map-marker {
    color: #fff
}

@-webkit-keyframes bounce {
    0% {
        top: 0
    }

    50% {
        top: -.2em
    }

    70% {
        top: -.3em
    }

    100% {
        top: 0
    }
}

@-moz-keyframes bounce {
    0% {
        top: 0
    }

    50% {
        top: -.2em
    }

    70% {
        top: -.3em
    }

    100% {
        top: 0
    }
}

@-o-keyframes bounce {
    0% {
        top: 0
    }

    50% {
        top: -.2em
    }

    70% {
        top: -.3em
    }

    100% {
        top: 0
    }
}

@-ms-keyframes bounce {
    0% {
        top: 0
    }

    50% {
        top: -.2em
    }

    70% {
        top: -.3em
    }

    100% {
        top: 0
    }
}

@keyframes bounce {
    0% {
        top: 0
    }

    50% {
        top: -.2em
    }

    70% {
        top: -.3em
    }

    100% {
        top: 0
    }
}

.altresim {
    height: 45px
}

.dropdown-item:hover {
    color: #000;
    text-decoration: none;
    background-color: transparent
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-submenu {
    position: relative
}

.dropdown-submenu a::after {
    position: absolute;
    right: 3px;
    top: 40%
}

.dropdown-submenu:focus .dropdown-menu,.dropdown-submenu:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    position: absolute!important;
    margin-top: -30px;
    left: 100%
}

@media (max-width: 992px) {
    .dropdown-menu {
        width:50%
    }

    .dropdown-menu .dropdown-submenu {
        width: auto
    }
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: .5rem solid rgba(0,0,0,.1)
}

.alias {
    cursor: alias
}

.all-scroll {
    cursor: all-scroll
}

.auto {
    cursor: auto
}

.cell {
    cursor: cell
}

.context-menu {
    cursor: context-menu
}

.col-resize {
    cursor: col-resize
}

.copy {
    cursor: copy
}

.crosshair {
    cursor: crosshair
}

.default {
    cursor: default
}

.e-resize {
    cursor: e-resize
}

.ew-resize {
    cursor: ew-resize
}

.grab {
    cursor: -webkit-grab;
    cursor: grab
}

.grabbing {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.help {
    cursor: help
}

.move {
    cursor: move
}

.n-resize {
    cursor: n-resize
}

.ne-resize {
    cursor: ne-resize
}

.nesw-resize {
    cursor: nesw-resize
}

.ns-resize {
    cursor: ns-resize
}

.nw-resize {
    cursor: nw-resize
}

.nwse-resize {
    cursor: nwse-resize
}

.no-drop {
    cursor: no-drop
}

.none {
    cursor: none
}

.not-allowed {
    cursor: not-allowed
}

.pointer {
    cursor: pointer
}

.progress {
    cursor: progress
}

.row-resize {
    cursor: row-resize
}

.s-resize {
    cursor: s-resize
}

.se-resize {
    cursor: se-resize
}

.sw-resize {
    cursor: sw-resize
}

.text {
    cursor: text
}

.url {
    cursor: url(myBall.cur),auto
}

.w-resize {
    cursor: w-resize
}

.wait {
    cursor: wait
}

.zoom-in {
    cursor: zoom-in
}

.zoom-out {
    cursor: zoom-out
}

.cnts {
    margin-bottom: 100px;
    padding: 0
}

@media only screen and (max-width: 768px) {
    .cnts {
        margin-bottom:65px;
        padding: 0
    }
}

.haberresim {
    width: 150px;
    height: 100px;
    background-image: url(http://i.stack.imgur.com/2OrtT.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%
}

.rounded-circle {
    border-radius: 50%!important
}

.carousel-inner img {
    width: 100%;
    height: 100%
}

.backresim {
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 35px;
    text-shadow: 3px 0 10px rgba(0,0,0,1)
}

.text-acikmavi {
    color: #04b2d9
}

.text-acikturuncu {
    color: #dadada
}

.text-koyuturuncu {
    color: #0064E0
}

.text-gri {
    color: #f2f2f2
}

.text-white {
    color: #fff
}

.bg-koyumavi {
    background-color: #0064E0!important
}

.bg-acikmavi {
    background-color: #04b2d9
}

.bg-acikturuncu {
    background-color: #0064E0
}

.bg-koyuturuncu {
    background-color: #dadada
}

.bg-gri {
    background-color: #f2f2f2
}
