body {
    font-family: 'Open Sans', sans-serif;
}

#cover {
    height: 100vh;
    width: 100%;
    padding-top: 20px;
    background: url('http://dortmevsimmanav.com/img/cover2.jpg')no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.asda {
    color: #fff !important;
}

#menu {
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.navbar {
    background: #19a700;
    padding: 0;
}

.navbar-nav {
    margin: 0 auto;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    font-size: 14pt;
    color: #fff !important;
    font-weight: 600 !important;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}

    .nav-link:hover {
        cursor: pointer;
        background: #fff;
        color: #19a700 !important;
    }

* {
    box-sizing: border-box;
}


.carousel {
    background: #EEE;
}

    .carousel img {
        display: block;
        height: 300px;
    }

@media screen and ( min-width: 768px ) {
    .carousel img {
        height: 400px;
    }
}

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    #wrapper.toggled {
        padding-left: 220px;
    }

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    #sidebar-wrapper::-webkit-scrollbar {
        display: none;
    }

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
    padding-top: 70px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}




@import url("https://fonts.googleapis.com/css?family=Roboto:300,500");

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul,
li {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
}

.menu-bar-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    position: fixed;
    z-index: 9998;
}

/* nav-icon */
.nav-icon {
    position: fixed;
    width: 20px;
    height: 22px;
    margin-bottom: 10px;
    margin-left: 20px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    z-index: 9999;
}

    .nav-icon.is-open span:nth-child(1) {
        width: 0%;
        top: 20px;
        left: 50%;
    }

    .nav-icon.is-open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .nav-icon.is-open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .nav-icon.is-open span:nth-child(4) {
        width: 0%;
        top: 10px;
        left: 50%;
    }

    .nav-icon span {
        position: absolute;
        left: 0;
        height: 4px;
        width: 100%;
        background: #000;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.1s ease-in-out;
        transition: 0.1s ease-in-out;
        opacity: 1;
    }

        .nav-icon span:nth-child(1) {
            top: 0px;
        }

        .nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
            top: 10px;
        }

        .nav-icon span:nth-child(4) {
            top: 20px;
        }

/* basic */
.display--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.display--col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* nav */
.menu-bar {
    position: relative;
    text-transform: uppercase;
    color: #cccccc;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    font-weight: lighter;
}

.nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0;
    padding-top: 2px;
    padding-left: 0;
    background-color: #999999;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    list-style: none;
    cursor: pointer;
}

.nav-list__item {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .nav-list__item::before, .nav-list__item::after {
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        height: 1px;
    }

    .nav-list__item::before {
        top: 0;
        background-color: #a6a6a6;
    }

    .nav-list__item::after {
        bottom: 0;
        background-color: #8c8c8c;
    }

    .nav-list__item:hover {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        background-color: #595959;
    }

.nav-list__item--subnav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    list-style: none;
    color: inherit;
    background-color: #404040;
    z-index: 1;
}

    .nav-list__item--subnav.is-display {
        display: block;
        -webkit-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }

.nav-list__item--link {
    text-decoration: none;
    color: inherit;
}

.subnav__item {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #999999;
    text-transform: none;
}

    .subnav__item:hover {
        background-color: #262626;
    }

.nav-link__text {
    margin-left: 20px;
    margin-right: 20px;
}

.nav-list-column a {
    color: #fff !important;
    text-decoration: none;
}
/* responsive */
@media screen and (max-width: 599px) {
    .display--col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .nav-list--hidden {
        display: none;
    }

    .nav-list.is-open {
        display: block;
    }

    .nav-list__item::before, .nav-list__item::after {
        left: 0;
    }
}

@media screen and (min-width: 600px) and (max-width: 999px) {
    .nav-list--hidden-30 {
        position: fixed;
        height: 100%;
        width: 30%;
        display: none;
    }

    .nav-list.is-open {
        display: block;
    }

    .nav-list__item::before, .nav-list__item::after {
        left: 0;
    }
}

@media screen and (min-width: 1000px) {
    .display--row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: center;
    }

    .nav-icon {
        display: none;
    }

    .nav-list__item::before, .nav-list__item::after {
        top: 0;
        width: 1px;
        height: 100%;
    }

    .nav-list__item::before {
        left: 0;
    }

    .nav-list__item::after {
        right: 0;
    }

    .align-to--right {
        margin-left: auto;
    }
}
/**
*https://codepen.io/druArt/pen/VbVjxx
*/
@media screen and (min-width: 1000px) {
    .nav-icon {
        display: block;
    }
}

.nav-icon.is-open span {
    background: #fbfbfb;
}

/* slide-bar */
.svg-scalable {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.slide-bar {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 320px;
    height: 100%;
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.slide-bar__header {
    position: relative;
    width: 100%;
}

.slide-bar__avatar {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #ccc;
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}

.slide-bar__content {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #1a1a1a;
    font-weight: lighter;
}

.nav-list-column {
    display: block;
    list-style: none;
    cursor: pointer;
    margin-top: 50px;
}

    .nav-list-column .nav-list-column.is-open {
        display: block;
    }

.nav-list-column__item {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
}

.js-menu {
    padding-top: 20px;
    overflow: hidden;
    width: 40px;
    height: 30px;
}

.nav-list-column__item:first-child {
    margin-top: 10px;
}

.nav-list-column__item:hover {
    background-color: #141414;
    padding-left: 12px;
}

.nav-list-column__item--subnav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    list-style: none;
    color: inherit;
    background-color: #404040;
    z-index: 1;
}

    .nav-list-column__item--subnav.is-display {
        display: block;
    }

.nav-list-column__item--link {
    text-decoration: none;
    color: inherit;
}

.slide-bar {
    -webkit-transform: translatex(-110%);
    transform: translatex(-110%);
    -webkit-transition: all 0.1s cubic-bezier(0, 0, 0.3, 1);
    transition: all 0.1s cubic-bezier(0, 0, 0.3, 1);
}

    .slide-bar.is-open {
        -webkit-transform: translatex(0);
        transform: translatex(0);
        -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
        transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
    }

.subnav__item {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #999999;
    text-transform: none;
}

    .subnav__item:hover {
        background-color: #262626;
    }

.av-list-column__item {
    text-decoration: none;
    color: inherit;
}

.foo-menu__list {
    display: block;
    padding-top: 10px;
    text-align: center;
    color: #cccccc;
    cursor: pointer;
}

.foo-menu__list--submenu {
    height: 0;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.foo-menu__list:hover .foo-menu__list--submenu {
    height: auto;
    -webkit-transition: all 0.6s cubic-bezier(0, 0, 0.3, 1);
    transition: all 0.6s cubic-bezier(0, 0, 0.3, 1);
}

.submenu__item {
    display: block;
    background-color: #ccc;
    text-decoration: none;
    padding: 10px;
    color: #555;
}

    .submenu__item:hover {
        background-color: #c5c5c5;
        -webkit-transition: all 0.1s cubic-bezier(0, 0, 0.3, 1);
        transition: all 0.1s cubic-bezier(0, 0, 0.3, 1);
    }

.hizmetullah {
    margin-top: 100px !important;
}

    .hizmetullah li {
        list-style: none;
        height: 140px !important;
    }

.hizmetler:hover {
    opacity: 1;
}

.hizmetler .fa {
    line-height: 140px;
}

.hizmetler h2 {
    text-align: left;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-top: 20px;
    font-size: 12pt;
}

.hizmetler span {
    text-align: left;
    font-size: 10pt;
    font-weight: 300;
}

.hizmetullah li:nth-child(1) {
    background: #1bbc9b;
    color: #125d4d;
}

.hizmetullah li:nth-child(2) {
    background: #fa5c5b;
    color: #662b2a;
}

.hizmetullah li:nth-child(3) {
    background: #cd7dff;
    color: #513066;
}

/* -------------------------------- 

Gallery grid

-------------------------------- */
.cd-gallery {
    width: 90%;
    max-width: 1100px;
    margin: 1.5em auto;
}

    .cd-gallery > li {
        margin-bottom: 2em;
        height: 370px;
    }

@media only screen and (min-width: 768px) {
    .cd-gallery {
        margin-top: 2em;
    }

        .cd-gallery::after {
            clear: both;
            content: "";
            display: table;
        }

        .cd-gallery > li {
            width: 48%;
            float: left;
            margin: 0 4% 6% 0;
        }

            .cd-gallery > li:nth-of-type(2n) {
                margin-right: 0;
            }
}

@media only screen and (min-width: 1100px) {
    .cd-gallery {
        margin-top: 2.5em;
    }

        .cd-gallery > li {
            width: 30%;
            float: left;
            margin: 0 5% 5% 0;
        }

            .cd-gallery > li:nth-of-type(2n) {
                margin-right: 5%;
            }

            .cd-gallery > li:nth-of-type(3n) {
                margin-right: 0;
            }
}
/*services-area*/ .services-area {
    padding: 80px 0 40px;
}

.section-title {
    margin: 40px;
}

    .section-title h3 {
        color: #1f1f1f;
        font-family: droid serif;
        font-size: 32px;
        font-style: italic;
        font-weight: 400;
        line-height: 38px;
        margin: -4px;
    }

        .section-title h3::after {
            background: #d4b660;
            content: "";
            display: block;
            height: 3px;
            margin: 15px auto 20px;
            width: 60px;
        }

    .section-title p {
        color: #707d82;
        font-family: "Open Sans", Georgia, Times, serif;
        font-size: 16px;
        font-style: italic;
        margin: 20px 0;
        text-align: center;
    }

.feature-box {
    display: inline-block;
}

    .feature-box .feature-icon {
        float: left;
        width: 20%;
        font-size: 16pt;
    }

    .feature-box i {
        color: #d4b660;
        display: inline-block;
        font-size: 36px;
        height: 36px;
        text-align: center;
        width: 36px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s ease 0s
    }

    .feature-box:hover i {
        transform: rotateY(180deg);
        color: #232a34;
    }

    .feature-box:hover .feature-media h3 a {
        color: #d4b660;
    }

    .feature-box .feature-media {
        float: left;
        width: 80%;
    }

.feature-media h3 a {
    color: #232a34;
    font-family: "Droid Serif", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-style: italic;
    text-decoration: none;
}

.feature-box h3 {
    line-height: 20px;
}

.feature-box p {
    color: #707d82;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
    margin-top: 20px;
}

#hakkimizda {
    background: #fff;
    margin-bottom: 100px;
}

.h_baslik {
    border-top: 1px solid #464646;
    border-bottom: 1px solid #464646;
    margin-top: 100px;
    font-weight: 700;
    font-size: 24pt;
    padding: 10px;
    margin-top: 50px;
}

.h_baslik2 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14pt;
    width: 100%;
}

.h_metin {
    margin-top: 10px;
    margin-left: 30px;
    font-size: 12pt;
    font-weight: 400;
}

.h_img {
    margin-bottom: 20px;
}

    .h_img img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

        .h_img img:hover {
            border-radius: 50%;
        }

.table {
    border: 1px solid #ddd;
}

.ddl_sec {
    width: 100%;
    height: 40px;
    font-size: 14pt;
    font-weight: 400;
    margin-bottom: 50px;
    outline: none;
    border: 1px solid #464646;
    padding-left: 20px;
}

* {
    box-sizing: border-box;
}



.carousel {
    background: #EEE;
}

.carousel-cell {
    width: 28%;
    height: 200px;
    margin-right: 10px;
    background: #8C8;
    border-radius: 5px; 
}

    .carousel-cell.is-selected {
        background: #ED2;
    }

    /* cell number */
    .carousel-cell:before {
        display: block;
        text-align: center; 
        line-height: 200px;
        font-size: 80px;
        color: white;
    }




#contact {
    padding: 10px 0 10px;
}

.contact-text {
    margin: 45px auto;
}

.mail-message-area {
    width: 100%;
    padding: 0 15px;
}

.mail-message {
    width: 100%;
    background: rgba(255,255,255, 0.8) !important;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
    margin: 0 auto;
    border-radius: 0;
}

.not-visible-message {
    height: 0px;
    opacity: 0;
}

.visible-message {
    height: auto;
    opacity: 1;
    margin: 25px auto 0;
}

/* Input Styles */

.form {
    width: 100%;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, 0.075);
    margin-bottom: 25px;
    color: #727272 !important;
    font-size: 13px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 9;
}

    .form:hover {
        border: 1px solid #8BC3A3;
    }

    .form:focus {
        color: white;
        outline: none;
        border: 1px solid #8BC3A3;
    }

.textarea {
    height: 200px;
    max-height: 200px;
    max-width: 100%;
}

/* Generic Button Styles */

.button {
    padding: 8px 12px;
    background: #0A5175;
    display: block;
    width: 120px;
    margin: 10px 0 0px 0;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    font-size: 0.8em;
    box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
}

    .button:hover {
        background: #8BC3A3;
        color: white;
    }

/* Send Button Styles */

.form-btn {
    width: 180px;
    display: block;
    height: auto;
    padding: 15px;
    color: #fff;
    background: #8BC3A3;
    border: none;
    border-radius: 3px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: auto;
    box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    cursor: pointer;
}

    .form-btn:hover {
        background: #fff;
        color: #8BC3A3;
    }


center {
    margin-top: 330px;
}

input {
    position: relative;
    z-index: 9999;
}

.map h2 {
    font-size: 14pt;
    font-weight: 600;
    text-align: center;
}


#form{
    margin-top:100px;
    padding:100px 0;
}

#footer {
    height: 30vh;
    width: 100%;
    padding-top: 20px;
    background: url('http://dortmevsimmanav.com/img/cover2.png')no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}
#content{
    padding-bottom:100px;
}
.footer_bottom{
    
 position:absolute;
 bottom:0;
 left:0;
    height:100px !important;
    width:100%;
}
.s_medya .fa{
    color:#fff;
    font-size:20pt;
    margin:10px;
    cursor:pointer;
}
.copyright {
    color: #fff;
    font-size: 12pt;
    margin: 10px;
}
    .copyright a {
        color: #fff;
        font-size: 12pt;
        text-decoration:underline;
    }