* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Baloo 2', serif;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding-left: 19px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 20px;
}
.textjustify {
text-align: justify !important;
}
figure {
    margin: 0;
}
.circle-button {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 23px;
    text-align: center;
    line-height: 50px;
}
.circle-button::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    border: 1px dashed #fff;
    border-radius: 50%;
    bottom: 3px;
    pointer-events: none;
}
.fontcolor-white {
    color: #fff;
}
.bg-niceblue {
    background-color: #71c0ef;
}
.bg-nicepink {
    background-color: #ED71A3;
}
.bg-niceyellow {
    background-color: #F7C86F;
}
.right-menu {
    display: flex;
    width: 200px;
    order: 3;
    justify-content: end;
    padding-right: 5px;

}
.f-row {
    flex-direction: row;
}

.f-col {
    flex-direction: column;
}

.f-wrap {
    flex-wrap: wrap;
}

.p-r5 {
    padding-right: 5px;
}

.m-r5 {
    margin-right: 5px;
}

.logo {
    display: flex;
    height: 50px;
    order: 2;
    align-content: center;
}

.logosmall {
    display: none;
    height: 50px;
    order: 2;
    align-content: center;
    padding-left: 90px;
}

.header {
    display: flex;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 10px 0 0 0;
    align-items: center;
    z-index: 1000;
}

/* Nav menu */
.mainmenu {
    display: flex;
    order: 2;
}

@media screen and (min-width: 768px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .sub-arrow {
        display: none !important;
    }
}

.dropdown-menu {
    border-radius: 0;
    border: 0 solid #fff;
    text-align: left;
    -webkit-transition: opacity 0.25s ease 0s;
    -moz-transition: opacity 0.25s ease 0s;
    -o-transition: opacity 0.25s ease 0s;
    transition: opacity 0.25s ease 0s;
    -webkit-box-shadow: 0 3px 18px 0 rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 18px 0 rgb(0 0 0 / 5%);
}

.navbar-nav :focus {
    outline: 3px solid #363636;
    outline-offset: 5px;
}

.navbar-nav .js-focus-visible :focus:not(.focus-visible) {
    outline: 0;
}

.navbar-nav :focus:not(:focus-visible) {
    outline-width: 0;
}

.navbar-nav .nav-link .sub-arrow {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
}

.navbar-nav .dropdown-item {
    white-space: normal;
}

.navbar-nav .dropdown-item .sub-arrow,
.navbar-nav .dropdown-item .dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    margin-top: -0.3em;
    margin-right: 1em;
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.navbar-nav .dropdown-item.has-submenu {
    padding-right: 2em;
}

.navbar-nav .sm-nowrap>li>.dropdown-item {
    white-space: nowrap;
}

.navbar-nav .caret {
    position: absolute;
    right: 0;
    margin: -3px 30px 0 0;
    padding: 0;
    width: 32px;
    height: 26px;
    line-height: 24px;
    text-align: center;
    border-width: 0;
    border-style: solid;
    background: #EA088C;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.navbar-nav .caret:before {
    content: "+";
    font-family: 'Work Sans', sans-serif !important;
    font-weight: bold;
    color: white;
}

.navbar-nav .caret.open:before {
    content: "-";
    color: white;
}

.animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.animated-icon span {
    background: #999;
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.animated-icon span:nth-child(1) {
    top: 0;
    width: 80%;
    transition: width 0.3s linear;
}

.animated-icon span:nth-child(2),
.animated-icon span:nth-child(3) {
    top: 10px;
}

.animated-icon span:nth-child(4) {
    top: 20px;
    width: 50%;
    transition: width 0.3s linear;
}

.animated-icon.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}

.animated-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.animated-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.animated-icon.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}

.navbar-toggler {
    border-radius: 0;
    border-width: 0;
    background-color: lightgray;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler:hover span {
    width: 100%;
}

/* MOBİLE */
@media screen and (max-width: 768px) {
    .dropdown-toggle:after {
        border-width: 0;
    }

    .mainmenu {
        order: 1;
    }

    .logo {
        display: none;
    }

    .logosmall {
        display: flex;
        order: 2;
    }

    .header {
        position: relative !important;
    }

    .navbar {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1001;
    }

    .nav-mobile-back {
        background-color: #fff;
    }

    .dropdown-menu li {
        padding-left: 17px !important;
    }
    .planet {
    -webkit-animation: planetrun 22s linear infinite;
    animation: planetrun 22s linear infinite;
    z-index:10;
    }
    .box-container { flex-wrap: wrap;}
    @-webkit-keyframes planetrun {
    0% {
        right: -100%;
    }
    50% {
        right: -10%
    }
    100% {
        right: 80%;
    }
    }
    @keyframes planetrun {
    0% {
        right: -100%;
    }
    50% {
        right: -10%
    }
    100% {
        right: 80%;
    }
    }
}

.nav-link {
    font-size: 16px !important;
    color: #363636 !important;
    font-weight: 700;
    margin: 0 9px;
}


.nav-link:hover,
.nav-link:active,
.nav-link:focus {
    text-decoration: none;
    outline: none;
    color: #71c0ef !important;
}

.circle-font:hover,
.circle-font:active,
.circle-font:focus {
    text-decoration: none;
    outline: none;
    color: #fff !important;
}

.dropdown-item {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px !important;
    color: #868686 !important;
    line-height: 28px !important;
}

.dropdown-item:hover,
.dropdown-item:active,
.dropdown-item:focus {
    color: #71c0ef !important;
    font-weight: 600;
    background-color: #ffffff00;
}


.slide-wrap {
    position: relative;
}

.slide-info {
    position: absolute;
    top: 48%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
}

.slide-info h1,
.slide-info h2,
.slide-info h5 {
    line-height: 1;
}

.slick-current .slide-info h5 {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: slideInDown;
    -webkit-animation-name: slideInDown;
}

.slick-current .slide-info h1 {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: zoomIn;
    -webkit-animation-name: zoomIn;
}

.slick-current .slide-info h2 {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: bounceInLeft;
    -webkit-animation-name: bounceInLeft;
}

.slick-current .slide-info a {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-name: slideInUp;
    -webkit-animation-name: slideInUp;
}

.slide-wrap img {
    min-height: 800px;
    object-fit: cover;
    width: inherit;

}

.slide-wrap .slide-info a {
    display: inline-block;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding: 0 30px;
    border-radius: 30px;
    background-color: #71c0ef;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    position: relative;
    font-family: 'Baloo 2', sans-serif;
    text-transform: uppercase;
    text-decoration: none;

}

.slide-wrap .slide-info a::before {
    content: '';
    border: 1px dashed #fff;
    border-radius: 30px;
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    pointer-events: none;
}

.slide-wrap .slide-info a:hover {
    background-color: #ed71a3;
}

.slide-home-01 .slick-dots,
.slide-home-02 .slick-dots,
.slide-home-03 .slick-dots,
.slide-home-04 .slick-dots,
.slide-home-06 .slick-dots {
    bottom: 40px;
    position: absolute;
    left: 0;
    right: 0;
}

/*.slide-home-01*/
.slide-home-01 .slide-info {
    text-align: left;
}

.slide-home-01 .slide-wrap .slide-info h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ed71a3;
    margin: 0 0 5px 0;
}

.slide-home-01 .slide-wrap .slide-info h1 {
    font-weight: 700;
    font-size: 52px;
    font-family: 'Baloo 2', sans-serif;
    clear: both;
    margin: 0;
}

.slide-home-01 .slide-wrap .slide-info h2 {
    font-size: 16px;
    margin: 0 0 25px 0;
    color: #868686;
    line-height: 26px;
    font-weight: 400;
}

.slide-home-01 .slide-wrap .slide-info h2 strong {
    color: #f7c86f;
    font-size: 110%;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
}

.slide-home-01 .slick-current .slide-info h1 {
    animation-name: bounceInLeft;
    -webkit-animation-name: bounceInLeft;
}

.slide-home-01 .slick-current .slide-info h2 {
    animation-name: bounceInRight;
    -webkit-animation-name: bounceInRight;
}

.slide-home-01 .slide-wrap .slide-info a {
    clear: both;
    display: table;
}

/*.slide-home-02*/
.slide-home-02 .slide-wrap .slide-info h5 {
    font-size: 16px;
    color: #868686;
    line-height: 1;
    font-weight: 400;
    margin: 0 0 25px 0;
}

.slide-home-02 .slide-wrap .slide-info h5 span {
    color: #f7c86f;
    font-size: 110%;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
}

.slide-home-02 .slide-wrap .slide-info h1 {
    font-size: 52px;
    font-family: 'Baloo 2', sans-serif;
    text-transform: capitalize;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.slide-home-02 .slide-wrap img {
    min-height: 650px;
}

.slide-home-02 .slide-wrap .slide-info h2 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #ed71a3;
    margin: 0 0 5px 0;
}

.slide-home-02 .slide-wrap .slide-info {
    text-align: left;
}

/*.slide-home-03*/
.slide-home-03 .slick-dots {
    bottom: 30px;
    position: absolute;
    left: 0;
    right: 0;
}

.slide-home-03 .slide-wrap .slide-info h1 {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
    margin: 0 0 5px;
}

.slide-home-03 .slide-wrap .slide-info h5 {
    font-size: 16px;
    margin: 0;
    color: #868686;
    line-height: 26px;
    font-weight: 400;
}

.slide-home-03 .slide-wrap .slide-info h5 strong {
    color: #f7c86f;
    font-size: 110%;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
}

.slide-home-03 .slide-wrap .slide-info h2 {
    font-size: 16px;
    margin: 0 0 25px 0;
    color: #868686;
    line-height: 26px;
    font-weight: 400;
}

/*.slide-home-04*/
.slide-home-04 .slide-wrap .slide-info {
    text-align: left;
}

.slide-home-04 .slide-wrap .slide-info h1 {
    font-size: 52px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.slide-home-04 .slide-wrap .slide-info h2 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 5px 0;
    color: #ed71a3;
}

.slide-home-04 .slide-wrap .slide-info h5 {
    font-size: 16px;
    margin: 0 0 25px 0;
    color: #868686;
    line-height: 1;
    font-weight: 400;
}

.slide-home-04 .slide-wrap .slide-info h5 strong {
    color: #f7c86f;
    font-size: 150%;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
}

/*.slide-home-06*/
.slide-home-06 .slide-info {
    text-align: left;
}

.slide-home-06 .slide-wrap .slide-info h5 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    color: #ed71a3;
}

.slide-home-06 .slide-wrap .slide-info h1 {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
    margin: 0 0 5px 0;
    text-transform: capitalize;
}

.slide-home-06 .slide-wrap .slide-info h2 {
    font-size: 16px;
    margin: 0 0 25px 0;
    color: #868686;
    line-height: 1;
    font-weight: 400;
}

.slide-home-06 .slide-wrap .slide-info h2 span {
    color: #f7c86f;
    font-size: 150%;
    font-weight: 700;
    font-family: 'Baloo 2', sans-serif;
}

@media (max-width: 1366px) {
    .slide-home-01 .slide-wrap .slide-info h1 {
        font-size: 46px;
    }

    .slide-home-02 .slide-wrap .slide-info h1 {
        font-size: 46px;
    }

    .slide-home-03 .slide-wrap .slide-info h1 {
        font-size: 46px;
    }

    .slide-home-04 .slide-wrap .slide-info h1 {
        font-size: 46px;
    }

    .slide-home-06 .slide-wrap .slide-info h1 {
        font-size: 46px;
    }
}

@media (max-width: 1199px) {
    .slide-wrap .slide-info a {
        font-size: 13px;
        height: 40px;
        line-height: 40px;
        padding: 0 20px;
    }

    .slide-home-01 .slide-wrap .slide-info h1 {
        font-size: 40px;
    }

    .slide-home-02 .slide-wrap .slide-info h1 {
        font-size: 40px;
    }

    .slide-home-03 .slide-wrap .slide-info h1 {
        font-size: 40px;
    }

    .slide-home-04 .slide-wrap .slide-info h1 {
        font-size: 40px;
    }

    .slide-home-06 .slide-wrap .slide-info h1 {
        font-size: 40px;
    }

    .slide-home-01 .slick-dots,
    .slide-home-02 .slick-dots,
    .slide-home-03 .slick-dots,
    .slide-home-04 .slick-dots,
    .slide-home-06 .slick-dots {
        bottom: 45px;
    }
}

@media (max-width: 1024px) {
    .slide-wrap img {
        min-height: 600px;
    }

    .slide-home-02 .slide-wrap img {
        min-height: 550px;
    }
}

@media (max-width: 991px) {
    .slide-home-01 .slide-wrap .slide-info h1 {
        font-size: 34px;
    }

    .slide-home-02 .slide-wrap .slide-info h1 {
        font-size: 34px;
    }

    .slide-home-03 .slide-wrap .slide-info h1 {
        font-size: 34px;
    }

    .slide-home-04 .slide-wrap .slide-info h1 {
        font-size: 34px;
    }

    .slide-home-06 .slide-wrap .slide-info h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .slide-wrap img {
        min-height: 340px;
    }

    .slide-home-02 .slide-wrap img {
        min-height: 340px;
    }

    .slide-home-01 .slide-wrap .slide-info h1 {
        font-size: 30px;
    }

    .slide-home-01 .slide-wrap .slide-info h2 {
        margin-bottom: 25px;
    }

    .slide-home-02 .slide-wrap .slide-info h5 {
        margin-bottom: 20px;
    }

    .slide-home-02 .slide-wrap .slide-info h1 {
        font-size: 30px;
    }

    .slide-home-03 .slide-wrap .slide-info h1 {
        font-size: 30px;
    }

    .slide-home-03 .slide-wrap .slide-info h2 {
        margin-bottom: 20px;
    }

    .slide-home-04 .slide-wrap .slide-info h1 {
        font-size: 30px;
    }

    .slide-home-06 .slide-wrap .slide-info h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .slide-home-06 .slide-wrap .slide-info h2 {
        margin: 0 0 15px 0;
    }

    .slide-home-02 .slide-wrap .slide-info h5,
    .slide-home-02 .slide-wrap .slide-info h2,
    .slide-home-06 .slide-wrap .slide-info h5,
    .slide-home-06 .slide-wrap .slide-info h2,
    .slide-home-01 .slide-wrap .slide-info h2,
    .slide-home-01 .slide-wrap .slide-info h5,
    .slide-home-03 .slide-wrap .slide-info h2,
    .slide-home-03 .slide-wrap .slide-info h5,
    .slide-home-04 .slide-wrap .slide-info h5,
    .slide-home-04 .slide-wrap .slide-info h2 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .slide-info {
        text-align: left;
    }

    .slide-wrap img {
        object-position: 78% 0;
    }

    .slide-home-01 .slide-wrap img {
        object-position: 50% 0;
    }

    .slide-home-01 .slide-wrap .slide-info h1 {
        font-size: 26px;
    }

    .slide-home-02 .slide-wrap img {
        object-position: 60% 0;
    }

    .slide-home-06 .slide-wrap img {
        object-position: 50% 0;
    }

    .slide-home-02 .slide-wrap .slide-info h1 {
        font-size: 26px;
    }

    .slide-home-03 .slide-wrap .slide-info h1 {
        font-size: 26px;
    }

    .slide-home-04 .slide-wrap .slide-info h1 {
        font-size: 26px;
    }

    .slide-home-04 .slide-wrap img {
        object-position: 60% 0;
    }

    .slide-home-06 .slide-wrap .slide-info h1 {
        font-size: 26px;
    }
}
@media (max-width: 360px) {
    .slide-home-04 .slide-wrap img {
        object-position: 42% 0;
    }
}
/*.slick-dots*/
.slick-dots {
    padding-left: 0;
    list-style: none;
    text-align: center;
    height: 25px;
    margin-top: 40px;
    position: relative;
}
.slick-dots:empty {
    display: none;
}
.slick-dots li {
    display: inline-block;
    padding: 7px;
    height: 25px;
}
.slick-dots li button {
    font-size: 0;
    width: 14px;
    height: 14px;
    padding: 0;
    position: relative;
    background-color: #fff;
    border: 2px solid #f7c86f;
    border-radius: 50%;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background-color: #f7c86f;
    border-color: #f7c86f;
}
.slick-vertical {
    padding-right: 45px;
}
.slick-vertical .slick-dots {
    margin-top: 0 !important;
    height: auto;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slick-vertical .slick-dots li {
    display: block;
}
@media (max-width: 1199px) {
    .slick-dots {
        margin-top: 25px;
    }

    .owl-slick .slick-arrow {
        top: -72px;
    }

    .kodory-products.style-06 .owl-slick .slick-arrow {
        top: -57px;
    }
}
@media (max-width: 1024px) {
    .owl-slick .slick-arrow {
        display: none !important;
    }
}
.navstick {
    background-color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 3px 10px rgb(0 0 0 / 5%) !important;
    transition: background-color 0.5s ease 0s, padding 0.5s linear;
    -o-transition: background-color 0.5s ease 0s, padding 0.5s linear;
    -webkit-transition: background-color 0.5s ease 0s, padding 0.5s linear;
}
.navbar-toggler {
    background-color: transparent;
}
.section01 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 55px 10px;
    background-color: #b5def2;
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    line-height: 1.2;
    color: #868686;
    margin-top: 40px;
}

.img {
    border-radius: 50%;
    min-width: 350px;
    min-height: 350px;
    object-fit: contain;
}
.title {
    font-family: 'Baloo Chettan 2', cursive;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 47px;
    padding-bottom: 5px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    line-height: 1.2;
    text-shadow: 3px 1px 8px black;

}
.title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border: 2px solid #fff;
    border-radius: 2px;
    width: 70px;
}
.ktext {
    font-size: 23px;
    font-family: 'Baloo 2', serif;
    font-weight: 700;
    color: #7181ef;
    line-height: 1.2;
}
.valiable-text span {
    float: left;
    padding-right: 10px;
    color: #666666;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    text-align: left;
    text-indent:40px;
}
.full-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.flex-d {
    display: flex;
    flex-direction: column;
}
.flex-dr {
    display: flex;
    flex-direction: row;
}
.qodef-text-marquee {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top
}
.qodef-text-marquee .qodef-m-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    font-size: 22px;
    font-family: "Amatic SC", cursive;
    line-height: 1em;
    font-weight: 700;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation: 4s qodef-flight infinite ease-in-out;
    animation: 4s qodef-flight infinite ease-in-out
}
.qodef-text-marquee .qodef-marquee-element {
    padding: 0 25px;
    will-change: transform
}
.qodef-text-marquee .qodef-m-image {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: visible
}
.qodef-text-marquee .qodef-m-image>path {
    -webkit-transform: rotateZ(0);
    -ms-transform: rotate(0);
    transform: rotateZ(0);
    -webkit-transform-origin: 7% 39%;
    -ms-transform-origin: 7% 39%;
    transform-origin: 7% 39%;
    -webkit-animation: qodef-propeler .4s infinite linear;
    animation: qodef-propeler .4s infinite linear
}
.qodef-text-marquee .qodef-m-image ellipse {
    -webkit-animation: qodef-smoke 1.5s infinite linear;
    animation: qodef-smoke 1.5s infinite linear
}
.qodef-text-marquee .qodef-m-image ellipse:first-of-type {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}
.qodef-text-marquee .qodef-m-image ellipse:nth-of-type(2) {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}
.qodef-text-marquee .qodef-m-text-holder {
    margin-left: 140px;
    padding: 20px 26px;
    background-color: #FFFFFF;
    color: #444;
    border-radius: 35px 8px;
    font-size: 25px;
    border-style:dashed;
}
.qodef-text-marquee .qodef-m-text-holder>span:after {
    content: '\00b7';
    display: inline-block;
    padding: 0 28px;
    color: #444
}

.qodef-text-marquee .qodef-m-text-holder>span:last-child:after {
    display: none
}

.qodef-text-marquee .qodef-m-text--1 {
    color: #444
}

.qodef-text-marquee .qodef-m-text--2 {
    color: #444
}

.qodef-text-marquee .qodef-m-text--3 {
    color: #444
}
.planet {
-webkit-animation: planetrun 22s linear infinite;
animation: planetrun 22s linear infinite;
z-index:10;
margin-top:30px;
margin-bottom:30px;
}
@-webkit-keyframes planetrun {
    0% {
        right: -100%;
    }
    50% {
        right: -10%
    }
    100% {
        right: 70%;
    }
}
@keyframes planetrun {
    0% {
        right: -100%;
    }
    50% {
        right: -10%
    }
    100% {
        right: 70%;
    }
}
@-webkit-keyframes qodef-propeler {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    25% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg)
    }

    50% {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg)
    }

    75% {
        -webkit-transform: rotateZ(270deg);
        transform: rotateZ(270deg)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}
@keyframes qodef-propeler {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    25% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg)
    }

    50% {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg)
    }

    75% {
        -webkit-transform: rotateZ(270deg);
        transform: rotateZ(270deg)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}
@-webkit-keyframes qodef-smoke {
    0% {
        opacity: 1;
        visibility: visible
    }

    50% {
        opacity: 0;
        visibility: hidden
    }

    100% {
        opacity: 1;
        visibility: visible
    }
}
@keyframes qodef-smoke {
    0% {
        opacity: 1;
        visibility: visible
    }

    50% {
        opacity: 0;
        visibility: hidden
    }

    100% {
        opacity: 1;
        visibility: visible
    }
}
@-webkit-keyframes qodef-flight {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(24px);
        transform: translateY(24px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes qodef-flight {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(24px);
        transform: translateY(24px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
.box-container {
    width: 100%;
    max-width: 1140px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding: 10px;
    display: flex;
    flex-direction: row;
}
.box-window {
    display: block;
    position: relative;
    width: 360px;
    height: auto;
    margin: 10px;

}
.box-cut {
    margin:0;
    padding:0;
    display:inline-block;
    overflow: hidden;
    border-radius: 8px;
    width: 360px;
    height: 270px;
    cursor: pointer;
}
.box-cut img:hover {
    transform: scale(1.03) translateX(3px);
    transition: transform .3s ease,-webkit-transform .3s ease;
    will-change: transform;
}
.box-cut img {
    display: block;
    position: relative;
    width: 360px;
    height: 270px;
    object-fit: cover;
    transform: scale(1.03) translateX(0px);
    transition: transform .3s ease,-webkit-transform .3s ease;
    will-change: transform;
    z-index: 0;

}
.box-hover-cut {
    margin:0;
    padding:0;
}
.box-hover-cut img {
    opacity: 0;
    display: block;
    position: absolute;
    z-index: 1;
    top:-25px;
    left: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale(0.95);
}
.box-cut:hover ~ .box-hover-cut img {
    opacity:1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}
h4.box-title {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    color: #444;
    font-family: 'Caveat', cursive;
    font-size: 30px;
    word-wrap: break-word;
    cursor: pointer;
    margin-top:25px;
    margin-bottom:25px;
}
span.box-info {
    display: block;
    font-family: 'Work Sans', sans-serif;
    width: 100%;
    word-wrap: break-word;
    color: #6c7272;
}
h2 {
    display: block;
    font-family: 'Baloo Chettan 2', cursive;
    font-weight: 900;
    font-size: 47px;
    line-height: 1.149em;
    margin: 25px 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.textcenter { text-align: center; }
.softgreencolor { color: #8dc8ae; }
.softgreycolor { color: #444444; }
.softorangecolor { color: #f37647; }
.swiper {
width: 100%;
height: 100%;
}
/** SLİDER **/
.testimonial {
width: 100%;
height: auto;
display: flex;
justify-content: center;
align-items: center;
color: #212529;
}
.testimonial-slide {
padding: 30px 20px 15px 20px;
}
.testimonial_box-top {
background-color: #f3e135;
padding: 30px;
border-radius: 15px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
box-shadow: 2px 2px 10px rgba(206, 212, 218, 0.534);
}
.testimonial_box-icon {
padding: 10px 0;
}
.testimonial_box-icon i {
font-size: 25px;
color: #212529;
}
.testimonial_box-text {
padding: 10px 0;
}
.testimonial_box-text p {
color: #212529;
font-size: 16px;
line-height: 20px;
margin-bottom: 0;
font-family: 'Baloo 2', serif;
font-weight: 400;

}
.testimonial_box-name {
padding-top: 10px;
}
.testimonial_box-name h4 {
font-size: 25px;
line-height: 28px;
color: #212529;
margin-bottom: 0;
font-family: 'Caveat', cursive;
}
.testimonial_box-job p {
color: #212529;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 3px;
line-height: 20px;
font-weight: 300;
margin-bottom: 0;
}
.testimonial-slider > .slick-dots li {
padding: 0 30px;
opacity: 0.2;
}
.testimonial-slider > .slick-dots li button {
content: url(https://i.ibb.co/hKgs8gm/profile.jpg);
background: url(https://i.ibb.co/hKgs8gm/profile.jpg);
background-position: center !important;
background-size: cover !important;
text-indent: -9999px;
overflow: hidden;
width: 60px;
height: 60px;
border-radius: 50px;
border: 4px solid #B5DEF2;
}
.testimonial-slider > .slick-dots .slick-active {
opacity: 1;
}
.testimonial-slider > .slick-dots {
display: inline-block;
width: 100%;
margin-top: 0px;
padding-bottom: 30px;
}
.v-pic {
display: flex;
flex-direction: row;
justify-content: space-evenly;
width: 100%;
padding: 10px 10px 40px 10px;
}
.v-columb {
display: flex;
flex-direction: column;
}
.v-notice {
text-align: center;
font-size: 16px;
font-weight: 500;
padding:0px 15% 25px 15%;
}
.sertifika > img {
width: 266px;
height: auto;
}
.footer-distributed{
background: #F4F0E4;
box-sizing: border-box;
width: 100%;
text-align: left;
padding: 55px 50px 2px 50px;
margin-top: 60px;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: inline-block;
vertical-align: top;
}
/* Footer left */
.footer-distributed .footer-left{
width: 40%;
}
/* The company logo */
.footer-distributed h3 {
font-size:45px;
margin: 0;
}
/* Footer links */
.footer-distributed .footer-links {
color:  #727272;
margin: 20px 0 12px;
padding: 0;
}
.footer-distributed .footer-links a {
display:inline-block;
line-height: 1.8;
font-weight:400;
text-decoration: none;
color:  inherit;
}
.footer-distributed .footer-company-name {
color:  #555555;
font-size: 14px;
font-weight: 400;
margin: 0;
}
/* Footer Center */
.footer-distributed .footer-center {
width: 35%;
}
.footer-distributed .footer-center > div {
display: flex;
align-items: center;
}
.footer-distributed .footer-center i {
background-color:  #ea088c;
color: #fff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}
.footer-distributed .footer-center i.fa-envelope {
font-size: 17px;
line-height: 38px;
}
.footer-distributed .footer-center p {
display: inline-block;
color: #727272;
font-weight:400;
vertical-align: middle;
margin:0;
}
.footer-distributed .footer-center p span {
display:block;
font-weight: normal;
font-size:14px;
line-height:2;
}
.footer-distributed .footer-center p a {
color:  lightseagreen;
text-decoration: none;;
}
.footer-distributed .footer-links a:before {
content: "|";
font-weight:300;
font-size: 20px;
left: 0;
color: #727272;
display: inline-block;
padding-right: 5px;
}
.footer-distributed .footer-links .link-1:before {
content: none;
}
/* Footer Right */
.footer-distributed .footer-right {
width: 20%;
}
.footer-distributed .footer-company-about {
line-height: 20px;
color:  #727272;
font-size: 13px;
font-weight: 400;
margin: 0;
}
.footer-distributed .footer-company-about span {
display: block;
color:  #727272;
font-size: 15px;
font-weight: bold;
margin-bottom: 20px;
}
.footer-distributed .footer-icons {
margin-top: 25px;
}
.footer-distributed .footer-icons a {
display: inline-block;
width: 45px;
height: 45px;
cursor: pointer;
text-align: center;
margin-right: 3px;
margin-bottom: 5px;
}
/* If you don't want the footer to be responsive, remove these media queries */
@media (max-width: 880px) {
.footer-distributed{
font: bold 14px sans-serif;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: block;
width: 100%;
margin-bottom: 40px;
text-align: center;
}
.footer-distributed .footer-center i{
margin-left: 0;
}
.footer-distributed .footer-center > div{
flex-direction: column;
align-items: center;
}
.footer-distributed .footer-center p{
display: block;
margin: 0;
text-align: center;
}
.footer-distributed .footer-center i{
margin: 0 auto 10px;
}
/* Hygiene section responsive fixes */
.v-pic{
flex-wrap: wrap;
justify-content: center;
padding: 10px;
}
.v-pic img{
max-width: 100%;
height: auto;
}
.sertifika{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.sertifika > img{
width: 100%;
max-width: 320px;
height: auto;
}
.v-notice{
padding: 0 8% 25px 8%;
}
/* Center only the footer logo image on mobile */
.footer-distributed .footer-left img.footerlogo{
 display:block;
 margin:0 auto;
}
}
.footerlogo {
font-weight: 900;
color:#EA088C;
text-shadow:
1px 0px 1px #727272,
0px 1px 1px #adb5bd,
2px 1px 1px #727272,
1px 2px 1px #adb5bd;
}
/* NOTE */
.w-note {
position:relative;
text-align:center;
background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
color:white;
margin: -10px 0 0 0;
}
.inner-header {
height:65vh;
width:100%;
margin: 0;
padding: 0;
}
.flex { /*Flexbox for containers*/
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.waves {
position:relative;
width: 100%;
height:15vh;
margin-bottom:-7px; /*Fix for safari gap*/
min-height:100px;
max-height:150px;
}
.content {
position:relative;
height:20vh;
text-align:center;
background-color: white;
}
/* Animation */
.parallax > use {
animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
animation-delay: -2s;
animation-duration: 7s;
}
.parallax > use:nth-child(2) {
animation-delay: -3s;
animation-duration: 10s;
}
.parallax > use:nth-child(3) {
animation-delay: -4s;
animation-duration: 13s;
}
.parallax > use:nth-child(4) {
animation-delay: -5s;
animation-duration: 20s;
}
@keyframes move-forever {
0% {
transform: translate3d(-90px,0,0);
}
100% {
transform: translate3d(85px,0,0);
}
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
.waves {
height:40px;
min-height:40px;
}
.content {
height:30vh;
}
h1 {
font-size:24px;
}
/* W-NOTE yükseklik ve boşluk ayarları */
.inner-header {
height:auto;
padding: 24px 0;
}
.w-note { margin: 0; }
/* Slider metin kutusunun taşmasını engelle */
.slide-info .container .slide-inner { max-width: 100% !important; }
/* Başlıkların üst/alt boşluklarını küçült sadece textcenter için uygula */
h2.textcenter { font-size: 34px; line-height: 1.2; margin: 16px 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 6px; }
.textcenter span { display: inline-block; }
/* Slider yazı konum ve satır yüksekliği */
.slide-info { top: 45%; }
.slide-info h1,
.slide-info h2,
.slide-info h5 { line-height: 1.15; }
}
/** SHOPPİNG CART **/
.wrapper {
display: block;
z-index: 100;
}
.sidebar {
width: 450px;
height: 100vh;
position: fixed;
top: 0;
right: -455px;
z-index: 1004;
background: #FFF;
color: #000;
transition: all .3s;
box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
text-align: left;
}
.sidebar.active {
right: 0;
}
.overlay {
display: none;
position: fixed;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.6);
z-index: 1003;
opacity: 0;
transition: all .5s ease-in-out;
}
.overlay.active {
display: block;
opacity: 1;
}
.dismiss {
width: 35px;
height: 35px;
position: absolute;
top: 10px;
right: 10px;
transition: all .3s;
background: #F7C86F;
color:#FFF;
border-radius: 2px;
text-align: center;
line-height: 35px;
cursor: pointer;
}
.dismiss:hover,
.dismiss:focus {
background: #f5a613;
color: #fff8bb;
}
.minicart-title {
display: table;
position: relative;
font-family: 'Baloo 2', serif;
font-weight: 700;
font-size: 20px;
padding: 0 35px 10px;
margin: 10px auto 30px;
word-wrap: break-word;
}
.minicart-title::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
width: 50px;
border-radius: 2px;
border: 2px solid #71c0ef;
}
.minicart-number-items {
position: absolute;
top: -15px;
right: 10px;
display: inline-block;
min-width: 23px;
height: 23px;
line-height: 25px;
text-align: center;
padding: 0 3px;
border-radius: 50%;
background-color: #71c0ef;
font-size: 12px;
color: #ffffff;
}
.minicart-container {
width: 100%;
padding-top: 19px;
}
/*****************/
.minicart-wrap {
position: relative;
height: calc(100vh - 224px);
list-style: none;
overflow: hidden !important;
padding: 0 !important;
}
.minicart-product-wrap {
height: calc(100vh - 224px);
padding-left: 0;
list-style: none;
border: none !important;
box-sizing: content-box !important;
height: auto;
left: 0;
margin: 0;
max-height: none;
max-width: none !important;
padding: 0;
position: relative !important;
top: 0;
width: auto !important;
}
.minicart-product {
display: list-item;
position: relative;
padding: 0 30px 19px 30px;
overflow: hidden;
color: #363636;
font-size: 14px;
}
.minicart-product a {
-webkit-transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
-moz-transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
-o-transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
}

.minicart-product a:hover,.minicart-product a:focus,.minicart-product a:active {
text-decoration: none;
outline: none;
color: #71c0ef;
}
li.minicart-product:not(:last-child) {
border-bottom: 2px dashed #e8e8e8;
margin-bottom: 19px;
}
.minicart_button {
display: block;
right: 30px;
font-size: 34px;
position: absolute;
top: 0;
width: auto !important;
margin-bottom: 4px;
cursor: pointer;
color: #363636;
text-decoration: none;
font-family: 'Work Sans', sans-serif;
line-height: 26px;
}
.minicart-images {
display: block;
width: 100%;
margin-bottom: 4px;
font-size: 16px;
line-height: 22px;
font-family: 'Baloo 2', serif;
font-weight: 700;
color: #363636;
}
.minicart-images img {
height: auto;
vertical-align: middle;
border-style: none;
float: left;
max-width: 70px;
margin-right: 20px;
}
.minicart-quantity {
font-size: 14px;
line-height: 22px;
color: #868686;
font-weight: 500;
}
/** SHOPPİNG CART END **/
.popover {
background-color: rgba(0, 0, 0, 0.55) !important;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4) !important;
color: #fff !important;

}
.popover-body {
color: #fff !important;
padding: 4px 8px !important;
}
/* 01 - Home Page [END] */

/** 02 - Hakkımızda page [START] **/
.title-h {
    padding-left: 10px;
    font-family: 'Baloo Chettan 2', cursive;
    font-weight: 900;
    font-size: 47px;
    line-height: 1.2em;
    color:#fff;
}
.ktext-h {
    padding-left: 10px;
    font-size: 36px;
    font-family: 'Baloo 2', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}
.valiable-text-h span {
    float: left;
    padding-left: 10px;
    padding-right: 40px;
    color:#FFF;
    font-family: 'Baloo 2', serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
    text-indent:40px;
}
/** 02 - Hakkımızda page [END] **/

/*** 03 - İş başvuru page [START] ***/
.form-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.form-wrap {
    background-color: whitesmoke;
    border-radius: 10px;
    margin-left: auto!important;
    margin-right: auto!important;
    padding: 1rem!important;
    margin-top: 100px;
    flex: 0 0 66.666667%;

    position: relative;
    width: 100%;

}
.form-banner {
    margin-bottom: 30px !important;
    background: #428bca;
    padding: 15px;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 24%);
    color: white !important;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    min-height: 64px;
}
.form-list {
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
    color: lightgrey;
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;

}
.form-list li {
    display: list-item;
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400;
}
.form-list li::before {
    display: inline-block;
    width: 40px;
    height: 40px;
    display: block;
    font-size: 20px;
    color: #FFF;
    background: #D3D3D3;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
    padding-top:8px !important;
}
.form-list li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    top: 25px;
    z-index: -1;
}
li.active::before, li.active::after {
    background: #428bca !important;
}
.form-list li.active {
    color: #428bca !important;
}
.form-personal::before {
    content: '\f007 ';
    font-family:'FontAwesome';
}
.form-interest::before {
    content: '\f03c';
    font-family:'FontAwesome';
}
.form-picture::before {
    content: '\f1c5';
    font-family:'FontAwesome';
}
.form-finish::before {
    content: '\f046';
    font-family:'FontAwesome';
}
.progress {
    height: 6px;
    display: flex;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.progress-bar {
    background-color: #428bca;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: width .6s ease;
}
.form-group label, .form-group input, .form-group select {
    margin: 5px 10px;
}
.form-group label {
    color: #495057 !important;
    font-weight: 500;
}
.bupload {
    position: relative;
    width: 200px;
    background-color: #E61A23;
    text-align: center;
    font-family: 'Baloo 2', serif;
    font-weight: 600;
    color: white;
    padding: 10px 15px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 22px;
    line-height: 1rem;
    text-decoration: none;
    text-shadow: none;
    display: inline-block;
    margin-bottom: 20px;
}
.bupload:hover {
    color:#fff !important;
}

.bupload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
#pupload:hover {
    cursor:pointer;
}
/*** 03 - İş başvuru page [END] ***/

/**** 04 - Şubeler page [START] ****/
.s-back {
    height: 350px;
    background-image: url('../../images/magaza_banner.jpg');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ffffff;
    margin:0;
    padding:0;
    }
    .s-title {
        padding: 0 34px;
        width: 100%;
        height: 100%;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .s-subtitle {
        margin: 4px 0 0;
        font-family: 'Caveat', cursive;
        font-weight: 700;
        font-size: 27px;
        color: rgba(74,74,74,.85);
        line-height: 1.625em;
        text-align: center;
    }
    .s-entry {
        margin: 0;
        font-family: 'Baloo 2', serif;
        font-weight: 400;
        font-size: 57px;
        line-height: 1.14em;
        color: #444444;
        word-wrap: break-word;
        text-align: center;
    }

    .s-pi {
      background-color: #F6F1E4;
    }
    .bg-white {
        background-color: #FFF;
    }
    .cover {
        object-fit: cover;
    }
    .f-fullcenter {
        justify-content: center;
        text-align: center;
    }
    .sm-box {
        margin: 0;
        padding: 0 4% 0 18%;

    }
    .sm-title {
        font-family: 'Amatic SC', cursive;
        display: block;
        margin: 0 0 15px;
        font-size: 27px;
        font-weight: 700;
        line-height: 30px;
        color: rgba(74,74,74,.85);
    }
    .button-container {
        margin: 0;
        padding: 12px;
        transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
    }
    .button-link {
        color: #ec6830;
        background-color: #ffd7cd;
        border: none;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: auto;
        margin: 0;
        font-family: "Baloo Chettan 2",cursive;
        font-size: 16px;
        line-height: 1.6em;
        font-weight: 900;
        text-decoration: none;
        text-transform: uppercase;
        border-radius: 5px;
        outline: 0;
        transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out;
        padding: 13px 36px;
        box-shadow: none;
        cursor: pointer;
    }
    .button-link:hover {
        color: #ec6830;
        background-color: #ffd7cd;
        border: none;
    }
    .button-link::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(90deg,currentColor 50%,transparent 50%),linear-gradient(90deg,currentColor 50%,transparent 50%),linear-gradient(0deg,currentColor 50%,transparent 50%),linear-gradient(0deg,currentColor 50%,transparent 50%);
        background-repeat: repeat-x,repeat-x,repeat-y,repeat-y;
        background-size: 5px 2px,5px 2px,2px 5px,2px 5px;
        background-position: 0 0,100% 100%,0 100%,100% 0;
        border-radius: 4px;
    }
    .button-link:hover:after {
        -webkit-animation: qodefBorderAnimation 4s infinite linear;
        animation: qodefBorderAnimation 4s infinite linear;
    }
    @-webkit-keyframes qodefBorderAnimation{
        0% {background-position:0 0,100% 100%,0 100%,100% 0}
        100%{background-position:100% 0,0 100%,0 0,100% 100%}
    }
    @keyframes qodefBorderAnimation{
        0%{background-position:0 0,100% 100%,0 100%,100% 0}
        100%{background-position:100% 0,0 100%,0 0,100% 100%}
    }
    .slider-container {
    background-color: #fff;

    }
    .slider-ap {
        width: 100%;
        cursor: grab;
        margin: 20px 0;
    }
    .slider-wh {
        height: 250px;
        padding-right: 20px;
    }
    .slider-wh img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
        overflow: hidden;
        object-fit: cover;

    }
    .slick-prev:before, .slick-next:before {
        font-family: 'slick' !important;
        opacity: .75;
        color: #fc0000;
    }
    .text-list {
        list-style-type:none;
        text-align: left;
        margin-left:-15px;
        line-height: 1.2rem;
        font-size: 15px;
        font-family: 'Raleway', sans-serif;
        color: #6c7272;
    }
    .text-list li {
        line-height: 1.625em;
        font-size: 16px;
        font-family: 'Raleway', sans-serif;
        color: #6c7272;
    }
    .text-list li:first-child {
        text-indent: 20px;
        font-weight: 600;

    }
    /**** 04 - Şubeler page [END] ****/

    /***** 05 - İletişim page [START] *****/
    .contact_field{
        padding: 60px 20%;
    }

    .cform-control {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    .contact_field .cform-control{
        border-radius: 0px;
        border: none;
        border-bottom: 1px solid #ccc;
    }
    .contact_field .cform-control:focus{
        box-shadow: none;
        outline: none;
        border-bottom: 2px solid #1325e8;
    }
    .contact_field .cform-control::placeholder{
        font-size: 16px;
        letter-spacing: 1px;
    }
    .cform-control {
        margin-bottom: 1rem;
    }


    button.contact_form_submit {
        background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
        border: none;
        color: #fff;
        padding: 10px 15px;
        width: 100%;
        margin-top: 25px;
        border-radius: 35px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 2px;
    }
    .contact-wrap {
        background-color: #fff;
        padding: 10px;
        border-bottom-left-radius: 35px;
        border-bottom-right-radius: 35px;

    }
    /***** 05 - İletişim page [END] *****/

    /***** 06 - Franchise page [START] *****/
    .f-list {
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
        font-size: 27x;
        color : #F37647;
        padding-bottom:20px;
    }

    .f-p {
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
        font-size:16px;
        line-height:1.2em;
        color:#6c7272;
    }

    .f-pad {
        padding:0 20%;
    }

    .svg-turkiye-haritasi {
      max-width: 1140px;
      margin: 0 auto;
      text-align: center;
    }
    .svg-turkiye-haritasi svg {
      width: 100%;
      height: auto;
    }
    .il-isimleri {
      position: absolute;
      z-index: 2;
    }
    .il-isimleri div {
      font-family: 'Baloo 2', serif;
      font-size: 14px;
      font-weight: 600;
      display: inline-block;
      background: #000;
      color: #fff;
      padding: 4px 16px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
    }
    #svg-turkiye-haritasi path {
      cursor: pointer;
      fill: #69BD45;
    }
    #svg-turkiye-haritasi path:hover {
      fill: #EA088C;
    }
    #guney-kibris {
      pointer-events: none;
    }
    #trabzon path, #samsun path, #amasya path, #istanbul-avrupa path {
        fill:#EA088C !important;
    }
    #guney-kibris path {
        fill: #000000;
    }
    .map-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 15px 0;

    }
    .map-box {
        width: 30px;
        height: 30px;
        border-radius: 4px;
        margin: 0 12px;
    }
    .map-text {
        display: flex;
        font-family: 'Baloo 2', serif;
        color: #727272;
        font-size: 14px;
        font-weight: 600;
        padding-top:5px;
    }
    .map-r1 {
    background-color: #EA088C;
    }
    .map-r2 {
    background-color: #69BD45;
    }
    .map-r3 {
    background-color: #000000;
    }

    .div-f-wrap {
    display: flex;
    flex-direction: row;
    margin:50px;
    padding:30px;
    border-radius: 10px;
    background: radial-gradient(circle at 24.1% 68.8%, rgb(50, 50, 50) 0%, rgba(0, 0, 0, 0.075) 99.4%);
    }
    .div-f-left {
        display: flex;
        flex-direction: column;
        width: 65%;


    }
    .div-f-right {
        display: flex;
        width: 35%;
    }

    /***** 06 - Franchise page [END] *****/
