body,
html {
    width: 100%;
    height: 100%;
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
}

body,
p {
    color: #787976;
    font: 400 1rem/1.5625rem "Helvetica", sans-serif;
}

h1 {
    color: #484a46;
    font: 700 2.5rem/3rem "Montserrat", sans-serif;
}

h2 {
    color: #484a46;
    font: 700 1.75rem/2.125rem "Montserrat", sans-serif;
}

h3 {
    color: #484a46;
    font: 1000 1.375rem/1.75rem "Helvetica", sans-serif;
}

h4 {
    color: #484a46;
    font: 00 1.25rem/1.625rem "Helvetica", sans-serif;
}

h5 {
    color: #484a46;
    font: 700 1.125rem/1.5rem "Montserrat", sans-serif;
}

h6 {
    color: #484a46;
    font: 700 1rem/1.375rem "Montserrat", sans-serif;
}

button {
    font: 1000 1.375rem/1.75rem "Helvetica", sans-serif;
}

/* Spinner */
.spinner-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: white;
}
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.75rem;
    height: 1.25rem;
    margin: -0.625rem 0 0 -1.875rem;
    text-align: center;
}
.spinner > div {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #0368D6;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
        transform: scale(1.0);
    }
}
/* end of spinner */



.navbar-custom {
    background: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
    font: 600 0.875rem/0.875rem "Open Sans", sans-serif;
}

.navbar .logo-image img{
    height: 75px;
}

.navbar-custom .logo-image img {
    height: 75px;
    -webkit-backface-visibility: hidden;
}

.navbar-custom .navbar-brand.logo-text {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    font: 700 2.25rem/1.5rem "Montserrat", sans-serif;
    color: #0368D6;
    text-decoration: none;
}

.navbar-custom .navbar-nav {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    /* margin-right: 22%; */
}

.navbar-custom .nav-item .nav-link {
    padding: 0.625rem 1.25rem 0.625rem 1.25rem;
    color: black;
    text-decoration: none;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
    color: #0368D6;
}

nav ul a,
a:visited {
    text-decoration: none;
    position: relative;
    color: #0368D6;
}

nav ul a:after,
a:visited:after {
    content: '';
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    background: #0368D6;
    transition: 0.4s;
}

nav ul a:hover:after,
a:visited:hover:after {
    width: 100%;
}

nav ul a.block,
a:visited.block {
    display: block;
    padding: 0.5em;
}

.navbar-custom .navbar-toggler {
    border: none;
    color: black;
    font-size: 2rem;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-times {
    display: none;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-bars {
    display: inline-block;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-bars {
    display: none;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-times {
    display: inline-block;
    margin-right: 0.125rem;
}


/* -------- end of navbar --------- */

/* --------     header    --------- */

header {
    position: relative;
    background-color: black;
    height: 100%;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.65;
    z-index: 1;
}

header .text {
    margin-top: 20%;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

header h1 {
    font-size: 2.5vw;
    color: black;
    text-align: center;
    line-height: 70px;
    color: #FFF;
}

header h5 {
    color: black;
    text-align: center;
    padding: 0 28% 0 28%;
    color: #FFF;
}

@media screen and (max-width: 767px) {
    header h1 {
        font-size: 20px;
        line-height: 30px;
    }

    header h5 {
        font-size: 16px;
        padding: 0 12% 0 12%;
    }

    .navbar-custom .navbar-nav {
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
        margin-right: 50%;
        width: 50%;
    }

    header .text {
        margin-top: 65%;
    }
    
    .info-card {
        border-radius: 10px;
        background-color: #0368D6;
        margin: 10px 0 10px 0;
        color: #fff;
        padding: 20px 0 20px 0;
    }
    
    .urunbuts {
        margin-top: 750px;
    }
    
    .urunler {
        min-height: 800px;
    }
    
    
}

/* -------- end of header -------- */


.uretim {
    background: #FFF;
    color: #1D252D;
}

.info-card {
    border-radius: 10px;
    background-color: #0368D6;
    margin: 40px 0 40px 0;
    color: #fff;
    padding: 20px 0 20px 0;
}

.info-card-cont{
    background-color: #F3F5F7;
}

.sub-heading {
    padding-top: 50px;
    padding-bottom: 50px;
}

.bayi-heading {
    background-color: #F3F5F7;
}

hr {
    width: 90%;
    background-color: #707070;
}

.headings {
    font-weight: 1000;
    font-size: 2rem;
    margin-bottom: 5%;
}

.button-group {
    margin-top: 25px;
    margin-bottom: 25px;
    height: 15%;
}

.btn {
    height: 100%;
}


.texts {
    margin-top: 5%;
    margin-bottom: 5%;
    line-height: 1.7;
    font-size: 1.5rem;
}

.bayi-heading{
    background-color: #F3F5F7;
}

.btn-bayi {
    padding: 0;
    background-color: #fff;
    color: #000;
    border-radius: 100px;
    border-color: #000;
    border-width: 1px;
    font-size: 18px;
    height: 30px;
}

.btn-bayi-active {
    padding: 0;
    background-color: #E8542E;
    color: white;
    border-color: #E8542E;
    border-radius: 100px;
    border-width: 1px;
    font-size: 18px;
    height: 30px;
}

.btn-danger:hover {
    background-color: #E8542E;
    border-width: 1px;
    border-color: #E8542E;
    border-radius: 100px;
    border-width: 1px;
    font-size: 18px;
    height: 30px;
}

img {
    width: 100%;
}

.info {
    background-image: url('../images/banner.png');
    padding-bottom: 20px;
    padding-top: 20px;
}


.sub {
    font-size: 16px;
    color: white;
    width: 50%;
}

/* ------ urunler ------- */

.urunler{
    margin-bottom: 25px;
    margin-top: 25px;
}

.urun-but{
    width: 100%;
    background-color: transparent;
    color: #0368D6;
    border: none;
    text-align: center;
    border-radius: 5px;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
    border: 2px solid #0368D6;
}

.urun-but-active{
    width: 100%;
    background-color: #0368D6;
    color: #fff;
    border: none;
    text-align: center;
    border-radius: 5px;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.urunler img{
    -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.5);
}

/* --- end of urunler ---*/


.istirakler {
    width: 90%;
}


.footer-logo {
    width: 20%;
    margin-top: 5%;
}


@media screen and (max-width: 768px) {
    .texts {
        font-size: 3.5vw;
        margin: 30px;
    }

    .hide {
        display: none;
    }

    .show {
        display: inherit;
    }

    .sub {
        padding-left: 10%;
        padding-right: 10%;
        width: 100%;
    }

    .navbar-brand {
        margin-left: 4%;
    }

    .btn-link {
        color: #000000;
    }

    .footer-logo {
        margin: 0;
        margin-bottom: 5%;
    }

    .footer-text {
        text-align-last: center;
    }

    .card button:hover {
        color: #D51116;
    }

    .collapsed:hover {
        color: #0368D6;
    }

    .collapsed:after {
        color: #0368D6;
    }

    .collapse:hover {
        color: #0368D6;
    }

    .collapse:after {
        color: #0368D6;
    }

    .btn {
        margin-top: 10px;
    }
    
    #t100 {
        margin-top: 20px;
        overflow-x: scroll;
    }
    #t200 {
        margin-top: 20px;
        overflow-x: scroll;
    }
    #t300 {
        margin-top: 150px;
        overflow-x: scroll;
    }
}

.img-slider {
    min-height: 300px;
}

.img-slider img {
    max-height: 300px;
    
}

.footer {
    background-color: #0368D6;
    color: #fff;
    margin-top: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
}

.footer-copyright {
    color: #fff;
    font-size: 14px;
}

.footer-copyright a {
    color: #fff;
    font-size: 14px;
}

input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #0368D6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #E8542E;
}