/********** Template CSS **********/
:root {
    --primary: #202b5e;
    --light: #000000;
    --dark: #000000;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    background-color: #202b5e;
    color: #202b5e;
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.back-to-top:hover {
    background-color: #202b5e;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    color: #202b5e;
    background-color: #202b5e;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    color: #202b5e;
    background-color: #202b5e;
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Roboto";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    letter-spacing: 0px;
    margin-right: 20px;
    text-align: left;
    display: block;
    font-weight: 1000;
    font-size: 25px !important;
    transition: all 0.3s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
    color: #202b5e;
    font-weight: 2000;
}
.navbar a:hover::before{
    text-decoration: none;
}
a {
    color: #18272F;
    position: relative;
    text-decoration: none;
}

a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: #202b5e;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 5px;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #000000;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 125px;
    max-height: 75%;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
.analogo{     max-height: 200px;
}

/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel,.owl-carousel .owl-stage {
        position: relative;
        display: inline-block;

    }
    .resim img {
        display: block;
        margin: 0 auto;
        max-width: 100%; /* Resmin genişliği ekran genişliği kadar olacak şekilde ayarlanır */
        height: auto; /* Yüksekliği otomatik olarak ayarlanır, oranları korur */
    }


    .header-carousel .owl-carousel-item {
        position: relative;
        width: 50%; /* Ekranın yarısı kadar genişlik */
        max-width: 300px; /* Maksimum genişlik belirlenebilir */
        margin: 0 auto; /* Horizontal ortala */
    }
    
    .header-carousel .owl-carousel-item img {
        display: block;
        margin: 0 auto;
        max-width: 50%; /* Resmin genişliği ekran genişliği kadar olacak şekilde ayarlanır */
        height: 300px; /* Yüksekliği otomatik olarak ayarlanır, oranları korur */
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202b5e;
    background: transparent;
    border: 1px solid #202b5e;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #202b5e;
    border-color: #202b5e;
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: #202b5e;
    border-color: #202b5e;
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: #202b5e;
    border-color: #202b5e;
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}
.sekil-item{
    padding: 10px;
    margin-bottom: 20px;
    background: #202b5e;
    border-radius: 50px;
    text-align: center;
    height: 100%;
}
.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: fill;
}
.baslik {
    text-align: center;
    width: 100%;
}
.container-box {
    padding: 0 5%;
}
.baslik p {
    position: relative;
    font-weight: 250;
    color: #000000;
    font-size: 18px !important;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.baslik h2 {
    display: inline-block;
    position: relative;
    font-weight: 900;
    color: #202b5e;
    font-size: 36px !important;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.baslik h2::before {
    position: absolute;
    content: '';
    width: 40%;
    left: 30%;
    bottom: 0;
    height: 5px;
    background-color: #000000;
    border-radius: 5px;
}
.metin {
    text-align: center;
    width: 100%;
}
.metin h6{
    display: inline-block;
    position: relative;
    font-weight: 900;
    color: #202b5e;
    font-size: 52px !important;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.metin h6::before {
    position: absolute;
    content: '';
    width: 40%;
    left: 30%;
    bottom: 0;
    height: 5px;
    background-color: #000000;
    border-radius: 5px;
}

.metin h5 {
    display: inline-block;
    position: relative;
    font-weight: 900;
    color: #000000;
    font-size: 24px !important;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.metin h5::before {
    position: absolute;
    content: '';
    width: 40%;
    left: 30%;
    bottom: 0;
    height: 5px;
    background-color: #000000;
    border-radius: 5px;
}

.urun {
    margin-bottom: 20px;
}
.urun .item .icon path {
    transition: all 0.3s ease-in-out;
    stroke: #fff;
    fill: #fff;
}
.overlay {
    /* Overlay (örtü) stil tanımlamaları */
    display: none; /* Başlangıçta görünmez olsun */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Beyaz arka plana yarı saydamlık ekler */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Diğer elementlerin üzerinde göster */
}
.loader {
    transform: rotateZ(45deg);
    position: fixed;
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
}
.loader:before,
.loader:after {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}
.loader:after {
    color: #FF3D00;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}


.baslik h3 {
    display: inline-block;
    position: relative;
    font-weight: 900;
    color: #202b5e;
    font-size: 26px !important;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.baslik h3::before {
    position: absolute;
    content: '';
    width: 40%;
    left: 0%;
    bottom: 0;
    height: 5px;
    background-color: #202b5e;
    border-radius: 5px;
}
.urun .item {
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    height: 100%;
}
.color {
    background-color: #202b5e ;
    color: #fff;
}
.yazi {
    color: #ffffff;
}

.urun_gruplari {
    background-color: #eee;
    position: relative;
}

.urun {
    margin-bottom: 20px;
}


.urun .item .icon {
    height: 110px;
    margin-bottom: 80px;
    text-align: right
}

.urun .item .icon svg {
    height: 110px;
}

.urun .item .icon path {
    transition: all 0.3s ease-in-out;
    stroke: #fff;
    fill: #fff;
}

.urun .item .color h3 {
    transition: all 0.3s ease-in-out;
    font-size: 24px;
    font-weight: 700;
}

.urun .item:hover {
    background-color: #ffffff;
    color: #202b5e;
    box-shadow: 0 3px 50px rgba(4, 24, 72, 0.63);
}


.urun .item:hover h3 {
    color: #202b5e;
}

.urun .item:hover path {
    fill: #202b5e !important;
    stroke: #202b5e;
}

path {
    opacity: 0;
}


/*** Team ***/
.team-item{
    display: inline-block;
    padding: 10px;
    margin-bottom: 30px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    border-radius: 25px;
    text-align: center;
    height: 90%;
}
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: .5s;
}

.team-item .team-social .btn {
    color: #202b5e;
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #ffffff;
    background: #202b5e;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: #202b5e;
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #202b5e;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #202b5e;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    align-content: center;
    align-items: center;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: #202b5e;
}



/* urun_gruplari */



/***************************************************
 * Generated by SVG Artista on 9/13/2019, 5:16:41 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 130px;
        stroke-dasharray: 130px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 130px;
        stroke-dasharray: 130px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-1 {
    -webkit-animation: animate-svg-stroke-1 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0.5s both,
    animate-svg-fill-1 5s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.8s both;
    animation: animate-svg-stroke-1 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0.5s both,
    animate-svg-fill-1 5s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 595.6929321289062px;
        stroke-dasharray: 595.6929321289062px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes animate-svg-stroke-2 {
    0% {
        stroke-dashoffset: 595.6929321289062px;
        stroke-dasharray: 595.6929321289062px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-2 {
    -webkit-animation: animate-svg-stroke-2 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 1.05s both,
    animate-svg-fill-2 5s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.9s both;
    animation: animate-svg-stroke-2 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 1.05s both,
    animate-svg-fill-2 5s cubic-bezier(0.95, 0.05, 0.795, 0.035) 0.9s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 211.52972412109375px;
        stroke-dasharray: 211.52972412109375px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes animate-svg-stroke-3 {
    0% {
        stroke-dashoffset: 211.52972412109375px;
        stroke-dasharray: 211.52972412109375px;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-3 {
    -webkit-animation: animate-svg-stroke-3 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 1.6s both,
    animate-svg-fill-3 5s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1s both;
    animation: animate-svg-stroke-3 3s cubic-bezier(0.6, 0.04, 0.98, 0.335) 1.6s both,
    animate-svg-fill-3 5s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1s both;
}

/* Footer */
footer {
    background-color: var(--background) !important;
    color: #fff;
}

footer .ciz {
    background-color: #fff;
}

footer .row {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-bottom: 50px;
}

.links a {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 0 10px;
    transition: all 0.3s ease-in-out;
}

.links a:hover {
    color: #202b5e;
}

.ciz {
    width: 50px;
    height: 5px;
    border-radius: 5px;
    background-color: #202b5e;
    margin: 0 auto;
    margin-bottom: 50px;
}

.social a {
    color: #fff;
    height: 30px;
    text-align: center;
    padding-top: 10px;
    width: 30px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease-in-out;
}

.social a:hover {
    background-color: #202b5e;
}

.footer_adres {
    margin-top: 50px;
    letter-spacing: 2px
}

/* ic_head */
.ic_head {
    height: 300px;
    padding-bottom: 50px;
    background-position: bottom;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ic_head::before {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.04805672268907568) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.04805672268907568) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.04805672268907568) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ic_head .links {
    position: relative;
    z-index: 9999;
    color: rgba(255, 255, 255, 0.50);
}

.ic_head .links a {
    opacity: 0.5;
}

.ic_head .links a:last-child {
    opacity: 1;
}

/* Galeri */
.galery {
    margin-top: 50px;
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.galery .item {
    display: inline-block;
    width: calc((100% / 6) - 10px);
    margin: 5px;
    transition: all 1s ease-in-out;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

.galery .item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #efefef;
    background-color: rgba(34, 49, 81, 0.20);
    transition: all 0.3s ease-in-out;
}

.galery .item:hover::before {
    background-color: #202b5e;
    opacity: 0.5;
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.16);
}

.galery img {
    width: 100%;
    opacity: 0;
    max-height: none;
}

/* ic_liste */
.ic_liste {
    padding-left: 5%;
}

/* aside */
.aside {
    background-color: #202b5e;
    padding: 40px 20px;
    border-radius: 10px;
    color: #fff;
}

.aside h2 {
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    font-size: 24px;
    font-weight: 900;
}

.aside li a {
    color: #fff;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
    display: block;
    transition: all 0.3s ease-in-out;
}

.aside li a:hover {
    color: #202b5e;
    border-right: 2px solid #fff;
}

.talep {
    background-color: #eee;
    color: #111;
    margin-bottom: 20px;
}

.talep h2 {
    color: #202b5e;
    border-color: #202b5e;
}

.talep li a {
    color: #111;
}

.talep span {
    margin-bottom: 20px;
    display: block;
    font-size: 14px;
}


/* ÃœrÃ¼n Liste */
.urun_list {
    display: inline-block;
    padding: 20px;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.urun_list:hover {
    box-shadow: 0 3px 50px rgba(0, 0, 0, 0.16);
}

.urun_list img {
    margin: 0 auto 20px auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.urun_list .frame {
    width: 50vh;
    height: 30vh;
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}

.urun_list h2 {
    font-size: 20px;
    color: #202b5e;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.urun_list:hover h2 {
    color: #fff;
}

.urun_list:hover {
    background-color: #202b5e;
}

.urun_img {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.urun_img img {
    height: 12vh;
}

.urun_img a {
    margin: 5px;
    display: inline-block;
    border: 1px solid #eee;
    padding: 5px;
}

.urun_bilgi h2 {
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.urun_bilgi p {
    font-size: 15px;
    line-height: 25px;
}

/* Ä°letiÅŸim */
.map iframe {
    border-radius: 10px;
}

.contact {
    color: #6A6A6A;
    font-size: 16px;
    margin: 20px 0;
}

.contact a {
    color: #6A6A6A;
    transition: all 0.3s ease;
}

.contact a:hover {
    color: #D21F30;
}

.contact span {
    display: block;
    width: 100%;
    line-height: 34px;
    border: 1px solid #cdcdcd;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.contact span b {
    display: inline-block;
    margin-right: 10px;
}

/* Form */
form input, select, textarea {
    border: 0;
    background-color: #fff;
    height: 40px;
    line-height: 40px;
    width: 100%;
    margin-bottom: 10px;
    color: #2A2A2A;
    padding-left: 10px;
    border-radius: 5px;
}

form textarea {
    height: auto;
}

form input:hover, select:hover, textarea:hover {
    box-shadow: 0 3px 50px rgba(255, 255, 255, 0.50);
}

.owl-next {
    right: 0;
}

.owl-prev {
    left: 0;
}

.owl-prev > span,
.owl-next > span {
    font-size: 15vh;
    color: #FFFFFF;
}

.owl-nav > button:hover {
    background: none !important;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
}


/* Responsive */
/* Portrait */

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
    .container-box {
        padding: 0 5%;
    }

    .box-p {
        padding: 50px 0;
    }

    .ciz {
        margin-top: 20px;
    }

    .links a {
        display: block;
        margin-bottom: 5px;
    }

    .ic_head .links a {
        display: inline-block;
    }

    .index_kurumsal {
        padding: 0 5%;
        font-size: 14px;
        line-height: 28px;
    }

    .menu {
        background-color: #fff;
        border-radius: 10px;
        margin: 20px 0 0 0;
        padding: 20px;
        width: 100%;
    }

    .menu ul li {
        display: block;
        width: 100%;
        margin: 0;
    }

    .menu ul li a {
        color: #202b5e;
        font-size: 16px;
        display: block;
    }

    .menu ul li ul {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
    }

    .menu ul li ul li {
        min-width: 100%;
        padding-left: 5px;
    }

    .menu ul li ul li a {
        font-size: 13px;
        letter-spacing: normal;
    }

    .galery .item {
        width: calc((100% / 2) - 10px) !important;
    }

    .wrap-reverse {
        flex-wrap: wrap-reverse;
    }

    .urun_img {
        /*display: flex;*/
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .urun_img a {
        width: 45%;
        height: auto !important;
    }

    .urun_img img {
        height: unset !important;
    }

    .index_slider .item {
        padding-bottom: 10vh;
    }

    .logo img {
        width: 50%;
    }
}

@media (max-width: 1024px) {

    .ic_liste {
        padding: 0
    }

    .index_slider .item h2 {
        font-size: 2em;
    }

    .menu {
        display: none;
    }

    .galery .item {
        width: calc((100% / 3) - 10px);
    }
}

#menu-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    float: right;
    top: 10px;
    display: none;
    z-index: 999;
    text-align: right;
}

#menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 30px;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#menu-icon span:nth-child(1) {
    top: 0px;
}

#menu-icon span:nth-child(2) {
    top: 7px;
}

#menu-icon span:nth-child(3) {
    top: 14px;
    width: 80%
}

#menu-icon.open span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#menu-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#menu-icon.open span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    width: 100%;
}

@media all and (max-width: 1240px) {
    #menu-icon {

    }

    #menu-icon span {
    }
}

@media all and (max-width: 991px) {
    #menu-icon span {
        margin: auto;
    }

    .carousel-caption h2 {
        font-size: 35px;
    }
}

@media all and (max-width: 768px) {
    #menu-icon {
        top: 10px;
        display: block;
        right: 5%;
    }

    #menu-icon span {
    }

    #menu-icon span:nth-child(1) {
    }

    #menu-icon span:nth-child(2) {
    }

    #menu-icon span:nth-child(3) {
    }
}

@media all and (max-width: 480px) {
    #menu-icon {
    }

    .carousel-item {
        height: 100vh !important;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}

.btn_hover:hover {
    transform: scale(1.1);
    box-shadow: 0 0.25em 0.5em 0.3em #777;
    transition: all 0.3s ease-in-out;
    border-radius: 0.25em 1em;
}