* {
    font-family: 'Poppins', sans-serif;
    outline: 0 !important;
}

.container {
    max-width: 1220px;
}

body {
    background-color: #fff;
}


.main-nav {
    position: absolute;
    top: 0;
    width: 100%;
}
.main-nav * {
    box-sizing: border-box;
}
.main-nav .nav-content, .main-nav .tuggle-content {
    display: flex;
    justify-content: space-between;
    padding: 5px 30px;
}
.main-nav .nav-content .left-content, .main-nav .tuggle-content .left-content,
.main-nav .nav-content .right-content,
.main-nav .tuggle-content .right-content {
    z-index: 10;
}
.main-nav .left-content,
.main-nav .right-content {
    display: flex;
}
.main-nav .nav-item {
    margin-right: 20px;
}
.main-nav .right-content .nav-item:last-child {
    margin-right: 0;
}
.main-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main-nav .tuggle-btn {
    display: none;
    position: relative;
    width: 35px;
    height: 24px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.main-nav .tuggle-btn span {
    display: block;
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 5px;
    opacity: 1;
    transition: 0.25s ease-in-out;
}
.main-nav .tuggle-btn span:nth-child(1) {
    top: 0px;
}
.main-nav .tuggle-btn span:nth-child(2), .main-nav .tuggle-btn span:nth-child(3) {
    top: 11px;
}
.main-nav .tuggle-btn span:nth-child(4) {
    top: 22px;
}
.main-nav .tuggle-content {
    position: absolute;
    top: 0;
    width: 100%;
    padding-left: 75px;
}
.main-nav.open .tuggle-btn span:nth-child(1),
.main-nav.open .tuggle-btn span:nth-child(4) {
    top: 50%;
    left: 50%;
    width: 0;
    opacity: 0;
}
.main-nav.open .tuggle-btn span:nth-child(2) {
    transform: rotate(45deg);
}
.main-nav.open .tuggle-btn span:nth-child(3) {
    transform: rotate(-45deg);
}
.main-nav.active {
    position: fixed;
    background-color: #fff;
}

@media (min-width: 860px) {
    .main-nav .tuggle-content {
        height: 100%;
    }
}
@media (max-width: 860px) {
    .main-nav .tuggle-btn {
        display: block;
    }
    .main-nav .tuggle-content {
        padding-left: 30px;
        flex-direction: column;
        visibility: hidden;
    }
    .main-nav .tuggle-content .left-content,
    .main-nav .tuggle-content .right-content {
        flex-direction: column;
        justify-content: flex-start;
    }
    .main-nav .tuggle-content .right-content {
        border-top: 1px solid #c1c1c1;
        padding-top: 20px;
    }
    .main-nav .tuggle-content .nav-item {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .main-nav .tuggle-content .nav-item:last-child {
        margin-bottom: 0;
    }
    .main-nav.open .tuggle-content {
        top: 100%;
        visibility: initial;
        background-color: #fff;
    }
}
.main-nav ul {
    text-transform: uppercase;
}
.main-nav li {
    display: flex;
    align-items: center;
}
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
    padding: 6px 0px;
    margin: 0px 6px;
}
.main-nav a:hover {
    text-decoration: none;
}
.main-nav .tuggle-btn {
    margin-top: auto;
    margin-bottom: auto;
}
.main-nav .tuggle-btn span {
    background: #fff;
}
.main-nav .tuggle-content {
    padding-left: 90px;
}
.main-nav .logo {
    background: url("https://goo.gl/wjqQU1") no-repeat center/cover;
    display: block;
    width: 35px;
    height: 50px;
}
.main-nav .registration {
    position: relative;
    padding: 10px 40px 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.main-nav .registration:after {
    position: absolute;
    right: 15px;
    top: 9px;
    content: "â†’";
    color: #2dbe60;
}
.main-nav .registration:hover, .main-nav .registration:focus {
    border-color: #2dbe60;
    text-decoration: none;
}
.main-nav.open {
    background-color: rgba(0, 0, 0, 0.5);
}
.main-nav.open .tuggle-content {
    box-shadow: 0px 5px 12px -8px #000;
}
.main-nav.active {
    background-color: #fff;
    box-shadow: 0px 0px 7px -2px #000;
}
.main-nav.active a {
    color: #333;
}
.main-nav.active span {
    background: #333;
}
.main-nav.active .registration {
    border-color: #2dbe60;
    background-color: #2dbe60;
    color: #fff;
}
.main-nav.active .registration:after {
    color: #fff;
}
.main-nav.active .registration:hover {
    border-color: #28a956;
    background-color: #28a956;
}

@media (max-width: 860px) {
    .main-nav .tuggle-content {
        padding-right: 90px;
    }
    .main-nav .tuggle-content .nav-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #c1c1c1;
    }
    .main-nav .tuggle-content .nav-item:last-child {
        border-bottom: none;
    }
    .main-nav.open .tuggle-content {
        background-color: rgba(0, 0, 0, 0.5);
    }
    .main-nav.active .tuggle-content {
        background-color: #fff;
    }
}
header {
    display: flex;
    color: #fff;
    min-height: 62px;
    background-color: #fff;;
}
header .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    height: 100%;
    width: 100%;
    background-color: rgba(45, 36, 45, 0.5);
}

header .logo-area img {
    height: 29px;
    margin-top: 6px;
}

.main-nav a.active {
    border-bottom: 1px solid #000;
}

header .social-media {
    margin: 0;
    padding: 0;
}

header .social-media li {
    margin: 0;
    padding: 0;
    float: left;
}

header .social-media li a{
    padding: 0;
    color: #fff;
    background-color: #000;
    margin: 0px 6px;
    width: 34px;
    height: 34px;
    border-radius: 50px;
    text-align: center;
    padding-top: 8px;
    font-size: 16px;
}

.slider {
    padding: 0px 30px;
    padding-top: 0px;
}

.slider img{
    width: 100%;
}

.df-content {
    padding: 0 80px;
}

.pagehoods h1 {
    color: #e1e1e1;
    font-weight: bold;
    font-size: 132px;
    padding: 29px 0px;
}

.contact-form ul {
    margin: 0px;
    padding: 0px;
    margin-left: 5px;
}

.contact-form ul li{
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-bottom: 5px;
}

.contact-form ul li a{
    text-decoration: none;
    color: #000;
    line-height: 30px;
}

.contact-form ul li a i{
    text-decoration: none;
    color: #5c5c5c;
    margin-right: 10px;
    width: 15px;
    text-align: center;
}

.contact-form input {
    width: 100%;
    border: 0px;
    border-bottom: 1px solid #ccc;
    padding: 7px 2px;
}

.contact-form input::placeholder {
    color: #868686;
}

.contact-form textarea {
    width: 100%;
    border: 0px;
    border-bottom: 1px solid #ccc;
    padding: 7px 2px;
    min-height: 120px;
}

.contact-form textarea::placeholder {
    color: #868686;
}

.contact-form button {
    background-color: #000;
    width: 100%;
    color: #fff;
    border: 0px ;
    padding: 13px 9px;
    font-weight: 300;
}

.contact-form {
    padding-top: 55px;
    padding-bottom: 60px;
}

.main-nav.active {
    z-index: 999;
}

.text-about {
    text-align: right;
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    color: #646464;
}
.text-about h3 {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 26px;
}

.text-about h3::after {
    content: "";
    display: block;
    width: 65px;
    height: 1px;
    background-color: #ccc;
    right: 0px;
    position: absolute;
    bottom: 0;
}

.text-ozel-about {
    padding: 55px 0px;
}

.text-ozel-about img {
    width: 100%;
}

.studio-area ul {
    margin: 0;
    padding: 0;
}

.studio-area ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 5px;
    font-weight: 300;
    font-size: 15px;;
}

.studio-area ul li i {
    color: #aaaaaa;
}

.studio-area img  {
    width: 100%;
    margin-bottom: 30px;
}

.blog-area img {
    width: 100%;
}

.blog-area .blog-a {
    text-decoration: none;
    margin-bottom: 30px;
    display: block;
    width: 100%;
}

.blog-area .blog-a h4 {
    color: #4c4c4c;
    font-size: 17px;
    font-weight: 300;
    margin-top: 15px;
}

.text-ozel-blog-detail img {
    width: 100%;
    max-width: 580px;
    float: left;
    display: block;
    margin-right: 15px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.text-ozel-blog-detail h3 {
    display: table;
    width: auto;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 26px;
    float: none;
}

.text-ozel-blog-detail .text-about {
    text-align: left;
}

.text-ozel-blog-detail {
    padding-top: 45px;
    padding-bottom: 45px;
}

.portfolyo-area .blog-a h3 {
    font-weight: 500;
    color: #000;
    font-size: 19px;
    margin-top: 12px;
    margin-bottom: 0px;
}

.portfolyo-area .blog-a p {
    font-weight: 400;
    color: #5a5a5a;
    font-size: 14px;
    margin-top: 2px;
}

.portfolio-detail {
    margin-top: 67px;
}

.portfolio-detail .detail h1{
    font-weight: 500;
    color: #000;
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 0px;
}

.portfolio-detail .detail span {
    font-weight: 400;
    color: #5a5a5a;
    font-size: 14px;
    margin-top: 9px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 13px;
}

.portfolio-detail .detail p{
    font-weight: 300;
    color: #5a5a5a;
    font-size: 13px;
    margin-top: 2px;
    line-height: 21px;
}


.about-us {
    background-color: #000;
    width: 100%;
    padding:25px 95px;
    margin-top:40px;
}

.about-us h1{
    color: #fff;
    font-weight: 200;
    margin-bottom: 5px;
}

.about-us .uncan {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 12px;
    margin-top: 7px;
    display: block;
}

.about-us p {
    color: #efefef;
    font-weight: 300;
    font-size: 13.5px;
    line-height: 24px;
}

.about-us img {
    width: 100%;
}

.about-us .resmobil {
    display: none;
}

.about-us .res-asas {
    padding-top: 32px;
}

@media(max-width:768px){

    .about-us .res-asas p {
        overflow: scroll;
        height: 100px;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 35px;
    }


    .about-us .res-asas p::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 7px;

        -moz-appearance: none;
    }

    .about-us .res-asas p::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .about-us .res-asas p::-moz-scrollbar {
        -webkit-appearance: none;
        width: 7px;

        -moz-appearance: none;
    }

    .about-us .res-asas p::-moz-scrollbar-thumb {
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.5);
    }



    .about-us h1{
        font-size: 38px;
        width: 44%;
        padding-top: 25px;
        line-height: 40px;
        float: left;
    }

    .about-us .resweb {
        display: none;
    }

    .about-us .resmobil {
        display: block;
        float: left;
        width: 56%;
    }

    .tab-menu-area .nav-tabs > li > a {
        font-size: 13px;
        padding: 5px 5px;
    }

}


.tab-menu-area {
    margin-top: 64px;
    padding-left: 95px;
    padding-right: 95px;
}


#ac-globalnav .ac-gn-header .ac-gn-link img{
    height: 26px;
}

#ac-globalnav .ac-gn-header .ac-gn-link img.beyaz {
    display: none;
}

#ac-gn-menustate:checked ~ #ac-globalnav .ac-gn-header .ac-gn-link img.beyaz {
    display: block;
    margin-top: 11px;
}

#ac-gn-menustate:checked ~ #ac-globalnav .ac-gn-header .ac-gn-link img.siyah {
    display: none;
}

#ac-gn-menustate:checked ~ #ac-globalnav .ac-gn-menuicon-bread-top .ac-gn-menuicon-bread-crust  {
    background: #fff !important;
}

#ac-gn-menustate:checked ~ #ac-globalnav .ac-gn-menuicon-bread-bottom .ac-gn-menuicon-bread-crust {
    background: #fff !important;
}

.tab-menu-area .tab-content h3{
    border-bottom: 1px solid #8c8c8c;
    font-weight: 200;
    display: inline-flex;
    font-size: 39px;
    padding-left: 15px;
    padding-bottom: 2px;
    padding-top: 21px;
}

.tab-menu-area .tab-content ul {
    padding-left: 15px;
}

.tab-menu-area .tab-content ul li {
    font-size: 17px;
    font-weight: 300;
    list-style: circle;
    margin-top: 5px;
}

.tab-menu-area .tab-content p{
    font-weight: 300;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 22px;
}

.tab-menu-area .nav-tabs {
    border-bottom: 0px !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
}

.tab-menu-area .nav-tabs > li > a {
    border: 1px solid #797979 !important;
    border-radius: 0px;
    padding: 5px 9px;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #4e4d4d;
}


.tab-menu-area .nav-tabs > li.active > a {
    border: 1px solid #797979;
    border-radius: 0px;
    padding: 6px 9px;
    background-color: #4e4d4d;
    margin-right: 8px;
    font-weight: 300;
    color: #fff;
}

.owl-carousel-ss .item {
    position: relative;
}

.owl-carousel-ss .item .box p{
    position: absolute;
    z-index: 999;
    color: #fff;
    font-size: 12.3px;
    left: 0px;
    width: 100%;
    font-weight: 300;
    bottom: 0px;
    height: 53px;
    padding: 0px 15px;
}

.owl-carousel-ss .item .box h2{
    position: absolute;
    z-index: 999;
    color: #fff;
    font-size: 17px;
    left: 0px;
    width: 100%;
    font-weight: 400;
    bottom: 65px;
    padding: 0px 15px;
}


.owl-carousel-ss .item .box h2::after{
    content: "";
    display: block;
    background-color: white;
    width: 200px;
    height: 1px;
    margin-top: 10px;
    margin-left: -15px;

}


.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
    background-color: transparent !important;
    position: absolute;
    top: 41%;
    z-index: 999;
    left: 0px;
    font-size: 17px !important;
}

.owl-carousel .owl-nav .owl-next {
    left: inherit;
    right: 0px;
}

.owl-carousel-instagram  .owl-nav [class*=owl-] {
    color: #869791 !important;
    margin-top: -20px;
}

.home-portfolio {
    margin-top: 35px;
}

.home-ase h1 {
    margin-bottom: -13px;
    font-size: 60px;
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

footer {
    padding: 0px 15px;
    margin-top: 15px;
}

footer p {
    border-top: 1px solid #ccc;
    text-align: center;
    padding-top: 14px;
    font-size: 14px;
    font-weight: 300;
}

@media(max-width: 768px){
    header .main-nav .tuggle-btn span {
        background: #272727;
    }
    .main-nav .nav-content, .main-nav .tuggle-content {
        display: flex;
        justify-content: space-between;
        padding: 5px 20px;
    }
    .df-content {
        padding: 0 15px;
    }
    .pagehoods h1 {
        color: #e1e1e1;
        font-weight: bold;
        font-size: 52px;
        padding: 29px 0px;
        margin-bottom: -35px;
    }
    .nav-content .left-content li:nth-child(1){
        display: none;
    }
    header .logo-area img {
        height: 20px;
        margin-top: 6px;
        margin-left: -5px;
        margin-right: -6px;
    }
    header .social-media {
        margin: 0;
        padding: 0;
        display: contents;
    }
    .main-nav .tuggle-btn {
        width: 30px;
    }
    header .social-media li a {
        padding: 0;
        color: #fff;
        background-color: #000;
        margin: 0px 3px;
        width: 27px;
        height: 27px;
        border-radius: 50px;
        text-align: center;
        padding-top: 6px;
        font-size: 14px;
    }

    .main-nav a {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.2;
        color: #000;
        text-decoration: none;
        padding: 6px 0px;
        margin: 0px -5px;
    }
    .pagehoods h1 {
        color: #e1e1e1;
        font-weight: bold;
        font-size: 29px;
        padding: 29px 0px;
        margin-bottom: -38px;
        margin-top: -3px;
    }

    .studio-area {
        margin-top: 25px;
    }

    .blog-area {
        margin-top: 25px;
    }

    .tab-menu-area {
        margin-top: 36px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .tab-menu-area .tab-content h3 {
        border-bottom: 1px solid #8c8c8c;
        font-weight: 200;
        display: inline-flex;
        font-size: 30px;
        padding-left: 0px;
        padding-bottom: 2px;
        padding-top: 21px;
    }
    .tab-menu-area .nav-tabs {
        border-bottom: 0px !important;
        padding-left: 0;
        padding-right: 0;
        margin-top: 15px;
    }

    .tab-menu-area .nav-tabs li {
        display: block;
        width: 100%;
    }

    .tab-menu-area .nav-tabs > li.active > a {
        border: 1px solid #797979;
        border-radius: 0px;
        padding: 6px 9px;
        background-color: #4e4d4d;
        margin-right: 8px;
        font-weight: 300;
        color: #fff;
        width: 100%;
        display: block;
        margin-bottom: 15px;
    }
    .about-us {
        background-color: #000;
        width: 100%;
        padding: 25px 15px;
        margin-top: 36px;
    }
    .about-us .res-asas p {
        overflow: scroll;
        height: 180px;
        width: 100%;
        margin-top: 22px;
        margin-bottom: 25px;
        display: inline-flex;
    }
    .main-nav.open .tuggle-content {
        background-color: rgb(255 255 255);
    }
    header {
        display: flex;
        color: #fff;
        min-height: 62px;
        background-color: #fff;
        z-index: 999;
        position: relative;
    }
    .main-nav.open {
        background-color: rgb(255 255 255);
    }
}

@media(max-width:768px){
    .tab-menu-area .nav-tabs > li > a {
        border: 1px solid #797979 !important;
        border-radius: 0px;
        padding: 5px 9px;
        margin-right: 8px;
        font-size: 14px;
        font-weight: 300;
        color: #4e4d4d;
        margin-bottom: 16px;
        display: block;
    }
}

.main-nav.active .social-media a {
    color: #fff;
}

.contact-maps h6 {
    margin-top: 35px;
    text-align: center;
}