/*
 * Copyright 2021, Medyanet Bilişim - medyanetbilisim.com
 * Designed By Ali Dinçer - dincerali.com
 */
 
body {
    font-family: 'Montserrat', sans-serif;
}

/* SLİDER */

.slider-section {
    height: 100vh;
}

.homepage-slider-img {
    background-position: center center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 100%;
}

.homepage-carousel {
    height: 100%;
}

.homepage-carousel .carousel-cell {
    width: 100%;
    height: 100%;
    /*margin-right: 10px;*/
    background: #8C8;
    border-radius: 5px;
    counter-increment: carousel-cell;
}

.homepage-carousel .overlay {
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    left: -1px;
    right: -1px;
    -webkit-transition: opacity .6s, -webkit-transform .3s;
    transition: opacity .6s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .6s;
    transition: transform .3s, opacity .6s;
    transition: transform .3s, opacity .6s, -webkit-transform .3s;
    pointer-events: none;
}

.homepage-carousel .text-box {
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    color: #fff;
    z-index: 10;
}

.homepage-carousel .text-box h3 {
    font-weight: 600;
}

.homepage-carousel .text-box-inner {
    width: 35%;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
}

@media (max-width:1024px) {
    .homepage-carousel .text-box-inner {
        width: 60%;
    }
    .homepage-carousel .text-box-inner form div {
        flex-flow: column;
    }
}

.homepage-carousel .flickity-button {
    position: absolute;
    background: hsl(0deg 0% 100% / 0%);
    color: #fff;
    border: 1px solid #fff;
}

.homepage-carousel .flickity-button:hover {
    background: rgb(0 0 0 / 30%);
    cursor: pointer;
}

/* SLİDER */

/* ### HEADER ### */

#header {
    width: 100%;
    z-index: 30;
    position: fixed;
    background-size: cover;
    background-position: 50% 0;
    background-color: transparent;
    background-image: none!important;
    transition: background-color .3s ease;
}

/* sub menu || dropdown */

@media (min-width:1024px) {
    #header .navbar li>.sub-menu {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        min-width: 210px;
        padding-left: 0;
        padding-top: 22px;
        transition: visibility 0.1s, opacity 0.5s linear;
    }
    #header .navbar li a:hover+.sub-menu {
        visibility: visible;
        opacity: 1;
    }
    #header .navbar .sub-menu:hover {
        visibility: visible;
        opacity: 1;
    }
    #header .navbar .sub-menu .menu-item {
        padding: 10px 0;
        background-color: rgb(41 23 23 / 75%);
    }
}

@media (max-width:1024px) {
    #header .navbar li>.sub-menu {
        padding-left: 15px;
    }
    #header .navbar .sub-menu .menu-item {
        position: relative;
    }
    #header .navbar .sub-menu .menu-item::before {
        content: '-';
        position: absolute;
        left: 5px;
        top: 10px;
        color: #fff;
    }
}

/* sub menu || dropdown */

.set-header-color {
    background-color: rgb(41 23 23 / 75%) !important;
}

.set-header-color .navbar {
    min-height: 7vh;
}

.navbar {
    min-height: 7vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    font-size: 2.25rem;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.logo-outer {
    display: flex;
    align-items: center;
}

.logo-outer .logo {
    padding-right: 15px;
    border-right: 1px solid #fff;
}

.logo-outer .numm {
    color: #fff;
    padding-left: 15px;
    font-weight: 600;
}

@media (max-width:1200px) {
    .logo-outer {
        flex-direction: column;
    }
    .logo-outer .logo {
        padding-right: 0;
        border-right: none;
    }
    .logo-outer .numm {
        padding-left: 0;
    }
}

.navbar .nav-links {
    display: flex;
    align-items: center;
}

.navbar .nav-links li {
    list-style-type: none;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #fff;
    margin: 0 1.25rem;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.navbar .nav-links li a::after {
    position: absolute;
    content: '';
    background-color: #fff;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    transition: 0.3s ease all;
}

.navbar i {
    display: none;
    color: #fff;
    cursor: pointer;
}

.navbar .nav-links.active {
    transform: translateX(0);
}

.navbar .nav-links li a:hover::after {
    width: 100%;
}

@media(max-width: 1024px) {
    .navbar .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        background-image: url(../images/agac_texture.png);
        background-position: 19% 7%;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100vh;
        width: 225px;
        margin: 0;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.4s ease all;
        z-index: 10;
        transform: translateX(-226px);
        background-color: #6b3406;
    }
    .navbar .nav-links li {
        width: 100%;
    }
    .navbar .nav-links li a {
        color: #fff;
        display: inline-block;
        width: 100%;
        margin: 0;
        padding: 10px 15px;
    }
    .navbar .nav-links li a::after {
        background-color: #000;
    }
    .navbar .nav-links button {
        border-color: #000;
        color: #000;
        padding: 0.75rem 1.5rem;
    }
    .navbar i {
        display: block;
    }
    .navbar .nav-links li:hover {
        background: rgb(255, 255, 255, 0.5);
    }
    .navbar .nav-links li a:hover::after {
        width: 0%;
    }
}

/* ### HEADER ### */

/* Sidebar overlay */

.sidebar-overlay {
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100vh;
    left: -1px;
    right: -1px;
    -webkit-transition: opacity .6s, -webkit-transform .3s;
    transition: opacity .6s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .6s;
    transition: transform .3s, opacity .6s;
    transition: transform .3s, opacity .6s, -webkit-transform .3s;
    display: none;
    z-index: 29;
}

/* Sidebar overlay */

.main-boxes {
    height: 300px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 40%);
    color: #fff;
    background-color: #162b3e;
}

.main-boxes .box-title-bold {
    font-weight: 600;
}

.haberdar-ol input {
    border: 0;
    outline: none;
    padding-left: 15px;
}

.haberdar-ol button {
    border: 0;
    height: 50px;
}

/* proje slider */

.gallery-carousel .carousel-image {
    display: block;
    height: 300px;
    /* set min-width,
       allow images to determine cell width */
    min-width: 150px;
    max-width: 100%;
    margin-right: 10px;
    /* vertically center */
    top: 50%;
    transform: translateY(-50%)
}

.gallery-carousel.is-fullscreen .carousel-image {
    height: 80%;
}

@media (max-width:1024px) {
    .gallery-carousel.is-fullscreen .carousel-image {
        height: auto;
    }
}

.flickity-enabled.is-fullscreen {
    z-index: 32;
}

/* proje slider */

/* alt hizmet slider */

.alt-hizmet-carousel.is-fullscreen .carousel-image {
    height: 80%;
}

@media (max-width:1024px) {
    .alt-hizmet-carousel.is-fullscreen .carousel-image {
        height: auto;
    }
}

.alt-hizmet-carousel .carousel-image {
    display: block;
    height: 600px;
    /* height of carousel */
    /* set min-width,
       allow images to determine cell width */
    min-width: 150px;
    max-width: 100%;
    margin-right: 10px;
    /* vertically center */
    top: 50%;
    transform: translateY(-50%)
}

/* alt hizmet slider */

/* offer box */

.offer-box {
    min-height: 235px;
    background-color: #fff;
    border: 1px solid #a8a8a8;
    margin-top: 1rem;
    padding: 15px;
    transition: all .3s ease;
    cursor: pointer;
}

@media (max-width:1200px) {
    .offer-box {
        min-height: unset;
    }
}

.offer-box:hover {
    box-shadow: 0 13px 22px #cccccc;
    border: 1px solid #ffc107;
}

.offer-box:hover .offer-icon {
    border: 1px solid #162b3e;
}

.offer-icon {
    border: 1px solid #a8a8a8;
    border-radius: 10%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    color: #ffc107;
}

/* offer box */

/* iletişim box */

.iletisim-box {
    background-color: #f5f5f5;
    padding: 20px;
}

.iletisim-divider {
    height: 5px !important;
    border-radius: 10px;
    background-color: #ffc107;
    opacity: 0.7;
}

/* iletişim box */

/* footer */

#footer {
    background-image: url(../images/agac_texture.png);
    background-position: 50% 75%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6b3406;
}

#footer .logo {
    font-size: 2.25rem;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.footer-adres span {
    font-size: 14px;
}

.footer-tel span {
    font-size: 14px;
}

rounded-social-buttons {
    text-align: center;
}

.rounded-social-buttons .social-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 2.825rem;
    height: 2.825rem;
    border: 0.125rem solid transparent;
    padding: 0;
    text-decoration: none;
    text-align: center;
    color: #fefefe;
    font-size: 1.5625rem;
    font-weight: normal;
    line-height: 1.7em;
    border-radius: 1.6875rem;
    transition: all 0.5s ease;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram {
    font-size: 25px;
}

.rounded-social-buttons .social-button.facebook {
    background: #3b5998;
}

.rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
    color: #3b5998;
    background: #fefefe;
    border-color: #3b5998;
}

.rounded-social-buttons .social-button.twitter {
    background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
    color: #55acee;
    background: #fefefe;
    border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
    background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
    color: #007bb5;
    background: #fefefe;
    border-color: #007bb5;
}

.rounded-social-buttons .social-button.youtube {
    background: #bb0000;
}

.rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
    color: #bb0000;
    background: #fefefe;
    border-color: #bb0000;
}

.rounded-social-buttons .social-button.instagram {
    background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
    color: #125688;
    background: #fefefe;
    border-color: #125688;
}

/* footer navbar */

#footer .nav .nav-link {
    color: #fff;
}

#footer .nav .nav-link:hover {
    background-color: rgb(125 107 91 / 65%);
}

/* footer navbar */

/* footer */

#main {
    min-height: 100vh;
}

/* pages */

.pages-head {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #fff;
    flex-flow: column;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 55%);
    padding-top: 70px;
}

.page-head-baslik {
    font-size: 13px;
}

.sayfa-inner-baslik {
    font-weight: 600;
}

/* pages */

.referans-box {
    padding: 10px;
    margin: 10px;
    max-height: 400px;
    transition: transform .5s ease;
    cursor: pointer;
}

.referans-box:hover {
    box-shadow: 1px 0 25px rgb(0 0 0 / 40%);
    transform: scale(1.1);
}

.referans-box img {
    font-weight: 600;
}

.referans-box h6 {
    font-weight: 600;
}

.iletisim-bilgi {
    color: #e86900;
    height: 100%;
}

.iletisim-bilgi .i-gray {
    color: #6b6b6b;
}

/* alt hizmet */

.hizmetler-box ul li {
    list-style-type: none;
}

.hizmetler-box ul li a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    background-color: #ffc107;
    font-weight: 600;
    margin: 5px 0;
    color: white;
}

.hizmetler-box ul li a.active {
    background-color: #55acee;
}

@media (max-width:768px) {
    .alt-hizmet-carousel .carousel-image {
        height: 300px;
        /* height of carousel */
    }
}

.hizmet-detay-box {
    background-color: #f5f5f5;
}

.hizmet-detay-box .detay-body {
    padding: 20px;
}

.hizmet-detay-box .detay-head {
    border: 1px solid #dedede;
    padding: 5px;
    display: flex;
    align-items: center;
}

/* alt hizmet */