html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
:focus {	outline: 0;}
ins {	text-decoration: none;}
del {	text-decoration: line-through;}
table { border-collapse: collapse; border-spacing: 0; }
ul, li { float:left; display:inline; }
h1, h2, h3, h4, h5 { font-weight:normal; }
i, em { font-style:normal; }
button, select { border:none; margin:0; padding:0; background:transparent; }
figure { margin:0; padding:0; }
* { box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; }

/*	Finish RESET	*/

body { margin:0; color:var(--color-dark); font-size:15px; font-family:var(--font-primary); line-height:20px; -webkit-text-size-adjust:100%; text-size-adjust:100%; -webkit-text-size-adjust:100%; background-color:#FFF; }

*::-moz-selection { background:rgba(0, 0, 0, 0.1); }
*::selection { background:rgba(0, 0, 0, 0.1); }

a { color:var(--color-navy); text-decoration:none;  }
a:hover { color:var(--color-purple); text-decoration:none; }

:root {
	--color-dark:#0C0D21;
	--color-navy:#1F2666;
	--color-purple:#3D46BE;
	--color-purple-light:#C4C4FF;
	--color-red:#EB2026;
	--color-green:#00C364;
	--color-yellow:#FFCC00;
	--color-orange:#F75B13;
	--color-grey:#727394;
	--color-grey-light:#ABABBF;
    --color-grey-lightx:#dadae0;
	--color-cold:#E5E5FF;
	--color-light:#F7F8FC;
	--font-primary:'Plus Jakarta Sans','Arial';
	--input-background-color: #FFF;
	--input-border-color: #C4C4FF;
	--input-border-color-inline: #FFF;
	--input-border-color-checked: #00C364;
	--input-background-color-checked: #00C364;
	--input-border-color-inline-checked: #00C364;
	--input-border-color-disabled: #C4C4FF;
	--input-background-color-disabled: #F2F2F2;
	--input-border-color-inline-disabled: #C4C4FF;
	--input-border-color-hover: #00C364;
	--input-background-color-hover: #FFF;
	--input-border-color-inline-hover: #C4C4FF;
	--input-border-color-focus: #00C364;
}

/* 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:22px; height:22px; line-height:22px; min-width:1px !important; margin:0 12px 0 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:6px; height:11px; left:7px; bottom:6px; }
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:6px; border-radius: 50%; width: 0px; height:0px; left:5px; bottom:5px; }
input[type='radio']:not(:checked)::before { border-color:var(--input-border-color); }
input[type='radio']:not(:checked)::after { border-color:var(--input-border-color-inline); }
input[type='radio']:checked:not(:disabled)::before { border-color: var(--input-border-color-checked); background-color: var(--input-background-color); }
input[type='radio']:read-only::before, input[type='checkbox']:-moz-read-only::before { border-color:var(--input-border-color-inline-checked); }
input[type='radio']:disabled::before {}
input[type='radio']:disabled::after { border-color:var(--input-border-color-inline-disabled); }
input[type='radio']:checked:not(:disabled):focus::before, input[type='radio']:not(:checked):not(:disabled):focus::before { border-color:var(--input-border-color-hover); }
input[type='radio']:not(:checked):not(:disabled):hover::before { border-color:var(--input-border-color-hover); background-color: var(--input-background-color); }
input[type='radio']:not(:checked):not(:disabled):hover:not(:checked)::after { border-color:var(--input-border-color-inline-hover); }

input, textarea, select { float:left; font-size:15px; font-family:var(--font-primary), Arial; border-radius:0; border:0; }
button { border:none; padding:0; margin:0; cursor:pointer; border-radius:0; font-family:var(--font-primary), Arial; font-size:16px; font-weight:500; }

.input { width:100%; height:44px; padding:0 14px; border:1px solid var(--color-grey-light); transition:ease 0.3s; background-color:#FFF; border-radius:8px; }
.select { background:#FFF url(../images/arrow-select.png) no-repeat right center; background-size:auto 5px; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.input:focus , .select:focus { border-color:var(--color-purple); box-shadow:4px 4px 0 rgba(61,70,190,0.08); }

textarea.input { padding-top:13px !important; padding-bottom:13px !important; }

.button { float:none; height:48px; display:flex; align-items:center; padding:0 16px; cursor:pointer; position:relative; color:#FFF; line-height:48px; background-color:var(--color-purple); transition:all 0.5s; border-radius:25px; }
.button:hover { background-color:var(--color-navy); }
.button.light { color:var(--color-purple); background-color:var(--color-light); border:1px solid var(--color-purple-light); }
.button.light:hover { background-color:#FFF; border-color:var(--color-navy); color:var(--color-navy); }
.button small { flex:1; padding:0 8px; white-space:nowrap; }
.button i { float:right; margin-left:auto; font-size:24px; }
.button i:first-child { float:left; margin-left:0; }

.ulunet { float:left; width:100%; padding-top:138px; position:relative; }
.ulunet-subscribe { padding-top:80px; }
.outer { float:left; width:100%; padding-left:80px; padding-right:80px; position:relative; }
.wrap { margin:0 auto; width:100%; max-width:1520px; min-height:10px; padding-left:40px; padding-right:40px; position:relative; }

.tal { text-align:left; }
.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%; }
.mt40 { margin-top:40px; }
.mt30 { margin-top:30px; }
.mt20 { margin-top:20px; }
.mt15 { margin-top:15px; }
.mt10 { margin-top:10px; }
.mb40 { margin-bottom:40px; }
.mb30 { margin-bottom:30px; }
.mb20 { margin-bottom:20px; }
.mb15 { margin-bottom:15px; }
.mb10 { margin-bottom:10px; }
.mr15 { margin-right:15px; }

/*	Start TOP	*/

.header { position:fixed; top:0; left:0; right:0; z-index:2280; background-color:rgba(255,255,255,0.9); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); transition:all 0.5s; }
.nav-up , .nav-down { box-shadow:0 0 30px rgba(61,70,190,0.1); }

.header-flex { padding-top:20px; padding-bottom:10px; display:flex; align-items:center; }
.header-flex.center { justify-content:center; }
.ulunet-subscribe .header-flex { padding-bottom:20px; }

#logo { float:left; position:relative; z-index:11000; }
#logo a { float:left; margin:-4px 0 4px 0; }
#logo a img { height:60px; transition:all 0.5s; }
.ulunet-subscribe #logo a img { height:40px; }

.nav-icon { display:none; }

.header-line { float:left; height:1px; flex:1; margin-left:40px; margin-right:40px; background-color:var(--color-purple); opacity:0.05; }

.header-cta { float:right; position:relative; overflow:hidden; }
.header-cta > ul > li { margin-right:10px; }
.header-cta > ul > li:last-child { margin-right:0; }
.header-cta-item { float:left; padding:8px 10px; position:relative; border:1px solid var(--color-purple); color:var(--color-purple); display:flex; align-items:center; transition:all 0.5s; border-radius:20px; }
.header-cta-item.dark { background-color:var(--color-purple); color:#FFF; }
.header-cta-item:hover { background-color:var(--color-navy); border-color:var(--color-navy); color:#FFF; }
.header-cta-item i { float:left; font-size:22px; }
.header-cta-item small { float:left; padding-left:5px; padding-right:10px; margin-top:-1px; margin-bottom:1px; font-weight:500; }

#nav-wrap { float:left; width:100%; position:relative; z-index:200; }

#nav-wrap .header-cta { display:none; }

#nav { float:left; position:relative; z-index:200; }
#nav > ul { float:none; display:inline-block; }
#nav > ul > li { margin-right:40px; position:relative; }
#nav > ul > li:last-child { margin-right:0; }

#nav > ul > li.nav-multi > a::after { content:""; float:right; margin-left:6px; width:12px; height:60px; background:url(../images/arrow-down.png) no-repeat right 51% / 100% auto; transition:all 0.3s; opacity:0.4; }
#nav > ul > li.nav-multi > a.active::after { filter:none; -webkit-filter:none; }

#nav > ul > li > a { float:left; position:relative; font-weight:500; color:var(--color-purple); line-height:60px; transition:all 0.5s; z-index:100; display:flex; align-items:center; }
#nav > ul > li:hover > a { color:var(--color-red); }
#nav > ul > li > a.active { padding:0 20px; color:var(--color-red); box-shadow:inset 0 -2px 0 var(--color-red); }
#nav > ul > li > a i { float:left; font-size:24px; line-height:60px; }
#nav > ul > li > a small { display:none; }

#nav > ul > li > a.active::before { content:""; position:absolute; left:0; right:0; top:0; bottom:2px; background:linear-gradient(180deg,rgba(236,36,42,0),var(--color-red)); opacity:0.05; }

.nav-menu { position:absolute; top:54px; left:-20px; width:320px; padding:10px 20px; background-color:#FFF; box-shadow:0 10px 50px rgba(61,70,190,0.15); display:none; border-radius:8px; z-index:100; }
.nav-menu a { float:left; width:100%; padding:10px 0; position:relative; font-weight:500; display:flex; align-items:center; transition:all 0.5s; }
.nav-menu a i { float:left; margin-right:10px; font-size:20px; opacity:0.4; transition:all 0.3s; }
.nav-menu a:hover i { color:var(--color-red); transform:rotate(45deg); opacity:1; }

#nav-cta { float:right; position:relative; }
#nav-cta > ul > li::after { content:""; float:right; width:1px; height:24px; margin:18px 30px; background-color:var(--color-purple); opacity:0.1; }
#nav-cta > ul > li:last-child::after { display:none; }

.nav-cta-item { float:left; position:relative; color:var(--color-purple); display:flex; align-items:center; transition:all 0.5s; border-radius:20px; }
.nav-cta-item:hover { color:var(--color-red); }
.nav-cta-item i { float:left; font-size:24px; line-height:60px; }
.nav-cta-item img { float:left; height:60px; padding:20px 0; }
.nav-cta-item small , .nav-cta-item strong { float:left; padding-left:7px; font-weight:500; }
.nav-cta-item strong { font-weight:700; }

/*	Finish TOP	*/

.mask , .mask-top { position:absolute; bottom:0; left:24px; right:24px; z-index:700; pointer-events:none; }
.mask-top { top:0; bottom:auto; }
.mask-reverse { transform:scaleX(-1); }
.mask img , .mask-top img { float:right; width:100%; max-height:20px; }

.controls { height:100%; }
.slick-prev , .slick-next { position:absolute; top:calc(50% - 25px); width:50px; height:50px; text-indent:-9999px; cursor:pointer; z-index:1000; transition:all 0.4s; background:#FFF url(../images/arrow-left.png) no-repeat center / auto 20px; box-shadow:0 10px 20px rgba(61,70,190,0.1); border-radius:50%; }

.slick-prev { left:16px; }
.slick-next { right:16px; background-image:url(../images/arrow-right.png); }

.slick-prev:hover , .slick-next:hover { background-color:var(--color-purple); }

ul.slick-dots { position:absolute; text-align:center; right:0; left:0; bottom:0; padding:30px 0; z-index:1000; background:linear-gradient(180deg,rgba(62,35,11,0.0),rgba(62,35,11,0.5)); display:flex; align-items:center; justify-content:center; }
ul.slick-dots li { width:24px; height:13px; margin:0 5px; display:inline-block; transition:all 0.5s; }
ul.slick-dots li button { width:100%; height:100%; cursor:pointer; border-top:5px solid transparent; border-bottom:5px solid transparent; transition:all 0.2s; position:relative; text-indent:-9999px; opacity:0.4; }
ul.slick-dots li button:hover { opacity:0.7; }
ul.slick-dots li.slick-active button { opacity:1; }
ul.slick-dots li button::after { content:""; position:absolute; top:0; left:0; bottom:0; right:0; background-color:#FFF; border-radius:2px; }
ul.slick-dots li.slick-active button::after { top:-1px; bottom:-1px; }

.slider-hero-wrap { float:left; width:100%; position:relative; z-index:700; }
.slider-hero-wrap .mask { left:36px; right:36px; }

.slider-hero { float:left; width:100%; max-height:600px; position:relative; aspect-ratio:5/3; background:var(--color-primary) url(../images/lines-white.png) no-repeat right bottom / 50% auto; z-index:700; overflow:hidden; }
.slider-hero .slick-list { overflow:hidden; }

.slider-hero-item { float:left; width:100%; max-height:600px; position:relative; aspect-ratio:5/3; overflow:hidden; }
.slider-hero-item::before { content:""; position:absolute; top:0; bottom:0; left:0; right:15%; background:linear-gradient(90deg,var(--color-navy),rgba(61,70,190,0)); z-index:10; opacity:0.8; }

.slider-hero picture { position:absolute; top:0; bottom:0; left:0; right:0; transition:all 3s; background-position:center; background-size:cover; background-repeat:no-repeat; transform-origin:center; transform:scale(1.5); }
.slider-hero .slick-current picture { transform:scale(1); }

.slider-title { position:absolute; left:0; right:0; top:0; bottom:0; color:#FFF; display:flex; align-items:center; z-index:100; }

.slider-title-in { float:left; width:100%; position:relative; display:flex; align-items:end; }
.slider-title-content { float:left; width:50%; }
.slider-title-cta { float:left; width:50%; padding-left:30px; }
.slider-title-cta .button-cta a { float:right; }

.hero-title { float:left; width:100%; padding-bottom:31px; position:relative; font-size:59px; font-weight:700; line-height:60px; }
.slider-title article { float:left; width:100%; font-size:20px; line-height:30px; }

.hero-video { position:absolute; top:0; bottom:0; left:0; right:0; width:100%; height:100%; object-fit:cover; transition:all 3s; }

.slider-title .button-cta a:hover { border-color:#FFF !important; }

.slider-hero ul.slick-dots { background:none; padding-top:0; padding-bottom:80px; }
.slider-hero ul.slick-dots li { width:64px; }


.hero-address-check { position:absolute; left:calc(50% - 240px); bottom:-18px; width:480px; padding:14px; text-align:center; overflow:hidden; display:flex; flex-direction:column; justify-content:center; align-items:center; z-index:2220; border:1px solid #FFF; border-radius:40px; background:linear-gradient(180deg,#FFF,var(--color-cold)); box-shadow:0 10px 20px rgba(61,70,190,0.08); }
.hero-address-check.fixed { display:none; }

.hero-address-check section { float:left; width:100%; position:relative; cursor:pointer; display:flex; align-items:center; }
.hero-address-check section span { float:left; flex:1; padding:10px; margin-right:10px; font-size:16px; font-weight:500; color:var(--color-navy); border:1px solid var(--color-purple-light); background-color:#FFF; border-radius:30px; display:flex; align-items:center; justify-content:center; transition:all 0.5s; }
.hero-address-check section:hover span { border-color:var(--color-purple); }
.hero-address-check section span i { float:left; margin-right:10px; font-size:28px; }
.hero-address-check section strong { float:right; width:100px; background-color:var(--color-purple); border-radius:30px; font-size:28px; color:#FFF; line-height:50px; transition:all 0.5s; }
.hero-address-check section:hover strong { background-color:var(--color-red); }



.address-check-box-out { position:fixed; top:0; bottom:0; left:0; right:0; padding:24px; background-color:rgba(31,38,102,0.65); z-index:100000; display:none; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }
.address-check-box-wrap { float:left; width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.address-check-box { float:left; width:100%; max-width:640px; max-height:calc(100vh - 48px); position:relative; background-color:#FFF; overflow:hidden; }

.address-check-close { position:absolute; top:0; right:0; z-index:1000; cursor:pointer; }
.address-check-close i { float:left; width:44px; font-size:28px; color:var(--color-red); line-height:44px; text-align:center; }
.address-check-close:hover i { color:var(--color-grey); }

.address-check-logo { display:none; position:relative; z-index:100; }

.address-check-input { float:left; width:100%; padding:0 30px; margin-top:10px; margin-bottom:20px; position:relative; }
.address-check-input > i { position:absolute; top:8px; left:38px; padding:8px; background-color:var(--color-light); font-size:28px; color:var(--color-red); z-index:10; border-radius:50%; }
.address-check-input .input { height:60px; padding-left:64px; font-size:17px; font-weight:500; color:var(--color-purple); border-color:var(--color-purple-light); border-radius:30px; }
.address-check-input .input:focus { border-color:var(--color-purple); }
.address-check-input .input::-webkit-input-placeholder { color:var(--color-purple); }
.address-check-input .input:-moz-placeholder { color:var(--color-purple); }
.address-check-input .input::-moz-placeholder { color:var(--color-purple); }
.address-check-input .input:-ms-input-placeholder { color:var(--color-purple); }

.address-breadcrumb { float:left; width:calc(100% - 60px); margin:30px; margin-top:0 !important; position:relative; font-size:13px; font-weight:600; line-height:30px; overflow:hidden; border-radius:8px; display:flex; justify-content:flex-end; }

.address-breadcrumb-pin { position:absolute; top:0; left:0; z-index:100; padding:5px; background-color:var(--color-red); border-radius:8px; color:#FFF; box-shadow:3px 0 0 #FFF; }
.address-breadcrumb-pin i { float:left; font-size:20px; }

.address-breadcrumb > ul { display:flex; padding-left:38px; white-space:nowrap; margin-right:auto; }
.address-breadcrumb > ul > li { flex:0 0 auto; }

.address-breadcrumb > ul > li > a { float:left; height:30px; padding:0 18px; margin-left:-5px; position:relative; background-color:var(--color-purple); color:#FFF; display:flex; align-items:center; }
.address-breadcrumb > ul > li:first-child > a { border-radius:8px 0 0 8px; }
.address-breadcrumb > ul > li:last-child > a { border-radius:0 8px 8px 0; }
.address-breadcrumb > ul > li > a:hover { background-color:var(--color-navy); }

.address-breadcrumb > ul > li > a::before , .address-breadcrumb li > a::after {
	content:"";
	border-left:12px solid transparent;
	border-top:22px solid transparent;
	border-bottom:22px solid transparent;
	height:0;
	position:absolute;
	width:0;
	top:-7px;
	right:0px;
	margin-left:-30px;
	border-left-color:var(--color-purple);
	z-index:5;
	pointer-events:none;
}

.address-breadcrumb > ul > li > a::after { right:-3px; border-left-color:#FFF; z-index:4; }
.address-breadcrumb > ul > li > a:hover::before { border-left-color:var(--color-navy); }
.address-breadcrumb > ul > li:last-child > a::before , .address-breadcrumb > ul > li:last-child > a::after { display:none; }

.header-breadcrumb { float:left; flex:1; margin-left:20px; margin-right:20px; display:flex; align-items:center; justify-content:center; }
.header-breadcrumb .address-breadcrumb { width:auto; margin:0 !important; }
.header-breadcrumb .address-breadcrumb > ul > li > a { background-color:var(--color-light); font-weight:500; color:var(--color-grey); pointer-events:none; }
.header-breadcrumb .address-breadcrumb > ul > li > a::before { border-left-color:var(--color-light); }

.address-check-box-list { float:left; width:100%; max-height:408px; min-height:408px; margin-bottom:10px; position:relative; overflow:hidden; overflow-y:auto; scrollbar-width:none; /* scrollbar-color:var(--color-grey-light) #0000; */ }
.address-check-box-list > ul { width:100%; }
.address-check-box-list > ul > li { width:100%; border-top:1px solid rgba(61,70,190,0.07); }
.address-check-box-list > ul > li > button { width:100%; padding:15px 30px; text-align:left; font-size:14px; font-weight:600; color:var(--color-purple); letter-spacing:0; display:flex; align-items:center; transition:all 0.5s; }
.address-check-box-list > ul > li > button:hover { background-color:var(--color-light); letter-spacing:0; }
.address-check-box-list > ul > li > button small { float:left; flex:1; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.address-check-box-list > ul > li > button i { float:right; margin-left:15px; margin-right:-10px; font-size:20px; opacity:0.5; transition:all 0.3s; }
.address-check-box-list > ul > li > button:hover i { opacity:1; margin-left:20px; margin-right:-15px; }

.nav-opened , .address-opened { overflow:hidden; }

/*	Start WHATSAPP	*/

.connect-whatsapp , .to-top { position:fixed; bottom:20px; right:20px; z-index:1990; display:block; transition:all 0.5s; }
.connect-whatsapp a { float:left; width:48px; height:48px; border:2px solid #FFF; background:#25CC64 url(../images/icon-whatsapp.png) no-repeat center / 20px; border-radius:50%; overflow:hidden; text-indent:-9999px; box-shadow:0 5px 15px rgba(61,70,190,0.13); }
.connect-whatsapp a:hover { background-color:#20AC55; }

.to-top { bottom:-60px; text-align:center; }
.scroll .to-top { bottom:80px; }
.to-top i { float:left; width:48px; font-size:28px; color:var(--color-grey); line-height:44px; background-color:var(--color-light); border:2px solid #FFF; box-shadow:0 5px 15px rgba(61,70,190,0.13); border-radius:50%; transition:all 0.5s; }
.to-top:hover i { border-color:var(--color-red); color:var(--color-red); }

/*	Start FOOTER	*/

.footer-wrap { float:left; width:100%; position:relative; overflow:hidden; }

.footer { float:left; width:100%; position:relative; display:flex; flex-flow:row wrap; background-color:var(--color-purple); color:#FFF; }
.footer::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/bg-footer.jpg) no-repeat 0 0 / 75% auto; pointer-events:none; }

.footer a { color:#FFF; }
.footer a:hover { color:var(--color-purple-light); text-decoration:underline; }

.footer-top { float:left; width:100%; padding-top:100px; padding-bottom:70px; position:relative; display:flex; align-items:center; }

.footer-logo { float:left; }
.footer-logo img { float:left; height:48px; }

.footer-social { float:right; margin-left:auto; }
.footer-social li { padding-right:15px; }
.footer-social li:last-child { padding-right:0; }
.footer-social li a { float:left; color:var(--color-purple-light); border:1px solid rgba(196,196,255,0.3); border-radius:50%; text-align:center; transition:all 0.5s; }
.footer-social li a:hover { border-color:#FFF; color:#FFF; border-radius:25%; }
.footer-social li a i { float:left; width:46px; font-size:28px; line-height:46px; }

.footer-check { float:left; width:100%; margin-bottom:50px; position:relative; text-align:center; overflow:hidden; display:flex; flex-direction:column; justify-content:center; align-items:center; }

.footer-check article { float:left; width:100%; margin-bottom:38px; position:relative; font-size:24px; line-height:100%; }
.footer-check article span { display:inline-block; position:relative; }
.footer-check article span::before , .footer-check article span::after { content:""; position:absolute; top:50%; left:-1020px; width:1000px; height:1px; background-color:rgba(196,196,255,0.2); }
.footer-check article span::after { left:auto; right:-1020px; }

.footer-check section { float:left; width:100%; max-width:740px; position:relative; cursor:pointer; display:flex; align-items:center; }
.footer-check section span { float:left; flex:1; padding:15px; margin-right:10px; font-size:16px; font-weight:500; border:1px solid #FFF; border-radius:30px; display:flex; align-items:center; justify-content:center; transition:all 0.5s; }
.footer-check section:hover span { background-color:var(--color-navy); border-color:transparent; }
.footer-check section span i { float:left; margin-right:10px; font-size:28px; }
.footer-check section strong { float:right; width:120px; background-color:var(--color-navy); border-radius:30px; font-size:28px; line-height:60px; transition:all 0.5s; }
.footer-check section:hover strong { background-color:var(--color-red); }

.footer-title { float:left; width:100%; margin:33px 0 16px 0; position:relative; font-size:17px; font-weight:500; color:var(--color-purple-light); }

.footer-links-wrap { float:left; width:100%; position:relative; display:flex; justify-content:flex-start; gap:24px; }
.footer-links { flex:1; }
.footer-links > ul , .footer-links > ul > li { width:100%; }
.footer-links > ul > li a { float:left; width:100%; padding:5px 0; }

.footer-contact { float:left; width:100%; padding-right:24px; line-height:30px; }

.footer-connect { float:left; width:100%; margin-top:71px; position:relative; }
.footer-connect > ul { width:100%; display:flex; justify-content:flex-start; gap:24px; }
.footer-connect > ul > li { flex:1; }

.footer-connect-item { float:left; width:100%; padding:9px; border:1px solid rgba(196,196,255,0.3); display:flex; align-items:center; border-radius:12px; transition:all 0.5s; }
.footer-connect-item:hover { border-color:#FFF; background-color:var(--color-purple-light); color:var(--color-navy) !important; }
.footer-connect-item i , .footer-connect-item img { float:left; width:60px; font-size:36px; color:var(--color-navy); line-height:60px; text-align:center; }
.footer-connect-item section { float:left; flex:1; padding-left:5px; }
.footer-connect-item section small { display:block; font-size:13px; font-weight:500; color:var(--color-purple-light); transition:all 0.5s; }
.footer-connect-item:hover section small { color:var(--color-navy); }
.footer-connect-item section strong { display:block; font-size:16px; font-weight:600; }

.ulunet-turkiye { float:left; width:100%; padding-top:60px; padding-bottom:60px; position:relative; display:flex; align-items:center; }
.ulunet-turkiye > a { float:left; }
.ulunet-turkiye > a img { float:left; height:48px; }
.ulunet-turkiye > section { float:right; margin-left:auto; display:flex; align-items:center; flex:1; font-size:44px; font-weight:200; line-height:100%; text-align:right; }
.ulunet-turkiye > section::before { content:""; float:left; height:1px; margin-left:40px; margin-right:40px; flex:1; background-color:rgba(196,196,255,0.15); }

.copyright { float:left; width:100%; padding-top:20px; padding-bottom:100px; position:relative; color:rgba(255,255,255,0.75); display:flex; align-items:center; }
.c-left { float:left; width:50%; }
.c-right { float:right; margin-left:auto; }

/*	Start CONTENT	*/

.page-title { float:left; width:100%; position:relative; font-size:43px; color:var(--color-navy); letter-spacing:-0.75px; line-height:50px; z-index:10; }
.page-title.medium { font-size:32px; letter-spacing:-0.5px; line-height:40px; }
.page-title.small { font-size:26px; letter-spacing:-0.5px; line-height:30px; }
.page-title.top { padding-top:78px; }
.page-title.bottom { padding-bottom:32px; }
.page-title.medium.bottom { padding-bottom:23px; }
.page-title.small.bottom { padding-bottom:17px; }
.page-title strong { display:inline-block; position:relative; }
.page-title strong::after { content:""; position:absolute; bottom:0; left:-7px; right:-7px; height:4px; background:url(../images/line.png) no-repeat 0 0 / 100% 100%; }
.page-title.text-white strong::after { background-image:url(../images/line-white.png); }

.page-title-icon { float:left; width:100%; margin-bottom:15px; position:relative; display:flex; align-items:center; justify-content:center; }
.page-title-icon i { float:left; width:60px; font-size:40px; color:#FFF; line-height:60px; background-color:var(--color-green); border-radius:50%; }
.page-title-icon.red i { background-color:var(--color-red); }

.small-title { float:left; width:100%; padding:10px 0 10px 48px; position:relative; font-size:13px; color:var(--color-navy); letter-spacing:1px; overflow:hidden; }
.small-title.medium { font-size:17px; font-weight:600; letter-spacing:0; }
.address-check-title { width:calc(100% - 80px); margin-top:14px; margin-left:30px; font-size:15px; font-weight:500; letter-spacing:0; }
.small-title small { float:left; position:relative; display:flex; align-items:center; }
.small-title small i { float:left; margin-right:12px; font-size:24px; line-height:20px; }
.small-title small::before , .small-title small::after { content:""; position:absolute; top:50%; left:-1015px; width:1000px; height:1px; background-color:rgba(61,70,190,0.12); }
.small-title small::after { left:auto; right:-1015px; }

.page-text , .page-summary { float:left; width:100%; position:relative; font-size:17px; line-height:30px; z-index:10; }
.page-text.in { margin-top:-12px; }
.page-summary { font-size:19px; }
.page-summary.top { margin-top:19px; }
.page-summary.bottom { margin-bottom:43px; }
.page-summary.slim { padding-left:18%; padding-right:18%; }

.page-text p , .page-summary p { margin-bottom:20px; }
.page-text p:last-child , .page-summary p:last-child { margin-bottom:0 !important; }

.page-text b , .page-text strong , .page-summary b , .page-summary strong { font-weight:600; }
.page-text a , .page-summary a { font-weight:600; color:var(--color-navy); text-decoration:underline; word-break:break-all; overflow-wrap:anywhere; }
.page-text a:hover , .page-summary a:hover { text-decoration:none; }

.page-text ul , .page-text ol , .page-summary ul , .page-summary ol { float:none; padding-bottom:20px; display:table; }
.page-text ol , .page-summary ol { padding-left:20px; padding-bottom:20px; display:inline-block; }

.page-text ul li , .page-summary ul li { width:100%; padding-left:20px; margin-bottom:10px; position:relative; font-weight:500; }
.page-text ul li::before , .page-summary ul li::before { content:""; position:absolute; top:10px; left:0; width:6px; height:6px; background-color:var(--color-black); border-radius:50%; }

.page-text ol li , .page-summary ol li { width:100%; margin-bottom:15px; display:list-item; list-style:decimal; }
.page-text ul li:last-child , .page-summary ul li:last-child { margin-bottom:0; }
.page-text ol li::marker , .page-summary ol li::marker { font-weight:700; }

.text-column { column-count:2; column-gap:40px; }

.page-photo { float:left; width:100%; max-height:480px; aspect-ratio:5/3; clip-path:polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px)); overflow:hidden; }
.page-photo img { width:100%; height:100%; object-fit:cover; }

.text-white { color:#FFF !important; }
.text-dark { color:var(--color-dark) !important; }
.text-red { color:var(--color-red) !important; }
.text-purple { color:var(--color-purple) !important; }
.text-grey { color:var(--color-grey) !important; }
.text-yellow { color:var(--color-yellow) !important; }
.text-orange { color:var(--color-orange) !important; }
.text-green { color:var(--color-green) !important; }

.fw-700 { font-weight:700; }
.fw-600 { font-weight:600; }
.fw-400 { font-weight:500; }
.fw-300 { font-weight:300; }

.fs-30 { font-size:30px; line-height:36px; }
.fs-17 { font-size:17px; line-height:24px; }
.fs-15 { font-size:15px; line-height:24px; }

.advantages , .package-list { float:left; width:100%; position:relative; z-index:100; }
.advantages > ul , .package-list > ul { width:100%; display:flex; flex-flow:row wrap; justify-content:space-between; gap:20px; }
.advantages > ul > li , .package-list > ul > li { flex:1; }

.advantage-item { float:left; width:100%; height:100%; padding:20px 10px; background-color:rgba(255,255,255,0.5); text-align:center; transition:all 0.5s; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }
.advantage-item:hover { box-shadow:0 20px 30px rgba(61,70,190,0.1); background-color:#FFF; }
.advantage-item picture { float:left; width:100%; display:flex; justify-content:center; mix-blend-mode:multiply; }
.advantage-item picture img { float:left; height:80px; border-radius:50%; }
.advantage-item strong { float:left; width:100%; margin-top:14px; margin-bottom:6px; font-weight:600; color:var(--color-purple); }

.block-light { position:relative; background-color:var(--color-light); }
.spaced { padding:100px; }
.block-gradient { position:relative; background:linear-gradient(180deg,#FFF,var(--color-light)); }
.block-gradient.reverse { background:linear-gradient(180deg,var(--color-light),#FFF); }

.block-narrow { float:left; width:400px; padding-right:60px; position:relative; }
.block-wide { float:right; width:calc(100% - 400px); position:relative; }

.block-lines , .block-lines-bottom { position:relative; }
.block-lines::before , .block-lines-bottom::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/waves-top.png) no-repeat 0 0 / 52% auto; opacity:0.12; pointer-events:none; z-index:1; }
.block-lines-bottom::after { background:url(../images/waves-bottom.png) no-repeat right bottom / 45% auto; }

.block-flexed { float:left; width:100%; position:relative; display:flex; }
.align-center { align-items:center; }
.align-end { align-items:end; }
.flex-left { float:left; width:50%; padding-right:5%; position:relative; }
.flex-right { float:right; width:50%; position:relative; }

.block-cta { float:left; width:100%; position:relative; display:flex; align-items:center; background-color:var(--color-purple); background-size:cover; background-repeat:no-repeat; background-position:center; overflow:hidden; color:#FFF; }
.block-cta::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:linear-gradient(90deg,var(--color-purple),rgba(61,70,190,0)); z-index:1; }

.block-cta-left , .block-cta-right { float:left; width:35%; position:relative; z-index:10; }
.block-cta-right { float:right; width:65%; max-width:920px; padding-left:80px; margin-left:auto; }

.cta-list { float:left; width:100%; position:relative; z-index:100; }
.cta-list > ul { width:100%; display:flex; justify-content:flex-start; gap:24px; }
.cta-list-wide > ul { flex-flow:row wrap; gap:10px; }
.cta-list > ul > li { flex:1; }
.cta-list-wide > ul > li { flex-basis:100%; }

.cta-list-in { margin-top:-90px; }

.cta-item { float:left; width:100%; height:100%; padding:30px; background-color:rgba(255,255,255,0.88); color:var(--color-purple); transition:all 0.5s; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); box-shadow:0 10px 25px rgba(61,70,190,0.08); display:flex; flex-direction:column; }
.cta-list-wide > ul > li .cta-item { padding:16px; }
.cta-item:hover { box-shadow:0 20px 30px rgba(61,70,190,0.2); background-color:#FFF; }

.cta-item::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/waves-right.png) no-repeat right bottom / auto 100%; opacity:0.15; transition:all 0.5s; pointer-events:none; }
.cta-item:hover::before { background-size:auto 130%; }

.cta-item picture { float:left; width:100%; min-height:48px; margin-bottom:55px; position:relative; display:flex; align-items:center; }
.cta-list-wide > ul > li .cta-item picture { margin-bottom:0; }
.cta-item picture::before { content:""; position:absolute; top:-8px; left:-8px; width:64px; height:64px; border-radius:50%; background:linear-gradient(180deg,var(--color-purple),rgba(61,70,190,0.0)); opacity:0.08; }
.cta-list-wide > ul > li .cta-item picture::before { transform:rotate(-90deg); }
.cta-item picture i { float:left; width:48px; position:relative; font-size:44px; line-height:48px; text-align:center; }
.cta-item picture strong { float:left; flex:1; padding-left:12px; font-size:20px; font-weight:500; }
.cta-item picture small { float:right; margin-left:auto; position:relative; font-size:24px; opacity:0.3; transition:all 0.5s; }
.cta-item:hover picture small { opacity:1; }
.cta-item picture span { float:left; padding-left:15px; font-size:24px; font-weight:700; color:var(--color-red); line-height:48px; }

.cta-item section { float:left; width:100%; margin-top:auto; margin-bottom:-3px; font-size:18px; font-weight:500; }
.cta-item section span { display:block; margin-bottom:9px; font-size:15px; color:var(--color-purple-light); }

.cta-item.light { background-color:rgba(32,38,102,0.5); color:#FFF; }
.cta-item.light:hover { background-color:var(--color-navy); }
.cta-item.light::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; border:1px solid var(--color-purple-light); opacity:0.5; border-radius:20px; transition:all 0.5s; }
.cta-item.light:hover::after { border-color:#FFF; opacity:1; }
.cta-item.light picture::before { background:linear-gradient(180deg,var(--color-purple-light),rgba(196,196,255,0.0)); opacity:0.15; }

.block-speed-test { float:left; width:100%; position:relative; }
.block-speed-test .hero-video { left:50%; width:50%; mix-blend-mode:multiply; opacity:0.3; }
.block-speed-test::before { content:""; position:absolute; top:0; bottom:0; left:50%; right:0; background:linear-gradient(90deg,var(--color-light),rgba(247,248,252,0)); z-index:1; }

.block-speed-test .block-cta-right { float:left; padding-left:0; margin-left:0; }
.block-speed-test .block-cta-left { float:right; width:auto; margin-left:auto; }
.block-speed-test .cta-item section { margin-bottom:-4px; font-size:16px; font-weight:400; color:var(--color-grey); }

.speed-test-cta { float:right; width:160px; height:100%; position:relative; }
.speed-test-cta a { float:left; width:100%; height:100%; padding:30px; position:relative; color:#FFF; background-color:var(--color-purple); text-align:right; display:flex; flex-direction:column; transition:all 0.5s; }
.speed-test-cta a:hover { background-color:var(--color-red); }
.speed-test-cta a i { float:right; width:48px; margin-left:auto; margin-bottom:10px; font-size:44px; line-height:48px; text-align:center; }
.speed-test-cta a strong { float:right; width:100%; margin-top:auto; margin-bottom:-5px; font-size:24px; line-height:30px; }

.block-subscribe { float:left; width:100%; position:relative; z-index:100; }
.block-subscribe > ul { width:100%; display:flex; justify-content:flex-start; gap:40px; }
.block-subscribe > ul > li { flex:1; }

.subscribe-item { float:left; width:100%; height:100%; padding:40px; padding-right:38% !important; position:relative; display:flex; flex-direction:column; }
.subscribe-item::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; border:1px solid rgba(61,70,190,0.1); border-radius:20px; pointer-events:none; z-index:10; }

.subscribe-item .page-title.small { margin-top:-5px; }
.subscribe-item .page-text { margin-bottom:66px; }
.subscribe-item .button-cta { margin-top:auto; }
.subscribe-item .button-cta a { min-width:240px; }
.subscribe-item > picture { position:absolute; top:40px; bottom:0; right:0; width:calc(38% - 30px); overflow:hidden; pointer-events:none; z-index:-1; }
.subscribe-item > picture img { width:100%; height:100%; object-fit:cover; transform-origin:center; transition:all 3s; }
.subscribe-item:hover > picture img { transform:scale(1.25,1.25); }
.subscribe-item > picture::after { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:url(../images/mask-subscribe-1.png) no-repeat 0 0 / 100% auto; }
.subscribe-switch > picture::after { background-image:url(../images/mask-subscribe-2.png); }

.block-app { float:left; width:100%; padding-top:40px; position:relative; background-color:var(--color-navy); background-size:cover; background-repeat:no-repeat; background-position:center; color:#FFF; }
.block-app-content , .block-app-screen { float:left; width:50%; position:relative; }

.block-app-content .page-text { margin-top:78px; margin-bottom:32px; }

.block-app-screen picture { float:left; width:100%; display:flex; justify-content:center; }
.block-app-screen picture img { float:left; width:100%; max-width:540px; }

.app-buttons { float:left; width:100%; position:relative; z-index:100; }
.app-buttons ul { width:100%; }
.app-buttons li { width:200px; margin-right:20px; }
.app-buttons li > a { float:left; width:100%; display:flex; align-items:center; font-size:16px; font-weight:500; transition:all 0.5s;  background-color:#FFF; border-radius:25px;}
.app-buttons li > a:hover { background-color:var(--color-purple-light); }
.app-buttons li > a picture { float:left; margin-right:20px; transition:all 0.5s; }
.app-buttons li > a picture img { float:left; height:50px; }
.app-buttons li > a picture small { float:left; margin-top:-1px; margin-bottom:1px; }

.faq-wrap { float:left; width:100%; position:relative; display:flex; }

.faq-cta { float:left; width:calc(40% - 40px); padding:40px; position:relative; background-color:var(--color-light); background-size:cover; background-repeat:no-repeat; background-position:center; display:flex; align-items:end; overflow:hidden; }
.faq-cta::before { content:""; position:absolute; top:0; bottom:0; left:0; right:0; background:linear-gradient(180deg,rgba(61,70,190,0),var(--color-purple)); opacity:0.5; }

.faq-list { float:right; width:60%; padding:39px; margin-left:auto; position:relative; border:1px solid rgba(61,70,190,0.1); }

.tab { float:left; width:100%; margin-top:-5px; margin-bottom:40px; position:relative; display:flex; justify-content:center; overflow:hidden; }
.tab > ul { position:relative; }
.tab > ul::before , .tab > ul::after { content:""; position:absolute; top:50%; left:-1025px; width:1000px; height:1px; background-color:rgba(61,70,190,0.1); }
.tab > ul::after { left:auto; right:-1025px; }

.tab > ul > li { margin:0 4px; }
.tab > ul > li a { float:left; padding:11px 29px; font-weight:600; font-size:16px; color:var(--color-purple); border:1px solid; border-radius:25px; transition:all 0.5s; border-color: var(--color-purple); }
.tab > ul > li a:hover { border-color:rgba(61,70,190,0.5); }
.tab > ul > li a.active { background-color:var(--color-grey-lightx); color:var(--color-navy); }

.package-list > ul { display:grid; justify-content:flex-start; gap:40px; grid-template-columns:repeat(3, 1fr); }

.package { float:left; width:100%; height:100%; padding:29px; padding-top:0 !important; border:1px solid rgba(61,70,190,0.3); transition:all 0.5s; color:var(--color-navy); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); display:flex; flex-direction:column; }
.package-selected { padding:0; margin-top:3px; border:0; box-shadow:none !important; }
.package:hover { border-color:var(--color-purple); box-shadow:0 20px 30px rgba(61,70,190,0.1); }

.package-photo { float:left; width:100%; margin-top:-1px; margin-bottom:25px; position:relative; }
.package-photo::after { content:""; position:absolute; top:-5px; left:0; right:0; height:5px; background:linear-gradient(90deg,var(--color-purple),var(--color-purple-light)); border-radius:5px 5px 0 0; z-index:10; }
.package-photo picture { float:left; width:100%; max-height:80px; position:relative; aspect-ratio:4/1; border-radius:0 0 20px 20px; overflow:hidden; }
.package-photo picture img { width:100%; height:100%; object-fit:cover; }
.package-photo picture::after { content:""; position:absolute; top:0; left:0; right:0; height:1px; background-color:rgba(255,255,255,0.7); transition:all 0.5s; }
.package:hover .package-photo picture::after { background-color:#FFF; }

.package-summary { float:left; width:100%; position:relative; font-size:13px; opacity:0.6; }
.package-title { float:left; width:100%; margin-top:2px; margin-bottom:12px; position:relative; font-size:24px; font-weight:600; line-height:26px; }
.package-selected .package-title { margin-top:2px; margin-bottom:12px; font-size:18px; line-height:20px; }

.package-content { float:left; width:100%; margin-bottom:23px; position:relative; }
.package-single .package-content { margin-top:27px; margin-bottom:13px; }
.package-selected .package-content { margin-bottom:3px; position:relative; }

.package-features { float:left; width:100%; position:relative; font-weight:500; }
.package-features section { float:left; width:100%; margin-bottom:5px; display:flex; align-items:center; }
.package-features section i { float:left; width:48px; font-size:32px; opacity:0.3; transition:all 0.5s; }
.package-selected .package-features section i { width:32px; font-size:24px; }
.package:hover .package-features section i { opacity:1; color:var(--color-red); }
.package-features small { float:left; width:100%; padding-left:48px; display:flex; align-items:center; font-size:13px; opacity:0.6; }

.package-price { float:left; width:100%; margin-top:auto; margin-bottom:13px; position:relative; }
.package-price-item { float:left; width:100%; margin-top:8px; position:relative; display:flex; align-items:end; color:var(--color-purple); }
.package-price-item strong { float:left; font-size:24px; line-height:24px; }
.package-price-item.discount strong { font-size:30px; color:var(--color-red); }
.package-selected .package-price-item strong { font-size:20px !important; }
.package-price-item small { float:right; margin-left:auto; flex:1; display:flex; align-items:center; }
.package-price-item small::before { content:""; float:left; flex:1; height:1px; margin-left:15px; margin-right:15px; background-color:rgba(61,70,190,0.1); }

.package-extra-fee { float:left; width:100%; position:relative; }
.package-extra-fee .small-title { padding-left:0; }
.package-extra-fee section { float:left; width:100%; margin-top:-5px; font-size:13px; opacity:0.75; }

.package-cta { float:left; width:100%; margin-top:20px; position:relative; }
.package-cta > ul { width:100%; display:flex; justify-content:space-between; gap:8px; }
.package-cta > ul > li { flex:1; text-align:center; }
.package-cta > ul > li a { float:left; width:100%; padding:9px; font-size:12px; font-weight:700; border:1px solid rgba(61,70,190,0.1); border-radius:50px; transition:all 0.5s; }
.package-cta > ul > li a.bold { padding:13px; font-size:16px; }
.package-cta > ul > li a.dark { background-color:var(--color-purple); color:#FFF; }
.package-cta > ul > li a.red { background-color:var(--color-red); color:#FFF; }
.package-cta > ul > li a.grey { background-color:var(--color-grey-lightx); color:var(--color-navy); }
.package-cta > ul > li a:hover { border-color:var(--color-navy); color:var(--color-navy); }
.package-cta > ul > li a.dark:hover { background-color:var(--color-navy); color:#FFF; }
.package-cta > ul > li a.red:hover { background-color:var(--color-navy); color:#FFF; }

.package-hero { float:left; width:100%; margin-top:40px; position:relative; }
.package-hero-photo { float:left; width:35%; padding-right:60px; position:relative; }
.package-hero-photo picture { float:left; width:100%; overflow:hidden; }
.package-hero-photo picture img { float:left; width:100%; }
.package-hero-content { float:right; width:65%; position:relative; }
.package-hero-features { float:left; width:60%; padding-top:17px; padding-right:40px; position:relative; }
.package-hero-summary { float:left; width:40%; position:relative; }

.feature-list { float:left; width:100%; margin-top:11px; position:relative; }
.feature-list > ul { width:100%; display:flex; flex-flow:row wrap; }
.feature-list > ul > li { width:calc(50% - 15px); margin-bottom:15px; display:flex; }
.feature-list > ul > li:nth-child(even) { margin-left:auto; }
.feature-list > ul > li i { float:left; font-size:20px; color:var(--color-purple-light); }
.feature-list > ul > li span { float:left; padding-left:16px; font-size:15px; font-weight:500; }

.slider-packages-wrap { float:left; width:100%; position:relative; z-index:700; overflow:hidden; }

.slider-packages { float:left; width:100%; padding:0 90px; margin:-30px 0 10px 0; position:relative; display:flex; flex-flow:row wrap; }
.slider-packages .slick-list { padding:30px 0; overflow:hidden; }
.slider-packages .slick-track { height:100%; }

.slider-package-item { float:left; width:100%; height:100%; padding:0 20px; position:relative; }

.slider-packages .slick-prev { left:30px; }
.slider-packages .slick-next { right:30px; }


.inner-30 { margin:0 -30px; }
.inner-20 { margin:0 -20px; }
.inner-15 { margin:0 -15px; }
.inner-10 { margin:0 -10px; }

.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; }

.link-cta { float:left; width:100%; position:relative; display:flex; justify-content:center; overflow:hidden; }
.link-cta-in { position:relative; }
.link-cta-in::before , .link-cta-in::after { content:""; position:absolute; top:50%; left:-1025px; width:1000px; height:1px; background-color:rgba(61,70,190,0.1); }
.link-cta-in::after { left:auto; right:-1025px; }
.link-cta a , .button-cta a { float:left; padding:11px 24px; font-weight:500; border:1px solid rgba(61,70,190,0.15); border-radius:25px; transition:all 0.5s; }
.link-cta a:hover , .button-cta a:hover { border-color:transparent !important; background-color:var(--color-navy) !important; color:#FFF !important; }
.link-cta a small { float:left; }
.link-cta a i { float:right; margin-left:15px; margin-right:-15px; font-size:24px; line-height:20px; opacity:0.5; transition:all 0.3s; }
.link-cta a:hover i { margin-left:18px; margin-right:-18px; opacity:1; }

.button-cta { float:left; width:100%; margin-bottom:-16px; position:relative; }
.button-cta a { padding:13px 24px; margin-right:16px; margin-bottom:16px; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }
.button-cta a:last-child { margin-right:0; }
.button-cta a.red { border-color:transparent; background-color:var(--color-red); color:#FFF; }
.button-cta a.purple { border-color:transparent; background-color:var(--color-purple); color:#FFF; }
.button-cta a.white { border-color:#FFF; background-color:transparent; color:#FFF; }
.button-cta a small { float:left; }
.button-cta a i { float:right; margin-left:15px; margin-right:-10px; font-size:28px; line-height:20px; opacity:0.5; transition:all 0.3s; }
.button-cta a:hover i { opacity:1; }

.grayscale { filter:grayscale(100%); -webkit-filter:grayscale(100%); }
.grayscale:hover { filter:none; -webkit-filter:none; }

.alcente-news { float:left; width:100%; position:relative; overflow:hidden; }
.alcente-news ul { width:calc(100% + 100px); margin-left:-50px; display:flex; flex-flow:row wrap; }
.alcente-news li { width:33.33334%; padding:0 50px; margin-bottom:60px; position:relative; }
.alcente-news li::after { content:""; position:absolute; top:0; bottom:0; right:0; width:1px; background-color:#EEE; }
.alcente-news li a { float:left; width:100%; height:100%; display:flex; flex-direction:column; }
.alcente-news li picture { float:left; width:100%; margin-bottom:30px; aspect-ratio:5/3; overflow:hidden; clip-path:polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%); }
.alcente-news li picture img { width:100%; height:100%; object-fit:cover; transform-origin:center; transition:all 2s; }
.alcente-news li:hover picture img { transform:scale(1.25, 1.25); }
.alcente-news li a section { float:left; width:100%; position:relative; overflow:hidden; }
.alcente-news li a section::before { content:""; position:absolute; top:-2px; left:-6px; width:9px; height:9px; background-color:#fff; transform:skewX(-45deg); z-index:10; border:1px solid var(--color-red); }
.alcente-news li a section i { float:left; padding:0 24px; position:relative; border:1px solid var(--color-red); color:var(--color-red); font-size:11px; font-weight:700; line-height:28px; transition:all 0.5s; }
.alcente-news li a:hover section i { background-color:var(--color-red); color:#FFF; }
.alcente-news li a strong { float:left; width:100%; padding:17px 0; font-weight:500; font-size:22px; line-height:30px; }
.alcente-news li a span { float:left; width:100%; margin-top:auto; color:var(--color-grey); position:relative; }

.news-wrap { float:left; width:100%; position:relative; }

.news-content { float:left; width:calc(100% - 420px); position:relative; }
.news-photo { float:left; width:100%; max-height:480px; margin-bottom:30px; overflow:hidden; clip-path:polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px)); }
.news-photo img { width:100%; height:100%; object-fit:cover; object-position:center; }

.news-sidebar { float:right; width:360px; position:relative; }

.news-info { float:left; width:100%; padding:15px 0; margin-bottom:20px; position:relative; border-top:1px solid rgba(4,51,76,0.07); border-bottom:1px solid rgba(4,51,76,0.07); }
.news-info section { float:left; width:100%; margin-bottom:16px; }
.news-info section:last-child { margin-bottom:0; }
.news-info section small { display:block; font-size:13px; font-weight:600; color:var(--color-grey); letter-spacing:2px; }
.news-info section time { display:block; margin-top:5px; }

.page-share { float:left; width:100%; position:relative; }
.page-share ul { width:100%; }
.page-share li { margin-right:10px; margin-bottom:10px; }
.page-share li:last-child { margin-right:0; }
.page-share li a { float:left; background-color:var(--color-light); transition:all 0.5s; text-align:center; clip-path:polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%); }
.page-share li a:hover { background-color:var(--color-navy); color:#FFF; }
.page-share li a i { float:left; width:44px; font-size:24px; line-height:44px; transition:all 0.5s; }

.sub-top { float:left; width:100%; margin-bottom:10px; position:relative; background-color:var(--color-light); overflow:hidden; color:#FFF; display:flex; }
.sub-top > section { float:left; width:50%; position:relative; background:linear-gradient(35deg,var(--color-navy),var(--color-purple)); }
.sub-top > section::before { content:""; position:absolute; top:30px; bottom:0; left:0; right:0; background:url(../images/waves-bottom.png) no-repeat right top / 75% auto; mix-blend-mode:plus-lighter; opacity:0.5; pointer-events:none; }
.sub-top > section .in { float:left; width:100%; height:100%; display:flex; align-items:center; }
.sub-top > picture { float:right; width:100%; max-height:200px; position:relative; aspect-ratio:2/1; overflow:hidden; }
.sub-top.split > picture { width:50%; max-height:initial; }
.sub-top > picture img { width:100%; height:100%; object-fit:cover; }

.breadcrumb { float:left; width:100%; padding:20px 0; position:relative; font-size:13px; box-shadow:inset 0 -1px 0 rgba(61,70,190,0.06); background:linear-gradient(180deg,var(--color-light),#FFF); overflow:hidden; border-radius:12px; }
.breadcrumb section { float:left; width:500%; height:20px; }
.breadcrumb a , .breadcrumb i , .breadcrumb strong { float:left; color:var(--color-grey); }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb i { margin:0 20px; font-size:20px; opacity:0.4; }
.breadcrumb strong { font-weight:600; color:var(--color-navy); }

.hidden { overflow:hidden; }

.list-two { float:left; width:100%; position:relative; z-index:10; }
.list-two > ul { width:100%; display:grid; grid-template-columns:repeat(2,1fr); gap:40px; }
.list-single > ul { grid-template-columns:repeat(1,1fr); gap:30px; }

.bank-no-item , .nearest-ulunet { float:left; width:100%; height:100%; padding:29px; border:1px solid rgba(61,70,190,0.2); transition:all 0.5s; color:var(--color-navy); -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); display:flex; flex-direction:column; }
.bank-no-item:hover , .nearest-ulunet:hover { border-color:var(--color-purple); box-shadow:0 20px 30px rgba(61,70,190,0.1); }
.bank-no-item > picture { float:left; width:100%; margin-bottom:20px; }
.bank-no-item > picture img { float:left; max-width:240px; max-height:48px; }
.bank-no-item > section { float:left; width:100%; margin-top:auto; }
.bank-no-item > section > small { float:left; width:100%; margin-top:10px; word-break:break-word; }
.bank-no-item > section > small strong { display:inline-block; width:160px; }

.payment-point { flex-direction:row; align-items:center; }
.payment-point > picture { width:200px; margin-bottom:0; }
.payment-point > picture img { max-width:240px; max-height:initial; }
.payment-point > section { flex:1; padding-left:48px; margin-bottom:auto; }


.static-in { float:left; width:100%; padding-top:60px; position:relative; }
.static-in::before { content:""; position:absolute; top:0; bottom:0; left:350px; width:1px; background:rgba(61,70,190,0.06); }

.sidebar { float:left; width:340px; position:relative; }

.left-menu { float:left; width:280px; padding-top:5px; padding-bottom:40px; position:relative; }
.left-menu > ul { width:100%; }
.left-menu > ul > li { width:100%; }
.left-menu > ul > li a { float:left; width:100%; padding:10px 0; position:relative; font-size:16px; font-weight:500; display:flex; align-items:center; transition:all 0.5s; }
.left-menu > ul > li a.menu-active { color:var(--color-red); }
.left-menu > ul > li a small { float:left; margin-right:15px; }
.left-menu > ul > li a i { float:right; margin-left:auto; font-size:20px; opacity:0.3; transition:all 0.5s; }
.left-menu > ul > li a:hover i , .left-menu > ul > li a.menu-active i { opacity:1; }

.right-block { float:right; width:calc(100% - 420px); position:relative; }

.subscribe-wrap { width:100%; max-width:720px; margin:40px auto 0 auto; display:flex; align-items:center; justify-content:center; }

.subscribe-packages-wrap { margin-top:22px; position:relative; z-index:10; }

.subscribe-package { float:left; width:100%; padding:30px; margin-bottom:24px; position:relative; background:linear-gradient(145deg,var(--color-purple),var(--color-navy)); overflow:hidden; }
.subscribe-packages-wrap .subscribe-package:last-child { margin-bottom:0; }
.subscribe-package::before { content:""; position:absolute; top:0; bottom:0; right:-40%; left:50%; background-image:linear-gradient(0deg,rgba(0,0,0,0.0),var(--color-dark)); transform:skew(-35deg); opacity:0.1; transition:all 0.5s; pointer-events: none; }
.subscribe-package:hover::before { left:25%; }

.subscribe-package-top { float:left; width:100%; padding-bottom:24px; position:relative; display:flex; align-items:center; color:#FFF; }

.subscribe-package-features { float:left; flex:1; padding-left:54px; position:relative; }
.subscribe-package-features i { position:absolute; top:0; left:0; width:40px; font-size:28px; line-height:40px; text-align:center; background-color:rgba(0,0,0,0.25); border-radius:50%; }
.subscribe-package-features strong , .subscribe-package-features section , .subscribe-package-features small , .subscribe-package-price section , .subscribe-package-price strong , .subscribe-package-price small { display:block; }
.subscribe-package-features strong { font-size:40px; letter-spacing:-0.75px; line-height:100%; }
.subscribe-package-features strong span { font-size:20px; }
.subscribe-package-features section { margin:-7px 0 8px 0; font-size:13px; opacity:0.75; }
.subscribe-package-features small { font-size:17px; font-weight:500; }

.subscribe-package-price { float:right; width:160px; padding:14px 9px; margin-left:auto; border:1px solid #FFF; border-radius:12px; display:flex; align-items:center; flex-direction:column; }
.subscribe-package-price section { font-size:17px; text-decoration:line-through; }
.subscribe-package-price strong { margin:5px 0; font-size:24px; color:var(--color-yellow); letter-spacing:-0.75px; }
.subscribe-package-price small { font-size:13px; }

.subscribe-package-cta { float:left; width:100%; padding:12px; display:flex; align-items:center; color:var(--color-purple); background-color:#FFF; border-radius:12px; transition:all 0.5s; }
.subscribe-package:hover .subscribe-package-cta { background-color:var(--color-red); color:#FFF; }
.subscribe-package-cta small { float:left; margin-left:8px; font-size:16px; font-weight:500; }
.subscribe-package-cta i { float:right; margin-left:auto; font-size:24px; }

.subscribe-packages-info { float:left; width:100%; padding-left:54px; padding-top:34px; position:relative; font-size:16px; line-height:24px; }
.subscribe-packages-info.boxed { padding-left:80px; padding-top:24px; padding-right:24px; padding-bottom:24px; border-radius:12px; border:1px solid rgba(61,70,190,0.2); }
.subscribe-packages-info .page-text { font-size:16px; line-height:24px; }
.subscribe-packages-info .page-text p { margin-bottom:10px; }
.subscribe-packages-info picture { position:absolute; top:28px; left:0; width:40px; font-size:40px; color:var(--color-red); line-height:40px; text-align:center; }
.subscribe-packages-info.boxed picture { left:24px; }
.subscribe-packages-info picture img { float:left; width:100%; }

.test-results { float:left; width:100%; position:relative; }
.test-results > ul { width:100%; display:flex; flex-flow:row wrap; }
.test-results > ul > li { width:calc(50% - 10px); margin-top:8px; }
.test-results > ul > li:nth-child(even) { margin-left:auto; }

.test-result-item { float:left; width:100%; display:flex; align-items:center; font-weight:500; color:var(--color-navy); }
.test-result-item i { float:left; font-size:24px; }
.test-result-item small { float:left; flex:1; padding-left:10px; }

.steps-out , .subscribe-out { padding-left:40px; padding-right:40px; display:flex; }

.steps-wrap { float:left; width:100%; padding:17px; margin-bottom:10px; position:relative; display:flex; align-items:center; justify-content:center; }
.steps { position:relative; }
.steps > ul { display:flex; align-items:center; }
.steps > ul > li { display:flex; align-items:center; }
.steps > ul > li::after { content:""; float:right; width:32px; height:1px; margin:0 20px; background-color:rgba(61,70,190,0.2); }
.steps > ul > li:last-child::after { display:none; }

.step-item { float:left; display:flex; align-items:center; text-align:center; font-size:13px; font-weight:500; color:var(--color-purple); }
.step-done { color:var(--color-green); }
.step-item i { float:left; width:30px; margin-right:7px; font-size:20px; line-height:28px; border:1px solid rgba(61,70,190,0.27); border-radius:8px; background-color:#FFF; }
.step-item small { flex:1; text-align:left; line-height:14px; }
.step-active i { background-color:var(--color-purple); border-color:transparent; color:#FFF; }
.step-done i { background-color:var(--color-green); border-color:transparent; color:#FFF; }

.subscribe-sidebar { float:right; width:25%; max-width:400px; min-width:320px; margin-left:auto; position:relative; }
.subscribe-journey { float:left; padding-left:30px; padding-right:30px; flex:1; margin-right:10px; position:relative; }

.sidebar-toggle { transition:all 0.5s; }

.box { float:left; width:100%; position:relative; background-color:#FFF; box-shadow:0 5px 15px rgba(61,70,190,0.06); z-index:10; }
.box-space { float:left; width:100%; padding:30px; box-shadow:0 1px 0 rgba(61,70,190,0.08); }
.box-space:last-child { box-shadow:none; }

.box-title { padding-left:0; margin-top:-10px; }
.box-title small::before { display:none; }

.box-cta { float:left; width:100%; margin-top:30px; position:relative; display:flex; align-items:center; }
.box-cta-back { float:left; width:200px; }
.box-cta-proceed { float:right; width:200px; margin-left:auto; }

.upload-wrapper { float:left; width:100%; position:relative; display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }

.upload-box { float:left; width:100%; padding:19px; position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; overflow:hidden; border:1px solid var(--color-purple-light); border-radius:12px; text-align:center; gap:20px; }
.upload-box:hover { border-color:var(--color-purple); }
.upload-box.approved { border-color:var(--color-green); background-color:rgba(0,195,100,0.06); }
.upload-box.denied { border-color:var(--color-red); }

.upload-box input { display:none; }

.upload-box-info { float:left; width:100%; font-size:13px; line-height:16px; }
.upload-box-photo { float:left; width:100%; padding:14px; margin:auto 0; position:relative; border:1px dashed rgba(61,70,190,0.12); border-radius:20px; background-color:#FFF; }
.upload-box.approved .upload-box-photo { border-color:var(--color-green); border-style:solid; }
.upload-box-photo img { width:auto; max-width:180px; max-height:180px; }
.upload-box-photo i { position:absolute; top:7px; right:7px; z-index:1000; font-size:24px; color:var(--color-green); display:none; }
.upload-box.approved .upload-box-photo i { display:block !important; }

.upload-box-button { float:left; width:100%; padding:7px; font-weight:600; color:var(--color-purple); border:1px solid var(--color-purple); background-color:var(--color-light); border-radius:20px; display:flex; align-items:center; justify-content:center; cursor:pointer; }
.upload-box-button i { float:left; margin-right:10px; font-size:24px; }

.upload-browse { position:absolute; top:0; bottom:0; left:0; right:0; z-index:100; cursor:pointer; }

.agreement { float:left; width:calc(100% + 12px); margin-left:-6px; margin-bottom:-12px; position:relative; display:flex; flex-flow:row wrap; }
.agreement label { float:left; flex:1; flex-basis:100%; padding:0 6px; margin-bottom:12px; position:relative; }
.agreement label section { float:left; width:100%; min-height:60px; padding-top:10px; padding-bottom:10px; padding-left:54px; position:relative; border:1px solid var(--color-purple-light); background-color:var(--color-light); border-radius:12px; cursor:pointer; font-size:16px; font-weight:600; line-height:16px; transition:all 0.3s; display:flex; align-items:center; }
.agreement label input { position:absolute; left:26px; top:calc(50% - 11px); z-index:10; }
.agreement label input[type="radio"]:checked + section , .agreement label input[type="checkbox"]:checked + section { color:var(--color-green); border-color:var(--color-green); background-color:rgba(0,195,100,0.06); }


.sidebar-row { float:left; width:100%; margin-bottom:30px; position:relative; }
.sidebar-row:last-child { margin-bottom:0; }

.sidebar-row .header-cta-item { width:100%; margin-top:11px; justify-content:center; }

.choose-type { float:left; width:calc(100% + 12px); margin-left:-6px; margin-top:12px; margin-bottom:-20px; position:relative; display:flex; flex-flow:row wrap; }
.choose-type label { float:left; flex:1; flex-basis:100%; padding:0 6px; margin-bottom:20px; position:relative; }
.choose-type label > input { position:absolute; left:26px; top:24px; z-index:10; }
.choose-type label > input[type="radio"]:checked + .choose-type-item , .choose-type label > input[type="checkbox"]:checked + .choose-type-item { border-color:var(--color-green); background-color:rgba(0,195,100,0.06); }

.choose-type-item { float:left; width:100%; min-height:60px; padding:18px; padding-left:58px; position:relative; border:2px solid rgba(60,71,190,0.1); cursor:pointer; transition:all 0.3s; }
.choose-type-item .page-title.small { margin-bottom:4px; font-size:20px; font-weight:600; color:var(--color-purple); letter-spacing:0; }
.choose-type label > input[type="radio"]:checked + .choose-type-item .page-title.small , .choose-type label > input[type="checkbox"]:checked + .choose-type-item .page-title.small { color:var(--color-green); }

.choose-type-transition , .choose-type-form { float:left; width:100%; position:relative; }
.choose-type-transition { margin-top:20px; display:none; }
.choose-type-transition-info { font-size:13px; }
.choose-type-form { padding-bottom:5px; margin-bottom:15px; border-bottom:1px solid rgba(60,71,190,0.1); }
.choose-type-form-item { float:left; width:calc(50% - 8px); margin-bottom:15px; }
.choose-type-form-item:last-child { float:right; }

.choose-type label > input[type="radio"]:checked + .choose-type-item .choose-type-transition , .choose-type label > input[type="checkbox"]:checked + .choose-type-item .choose-type-transition { display:block; }


.nearest-wrap { position:relative; z-index:10; }
.nearest-sidebar { float:left !important; width:360px; min-width:initial; position:relative; }
.nearest-sidebar-item { float:left; width:100%; margin-bottom:24px; position:relative; }
.nearest-sidebar-item:last-child { margin-bottom:0; }

.nearest-sidebar-item.active::before { content:""; position:absolute; top:-5px; bottom:-5px; left:-30px; width:4px; background-color:var(--color-red); border-radius:0 5px 5px 0; }

.nearest-sidebar-item .count { float:right; padding:0 5px; margin-left:auto; position:relative; background-color:var(--color-purple-light); color:#FFF; font-size:11px; border-radius:8px; box-shadow:-15px 0 0 var(--color-light); z-index:10; }
.nearest-sidebar-item .w100 { color:var(--color-grey); font-size:13px; }
.nearest-sidebar-item.active .small-title small { color:var(--color-red) !important; }
.nearest-sidebar-item.active .count { background-color:var(--color-red); }

.nearest-content { float:right; width:calc(100% - 410px); position:relative; }

.nearest-ulunet { flex-direction:initial; }

.nearest-ulunet-icon { float:left; width:110px; text-align:center; }
.nearest-ulunet-icon > i { float:left; width:80px; font-size:48px; color:var(--color-red); line-height:80px; border-radius:50%; background-color:var(--color-light); }

.nearest-ulunet-content { float:right; flex:1; }

.nearest-ulunet-info { float:left; width:100%; }
.nearest-ulunet-info > section { float:left; width:100%; margin-bottom:15px; display:flex; align-items:center; }
.nearest-ulunet-info > section:last-child { margin-bottom:0; }
.nearest-ulunet-info > section > i { float:left; width:40px; font-size:24px; color:var(--color-purple); opacity:0.5; }
.nearest-ulunet-info > section > small { flex:1; font-size:17px; }

.nearest-ulunet-cta { padding-top:25px; margin-top:24px; margin-bottom:-10px; border-top:1px solid rgba(61,70,190,0.1); display:block; }
.nearest-ulunet-cta .button { float:left; height:40px; padding:0 12px; margin-right:10px; margin-bottom:10px; font-size:14px; line-height:40px; }
.nearest-ulunet-cta .button:last-child { margin-right:0; }


.promo-wrap { float:left; width:100%; margin-top:20px; position:relative; }
.promo-wrap::before { content:""; position:absolute; top:0; bottom:0; left:-1px; width:2px; background-color:rgba(61,70,190,0.07); }

.promo-item { float:left; width:100%; margin-bottom:80px; position:relative; }
.promo-item:last-child { margin-bottom:0; }

.promo-item::before { content:""; position:absolute; top:calc(50% - 24px); left:-24px; width:12px; height:12px; border:18px solid #FFF; border-radius:50%; background-color:var(--color-red); }

.promo-item-row { float:left; width:100%; display:flex; align-items:center; }
.promo-item-content , .promo-item-photo { float:left; width:calc(50% - 40px); }
.promo-item-content { padding-left:60px; }
.promo-item-photo { margin-left:auto; text-align:center; }
.promo-item-photo picture { float:left; width:100%; padding:30px; padding-bottom:0 !important; position:relative; background:linear-gradient(180deg,rgba(61,70,190,0.1),rgba(61,70,190,0.0)); }
.promo-item-photo picture img { float:left; width:100%; border-radius:8px 8px 0 0; }

.promo-item-number { float:left; width:100%; margin-top:3px; margin-bottom:17px; position:relative; font-size:20px; font-weight:500; color:var(--color-grey); line-height:24px; }


/*	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:20px; }

.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:var(--color-navy); }
.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:100%; 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; }
.fancy-form .item label { width:100%; display:flex; align-items:center; font-size:13px; color:var(--color-grey); line-height:16px; }
.fancy-form .item label section { flex:1; }


/*	Start CONTACT	*/

.accordion { float:left; width:100%; }
.accordion-section { float:left; width:100%; border-bottom:1px solid rgba(61,70,190,0.07); }

.accordion-section-title { float:left; width:100%; padding:24px 40px 25px 25px; position:relative; font-size:18px; font-weight:500; border-top:1px solid rgba(61,70,190,0.07); z-index:10; }
.accordion-section-title:hover { color:var(--color-purple); }
.accordion-section-title.active { color:var(--color-purple) !important; }
.accordion-section-title::after { content:""; position:absolute; top:0; bottom:0; right:20px; width:14px; background:url(../images/arrow-down.png) no-repeat center / 100% auto; transition:all 0.5s; opacity:0.5; }
.accordion-section-title.active::after { transform:rotate(180deg); opacity:1; }
.accordion-section-title section { float:left; }

.accordion-section-content { float:left; width:100%; padding-left:25px; margin-bottom:40px; position:relative; display:none; }
.accordion-section-text { float:left; width:100%; font-size:16px; color:var(--color-grey); line-height:30px; }

.accordion-more { float:left; width:100%; padding-left:20px; padding-right:20px; margin-top:30px; font-size:18px; line-height:30px; }
.accordion-more a { font-weight:500; color:var(--color-navy); text-decoration:underline; }
.accordion-more a:hover { text-decoration:none; }

.contact-info { float:left; width:100%; position:relative; display:flex; flex-flow:row wrap; }
.contact-info section { float:left; width:calc(50% - 12px); margin-bottom:30px; position:relative; line-height:30px; }
.contact-info section:nth-child(even) { float:right; margin-left:auto; }
.contact-info section > picture { float:left; width:100%; }
.contact-info section > picture i { float:left; font-size:40px; color:var(--color-purple); }
.contact-info section > strong { float:left; width:100%; margin:10px 0 1px 0; font-weight:600; color:var(--color-grey); }
.contact-info section > small { float:left; width:100%; font-size:17px; }

.contact-cta { float:left; width:100%; margin-top:9px; position:relative; }
.contact-cta ul { width:100%; }
.contact-cta li { width:50%; padding:0 10px; margin-bottom:20px; }
.contact-cta li a { float:left; width:100%; height:50px; padding-left:65px; position:relative; }
.contact-cta li a img { position:absolute; top:0; left:0; width:50px; height:50px; }
.contact-cta li a small { float:left; width:100%; margin:4px 0 2px 0; color:#60709B; font-weight:600; letter-spacing:1px; }
.contact-cta li a strong { float:left; width:100%; font-size:20px; font-weight:600; }

.contact-form { float:left; width:100%; position:relative; }

.contact-form form { display:flex; flex-flow:row wrap; }

.form-item { float:left; width:50%; padding:0 15px; margin-bottom:30px; position:relative; }
.subscribe-form .form-item { padding:0 10px; margin-bottom:20px; }
.form-item:nth-last-child(-n+2) { margin-bottom:0; }
.form-item > article { float:left; width:100%; margin-bottom:11px; font-weight:500; }

.form-item-text { margin-top:-10px; color:#666; }
.form-item label { float:left; width:100%; font-size:15px; }
.form-item section { float:left; width:100%; font-size:17px; font-weight:600; margin-bottom:-10px; }
.form-item a { display:inline-block; text-decoration:underline; font-weight:600; }

.tooltip { position:relative; display:inline-block; cursor:help; }
.tooltip .tooltip-text { position:absolute; bottom:100%; left:50%; transform:translateX(-50%); width:240px; background:rgba(61,70,190,0.6); color: #fff; padding:15px 20px; border-radius:12px; font-size:13px; text-align: center; white-space:normal; visibility:hidden; opacity:0; transition:opacity 0.25s ease, transform 0.25s ease; pointer-events:none; -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }
.tooltip:hover .tooltip-text { visibility:visible; opacity:1; transform:translateX(-50%) translateY(-8px); }
.tooltip .tooltip-text::after { content:""; position:absolute; top:100%; left:50%; transform:translateX(-50%); border-width:6px; border-style:solid; border-color:rgba(61,70,190,0.6) transparent transparent transparent; }

.contact-map { float:left; width:100%; max-height:600px; padding:9px; position:relative; aspect-ratio:3/2; border:1px solid var(--color-grey-light); overflow:hidden; }

.upload { float:left; width:100%; height:50px; position:relative; text-align:center; }

.upload section {
	float:left;
	width:100%;
	height:100%;
	position:relative;
	border-bottom:2px solid #1892AC;
	font-weight:500;
	font-size:15px;
	line-height:48px;
	z-index:2;
}
.upload:hover section { background-color:#FFF; }

.upload section::after { content:""; position:absolute; top:0; bottom:0; right:0; width:50px; background:url(../images/icon-clip.png) no-repeat center / auto 16px; }

.upload input {
	display:block !important;
	width:100% !important;
	height:100% !important;
	opacity:0 !important;
	overflow:hidden !important;
	position:absolute;
	left:0;
	top:0;
	z-index:3;
	cursor:pointer;
}

/*	Start PAGINATION	*/

.pages { float:left; width:100%; position:relative; text-align:center; }
.pages ul { width:100%; }
.pages li { float:none; display:inline-block; padding:0 5px 5px 5px; }
.pages li a { float:left; width:48px; height:48px; font-size:14px; line-height:48px; color:var(--color-navy); background-color:var(--color-light); transition:all 0.5s; clip-path:polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%); }
.pages li a:hover { color:#FFF; background-color:var(--color-navy); clip-path:polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px); }
.pages li a.current { color:#FFF; background-color:var(--color-navy); }

.radius-20 { border-radius:20px; }


@media only screen and (max-width:1640px) {

	.outer { padding-left:40px; padding-right:40px; }
	.wrap { max-width:1400px; padding-left:40px; padding-right:40px; }
	.spaced { padding:50px; }

}


@media only screen and (max-width:1480px) {

	.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; }

	.outer , .wrap { padding-left:30px; padding-right:30px; }
	.wrap { max-width:1260px; }

	.slider-hero , .slider-hero-item { max-height:500px; }
	.hero-title { padding-bottom:25px; font-size:48px; line-height:50px; }
	.slider-hero ul.slick-dots { padding-bottom:70px; }
	.slider-hero ul.slick-dots li { width:48px; }
	.hero-address-check { bottom:-28px; }

	.slider-packages { padding:0; }
	.slider-package-item { padding:0 15px; }
	.slider-packages .slick-prev { left:0; }
	.slider-packages .slick-next { right:0; }

	.faq-cta { width:calc(40% - 30px); padding:30px; }
	.faq-list { padding:29px; }
	.ulunet-turkiye > section { font-size:32px; }

	.block-subscribe > ul { gap:30px; }

	.footer-top { padding-top:80px; padding-bottom:60px; }
	.copyright { padding-top:0; padding-bottom:70px; }

	.block-cta-left { width:30%; }
	.block-cta-right { width:70%; padding-left:40px; }

	.page-title.medium { font-size:26px; line-height:34px; }
	.page-title.small { font-size:22px; letter-spacing:0; line-height:26px; }

	.subscribe-item { padding:30px; }
	.subscribe-item .page-text { margin-bottom:36px; }

	.package-hero { margin-top:40px; }
	.package-hero-photo { width:30%; padding-right:40px; }
	.package-hero-content { width:70%; }

}


@media only screen and (max-width:1360px) {

	.outer { padding-left:0; padding-right:0; }
	#nav > ul > li { margin-right:24px; }
	#nav-cta > ul > li::after { margin:18px 20px; }

	.radius-20 , .subscribe-item::before , .cta-item.light::after { border-radius:12px; }
	.slider-hero , .block-cta , .block-speed-test , .sub-top { border-radius:0; }

	.spaced { padding:40px; }

	.page-summary.slim { padding-left:8%; padding-right:8%; }

	.package-list > ul , .list-two > ul { gap:30px; }

	.static-in { padding-top:30px; }
	.static-in::before { left:292px; }
	.sidebar { width:260px; }
	.left-menu { width:100%; padding-top:0; }
	.right-block { width:calc(100% - 330px); }

	.nearest-sidebar { width:300px !important; }
	.nearest-content { width:calc(100% - 330px); }

}


@media only screen and (max-width:1240px) {

	.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; }

	#nav-cta > ul > li:first-child { display:none; }

	.slider-title-content { width:60%; }
	.slider-title-cta { width:40%;  }
	.slider-title article { font-size:18px; line-height:26px; }

	.advantages > ul > li { flex-basis:calc(25% - 20px); }

	.block-cta { display:block; }
	.block-cta , .block-speed-test { padding-top:60px !important; padding-bottom:60px !important; }
	.block-cta-left { width:100%; text-align:center; }
	.block-cta-right { width:100%; padding-left:0; padding-top:30px; max-width:initial; }

	.block-speed-test .block-cta-right { padding-top:0; }
	.block-speed-test .block-cta-left { margin-left:24px; }

	.spaced { padding:30px; }

	.cta-item { padding:24px; }

	.block-app { padding-top:0; }

	.subscribe-wrap { margin-top:30px; }
	.header-breadcrumb .address-breadcrumb > ul > li > a { padding:0 16px; font-size:11px; }

	.steps-out , .subscribe-out { padding-left:30px; padding-right:30px; }
	.steps > ul > li::after { width:20px; margin:0 12px; }
	.box-space { padding:24px; }
	.subscribe-journey { padding-left:24px; padding-right:24px; }

	.page-title.top { padding-top:58px; }
	.page-title.bottom { padding-bottom:22px; }

	.package-hero { margin-top:30px; }
	.package-hero-photo { padding-right:30px; }
	.package-hero-features { width:100%; padding-right:0; padding-bottom:20px; }
	.package-hero-summary { width:100%; }

	.list-two > ul { grid-template-columns:repeat(1,1fr); gap:20px; }
	.bank-no-item , .nearest-ulunet { padding:24px; }

	.nearest-ulunet-icon { width:84px; }
	.nearest-ulunet-icon > i { width:64px; font-size:40px; line-height:64px; }
	.nearest-sidebar-item.active::before { left:-24px; }

	.promo-item-content , .promo-item-photo { width:calc(50% - 30px); }
	.promo-item-content { padding-left:30px; }
	.promo-item-photo picture { padding:24px; }

	.tab { margin-top:5px; }
	.page-summary.bottom { margin-bottom:28px; }

	.block-narrow { width:320px; padding-right:40px; }
	.block-wide { width:calc(100% - 320px); }

}


@media only screen and (max-width:1023px) {

	.ulunet { padding-top:70px; }
	.ulunet-subscribe { padding-top:106px; }
	.ulunet-slim { padding-top:60px; }
	.wrap { float:left; }

	.header { height:70px; background-color:#FFF !important; }
	.ulunet-subscribe .header { height:106px; }
	.ulunet-slim .header { position:absolute; height:60px; }
	.header .wrap { padding:0 20px; }
	.header-flex { padding-top:0; padding-bottom:0; }
	.ulunet-subscribe .header-flex { padding-top:12px; padding-bottom:12px; }
	.nav-opened .header { background-color:#FFF; }
	.header-line { margin-right:20px; }
	#logo a img { padding:2px 0 6px 0; }

	.header-cta { width:100%; display:none; }
	#nav-wrap .header-cta , .ulunet-subscribe .header-cta { display:block !important; }
	.header-cta > ul , #nav-cta > ul { width:100%; display:flex; flex-flow:row wrap; }
	.header-cta > ul > li , #nav-cta > ul > li { width:calc(50% - 8px); margin-right:0; margin-bottom:16px; }
	.header-cta > ul > li:nth-child(even) , #nav-cta > ul > li:nth-child(even) { margin-left:auto; }
	.header-cta > ul > li:last-child { width:100%; margin-bottom:0; }
	.header-cta > ul > li .header-cta-item , #nav-cta > ul > li .nav-cta-item { width:100%; }
	.header-cta-item { padding:12px; border-radius:24px; justify-content:center; }
	.header-cta-item small { padding-left:10px; font-size:17px; }

	.ulunet-subscribe .header-cta { width:auto; margin-left:auto; margin-right:-8px; }
	.ulunet-subscribe .header-cta-item { padding:8px; }
	.ulunet-subscribe .header-cta-item small { padding-left:10px; font-size:13px; }

	.header-breadcrumb { position:absolute; top:64px; left:0; right:0; }

	.nav-icon { float:right; width:70px; height:70px; position:relative; top:0; cursor:pointer; display:block; text-indent:-9999px; }
	.nav-icon span { position:absolute; top:50%; left:50%; width:40px; height:2px; margin:-1px 0 0 -16px; transition:all 0.5s; }
	.nav-icon span::before { content:""; position:absolute; top:-6px; left:0; right:0; height:2px; background-color:var(--color-navy); transition:all 0.5s; }
	.nav-icon span::after { content:""; position:absolute; bottom:-6px; left:0; right:0; height:2px; background-color:var(--color-navy); transition:all 0.5s; }

	.nav-icon-close span { background-color:transparent; }
	.nav-icon-close span::before {
		-webkit-transform:rotate(-135deg);
		-moz-transform:rotate(-135deg);
		-o-transform:rotate(-135deg);
		-ms-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top:0;
		right:0;
		background-color:var(--color-red);
	}
	.nav-icon-close span::after {
		-webkit-transform:rotate(135deg);
		-moz-transform:rotate(135deg);
		-o-transform:rotate(135deg);
		-ms-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom:0;
		right:0;
		background-color:var(--color-red);
	}

	.nav-icon-close::before {
		content:"";
		border-bottom:4px solid transparent;
		border-left:10px solid transparent;
		border-right:10px solid transparent;
		height:0;
		position: absolute;
		width:0;
		left:50%;
		bottom:0;
		margin-left:-10px;
		border-bottom-color:var(--color-light);
	}

	#nav-wrap { position:fixed; top:70px; bottom:0; left:0; right:0; width:auto; height:calc(100vh - 70px); padding:30px 30px 110px 30px; display:none; background-color:var(--color-light); overflow-y:auto; z-index:20; scrollbar-width:none; }

	#nav { width:100%; margin-top:40px; margin-bottom:40px; }
	#nav > ul { width:100%; border-top:1px solid rgba(61,70,190,0.06); }
	#nav > ul > li { width:100%; border-bottom:1px solid rgba(61,70,190,0.06); }
	#nav > ul > li:first-child { display:block; }

	#nav > ul > li.nav-multi::after { content:""; position:absolute; top:0; right:10px; width:14px; height:60px; background:url(../images/arrow-down.png) no-repeat right 52% / 100% auto; transition:all 0.3s; }

	#nav > ul > li > a { width:100%; padding:0 32px 0 20px; font-size:18px; font-weight:500; line-height:60px; }
	#nav > ul > li:hover > a , #nav > ul > li > a.active { color:var(--color-red); box-shadow:none; }

	#nav > ul > li > a small , #nav-cta > ul > li:first-child { display:block; }
	#nav > ul > li > a i , #nav > ul > li > a::before , #nav > ul > li.nav-multi > a::after , #nav-cta > ul > li::after { display:none; }

	.nav-menu { float:left; width:100%; position:relative; top:auto; left:auto; margin-bottom:20px; box-shadow:none; display:none; }
	.nav-menu a { font-size:17px; }

	#nav-cta { width:100%; }
	.nav-cta-item { border-radius:24px; justify-content:center; border:1px solid var(--color-purple); }
	.nav-cta-item i { line-height:46px; }
	.nav-cta-item img { height:46px; padding:13px 0; }

	.slider-hero-wrap { margin-bottom:40px; }
	.slider-hero , .slider-hero-item { max-height:600px; aspect-ratio:1/1; }
	.slider-hero-item::before { right:0; background:linear-gradient(0deg,var(--color-navy),rgba(61,70,190,0)); }
	.slider-title { top:auto; padding-bottom:110px; }
	.slider-title-in { display:block; }
	.slider-title-content { width:100%; }
	.slider-title article { padding-bottom:25px; font-size:16px; line-height:24px; opacity:0.8; }
	.hero-title { padding-bottom:20px; font-size:34px; line-height:40px; }

	.slider-title-cta { width:100%; padding-left:0; }
	.slider-title-cta .button-cta a { float:left; }

	.slider-hero ul.slick-dots { padding-bottom:56px; }
	.hero-address-check { bottom:-38px; }

	.mask , .mask-top { left:8px !important; right:8px !important; }

	.block-flexed , .faq-wrap { display:block; }
	.flex-left , .block-app-content { width:100%; padding-right:0; }
	.flex-right , .block-app-screen { width:100%; margin-top:20px; }
	.flex-right:first-child , .block-app-screen:first-child { margin-top:0; }

	.block-app-content .page-text { margin-top:8px; text-align:center; }

	.app-buttons ul { display:flex; margin-bottom:30px; }
	.app-buttons li { width:calc(50% - 8px); margin-right:0; }
	.app-buttons li:nth-child(even) { margin-left:auto; }
	.app-buttons li > a { justify-content:center; }
	.app-buttons li > a picture { margin-right:3px; }

	.block-app-screen picture img { max-width:400px; }

	.block-narrow { width:100%; padding-right:0; }
	.block-wide { width:100%; margin-top:20px; }

	.block-speed-test .block-cta-left { width:100%; margin-left:0; margin-top:24px; }
	.speed-test-cta { width:100%; }
	.speed-test-cta a { padding:20px 25px; flex-direction:initial; align-items:center; }
	.speed-test-cta a i { margin-bottom:0; }
	.speed-test-cta a strong { float:right; width::auto; margin-top:0; margin-left:auto; margin-bottom:0; }

	.page-summary.slim { padding-left:0; padding-right:0; }

	.cta-list-in { margin-top:-30px; }
	.cta-list > ul , .footer-links-wrap , .footer-connect > ul { flex-flow:row wrap; }
	.cta-list > ul > li , .footer-links , .footer-connect > ul > li { flex-basis:calc(50% - 12px); }
	.cta-item picture { margin-bottom:35px; }

	.advantages > ul { gap:8px; }

	.block-subscribe > ul { flex-flow:row wrap; }
	.block-subscribe > ul > li , .cta-list-wide > ul > li { flex-basis:100%; }
	.cta-list-wide { margin-top:30%; }

	.faq-cta { width:100%; }
	.faq-list { width:100%; padding:0; border:0; margin-top:30px; }
	.accordion-section-title , .accordion-section-content { padding-left:20px; }

	.footer-top { padding-top:50px; padding-bottom:50px; }
	.footer-check article { margin-bottom:30px; font-size:20px; }

	.ulunet-turkiye > a img { height:40px; }
	.ulunet-turkiye > section { font-size:24px; }
	.ulunet-turkiye > section::before { margin-left:20px; margin-right:20px; }

	.package-list > ul { grid-template-columns:repeat(2,1fr); gap:24px; }

	.static-in::before , .sidebar , .sub-top.split > picture { display:none; }
	.right-block , .sub-top > section { width:100%; }

	.steps-out , .subscribe-out { padding-left:10px; padding-right:10px; }
	.subscribe-out { flex-direction:column; }
	.subscribe-journey { padding-left:20px; padding-right:20px; margin-right:0; margin-top:10px; order:2; }
	.subscribe-sidebar { width:100% !important; max-width:initial; min-width:initial; order:1; background-color:transparent; }
	.box-space { padding:20px; }

	.subscribe-sidebar .box-space { padding:0; }
	.sidebar-toggle { padding-top:10px; padding-bottom:10px; background-color:var(--color-purple); }
	.sidebar-toggle-close { background-color:var(--color-red); }
	.sidebar-toggle::after { content:""; position:absolute; top:0; bottom:0; right:0; width:40px; z-index:10; background:url(../images/arrow-white-down.png) no-repeat center / 14px auto; transition:all 0.5s; }
	.sidebar-toggle-close::after { transform:rotate(180deg); }
	.sidebar-toggle .text-grey { color:#FFF !important; }
	.sidebar-toggle-content { padding:0 20px 30px 20px; display:none; }

	.package-hero-photo { width:100%; max-width:480px; padding-right:0; margin-bottom:10px; }
	.package-hero-content { width:100%; }

	.my-fancy-wrap { scrollbar-width:none; }

	.nearest-content { width:100%; margin-top:25px; }
	.nearest-sidebar-item.active::before { left:-20px; }

	.promo-wrap::before { display:none; }
	.promo-item::before { top:-9px; left:-18px; }
	.promo-item-row { display:block; }
	.promo-item-content , .promo-item-photo { width:100%; }
	.promo-item-content { padding-left:0; padding-bottom:30px; }
	.promo-item-number { padding-left:32px; }

}





@media only screen and (max-width:767px) {

	.connect-whatsapp { bottom:12px; right:12px; }

	.slider-package-item { padding:0 5px; }
	.slider-packages .slick-prev { left:-18px; }
	.slider-packages .slick-next { right:-18px; }
	.faq-cta { padding:15px; }
	.slider-hero ul.slick-dots li { width:30px; }
	.page-title { font-size:30px; letter-spacing:-0.5px; line-height:36px; }
	.page-title.top { padding-top:50px; }
	.page-title.bottom { padding-bottom:24px; }
	.page-title strong::after { left:-5px; right:-5px; height:4px; }

	.block-lines::before , .block-lines-bottom::after { background-size:88% auto; opacity:0.33; }

	.hero-address-check.fixed { position:fixed; left:12px !important; bottom:-50px !important; width:calc(100% - 82px) !important; padding:5px !important; display:flex !important; border-width:2px; background:linear-gradient(145deg,var(--color-purple),var(--color-red)); transition:all 0.5s; }
	.scroll-mobile .hero-address-check.fixed { bottom:12px !important; }
	.hero-address-check.fixed section span { padding:5px; border:0; background-color:transparent; color:#FFF; font-size:14px !important; }
	.hero-address-check.fixed section span i { font-size:24px; }

	.footer { padding-bottom:48px; }

	.address-check-box-out { top:0; padding:0; }
	.address-check-box { max-width:initial; max-height:initial; height:100%; border-radius:0; }
	.address-check-box::before { content:""; position:absolute; top:0; left:0; right:0; height:56px; background-color:var(--color-light); }

	.address-check-logo { display:block; }
	.address-check-logo img { float:left; height:28px; margin:12px 0 12px 24px; }
	.address-check-close { top:6px; right:6px; }

	.address-check-title { width:calc(100% - 48px); margin-top:9px; margin-left:24px; }
	.address-check-input { padding:0 24px; }
	.address-check-input > i { top:6px; left:30px; padding:6px; font-size:24px; }
	.address-check-input .input { height:48px; padding-left:48px; font-size:15px; }
	.address-breadcrumb { width:calc(100% - 48px); margin:24px 24px 20px 24px; }

	.address-check-box-list { max-height:initial; height:calc(100vh - 229px); min-height:calc(100vh - 229px); margin-bottom:0; }
	.address-check-box-list > ul { padding-bottom:120px; }
	.address-check-box-list > ul > li > button { padding:15px 24px; }

	.address-breadcrumb > ul.address-breadcrumb-scroll , .address-breadcrumb > ul.address-breadcrumb-scroll li { float:none !important; display:block; }
	.address-breadcrumb > ul.address-breadcrumb-scroll { flex:1 1 auto; display:flex !important; flex-wrap:nowrap; white-space:nowrap; overflow-x:auto; overflow-y:hidden; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
	.address-breadcrumb > ul.address-breadcrumb-scroll::-webkit-scrollbar { display:none; }

	.breadcrumb { padding:14px 0; font-size:11px; border-radius:0; }
	.breadcrumb i { margin:0 10px; font-size:16px; line-height:20px; }

	.header-breadcrumb .address-breadcrumb > ul > li > a { font-size:12px; }
	.subscribe-package { padding:24px; }

	.steps-wrap { padding:13px 8px; }
	.steps > ul > li::after { width:12px; margin:0 6px 18px 6px; }
	.step-item { flex-direction:column; font-size:10px; }
	.step-item i { margin-right:0; margin-bottom:4px; }
	.step-item small { text-align:center; font-weight:600; line-height:10px; }

	.package { border-color:var(--color-purple); box-shadow:none !important; }

	.my-fancy { padding:24px !important; border-radius:12px; }
	.choose-type-form-item { width:100%; }

	.payment-point { flex-direction:column; }
	.payment-point > picture { width:100%; }
	.payment-point > section { padding-left:0; padding-top:10px; }

}



@media only screen and (max-width:640px) {

	.header-cta > ul > li , #nav-cta > ul > li , .form-item , .test-results > ul > li { width:100%; }

	.ulunet-turkiye > section { font-size:18px; line-height:20px; }
	.copyright { display:block; }
	.c-left , .c-right { width:100%; }
	.c-right { margin-top:5px; }

	.package-list > ul { grid-template-columns:repeat(1,1fr); }

	.sub-top > picture { aspect-ratio:7/2; }

	.form-item { margin-top:0; margin-bottom:20px; }
	.form-item:nth-last-child(-n+2) { margin-bottom:20px; }
	.form-item:last-child { margin-bottom:0; }
	.agreement label section { font-size:13px; }

	.list-nearest > ul { display:block; }
	.nearest-ulunet { margin:20px 0; border-color:var(--color-purple); }
	.nearest-ulunet-icon { position:absolute; left:24px; top:-20px; }
	.nearest-ulunet-icon i { width:48px; font-size:32px; line-height:46px; border:1px solid var(--color-purple); }
	.nearest-ulunet-content { width:100%; margin-top:20px; }

	.contact-info section { width:100%; }
	.contact-map { aspect-ratio:1/1; }

}



@media only screen and (max-width:540px) {

	.hero-address-check { left:15px; right:15px; width:auto; padding:9px; }
	.hero-address-check section strong { width:64px; }

	.advantages > ul > li { flex-basis:calc(50% - 8px); }
	.advantage-item { padding:15px 10px; }
	.advantage-item picture img { height:64px; }

	.tab > ul::before { left:-1015px; }
	.tab > ul::after { right:-1015px; }
	.tab > ul > li { margin:0 1px; }
	.tab > ul > li a { padding:9px 19px; font-size:13px; }

	.footer-logo { display:none; }
	.footer-social { width:100%; display:flex; justify-content:center; }

	.footer-check article span { max-width:260px; line-height:24px; }
	.footer-check section strong { width:80px; }

	.cta-list > ul { gap:16px; }
	.footer-links , .footer-connect > ul > li , .cta-list > ul > li { flex-basis:100%; }
	.footer-links > ul { display:flex; flex-flow:row wrap; }
	.footer-links > ul > li { width:calc(50% - 8px); }
	.footer-links > ul > li:nth-child(even) { margin-left:auto; }
	.footer-contact { padding-right:0; }
	.footer-connect > ul { gap:10px; }

	.subscribe-package-top { display:block; }
	.subscribe-package-features { width:100%; margin-bottom:21px; }
	.subscribe-package-price , .feature-list > ul > li { width:100%; }

	.upload-wrapper { grid-template-columns:repeat(1,1fr); gap:10px; }

	.box-cta-back , .box-cta-proceed { width:calc(50% - 6px); }
	.box-cta-back .button small , .box-cta-proceed .button small { font-size:14px; }

	.bank-no-item > picture img { max-width:200px; }
	.bank-no-item > section > small strong , .nearest-ulunet-cta .button { width:100%; }
	.nearest-ulunet-cta .button { margin-right:0; }

}



@media only screen and (max-width:440px) {

	.slider-title { padding-bottom:90px; }
	/*.hero-title { font-size:26px; line-height:30px; }*/
    .hero-title { font-size:50px; line-height:60px; }
	.slider-title article { display:none; }
	.slider-hero ul.slick-dots { padding-bottom:46px; }

	.subscribe-item { padding-right:30px !important; }
	.subscribe-item > picture { width:50%; opacity:0.15; }
	.subscribe-item .button-cta a { width:100%; }

	.app-buttons ul { flex-flow:row wrap; }
	.app-buttons li { width:100%; margin:8px 0; }
	.hero-address-check section span { font-size:15px; }
	.cta-item picture strong { font-size:17px; }

}



@media only screen and (max-width:374px) {



}



/* V.1.0 */
.apply-map { max-height:400px;}
.subscribe-item a { margin:12px 0; }
.form-item.code .input { width:130px; }
.form-item.code .code-image { float:left; margin-left:20px; margin-top:-5px; margin-bottom:-5px; }


/* V.1.1 */
.alert-wrap { float:left; width:100%; color:var(--color-black); }

.alert { float:left; width:100%; padding:14px 19px 14px 52px; margin-bottom:15px; position:relative; background-color:#FFF; font-size:15px; line-height:24px; border:1px solid var(--color-grey-light); border-radius:12px; }
.alert-wrap .alert:last-child { margin-bottom:0; }

.alert-icon { position:absolute; top:12px; left:12px; bottom:9px; font-size:28px; color:var(--color-grey-light); }

.alert a { font-weight:600; text-decoration:underline; }
.alert a:hover { text-decoration:none; }
.alert b , .alert strong { font-weight:600; }
.alert-success { background-color:#ecf5ee; border-color:var(--color-green); }
.alert-success .alert-icon { color:var(--color-green); }
.alert-warning { background-color:#fffbef; border-color:var(--color-yellow); }
.alert-warning .alert-icon { color:var(--color-yellow); }
.alert-info { background-color:var(--color-light); border-color:var(--color-purple-light); }
.alert-info .alert-icon { color:var(--color-purple); }
.alert-danger { background-color:#f9f1f2; border-color:var(--color-red); }
.alert-danger .alert-icon { color:var(--color-red); }

.alert p { margin-bottom:20px; }
.alert p:last-child { margin-bottom:0; }

.alert b , .alert strong , .alert h2 , .alert h3 , .alert h4 , .alert h5 { font-weight:600; }

.alert ul , .alert ol { float:none; padding-bottom:20px; display:flex; flex-flow:row wrap; }
.alert ul:last-child , .alert ol:last-child { padding-bottom:0; }
.alert ol { padding-left:20px; padding-bottom:20px; display:inline-block; }

.alert ul li { width:100%; padding-left:20px; margin-bottom:10px; position:relative; }
.alert ul li:nth-child(even) { float:right; margin-left:auto; }
.alert ul li::before { content:""; position:absolute; top:8px; left:0; width:8px; height:8px; background-color:var(--color-black); border-radius:50%; }

.alert ol li { width:100%; margin-bottom:15px; display:list-item; list-style:decimal; }
.alert ul li:last-child , .article-content ol li:last-child { margin-bottom:0; }
.alert ol li::marker { font-weight:700; }