html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
:focus {	outline: 0;}
ins {	text-decoration: none;}
del {	text-decoration: line-through;}
table { border-collapse: collapse; border-spacing: 0; }
ul, li { float:left; display:inline; }
h1, h2, h3, h4, h5 { font-weight:normal; }
i, em { font-style:normal; }
button, select { border:none; margin:0; padding:0; background:transparent; }
figure { margin:0; padding:0; }
* { box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; }

/*	Finish RESET	*/

html::-webkit-scrollbar { width:10px; }
html::-webkit-scrollbar-track { background:#666; }
html::-webkit-scrollbar-thumb { background-color: #FFF; border:3px solid #666; }
html { scrollbar-color:#FFF #666; scrollbar-width:thin; }

body { margin:0; color:#444; font-size:13px; font-family:Euclid Circular A, Arial; line-height:20px; -webkit-text-size-adjust:100%; text-size-adjust:100%; -webkit-text-size-adjust:100%; }

*::-moz-selection { background:rgba(0, 0, 0, 0.1); }
*::selection { background:rgba(0, 0, 0, 0.1); }

a { color:#011F30; text-decoration:none;  }
a:hover { color:#00D7E8; text-decoration:none; }

:root {
    --input-background-color: #FFF;
    --input-border-color: #bfbfbf;
    --input-border-color-inline: #FFF;
    --input-border-color-checked: #00A678;
    --input-background-color-checked: #00D7E8;
    --input-border-color-inline-checked: #00D7E8;
    --input-border-color-disabled: #bfbfbf;
    --input-background-color-disabled: #efefef;
    --input-border-color-inline-disabled: #bfbfbf;
    --input-border-color-hover: #00D7E8;
    --input-background-color-hover: #FFF;
    --input-border-color-inline-hover: #bfbfbf;
    --input-border-color-focus: #00A678;
}

/* Reset Css */
input, select, textarea, input[type='checkbox'], input[type='radio'] { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; }
input:focus, select:focus, textarea:focus, input[type='checkbox']:focus, input[type='radio']:focus { outline:0; }
input[type='submit'], button { border:none; position:relative; -webkit-appearance:none; margin:0px; padding:0px; outline:0; }

/* Customization checkbox & radio */
input[type='checkbox'], input[type='radio'] { width:18px; height:18px; line-height:18px; min-width:1px !important; margin:1px 10px -1px 0; padding:0; }
input[type='checkbox']::before, input[type='radio']::before { display:block; position:absolute; content:""; width:calc(100% - 2px); height:calc(100% - 2px); background-color:var(--input-background-color); transition:background-color 500ms, border-color 500ms; }
input[type='checkbox']::after, input[type='radio']::after { display:block; position:absolute; content:""; -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg); transition:background-color 500ms, border-color 250ms; }

/* Customization checbox */
input[type='checkbox']::before { border-radius:4px; border:solid 1px; border-color:var(--input-border-color); }
input[type='checkbox']::after { border:solid; border-color:var(--input-border-color-inline); border-width:0 2px 2px 0; width:5px; height:10px; left:7px; bottom:5px; }
input[type='checkbox']:not(:checked)::before { border-color:var(--input-border-color); }
input[type='checkbox']:not(:checked)::after { border-color:var(--input-border-color-inline); }
input[type='checkbox']:checked:not(:disabled)::before { border-color:var(--input-border-color-checked); background-color:var(--input-background-color-checked); }
input[type='checkbox']:read-only::before, input[type='checkbox']:-moz-read-only::before { border-color:var(--input-border-color-inline-checked); }
input[type='checkbox']:disabled::before { border-color:var(--input-border-color-disabled); background-color:var(--input-background-color-disabled); }
input[type='checkbox']:disabled::after { border-color:var(--input-border-color-inline-disabled); }
input[type='checkbox']:checked:not(:disabled):focus::before, input[type='checkbox']:not(:checked):not(:disabled):focus::before { border-color:var(--input-border-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color:var(--input-background-color-hover); }
input[type='checkbox']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--input-border-color-inline-hover); }

/* Customization radio */
input[type='radio']::before { border-radius: 50%; border: solid 1px; }
input[type='radio']::after { border: solid; border-color: var(--input-border-color-inline-checked); border-width: 5px; border-radius: 50%; width: 0px; height:0px; left:4px; bottom:4px; }
input[type='radio']:not(:checked)::before { border-color:var(--input-border-color); }
input[type='radio']:not(:checked)::after { border-color:var(--input-border-color-inline); }
input[type='radio']:checked:not(:disabled)::before { border-color: var(--input-border-color-checked); background-color: var(--input-background-color); }
input[type='radio']:read-only::before, input[type='checkbox']:-moz-read-only::before { border-color:var(--input-border-color-inline-checked); }
input[type='radio']:disabled::before {}
input[type='radio']:disabled::after { border-color:var(--input-border-color-inline-disabled); }
input[type='radio']:checked:not(:disabled):focus::before, input[type='radio']:not(:checked):not(:disabled):focus::before { border-color:var(--input-border-color-hover); }
input[type='radio']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color: var(--input-background-color); }
input[type='radio']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--input-border-color-inline-hover); }

input, textarea, select { float:left; font-size:15px; font-family:Euclid Circular A, Arial; border-radius:0; border:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:Euclid Circular A, Arial; font-size:15px; font-weight:500; letter-spacing:1px; }

.input { width:100%; height:50px; padding:0 16px; border:0; border-bottom:2px solid rgba(0,0,0,0.1); transition:ease 0.3s; background-color:transparent; border-radius:0; }
.select { background:url(../images/arrow-select.png) no-repeat right center; background-size:auto 5px; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.input:focus , .select:focus { border-bottom-color:#00D7E8; }

textarea.input { padding-top:13px !important; padding-bottom:13px !important; }

.button { float:none; height:50px; display:inline-block; padding:0 45px 0 30px; cursor:pointer; position:relative; color:#FFF; background-color:#FC273F; transition:all 0.25s; border-radius:25px; overflow:hidden; }
.button:hover { background-color:#1892AC; }
.button::before { content:""; position:absolute; top:0; bottom:0; right:-40%; left:50%; background-image:linear-gradient(0deg,rgba(255, 255, 255, 0.0),#FFF); transform:skew(-40deg); opacity:0.1; transition:all 0.25s; }
.button:hover::before { left:30%; opacity:0.15; }
.button::after { content:""; position:absolute; top:0; bottom:0; right:15px; width:20px; background:url(../images/arrow-white-right.png) no-repeat right center / 20px 14px; transition:all 0.25s; }
.button:hover::after { right:10px; }

a.button { color:#FFF; font-weight:600; font-size:14px; line-height:50px; }

.sansiro-bayilik { float:left; width:100%; padding-top:90px; position:relative; }
.sansiro-inner { float:left; width:100%; position:relative; background-color:#FFF; }
.outer { margin:0 auto; width:100%; max-width:1720px; min-height:10px; position:relative; }
.wrap , .wrap-slim { margin:0 auto; width:1440px; min-height:10px; position:relative; }
.wrap-slim { width:100%; max-width:920px; }

.tac { text-align:center; }

.fl { float:left !important; }
.fr { float:right !important; }
.fn { float:none !important; }

.w100 { float:left; width:100% !important; }
.w50 { float:left; width:50%; }
.w25 { float:left; width:25%; }
.mt30 { margin-top:30px; }
.mt20 { margin-top:20px; }

/*	Start TOP	*/

.header { position:fixed; top:0; left:0; right:0; padding:20px 0; z-index:8000; transition:all 0.7s; }
.nav-up , .nav-down { padding:20px 0; background-color:rgba(255,255,255,0.9); backdrop-filter:blur(13px); box-shadow:0 0 20px rgba(0,0,0,0.07); }

#logo { float:left; position:relative; margin:-5px 0; }
#logo a { float:left; }
#logo img { float:left; height:60px; transition:all 0.7s; }
#logo img:hover { opacity:0.7; }

.header-franchise { float:left; padding-left:40px; margin-left:40px; margin-top:10px; font-size:23px; font-weight:500; color:#1892AC; line-height:30px; border-left:2px solid rgba(0,0,0,0.1); }

.header-links , .header-lang { float:right; position:relative; z-index:100; text-align:center; }
.header-links a { float:right; padding:0 24px; margin-left:20px; position:relative; font-weight:500; font-size:14px; color:#FC273F; line-height:48px; border:1px solid #FC273F; transition:all 0.4s; border-radius:25px; }
.header-links a img { float:right; height:48px; padding:16px 0; margin:0 -5px 0 10px; transition:all 0.25s; }
.header-links a:last-child img { padding:17px 0; }
.header-links a:hover img { margin:0 -10px 0 15px; }

.header-lang { margin-right:10px; margin-top:5px; }
.header-lang li { margin-right:10px; }
.header-lang li:last-child { margin-right:0; }
.header-lang li a { float:left; width:32px; font-size:12px; font-weight:500; color:#1892AC; line-height:40px; opacity:0.6; transition:all 0.25s; }
.header-lang li a:hover , .header-lang li a.active { box-shadow:inset 0 -2px 0 #1892AC; opacity:1; }

#nav-wrap { position:fixed; top:0; bottom:0; left:0; right:0; z-index:7999; display:none; background-color:#000; }

.nav-cover { position:fixed; top:90px; bottom:0; left:0; right:50%; z-index:90; background-size:cover; background-position:center; background-repeat:no-repeat; }

.nav-inner { position:fixed; top:90px; bottom:0; left:50%; right:0; z-index:100; padding:50px 120px; overflow:hidden; overflow-y:auto; background-color:#171717; }

#nav ul { width:100%; position:relative; z-index:100; }
#nav li { width:100%; position:relative; }
#nav li:hover { z-index:10; }

#nav li.nav-multi::after { content:""; position:absolute; top:0; right:0; width:20px; height:50px; background:url(../images/arrow-white-down.png) no-repeat right 50% / 14px 6px; }

#nav li > a { float:left; width:100%; height:50px; position:relative; color:#636672; font-size:23px; font-weight:500; letter-spacing:2px; color:#FFF; text-transform:uppercase; line-height:50px; position:relative; transition:all 0.3s; z-index:10; overflow:hidden; }
#nav li > a:hover , #nav li > a.active { color:#1892AC; }

#nav li > a i { display:block; transition:all 0.4s; }
#nav li > a:hover i { margin-top:-50px; opacity:0; }
#nav li > a section { display:block; opacity:0; transition:all 0.4s; }
#nav li > a:hover section { opacity:1; }

#nav > ul li span { display:none; float:left; width:100%; padding:20px 30px; margin:5px 0 20px 0; position:relative; background-color:#F7F7F8; }
#nav > ul li span::before {
    content:"";
    border-bottom:4px solid transparent;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    height:0;
    position: absolute;
    width:0;
    left:30px;
    top:-4px;
    border-bottom-color:#F7F7F8;
}
#nav > ul li span a { float:left; width:50%; padding:5px 0 5px 5px; position:relative; font-size:17px; letter-spacing:1px; }
#nav > ul li span a::before { content:""; position:absolute; top:50%; left:-3px; width:4px; height:4px; margin-top:-2px; background-color:#1892AC; border-radius:50%; opacity:0; transition:all 0.2s; }
#nav > ul li span a:hover::before { left:-9px; opacity:1; }

.nav-social { float:left; width:100%; padding-top:41px; margin-top:30px; position:relative; border-top:1px solid rgba(255,255,255,0.06); }
.nav-social h5 { float:left; width:100%; padding-bottom:24px; position:relative; color:#999; font-size:13px; letter-spacing:2px; }
.nav-social ul { width:100%; }
.nav-social li { padding-right:20px; }
.nav-social li:last-child { padding-right:0; }
.nav-social li a { float:left; background-color:#FFF; border-radius:50%; transition:all 0.25s; }
.nav-social li a:hover { background-color:#1892AC; }
.nav-social li a img { float:left; height:50px; }

.nav-opened { overflow:hidden; }
.nav-opened .header { padding:20px 0; background-color:#000; }

/*	Finish TOP	*/

.vertical-out { width:100%; height:100%; display:table; }
.vertical-in { width:100%; display:table-cell; vertical-align:middle; }

/*	Finish SLIDER	*/

.mask , .mask-top { position:absolute; bottom:0; left:0; right:0; z-index:700; }
.mask-top { top:0; bottom:auto; }
.mask > img , .mask-top > img { float:left; width:100%; max-height:32px; }

/*	Start FOOTER	*/

.footer-connect { float:left; width:100%; padding:60px 0; position:relative; z-index:10; text-align:center; background-color:rgba(0,0,0,0.04); }
.footer-connect ul { width:100%; }
.footer-connect li { width:50%; padding:26px 15px 27px 15px; position:relative; }
.footer-connect li::after { content:""; position:absolute; top:0; bottom:0; right:-1px; width:2px; background-color:rgba(0,0,0,0.06); }
.footer-connect li:last-child::after { display:none; }
.footer-connect li span { display:block; margin-bottom:57px; position:relative; font-size:12px; font-weight:500; color:#1892AC; letter-spacing:2px; }
.footer-connect li span::after { content:""; position:absolute; bottom:-28px; left:calc(50% - 30px); width:60px; height:1px; background-color:#16839A; }
.footer-connect li strong { display:block; font-size:21px; font-weight:500; color:#011F30; }

.footer-wrap { position:fixed; left:0; right:0; bottom:0; z-index:-1; color:#666; }

.footer { float:left; width:100%; padding:60px 0; position:relative; z-index:10; text-align:center; }
.footer a:hover , .copyright a:hover { text-decoration:underline; }

.footer-logo { float:left; width:100%; }
.footer-logo img { height:60px; }

.footer-social { float:left; width:100%; margin-top:50px; position:relative; text-align:center; }
.footer-social::before { content:""; position:absolute; top:calc(50% - 1px); left:0; right:0; height:2px; background-color:rgba(0,0,0,0.06); }
.footer-social-in { display:inline-block; position:relative; }
.footer-social ul { width:100%; padding:0 10px; position:relative; background-color:#FFF; }
.footer-social li { padding:0 10px; }
.footer-social li a { float:left; transition:all 0.25s; border-radius:50%; }
.footer-social li a:hover { background-color:#1892AC; }
.footer-social li a img { float:left; height:50px; }

.copyright { float:left; width:100%; padding-top:45px; letter-spacing:0.5px; }

.copyright-section { float:left; width:100%; margin-bottom:10px; }
.copyright-section:last-child { margin-bottom:0; margin-top:10px; }
.copyright-section section { font-size:13px; font-weight:300; color:#999; }
.copyright-section a { display:inline-block; line-height:24px; }
.copyright-section a img { float:right; height:24px; margin-left:7px; }
.copyright-section i { display:inline-block; margin:0 10px; font-weight:300; opacity:0.4; }

/*	Start CONTENT	*/

.block-light { position:relative; background:linear-gradient(180deg,rgba(24,146,172,0.08),rgba(24,146,172,0)); }
.block-dark { float:left; width:100%; position:relative; background-color:#031F30; color:#FFF; }

.stats { float:left; width:100%; position:relative; z-index:100; text-align:center; }
.stats ul { width:100%; margin-bottom:-30px; overflow:hidden; display:flex; flex-flow:row wrap; }
.stats li { position:relative; padding:0 10px; margin-bottom:30px; flex:1; flex-basis:25%; }
.stats li strong { display:block; margin-bottom:28px; font-size:80px; font-family:Fox Grotesque Pro; font-weight:300; line-height:80px; color:#1892AC; letter-spacing:-1px; position:relative; }
.stats li span { display:block; font-size:23px; font-weight:300; letter-spacing:1px; line-height:30px; }

.page-title { float:left; width:100%; padding:99px 0 31px 0; position:relative; font-weight:500; font-size:46px; color:#021F30; letter-spacing:-1px; line-height:50px; }
.page-title-slim { padding-top:19px !important; }

.color-red { color:#FC263F !important; font-weight:600; }
.color-white { color:#FFF !important; }

.small-title { float:left; width:100%; padding:22px 0 18px 0; position:relative; font-weight:600; font-size:16px; letter-spacing:1px; line-height:25px; color:#1892AC; z-index:30; }
.small-title-center { text-align:center; }
.small-title-white { color:#FC273F; }
.small-title::before { content:""; position:absolute; top:0; left:0; width:40px; height:2px; background-color:#FC273F; }
.small-title-white::before { background-color:#FFF; }
.small-title-center::before { left:calc(50% - 20px); }

.page-summary { float:left; width:100%; padding-left:15%; padding-right:15%; position:relative; font-size:21px; line-height:40px; text-align:center; z-index:30; }

.page-about { float:left; width:100%; margin:-18px 0 38px 0; position:relative; font-size:21px; font-weight:300; color:#333; line-height:40px; z-index:20; }
.page-about-white { color:#FFF; }
.page-about-left { padding:0 !important; text-align:left; }
.page-about a , .page-about b , .page-about strong { font-weight:500; color:#000; }
.page-about a:hover { color:#148399; text-decoration:none; }
.color-white a , .color-white b , .color-white strong { color:#FFF; }

.page-hero-text { float:left; width:100%; position:relative; font-size:33px; font-weight:300; line-height:50px; z-index:20; }
.block-wide .page-hero-text { margin:3px 0 67px 0; }

.block-narrow { float:left; width:25%; padding-right:50px; }
.block-wide { float:right; width:75%; max-width:1040px; }

.hero-screen { float:left; width:100%; padding-top:50px; padding-bottom:40px; position:relative; }
.hero-screen::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/shadow.png) no-repeat center top / 95% auto; opacity:0.3; }

.ugc-list { float:left; width:100%; position:relative; }
.ugc-list > ul { width:calc(100% + 40px); margin-left:-20px; display:flex; flex-flow:row wrap; }
.ugc-list > ul > li { width:33.33334%; padding:0 20px; margin-bottom:80px; }

.ugc-item { float:left; width:100%; position:relative; }
.ugc-item-title { float:left; width:100%; padding:10px; margin-bottom:10px; position:relative; text-align:center; background-color:rgba(24,146,172,0.15); border-radius:8px; font-size:16px; transition:all 0.5s; }
.ugc-item:hover .ugc-item-title { background-color:#1892AC; color:#FFF; }

.ugc-item-video { float:left; width:100%; position:relative; aspect-ratio:1080/1920; overflow:hidden; border-radius:8px; }
.ugc-item-video video { width:100%; height:100%; object-fit:cover; }

.ugc-item-cta { width:100%; height:100%; object-fit:cover; }

.play { position:absolute; top:calc(50% - 34px); left:calc(50% - 34px); z-index:100; }
.play .start , .play .paused { float:left; text-align:center; cursor:pointer; }
.play .start:hover { opacity:0.7; }
.play .paused { opacity:0.3; }
.play .start i , .play .paused i { float:left; width:68px; font-size:64px; color:#FFF; line-height:68px; }

.ugc-products { position:absolute; left:15px; right:15px; bottom:20px; z-index:100; }
.ugc-products > ul { width:100%; display:flex; align-items:center; justify-content:center; }
.ugc-products > ul > li { padding:0 5px; }

.ugc-pro-item { float:left; padding:4px; background-color:#FFF; border-radius:50%; border:1px solid #000; cursor:pointer; }
.ugc-pro-item picture { float:left; width:70px; position:relative; aspect-ratio:1/1; border-radius:50%; overflow:hidden; }
.ugc-pro-item picture img { width:100%; height:100%; object-fit:cover; }

.item-show { position:absolute; bottom:90px; left:calc(50% - 120px); width:240px; padding:10px; background-color:#FFF; border-radius:8px; display:none; }
.item-show picture { float:left; width:100%; position:relative; aspect-ratio:1/1; border-radius:50%; overflow:hidden; }
.item-show picture img { width:100%; height:100%; object-fit:cover; }
.item-show strong { float:left; width:100%; padding:8px; color:#FFF; background-color:#FC273F; border-radius:6px; text-align:center; transition:all 0.5s; }
.item-show:hover strong { background-color:#1892AC; }

.item-show.active { display:block; }


.controls { height:100%; }
.slick-prev , .slick-next {
    position:absolute;
    top:50%;
    width:40px;
    height:40px;
    margin-top:-20px;
    text-indent:-9999px;
    cursor:pointer;
    z-index:1000;
    transition:all 0.2s ease;
    background:#FFF url(../images/arrow-left.png) no-repeat center / auto 14px;
    border-radius:50%;
    box-shadow:0 0 20px rgba(16,41,75,0.1);
}

.slick-prev { left:15px; }
.slick-next { right:15px; background-image:url(../images/arrow-right.png); }

.slick-prev:hover { background-position:40% center; }
.slick-next:hover { background-position:60% center; }

ul.slick-dots { position:absolute; text-align:center; right:0; left:0; bottom:0; padding:50px 0 20px 0; z-index:1000; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.2)); }
ul.slick-dots li { float:none; height:3px; margin:0 5px; display:inline-block; transition:all 0.3s; }
ul.slick-dots li button { float:left; width:20px; height:3px; cursor:pointer; background-color:#FFF; transition:all 0.3s; position:relative; text-indent:-9999px; opacity:0.5; }
ul.slick-dots li button:hover { opacity:0.6; }
ul.slick-dots li.slick-active button { opacity:1; }

.slider-reviews-wrap { float:left; width:100%; margin-bottom:10px; position:relative; overflow:hidden; }
.slider-reviews-in { width:33.33334%; min-width:440px; margin:0 auto; position:relative; }
.slider-reviews { float:left; width:100%; position:relative; }
.slider-reviews::before , .slider-reviews::after { content:""; position:absolute; top:0; bottom:5px; left:-1px; width:2px; background-color:rgba(24,146,172,0.1); }
.slider-reviews::after { left:auto; right:-1px; }
.slider-review-item { float:left; width:100%; padding:0 50px; position:relative; transform:scale(0.8,0.8); transition:all 0.7s; opacity:0.5; }
.slider-review-item.slick-active { transform:scale(1,1); opacity:1; }

.slider-reviews .slick-prev { left:-20px; background-color:#FFF; box-shadow:none; }
.slider-reviews .slick-next { right:-20px; background-color:#FFF; box-shadow:none; }
.slider-reviews .slick-prev:hover , .slider-reviews .slick-next:hover { background-color:#FFF; }



.review-item { float:left; width:100%; height:100%; position:relative; text-align:center; }
.review-item-owner { float:left; width:100%; position:relative; }
.review-item-owner picture { display:inline-block; width:80px; height:80px; margin-bottom:25px; font-size:37px; font-weight:300; color:#FFF; line-height:80px; background-color:#F3A395; border-radius:50%; }
.review-item-owner strong { float:left; width:100%; margin-bottom:6px; font-size:17px; font-weight:600; color:#F3A395; }
.review-item-owner small { float:left; width:100%; color:#33475F; }
.review-item-rate { float:left; width:100%; height:15px; margin:9px 0 26px 0; position:relative; }
.review-item-comment { float:left; width:100%; max-height:180px; margin-bottom:-1px; position:relative; font-size:15px; line-height:30px; overflow:hidden; opacity:0; transition:all 1s; }
.slider-review-item.slick-active .review-item-comment { opacity:1; }

.review-rate { display:inline-block; width:90px; height:15px; background:url(../images/star.png) repeat-x 0 center / 18px 15px; }
.review-rate-large { width:130px; height:22px; background-size:26px 22px; }
.review-rate em { float:left; height:100%; background:url(../images/star-active.png) repeat-x 0 center / 18px 15px; }
.review-rate-large em { background-size:26px 22px; }
.review-rate em.rate1 { width:20%; }
.review-rate em.rate15 { width:30%; }
.review-rate em.rate2 { width:40%; }
.review-rate em.rate25 { width:50%; }
.review-rate em.rate3 { width:60%; }
.review-rate em.rate35 { width:70%; }
.review-rate em.rate4 { width:80%;}
.review-rate em.rate45 { width:90%;}
.review-rate em.rate5 { width:100%; }


.inner-80 { margin:0 -80px; }
.inner-40 { margin:0 -40px; }
.inner-30 { margin:0 -30px; }
.inner-20 { margin:0 -20px; }
.inner-15 { margin:0 -15px; }
.inner-10 { margin:0 -10px; }
.inner-6 { margin:0 -6px; }
.inner-5 { margin:0 -5px; }
.inner-2 { margin:0 -2px; }

.top-150 { padding-top:150px; }
.top-100 { padding-top:100px; }
.top-50 { padding-top:50px; }
.bottom-150 { padding-bottom:150px; }
.bottom-100 { padding-bottom:100px; }
.bottom-50 { padding-bottom:50px; }

.left-80 { padding-left:80px; }
.right-80 { padding-right:80px; }

.block-gradient { float:left; width:100%; position:relative; background-image:linear-gradient(180deg,#F8F9F9,#FFF); }
.block-grey { float:left; width:100%; position:relative; background-color:#FBFBF3; }
.block-border-bottom { background:url(../images/dot-line.png) repeat-x 0 bottom; }

.link-all { float:left; width:100%; position:relative; text-align:center; z-index:100; }
.link-all a { display:inline-block; width:100%; max-width:320px; height:50px; position:relative; letter-spacing:1px; font-size:15px; font-weight:500; color:#FFF; line-height:50px; background-color:#FC273F; border-radius:25px; transition:all 0.3s; box-shadow:0 7px 20px rgba(0,0,0,0.15); }
.link-all a:hover { background-color:#031F30 !important; }
.link-all a span { display:inline-block; position:relative; padding-right:30px; background:url(../images/arrow-white-right.png) no-repeat right center / 20px 14px; z-index:10; }

.grayscale { filter:grayscale(100%); -webkit-filter:grayscale(100%); }
.grayscale:hover { filter:none; -webkit-filter:none; }

.page-share { position:absolute; top:0; left:0; }
.page-share ul { width:50px; }
.page-share li { margin-bottom:15px; }
.page-share li a { float:left; border:1px solid #E5E5E5; transition:all 0.25s; border-radius:10%; }
.page-share li a:hover { border-color:#000; }
.page-share li a img { float:left; height:50px; margin:-1px; }

/*	Start LIGHTBOX	*/

.fancybox-slide--iframe .fancybox-content { width:800px; min-height:300px; max-width:80%; max-height:80%; margin:0; }

.my-fancy { display:none; padding:30px !important; border-radius:8px; }

.my-fancy-wrap { width:100%; max-width:800px; max-height:600px; overflow:hidden; overflow-y:auto; }
.my-fancy-wrap::-webkit-scrollbar { width:5px; }
.my-fancy-wrap::-webkit-scrollbar-track { background:#EEEEEE; }
.my-fancy-wrap::-webkit-scrollbar-thumb { background-color:#555; }
.my-fancy-wrap { scrollbar-color:#FFF #EEEEEE; scrollbar-width:thin; }

.fancy-title { float:left; width:100%; padding:0 20px; margin-bottom:15px; position:relative; font-size:16px; color:#000; }
.fancy-title::before { content:""; position:absolute; top:50%; left:0; width:50px; height:2px; margin-top:-1px; background-color:#CEC9C8; }
.fancy-title strong { float:left; padding:0 15px; position:relative; font-weight:500; letter-spacing:1px; background-color:#FFF; }

.fancy-form { float:left; width:100%; }
.fancy-form .item { float:left; width:50%; padding:0 10px; margin-bottom:20px; }
.fancy-form .item:last-child { margin-bottom:0; }
.fancy-form .item-2 { width:calc(50% - 10px); }
.fancy-form .item-2 label { float:left; width:100%; padding:9px; border:1px solid #999; border-radius:4px; font-weight:600; }
.fancy-form .item a { font-weight:600; text-decoration:underline; }

.sub-hero { float:left; width:100%; position:relative; text-align:center; z-index:100; background-size:cover; background-position:center; background-repeat:no-repeat; }
.sub-hero-stores { height:220px; }
.sub-hero::before { content:""; position:absolute; top:0; left:0; right:0; bottom:0; background-color:#000; opacity:0.6; }
.sub-hero::after { content:""; position:absolute; bottom:-20px; left:calc(50% - 1px); width:2px; height:80px; background-image:linear-gradient(180deg,#FFF,#1892AC); }
.sub-hero-stores::after { display:none; }
.sub-hero-title { float:left; width:100%; padding:262px 0 88px 0; position:relative; font-size:41px; line-height:50px; color:#FFF; }
.sub-hero-stores .sub-hero-title { float:left; width:100%; padding:262px 0 88px 0; position:relative; font-size:41px; line-height:50px; color:#FFF; }

.breadcrumb-wrap { float:left; width:100%; padding:0 75px; }

.breadcrumb { float:left; width:100%; padding:5px 0; font-size:12px; letter-spacing:1px; line-height:40px; background-color:rgba(206,201,200,0.15); text-align:center; }
.breadcrumb section { display:inline-block; }
.breadcrumb a { float:left; color:#777; }
.breadcrumb a:hover { color:#353535; text-decoration:underline; }
.breadcrumb i { float:left; margin:0 15px; opacity:0.4; }
.breadcrumb strong { float:left; font-weight:600; color:#2F3C46; }

.mega-photo { float:left; width:100%; position:relative; }
.mega-photo img { float:left; width:100%; }

.parallax-outer { float:left; width:100%; padding:80px 0; position:relative; }
.parallax-outer::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(145deg,#490B12,#FC263F); opacity:0.8; z-index:1; }
.parallax-outer-right::before { right:auto; left:0; background-image:linear-gradient(90deg,#FFF,#F5F4E1); }

.parallax-mirror { z-index:1 !important; }

.parallax-wrap { float:left; width:100%; position:relative; }

.parallax-photo-wrap { position:absolute; left:0; right:calc(50% + 40px); bottom:0; top:0; }
.parallax-photo { position:absolute; left:0; right:0; bottom:0; top:0; background:transparent; }
.parallax-wide-wrap { float:left; width:100%; position:relative; }
.parallax-wide { float:left; width:100%; position:relative; background:transparent; background-size:100% auto; }
.parallax-wide::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(145deg,#148399,rgba(0,70,128,0.5)); }
.parallax-wide-content { float:left; width:100%; position:relative; z-index:10; color:#FFF; }

.parallax-just-photo img { float:left; width:100%; max-height:600px; }
.parallax-just-photo::before , .parallax-just-photo::after { display:none; }

.parallax-text { float:right; width:calc(50% - 80px); position:relative; }
.parallax-text .page-title { margin-top:-30px; }

.parallax-right .parallax-photo-wrap { right:0; left:calc(50% + 80px); }
.parallax-right .parallax-text { float:left; }

.simple-list { float:left; width:100%; margin-top:10px; font-size:17px; line-height:25px; }
.simple-list ul { width:100%; display:flex; flex-flow:row wrap; }
.simple-list li { width:100%; padding:0 20px 20px 30px; position:relative; display:inline-block; vertical-align:top; background:url(../images/icon-ok.png) no-repeat 0 4px / 17px auto; }

.block-two { width:48%; }

.catalog { float:left; width:100%; position:relative; }
.catalog ul { width:100%; }
.catalog li { width:50%; padding:0 20px; margin-bottom:40px; }
.catalog li a { float:left; width:100%; position:relative; background-color:#F7F7F7; display:flex; align-items:center; }
.catalog li a picture { float:left; width:200px; overflow:hidden; }
.catalog li a picture img { float:left; width:100%; transform-origin:center; transition:all 1s; }
.catalog li a:hover picture img { transform:scale(1.2, 1.2); }
.catalog li a section { float:left; width:calc(100% - 200px); padding:40px; }
.catalog li a section strong { float:left; width:100%; font-size:21px; font-weight:400; letter-spacing:0.5px; line-height:30px; }
.catalog li a section span { float:left; width:100%; padding:15px 0; font-size:13px; letter-spacing:2px; color:#888; }
.catalog li a section i { float:left; padding-left:30px; background:url(../images/icon-down.svg) no-repeat 0 center / 20px; font-weight:500; font-size:13px; letter-spacing:2px; transition:all 0.4s; }
.catalog li a:hover section i { background-position:0 5px; }

/*	Start CONTACT	*/

.stores-out { float:left; width:100%; position:relative; }
.stores-map { float:left; width:100%; height:780px; }

.store-list-wrap { position:absolute; top:30px; bottom:30px; left:30px; width:480px; background-color:#FFF; box-shadow:0 5px 40px rgba(0, 0, 0, 0.1); z-index:500; border-radius:3px; overflow:hidden; }

.store-list-filter { float:left; width:100%; padding:20px 20px 10px 20px; box-shadow:0 1px 0 #E8E8E8; }
.store-list-filter section { float:left; width:50%; padding:0 5px; margin-bottom:10px; }
.store-list-filter section .input { height:32px; padding:0 10px; font-size:13px; line-height:32px; box-shadow:none; }
.store-list-filter section .button { height:32px; padding:0; font-size:13px; line-height:32px; }
.store-list-filter section .button::after { display:none; }

.store-list { float:left; width:100%; position:absolute; top:114px; bottom:0; left:0; overflow:hidden; overflow-y:auto; }

.store-list::-webkit-scrollbar { width:7px; }
.store-list::-webkit-scrollbar-track { background:#EEE; }
.store-list::-webkit-scrollbar-thumb { border:2px solid #148399; background-color:#148399; }
.store-list { scrollbar-color:#FFF #EEEEEE; scrollbar-width:thin; }

.store-list ul { width:100%; }
.store-list li { width:100%; padding:15px 20px; position:relative; border-top:1px solid #E8E8E8; transition:all 0.3s; }
.store-list li:hover { background-color:#FAFAFA; }

.store-list-title { float:left; width:100%; margin-bottom:7px; }
.store-list-title h4 { float:left; font-weight:500; color:#000; }
.store-list-title i { display:inline-block; height:20px; padding:0 7px; margin-left:7px; font-size:10px; font-weight:500; color:#FFF; line-height:22px; border-radius:3px; }
.sansiro-shop { background-color:#FE5A69; }
.sansiro-kiosk { background-color:#2DD5FF; }
.sansiro-corner { background-color:#FEA15A; }

.store-list li section { float:left; width:100%; padding-left:25px; margin-bottom:9px; color:#444; font-size:13px; line-height:16px; background-size:auto 14px; background-repeat:no-repeat; background-position:0 1px; }
.store-address { background-image:url(../images/icon-pin.png); }
.store-phone { background-image:url(../images/icon-phone.png); }

.store-list li a { float:left; height:25px; padding:0 15px; margin-top:2px; border-radius:13px; color:#158399; font-weight:500; font-size:11px; letter-spacing:1px; line-height:23px; border:1px solid #158399; }
.store-list li a:hover { background-color:#158399; color:#FFF; }

.store-list li.store-selected { background-color:#F8F8F8; }
.store-list li.store-selected::before { content:""; position:absolute; top:10px; bottom:10px; left:0; width:3px; background-color:#158399; border-radius:0 3px 3px 0; }

.map-store-wrap { position:absolute; top:50%; left:50%; z-index:1000; }
.map-store-content { position:absolute; left:50%; bottom:43px; width:280px; padding:15px 20px; margin-left:-140px; background-color:#1892AC; color:#FFF; border-radius:3px; }
.map-store-content::after {
    content:"";
    border-top:7px solid transparent;
    border-left:15px solid transparent;
    border-right:15px solid transparent;
    height: 0;
    position: absolute;
    width:0;
    left:50%;
    bottom:-7px;
    margin-left:-15px;
    border-top-color:#1892AC;
}
.map-store-content .store-list-title h4 { color:#FFF; }
.map-store-content section { float:left; width:100%; padding-left:25px; margin-bottom:9px; font-size:13px; line-height:16px; background-size:auto 14px; background-repeat:no-repeat; background-position:0 0; }
.map-store-content .store-address { background-image:url(../images/icon-pin-2.png); }
.map-store-content .store-phone { background-image:url(../images/icon-phone-2.png); }

/*	Start CONTACT	*/

.accordion { float:left; width:100%; }
.accordion-section { float:left; width:100%; border-bottom:1px solid rgba(0,0,0,0.06); }

.accordion-section-title { float:left; width:100%; padding:30px; position:relative; font-size:17px; color:#6D7887; border-top:1px solid rgba(0,0,0,0.06); z-index:10; }
.accordion-section-title:hover { color:#000; }
.accordion-section-title.active { color:#000 !important; }
.accordion-section-title::after { content:""; position:absolute; top:0; bottom:0; right:20px; width:14px; background:url(../images/arrow-down.png) no-repeat center / 100% auto; transition:all 0.3s; }
.accordion-section-title.active::after { transform:rotate(180deg); }
.accordion-section-title section { float:left; }

.accordion-section-content { float:left; width:100%; padding:0 30px 40px 30px; position:relative; display:none; }
.accordion-section-text { float:left; width:100%; font-size:15px; line-height:30px; }

.accordion-more { float:left; width:100%; padding:20px 0; margin-top:20px; font-size:17px; line-height:30px; }
.accordion-more a { font-weight:500; color:#FC273F; }
.accordion-more a:hover { text-decoration:underline; }

.contact-wrap { float:left; width:100%; position:relative; }

.contact-info-wrap { position:absolute; top:30px; bottom:30px; left:30px; width:480px; z-index:500; }
.contact-info { float:left; width:100%; padding:20px; position:relative; background-color:#FFF; box-shadow:0 5px 40px rgba(0, 0, 0, 0.1); border-radius:3px; }
.contact-info section { float:left; width:100%; padding-left:40px; margin:5px 0; position:relative; font-size:15px; line-height:25px; }
.contact-info section:last-child { margin-bottom:0; font-weight:400; }
.contact-info section img { position:absolute; top:0; left:0; height:24px; padding:2px 0; }
.contact-info section i { display:block; margin:-5px 0; font-size:13px; font-weight:600; letter-spacing:2px; color:#148399; }
.contact-info section article { display:block; margin-bottom:10px; }

.contact-form { float:left; width:100%; position:relative; }

.form-item { float:left; width:50%; padding:0 15px 30px 15px; position:relative; }
.form-item-text { margin-top:-10px; color:#666; }
.form-item label { float:left; width:100%; font-size:15px; }
.form-item section { float:left; width:100%; font-size:17px; font-weight:600; margin-bottom:-10px; }
.form-item a { text-decoration:underline; font-weight:600; }

.security-code img { float:left; width:120px; height:50px; margin-right:10px; padding:3px; border-bottom:2px solid #DDD; }
.security-code a.refresh { float:left; width:50px; height:50px; text-indent:-9999px; background:url(../images/refresh.png) no-repeat center center / 24px; border-bottom:2px solid #DDD; }
.security-code a:hover.refresh { background-color:#FFF; }

.contact-map { float:left; width:100%; height:600px; padding:9px; position:relative; border:1px solid #DDD; }

.upload { float:left; width:100%; height:50px; position:relative; text-align:center; }

.upload section {
    float:left;
    width:100%;
    height:100%;
    position:relative;
    border-bottom:2px solid #1892AC;
    font-weight:500;
    font-size:15px;
    line-height:48px;
    z-index:2;
}
.upload:hover section { background-color:#FFF; }

.upload section::after { content:""; position:absolute; top:0; bottom:0; right:0; width:50px; background:url(../images/icon-clip.png) no-repeat center / auto 16px; }

.upload input {
    display:block !important;
    width:100% !important;
    height:100% !important;
    opacity:0 !important;
    overflow:hidden !important;
    position:absolute;
    left:0;
    top:0;
    z-index:3;
    cursor:pointer;
}

/*	Start MASONRY	*/

.item { float:left; width:25%; padding:0 20px 40px 20px; }
.photo-item { float:left; width:100%; transition:all 0.25s; }
.photo-item a { float:left; width:100%; position:relative; }
.photo-item a section { float:left; width:100%; position:relative; border-radius:8px; overflow:hidden; }
.photo-item a section img { float:left; width:100%; box-shadow:0 5px 20px rgba(0, 0, 0, 0.07); transform-origin:center bottom; transition:all 1s; }
.photo-item a:hover section img { transform:scale(1.1, 1.1); }
.photo-item a section::after { content:""; position:absolute; top:15px; right:15px; width:32px; height:32px; background:rgba(255,255,255,0.7) url(../images/icon-expand.png) no-repeat center / 12px; border-radius:50%; opacity:0; }
.photo-item a:hover section::after { opacity:1; }
.photo-item a span { float:left; width:100%; margin:11px 0 -1px 0; color:#999; font-size:13px; letter-spacing:2px; }

/*	Start PAGINATION	*/

.pages { float:left; width:100%; margin-top:20px; position:relative; font-size:17px; line-height:48px; text-align:center; }

.pages ul { width:100%; margin-bottom:-15px; }
.pages li { float:none; display:inline-block; padding:0 5px; }
.pages li a { float:left; width:50px; height:50px; border:1px solid #EEE; color:#999; transition:all 0.3s; border-radius:50%; }
.pages li a:hover { border-color:#148399; }
.pages li a.current { color:#148399; border-color:#148399; }

.cookies-wrap { position:fixed; right:20px; bottom:20px; left:20px; z-index:7950; text-align:center; display:none; }
.cookies { float:left; width:100%; padding:25px 30px 20px 30px; position:relative; background-color:rgba(0, 0, 0, 0.8); font-size:12px; color:rgba(255, 255, 255, 0.8); border-radius:5px; }
.cookies::before { content:""; position:absolute; right:15px; top:15px; left:15px; bottom:0; background:url(../images/icon-cookies.png) no-repeat 0 top / 60px auto; opacity:0.3; }
.cookies section { float:left; width:100%; position:relative; }
.cookies-close { position:absolute; top:-16px; right:20px; width:32px; height:32px; }
.cookies-close span { float:left; width:100%; height:100%; position:relative; border-radius:50%; text-indent:-9999px; background:#C09C61 url(../images/icon-close.png) no-repeat center / 20px; cursor:pointer; border:2px solid #FFF; }
.cookies-close span:hover { background-size:18px; background-color:#000; }

.block-flex { float:left; width:100%; position:relative; display:flex; justify-content:space-between; flex-wrap:wrap; }
.block-flex-item { flex-basis:calc(50% - 60px); margin-bottom:40px; }

.slider-gallery-wrap { float:left; width:100%; position:relative; z-index:700; }
.slider-gallery { float:left; width:100%; position:relative; z-index:700; }
.slider-gallery .slick-list { overflow:hidden; border-radius:16px; }
.slider-gallery-item { float:left; width:auto !important; position:relative; }
.slider-gallery-item a , .slider-gallery-item section { float:left; width:100%; padding:0 30px; position:relative; background-repeat:no-repeat; background-size:cover; background-position:center; }
.slider-gallery-item img { float:left; height:50vh; max-height:400px; transition:all 0.5s; border-radius:16px; }
.slider-gallery-item::after { content:""; position:absolute; top:50%; left:50%; width:60px; height:60px; margin:-30px 0 0 -30px; background:#000 url(../images/icon-zoom.png) no-repeat center / 24px; border-radius:50%; transition:all 0.5s; transform-origin:center; transform:scale(0.2); opacity:0; }
.slider-gallery-item:hover::after { transform:scale(1); opacity:1; }

.slider-gallery-item small { position:absolute; left:30px; right:30px; bottom:0; padding:15px 20px; z-index:100; text-align:center; color:#FFF; background-image:linear-gradient(180deg,rgba(0,0,0,0.0),rgba(0,0,0,0.3)); opacity:0; transition:all 0.5s; }
.slider-gallery-item.slick-center small { opacity:1; }

.slider-gallery .slick-prev { left:-25px; }
.slider-gallery .slick-next { right:-25px; }


@media only screen and (max-width:1540px) {

    .wrap { width:1320px; }
    .page-summary { font-size:21px; line-height:40px; text-align:center; z-index:30; }

    .slider-gallery .slick-prev { left:-20px; }
    .slider-gallery .slick-next { right:-20px; }

}


@media only screen and (max-width:1440px) {

    .wrap { width:1200px; }

    .top-150 { padding-top:100px; }
    .top-100 { padding-top:75px; }
    .top-50 { padding-top:35px; }
    .bottom-150 { padding-bottom:100px; }
    .bottom-100 { padding-bottom:75px; }
    .bottom-50 { padding-bottom:35px; }

    .page-title { padding:70px 0 30px 0; font-size:35px; line-height:40px; }
    .page-summary { padding-left:5%; padding-right:5%; }
    .page-about { margin:-15px 0 30px 0; font-size:17px; line-height:30px; }

    .link-all a { max-width:280px; }

    .footer , .footer-connect { padding:40px 0; }
    .parallax-outer { padding:40px 0; }

    .slider-advantage-item { padding-right:40px; }
    .slider-advantage-item strong { margin:27px 0 7px 0; }

}


@media only screen and (max-width:1280px) {

    .wrap { width:960px; }
    .ugc-list > ul { width:calc(100% + 30px); margin-left:-15px; }
    .ugc-list > ul > li { padding:0 15px; }

}



@media only screen and (max-width:1023px) {

    .wrap , .wrap-slim { float:left; width:100%; padding:0 30px; }

    .header { padding:10px 0; background-color:#FFF !important; }
    .header .wrap { padding:0 10px; }
    #logo { margin:0 0 0 5px; }
    #logo img { height:40px; }

    .header-lang { margin-right:20px; margin-top:-5px; }
    .sansiro-bayilik { padding-top:60px; }

    .header-franchise { display:none; }
    .header-links a { padding:0 16px; margin-left:10px; font-size:11px; color:#FC273F; line-height:38px; }
    .header-links a img { height:38px; padding:12px 0; margin:0 -5px 0 10px; }
    .header-links a:last-child img { padding:15px 0; }

    .top-150 { padding-top:75px; }
    .top-100 { padding-top:50px; }
    .top-50 { padding-top:25px; }
    .bottom-150 { padding-bottom:75px; }
    .bottom-100 { padding-bottom:50px; }
    .bottom-50 { padding-bottom:25px; }

    .block-narrow { width:100%; padding-right:0; }
    .block-wide { width:100%; max-width:initial; }

    .footer-wrap { float:left; width:100%; position:relative; left:auto; right:auto; bottom:auto; z-index:0; }

    .accordion-section-title { padding:20px; }
    .accordion-section-content { padding:0 0 30px 20px; }

    .page-title { padding:50px 0 25px 0; font-size:27px; line-height:30px; }

    .ugc-products { bottom:15px; }
    .ugc-pro-item picture { width:60px; }
    .item-show { bottom:80px; }

}





@media only screen and (max-width:767px) {

    .cookies-wrap { right:5px; bottom:5px; left:5px; }

    .link-all a { width:auto; max-width:initial; padding:0 20px 0 25px; font-size:13px; }

    .ugc-list > ul > li { width:50%; }

    .slider-reviews-wrap { width:calc(100% + 20px); margin-left:-10px; }
    .slider-reviews-in { float:left; width:100%; min-width:initial; padding:0 20px; }
    .slider-reviews::before , .slider-reviews::after { display:none; }
    .slider-review-item { padding:0 40px; }

}



@media only screen and (max-width:640px) {



}



@media only screen and (max-width:540px) {

    .footer-connect li { width:100%; padding:26px 0 27px 0; }
    .footer-connect li::after { top:auto; left:-1px; right:-1px; width:auto; height:2px; }

    .accordion-section-title { font-size:15px; }
    .form-item { width:100%; padding-bottom:15px; }
    .form-item label { font-size:13px; }

    .hero-screen { padding-top:40px; }
    .ugc-list > ul > li { width:100%; margin-bottom:60px; }

}



@media only screen and (max-width:440px) {

    .footer-logo img { height:40px; }
    .footer-social { margin-top:30px; }
    .footer-social ul , .footer-social li { padding:0 5px; }

}



@media only screen and (max-width:374px) {



}

