/* FONTS */

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito-black.eot');
    src: url('../fonts/nunito-black.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-black.woff2') format('woff2'), url('../fonts/nunito-black.woff') format('woff'), url('../fonts/nunito-black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito-bold.eot');
    src: url('../fonts/nunito-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-bold.woff2') format('woff2'), url('../fonts/nunito-bold.woff') format('woff'), url('../fonts/nunito-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito-extrabold.eot');
    src: url('../fonts/nunito-extrabold.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-extrabold.woff2') format('woff2'), url('../fonts/nunito-extrabold.woff') format('woff'), url('../fonts/nunito-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito-regular.eot');
    src: url('../fonts/nunito-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-regular.woff2') format('woff2'), url('../fonts/nunito-regular.woff') format('woff'), url('../fonts/nunito-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/nunito-semibold.eot');
    src: url('../fonts/nunito-semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-semibold.woff2') format('woff2'), url('../fonts/nunito-semibold.woff') format('woff'), url('../fonts/nunito-semibold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PD';
    src: url('../fonts/PlayfairDisplay-Regular.eot');
    src: url('../fonts/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),url('../fonts/PlayfairDisplay-Regular.woff') format('woff'),url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/*  1. LOADER
====================================*/

#loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 99999;
}

#loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#loader .loader-svg {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

#loader .loader-svg .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

#loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

@keyframes loader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}


/*  3. MAIN ELEMENTS
====================================*/

html,
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    min-height: 100%;
}

body {
    min-height: 100%;
    color: #202022;
    font-size: 18px;
    line-height: 1.46;
    font-family: 'Nunito', sans-serif;
    font-weight: normal;
    background: #fff url(../img/bg_main.jpg) repeat-y top left;
    background-size: 100% auto;
}

p {
    margin-bottom: 1rem;
}

strong,
b {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s cubic-bezier(0.1, 0.2, 0.8, 1);
}

a:hover {
    text-decoration: none;
    transition: all 0.15s cubic-bezier(0.1, 0.2, 0.8, 1);
}

hr {
    border: 0;
    border-top: 1px dashed #C3996F;
    margin: 30px 0;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -user-select: none;
    pointer-events: none;
}

.text-center {
    text-align: center;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }
}

@keyframes fade-in-bottom {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}


/*------------------------------------*\
  #HEADING
\*------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    line-height: 1.2;
    color: #000000;
    font-weight: 900;
    margin-bottom: 1rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover {
    text-decoration: none;
    color: inherit;
}

h1,
.h1 {
    font-size: 2rem;
}

h2,
.h2 {
    font-size: 1.75rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

h4,
.h4 {
    font-size: 1.25rem;
}

h5,
.h5 {
    font-size: 1.125rem;
}

h6,
.h6 {
    font-size: 1rem;
}

.block-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    color: #000000;
    margin-bottom: 1.5rem;
}

.block-title span {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.block-title span:before,
.block-title span:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 1px;
    background-color: #707070;
}

.block-title span:before {
    right: 100%;
}

.block-title span:after {
    left: 100%;
}

.block-text {
    margin-bottom: 1.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}
.italic-title {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: bold;
    font-size: 36px;
    line-height: 3rem;
}

@media(max-width:767px) {
    h1,
    .h1,
    #hero .h-body .h-title {
        font-size: 1.75rem;
    }
    h2,
    .h2 {
        font-size: 1.5rem;
    }
    h3,
    .h3 {
        font-size: 1.25rem;
    }
}


/*  Header  */

.header {
    background-color: #fff;
}

.header .container,
.header-top .container {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.header-top {
    color: #fff;
    background-color: #000000;
}

.header-top .container {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.topmenu {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
}

.topmenu li {}

.topmenu li a {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 0.5rem 1rem;
}

.header {
    padding: 0.5rem 0 0 0;
    transition: all 0.3s;
}

.logo {
    display: inline-block;
}

.logo img {
    width:100%;
    max-width:70%;
}

.header-right,
.menu-list {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
}

.menu-list li {
    padding: 0 1rem;
}

.menu-link {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #000;
    font-size: 19px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    padding: 1.25rem 0;
    border-bottom: 6px solid transparent;
}

.menu-list li:first-child .menu-link {
    top: -2px;
    position: relative;
}

.order-number {
    display: inline-block;
    padding: 0.375rem 1rem;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 900;
    background-color: #D20D1A;
    border-radius: 6px;
    cursor: pointer;
}

.order-number span {
    display: block;
}

.order-number .text {
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}

.order-number:hover,
.order-number:focus {
    color: #fff;
    background-color: #bf0b17;
}

.header .order-number {
    margin-left: 1.5rem;
}

.header-top .social {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid #404040;
}

.bg-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}

.btn-toggler {
    height: 2rem;
    width: 2rem;
    padding: 0;
    margin-left: 1rem;
    color: #D20D1A;
    position: relative;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    border-radius: 0.25rem;
    overflow: hidden;
    text-align: right;
}

.btn-toggler i {
    display: block;
    position: absolute;
    top: 6px;
    right: 0;
    width: 100%;
    height: 3px;
    transition: all .4s;
    background-color: #000000;
}

.btn-toggler i:nth-child(2) {
    top: 15px;
    transition: all 0s;
}

.btn-toggler i:nth-child(3) {
    top: 23px;
    width: 70%;
}

.bg-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}

.menu--open,
.menu--open body {
    overflow: hidden;
}

.menu--open .btn-toggler,
.btn-toggler.active {
    z-index: 9999;
}

.menu--open .btn-burger i {
    left: 1px;
    background-color: #fff;
}

.menu--open .btn-burger i:first-child,
.btn-toggler.active i:first-child {
    top: 13px;
    left: 1px;
    -webkit-transform: rotate(135deg) !important;
    transform: rotate(135deg) !important;
}

.menu--open .btn-burger i:nth-child(2),
.btn-toggler.active i:nth-child(2) {
    opacity: 0;
    left: 60px;
    background: #000 !important;
}

.menu--open .btn-burger i:nth-child(3),
.btn-toggler.active i:nth-child(3) {
    top: 13px;
    width: 100%;
    -wekit-transform: rotate(-135deg) !important;
    transform: rotate(-135deg) !important;
}

.menu--open .bg-navbar {
    visibility: visible;
    z-index: 5999;
    opacity: 0.5;
}


/* Social */

.social {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center !important;
    align-items: center;
}

.social a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
    padding: 0 0.5rem;
    transition: all 0.3s linear;
    margin-left: 0.25rem;
}

.social li a .icon {
    width: 25px;
    height: 25px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background-color: #624FAE;
    border-radius: 50%;
}

.social li a svg {
    width: 14px;
    height: 14px;
}

.social a .text {
    margin-left: 0.5rem;
}

.social label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    margin-left: 1rem;
    margin-bottom: 0;
}


/* Slider */

.main-slider,
.main-slider .swiper-slide {
    position: relative;
}

.slider-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slider-block .container {
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.slide1 .slider-body {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    max-width: 419px;
    padding: 1rem;
    color: #fff;
}

.slide1 .slider-title {
    font-size: 3rem;
    line-height: 56px;
    color: #fff;
    font-weight: 800;
}

.slide1 .slider-extra {
    isplay: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.slide1 .slider-text {
    max-width: 115px;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    width: 100%;
}

.slide1 .slider-arrow {
    rgin-right: 1rem;
}

.main-slider .btn-swiper {
    color: #fff;
}
.main-slider .btn-swiper .icon {
    display:none;
}


/* Footer */

.footer {
    position: relative;
    padding: 1.5rem 0;
    margin-top: 5rem;
    color: #fff;
    background: #242424;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -10px;
    width: 100%;
    height: 8px;
    z-index: -1;
}

.footer-wrap {}

.footer-logo {
    display: inline-block;
    text-align: center;
    padding: 1rem;
    min-width: 260px;
    margin-bottom: 1rem;
    margin-top: -6rem;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
}

.footer-logo span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-top: 0.25rem;
}

.footer-wrap .order-number {
    min-width: 260px;
}


.logo-title {
    position: relative;
    font-size: 1.5rem;
    color: #000;
    font-weight: 900;
    padding-left: 2.5rem;
}

.logo-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 24px;
    height: 44px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.349' height='44.299' viewBox='0 0 24.349 44.299'%3E%3Cpath d='M104.254,138.723a.563.563,0,0,1-.413.154.6.6,0,0,1-.484-.186.521.521,0,0,1-.124-.348.546.546,0,0,1,.012-.117,2.21,2.21,0,0,1,.077-.245c.013-.033.024-.068.037-.1a.643.643,0,0,1-.638.215.614.614,0,0,1-.52-.569c0-.02,0-.039,0-.057a1.222,1.222,0,0,1,.056-.393l-.023.018a1.711,1.711,0,0,0-.28.248,1.383,1.383,0,0,0-.146.219.527.527,0,0,1-.572.354.519.519,0,0,1-.357-.214.5.5,0,0,1-.087-.289.7.7,0,0,1,.032-.2,2.185,2.185,0,0,0,.1-.636c0-.041,0-.08-.008-.12a.86.86,0,0,1-.121.195.653.653,0,0,1-.618.194c-.247-.046-.7-.263-.972-1.191a2.917,2.917,0,0,1-.094-.43c0,.047-.005.094-.005.144s0,.1.005.156a6.457,6.457,0,0,0,.119.768,4.443,4.443,0,0,1,.109.81.818.818,0,0,1-.172.56.574.574,0,0,1-.559.163.48.48,0,0,1-.318-.3c0,.031,0,.062,0,.094a.553.553,0,0,0,0,.065v.037a.576.576,0,0,1-.337.553.635.635,0,0,1-.649-.09.567.567,0,0,1-.2-.448.887.887,0,0,1,.057-.3,2.185,2.185,0,0,1,.356-.56,2.236,2.236,0,0,0,.6-1.523c0-.039,0-.079,0-.121a2.662,2.662,0,0,0-.818-1.74l-.147-.17a1.265,1.265,0,0,1-.17-.264,2.652,2.652,0,0,0,.133.7,2.547,2.547,0,0,1,.137.75c0,.018,0,.035,0,.053a.847.847,0,0,1-.717.817.959.959,0,0,1-1.057-.5,1.135,1.135,0,0,1-.124-.521,1.336,1.336,0,0,1,.009-.144.766.766,0,0,0-.089.355,1.79,1.79,0,0,0,.266.782c.052.1.1.2.139.289a.617.617,0,0,1,.05.239.631.631,0,0,1-.4.573.83.83,0,0,1-1.06-.371,1.38,1.38,0,0,1-.185-.738,5.261,5.261,0,0,1,.139-1.005,6.394,6.394,0,0,0,.151-1.059c0-.035,0-.067,0-.1a2.969,2.969,0,0,0-.286-1.316,2.767,2.767,0,0,1,.02.337,3.785,3.785,0,0,1-.079.746,2.413,2.413,0,0,1-.709,1.206,2.22,2.22,0,0,0-.611.957,1.733,1.733,0,0,0-.061.431,1.45,1.45,0,0,0,.145.6,1.525,1.525,0,0,1,.152.622,1.427,1.427,0,0,1-.022.245.652.652,0,0,1-1.217.3,1,1,0,0,1-.154-.548,1.27,1.27,0,0,1,.1-.492,2.5,2.5,0,0,0,.18-.573,4.057,4.057,0,0,1-.358.567,5.591,5.591,0,0,0-.361.6c-.172.333-.324.691-.324.691a8.389,8.389,0,0,0-.1-1.027,1.729,1.729,0,0,0-.509-.8,2.072,2.072,0,0,1-.605-1.03,3.255,3.255,0,0,1-.066-.635c0-.043,0-.084,0-.126a2.593,2.593,0,0,0-.172.951v.084a5.307,5.307,0,0,0,.129.89,4.613,4.613,0,0,1,.117.855,1.184,1.184,0,0,1-.16.637.764.764,0,0,1-.471.363l-.015,0h-.015a.849.849,0,0,1-.783-.45.858.858,0,0,1-.052-.124,1.545,1.545,0,0,0,.163.5c.037.082.077.166.108.25a.663.663,0,0,1,.04.228.547.547,0,0,1-.1.322.643.643,0,0,1-.53.23.829.829,0,0,1-.638-.23.645.645,0,0,1-.185-.445c0-.022,0-.042,0-.062a2.031,2.031,0,0,1,.232-.666l.07-.143c-.066.063-.137.125-.219.192a3.271,3.271,0,0,0-.447.419c-.185.218-.231.432-.251,1.035a2.132,2.132,0,0,0,0,.373h0L87.17,149.4l6.7.3-6.63.552,1.032,12.365,5.232.346-5.164.477.175,2.085.057.691s0,.009,0,.02l.011.144,0,.051s.011.023.03.064a1.7,1.7,0,0,0,1.222,1.257,1.33,1.33,0,0,0,.49.1h4.1l.72,6.013h.158l.878-6.013h4.677a1.28,1.28,0,0,0,1.36-1.159l.631-8.468-6.914-.382,6.983-.541,1-13.425-8.5-.244,8.57-.653.223-3.008.1-1.268C104.3,138.708,104.263,138.716,104.254,138.723Z' transform='translate(-105.875 -113.921) rotate(-9)' fill='%23d20d1a'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.footer-title,
.footer-contact .logo-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.footer-contact .logo-title {
    padding-left: 1.5rem;
}

.footer-contact .logo-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 25.5px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.893' height='28.323' viewBox='0 0 14.893 28.323'%3E%3Cpath d='M97.085,136.267a.327.327,0,0,1-.248.1.331.331,0,0,1-.365-.343.374.374,0,0,1,.007-.075,1.488,1.488,0,0,1,.046-.157c.008-.021.015-.043.022-.065a.372.372,0,0,1-.383.138.386.386,0,0,1-.312-.365c0-.013,0-.025,0-.037a.835.835,0,0,1,.033-.252l-.014.011a1.053,1.053,0,0,0-.168.159.9.9,0,0,0-.088.141c-.056.109-.135.259-.344.227a.309.309,0,0,1-.214-.137.337.337,0,0,1-.052-.186.481.481,0,0,1,.019-.132,1.492,1.492,0,0,0,.061-.408c0-.026,0-.051,0-.077a.559.559,0,0,1-.073.125.377.377,0,0,1-.371.124c-.148-.03-.42-.169-.584-.765a1.984,1.984,0,0,1-.056-.276c0,.03,0,.061,0,.093s0,.066,0,.1a4.413,4.413,0,0,0,.071.493,3.038,3.038,0,0,1,.066.52.55.55,0,0,1-.1.36.331.331,0,0,1-.335.1.3.3,0,0,1-.191-.193c0,.02,0,.04,0,.06a.379.379,0,0,0,0,.042v.024a.373.373,0,0,1-.2.355.361.361,0,0,1-.39-.058.375.375,0,0,1-.122-.287.6.6,0,0,1,.034-.193,1.419,1.419,0,0,1,.214-.36,1.489,1.489,0,0,0,.358-.978c0-.025,0-.051,0-.078A1.757,1.757,0,0,0,92.9,132.9l-.088-.109a.822.822,0,0,1-.1-.169,1.808,1.808,0,0,0,.08.452,1.737,1.737,0,0,1,.082.481c0,.011,0,.023,0,.034a.533.533,0,0,1-.431.525.564.564,0,0,1-.635-.318.77.77,0,0,1-.075-.334.917.917,0,0,1,.005-.093.519.519,0,0,0-.053.228,1.2,1.2,0,0,0,.16.5c.031.064.061.125.084.186a.42.42,0,0,1,.03.154.405.405,0,0,1-.24.368.483.483,0,0,1-.636-.238.935.935,0,0,1-.111-.474,3.6,3.6,0,0,1,.084-.645,4.372,4.372,0,0,0,.09-.68c0-.022,0-.043,0-.065a2.017,2.017,0,0,0-.172-.845,1.9,1.9,0,0,1,.012.217,2.593,2.593,0,0,1-.047.479,1.574,1.574,0,0,1-.426.774,1.44,1.44,0,0,0-.367.615,1.185,1.185,0,0,0-.037.277.983.983,0,0,0,.087.383,1.034,1.034,0,0,1,.091.4.978.978,0,0,1-.013.157.427.427,0,0,1-.41.4.417.417,0,0,1-.321-.21.675.675,0,0,1-.093-.352.864.864,0,0,1,.062-.316,1.69,1.69,0,0,0,.108-.368,2.638,2.638,0,0,1-.215.364,3.643,3.643,0,0,0-.217.386c-.1.214-.195.443-.195.443a5.748,5.748,0,0,0-.062-.659,1.122,1.122,0,0,0-.306-.513,1.351,1.351,0,0,1-.363-.662,2.229,2.229,0,0,1-.04-.408c0-.027,0-.054,0-.081a1.767,1.767,0,0,0-.1.611v.054a3.629,3.629,0,0,0,.077.572,3.156,3.156,0,0,1,.07.549.8.8,0,0,1-.1.409.463.463,0,0,1-.283.233l-.009,0h-.009a.5.5,0,0,1-.47-.289.572.572,0,0,1-.031-.08,1.041,1.041,0,0,0,.1.324c.022.052.047.106.065.16a.452.452,0,0,1,.024.147.368.368,0,0,1-.061.207.377.377,0,0,1-.318.147.481.481,0,0,1-.383-.147.43.43,0,0,1-.111-.285c0-.014,0-.027,0-.04a1.365,1.365,0,0,1,.139-.427l.042-.092c-.04.04-.082.08-.132.123a2.025,2.025,0,0,0-.269.269c-.111.14-.138.277-.15.665a1.464,1.464,0,0,0,0,.239h0l.513,6.579,4.025.195-3.981.354.62,7.938,3.142.222-3.1.306.105,1.338.034.443s0,.006,0,.013l.007.092,0,.033.018.041a1.069,1.069,0,0,0,.734.807.754.754,0,0,0,.294.062h2.46l.433,3.86h.1l.527-3.86H95.05a.78.78,0,0,0,.816-.744l.379-5.437-4.152-.246,4.193-.348.6-8.619-5.105-.156L96.927,139l.134-1.931.058-.814S97.09,136.262,97.085,136.267Z' transform='translate(-105.875 -115.046) rotate(-9)' fill='%23fff'/%3E%3C/svg%3E") no-repeat left center;
}

.footermenu li {
    padding: 5px 0;
}

.footermenu li a,
.footer-contact__item p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.footer-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2F2F2F;
}

.footer .social a {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 1rem;
    margin-left: 0;
    padding: 0;
    transition: all 0s;
}

.footer .social a .icon {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    line-height: 1;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
}

.footer-contact__item {}

.footer-bottom {
    padding: 0.5rem 0;
    font-size: 16px;
}

.egegen {
    text-align: right;
}

.egegen a {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    bottom: 0;
    width: 4rem;
    height: 4rem;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
}

.egegen a img {
    width: 3rem;
    height: 3rem;
}
.x_kvkk{color:#D20D1A;}
.x_kvkk:hover{color:black;}

/* Kategoriler */


/* Home About */

.home-about {
    position: relative;
    padding: 4rem 0;
}


/*.home-about:before {*/
/*    left: -15%;*/
/*    width:376px;*/
/*    background: url(../img/bg_home_about1.png) no-repeat top center;*/
/*}*/

/*.home-about:after {*/
/*    right: -15%;*/
/*    width:450px;*/
/*    background: url(../img/bg_home_about2.png) no-repeat center center;*/
/*}*/

.home-about .container {
    position: relative;
    z-index: 9;
}

.about-box {
    position: relative;
    border: 6px solid #DBDBDB;
    border-radius: 20px;
    margin-right: 25px;
}

.about-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: -25px;
    width: 106px;
    height: 240px;
    background: url(../img/box_about.png) no-repeat right center;
}

.about-box__title {
    position: absolute;
    top: -21px;
    left: 1.5rem;
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    background-color: #fff;
}

.about-box__body {
    padding: 1.5rem 95px 1.5rem 2.5rem;
    font-size: 16px;
}

.abox {
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.abox-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex: 0 0 24px;
    width: 24px;
}
.abox-left__top {
    width: 24px;
    height: 36px;
    flex: 0 0 auto;
    background: url(../img/abox_left_top.png) no-repeat top left;
}
.abox-left__center {
    flex: 1 1 auto;
    background: url(../img/abox_left_center.png) repeat-y top left;
}
.abox-left__bottom {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    background: url(../img/abox_left_bottom.png) no-repeat bottom left;
}
.abox-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.abox-center__top {
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.abox-center__top-title {
        padding: 0.25rem 1rem;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: #D20D1A;
}
.abox-center__top-line {
    flex: 1 1 auto;
    background: url(../img/abox_center_top.png) repeat-x top left;
}
.abox-center__body {
    padding:1rem;
    flex: 1 1 auto;
}
.abox-center__bottom {
    flex: 1 1 auto;
    height:24px;
    background: url(../img/abox_center_bottom.png) repeat-x top left;
}
.abox-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex: 0 0 111px;
    width: 111px;
}
.abox-right__top {
    width: 111px;
    height: 36px;
    flex: 0 0 auto;
    background: url(../img/abox_right_top.png) no-repeat top right;
}
.abox-right__center {
    position: relative;
    flex: 1 1 auto;
    background: url(../img/abox_right_center.png) repeat-y top right;
}
.abox-right__center:before {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 111px;
    height: 245px;
    background: url(../img/abox_right_image.png) no-repeat left center;

}
.abox-right__bottom {
    width: 111px;
    height: 24px;
    flex: 0 0 auto;
    background: url(../img/abox_right_bottom.png) no-repeat bottom right;
}

.link-more {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding-right: 5.5rem;
}

.link-more:before,
.link-more:after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.link-more:before {
    width: 3rem;
    height: 1px;
    margin-right: 1rem;
    background-color: #000;
    transition: all 0.3s;
}

.link-more:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #000000;
}

.link-more:hover {
    color: #000;
    padding-right: 6.5rem;
}

.home-certificate {
    text-align: center;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
    margin-bottom: 1rem;
}

.card-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
}

.card-image img {
    border-radius: 12px;
    width: 100%;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    color: #343434;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 0;
}

.card-text {
    padding-top: 0.75rem;
    margin-bottom: 0;
}

.home-feature {
    margin-top: 3rem;
}

.home-feature .card-title {
    display: -webkit-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.home-feature .card-title svg {
    margin-right: 1rem;
}


/* Home Parallax */

.home-parallax {
    position: relative;
    margin-bottom: 4rem;
    overflow:hidden;
}

.home-parallax .parallax-video {
    height: 540px;
}

.home-parallax .parallax-video img {
    width: 150%;
    height: 150%;
    object-fit: cover;
}

.home-parallax__body {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 5rem 0;
}

.home-parallax__body p {
    max-width: 460px;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-item {
    position: relative;
    margin-bottom: 4rem;
}

.feature-item img {
    width: 100%;
    border-radius: 20px;
}

.feature-item__body {
    position: absolute;
    right: 1rem;
    bottom: 0;
    min-width: 15rem;
    padding: 1rem 1.25rem;
    margin-bottom: -1rem;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
}

.feature-item__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.home-franchise {
    padding-bottom: 3rem;
}

.home-franchise__body {
    position: relative;
}

.home-franchise img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
}

.home-franchise__content {
    position: absolute;
    right: 2rem;
    top: 50%;
    max-width: 420px;
    transform: translateY(-50%);
}

.home-franchise__subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #D20D1A;
    margin-bottom: 0.5rem;
}

.home-franchise__title {
    font-size: 2rem;
    color: #242424;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.link-basvuru-popup {
    position: fixed;
    top: 25%;
    z-index: 999;
    right: -6px;
    padding: 0.5rem;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
    background-color: #D20D1A;
    border-radius: 6px;
    max-width: 90px;
}

.link-basvuru-popup span {
    display: block;
    margin-bottom: 0.5rem;
}

.link-basvuru-popup:hover {
    color: #fff;
    background-color: #D20D1A;
}



.modal-gray {
    background-color: #ddd;
}

.career-box {
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
    margin-bottom: 1.5rem;
}

.career-title {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #D20D1A;
}

.career-temp {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px dotted #CCCCCC;
}

.franchise-contact .contact {
    background-image: none;
}

.franchise-contact .contact-col {
    max-width: 100%;
}


/* Page Cookie */

.page-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: #000000;
    opacity: .9;
}

.page-cookie .grid-center {
    padding: 8px 15px;
}

.page-cookie .cookie-text {
    font-size: 12px;
    letter-spacing: .5px;
    color: #fff;
    margin-bottom: 0;
    padding-right: 40px;
}

.page-cookie .cookie-text a {
    color: #fff;
    font-weight: bold;
}

.page-cookie .btn {
    border-radius: 0;
    padding: 8px 2rem;
}

.bread {
    position: relative;
    color: #ffffff;
    padding: 3rem 0;
    background: url(../img/bg_bread.jpg) no-repeat center center;
}

.bread-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.bread-body {
    position: relative;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item,
.breadcrumb-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 0.375rem 0 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    margin-right: 0.375rem;
    color: #fff;
    content: "|";
}

.breadcrumb-item a {
    padding: 0;
}

.tabmenu {
    padding: 1.5rem 0;
}

.tabmenu .tab-link {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    font-size:16px;
        padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.tabmenu .tab-link span {
    margin-left: 0.5rem;
}

.iconbox {
    position: relative;
    display: inline-block;
    width: 124px;
    height: 124px;
    color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
}

.iconbox img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.stages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 0 -1rem 1.5rem -1rem;
}

.stage {
    position: relative;
    padding: 1rem;
    width: 100%;
    max-width: 50%;
}

.stage-icon {
    text-align: center;
    position: relative;
}

.stage-number {
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    color: #fff;
    background-color: #212225;
    border-radius: 50%;
}

.stage-after {
    text-align: center;
}

.stage-after .iconbox {
    margin-left: auto;
    margin-right: auto;
}

.stage-after .shadow-box p {
    line-height: 27px;
    text-align: left;
    margin-bottom: 0;
}

.box-facility {
    background: #fff url(../img/bg_neden-sait-doner.png) no-repeat right center;
    background-size: auto 100%;
    border-radius: 16px;
}

.box-who-sait {
    position: relative;
    padding: 2rem 0;
    background: url(../img/neden-sait.jpg) no-repeat right center;
    background-size: 50% auto;
}

.who-sait__image {
    display: none;
}

.video-box {
    position: relative;
}

.video-box a {
    display: block;
    border-radius: 16px;
}

.video-box a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0.5;
}

.video-box__image {
    border-radius: 16px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
}

.video-box__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    pointer-events: none;
}

.video-box__icon {
    margin-bottom: 1rem;
}

.video-box__text {
    font-weight: bold;
}

.brand-item {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
}



.gallery a {}

.gallery a img {
    border-radius: 16px;
    width: 100%;
}

.gallery .swiper-container {
    padding-bottom: 2.5rem;
}

.gallery .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0;
}

.product {
    padding: 1rem;
    margin: 2rem 0;
    padding-left: 35%;
    position: relative;
    background-color: #fff;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
}

.product-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 45%;
}

.product-body {}

.progress-item {
    margin-bottom: 0.75rem;
}

.progress-label {
    font-weight: bold;
    color: #000;
    font-size: 20px;
}

.progress-label strong {
    font-weight: 900;
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 12px;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #D8D8D8;
    border-radius: 14px;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width 1s linear;
    border-radius: 14px;
    width: 0;
    position: relative;
}

.progress-bar.active {
    transition: width 1s linear;
}

.product-stage .card-body {
    position: relative;
    text-align: center;
    padding-top: 2rem;
}

.product-stage .stage-number {
    left: 50%;
    transform: translateX(-50%) translateY(0);
    top: 0;
    margin-top: -21px;
}

.form-contact .input {
    background-color: #FAFAFA;
}

.contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 1rem;
    background: #fff url(../img/bg_contact.png) no-repeat center center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.16);
    margin-bottom: 1rem;
}

.contact-title {
    width: 100%;
}

.contact-col {
    width: 100%;
    font-size: 16px;
}

.contact-col p {
    margin-bottom: 0.5rem;
}

.contact-number p {
    position: relative;
    padding-left: 75px;
}

.contact-number p strong {
    position: absolute;
    left: 0;
}

.btn-view-map {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    padding-left: 1.5rem;
    color: #000000;
}

.btn-view-map::before {
    content: "";
    position: absolute;
    left: 0;
    width: 11px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.256' height='13.1' viewBox='0 0 10.256 13.1'%3E%3Cpath d='M22.551,5.267a5.119,5.119,0,0,0-6.871-2.276A5.187,5.187,0,0,0,13.4,9.861,53.179,53.179,0,0,0,17.46,15.3a.663.663,0,0,0,1.035,0,60.4,60.4,0,0,0,4.07-5.436A4.881,4.881,0,0,0,22.551,5.267Zm-4.567,4.98a2.663,2.663,0,1,1,2.663-2.663A2.664,2.664,0,0,1,17.985,10.247Z' transform='translate(-12.877 -2.445)'/%3E%3C/svg%3E") no-repeat center center;
}

.btn-view-map:hover {
    color: #000;
}

.parallax {
    background-color: rgba(0, 0, 0, .65);
    position: relative;
    transition: background-color 300ms ease;
    width: 100%;
    overflow: hidden;
}

.parallax-item {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.parallax-video video {
    position: absolute;
    left: 50%;
    top: -5%;
    transform: translate(-50%, 0);
    backface-visibility: hidden;
    background-size: cover;
    bottom: 0;
    width: auto;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    perspective: 1000;
    z-index: -1;
    object-fit: cover;
}


.certificate-block {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.timeline-slider {
    position: relative;
}

.timeline-slider:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 110px;
    width: 100%;
    height: 18px;
    background: url(../img/bg_lines.png) repeat-x top left;
}

.timeline-wrapper .swiper-container {
    z-index: inherit;
}

.timeline-card {
    color: #000;
}

.timeline-card_image {
    padding-bottom: 3rem;
    position: relative;
    margin-bottom: 1rem;
}

.timeline-card_image:after {
    content: "";
    width: 2px;
    height: 2.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #000;
}
.timeline-card_image img {
    object-fit: cover;
}

.timeline-card_body {}

.timeline-card_date {
    font-size:1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-card_info {
    font-size: 0.875rem;
    line-height: 1.3;
}


.timeline-slider .swiper-container {
    z-index: inherit;
}

.timeline-slider .swiper-slide {
    width: 50%;
}

.timeline-slider .btn-swiper {
    color: #000;
}

.side-shadow {
    position: relative;
}
.side-shadow:before, .side-shadow:after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 9;
}
.side-shadow:before {
    left: 0;
    background: -webkit-linear-gradient(left, rgba(128, 128, 128, .4) 0%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to right, rgba(128, 128, 128, .4) 0%, rgba(125, 185, 232, 0) 100%);
}
.side-shadow:after {
    right: 0;
    background: -webkit-linear-gradient(left, rgba(125, 185, 232, 0) 0%, rgba(128, 128, 128, .4) 100%);
    background: linear-gradient(to right, rgba(125, 185, 232, 0) 0%, rgba(128, 128, 128, .4) 100%);
}

.js-application {cursor: pointer;}


.shadow-box__number {
        position: absolute;
    left: 0;
    top: 0;
    padding: 6px 9px;
    color: #fff;
    line-height: 1;
    font-weight: bold;
    font-size: 75%;
    background-color: #d20c19;
    border-bottom-right-radius: 0.5rem;
}

.intro {
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    color: #fff;
    font-family: 'PD';
}
.intro-wrap {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.intro-logo__gida {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 30%;
    z-index:9;
    transition: all 0.3s;
}
.intro-col {
    position:relative;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    width:100%;
    width:50vw;
    background-color: #000;
    transition: all 0.3s;

    
}
.intro-col__image {
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    transition: all 0.3s;
}
.intro-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width:100%;
    max-width: 60%;
    text-align: center;
    color: #fff;
}
.intro-logo {
    display:block;
    margin-bottom:2rem;
}
.intro-logo__img {}

.intro-col_description {
    font-size:20px;
    margin-bottom: 2rem;
}

.btn-intro {
    font-weight: normal;
    border-radius: 1.5rem;
    width: 60%;
    position: relative;
}

.btn-intro svg {
    margin-left:1rem;
}


.intro-footer {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.intro-footer__col {
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    width:100%;
    max-width:20%;
    color: #fff;
    background-color: #e30613;
        padding: 0.5rem 0.75rem;
    font-size: 12px;
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.intro-footer__col:last-child {
    color: #000;
    background-color: #fff;
    text-align:center;
    font-size:16px;
    line-height: 1.2;
}
.intro-footer__title {
    color: #fff;
    margin-bottom:0.25rem;
    font-weight: normal;
    text-transform: uppercase;
}
.intro-footer__col a {
    font-size:26px;
}

.intro-doner .intro-col__image {
    background-image:url(../img/sait_doner_image.jpg);
    opacity: 0.2;
}
.intro-iskender .intro-col__image {
    background-image:url(../img/sait_iskender_image.jpg);
    opacity: 0.45;
}
.intro-doner .intro-body {
    left:35%;
}
.intro-iskender .intro-body {
    left:65%;
}



.intro-doner:hover .intro-col__image {
    opacity: 0.65;
}
.intro-iskender:hover .intro-col__image {
    opacity: 1;
}

/*
.intro-col:hover {
        width: 70vw;
    transition: all 0.3s;
}
.intro-col:hover + .intro-col + .intro-logo__gida {
        left: calc(70vw - 11.5%);
}
.intro-col:hover + .intro-logo__gida {
        left: calc(70vw - 28.5%);
}
*/

.block-title__bottom {
    font-size: 22px;
    position: relative;
    padding-bottom: 0.5rem;
}
.block-title__bottom:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 94px;
    height: 1px;
    margin-left: -47px;
    border-top: 2px solid #D20D1A;
}




.menu-box {
    position: relative;
    text-align:center;
}
.menu-box__item {
    padding:1rem 0;
}
.menu-box__item-list {
    display: inline-flex;
    flex-wrap:wrap;
    -webkit-justify-content: center;
    justify-content: center;
}
.menu-box__item-list li {
    padding: 0.25rem 1rem;
    line-height: 1;
}
.menu-box__item-list:not(.item-last) li + li{
    border-left: 1px solid #000;
}

.menu-box__logo {
        position: absolute;
    top: -74px;
    right: -74px;
}

.menu-box__item-list.item-last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}


/*  CROSS BROWSER
====================================*/


/*Internet Explorer */

.ie_11 .quickview,
.msie .quickview {
    width: 100%;
    max-width: 1140px;
}

.ie_11 .figure-img {
    overflow: visible;
}


/* IE-10 */

.msie .pd-bttns .btn {
    padding-left: 15px;
}


/* Safari */

.safari .form-control,
.safari .btn {
    line-height: normal;
}


/*  MEDIA QUERY
====================================*/

@media(max-width:1199px) {
    .home-about:before,
    .home-about:after {
        display: none;
    }
}

@media(max-width:991px) {
    .header-top {
        padding: 0.5rem 0;
    }
    .header-top .topmenu,
    .slide1 .slider-arrow {
        display: none;
    }
    .header-top .social {
        border-left: 0;
    }
    .header .menu {
        overflow-y: auto;
        width: 360px;
        height: 100vh;
        position: fixed;
        top: 0;
        padding: 36px 1rem 1rem 1rem;
        background-color: #000000;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        right: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 8000;
        box-shadow: 0 0 15px rgba(0, 0, 0, .5);
        transition: -webkit-transform .3s cubic-bezier(.77, 0, .175, 1);
        transition: transform .3s cubic-bezier(.77, 0, .175, 1);
        transition: transform .5s cubic-bezier(.77, 0, .175, 1), -webkit-transform .5s cubic-bezier(.77, 0, .175, 1);
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        text-align: center;
    }
    .menu--open .header .menu {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        display: block;
    }
    .menu-list,
    .topmenu {
        display: -webkit-box;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        align-items: flex-start;
        width: 100%;
    }
    .menu-list li,
    .topmenu li {
        width: 100%;
        text-align: left;
        padding: 0;
    }
    .menu-link,
    .topmenu li a {
        color: #fff;
        padding: 0.75rem 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        display: block;
        text-align: left;
    }
    .topmenu {
        margin-bottom: 1.5rem;
    }
    .topmenu li a {
        font-size: 16px;
    }
    .slide1 .slider-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .slide1 .slider-btn {
        margin-left: 1.5rem
    }
    .slide1 .slider-btn svg {
        width: 64px;
        height: 68px;
    }
    .footer {
        margin-top: 4rem;
    }
    .footer-logo {
        margin-top: -4rem;
    }
    .about-box {
        margin-bottom: 1.5rem;
    }
    .home-about {
        padding-bottom: 1.5rem;
    }
    .home-franchise {
        padding-bottom: 0;
    }
    .timeline-slider:before {
        bottom:130px;
    }
}

@media(max-width:767px) {
    .footer-col2,
    .logo-title::before {
        display: none;
    }
    html,
    body {
        overflow-x: hidden;
        font-size: 16px;
    }
    .header {
        padding: 0.5rem 0;
    }
    .footer {
        text-align: center;
    }
    .main-slider .swiper-slide {
        height: 300px;
    }
    .main-slider .swiper-slide>.swiper-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slide1 .slider-body {
        background-color: rgba(210, 13, 26, 0.26);
    }
    .block-title,
    .home-franchise__title {
        font-size: 1.25rem;
    }
    .card-title,
    .home-parallax__body p,
    .feature-item__title,
    .acc-link {
        font-size: 18px;
    }
    .home-parallax__video {
        height: 450px;
    }
    .home-franchise__subtitle,
    .acc-content {
        font-size: 14px;
    }
    .home-franchise__body {
        height: 220px;
        text-align: right;
    }
    .home-franchise__content {
        max-width: 70%;
    }
    .home-franchise img {
        height: 100%;
        object-fit: cover;
    }
    .footer-wrap {
        margin-bottom: 1.5rem;
    }
    .footer .social {
        justify-content: center;
    }
    .footermenu li a,
    .footer-contact__item p {
        font-size: 13px;
    }
    .logo-title {
        font-size: 16px;
        padding-left: 0;
        margin-bottom: 0.5rem;
    }
    .tabmenu .btn-toggle {
        text-transform: uppercase;
    }
    .tabmenu .tab {
        flex-direction: column;
        width: 100%;
    }
    .tabmenu .tab-link {
        padding: 0.75rem 1rem;
    }
    .who-sait__image {
        display: block;
        margin-bottom: 1rem;
    }
    .box-who-sait {
        background-image: none;
        padding: 0;
    }
    .box-facility {
        background-image: none !important;
    }
    .contact .btn-view-map {
        margin-bottom: 1rem;
    }
    .italic-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .intro {
        height:auto;
    }

    .intro-wrap,
    .intro-footer {
        -webkit-flex-wrap:wrap;
        flex-wrap:wrap;
    }
    .intro-col {
        width:100%;
        height: 47.5vh;
    }
    .intro-logo {
        max-width: 70%;
        margin: 0 auto 0.5rem auto;
    }
    .intro-col_description {
        font-size:16px;
        margin-bottom:1rem;
    }

    .intro-footer__col {
    max-width: 50%;
    border-top:1px solid rgba(255,255,255,0.5);
    }
    
    .intro-footer__col:nth-child(1),
    .intro-footer__col:nth-child(2) {
        border-top:0;
    }
    .intro-footer__col:nth-child(2n) {
        border-left:1px solid rgba(255,255,255,0.5);
    }
    .intro-footer__col:last-child {
        font-size:14px;
    }
    .intro-footer__col a {
        font-size: 18px;
    }

    .btn-intro {
        padding: 6px 1.5rem;
    }

    .intro-logo__gida {
        max-width:45%;
        top: calc( 50% + 0.675vh);
    }


    .intro-doner .intro-body,
    .intro-iskender .intro-body {
        left:50%;
        max-width:80%;
    }
    .intro-doner .intro-body {
        top: 37.5%;
    }
    .intro-iskender .intro-body {
        top: 55%;
    }
    .abox-center__body {
        padding: 0.5rem 0 0 0;
    }

    .menu-box__item-list li {
        font-size:14px;
    }

}

@media(max-width:567px) {
    .side-shadow {
        position: initial;
    }
    .header .menu {
        width: 100%;
    }
    .about-box__body {
        padding-left: 1rem;
        padding-right: 2rem;
        position: relative;
        z-index: 2;
    }
    .home-parallax__body {
        padding: 1.5rem;
    }
    .home-parallax__body p {
        font-size: 14px;
    }
    .home-parallax__video {
        height: 380px;
    }
    .timeline-slider:before {
        bottom:9rem;
    }
}

@media(max-width:359px) {}

@media(min-width:568px) {}

@media(min-width:568px) and (max-width:767px) {}

@media(min-width:768px) {
    .stage {
        max-width: 33.33333%;
    }
    .tabmenu .collapse {
        display: flex;
    }
    .contact-col {
        max-width: 40%;
    }
    .contact-number {
        margin-left: auto;
    }
    .timeline-slider .swiper-slide {
        width: 35%;
    }
    .intro-footer__col:nth-child(2) {
        max-width:13%;
    }
    .intro-footer__col:nth-child(3) {
        max-width:15%;
    }
    .btn-intro svg {
        position: absolute;
        right: 2rem;
    }
    .intro-footer__col + .intro-footer__col {
        border-left: 1px solid rgba(255,255,255,0.5);
    }
}

@media(min-width:568px) and (max-width:991px) {}

@media(min-width:768px) and (max-width:991px) {
    .footer .social {
        margin-top: 1rem;
    }
    .intro-col_description {
        font-size:14px;
    }
    .btn-intro {
        width:100%;
    }
    .intro-footer__col {
        font-size:10px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .intro-footer__title,
    .intro-footer__col:last-child {
        font-size:13px;
    }
    .intro-footer__col a {
    font-size: 17px;
    }
    .tabmenu .tab-link span {
		margin-left: 0.5rem;
		line-height: normal;
        font-size: x-small;
	}
}

@media(min-width:992px) {
    .btn-toggler,
    .bg-navbar {
        display: none;
    }
    .slide1 .slider-body {
        padding: 3rem 2rem;
    }
    .footer-wrap {
        order: 2;
    }
    .footer-col2 {
        order: 1;
    }
    .footer-col3 {
        order: 3;
    }
    .footer-logo,
    .modal-body,
    .panel-body {
        padding: 1.5rem;
    }
    .footer-contact .col-6 {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%
    }
    .footer-contact {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .menu {
        display: -webkit-box;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }
    .tabmenu {
        padding: 2.5rem 0;
    }
    .stage {
        position: relative;
        max-width: 25%;
    }
    .stage-icon .iconbox::before {
        content: "";
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        width: calc(100% + 2rem);
        height: 1px;
        margin-left: 1rem;
        border-bottom: 1px dashed #707070;
    }
    .stage:nth-child(4n):before {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translate(-50%, 0);
        border-left: 1px dashed #707070;
        border-bottom: 0;
        margin-left: 0;
        width: 1px;
        height: 5rem;
        margin-top: -3rem;
    }
    .stage:nth-child(4) .stage-icon .iconbox::before,
    .stage:nth-child(5) .stage-icon .iconbox::before,
    .stage:last-child .stage-icon .iconbox::before,
    .stage:last-child:before {
        display: none;
    }
    .stage:nth-child(1) {
        -webkit-flex-grow: 1;
        -ms-flex: 1;
        order: 1;
    }
    .stage:nth-child(2) {
        -webkit-flex-grow: 2;
        -ms-flex: 2;
        order: 2;
    }
    .stage:nth-child(3) {
        -webkit-flex-grow: 3;
        -ms-flex: 3;
        order: 3;
    }
    .stage:nth-child(4) {
        -webkit-flex-grow: 4;
        -ms-flex: 4;
        order: 4;
    }
    .stage:nth-child(5) {
        -webkit-flex-grow: 8;
        -ms-flex: 8;
        order: 8;
    }
    .stage:nth-child(6) {
        -webkit-flex-grow: 7;
        -ms-flex: 7;
        order: 7;
    }
    .stage:nth-child(7) {
        -webkit-flex-grow: 6;
        -ms-flex: 6;
        order: 6;
    }
    .stage:nth-child(8) {
        -webkit-flex-grow: 5;
        -ms-flex: 5;
        order: 5;
    }
    .stage:nth-child(9) {
        -webkit-flex-grow: 9;
        -ms-flex: 9;
        order: 9;
    }
    .stage:nth-child(10) {
        -webkit-flex-grow: 10;
        -ms-flex: 10;
        order: 10;
    }
    .tabmenu .btn-toggle {
        display: none;
    }
    .box-facility {
        padding: 3.5rem 3rem;
    }
    .brand-list {
        padding-left: 1.5rem;
        padding-top: 52px;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .menu-link {
        font-size: 18px;
    }
    .menu-list li {
        padding: 0 .75rem;
    }
    .order-number {
        font-size: 1rem;
    }

    

}

@media(min-width:1200px) {
    
    .menu-link {
        padding: 1.5rem 0;
    }
    .tabmenu {
        padding-bottom: 3rem;
    }
    .stages {
        margin-left: -2rem;
        margin-right: -2rem;
    }
    .stage {
        padding: 3rem 2rem;
    }
    .stage:nth-child(1),
    .stage:nth-child(2),
    .stage:nth-child(3),
    .stage:nth-child(4) {
        padding-top: 0;
    }

    .timeline-slider .swiper-slide {
        width: 25%;
    }
    .menu-box__item {
        padding:1.5rem 0;
    }
}

@media(min-width:1600px) {}

@media(min-width:1200px) and (max-width:1899px) {}

@media(min-width:1900px) {
    .home-about:before {
        left: -5%;
    }

    .home-about:after {
        right: -10%;
    }
    .intro-footer__col {
        font-size:16px;
    }
    
}

@media(min-width:2100px) {}

@media(min-width:2500px) {}

 ::selection {
    color: #ffffff;
    background-color: #624FAE;
}

 ::-moz-selection {
    color: #ffffff;
    background-color: #624FAE;
}

 ::-webkit-scrollbar-track {
    background-color: #eeeeee;
}

 ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

 ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #624FAE;
    border-radius: 0;
}