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; }
* { 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:#777; }
html::-webkit-scrollbar-thumb { background-color: #FFF; border:2px solid #777; }
html { scrollbar-color:#FFF #777; scrollbar-width:thin; }

body { margin:0; color:#333; font-size:14px; font-family:Averta, 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.2); }
*::selection { background:rgba(0, 0, 0, 0.2); }

a { color:#1b1410!important; text-decoration:none;  }
a:hover { color:#1b1410!important; 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: #08D092;
	--input-border-color-inline-checked: #08D092;
	--input-border-color-disabled: #bfbfbf;
	--input-background-color-disabled: #efefef;
	--input-border-color-inline-disabled: #bfbfbf;
	--input-border-color-hover: #08D092;
	--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:14px; font-family:Averta, Arial; border-radius:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:Averta, Arial; font-size:17px; font-weight:600; }

.input { width:100%; height:50px; padding:0 16px; border:1px solid #DDD; transition:ease 0.3s; background-color:#FFF; border-radius:8px; }
.input:focus { border-color:#08D092; box-shadow:0 0 20px rgba(0, 0, 0, 0.1); }

.select { background:#FFF url(../images/arrow-select.png) no-repeat right center; background-size:auto 5px; box-shadow: none; -webkit-appearance:none; -moz-appearance:none; appearance:none; }

textarea.input { padding-top:12px !important; padding-bottom:12px !important; }

.button { float:none; height:50px; display:inline-block; padding:0 50px 0 30px; cursor:pointer; position:relative; color:#FFF; background-color:#1A4AB9; transition:all 0.25s; border-radius:8px; overflow:hidden; }
.button:hover { background-color:#153B94; }
.button::before { content:""; position:absolute; top:0; bottom:0; right:-40%; left:50%; background-image:linear-gradient(0deg,rgb(255 255 255 / 0),#FFF); transform:skew(-40deg); opacity:0.1; transition:all 0.25s; }
.button:hover::before { left:30%; }
.button::after { content:""; position:absolute; top:0; bottom:0; right:20px; width:16px; background:url(../images/arrow-white-right.png) no-repeat right center / 100% auto; transition:all 0.25s; }
.button:hover::after { right:15px; }

a.button { color:#FFF; font-weight:600; font-size:14px; line-height:50px; }

.egitimbilgi { float:left; width:100%; padding-top:100px; position:relative; }
.outer { float:left; width:100%; padding:0 65px; position:relative; }
.wrap { margin:0 auto; width:1500px; min-height:10px; padding:0 30px; position:relative; }

.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%; }
.mt30 { margin-top:30px; }
.mt10 { margin-top:10px; }

/*	Start TOP	*/

.header { position:fixed; top:0; left:0; right:0; height:80px; padding:14px 0; z-index:9000; transition:all 0.4s; background-color:rgba(232 ,220,220,0.8); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }
.scroll .header { box-shadow:0 0 20px rgba(0,0,0,0.07); }

.header-flex { display:flex; }

#logo { float:left; transition:all 0.3s; }
#logo a { float:left; }
#logo img { float:left; height:67px; transition:all 0.3s; }

.header-right { float:right; position:relative; }

.header-box { position:absolute; right:0; top:50px; background-color:#153B94; box-shadow:7px 7px 0 rgb(0 0 0 / 5%); z-index:100; border-radius:12px; display:none; }
.header-box::before {
	content:"";
	border-bottom:4px solid transparent;
	border-left:10px solid transparent;
	border-right:10px solid transparent;
	height: 0;
	top:-4px;
	right:50px;
	position:absolute;
	width:0;
	border-bottom-color:#153B94;
}

.header-icon { float:left; padding:0 15px 0 40px; height:40px; position:relative; cursor:pointer; color:#FFF; font-weight:600; letter-spacing:0.5px; line-height:40px; }
.header-icon article { position:relative; z-index:10; }
.header-icon::before { content:""; position:absolute; top:0; left:0; width:40px; height:100%; background-position:center; background-size:auto 20px; background-repeat:no-repeat; z-index:5; }
.header-icon::after { content:""; position:absolute; top:0; left:0; right:0; bottom:0; background-color:transparent; border-radius:20px; transition:all 0.3s; }
.header-icon span { position:relative; z-index:10; }

.header-cart { float:right; position:relative; margin-right:15px; }
.header-cart-icon::before { background-image:url(../images/icon-cart.png); }
.header-cart-icon i { position:absolute; top:-4px; left:22px; width:20px; height:20px; text-align:center; background-color:#FFC300; border:2px solid #1A4AB9; color:#FFF; font-size:11px; font-weight:700; line-height:17px; border-radius:50%; z-index:10; text-indent:0; }

.header-cart-content { width:360px; color:#FFF; }
.header-cart-content ul { width:100%; line-height:16px; }
.header-cart-content li { width:100%; padding:15px 20px; position:relative; border-bottom:1px solid rgb(255 255 255 / 7%); }
.header-cart-content li a { color:#FFF; }
.header-cart-content li a:hover { text-decoration:underline; }
.header-cart-content li div { float:left; width:100%; }
.header-cart-content li div span { display:block; }
.header-cart-content li div em { display:block; padding-top:5px; font-weight:700; color:#FFC300; }

.header-cart-content .summary  { float:left; width:100%; padding:15px 20px; margin-bottom:-20px; box-shadow:inset 0 -1px 0 255,255,255,0.07;color:#FFC300; }
.header-cart-content .summary i { font-size:17px; font-weight:700; }

.header-cart-content .empty { float:left; width:100%; padding:60px 0 30px 0; color:#999; text-align:center; position:relative; }
.header-cart-content .empty::before { content:""; position:absolute; top:20px; left:50%; width:30px; height:30px; margin-left:-15px; background:url(../images/header-basket.png) no-repeat center; background-size:100%; opacity:0.4; }

.header-cart-content .func { float:left; width:100%; padding:20px; font-weight:600; text-align:center; line-height:40px; }
.header-cart-content .func a { float:left; width:100%; padding:0 25px; background:#08D092 url(../images/arrow-white-right.png) no-repeat right 15px center / 16px; font-size:14px; color:#FFF; border-radius:20px; }
.header-cart-content .func a:hover { background-color:#07BA85; }

.header-account { float:right; position:relative; }
.header-account-icon { padding-left:25px; padding-right:40px; background-color:#FFF; color:#FFC000; line-height:38px; border:1px solid #FFC000; border-radius:20px; transition:all 0.3s; }
.header-account-icon:hover { background-color:#FFC000; color:#FFF; }
.header-apply-icon { margin-right:10px; background-color:#FFC000; color:#FFF; }
.header-apply-icon:hover { background-color:#1D4CBA; border-color:#1D4CBA; }
.header-account-icon::before { left:auto; right:0; background-image:url(../images/arrow-yellow-right.png); background-size:16px; transition:all 0.3s; }
.header-account-icon:hover::before , .header-account-icon.menu-trigger-active::before { background-image:url(../images/arrow-white-right.png); }
.header-apply-icon::before { background-image:url(../images/icon-apply.png) !important; background-size:20px; background-position:7px center; }

.header-account-content { width:280px; }
.header-account-content ul { width:100%; padding:20px; }
.header-account-content li { width:100%; }
.header-account-content li a { float:left; width:100%; padding:10px 15px; position:relative; color:#FFF; border-radius:20px; transition:all 0.25s; }
.header-account-content li a:hover { color:#1A4AB9; background-color:#FFF; }

.menu-trigger-active { color:#FFF; }
.menu-trigger-active::after { background-color:#FFC000; }

.header-links { float:right; }
.header-links::after { content:""; float:right; width:2px; height:40px; margin:0 40px; background-color:#000; opacity:0.06; }
.header-links li { padding-left:17px; }
.header-links li a { float:left; font-weight:600; letter-spacing:1px; line-height:40px; }


.header-search-content { margin:0 13px; display:block; flex:1; position:relative; }
.header-search-content input { width:100%; height:37px; padding:0 58px 0 20px; border-radius:20px; color:#222; line-height:40px; background-color:rgba(43,54,72,0.07); }
.header-search-content input:focus { padding:0 57px 0 19px; background-color:#FFF; border:1px solid #1B49B9; }
.header-search-content button { position:absolute; width:40px; height:40px; top:0; right:0; background:url(../images/icon-search.png) no-repeat center / 16px; text-indent:-9999px; }
.header-search-content button:hover { background-size:18px; }


.nav-icon { float:right; height:80px; margin:-20px 0; position:relative; cursor:pointer; font-weight:600; color:#1A48B8; letter-spacing:1px; line-height:80px; }
.nav-icon-close { color:#FFF; }
.nav-icon span { float:left; position:relative; top:50%; left:0; width:16px; height:16px; margin-top:-8px; margin-right:10px; background:url(../images/icon-pro.png) no-repeat center / 16px; transition:all 0.5s; }
.nav-icon-close span { background:url(../images/icon-close.png) no-repeat center / 16px; }
.nav-icon section { float:left; position:relative; }

.nav-icon-close::before { content:""; position:absolute; left:-30px; right:-30px; top:0; bottom:0; background-color:#153b94; }

#nav-wrap { position:fixed; top:80px; left:0; right:0; display:none; z-index:8870; }
#nav { float:left; width:100%; padding:40px; position:relative; background-color:#153B94; box-shadow:0 10px 30px rgb(0 0 0 / 7%); border-radius:16px; }
#nav ul { width:100%; position:relative; }
#nav li { width:25%; }
#nav li:hover { z-index:10; }
#nav li > a { float:left; width:100%; padding:10px; position:relative; font-weight:600; font-size:18px; color:#FFF; line-height:30px; transition:all 0.3s; text-align:center; z-index:10; border-radius:10px 10px 0 0; }
#nav li > a:hover { background-color:rgba(0,0,0,0.1); }
#nav li > a.nav-active { background-color:#1A4AB9; }

#nav > ul li span { display:none; position:absolute; top:50px; left:0; right:0; padding:30px; max-height:400px; overflow:hidden; overflow-y:auto; background-color:#1A4AB9; border-radius:0 0 10px 10px; box-shadow:0 15px 30px rgba(0,0,0,0.2); }
#nav > ul li span > section { float:left; width:100%; position:relative; }
#nav > ul li span > section strong { float:left; width:100%; padding:10px 0; margin-bottom:15px; position:relative; font-size:16px; font-weight:600; line-height:30px; color:#FFC300; }
#nav > ul li span > section strong::after { content:""; position:absolute; bottom:-6px; left:0; width:30px; height:2px; background-color:#FFF; opacity:0.3; }
#nav > ul li span > section a { float:left; width:calc(25% - 10px); padding:10px; margin:5px; position:relative; font-size:16px; color:#FFF; white-space:nowrap; text-overflow:ellipsis; transition:all 0.3s; overflow: hidden;}
#nav > ul li span > section a:hover { color:#FFC300; }
#nav > ul li span > section a i { float:left; padding-right:25px; color:#FFC300; font-weight:600; background:url(../images/arrow-white-right.png) no-repeat right center / 16px; }
#nav > ul li span > section a:hover i { padding-right:28px; }

#nav > ul li span::-webkit-scrollbar { width:7px; }
#nav > ul li span::-webkit-scrollbar-track { background:#11317B; }
#nav > ul li span::-webkit-scrollbar-thumb { border:2px solid #FFF; background-color:#FFF; }
#nav > ul li span { scrollbar-color:#FFF #11317B; scrollbar-width:thin; }

/*	Finish TOP	*/

.controls { height:100%; }
.slick-prev , .slick-next {
	position:absolute;
	top:50%;
	width:50px;
	height:50px;
	margin-top:-25px;
	text-indent:-9999px;
	cursor:pointer;
	z-index:1000;
	transition:all 0.2s ease;
	background:#FFF url(../images/arrow-left.png) no-repeat center / auto 20px;
	border-radius:50%;
	box-shadow:0 0 10px rgb(0 0 0 / 10%);
}

.slick-prev { left:15px; }
.slick-next { right:15px; background-image:url(../images/arrow-right.png); }

.slick-prev:hover , .slick-next:hover { background-color:#FFC300; }

ul.slick-dots { position:absolute; text-align:center; right:0; left:0; bottom:0; padding:35px 0; z-index:1000; }
ul.slick-dots li { float:none; height:5px; margin:0 5px; display:inline-block; }
ul.slick-dots li button { float:left; width:16px; height:5px; cursor:pointer; background-color:#FFF; transition:all 0.3s; position:relative; text-indent:-9999px; opacity:0.5; border-radius:3px; }
ul.slick-dots li button:hover { opacity:0.6; }
ul.slick-dots li.slick-active button { width:30px; opacity:1; }

.slider-hero-wrap { float:left; width:100%; position:relative; z-index:700; }
.slider-hero { float:left; width:100%; position:relative; z-index:700; border-radius:10px; text-align:center; }
.slider-hero .slick-list { overflow:hidden; border-radius:16px; }
.slider-hero-item { float:left; width:100%; position:relative; }
.slider-hero-item img { float:left; width:100%; position:relative; }
/* .slider-hero-item::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-hero.png) no-repeat center / cover; opacity:0.5; } */

.slider-hero-title { position:absolute; top:0; bottom:0; left:0; right:0; z-index:10; text-align:left; }
.slider-hero-title-in { float:left; width:100%; }
.slider-hero-title article { float:left; width:50%; padding:10px 0 30px 0; font-size:41px; color:#FFF; line-height:50px; }
.slider-hero-title strong { display:block; padding:32px 0 9px 0; position:relative; font-size:51px; line-height:60px; }
.slider-hero-title strong::before { content:""; position:absolute; top:0; left:0; right:0; height:5px; background:url(../images/title-line.png) no-repeat 0 0 / auto 100%; }

.slider-hero ul.slick-dots { bottom:10px; }

.vertical-out { width:100%; height:100%; display:table; }
.vertical-in { width:100%; display:table-cell; vertical-align:middle; }

.hero-screen-wrap { float:left; width:100%; position:relative; display:flex; flex-flow:row wrap; }

.hero-screen-left { float:left; width:calc(74% - 10px); position:relative; }

.hero-screen-video { position:absolute; top:0; bottom:0; left:0; right:0; width:100%; height:100%; object-fit:cover; border-radius:20px; mix-blend-mode:overlay; opacity:0.75; }

.hero-screen { float:left; width:100%; padding:80px 100px; position:relative; background-image:linear-gradient(145deg,#e8dcdc,#695e59); border-radius:20px; color:#FFF; z-index:100; }
.hero-screen::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-hero.png) no-repeat center / cover; mix-blend-mode:overlay; }

.hero-screen-title { float:left; width:100%; padding:12px 0 48px 0; position:relative; font-size:51px; font-weight:800; line-height:60px; }
.hero-screen-title span { display:block; }

.hero-screen-tags { float:left; width:100%; max-width:700px; margin-bottom:10px; position:relative; z-index:10; }
.hero-screen ul { width:100%; display:flex; flex-flow:row wrap; }
.hero-screen-tags li { margin:0 15px 15px 0; }
.hero-screen-tags li a { float:left; padding:10px 20px; position:relative; font-weight:600; background-color:#FFF; border-radius:20px; }
.hero-screen-tags li a::before { content:""; position:absolute; top:4px; left:4px; bottom:-4px; right:-4px; border:1px solid #FFF; border-radius:20px; opacity:0.2; z-index:-1; transition:all 0.3s; }
.hero-screen-tags li a:hover::before { background-color:#FFC000; border-color:#FFC000; opacity:1; }

.hero-screen-right { float:right; width:26%; margin-left:auto; position:relative; z-index:100; }
.slider-top-reviews { float:left; width:100%; height:100%; position:relative; border-radius:20px; overflow:hidden; }
.slider-top-reviews .slick-list , .slider-top-reviews .slick-track { height:100%; }
.slider-top-review-item { float:left; width:100%; height:100%; position:relative; }
.slider-top-review-item a { float:left; width:100%; height:100%; position:relative; color:#FFF; }
.slider-top-review-item picture { position:absolute; top:0; bottom:0; left:0; right:0; background-size:cover; background-repeat:no-repeat; background-position:center top; }
.slider-top-review-item section { position:absolute; bottom:0; left:0; right:0; padding:55px 30px; z-index:10; background-image:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,0.8)); }
.slider-top-review-item section strong { display:block; font-size:20px; font-weight:600; }
.slider-top-review-item section small { display:block; margin:3px 0 9px 0; font-size:12px; font-weight:600; opacity:0.8; }
.slider-top-review-item section article { display:block; max-height:60px; overflow:hidden; }

.slider-top-reviews ul.slick-dots { padding:30px 25px; display:flex; flex-flow:row wrap; }
.slider-top-reviews ul.slick-dots li { flex:1; flex-basis:10%; height:4px; }
.slider-top-reviews ul.slick-dots li button { width:100% !important; height:4px; }

.slider-home-wrap { float:left; width:100%; margin-bottom:30px; position:relative; }
.slider-home { float:left; width:100%; position:relative; display:flex; flex-flow:row wrap; }
.slider-home .slick-list { overflow:hidden; }
.slider-home-item { float:left; width:100%; height:90%; padding:0 10px; margin-bottom:20px; position:relative; text-align:center; }

.slider-home .slick-prev , .slider-similar .slick-prev { left:-15px; }
.slider-home .slick-next , .slider-similar .slick-next { right:-15px; }

.slider-home .slick-track { height:100%; }

/*	Finish SLIDER	*/

.mask , .mask-top { position:absolute; bottom:0; left:0; right:0; z-index:700; }
.mask-top { top:0; bottom:auto; }
.mask-reverse { transform:scaleX(-1); }
.mask > img , .mask-top > img { float:left; width:100%; }

/*	Start FOOTER	*/

.footer-wrap { float:left; width:100%; position:relative; color:#666; }

.join-us { float:left; width:100%; padding:50px 0 100px 0; position:relative; background-color:#1A4AB9; color:#FFF; text-align:center; }
.join-us::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-sub.png) no-repeat center / cover; }
.join-us article { float:left; width:100%; padding:30px 0 35px 0; font-family:Merriweather; font-size:21px; line-height:25px; }
.join-us section { display:inline-block; width:100%; max-width:720px; position:relative; }
.join-us .input { padding:0 70px 0 24px; border:1px solid #FFF; border-radius:25px; font-size:15px; color:#FFF; background-color:transparent; }
.join-us .input:focus { background-color:rgb(0 0 0 / 20%); }
.join-us .input::placeholder { color:#FFF; opacity:1; }
.join-us .input:-ms-input-placeholder { color:#FFF; }
.join-us .input::-ms-input-placeholder { color:#FFF;}
.join-us .button { width:100px; height:50px; padding:0 40px 0 15px; position:absolute; top:0; right:0; background:none; border-radius:25px; }

.footer { float:left; width:100%; padding-top:60px; position:relative; text-align:center; line-height:30px; }
.footer a { color:#666; }
.footer a:hover { color:#1A4AB9; text-decoration:underline; }

.footer-title { float:left; width:100%; padding:19px 0 11px 0; position:relative; font-size:18px; font-weight:600; letter-spacing:1px; color:#1b1410; }

.footer-block { float:left; width:33.33334%; padding:0 10px 20px 10px; font-size:16px; }

.footer-connect { float:left; width:100%; height:80px; padding:19px; margin-top:50px; position:relative; border:1px solid #F0F2F4; border-radius:10px; }

.footer-phone { height:40px; display:inline-block; }
.footer-phone strong { float:left; font-size:25px; color:#1D46DE; line-height:40px; }

.footer-secure { height:40px; display:inline-block; }
.footer-secure img { height:40px; margin:-1px; }
.footer-social { height:40px; display:inline-block; padding-left:30px; margin-left:40px; border-left:2px solid #EEE; }
.footer-social li { padding:0 10px; }
.footer-social li a { float:left; border:1px solid #FFF; border-radius:50%; transition:all 0.25s; }
.footer-social li a:hover { border-color:#1A4AB9; }
.footer-social li a img { float:left; height:40px; margin:-1px; }

.footer-block-content { float:left; width:100%; }
.footer-block-content > ul { width:100%; }
.footer-block-content > ul li { width:100%; }
.footer-block-content > ul li a { float:left; width:100%; }

.copyright { float:left; width:100%; padding:40px 0; position:relative; z-index:10; line-height:20px; }
.copyright .w100 { margin:10px 0; }
.copyright section { display:inline-block; }
.copyright section a { display:inline-block; margin:0 15px; }
.copyright section.nette a { margin-right:0; }
.copyright section a img { float:right; height:24px; margin-top:-2px; margin-left:7px; }
.copyright section span { padding-right:20px; border-right:1px solid #EEE; }

/*	Start CONTENT	*/

.hero-categories { float:left; width:100%; margin-top:-40px; position:relative; z-index:1000; text-align:center; }
.hero-categories ul { width:100%; display:flex; flex-flow:row wrap; }
.hero-categories li { padding:0 15px; margin-bottom:30px; flex:1; flex-basis:25%; }
.hero-categories li a { float:left; width:100%; height:100%; position:relative; background-color:#FFF; box-shadow:0 7px 25px rgb(0 0 0 / 8%); border-radius:10px; transition:all 0.25s; }
.hero-categories li a:hover { margin:-10px 0 10px 0; box-shadow:0 10px 30px rgb(0 0 0 / 15%); }
.hero-categories li a::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-logo.png) no-repeat center bottom / auto 100%; opacity:0.07; transition:all 0.25s; }
.hero-categories li a:hover::before { background-size:auto 90%; opacity:0.1; }
.hero-categories li a img { height:140px; margin-top:30px; display:inline-block; position:relative; }
.hero-categories li a strong { float:left; width:100%; padding:15px; position:relative; font-size:20px; line-height:30px; box-shadow:0 -1px 0 rgb(0 0 0 / 5%); }

.hero-title { float:left; width:100%; padding:54px 7% 26px 7%; position:relative; font-size:45px; color:#2B3648; letter-spacing:-1px; line-height:60px; text-align:center; }
.hero-title-left { padding-left:0 !important; padding-right:0 !important; text-align:left; }
.hero-title-slim { padding:14px 0 16px 0 !important; }
.hero-title strong { font-weight:600; }
.hero-title span { margin:11px 0 9px 0; display:block; color:#000; font-size:31px; font-weight:300; line-height:50px; }

.page-title { float:left; width:100%; padding:29px 0 31px 0; position:relative; font-family:Merriweather; font-size:32px; font-weight:700; line-height:40px; color:#354997; }
.page-title-white { color:#FFF; }
.page-title::before { content:""; position:absolute; top:0; left:0; right:0; height:5px; background:url(../images/title-line.png) no-repeat 0 0 / auto 100%; }

.medium-title { float:left; width:100%; margin:55px 0 25px 0; position:relative; font-size:30px; font-weight:600; letter-spacing:-1px; line-height:30px; color:#004C72; z-index:30; }

.text-white { color:#FFF !important; }

.page-about { float:left; width:100%; margin:-11px 0 31px 0; position:relative; font-size:18px; line-height:30px; letter-spacing:0.5px; z-index:20; }
.page-about-slim { margin:9px 0 11px 0; }
.page-about a { font-weight:600; color:#FF3400; }
.page-about a:hover { color:#004D73; }
.page-about b , .page-about strong { font-weight:normal; font-weight:700; color:#151515; }

.page-photo { float:right; width:40%; max-width:400px; padding:0 0 30px 50px; }
.page-photo img { float:left; width:100%; border-radius:8px; }

.egitimbilgi-stats-wrap { float:left; width:100%; position:relative; }
.egitimbilgi-stats-wrap::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-stats.png) no-repeat center top / 100% auto; }

.egitimbilgi-stats { float:left; width:100%; padding:0 120px; margin:10px 0 80px 0; position:relative; text-align:center; }
.egitimbilgi-stats ul { float:left; width:100%; }
.egitimbilgi-stats li { width:25%; padding:0 20px; margin-bottom:20px; }
.egitimbilgi-stats li section { float:left; width:100%; padding:20px 10px; background-color:#FFF; border-radius:10px; box-shadow:0 0 20px rgb(0 0 0 / 7%); color:#1A4AB9; font-size:16px; }
.egitimbilgi-stats li section strong { display:block; padding:7px 0 27px 0; position:relative; font-family:Merriweather; font-size:39px; line-height:40px; }
.egitimbilgi-stats li section strong::after { content:""; position:absolute; left:50%; bottom:12px; width:40px; height:2px; margin-left:-20px; background-color:#FFC300; }
.egitimbilgi-stats li section span { display:block; padding-bottom:6px; opacity:0.75; }

.home-reviews-out { float:left; width:100%; padding:120px 0 0 0; position:relative; overflow:hidden; }
.home-reviews-out::before { content:""; position:absolute; top:70px; bottom:0; right:0; width:50%; background-image:linear-gradient(145deg,#354997, #646a7c); border-radius:20px 0 0 20px; }
.home-reviews-out::after { content:""; position:absolute; top:0; left:44%; width:400px; height:400px; background:url(../images/bg-lines.png); mix-blend-mode:multiply; }

.slider-reviews-wrap { float:left; width:100%; position:relative; z-index:100; }
.slider-reviews-left { width:240px; position:absolute; top:0; bottom:0; left:0; z-index:40; }
.slider-reviews-left::before { content:""; position:absolute; top:40px; left:0; right:0; height:120px; background:url(../images/icon-quote.png) no-repeat 0 0 / auto 100%; }
.slider-reviews-left strong { display:block; margin-top:190px; font-weight:600; font-size:31px; color:#194AB8; line-height:40px; }
.slider-reviews-right { float:left; width:100%; position:relative; z-index:60; }

.slider-reviews { float:left; width:150%; padding-left:240px; position:relative; z-index:50; }
.slider-reviews .slick-list { overflow:hidden; padding-left:40px; padding-top:40px; padding-bottom:40px; }
.slider-reviews-item { float:left; width:100%; padding-right:40px; position:relative; }

.slider-reviews .slick-prev { top:auto; left:0; bottom:40px; border:1px solid rgba(13,48,204,0.1); box-shadow:none; }
.slider-reviews .slick-next { top:auto; bottom:40px; left:60px; border:1px solid rgba(13,48,204,0.1); box-shadow:none; }

.review-item { float:left; width:100%; padding:60px; position:relative; background-color:#FFF; box-shadow:0 0 40px rgba(13,48,204,0.1); border-radius:16px; }
.review-item::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; border:2px solid #FFC000; border-radius:16px; transition:all 0.3s; opacity:0; }
.review-item:hover::after { opacity:1; }
.review-avatar { float:left; width:100%; display:flex; align-items:center; }
.review-avatar picture { float:left; width:80px; height:80px; border-radius:50%; background-color:#e6e8ef; text-align:center; font-size:31px; font-weight:700; color:#FFF; line-height:80px; overflow:hidden; }
.review-avatar picture img { width:100%; height:100%; object-fit:cover; }
.home-reviews li a:hover .review-avatar picture { background-color:#1A4AB9; color:#FFF; }
.review-avatar span { flex:1; padding-left:30px; color:#000; font-weight:600; font-size:20px; }
.review-avatar span i { display:block; font-size:14px; color:#194AB8; }
.review-text { float:left; width:100%; height:120px; margin:15px 0 -15px 0; font-size:16px; color:#333; line-height:30px; overflow:hidden; }

.block-flexed { float:left; width:100%; position:relative; display:flex; align-items:center; }
.flex-left , .flex-right { float:left; width:50%; position:relative; }
.flex-left { padding-right:80px; }

.teacher-item { float:left; width:240px; margin-bottom:11px; position:relative; }
.teacher-item picture { float:left; width:100%; position:relative; border-radius:12px; overflow:hidden; }
.teacher-item picture img { float:left; width:100%; transform-origin:center top; transition:all 1s; }
.teacher-item:hover picture img { transform:scale(1.15,1.15); }
.teacher-item section { float:left; width:100%; position:relative; z-index:10; }
.teacher-item section::after { content:""; position:absolute; right:30px; top:-2px; width:40px; height:4px; background-color:#FFC000; transition:all 0.4s; transform:skewX(-25deg); }
.teacher-item:hover section::after { width:calc(100% - 60px); }

.teacher-item section strong { float:left; width:100%; padding:24px 0 6px 0; position:relative; font-size:18px; font-weight:600; }
.teacher-item section small { float:left; position:relative; color:#2B3446; }

.inner-40 { margin:0 -40px; }
.inner-30 { margin:0 -30px; }
.inner-24 { margin:0 -24px; }
.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; }

.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-60 { padding-left:60px; }
.right-60 { padding-right:60px; }

.breadcrumb { float:left; width:100%; padding-top:40px; z-index:10; font-weight:500; font-size:12px; line-height:50px; overflow:hidden; }
.breadcrumb section { float:left; height:50px; }
.breadcrumb a { float:left; color:rgb(255 255 255 / 60%); }
.breadcrumb a:hover { text-decoration:underline; opacity:1; }
.breadcrumb i { float:left; width:1px; height:20px; margin:15px 25px; background-color:#FFF; transform:skewX(-20deg); opacity:0.15; }
.breadcrumb strong { float:left; color:#FFF; font-weight:600; }

.block-grey { background-color:#F8F8F8; }
.block-border-top { box-shadow:inset 0 1px 0 rgb(0 0 0 / 6%); }
.block-rainbow { position:relative; }
.block-rainbow::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-rainbow.png) no-repeat 0 80%; }

.link-all { float:left; width:100%; position:relative; text-align:center; }
.link-all a { display:inline-block; height:50px; padding:0 30px; position:relative; background-color:#FFF; color:#666; letter-spacing:1px; font-weight:600; line-height:50px; border-radius:8px; overflow:hidden; transition:all 0.6s; }
.link-all a:hover { color:#1A4AB9; }
.link-all a::before { content:""; position:absolute; top:0; bottom:0; right:-20px; left:50%; background-color:rgb(26 74 185 / 6%); transition:all 0.4s; transform:skew(-25deg); }
.link-all a:hover::before { left:-20px; right:50%; background-color:rgb(26 74 185 / 12%); }
.link-all a span { float:left; position:relative; }

.grayscale { filter:grayscale(100%); -webkit-filter:grayscale(100%); }
.grayscale:hover { filter:none; -webkit-filter:none; }

.teachers { float:left; width:100%; }
.teachers ul { width:100%; display:flex; flex-flow:row wrap; }
.teachers li { width:20%; padding:0 24px; margin-bottom:35px; }
.teachers li a { float:left; width:100%; position:relative; overflow:hidden; transition:all 0.3s; }
.teachers li a picture { float:left; width:100%; border-radius:20px 20px 20px 0; overflow:hidden; }
.teachers li a picture img { float:left; width:100%; transform-origin:bottom center; transition:all 1s; }
.teachers li a:hover picture img { transform:scale(1.1, 1.1); }
.teachers li a strong { float:left; width:100%; margin:22px 0 -1px 0; font-family:Merriweather; font-size:18px; font-weight:400; line-height:24px; }
.teachers li a section { float:left; z-index:20; color:#999; line-height:40px; transition:all 0.5s; }
.teachers li a section::after { content:""; float:right; width:20px; height:40px; margin-left:10px; background:url(../images/arrow-right.png) no-repeat right center / 16px; transition:all 0.2s; filter:grayscale(100%); -webkit-filter:grayscale(100%); opacity:0.5; }
.teachers li a:hover section::after { width:30px; }

.blog { float:left; width:100%; margin-bottom:-10px; text-align:center; }
.blog ul { width:100%; display:flex; flex-flow:row wrap; }
.blog li { width:25%; padding:0 20px; margin-bottom:51px; }
.blog li a { float:left; width:100%; }
.blog li picture { float:left; width:100%; position:relative; border-radius:10px; overflow:hidden; }
.blog li picture img { float:left; width:100%; transform-origin:bottom center; transition:all 1s; }
.blog li:hover picture img { transform:scale(1.1, 1.1); }
.blog li span { float:left; width:100%; padding:23px 0 14px 0; position:relative; font-weight:500; color:#999; }
.blog li span::before { content:""; position:absolute; top:40px; left:0; right:0; height:1px; background-color:#F0F0F0; }
.blog li span em { display:inline-block; padding:0 20px; margin-bottom:5px; position:relative; background-color:#FFF; font-family:Merriweather; font-size:30px; color:#1A4AB9; line-height:32px; }
.blog li strong { float:left; width:100%; font-weight:400; font-size:18px; line-height:30px; color:#000; }

.blog-wrap { float:left; width:100%; padding-left:100px; position:relative; }

.blog-content { float:left; width:calc(100% - 420px); }
.blog-photo { float:left; width:100%; margin-bottom:40px; }
.blog-photo img { width:100%; border-radius:8px; }
.date { float:left; width:100%; padding-left:40px; margin:-5px 0 35px 0; font-weight:500; color:#999; position:relative; letter-spacing:1px; }
.date::before { content:""; position:absolute; left:0; top:50%; width:20px; height:2px; margin-top:-1px; background-color:#CCC; }

.blog-title { font-weight:400; }

.blog-sidebar { float:right; width:360px; padding:24px; position:relative; border:1px solid #1A4AB9; border-radius:8px; }
.blog-sidebar article { float:left; width:100%; margin:-5px 0 13px 0; font-size:14px; font-weight:600; color:#1A4AB9; letter-spacing:1px; }
.blog-sidebar ul { width:100%; margin-bottom:-20px; }
.blog-sidebar li { width:100%; }
.blog-sidebar li a { float:left; width:100%; padding:15px 0; letter-spacing:1px; border-top:1px solid #F0F0F0; transition:all 0.2s; }
.blog-sidebar li a:hover { border-color:#1A4AB9; }
.blog-sidebar li a span { display:block; padding-bottom:4px; color:#999; }
.blog-sidebar li a strong { display:block; font-size:16px; font-weight:400; line-height:22px; }

.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:8px; }
.page-share li a:hover { border-color:#1A4AB9; }
.page-share li a img { float:left; height:50px; margin:-1px; }

.simple-list { float:left; width:100%; margin-top:10px; line-height:25px; }
.simple-list ul { width:100%; display:flex; flex-flow:row wrap; }
.simple-list li { width:50%; 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; }

.two-column { margin-top:9px; column-count:2; column-gap:60px; }
.block-two { width:48%; }

.gallery { float:left; width:100%; position:relative; overflow:hidden; }
.gallery ul { width:100%; margin-bottom:20px; }
.gallery li { width:25%; padding:0 5px 10px 5px; position:relative; }
.gallery li a { float:left; width:100%; position:relative; overflow:hidden; color:#FFF; border-radius:5px; }
.gallery li a::after {
	content:"";
	position:absolute;
	top:1px;
	bottom:1px;
	left:1px;
	right:1px;
	background:rgba(0, 0, 0, 0.2) url(../images/icon-zoom.png) no-repeat center / 40px;
	transition:all 0.3s;
	z-index:10;
}
.gallery li a:hover::after { background-color:rgba(0, 0, 0, 0.0); }
.gallery li a section { float:left; width:100%; position:relative; overflow:hidden; }
.gallery li a span { float:left; width:100%; background-size:cover; background-position:center top; transform-origin:center bottom; transition:all 1s; }
.gallery li a:hover span { transform:scale(1.07, 1.07); }
.gallery li a span img { float:left; width:100%; }

.certificates { float:left; width:100%; text-align:center; position:relative; z-index:100; overflow:hidden; }
.certificates ul { width:100%; overflow:hidden; display:flex; flex-flow:row wrap; }
.certificates li { width:25%; padding:0 15px; margin-bottom:30px; position:relative; }
.certificates li a { float:left; width:100%; height:100%; padding:29px; border:1px solid #DDD; border-radius:5px; transition:all 0.3s; }
.certificates li a:hover { border-color:#666; }
.certificates li a section { float:left; width:100%; height:220px; display:table; }
.certificates li a section strong { display:table-cell; vertical-align:middle; width:100%; }
.certificates li a section strong img { max-width:100%; max-height:200px; }
.certificates li a article { float:left; width:100%; margin:5px 0 -5px 0; font-weight:600; }

.comment-latest { float:left; width:100%; margin-bottom:-20px; position:relative; }
.comment-latest ul { width:100%; display:flex; flex-flow:row wrap; }
.comment-latest li { width:25%; padding:0 20px; margin-bottom:80px; }
.comment-latest li::after { content:""; float:left; width:100%; height:33px; margin-top:-1px; background:url(../images/box-bottom-2.png) no-repeat 30px 0; }

.comment-latest-item { float:left; width:100%; height:100%; padding:29px 29px 4px 29px; border:1px solid #BCC8FF; border-radius:8px; box-shadow:7px 7px 0 rgb(66 98 255 / 5%); overflow:hidden; }
.comment-latest-owner { float:left; width:100%; padding-left:70px; margin-bottom:20px; display:table; }
.comment-latest-owner picture { float:left; width:50px; height:50px; margin-left:-70px; background-color:#A0B0FF; border-radius:50%; text-align:center; font-family:Merriweather; font-size:20px; color:#FFF; line-height:50px; }
.comment-latest-owner span { width:100%; display:table-cell; vertical-align:middle; color:#1A4AB9; font-weight:600; font-size:16px; }
.comment-latest-text { float:left; width:100%; margin-top:12px; margin-bottom:-12px; font-size:16px; line-height:25px; }

.novarge-partners { float:left; width:100%; position:relative; text-align:center; box-shadow:inset 0 -1px 0 rgba(255,255,255,0.1) }
.novarge-partners ul { width:100%; overflow:hidden; display:flex; flex-flow:row wrap; }
.novarge-partners li { position:relative; flex:1; flex-basis:12.5%; }
.novarge-partners li img { max-width:100%; max-height:100px; opacity:0.6; }
.novarge-partners li:hover img { opacity:1; }

/*	Start LOGIN + SIGN UP	*/

.page-login { width:100%; max-width:640px; margin:0 auto; position:relative; z-index:20; }

.sign-form { float:left; width:100%; }

.sign-form > section { float:left; width:100%; padding-bottom:20px; font-size:16px; }
.sign-form > section .button { width:100%; }
.sign-form > section article { float:left; width:100%; margin-bottom:9px; font-size:14px; font-weight:600; color:#FF7F4C; }
.sign-form > section article::before { content:""; float:left; width:12px; height:2px; margin-top:8px; margin-right:15px; background-color:#FF7F4C; }
.sign-form > section label a { font-weight:600; text-decoration:underline; }
.sign-form > section i { float:left; margin-right:20px; }
.sign-form > section i:last-child { margin-right:0; }

.sign-up { float:left; width:100%; padding:10px 0; text-align:center; position:relative; }
.sign-up ul { width:100%; }
.sign-up li { width:100%; padding-bottom:20px; }
.sign-up li:last-child { padding-bottom:0; }
.sign-up li a { float:left; width:100%; text-align:center; font-size:14px; font-weight:600; color:#FFF; line-height:45px; background-color:#4267b2; border-radius:25px; position:relative; }
.sign-up li a:hover { background-color:#29487d; }
.sign-up li a img { position:absolute; top:0; right:0; height:45px; padding:14px; }

.sign-up section { float:left; width:100%; font-size:18px; text-align:center; color:#999; }
.sign-up section a { font-weight:700; }
.sign-up section a:hover { text-decoration:underline; }

/*	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:#EEE; }
.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; color:#1A4AB9; }
.fancy-title::before { content:""; position:absolute; top:50%; left:0; width:50px; height:2px; margin-top:-1px; background-color:#DDD; }
.fancy-title strong { float:left; padding:0 15px; position:relative; font-weight:700; 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; }

.add-comment-rate { float:left; width:100%; }
.add-comment-rate article { float:left; margin:8px 0 0 15px; font-weight:600; font-size:11px; }
.add-comment-rate li { cursor:pointer; }
.add-comment-rate li img { height:30px; }


/*	Start CONTACT	*/

.accordion { float:left; width:100%; }

.accordion-section-title { float:left; width:100%; padding:13px 15px 15px 45px; margin-bottom:15px; border:1px solid #F0F2F4; border-radius:8px; position:relative; font-size:16px; font-weight:600; color:#000; }
.accordion-section-title:hover { color:#666; }

.accordion-section-title::before , .accordion-section-title::after {
	content:"";
	position:absolute;
	top:50%;
	left:15px;
	width:12px;
	height:2px;
	margin-top:-1px;
	background-color:#CCC;
	transition:all 0.25s;
}
.accordion-section-title::after {
	background-color:#CCC;
	transform:rotate(90deg);
	opacity:1;
}

.accordion-section-title.active { color:#1A4AB9; border-color:#1A4AB9; }
.accordion-section-title.active::before { background-color:#1A4AB9; }
.accordion-section-title.active::after { left:15px; opacity:0; }


.accordion-section-content { float:left; width:100%; padding:10px 20px 20px 45px; margin:-5px 0 10px 0; display:none; position:relative; font-size:16px; line-height:25px; }
.accordion-section-content::before { content:""; position:absolute; top:15px; bottom:25px; left:20px; width:2px; background-color:rgba(0, 0, 0, 0.05); }
.accordion-section-content strong , .accordion-section-content b { color:#151515; font-weight:600; }
.accordion-section-content a { font-weight:600; }

.contact-social { float:right; width:400px; margin-top:-60px; position:relative; z-index:800; text-align:center; }
.contact-social ul { width:100%; }
.contact-social li { width:50%; padding:0 10px; margin-bottom:20px; }
.contact-social li a { float:left; width:100%; padding:20px; border-radius:10px; transition:all 0.3s; }
.contact-social li a.facebook { background-color:#2D88FF; }
.contact-social li a.instagram { background-color:#6C27B3; }
.contact-social li a.youtube { background-color:#FF0000; }
.contact-social li a.email { background-color:#1A4AB9; }
.contact-social li a:hover { background-color:#FFF; box-shadow:0 0 20px rgb(0 0 0 / 15%); }
.contact-social li a img { height:50px; filter:invert(100%) sepia(100%) saturate(100%) hue-rotate(220deg) brightness(1000%) contrast(100%); }
.contact-social li a:hover img { filter:none; }

.contact-info { float:left; width:calc(100% - 400px); position:relative; display:flex; flex-flow:row wrap; }
.contact-info section { float:left; width:50%; padding:0 50px; margin-bottom:30px; position:relative; font-size:18px; line-height:25px; }
.contact-info section:last-child { margin-bottom:0; }
.contact-info section img { position:absolute; top:3px; left:0; height:20px; }
.contact-info section article { display:block; margin-bottom:10px; }
.contact-info section article:last-child { margin-bottom:0; }

.contact-form { float:left; width:100%; max-width:1000px; position:relative; }
.form-item { float:left; width:50%; padding:0 15px 30px 15px; position:relative; }
.form-item:last-child { padding-bottom:0; }
.form-item label { float:left; width:100%; }
.form-item section { float:left; width:100%; font-size:16px; font-weight:600; margin-bottom:-10px; }

.security-code img { float:left; width:120px; height:50px; margin-right:10px; padding:3px; border:1px solid #DDD; background-color:#FFF; border-radius:8px; }
.security-code a.refresh { float:left; width:50px; height:50px; text-indent:-9999px; background:#FFF url(../images/refresh.png) no-repeat center center / 24px; border:1px solid #DDD; border-radius:8px; }
.security-code a:hover.refresh { background-color:#EEE; }

.contact-map { float:left; width:100%; height:480px; padding:7px; border:1px solid #1A4AB9; border-radius:8px; overflow:hidden; }

.account-form-wrap { float:left; width:100%; padding:24px; border:1px solid #EEE; border-radius:8px; background-color:#FFF; }
.account-form .form-item { width:100%; padding-left:0; padding-right:0; }
.account-form .form-item i { float:left; width:35%; padding-top:15px; font-weight:600; position:relative; }
.account-form .form-item em { float:right; width:65%; }
.account-form .form-item em .input { width:75%; }
.account-form .form-item span { float:left; padding-right:15px; }
.account-form .form-item span a { line-height:50px; }
.account-form .form-item span a:hover { text-decoration:underline; }

/*	Start BASKET	*/

.basket-wrap { float:left; width:100%; padding-bottom:120px; margin-top:-60px; }

.basket { float:left; width:100%; font-size:16px; }
.basket ul { width:100%; }
.basket li { width:100%; padding:20px 50px 20px 160px; position:relative; border-bottom:1px solid rgba(0, 0, 0, 0.05); }
.basket li:first-child { height:45px; padding-top:0; padding-bottom:0; line-height:43px; border:1px solid #1A4AB9; color:#1A4AB9; font-weight:600; border-radius:8px; }
.basket li img { float:left; width:130px; height:80px; padding:3px; margin-left:-160px; background-color:#FFF; border-radius:4px; border:1px solid #1A4AB9; }
.basket li div { float:left; height:80px; display:table; position:relative; }
.basket-approve li div { height:40px; }
.basket li div span { display:table-cell; vertical-align:middle; }
.basket li div i { display:block; color:#999; font-size:11px; font-weight:400; }

.basket li .basket-name { width:50%; }
.basket li .basket-unit { width:25%; text-align:center; }
.basket li .basket-unit select { float:none; width:70px; height:40px; display:inline-block; }
.basket li .basket-price { float:right; width:25%; font-weight:700; text-align:center; }

a.basket-delete { position:absolute; top:50%; right:0; width:40px; height:40px; margin-top:-20px; background:url(../images/icon-trash.png) no-repeat center / auto 16px; text-indent:-9999px; transition:all 0.15s; border-radius:50%; }
a:hover.basket-delete { background-color:rgba(0, 0, 0, 0.05); }

.total-price { font-size:17px !important; color:#F06292; }
.color-red { color:#F24134 !important; }
.color-blue { color:#4AA5F4 !important; }

.steps { float:left; width:100%; margin:40px 0 50px 0; position:relative; text-align:center; color:#FFF; }
.steps::before { content:""; position:absolute; top:50%; left:0; right:0; height:2px; margin-top:-1px; background-color:rgb(255 255 255 / 10%); }
.steps ul { width:100%; padding:0 10%; display:flex; flex-flow:row wrap; }
.steps li { flex:1; flex-basis:25%; }
.steps li div { display:inline-block; padding:0 20px; position:relative; font-weight:500; line-height:24px; background-color:#1A4AB9; }
.steps li div::before { content:" "; float:left; width:22px; height:22px; border-radius:50%; border:1px solid rgb(255 255 255 / 30%); }
.steps li div::after { content:""; position:absolute; top:8px; left:28px; width:8px; height:8px; background-color:#FFF; border-radius:50%; opacity:0.15; }
.steps li div span { float:left; padding-left:10px; font-size:12px; }

.steps li.step-current div::before { border-color:#FFF; background-color:#FFC300; }
.steps li.step-current div::after { opacity:1; }
.steps li.step-passed div::before { border-color:#FFF; background:#08D092 url(../images/icon-check-2.png) no-repeat center / auto 9px; }

.shopping-wrap { float:left; width:100%; padding-top:20px; position:relative; }

/*	------------------	*/

.shopping-sidebar { float:right; width:300px; position:relative; }

.shopping-sidebar-box { float:left; width:100%; padding:24px; border:1px solid #1A4AB9; border-radius:8px; background-color:#FFF; }
.shopping-sidebar-summary { float:left; width:100%; margin-top:-5px; }
.shopping-sidebar-summary em { display:block; padding-bottom:10px; margin-bottom:10px; font-size:16px; font-weight:600; color:#151515; border-bottom:1px solid #EEE; }
.shopping-sidebar-summary section { display:block; padding:1px 0; }
.shopping-sidebar-summary section span { float:right; color:#151515; font-weight:700; font-size:14px; }
.shopping-sidebar-summary i { display:block; padding-top:10px; margin-top:10px; border-top:1px solid #EEE; }
.shopping-sidebar-summary strong { display:block; font-size:24px; color:#151515; line-height:30px; }

.shopping-continue { float:left; width:100%; margin:15px 0 0 0; }
.shopping-continue a { float:left; width:100%; height:50px; padding:0 15px 0 25px; background-color:#08D092; font-weight:600; font-size:17px; letter-spacing:1px; line-height:50px; color:#FFF; border-radius:25px; transition:all 0.3s; position:relative; }
.shopping-continue a:hover { background-color:#07BA85; }
.shopping-continue a::after { content:""; float:right; width:25px; height:50px; margin-left:10px; background:url(../images/arrow-white-right.png) no-repeat center / auto 20px; transition:all 0.15s; }
.shopping-continue a:hover::after { background-position:right center; }

.shopping-sidebar-success { margin-top:20px; }
.shopping-sidebar-success .shopping-continue { margin-top:5px; }

.shopping-content { float:left; width:calc(100% - 380px); }

.shopping-title { margin-bottom:10px; }

.small-title { float:left; width:100%; margin:20px 0 10px 0; font-size:14px; font-weight:600; color:#151515; position:relative; text-align:center; }
.small-title::before { content:""; position:absolute; top:50%; left:0; right:0; height:1px; background-color:rgba(0, 0, 0, 0.06); }
.small-title i { display:inline-block; padding:0 15px; background-color:#FFF; position:relative; }
.small-title-grey i { background-color:#F6F9FA; }

.address-item { float:left; width:50%; padding:0 10px; }
.address-box { float:left; width:100%; padding:14px 44px 14px 19px; border:1px solid #4AA5F4; border-radius:8px; position:relative; }
.address-info-box { padding-right:19px; margin-bottom:10px; }
.address-box strong { display:block; font-size:15px; }
.address-box section { display:block; padding:10px 0 15px 0; color:#666; }
.address-info-box section { padding:5px 0 0 0; }

.address-arrow { position:absolute; top:0; bottom:0; right:0; width:30px; background:#F5F5F5 url(../images/arrow-black-down.png) no-repeat center / auto 6px; border-radius:0 5px 5px 0; cursor:pointer; }

.address-box-dropdown { float:left; width:100%; margin-top:10px; border:1px solid #CCC; border-radius:10px; display:none; position:relative; }
.address-box-dropdown::before , .address-box-dropdown::after {
	content:"";
	border-bottom:5px solid transparent;
	border-left:10px solid transparent;
	border-right:10px solid transparent;
	height: 0;
	top:-5px;
	left:20px;
	position: absolute;
	width:0;
	border-bottom-color:#CCC;
}
.address-box-dropdown::after { top:-4px; border-bottom-color:#FFF; }

.address-box-dropdown .address-box { border:0; border-bottom:1px solid #CCC; border-radius:0; cursor:pointer; }
.address-box-dropdown .address-box:first-child { border-radius:10px 10px 0 0; }
.address-box-dropdown .address-box:last-child { border-radius:0 0 10px 10px; }
.address-box-dropdown .address-box:hover { background:#F7F7F7 url(../images/icon-check.png) no-repeat right 19px center / auto 12px; }
.address-box-dropdown .address-box:last-child { border-bottom:0; }

.actions { float:left; width:100%; }
.actions a { float:left; margin-right:20px; font-weight:700; }
.actions a:last-child { margin-right:0; }
.actions a img { float:left; height:20px; padding:2px 0; margin-top:-2px; margin-right:5px; }

.address-new-button { float:left; width:100%; margin-top:20px; border:1px solid #CCC; border-radius:8px; font-weight:700; line-height:48px; text-align:center; cursor:pointer; }
.address-new-button:hover { border-color:#666; }

.vertical-out { width:100%; height:100%; display:table; }
.vertical-in { width:100%; display:table-cell; vertical-align:middle; }

.modal-delivery-active .modal-delivery-address , .modal-invoice-active .modal-invoice-address { transform:scale(1); opacity:1; visibility:visible; }
.modal-delivery-address , .modal-invoice-address { position:fixed; top:0; bottom:0; left:0; right:0; padding:40px; z-index:9999; background-color:rgba(0, 0, 0, 0.4); text-align:center; transition:all 0.3s ease; transform:scale(.5); opacity:0; visibility:hidden; overflow-y:auto; }
.modal-delivery-address .wrap , .modal-invoice-address .wrap { height:100%; padding:0; }

body.modal-delivery-active , body.modal-invoice-active { overflow:hidden; }
body.modal-delivery .modal-delivery-address , body.modal-delivery .modal-invoice-address { display:block; }

.modal-address-form { width:100%; max-width:1000px; padding:10px 30px; margin:0 auto; display:inline-block; border-radius:10px; background-color:#FFF; box-shadow:0 0 80px rgba(0, 0, 0, 0.3); }
.modal-address-form section { float:left; width:50%; padding:0 10px 20px 10px; text-align:left; }
.modal-address-form section > i { display:block; padding-bottom:4px; }
.modal-address-form section > .button { width:200px; border-radius:25px; }

.modal-close { position:fixed; top:5px; right:5px; width:40px; height:40px; background:url(../images/icon-close.png) no-repeat center / 16px; cursor:pointer; z-index:300; }
.modal-close:hover { background-size:12px; }

.choose-payment { float:left; width:100%; padding-bottom:25px; text-align:center; }
.choose-payment ul { width:100%; }
.choose-payment li { width:50%; padding:0 10px; }
.choose-payment li a { float:left; width:100%; font-size:15px; color:#666; font-weight:600; line-height:48px; border:1px solid #E5E5E5; border-radius:8px; position:relative; }
.choose-payment li a:hover { border-color:#8296A5; }
.choose-payment li a.selected { color:#4AA5F4; border-color:#4AA5F4; }
.choose-payment li a.selected::before , .choose-payment li a.selected::after {
	content:"";
	border-top:5px solid transparent;
	border-left:10px solid transparent;
	border-right:10px solid transparent;
	height:0;
	bottom:-5px;
	left:50%;
	position:absolute;
	width:0;
	margin-left:-10px;
	border-top-color:#4AA5F4;
}
.choose-payment li a.selected::after { bottom:-4px; border-top-color:#FFF; }
.choose-payment li a i { position:absolute; top:50%; left:13px; width:24px; height:24px; margin-top:-12px; border-radius:50%; }
.choose-payment li a.selected i { border-color:#4AA5F4; background:url(../images/icon-check.png) no-repeat center / auto 12px; }

.agreement { float:left; width:100%; padding:15px 0 0 0; color:#666; }
.agreement label { float:left; width:100%; margin-bottom:10px; }
.agreement label:last-child { margin-bottom:0; }
.agreement a { font-weight:600; text-decoration:underline; }

.bank-list { float:left; width:100%; }
.bank-list ul { width:100%; }
.bank-list li { width:100%; margin-bottom:10px; }
.bank-list label { float:left; width:100%; padding:14px 14px 14px 209px; border:1px solid #DDD; border-radius:4px; display:table; position:relative; }
.bank-list label:hover { border-color:#999; }
.bank-list label p { position:absolute; left:20px; top:50%; margin-top:-8px; }
.bank-list label img { float:left; width:120px; margin-left:-150px; }
.bank-list label span { width:100%; display:table-cell; vertical-align:middle; color:#666; }
.bank-list label span strong { display:block; font-weight:600; color:#151515; }
.bank-list label span i { display:block; font-size:13px; font-weight:500; }

.bank-eft { float:left; width:100%; padding-top:20px; }
.bank-eft h3 { display:block; padding-bottom:10px; font-size:17px; font-weight:600; color:#F24134; }

.order-success { float:left; width:100%; padding-top:25px; border-top:1px solid #F0F0F0; font-size:15px; text-align:center; line-height:25px; }
.order-success::before { content:""; display:inline-block; width:80px; height:80px; margin-bottom:22px; background:url(../images/icon-smile.png) no-repeat center; background-size:100%; }
.order-success section { float:left; width:100%; }
.order-success strong { color:#151515; }


/*	Start PAGINATION	*/

.pages { float:left; width:100%; padding:0 50px; margin-top:10px; position:relative; font-weight:600; font-size:13px; line-height:38px; text-align:center; }

.page-prev , .page-next { position:absolute; top:0; left:0; }
.page-next { left:auto; right:0; }
.page-prev a , .page-next a { float:left; width:40px; height:40px; background:url(../images/arrow-left.png) no-repeat center / 16px; transition:all 0.25s; border-radius:50%; border:1px solid #FFF; border:1px solid #EEE; text-indent:-9999px; }
.page-next a { background-image:url(../images/arrow-right.png); }
.page-prev a:hover , .page-next a:hover { border-color:#1A4AB9; }

.pages ul { width:100%; margin-bottom:-15px; }
.pages li { float:none; display:inline-block; padding:0 5px; }
.pages li a { float:left; width:40px; height:40px; border:1px solid #EEE; font-weight:600; color:#757575; transition:all 0.1s; border-radius:20px; }
.pages li a:hover { border-color:#999; }
.pages li a.current { color:#1A4AB9; border-color:#1A4AB9; }

.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:#FFC300 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; }

/*	SUB PAGE HERO	*/

.sub-hero { float:left; width:100%; position:relative; background-image:linear-gradient(145deg,#354997,#354997); border-radius:20px; overflow:hidden; }
.sub-hero::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-sub.png) no-repeat center / cover; opacity:0.5; }
.sub-hero-in { float:left; width:100%; padding:60px 0 40px 0; position:relative; }

/*	EDUCATION PAGE + CATEGORY	*/

.education-rate { float:left; width:115px; height:20px; background:url(../images/star.png) repeat-x 0 center / 23px 20px; }
.education-rate em { float:left; height:100%; background:url(../images/star-active.png) repeat-x 0 center / 23px 20px; }
.education-rate em.rate1 { width:20%; }
.education-rate em.rate15 { width:30%; }
.education-rate em.rate2 { width:40%; }
.education-rate em.rate25 { width:50%; }
.education-rate em.rate3 { width:60%; }
.education-rate em.rate35 { width:70%; }
.education-rate em.rate4 { width:80%;}
.education-rate em.rate45 { width:90%;}
.education-rate em.rate5 { width:100%; }

.education-hero-rate a { float:left; }
.education-hero-rate article { float:left; margin:1px 0 -1px 10px; font-size:16px; font-weight:600; }

.education-hero-wrap { float:left; width:100%; position:relative; background-image:linear-gradient(145deg,#0D30CC,#1D46DE); border-radius:20px; overflow:hidden; }
.education-hero-wrap::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-hero.png) no-repeat center / cover; mix-blend-mode:overlay; }
.education-hero { float:left; width:100%; position:relative; color:#FFF; }

.education-right { position:absolute; top:0; bottom:0; right:0; width:calc(50% - 100px); background-size:cover; background-position:center; }
.education-play-video { position:absolute; top:50%; left:50%; width:80px; height:80px; padding:2px; margin:-40px 0 0 -40px; border-radius:50%; background-color:rgb(0 0 0 / 20%); text-indent:-9999px; }
.education-play-video section { float:left; width:100%; height:100%; background:#FFC300 url(../images/icon-play.png) no-repeat 55% center / auto 30px; border-radius:50%; }
.education-play-video:hover section { background-color:#FFCC00; background-size:auto 34px; }

.education-hero-features { position:absolute; top:0; bottom:0; left:50%; width:100px; font-size:12px; line-height:15px; text-align:center; }
.education-hero-features::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background-image:linear-gradient(180deg,rgb(0 0 0 / 0),#000); opacity:0.1; }
.education-hero-features ul { width:100%; position:relative; }
.education-hero-features li { width:100%; }
.education-hero-features li a , .education-hero-features li article { float:left; width:100%; padding:10px 13px; color:#FFF; transition:all 0.25s; border-radius:8px; }
.education-hero-features li a:hover , .education-hero-features li article:hover { background-color:rgb(0 0 0 / 20%); }
.education-hero-features li a img , .education-hero-features li article img { display:inline-block; height:30px; filter:invert(100%) sepia(100%) saturate(100%) hue-rotate(220deg) brightness(1000%) contrast(100%); }
.education-hero-features li a section , .education-hero-features li article section { float:left; width:100%; padding-top:5px; }

.education-left { float:left; width:50%; padding-right:80px; padding-bottom:74px; position:relative; }

.education-hero-title { float:left; width:100%; margin:48px 0 17px 0; position:relative; font-size:36px; font-family:Merriweather; font-weight:700; line-height:40px; }
.education-left .education-hero-rate a { color:#FFF; }

.education-hero-price { float:left; width:100%; margin-top:25px; margin-bottom:30px; position:relative; }

.education-hero-price > div { float:left; height:60px; display:table; }
.education-hero-price > div article { display:table-cell; vertical-align:middle; }

.education-hero-price > div span { margin-bottom:1px; display:inline-block; font-size:17px; font-weight:600; position:relative; }
.education-hero-price > div span::after { content:""; position:absolute; top:50%; left:0; right:0; height:1px; background-color:#FFC300; }

.education-hero-price > div strong { display:block; font-size:30px; font-weight:700; color:#FFC300; line-height:30px; letter-spacing:-1px; position:relative; }
.education-hero-price > section { float:left; padding:14px 0 14px 40px; margin-left:40px; border-left:2px solid rgb(255 255 255 / 10%); font-size:11px; color:rgb(255 255 255 / 60%); line-height:15px; }
.education-hero-price > section strong { display:block; margin-top:2px; font-size:17px; color:#FFF; }

.education-hero-buy { float:left; width:100%; margin-bottom:25px; }
.add-to-basket { float:left; }
.add-to-basket a {
	float:left;
	width:100%;
	height:50px;
	padding:0 65px 0 50px;
	background-color:#08D092;
	color:#FFF;
	font-size:17px;
	font-weight:700;
	line-height:50px;
	letter-spacing:2px;
	text-align:center;
	position:relative;
	transition:all 0.3s;
	border-radius:25px;
	box-shadow:0 2px 0 rgb(0 0 0 / 20%);
}
.add-to-basket a:hover { background-color:#07BA85; }
.add-to-basket a::after { content:""; position:absolute; top:15px; right:20px; width:20px; height:20px; background:url(../images/arrow-white-right.png) no-repeat center / auto 20px; transition:all 0.3s; }

.buying-options { float:left; margin-left:30px; position:relative; }
.buying-options section { float:left; padding:8px 30px 9px 0; margin-right:30px; border-right:2px solid #EEE; color:rgb(255 255 255 / 60%); font-size:12px; letter-spacing:1px; line-height:15px; }
.buying-options section:last-child { padding-right:0 !important; margin-right:0 !important; border-right:0; }
.buying-options section strong { display:block; margin-top:4px; font-size:17px; color:#FFF; }

.education-hero-count { float:left; width:100%; padding-left:30px; position:relative; background:url(../images/icon-student.png) no-repeat 0 center / 16px; }

.education-advantages { float:left; width:100%; padding:40px 0; position:relative; box-shadow:inset 0 -1px 0 rgb(0 0 0 / 5%); z-index:200; }
.education-advantages ul { width:100%; }
.education-advantages li { width:25%; padding:0 10px 0 70px; position:relative; display:table; font-size:16px; }
.education-advantages li:last-child { border-right:0; }
.education-advantages li img { float:left; height:40px; margin-left:-60px; }
.education-advantages li section { width:100%; display:table-cell; vertical-align:middle; }

.education-tab-out { float:left; width:100%; position:relative; z-index:1100; }
.education-tab-wrap { float:left; width:100% !important; position:relative; z-index:90; overflow:hidden; transition:all 0.3s; }
.education-tab { float:left; width:100%; }
.education-tab li { width:100%; padding-bottom:10px; }
.education-tab li:last-child { padding-bottom:0; }
.education-tab li a { float:left; width:100%; padding:14px 29px; position:relative; border:1px solid #EEE; color:#333; letter-spacing:1px; text-align:right; transition:all 0.25s; border-radius:8px; }
.education-tab li a:hover { border-color:#1A4AB9; }
.education-tab li a.active { color:#1A4AB9; font-weight:600; border-color:#1A4AB9; }
.education-tab li a.active::after { content:""; position:absolute; top:12px; bottom:12px; right:0; width:2px; background-color:#1A4AB9; }

.education-container { float:left; width:100%; position:relative; }
.education-content { float:right; width:calc(100% - 380px); margin-top:-120px; position:relative; }
.education-sidebar { float:left; width:300px; position:relative; }

.education-summary { float:left; width:100%; margin-top:-11px; position:relative; font-size:16px; line-height:30px; letter-spacing:0.5px; }

.education-packs { float:left; width:100%; position:relative; }
.education-packs .inner-15 { display:flex; flex-flow:row wrap; }
.e-pack-wrap { float:left; width:33.33334%; padding:0 15px; margin-bottom:30px; }

.e-pack-item { float:left; width:100%; height:100%; padding:24px; border:1px solid #F0F2F4; border-radius:8px; }
.e-pack-item article { float:left; width:100%; margin:-5px 0 10px 0; font-size:14px; font-weight:600; color:#1A4AB9; letter-spacing:1px; }
.e-pack-item ul { width:100%; margin-bottom:-5px; }
.e-pack-item li { width:50%; }

.education-requirements { float:left; width:100%; font-size:15px; }
.education-requirements ul { width:100%; display:flex; flex-flow:row wrap; }
.education-requirements li { width:33.33334%; padding:0 15px 30px 15px; }
.education-requirements li section { float:left; width:100%; height:100%; padding:14px 19px; border:1px solid #EEE; border-radius:8px; display:flex; align-items:center; }
.education-requirements li section img { float:left; width:100%; }

.educator-about { float:left; width:100%; padding:59px; margin-top:60px; border:1px solid #F0F2F4; position:relative; font-size:16px; line-height:30px; border-radius:8px; }
.educator-photo { float:left; width:240px; margin:-120px 60px 30px 0; position:relative; }
.educator-photo img { float:left; width:100%; border-radius:40px 40px 40px 0; }
.educator-about .page-title { float:none; width:auto; display:inline-block; }
.educator-text { margin-top:-11px; }

.comments-outer { float:left; width:100%; position:relative; }
.comments-sidebar { float:right; width:300px; padding:29px; position:relative; border:1px solid #1A4AB9; border-radius:8px; }
.comments-right-block { float:left; width:calc(100% - 340px); position:relative; }

.comment-average-rate { float:left; width:100%; position:relative; }
.comment-average-rate article { float:left; width:100%; margin:-10px 0 8px 0; font-size:14px; font-weight:600; color:#1A4AB9; letter-spacing:1px; }
.comment-average-rate strong { float:left; width:90px; margin-top:-8px; font-size:70px; color:#000; line-height:70px; letter-spacing:-1px; }
.comment-average-rate section { float:right; width:calc(100% - 105px); }
.comment-average-rate section i { float:left; width:100%; padding:7px 0 5px 0; }

.add-comment { float:left; width:100%; position:relative; text-align:center; }
.add-comment a { float:left; width:100%; border:1px solid #1D4CBA; font-weight:600; letter-spacing:1px; line-height:38px; border-radius:20px; transition:all 0.25s; }
.add-comment a:hover { background-color:#1D4CBA; color:#FFF; }
.add-comment a span { display:inline-block; height:38px; padding-right:25px; background:url(../images/arrow-right.png) no-repeat right center / 16px; }
.add-comment a:hover span { background-image:url(../images/arrow-white-right.png); }

.comment-rate-table { float:left; width:100%; margin:2px 0 18px 0; position:relative; }
.comment-rate-bar { float:left; width:100%; padding:6px 50px 5px 0; margin:2px 0; position:relative; font-size:14px; }
.comment-rate-bar strong { position:absolute; top:1px; right:0; width:50px; font-size:12px; text-align:right; }
.comment-rate-bar section { float:left; width:100%; background-color:#F0F2F4; border-radius:5px; overflow:hidden; }
.comment-rate-bar section em { float:left; height:10px; background-color:#08D092; border-radius:5px; }
.comment-rate-bar section em.bar4 { background-color:#B7EA83; }
.comment-rate-bar section em.bar3 { background-color:#F6D757; }
.comment-rate-bar section em.bar2 { background-color:#FBB851; }
.comment-rate-bar section em.bar1 { background-color:#EA565B; }

.boxed-title { float:left; width:100%; padding:0 20px; margin-bottom:30px; position:relative; background-color:#F3F3F3; border-radius:4px; }
.boxed-title strong { float:left; padding:14px 0 16px 0; font-size:16px; font-weight:600; color:#4262FF; box-shadow:inset 0 -2px 0 #4262FF; }

.comments-wrap { float:left; width:100%; position:relative; }

.comment-detail { float:left; width:100%; padding:29px; margin-bottom:30px; position:relative; border:1px solid #F0F2F4; border-radius:8px; }

.comment-name { float:left; width:100%; margin:-10px 0 15px 0; color:#999; }
.comment-name strong { float:left; font-weight:600; color:#151515; }
.comment-name i { float:right; }

.comment-rate { float:left; width:100%; }
.comment-box { float:left; width:100%; margin-top:18px; position:relative; color:#000; line-height:25px; }
.comment-benefit { float:left; width:100%; margin:22px 0 -5px 0; position:relative; }
.benefit-yes , .benefit-no { float:left; padding-left:23px; margin-right:20px; color:#08D092; font-weight:600; line-height:30px; cursor:pointer; background:url(../images/icon-like.png) no-repeat 0 center / auto 20px; }
.benefit-no { background-image:url(../images/icon-dislike.png); color:#EA565B; }

.price-fixed-wrap { position:fixed; top:auto !important; left:0; right:0; bottom:-105px; background-color:rgba(255,255,255,0.8); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); box-shadow:0 0 20px rgba(0,0,0,0.1); z-index:8990; transition:all 0.3s; }
.price-fixed-wrap.is-sticky { top:auto !important; bottom:0; }
.price-fixed { float:left; width:100%; padding:20px 0; position:relative; display:flex; align-items:center; }
.price-fixed picture { float:left; width:165px; height:100px; margin:-20px 0; box-shadow:0 -2px 0 #1B49B9; overflow:hidden; }
.price-fixed picture img { height:100%; object-fit:cover; }

.price-fixed .education-hero-price { width:auto; margin:0 0 0 20px; }
.price-fixed .education-hero-price > section { border-color:#EEE; color:#666; }
.price-fixed .education-hero-price > section strong , .price-fixed .buying-options section strong { color:#000; }
.price-fixed .education-hero-price > div strong { font-size:24px; }
.education-hero-price > div span::after { background-color:#666; }

.price-fixed-form { float:right; flex:1; padding-left:30px; padding-right:100px; margin-left:auto; position:relative; }
.price-fixed-form section { float:left; width:33.33334%; padding-right:10px; }
.price-fixed-form section .input { height:44px; padding:0 13px; border-color:#999; line-height:44px; }
.price-fixed-form .button { position:absolute; top:0; right:0; width:100px; height:44px; padding:0; font-size:14px; font-weight:700; line-height:44px; }
.price-fixed-form .button::after { display:none; }

.egitimbilgi-section { float:left; width:100%; padding-top:120px; position:relative; }
.egitimbilgi-section:last-child { padding-bottom:0; margin-bottom:0; box-shadow:none; }

.category-hero { background-color:#F8F8F8; border-radius:8px; overflow:hidden; }
.category-hero picture { position:absolute; top:20px; left:0; right:80px; bottom:0; text-align:right; }
.category-hero picture img { height:100%; }
.category-hero::after { content:""; position:absolute; top:0; left:0; right:0; bottom:0; background:url(../images/waves.png) no-repeat 0 bottom / 100% auto; opacity:0.03; }
.category-hero .wrap { z-index:100; }
.category-hero-content { float:left; width:60%; padding:40px 0; }

.filter-icon { display:none; }

.education-filter { float:left; width:100%; margin:-5px 0 35px 0; position:relative; text-align:center; }
.education-filter section { display:inline-block; padding-left:30px; }
.filter-item { float:left; width:200px; padding-right:30px; margin-right:30px; border-right:2px solid #F1F1F1; text-align:left; }
.filter-item:last-child { margin-right:0; border-right:0; }
.filter-item span { display:block; color:#888; }
.filter-item .input { height:40px; padding:0; margin-bottom:-10px; font-size:15px; font-weight:600; color:#000; border:0; line-height:40px; background-color:transparent; }
.filter-item .input:focus { box-shadow:none; }

.education-list { float:left; width:100%; position:relative; text-align:center; }
.education-list ul { width:100%; display:flex; flex-flow:row wrap; }
.education-list li { width:25%; padding:0 20px; margin-bottom:40px; }
.my-educations li { width:33.33334%; }

.education-item { float:left; width:100%; height:100%; padding:19px; position:relative; border-radius:10px; border:1px solid #DDE4F5; overflow:hidden; transition:all 0.4s; display:flex; flex-direction:column; flex:1 1; }
.education-item:hover { border-color:#1A4AB9; box-shadow:0 7px 30px rgb(26 74 185 / 20%) }

.e-list-picture { float:left; width:100%; position:relative; text-align:center; transition:all 0.4s; }
.e-list-picture picture { float:left; width:100%; position:relative; border-radius:6px; overflow:hidden; }
.e-list-picture img { float:left; width:100%; }

.e-list-content { float:left; width:100%; padding:5px; margin-top:auto; position:relative; }
.e-list-title { float:left; width:100%; padding:0 5px; margin:16px 0 14px 0; font-size:18px; font-weight:600; color:#000; line-height:25px;}
.e-list-content .education-hero-rate { float:left; width:100%; margin:12px 0 18px 0; }

.e-list-rate .education-rate { float:none; display:inline-block; }

.e-list-price { float:left; width:100%; margin:23px 0 27px 0; position:relative; font-weight:600; font-size:20px; }
.e-list-price section { display:inline-block; }
.e-list-price span { float:left; margin-right:10px; color:#999; position:relative; }
.e-list-price span::after { content:""; position:absolute; top:50%; left:0; right:0; height:1px; background-color:#666; }
.e-list-price strong { float:left; color:#08D092; }

.e-list-go { float:left; width:100%; border:1px solid #1D4CBA; font-weight:600; letter-spacing:1px; line-height:38px; border-radius:20px; transition:all 0.25s; }
.education-item:hover .e-list-go { background-color:#1D4CBA; color:#FFF; }
.e-list-go span { display:inline-block; height:38px; padding-right:25px; background:url(../images/arrow-right.png) no-repeat right center / 16px; }
.education-item:hover .e-list-go span { background-image:url(../images/arrow-white-right.png); }



@media only screen and (max-width:1640px) {

	.outer { padding:0 40px; }
	.wrap { width:1380px; }

	.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; }

	.slider-hero-title article { font-size:30px; line-height:40px; }
	.slider-hero-title strong { font-size:41px; line-height:50px; }

	.education-list .inner-24 { margin:0 -15px; }
	.education-list li { padding:0 15px; margin-bottom:30px; }

	.egitimbilgi-stats { padding:0 100px; margin-bottom:20px; }

	.education-advantages li { font-size:14px; }
	.education-content { width:calc(100% - 340px); }
	.educator-about { padding:39px; margin-top:30px; }
	.educator-photo { margin:-80px 40px 20px 0; }

	.hero-screen { padding:60px 80px; }

	.slider-reviews-left::before { height:80px; }
	.slider-reviews-left strong { margin-top:160px; }
	.review-item { padding:40px; }

}


@media only screen and (max-width:1440px) {

	.wrap { width:1260px; }

	#nav { padding:30px; }
	#nav > ul li span { padding:20px; }

	.egitimbilgi-stats { padding:0; }

	.breadcrumb { padding-top:20px; }
	.education-hero-title { margin-top:28px; }
	.education-left { padding-right:40px; padding-bottom:54px; }

	.education-right { padding-left:40px; }
	.education-sidebar { width:260px; }
	.education-content { width:calc(100% - 300px); }

	.education-requirements .inner-15 { margin:0 -10px; }
	.education-requirements li { padding:0 10px 20px 10px; width:50%; }

	.teachers li { width:25%; }

	.header-search-content { margin:0 40px; }
	.header-links li { padding-left:30px; }
	.header-links::after { margin:0 30px; }

	.slider-reviews { width:140%; }

}


@media only screen and (max-width:1280px) {

	.outer { padding:0; }
	.wrap { width:100%; max-width:1040px; }

	.header-links { margin-right:20px; }
	.header-links::after { display:none; }
	.header-links li { padding-left:20px; }
	.e-pack-wrap { width:50%; }

	.header-search-content { margin:0 25px; }

	#nav > ul li span > section a { width:calc(50% - 10px); }

	ul.slick-dots { padding:20px 0; }

	.join-us { padding:25px 0 75px 0; }
	.join-us article { padding-bottom:25px; }

	.hero-title { padding-left:0; padding-right:0; }

	.sub-hero-in { padding:40px 0 20px 0; }

	.education-list li , .blog li { width:33.33334%; }

	.breadcrumb { padding-top:0; }
	.education-left { padding-bottom:34px; }
	.education-hero-title { margin:20px 0; font-size:27px; line-height:30px; }

	.education-play-video { width:50px; height:50px; margin:-25px 0 0 -25px; }
	.education-play-video section { background-size:auto 20px !important; }

	.comments-sidebar , .comments-right-block { width:100%; }
	.comments-sidebar { margin-bottom:30px; }

	.blog-content { width:100%; }
	.blog-sidebar { width:100%; margin-top:30px; }
	.blog-photo { margin-bottom:30px; }

	.contact-social { width:100%; margin-top:20px; }
	.contact-social li { width:25%; }
	.contact-social li a { padding:10px; }

	.contact-info , .account-form .form-item em .input { width:100%; }

	.home-reviews h3 { top:99px; font-size:26px; line-height:30px; }

	.teachers .inner-24 { margin:0 -15px; }
	.teachers li { padding:0 15px; }

	.shopping-content { float:left; width:calc(100% - 340px); }

	.steps { margin:20px 0 30px 0; }
	.steps ul { padding:0; }

	.hero-screen { border-radius:0 16px 16px 0; }
	.slider-top-reviews { border-radius:16px 0 0 16px; }
	.sub-hero { border-radius:0; }

	.slider-reviews .slick-list { padding-left:30px; }
	.slider-reviews-item { padding-right:30px; }

	.egitimbilgi-stats .inner-20 { margin:0 -10px; }
	.egitimbilgi-stats li { padding:0 10px; }

	#nav , .education-hero-wrap { border-radius:0; }

	.slider-top-review-item section { padding:40px 20px; }
	.slider-top-reviews ul.slick-dots { padding:20px 15px; }

	.mask { bottom:-1px; }

	.egitimbilgi-stats-wrap::before { opacity:0.5; }

	#logo a { width:40px; overflow:hidden; }

}


@media only screen and (max-width:1240px) {

	.slider-hero-title { top:40px; bottom:50%; }
	.slider-hero-title strong::before { background-position:center 0; }
	.slider-hero-title article { width:100%; padding-top:20px; font-size:24px; line-height:30px; text-align:center; }
	.slider-hero-title strong { font-size:30px; line-height:35px; }

	.hero-screen-left { width:calc(68% - 10px); }
	.hero-screen-right { width:32%; }
	.hero-screen { padding:30px 50px; }
	.hero-screen-title { padding-top:7px; padding-bottom:28px; }

}


@media only screen and (max-width:1023px) {

	.egitimbilgi { padding-top:0; }
	.wrap { float:left; }

	.header { float:left; width:100%; position:relative; top:auto; left:auto; right:auto; height:125px; padding:15px; background-color:#FFF; }
	.header .wrap { padding:0; }

	#logo { flex:1; }
	#logo a { width:auto; }

	.header-search-content { margin:0; flex:auto; position:absolute; left:0; right:0; top:73px; }
	.header-right { margin-left:auto; }

	.nav-icon { height:70px; margin:-15px 20px -15px 0; line-height:70px; }
	.nav-icon-close::before { left:-20px; right:-20px; }

	#nav::before , #nav > ul li span > section strong , .header-links , .breadcrumb { display:none; }
	#nav-wrap { position:absolute; top:65px; z-index:9100; }
	#nav-wrap .wrap { padding:0 !important; }
	#nav { padding:20px; }
	#nav li { width:100%; margin-bottom:15px; }
	#nav li:last-child { margin-bottom:0; }
	#nav li > a { padding:9px; border:1px solid #FFF; border-radius:25px; }
	#nav > ul li span { float:left; width:100%; max-height:initial; position:relative; top:auto; left:auto; right:auto; bottom:auto; padding:15px 10px; background:none; box-shadow:none; }

	.slider-hero-title { top:0; }

	.e-pack-item , .comments-sidebar , .comment-detail { padding:19px; }
	.comment-average-rate article , .comment-name { padding-top:5px; }

	.educator-about { padding:24px; }

	.education-advantages { padding:30px 0 10px 0; }
	.education-advantages li { width:50%; margin-bottom:20px; }

	.education-left-wrap { margin:0 -30px; }
	.education-left { width:100%; padding-top:10px; padding-right:100px; }
	.education-right { float:left; width:100%; height:50vh; min-height:300px; position:relative; top:auto; bottom:auto; right:auto; }
	.education-hero-features { top:50vh; right:0; left:auto; }

	.footer { padding-top:30px; }
	.footer-connect { margin-top:20px; }

	.copyright { padding:30px 0; }
	.copyright .w100 { margin:5px 0; }

	.education-sidebar { display:none; }
	.education-content { width:100%; margin-top:0; }
	.egitimbilgi-section { padding-top:0; padding-bottom:50px; }

	.educator-about { padding:0; margin-top:0; border:0; }
	.educator-photo { margin-top:-10px; }

	.page-title { padding:23px 0 17px 0; font-size:27px; line-height:35px; }
	.education-summary { margin-top:-1px; }
	.page-photo { margin-top:10px; }

	.education-list li , .blog li { width:50%; }

	.blog-wrap { padding-left:80px; }
	.date { margin:5px 0 25px 0; }

	.two-column { column-count:1; column-gap:0; }

	.contact-info section { font-size:16px; }

	.price-fixed-wrap { bottom:-62px; transition:all 0.6s; }
	.scroll-mobile .price-fixed-wrap { bottom:0; }
	.price-fixed-wrap .wrap { padding:0; }
	.price-fixed { padding:10px; border-top:2px solid #1A4AB9; }
	.price-fixed picture , .price-fixed .education-hero-price > section , .price-fixed .buying-options { display:none; }
	.price-fixed .education-hero-price { height:40px; margin-left:5px; }
	.price-fixed .education-hero-price div { height:40px; }
	.price-fixed .education-hero-price div span { margin-bottom:0; font-size:14px; }
	.price-fixed .education-hero-price div strong { font-size:17px; line-height:20px; letter-spacing:0; }
	.price-fixed .education-hero-buy { width:50%; margin-top:0; }
	.price-fixed .add-to-basket { width:100%; }
	.price-fixed .add-to-basket a { height:40px; line-height:40px; }
	.price-fixed .add-to-basket a::after { top:10px; right:15px; }

	.home-reviews h3 { float:left; width:100%; margin:46px 0 14px 0; position:static; }
	.home-reviews::before { top:30px; right:-30px; }
	.home-reviews ul { padding:0; margin-bottom:0; }
	.home-reviews li { width:50% !important; margin-top:0 !important; }

	.home-reviews .link-all { position:static; width:100%; }

	.teachers li { width:33.33334%; }

	.shopping-title { margin-bottom:5px; }
	.shopping-sidebar { width:100%; }
	.shopping-content { width:100%; padding-bottom:20px; }

	.hero-screen-left { width:100%; }
	.hero-screen { padding:30px 40px 50px 40px; border-radius:0; }
	.hero-screen-title { font-size:41px; line-height:50px; }
	.hero-screen-title span { display:initial; }

	.hero-screen-right { width:100%; padding:0 30px; margin-top:-30px; }
	.slider-top-reviews { height:400px; border-radius:12px; }

	.home-reviews-out { padding-top:0; }
	.home-reviews-out::before { top:50px; }

	.slider-reviews-left { float:left; width:50%; position:relative; top:auto; bottom:auto; left:auto; }
	.slider-reviews-left::before { top:0; height:40px; }
	.slider-reviews-left strong { margin-top:60px; }

	.slider-reviews { padding-left:0; padding-bottom:30px; }
	.slider-reviews .slick-list { padding-left:0; padding-top:20px; padding-bottom:30px; overflow:initial; }
	.slider-reviews .slick-prev , .slider-reviews .slick-next { bottom:-35px; }

	.review-item { padding:25px; }
	.review-text { margin-bottom:-5px; }
	.review-avatar picture { width:48px; height:48px; font-size:23px; line-height:48px; }
	.review-avatar span { padding-left:15px; }

	.block-flexed { display:block; }
	.flex-left , .flex-right { width:100%; padding-right:0; }

	.copyright section a { padding:5px 0; margin:0 10px; }

}





@media only screen and (max-width:767px) {

	.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; }

	.header-right , .header-cart , .header-account { position:static; }
	.header-icon { width:40px; padding:0 !important; text-indent:-9999px; }
	.header-account-icon::before { background-image:url(../images/icon-user.png); }
	.header-cart { margin-left:15px; }
	.header-icon::before { width:100% !important; }
	.header-box { top:50px; left:-5px; right:-5px; width:auto; border-radius:8px; }
	.header-box::before , .header-box::after { right:15px; }
	.header-cart-content::before , .header-cart-content::after { right:70px; }

	.nav-icon-close::before { left:-10px; right:-10px; }

	.slider-hero ul.slick-dots { bottom:0; background-image:linear-gradient(180deg,rgb(0 0 0 / 0),rgb(0 0 0 / 40%)); }

	.join-us { padding:5px 0 45px 0; }

	.education-left { padding-right:0; padding-bottom:19px; }
	.education-hero-features { float:left; width:100%; position:static; box-shadow:inset 0 1px 0 rgb(255 255 255 / 6%); }
	.education-hero-features::before { display:none; }
	.education-hero-features li { width:33.33334%; }
	.education-hero-features li a , .education-hero-features li article { padding:15px 7px 15px 50px; display:table; text-align:left; }
	.education-hero-features li a img , .education-hero-features li article img { float:left; margin-left:-35px; }
	.education-hero-features li a section , .education-hero-features li article section { float:none; padding-top:0; display:table-cell; vertical-align:middle; }

	.education-advantages { padding-bottom:0; }

	.education-hero-price { margin-top:20px; margin-bottom:20px; }
	.education-hero-price > div { height:50px; }

	.education-hero-price > div strong { font-size:24px; letter-spacing:0; }
	.education-hero-price > section { padding:9px 0 9px 20px; margin-left:20px; }

	.comments-sidebar , .comment-detail { margin-bottom:20px; }

	.sub-hero .page-about { display:none; }
	.sub-hero-in { padding-top:25px; }

	.filter-icon {
		float:left;
		width:100%;
		height:45px;
		margin-bottom:20px;
		font-weight:600;
		line-height:43px;
		letter-spacing:2px;
		color:#1A4AB9;
		cursor:pointer;
		position:relative;
		background:#FFF url(../images/icon-filter.png) no-repeat 10px center / auto 20px;
		z-index:90;
		display:block;
		text-align:center;
		border:1px solid #1A4AB9;
		border-radius:10px;
	}

	.filter-icon::after { content:""; position:absolute; top:0; bottom:0; right:14px; width:14px; background:url(../images/arrow-down.png) no-repeat center / 14px auto; transition:all 0.25s; }

	.filter-icon-close { border-color:#EA565B; color:#EA565B; }
	.filter-icon-close::after { transform:rotate(180deg); }

	.education-filter { margin-bottom:25px; display:none; }
	.education-filter section { float:left; width:100%; padding-left:0; }
	.filter-item { width:100%; padding:19px 4px 14px 19px; margin-bottom:10px; margin-right:0; position:relative; border-radius:10px; border:1px solid #DDE4F5 !important; }
	.filter-item span { line-height:10px; }

	.egitimbilgi-stats-wrap { background:none; }
	.egitimbilgi-stats { margin:0; }
	.egitimbilgi-stats .inner-20 { margin:0 -5px; }
	.egitimbilgi-stats li { width:50%; padding:0 5px; margin-bottom:10px; }
	.egitimbilgi-stats li section { padding:15px 10px; }

	.hero-title { padding:39px 0 21px 0; font-size:33px; line-height:40px; }
	.hero-title span { margin:12px 0 8px 0; font-size:27px; line-height:40px; }

	.contact-info section { width:100%; padding-right:0; margin-bottom:20px; }
	.contact-social { margin-top:40px; }
	.contact-social li a { padding:0; }
	.contact-map { height:360px; }

	.home-reviews::before { top:20px; right:-20px; }
	.home-reviews ul { padding-right:0; margin-bottom:10px; }
	.home-reviews li { width:100% !important; margin-bottom:20px; }
	.home-reviews li a { padding:20px; }
	.review-text { height:auto; max-height:125px; margin-top:7px; }

	.blog .inner-20 { margin:0 -12px; }
	.blog li { padding:0 12px; }

	.home-reviews-out { padding-bottom:35px; }

	.header-apply-icon::before { background-position:center; }

}



@media only screen and (max-width:640px) {

	#nav > ul li span { padding:10px 0; }
	#nav > ul li span > section a { width:100%; margin:0 0 10px 0; font-size:14px; white-space:initial; }

	.footer-block { width:100%; }
	.footer-connect { height:auto; }
	.footer-secure { float:left; width:100%; height:auto; }
	.footer-secure img { max-width:100%; height:auto; max-height:40px; }
	.footer-social { float:left; width:100%; margin-top:20px; padding-left:0; margin-left:0; border-left:0; }
	.footer-social ul { float:none; display:inline-block; }

	.e-pack-wrap { width:100%; margin-bottom:20px; }
	.education-requirements li { width:100%; padding-bottom:10px; }
	.education-requirements li section { padding:9px 14px; }

	.education-list li , .blog li { width:100%; }

	.blog-wrap { padding-left:0; }
	.page-share { float:left; width:100%; margin-bottom:20px; position:static; }
	.page-share ul { width:100%; }
	.page-share li { margin-right:15px; }

	.teachers li { width:50%; }

	.page-photo { width:50%; padding:0 0 15px 20px; }

	.shopping-wrap { padding-top:10px; }
	.basket ul { border-top:1px solid rgba(0, 0, 0, 0.05) }
	.basket li { padding:15px 45px 15px 90px; }
	.basket li:first-child { display:none; }
	.basket li img { width:75px; height:50px; margin-left:-90px; }
	.basket li div { width:100% !important; height:auto; }
	.basket li .basket-name { margin:3px 0 4px 0; }
	.basket li .basket-price { float:left; width:auto !important; }
	.basket li .basket-price::before { content:"Fiyat :"; float:left; margin-right:5px; color:#999; font-weight:400; }
	.basket li .basket-unit { width:auto !important; margin-right:15px; }
	.basket li .basket-unit::before { content:"Adet :"; float:left; margin-right:5px; color:#999; font-weight:400; }
	.basket li div span { float:left; }

	.basket-total { width:100%; padding-right:0; margin-top:-20px; font-size:15px; }
	.basket-buy { width:100%; padding-left:0; }
	.basket-buy li a { height:40px; line-height:40px; }

	.order-info section { width:100%; margin-right:0; }

	.shopping-sidebar-box , .account-form-wrap { padding:19px; }

	.account-form .form-item i { width:100%; padding-top:0; padding-bottom:10px; margin-top:-7px; }
	.account-form .form-item em { width:100%; margin-bottom:7px; }
	.account-form .form-item:last-child em { margin-bottom:0; }

	.home-reviews-out::before { width:33%; border-radius:12px 0 0 12px; }

	.slider-reviews { width:calc(200% + 20px); }
	.slider-reviews-item { padding-right:20px; }
	.review-item , .review-item::after { border-radius:10px; }
	.review-avatar span { font-size:18px; }
	.review-avatar span i { font-size:12px; }

	.egitimbilgi-stats-wrap::before { background-size:220% auto; }

	.my-fancy { padding:20px !important; }
	.fancy-form .item , .fancy-form .item .button { width:100%; }

}



@media only screen and (max-width:540px) {

	#logo a { width:150px; overflow:hidden; }
	#logo img { padding:0; }
	.nav-icon section { font-size:14px; font-weight:700; letter-spacing:0.5px; }

	.add-to-basket , .buying-options section , .education-advantages li { width:100%; }
	.buying-options { width:100%; margin:10px 0 -10px 0; text-align:center; }

	.slider-hero-title article , .slider-hero-title strong { font-size:18px; line-height:25px; }
	.slider-hero-title strong { padding:21px 0 0 0; }

	.form-item { width:100%; padding-bottom:20px; }

	.steps .inner { margin:0 -20px; }
	.steps::before { left:-20px; right:-20px; }
	.steps li div { padding:0 10px; }
	.steps li div::after { left:18px; }
	.steps li div span { padding-left:5px; font-size:9px; }

	.hero-screen { padding:20px 30px 50px 30px; }
	.hero-screen-title { font-size:31px; line-height:40px; }
	.hero-screen-tags { width:calc(100% + 12px); margin-top:-10px; }
	.hero-screen-tags li { margin:0 12px 12px 0; }
	.hero-screen-tags li a { padding:10px 18px; }

	.price-fixed-wrap { display:none; }

}



@media only screen and (max-width:440px) {

	#logo a { width:40px; }

	.education-hero-features li a , .education-hero-features li article { font-size:11px; }

	.teachers .inner-24 { margin:0 -8px; }
	.teachers li { padding:0 8px; }
	.teachers li a strong { margin:17px 0 -6px 0; }

}



@media only screen and (max-width:374px) {

	#logo a { width:40px; }

}
.gallery-swiper-wrapper { float:left; width:100%; position:relative; overflow:hidden; }
.gallery-swiper-container { float:left; width:100%; position:relative; }

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	list-style: none;
	padding: 0;
	z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.swiper-container-multirow > .swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
	height: auto
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
	-webkit-scroll-snap-type: x mandatory;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
	-webkit-scroll-snap-type: y mandatory;
	-ms-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: top .2s, -webkit-transform .2s;
	transition: top .2s, -webkit-transform .2s;
	transition: transform .2s, top .2s;
	transition: transform .2s, top .2s, -webkit-transform .2s
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: left .2s, -webkit-transform .2s;
	transition: left .2s, -webkit-transform .2s;
	transition: transform .2s, left .2s;
	transition: transform .2s, left .2s, -webkit-transform .2s
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: right .2s, -webkit-transform .2s;
	transition: right .2s, -webkit-transform .2s;
	transition: transform .2s, right .2s;
	transition: transform .2s, right .2s, -webkit-transform .2s
}

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-red {
	--swiper-pagination-color: #dc3545
}

.swiper-pagination-white {
	--swiper-pagination-color: #fff
}

.swiper-pagination-black {
	--swiper-pagination-color: #000
}

.swiper-pagination-gray10 {
	--swiper-pagination-color: #1a1a1a
}

.swiper-pagination-gray70 {
	--swiper-pagination-color: #b3b3b3
}

.swiper-pagination-gray95 {
	--swiper-pagination-color: #f2f2f2
}

.swiper-pagination-lock {
	display: none
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background:#FFC000;
	border-radius:0;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

@-webkit-keyframes bs-notify-fadeOut {
	0% {
		opacity: .9
	}
	100% {
		opacity: 0
	}
}

@keyframes bs-notify-fadeOut {
	0% {
		opacity: .9
	}
	100% {
		opacity: 0
	}
}


.c-scrollbar {
	z-index: 1080
}

.c-scrollbar_thumb {
	background-color: gray
}

.swiper-scrollbar {
	background-color: rgba(0, 0, 0, 0.1);
	cursor: pointer !important;
	border-radius: 0
}

.swiper-scrollbar:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	right: 0;
	bottom: -5px;
	z-index: -1
}

.swiper-scrollbar-drag:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	right: 0;
	bottom: -5px;
	z-index: -1
}

.swiper-container-horizontal > .swiper-scrollbar {
	left: 0;
	right: 0;
	width: auto;
	height: 2px;
	bottom: 1px
}

.swiper-gallery .swiper-container { padding-bottom:40px; overflow:visible; }

.swiper-gallery .swiper-container {
	will-change: transform
}

[data-scroll-container] .swiper-gallery .swiper-container {
	opacity: .001;
	-webkit-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition: opacity .4s, -webkit-transform .1s cubic-bezier(.215, .61, .355, 1) .4s;
	transition: opacity .4s, -webkit-transform .1s cubic-bezier(.215, .61, .355, 1) .4s;
	transition: transform .1s cubic-bezier(.215, .61, .355, 1) .4s, opacity .4s;
	transition: transform .1s cubic-bezier(.215, .61, .355, 1) .4s, opacity .4s, -webkit-transform .1s cubic-bezier(.215, .61, .355, 1) .4s
}

.swiper-gallery .swiper-container.is-inview {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
	-webkit-transition: opacity .8s .2s, -webkit-transform .8s cubic-bezier(.215, .61, .355, 1) .2s;
	transition: opacity .8s .2s, -webkit-transform .8s cubic-bezier(.215, .61, .355, 1) .2s;
	transition: transform .8s cubic-bezier(.215, .61, .355, 1) .2s, opacity .8s .2s;
	transition: transform .8s cubic-bezier(.215, .61, .355, 1) .2s, opacity .8s .2s, -webkit-transform .8s cubic-bezier(.215, .61, .355, 1) .2s
}

.swiper-gallery .swiper-slide { width:auto; }

.swiper-gallery .swiper-slide:not(:last-child) { padding-right:40px; }

.gallery-figure { float:left; position: relative; background-color:rgba(85,85,85,0.3); border-radius:8px; overflow:hidden; }
.gallery-figure a { float:left; width:100%; position:relative; }
.gallery-figure a img { float:left; height:40vh; max-height:300px; min-height:200px; }
.gallery-figure a::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:rgba(0,0,0,0.33) url(../images/icon-zoom.png) no-repeat center / 32px; opacity:0; transition:all 0.5s; }
.gallery-figure a:hover::after { background:rgba(0,0,0,0.3) url(../images/icon-zoom.png) no-repeat center / 32px; opacity:1; }

.swiper-gallery-image {
	-webkit-transition: opacity .6s;
	transition: opacity .6s;
	opacity: .001;
	height: 70vw;
	width: auto;
	max-width: 100%
}

.swiper-gallery-image.lazyloaded {
	opacity: 1
}

@media only screen and (max-width:1280px) {

	.swiper-gallery .swiper-slide:not(:last-child) { padding-right:30px; }

}

@media only screen and (max-width:767px) {



}
@font-face {
	font-family: 'Averta';
	src: url('../font/averta_bold.eot');
	src: url('../font/averta_bold.eot?#iefix') format('embedded-opentype'),
	url('../font/averta_bold.woff2') format('woff2'),
	url('../font/averta_bold.woff') format('woff'),
	url('../font/averta_bold.svg#avertabold') format('svg');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Averta';
	src: url('../font/averta_extrabold.eot');
	src: url('../font/averta_extrabold.eot?#iefix') format('embedded-opentype'),
	url('../font/averta_extrabold.woff2') format('woff2'),
	url('../font/averta_extrabold.woff') format('woff'),
	url('../font/averta_extrabold.svg#avertaextrabold') format('svg');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Averta';
	src: url('../font/averta_light.eot');
	src: url('../font/averta_light.eot?#iefix') format('embedded-opentype'),
	url('../font/averta_light.woff2') format('woff2'),
	url('../font/averta_light.woff') format('woff'),
	url('../font/averta_light.svg#avertalight') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Averta';
	src: url('../font/averta_semibold.eot');
	src: url('../font/averta_semibold.eot?#iefix') format('embedded-opentype'),
	url('../font/averta_semibold.woff2') format('woff2'),
	url('../font/averta_semibold.woff') format('woff'),
	url('../font/averta_semibold.svg#avertasemibold') format('svg');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Averta';
	src: url('../font/averta.eot');
	src: url('../font/averta.eot?#iefix') format('embedded-opentype'),
	url('../font/averta.woff2') format('woff2'),
	url('../font/averta.woff') format('woff'),
	url('../font/averta.svg#avertaregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Averta';
	src: url('../font/averta_bold_italic.eot');
	src: url('../font/averta_bold_italic.eot?#iefix') format('embedded-opentype'),
	url('../font/averta_bold_italic.woff2') format('woff2'),
	url('../font/averta_bold_italic.woff') format('woff'),
	url('../font/averta_bold_italic.svg#avertabold') format('svg');
	font-weight: bold;
	font-style: italic;

}

@font-face {
	font-family: 'Spoof';
	src: url('../font/Spoof-Regular.eot');
	src: local('Spoof Regular'), local('Spoof-Regular'),
	url('../font/Spoof-Regular.eot?#iefix') format('embedded-opentype'),
	url('../font/Spoof-Regular.woff2') format('woff2'),
	url('../font/Spoof-Regular.woff') format('woff'),
	url('../font/Spoof-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Spoof';
	src: url('../font/Spoof-Medium.eot');
	src: local('Spoof Medium'), local('Spoof-Medium'),
	url('../font/Spoof-Medium.eot?#iefix') format('embedded-opentype'),
	url('../font/Spoof-Medium.woff2') format('woff2'),
	url('../font/Spoof-Medium.woff') format('woff'),
	url('../font/Spoof-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Spoof';
	src: url('../font/Spoof-Light.eot');
	src: local('Spoof Light'), local('Spoof-Light'),
	url('../font/Spoof-Light.eot?#iefix') format('embedded-opentype'),
	url('../font/Spoof-Light.woff2') format('woff2'),
	url('../font/Spoof-Light.woff') format('woff'),
	url('../font/Spoof-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Spoof';
	src: url('../font/Spoof-Bold.eot');
	src: local('Spoof Bold'), local('Spoof-Bold'),
	url('../font/Spoof-Bold.eot?#iefix') format('embedded-opentype'),
	url('../font/Spoof-Bold.woff2') format('woff2'),
	url('../font/Spoof-Bold.woff') format('woff'),
	url('../font/Spoof-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Spoof';
	src: url('../font/Spoof-Black.eot');
	src: local('Spoof Black'), local('Spoof-Black'),
	url('../font/Spoof-Black.eot?#iefix') format('embedded-opentype'),
	url('../font/Spoof-Black.woff2') format('woff2'),
	url('../font/Spoof-Black.woff') format('woff'),
	url('../font/Spoof-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}
body.compensate-for-scrollbar {
	overflow: hidden;
}

.fancybox-active {
	height: auto;
}

.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute !important;
	top: -9999px;
	visibility: hidden;
}

.fancybox-container {
	-webkit-backface-visibility: hidden;
	height: 100%;
	left: 0;
	outline: none;
	position: fixed;
	-webkit-tap-highlight-color: transparent;
	top: 0;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	transform: translateZ(0);
	width: 100%;
	z-index: 99992;
}

.fancybox-container * {
	box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
}

.fancybox-bg {
	background: rgb(30, 30, 30);
	opacity: 0;
	transition-duration: inherit;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
	opacity: .9;
	transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
	direction: ltr;
	opacity: 0;
	position: absolute;
	transition: opacity .25s ease, visibility 0s ease .25s;
	visibility: hidden;
	z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
	opacity: 1;
	transition: opacity .25s ease 0s, visibility 0s ease 0s;
	visibility: visible;
}

.fancybox-infobar {
	color: #ccc;
	font-size: 13px;
	-webkit-font-smoothing: subpixel-antialiased;
	height: 44px;
	left: 0;
	line-height: 44px;
	min-width: 44px;
	mix-blend-mode: difference;
	padding: 0 10px;
	pointer-events: none;
	top: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox-toolbar {
	right: 0;
	top: 0;
}

.fancybox-stage {
	direction: ltr;
	overflow: visible;
	transform: translateZ(0);
	z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
	overflow: hidden;
}

.fancybox-slide {
	-webkit-backface-visibility: hidden; /* Using without prefix would break IE11 */
	display: none;
	height: 100%;
	left: 0;
	outline: none;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: transform, opacity;
	white-space: normal;
	width: 100%;
	z-index: 99994;
}

.fancybox-slide::before {
	content: '';
	display: inline-block;
	font-size: 0;
	height: 100%;
	vertical-align: middle;
	width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
	display: block;
}

.fancybox-slide--image {
	overflow: hidden;
	padding: 44px 0;
}

.fancybox-slide--image::before {
	display: none;
}

.fancybox-slide--html {
	padding: 6px;
}

.fancybox-content {
	background: #fff;
	display: inline-block;
	margin: 0;
	max-width: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 44px;
	position: relative;
	text-align: left;
	vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
	animation-timing-function: cubic-bezier(.5, 0, .14, 1);
	-webkit-backface-visibility: hidden;
	background: transparent;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	left: 0;
	max-width: none;
	overflow: visible;
	padding: 0;
	position: absolute;
	top: 0;
	-ms-transform-origin: top left;
	transform-origin: top left;
	transition-property: transform, opacity;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
	cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
	cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
	cursor: -webkit-grab;
	cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
	cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
	background: transparent;
	border: 0;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%;
}

.fancybox-spaceball {
	z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
	height: 100%;
	overflow: visible;
	padding: 0;
	width: 100%;
}

.fancybox-slide--video .fancybox-content {
	background: #000;
}

.fancybox-slide--map .fancybox-content {
	background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
	background: #fff;
}

.fancybox-video,
.fancybox-iframe {
	background: transparent;
	border: 0;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
	left: 0;
	position: absolute;
	top: 0;
}

.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 40px;
	width: 100%;
}

.fancybox-error p {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

/* Buttons */

.fancybox-button {
	background: rgba(30, 30, 30, .6);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	height: 44px;
	margin: 0;
	padding: 10px;
	position: relative;
	transition: color .2s;
	vertical-align: top;
	visibility: inherit;
	width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
	color: #ccc;
}

.fancybox-button:hover {
	color: #fff;
}

.fancybox-button:focus {
	outline: none;
}

.fancybox-button.fancybox-focus {
	outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
	color: #888;
	cursor: default;
	outline: none;
}

/* Fix IE11 */
.fancybox-button div {
	height: 100%;
}

.fancybox-button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}

.fancybox-button svg path {
	fill: currentColor;
	stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
	display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
	display: none;
}

.fancybox-progress {
	background:#FF3500;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-ms-transform-origin: 0;
	transform-origin: 0;
	transition-property: transform;
	transition-timing-function: linear;
	z-index: 99998;
}
/* Close button on the top right corner of html content */

.fancybox-close-small {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #ccc;
	cursor: pointer;
	opacity: .8;
	padding: 8px;
	position: absolute;
	right: -12px;
	top: -44px;
	z-index: 401;
}

.fancybox-close-small:hover {
	color: #fff;
	opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
	color: currentColor;
	padding: 10px;
	right: 0;
	top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
	overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
	display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
	background-clip: content-box;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 50px);
	width: 70px;
}

.fancybox-navigation .fancybox-button div {
	padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
	left: env(safe-area-inset-left);
	padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
	padding: 31px 6px 31px 26px;
	right: 0;
	right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
	background: linear-gradient(
			to top,
			rgba(0, 0, 0, .85) 0%,
			rgba(0, 0, 0, .3) 50%,
			rgba(0, 0, 0, .15) 65%,
			rgba(0, 0, 0, .075) 75.5%,
			rgba(0, 0, 0, .037) 82.85%,
			rgba(0, 0, 0, .019) 88%,
			rgba(0, 0, 0, 0) 100%
	);
	bottom: 0;
	color: #eee;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	line-height: 1.5;
	padding: 75px 44px 25px 44px;
	pointer-events: none;
	right: 0;
	text-align: center;
	z-index: 99996;
}

@supports (padding: max(0px)) {
	.fancybox-caption {
		padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
	}
}

.fancybox-caption--separate {
	margin-top: -50px;
}

.fancybox-caption__body {
	max-height: 50vh;
	overflow: auto;
	pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
	color: #ccc;
	text-decoration: none;
}

.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
	animation: fancybox-rotate 1s linear infinite;
	background: transparent;
	border: 4px solid #888;
	border-bottom-color: #fff;
	border-radius: 50%;
	height: 50px;
	left: 50%;
	margin: -25px 0 0 -25px;
	opacity: .7;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 50px;
	z-index: 99999;
}

@keyframes fancybox-rotate {
	100% {
		transform: rotate(360deg);
	}
}

/* Transition effects */

.fancybox-animated {
	transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
	opacity: 0;
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	-ms-transform: rotate(-360deg);
	transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
	transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
	transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
	transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
	.fancybox-slide {
		padding-left: 6px;
		padding-right: 6px;
	}

	.fancybox-slide--image {
		padding: 6px 0;
	}

	.fancybox-close-small {
		right: -6px;
	}

	.fancybox-slide--image .fancybox-close-small {
		background: #4e4e4e;
		color: #f2f4f6;
		height: 36px;
		opacity: 1;
		padding: 6px;
		right: 0;
		top: 0;
		width: 36px;
	}

	.fancybox-caption {
		padding-left: 12px;
		padding-right: 12px;
	}

	@supports (padding: max(0px)) {
		.fancybox-caption {
			padding-left: max(12px, env(safe-area-inset-left));
			padding-right: max(12px, env(safe-area-inset-right));
		}
	}
}

/* Share */

.fancybox-share {
	background: #f4f4f4;
	border-radius: 3px;
	max-width: 90%;
	padding: 30px;
	text-align: center;
}

.fancybox-share h1 {
	color: #222;
	font-size: 35px;
	font-weight: 700;
	margin: 0 0 20px 0;
}

.fancybox-share p {
	margin: 0;
	padding: 0;
}

.fancybox-share__button {
	border: 0;
	border-radius: 3px;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	margin: 0 5px 10px 5px;
	min-width: 130px;
	padding: 0 15px;
	text-decoration: none;
	transition: all .2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
	color: #fff;
}

.fancybox-share__button:hover {
	text-decoration: none;
}

.fancybox-share__button--fb {
	background: #3b5998;
}

.fancybox-share__button--fb:hover {
	background: #344e86;
}

.fancybox-share__button--pt {
	background: #bd081d;
}

.fancybox-share__button--pt:hover {
	background: #aa0719;
}

.fancybox-share__button--tw {
	background: #1da1f2;
}

.fancybox-share__button--tw:hover {
	background: #0d95e8;
}

.fancybox-share__button svg {
	height: 25px;
	margin-right: 7px;
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 25px;
}

.fancybox-share__button svg path {
	fill: #fff;
}

.fancybox-share__input {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #d7d7d7;
	border-radius: 0;
	color: #5d5b5b;
	font-size: 14px;
	margin: 10px 0 0 0;
	outline: none;
	padding: 10px 15px;
	width: 100%;
}

/* Thumbs */

.fancybox-thumbs {
	background: #ddd;
	bottom: 0;
	display: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 2px 2px 4px 2px;
	position: absolute;
	right: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	top: 0;
	width: 212px;
	z-index: 99995;
}

.fancybox-thumbs-x {
	overflow-x: auto;
	overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
	display: block;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 212px;
}

.fancybox-thumbs__list {
	font-size: 0;
	height: 100%;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	position: relative;
	white-space: nowrap;
	width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
	overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
	width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px;
}

.fancybox-thumbs__list a {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: rgba(0, 0, 0, .1);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	float: left;
	height: 75px;
	margin: 2px;
	max-height: calc(100% - 8px);
	max-width: calc(50% - 4px);
	outline: none;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	width: 100px;
}

.fancybox-thumbs__list a::before {
	border: 6px solid #FF3500;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .2s cubic-bezier(.25, .46, .45, .94);
	z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
	opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
	opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
	.fancybox-thumbs {
		width: 110px;
	}
	.fancybox-show-thumbs .fancybox-inner {
		right: 110px;
	}
	.fancybox-thumbs__list a {
		max-width: calc(100% - 10px);
	}
}


.fancybox-button--thumbs { display:none !important; }
.home-fixed-wrap { position:fixed; top:auto !important; left:0; right:0; bottom:0; background-color:rgba(255,255,255,0.8); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); box-shadow:0 0 20px rgba(0,0,0,0.1); z-index:8990; transition:all 0.3s; }
.home-fixed-wrap.is-sticky { top:auto !important; bottom:0; }
.home-fixed { float:left; width:100%; padding:20px 0; position:relative; display:flex; align-items:center; }
.home-fixed picture { float:left; width:165px; height:100px; margin:-20px 0; box-shadow:0 -2px 0 #1B49B9; overflow:hidden; }
.home-fixed picture img { height:100%; object-fit:cover; }

.home-fixed .education-hero-price { margin:0 0 0 20px; }
.home-fixed .education-hero-price > section { border-color:#EEE; color:#666; }
.home-fixed .education-hero-price > section strong , .home-fixed .buying-options section strong { color:#000; }
.home-fixed .education-hero-price > div strong { font-size:24px; }
.education-hero-price > div span::after { background-color:#666; }
.education-hero-price > div { width: 100%}

.home-fixed-form { float:right; flex:1; padding-left:30px; padding-right:100px; margin-left:auto; position:relative; }
.home-fixed-form section { float:left; width:33.33334%; padding-right:10px; }
.home-fixed-form section .input { height:44px; padding:0 13px; border-color:#999; line-height:44px; }
.home-fixed-form .button { position:absolute; top:0; right:0; width:100px; height:44px; padding:0; font-size:14px; font-weight:700; line-height:44px; }
.home-fixed-form .button::after { display:none; }



@media only screen and (max-width:1023px) {

	.home-fixed-wrap { transition:all 0.6s; }
	.scroll-mobile .home-fixed-wrap { bottom:0; }
	.home-fixed-wrap .wrap { padding:0; }
	.home-fixed { padding:10px; border-top:2px solid #1A4AB9; }
	.home-fixed picture , .home-fixed .education-hero-price > section , .home-fixed .buying-options { display:none; }
	.home-fixed .education-hero-price { height:40px; margin-left:5px; }
	.home-fixed .education-hero-price div { height:40px; }
	.home-fixed .education-hero-price div span { margin-bottom:0; font-size:14px; }
	.home-fixed .education-hero-price div strong { font-size:17px; line-height:20px; letter-spacing:0; }
	.home-fixed .education-hero-buy { width:50%; margin-top:0; }
	.home-fixed .add-to-basket { width:100%; }
	.home-fixed .add-to-basket a { height:40px; line-height:40px; }
	.home-fixed .add-to-basket a::after { top:10px; right:15px; }



}
.footer-phone strong a { float:left; font-size:25px; color:#1D46DE; line-height:40px; text-align: center}

.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
	position: fixed;
	margin: 0;
	padding: 0;
	z-index: 9999999;
	-webkit-transform: translateZ(0) scale(1, 1);
	transform: translateZ(0) scale(1, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: subpixel-antialiased;
	filter: blur(0);
	-webkit-filter: blur(0);
	max-width: 90%; }

#noty_layout__top {
	top: 0;
	left: 5%;
	width: 90%; }

#noty_layout__topLeft {
	top: 20px;
	left: 20px;
	width: 325px; }

#noty_layout__topCenter {
	top: 5%;
	left: 50%;
	width: 325px;
	-webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
	transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__topRight {
	top: 20px;
	right: 20px;
	width: 325px; }

#noty_layout__bottom {
	bottom: 0;
	left: 5%;
	width: 90%; }

#noty_layout__bottomLeft {
	bottom: 20px;
	left: 20px;
	width: 325px; }

#noty_layout__bottomCenter {
	bottom: 5%;
	left: 50%;
	width: 325px;
	-webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
	transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__bottomRight {
	bottom: 20px;
	right: 20px;
	width: 325px; }

#noty_layout__center {
	top: 50%;
	left: 50%;
	width: 325px;
	-webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
	transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerLeft {
	top: 50%;
	left: 20px;
	width: 325px;
	-webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
	transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerRight {
	top: 50%;
	right: 20px;
	width: 325px;
	-webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
	transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

.noty_progressbar {
	display: none; }

.noty_has_timeout .noty_progressbar {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	background-color: #646464;
	opacity: 0.2;
	filter: alpha(opacity=10); }

.noty_bar {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
	-ms-transform: translate(0, 0) scale(1, 1);
	transform: translate(0, 0) scale(1, 1);
	-webkit-font-smoothing: subpixel-antialiased;
	overflow: hidden; }

.noty_effects_open {
	opacity: 0;
	-webkit-transform: translate(50%);
	-ms-transform: translate(50%);
	transform: translate(50%);
	-webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards; }

.noty_effects_close {
	-webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards; }

.noty_fix_effects_height {
	-webkit-animation: noty_anim_height 75ms ease-out;
	animation: noty_anim_height 75ms ease-out; }

.noty_close_with_click {
	cursor: pointer; }

.noty_close_button {
	position: absolute;
	top: 2px;
	right: 2px;
	font-weight: bold;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	cursor: pointer;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out; }

.noty_close_button:hover {
	background-color: rgba(0, 0, 0, 0.1); }

.noty_modal {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 10000;
	opacity: .3;
	left: 0;
	top: 0; }

.noty_modal.noty_modal_open {
	opacity: 0;
	-webkit-animation: noty_modal_in .3s ease-out;
	animation: noty_modal_in .3s ease-out; }

.noty_modal.noty_modal_close {
	-webkit-animation: noty_modal_out .3s ease-out;
	animation: noty_modal_out .3s ease-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards; }

@-webkit-keyframes noty_modal_in {
	100% {
		opacity: .3; } }

@keyframes noty_modal_in {
	100% {
		opacity: .3; } }

@-webkit-keyframes noty_modal_out {
	100% {
		opacity: 0; } }

@keyframes noty_modal_out {
	100% {
		opacity: 0; } }

@keyframes noty_modal_out {
	100% {
		opacity: 0; } }

@-webkit-keyframes noty_anim_in {
	100% {
		-webkit-transform: translate(0);
		transform: translate(0);
		opacity: 1; } }

@keyframes noty_anim_in {
	100% {
		-webkit-transform: translate(0);
		transform: translate(0);
		opacity: 1; } }

@-webkit-keyframes noty_anim_out {
	100% {
		-webkit-transform: translate(50%);
		transform: translate(50%);
		opacity: 0; } }

@keyframes noty_anim_out {
	100% {
		-webkit-transform: translate(50%);
		transform: translate(50%);
		opacity: 0; } }

@-webkit-keyframes noty_anim_height {
	100% {
		height: 0; } }

@keyframes noty_anim_height {
	100% {
		height: 0; } }

.noty_theme__relax.noty_bar {
	margin: 4px 0;
	overflow: hidden;
	border-radius: 2px;
	position: relative; }
.noty_theme__relax.noty_bar .noty_body {
	padding: 10px; }
.noty_theme__relax.noty_bar .noty_buttons {
	border-top: 1px solid #e7e7e7;
	padding: 5px 10px; }

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
	background-color: #fff;
	border: 1px solid #dedede;
	color: #444; }

.noty_theme__relax.noty_type__warning {
	background-color: #FFEAA8;
	border: 1px solid #FFC237;
	color: #826200; }
.noty_theme__relax.noty_type__warning .noty_buttons {
	border-color: #dfaa30; }

.noty_theme__relax.noty_type__error {
	background-color: #FF8181;
	border: 1px solid #e25353;
	color: #FFF; }
.noty_theme__relax.noty_type__error .noty_buttons {
	border-color: darkred; }

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
	background-color: #78C5E7;
	border: 1px solid #3badd6;
	color: #FFF; }
.noty_theme__relax.noty_type__info .noty_buttons,
.noty_theme__relax.noty_type__information .noty_buttons {
	border-color: #0B90C4; }

.noty_theme__relax.noty_type__success {
	background-color: #BCF5BC;
	border: 1px solid #7cdd77;
	color: darkgreen; }
.noty_theme__relax.noty_type__success .noty_buttons {
	border-color: #50C24E; }

.noty_theme__metroui.noty_bar {
	margin: 4px 0;
	overflow: hidden;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0; }
.noty_theme__metroui.noty_bar .noty_progressbar {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	background-color: #000;
	opacity: 0.2;
	filter: alpha(opacity=20); }
.noty_theme__metroui.noty_bar .noty_body {
	padding: 1.25em;
	font-size: 14px; }
.noty_theme__metroui.noty_bar .noty_buttons {
	padding: 0 10px .5em 10px; }

.noty_theme__metroui.noty_type__alert,
.noty_theme__metroui.noty_type__notification {
	background-color: #fff;
	color: #1d1d1d; }

.noty_theme__metroui.noty_type__warning {
	background-color: #FA6800;
	color: #fff; }

.noty_theme__metroui.noty_type__error {
	background-color: #CE352C;
	color: #FFF; }

.noty_theme__metroui.noty_type__info,
.noty_theme__metroui.noty_type__information {
	background-color: #1BA1E2;
	color: #FFF; }

.noty_theme__metroui.noty_type__success {
	background-color: #60A917;
	color: #fff; }

.noty_theme__mint.noty_bar {
	margin: 4px 0;
	overflow: hidden;
	border-radius: 2px;
	position: relative; }
.noty_theme__mint.noty_bar .noty_body {
	padding: 10px;
	font-size: 14px; }
.noty_theme__mint.noty_bar .noty_buttons {
	padding: 10px; }

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
	background-color: #fff;
	border-bottom: 1px solid #D1D1D1;
	color: #2F2F2F; }

.noty_theme__mint.noty_type__warning {
	background-color: #FFAE42;
	border-bottom: 1px solid #E89F3C;
	color: #fff; }

.noty_theme__mint.noty_type__error {
	background-color: #DE636F;
	border-bottom: 1px solid #CA5A65;
	color: #fff; }

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
	background-color: #7F7EFF;
	border-bottom: 1px solid #7473E8;
	color: #fff; }

.noty_theme__mint.noty_type__success {
	background-color: #AFC765;
	border-bottom: 1px solid #A0B55C;
	color: #fff; }

.noty_theme__sunset.noty_bar {
	margin: 4px 0;
	overflow: hidden;
	border-radius: 2px;
	position: relative; }
.noty_theme__sunset.noty_bar .noty_body {
	padding: 10px;
	font-size: 14px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
.noty_theme__sunset.noty_bar .noty_buttons {
	padding: 10px; }

.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
	background-color: #073B4C;
	color: #fff; }
.noty_theme__sunset.noty_type__alert .noty_progressbar,
.noty_theme__sunset.noty_type__notification .noty_progressbar {
	background-color: #fff; }

.noty_theme__sunset.noty_type__warning {
	background-color: #FFD166;
	color: #fff; }

.noty_theme__sunset.noty_type__error {
	background-color: #EF476F;
	color: #fff; }
.noty_theme__sunset.noty_type__error .noty_progressbar {
	opacity: .4; }

.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
	background-color: #118AB2;
	color: #fff; }
.noty_theme__sunset.noty_type__info .noty_progressbar,
.noty_theme__sunset.noty_type__information .noty_progressbar {
	opacity: .6; }

.noty_theme__sunset.noty_type__success {
	background-color: #06D6A0;
	color: #fff; }

.noty_theme__bootstrap-v3.noty_bar {
	margin: 4px 0;
	overflow: hidden;
	position: relative;
	border: 1px solid transparent;
	border-radius: 4px; }
.noty_theme__bootstrap-v3.noty_bar .noty_body {
	padding: 15px; }
.noty_theme__bootstrap-v3.noty_bar .noty_buttons {
	padding: 10px; }
.noty_theme__bootstrap-v3.noty_bar .noty_close_button {
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
	background: transparent; }
.noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
	background: transparent;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5; }

.noty_theme__bootstrap-v3.noty_type__alert,
.noty_theme__bootstrap-v3.noty_type__notification {
	background-color: #fff;
	color: inherit; }

.noty_theme__bootstrap-v3.noty_type__warning {
	background-color: #fcf8e3;
	color: #8a6d3b;
	border-color: #faebcc; }

.noty_theme__bootstrap-v3.noty_type__error {
	background-color: #f2dede;
	color: #a94442;
	border-color: #ebccd1; }

.noty_theme__bootstrap-v3.noty_type__info,
.noty_theme__bootstrap-v3.noty_type__information {
	background-color: #d9edf7;
	color: #31708f;
	border-color: #bce8f1; }

.noty_theme__bootstrap-v3.noty_type__success {
	background-color: #dff0d8;
	color: #3c763d;
	border-color: #d6e9c6; }

.noty_theme__bootstrap-v4.noty_bar {
	margin: 4px 0;
	overflow: hidden;
	position: relative;
	border: 1px solid transparent;
	border-radius: .25rem; }
.noty_theme__bootstrap-v4.noty_bar .noty_body {
	padding: .75rem 1.25rem; }
.noty_theme__bootstrap-v4.noty_bar .noty_buttons {
	padding: 10px; }
.noty_theme__bootstrap-v4.noty_bar .noty_close_button {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .5;
	background: transparent; }
.noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
	background: transparent;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .75; }

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
	background-color: #fff;
	color: inherit; }

.noty_theme__bootstrap-v4.noty_type__warning {
	background-color: #fcf8e3;
	color: #8a6d3b;
	border-color: #faebcc; }

.noty_theme__bootstrap-v4.noty_type__error {
	background-color: #f2dede;
	color: #a94442;
	border-color: #ebccd1; }

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
	background-color: #d9edf7;
	color: #31708f;
	border-color: #bce8f1; }

.noty_theme__bootstrap-v4.noty_type__success {
	background-color: #dff0d8;
	color: #3c763d;
	border-color: #d6e9c6; }

.noty_theme__semanticui.noty_bar {
	margin: 4px 0;
	overflow: hidden;
	position: relative;
	border: 1px solid transparent;
	font-size: 1em;
	border-radius: .28571429rem;
	box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent; }
.noty_theme__semanticui.noty_bar .noty_body {
	padding: 1em 1.5em;
	line-height: 1.4285em; }
.noty_theme__semanticui.noty_bar .noty_buttons {
	padding: 10px; }

.noty_theme__semanticui.noty_type__alert,
.noty_theme__semanticui.noty_type__notification {
	background-color: #f8f8f9;
	color: rgba(0, 0, 0, 0.87); }

.noty_theme__semanticui.noty_type__warning {
	background-color: #fffaf3;
	color: #573a08;
	box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__error {
	background-color: #fff6f6;
	color: #9f3a38;
	box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__info,
.noty_theme__semanticui.noty_type__information {
	background-color: #f8ffff;
	color: #276f86;
	box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__success {
	background-color: #fcfff5;
	color: #2c662d;
	box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent; }

.noty_theme__nest.noty_bar {
	margin: 0 0 15px 0;
	overflow: hidden;
	border-radius: 2px;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0; }
.noty_theme__nest.noty_bar .noty_body {
	padding: 10px;
	font-size: 14px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
.noty_theme__nest.noty_bar .noty_buttons {
	padding: 10px; }

.noty_layout .noty_theme__nest.noty_bar {
	z-index: 5; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
	position: absolute;
	top: 0;
	margin-top: 4px;
	margin-right: -4px;
	margin-left: 4px;
	z-index: 4;
	width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
	position: absolute;
	top: 0;
	margin-top: 8px;
	margin-right: -8px;
	margin-left: 8px;
	z-index: 3;
	width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
	position: absolute;
	top: 0;
	margin-top: 12px;
	margin-right: -12px;
	margin-left: 12px;
	z-index: 2;
	width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
	position: absolute;
	top: 0;
	margin-top: 16px;
	margin-right: -16px;
	margin-left: 16px;
	z-index: 1;
	width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
	position: absolute;
	top: 0;
	margin-top: 20px;
	margin-right: -20px;
	margin-left: 20px;
	z-index: -1;
	width: 100%; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
	margin-top: 4px;
	margin-left: -4px;
	margin-right: 4px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
	margin-top: 8px;
	margin-left: -8px;
	margin-right: 8px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
	margin-top: 12px;
	margin-left: -12px;
	margin-right: 12px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
	margin-top: 16px;
	margin-left: -16px;
	margin-right: 16px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
	margin-top: 20px;
	margin-left: -20px;
	margin-right: 20px; }

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
	background-color: #073B4C;
	color: #fff; }
.noty_theme__nest.noty_type__alert .noty_progressbar,
.noty_theme__nest.noty_type__notification .noty_progressbar {
	background-color: #fff; }

.noty_theme__nest.noty_type__warning {
	background-color: #FFD166;
	color: #fff; }

.noty_theme__nest.noty_type__error {
	background-color: #EF476F;
	color: #fff; }
.noty_theme__nest.noty_type__error .noty_progressbar {
	opacity: .4; }

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
	background-color: #118AB2;
	color: #fff; }
.noty_theme__nest.noty_type__info .noty_progressbar,
.noty_theme__nest.noty_type__information .noty_progressbar {
	opacity: .6; }

.noty_theme__nest.noty_type__success {
	background-color: #06D6A0;
	color: #fff; }

.form-control {
	display: block;
	width: 100%;
	height: calc(2.25rem + 2px);
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {
	color: #fff;
	background-color: #000;
	border-color: #000;
}
.btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/*# sourceMappingURL=noty.css.map*/