/*
 * Copyright 2021, Medyanet Bilişim - medyanetbilisim.com
 * Designed By Ali Dinçer - dincerali.com
 */

body {
    font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 0px
}

::-webkit-scrollbar-thumb {
    background: #383838;
    border-radius: 0px
}

/* 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: rgb(43 43 43 / 30%);
    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: 20%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 50px;
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    box-shadow: 0px 0px 10px 0px rgb(255 255 255 / 75%);
    background-color: rgb(45 45 45 / 20%);
    text-shadow: 2px 2px 3px rgb(165 165 165);
}

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

.homepage-carousel .flickity-button {
    position: absolute;
    background: hsl(0deg 0% 100% / 0%);
    color: #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-color: rgb(255 255 255 / 95%) !important;
    box-shadow: 0px 0px 10px -2px rgb(45 45 45 / 60%);
    border-bottom: 1px solid #ddd;
}

/* sub menu || dropdown */

@media (min-width:1024px) {
    #header .navbar li>.sub-menu {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        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 {
        background-color: rgb(255 255 255 / 95%) !important;
    }
}

@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 */

.navbar {
    min-height: 6vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;
}

.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 #000;
}

.logo-outer .numm {
    color: #212529;
    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: #212529;
    padding: 5px 10px;
    margin: 0px;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: 0.3s ease all;
    width: 100%;
    display: inline-block;
}

#burger {
    display: none;
    color: #212529;
    cursor: pointer;
}

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

.navbar .nav-links li a:hover {
    background-color: rgb(255 193 35 / 50%);
}

@media(max-width: 1024px) {
    .navbar .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        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: #735236;
    }
    .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;
    }
    #burger {
        display: block;
    }
    .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: #ffc107;
    border-radius: 10px;
}

.no-shadow {
    box-shadow: unset !important;
}

.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: 260px;
    background-color: #6c757d;
    border: 1px solid #a8a8a8;
    margin-top: 1rem;
    padding: 15px;
    transition: all .3s ease;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.offer-box:hover {
    box-shadow: 0 13px 22px #cccccc;
    transform: scale(1.1);
}

.offer-box:hover .offer-icon {
    border: 2px solid #fff;
}

.offer-icon {
    border: 1px solid #a8a8a8;
    border-radius: 50%;
    width: 75px;
    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-color: #313131;
}

#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(197 39 39 / 75%);
    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 {
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 10px;
    position: sticky;
    top: 75px;
    box-shadow: 0px 2px 15px -5px rgb(164 164 164 / 80%);
    margin-top: 2px;
    background-color: #fff;
}

.hizmetler-box ul {
    padding-left: 0;
    margin-bottom: 0;
}

.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 */

.floating_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.text_icon {
    margin-top: 8px;
    color: #fff;
    font-size: 13px;
    text-shadow: 2px 2px 3px rgb(0 0 0);
}

.teklif-form {
    position: fixed;
    width: 250px;
    background-color: #f5f5f5;
    padding: 10px;
    left: 10px;
    bottom: 10px;
    border-radius: 5px;
    z-index: 5;
    box-shadow: 0px 0px 7px 0px rgb(134 134 134);
}

.teklif-form-kapat {
    position: absolute;
    top: 5px;
    right: 5px;
}

.teklif-form-ac {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 4;
    box-shadow: 0px 0px 7px 0px rgb(134 134 134);
    display: none;
}

.makale .carousel-cell {
    width: 100%;
    /* full width */
    /* height: 160px;  height of carousel */
    margin-right: 10px;
}

.makale .flickity-prev-next-button {
    top: 90%;
}

.award-kutu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.round-10 {
    border-radius: 10px;
}

.progress-cont {
    width: 100%;
    position: absolute !important;
    height: 2px;
    top: 99%;
}

/* sıkça sorulan sorular */

.faq-section {
    background: #fdfdfd;
}

.faq-title h2 {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
}

.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #E91E63;
    bottom: -25px;
    margin-left: -30px;
}

.faq-title p {
    padding: 0 190px;
    margin-bottom: 10px;
}

.faq {
    background: #FFFFFF;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.faq .card {
    border: none;
    background: none;
    border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
    padding: 0px;
    border: none;
    background: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 10px;
}

.faq .card .card-header .faq-title {
    width: 100%;
    text-align: left;
    padding: 0px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    color: #3B566E;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 14px;
    float: left;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    text-align: center;
    background: #E91E63;
    color: #fff;
    font-size: 12px;
    margin-right: 20px;
    padding: 4px 3px 4px 5px;
}

.faq .card .card-body {
    padding: 30px;
    padding-left: 35px;
    padding-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #6F8BA4;
    line-height: 28px;
    letter-spacing: 1px;
    border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .faq {
        margin-bottom: 30px;
    }
    .faq .card .card-header .faq-title {
        line-height: 26px;
        margin-top: 10px;
    }
}

/* sıkça sorulan sorular */

@media (max-width:992px) {
    .teklif-form {
        display: none;
        left: 0;
        bottom: unset;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1050;
    }
    .teklif-form-ac {
        display: block;
    }
}