/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster:
                                          http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

@keyframes loaderAnimation {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #001530;
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-flow: column;
}

.loader figure {
    position: relative;
}

.loader figure:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #001530;
    transition: all 1s;
    opacity: 0.9;
    animation-name: loaderAnimation;
    animation-duration: 3s;
}

.loader figure img {
    filter: invert(2);
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

nav.navbar.navbar-static-top {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 105px;
}

.main-menu-area nav ul li a {
    text-transform: none;
    font-size: 17px;

}

.logo-mobile-menu img {
    max-height: 40px;
}

.slider-area .slide-1 .top-title-slide {
    text-transform: none;
}

.slider-area .slide-2 .top-title-slide {
    text-transform: none;
}

.slider-area .slide-3 .top-title-slide {
    text-transform: none;
}

.btn-fill-primary {
    text-transform: none;
}

h1.title-bold-dark {
    text-transform: none;
}

.section-space-service {
    padding: 46px 0 4px;
}

.section-space30 {
    padding: 46px 0 4px;
}

.section-space-service {
    padding: 3px 0 14px;
}

.section-space {
    padding: 68px 0 0px;
}

.testimonial-box-layout1 p {
    margin: 31px auto -3px;
}

.bg-body {
    background: #001530;
}

.sidebar-box.bg-body {
    background: #fff !important;
}

.main-menu-area nav ul li a {
    color: #001530;
}

.bg-primary {
    background-color: #001530;
}

.stick {
    border-bottom: 2px solid #001530;
}

.award-area .tab-title li {
    background-color: #001530;
}

.award-area .tab-title .active a {
    color: #001530;
}

.slider-layout-1 .slide-1 .top-title span, .slider-layout-1 .slide-2 .top-title span, .slider-layout-1 .slide-3 .top-title span {
    color: #001530;
}

.btn-fill-primary2 {
    border: 2px solid #001530;
    background: #001530;
}

h1.title-bold-dark span {
    color: #001530;
}

.case-result-box1:hover h3 a {
    background: #001530;
}

.case-result-box1 .item-img:before {
    background-color: rgba(115, 22, 19, 0.9);
}

.section-title-dark h2 span {
    color: #001530;
}

.section-title-dark > span i {
    color: #001530;
}

.section-title-dark > span:before {
    background-color: #001530;
}

.section-title-dark > span:after {
    background-color: #001530;
}

.practice-box-layout1 h3 a i {
    background: #001530;
}

.practice-box-layout1:hover {
    background: #001530;
}

.practice-box-layout1:hover a i {
    color: #001530;
}

.flat-btn {
    color: #001530;
}

.bg-dark-primary {
    background-color: #001530;
}

.bg-accent {
    background-color: #001530;
}

.footer-area-bottom {
    background-color: #001530;
    border-top: 2px #001530 solid;
}

.mobile-menu-back:before {
    background-color: #001530;
}

.mean-container a.meanmenu-reveal span {
    background: #001530;
}

.mean-container a.meanmenu-reveal {
    color: #fff;
}

@media only screen and (max-width: 769px) {
    .award-area {
        padding-top: 10px;
    }

    .mgizle {
        display: none !important;
    }
    .navbar-fixed-top{
        height: 80px !important;
    }
}

@media only screen and (min-width: 1070px){

    nav.navbar.navbar-static-top{
        padding: 0 90px 0 90px;
    }
    .margin-screen{
        padding-top: 30px;
    }

}

.cp-text-box {
    text-align: justify;
}

p {
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: none;
}

#ust2 {
    height: 100%;
    width: 100%;
    display: block;
    background-image: url('images/slide1.jpg');
    background-size: cover;
    position: relative;
    margin-top: -4%;

}

.altsayfa {
    height: auto !important;
    background: none;
    background-image: none !important;
}

.altsayfa > .navbar-static-top {
    background: #001530;
    height: 90px;
    transition: ease all 200ms;
}

#ust2 .navbar-brand img {
    max-height: 90px;
}

.navbar-nav {
    padding-top: 0px;
}

.navbar-nav > li > a {
    color: #fff;
    opacity: 0.6;
    transition: ease all 200ms;
    font-family: Arial;
    font-size: 14px;
    font-weight:400;
}

.nav > li > a:focus, .nav > li > a:hover {
    background: none !important;
    color: #fff;
    opacity: 1;
    transition: ease all 200ms;
}

.asagiok {
    position: absolute;
    bottom: 5px;
    margin-left: -20px;
    left: 50%;
    color: #fff;
    font-size: 26px;
    opacity: 0.6;
    transition: ease all 200ms;
    z-index: 99999;
}

.asagiok:hover {
    color: #fff;
    transition: ease all 200ms;
    bottom: 20px;
    opacity: 1;
}

.navbar-static-top {
    transition: ease all 500ms;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-fixed-top {
    background: #001530;
    height: 120px;
    transition: ease all 500ms;
}

.wrapper {

}

@media screen and (max-width: 767px) {
    #ust2 .navbar-brand img{
        max-height: 60px !important;
    }
    #ust2 {
        background-position: center center;
    }

    #ust2 .navbar-brand img {
        max-height: 50px;
    }

    .navbar-toggle {
        background: #fff;
        margin-top: 28px;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .navbar-collapse {
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .navbar-nav {
        background: #001530;
    }

    .asagiok {
        display: none;
    }
    .navbar-brand img {max-width: 200px !important;/* margin-top: -10px; */margin-left: 0px !important;}
}

/* YOUR CSS simplified */
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    /* height: 100vmin !important; */
    width: 100%;
    line-height: 1;
}

/*Bootstrap Carousel Fade Transition (for Bootstrap 3.3.x)
  CSS from:       http://codepen.io/transportedman/pen/NPWRGq
  and:            http://stackoverflow.com/questions/18548731/bootstrap-3-carousel-fading-to-new-slide-instead-of-sliding-to-new-slide
  Inspired from:  http://codepen.io/Rowno/pen/Afykb*/
.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}

/*WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

ul.nav.navbar-nav.navbar-right li > ul {
    display: none;
}

ul.nav.navbar-nav.navbar-right > li:hover {
    display: block !important;
}

ul.nav.navbar-nav.navbar-right li:hover > ul {
    display: block !important;
    width: 180px;
    background-color: #001530;
    /* padding: 5px; */
    position: absolute;
    left: 0px;
    opacity:0.9;
    top: 100%;
}

li.dropdown {
}

ul.nav.navbar-nav.navbar-right li:hover > ul > li > a {
    color: #fff;
    font-size: 12px;
    /* text-align: center; */
}

nav navbar-nav navbar-right li {
    position: inherit !important;
}

ul.nav.navbar-nav.navbar-right > li {
}

ul.nav.navbar-nav.navbar-right {
    position: relative !important;
}

ul.nav.navbar-nav.navbar-right li:hover > ul > li {
    padding: 10px 0 10px 15px;
    text-align: left;
}

@media only screen and (max-width: 600px) {
    ul.nav.navbar-nav.navbar-right li:hover > ul {
        position: inherit !important;
        padding: 20px;
    }
}

.practice-box-layout1 h3 a {
    padding: 20px 0;
    text-align: center;
}

.section-title-dark p {
    width: 80%;
    margin: 0 auto;
}

.carousel-inner {
    height: 100% !important;
}
.dropdown a i {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    position: absolute;
    right: 6px;
    top: 15px;
}
@media (min-width: 768px){
    .navbar-nav>li>a {
        padding: 15px 15px!important;
    }
}
@media (max-width: 1024px){
    #ust2 .navbar-brand img{
        max-height: 60px !important;
    }
}
.mb-10{
    margin-bottom: 10px;
}
.margin-screen font {
    font-size: 35px;
}
