@font-face {

	font-family: Raleway-Bold;

	src: url("../fonts/Raleway-Bold.ttf");

}

@font-face {

	font-family: Raleway-ExtraBold;

	src: url("../fonts/Raleway-ExtraBold.ttf");

}

@font-face {

	font-family: Raleway-Medium;

	src: url("../fonts/Raleway-Medium.ttf");

}

@font-face {

	font-family: Raleway;

	src: url("../fonts/Raleway.ttf");

}

@font-face {

	font-family: Raleway-SemiBold;

	src: url("../fonts/Raleway-SemiBold.ttf");

}

@font-face {

	font-family: ZillaSlab-BoldItalic;

	src: url("../fonts/ZillaSlab-BoldItalic.ttf");

}

@font-face {

	font-family: ZillaSlab-Italic;

	src: url("../fonts/ZillaSlab-Italic.ttf");

}

@font-face {

	font-family: ZillaSlab-MediumItalic;

	src: url("../fonts/ZillaSlab-MediumItalic.ttf");

}

@font-face {

	font-family: ZillaSlab-Regular;

	src: url("../fonts/ZillaSlab-Regular.ttf");

}

@font-face {

	font-family: ZillaSlab-SemiBoldItalic;

	src: url("../fonts/ZillaSlab-SemiBoldItalic.ttf");

}

@font-face {
	font-family: 'OpenDyslexicAlta-Regular';
	src: url('../fonts/OpenDyslexicAlta-Regular.eot');
	src: local('☺'), url('../fonts/OpenDyslexicAlta-Regular.woff') format('woff'), url('../fonts/OpenDyslexicAlta-Regular.ttf') format('truetype'), url('../fonts/OpenDyslexicAlta-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}



body {

	margin: 0;

	padding: 0;

	font-family: Raleway, Arial;

}



/* container */

.container {

	width: 100%;

	padding-right: 15px;

	padding-left: 15px;

	margin-right: auto;

	margin-left: auto;
	
}



@media (min-width: 576px) {

	.container {

		max-width: 540px;

	}

}



@media (min-width: 768px) {

	.container {

		max-width: 720px;

	}

}



@media (min-width: 992px) {

	.container {

		max-width: 960px;

	}

}



@media (min-width: 1200px) {

	.container {

		max-width: 1140px;

	}

}



.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {

	width: 100%;

	padding-right: 15px;

	padding-left: 15px;

	margin-right: auto;

	margin-left: auto;

}



@media (min-width: 576px) {

	.container, .container-sm {

		max-width: 540px;

	}

}



@media (min-width: 768px) {

	.container, .container-sm, .container-md {

		max-width: 720px;

	}

}



@media (min-width: 992px) {

	.container, .container-sm, .container-md, .container-lg {

		max-width: 960px;

	}

}



@media (min-width: 1200px) {

	.container, .container-sm, .container-md, .container-lg, .container-xl {

		max-width: 1205px;

	}

}







/******************* header *******************/

.header {

    height: 78px;

    box-shadow: 0 0 8px 0px #00000042;

}

.header .container {

    display: flex;

    height: 100%;

    padding: 0;

}

.header .logo {

	line-height: 49px;

	padding-left: 20px;

}

.header .logo a {

    height: 100%;

    display: block;

}

.header .logo img {

    height: 47px;

    vertical-align: text-top;

}

.header .gnb {

    margin-left: auto;

    width: 100%;

}

.header .gnb .navigation .nav_content {

    margin: 0;

    padding: 0;

}

.header .navigation .nav_content>li a:after {

	content: "";

	display: block;

	position: absolute;

	left: 50%;

	width: 0;

	height: 5px;

	bottom: 0;

	background: transparent;

	transform: translateX(-50%);

	transition: width 0.3s;

}
.header .navigation .nav_content>li.active a:after,
.header .navigation .nav_content>li a:hover:after {

	background: #0000e3;

	width: 100%;

}
.header .navigation .nav_content>li.active a,
.header .gnb .navigation .nav_content>li a:hover {

    font-weight: bold;

}

.header .gnb .navigation .nav_social>li a img {

    height: 29px;

    vertical-align: middle;

}



@media (min-width: 1366px) {

	.header {

		box-shadow: none;

	}



	.header .container {

		padding-left: 15px;

		padding-right: 15px;

	}

	.header .logo {

		margin-right: 20px;

		padding-left: 0;

	}

}



/* nav mobile */

.header .navigation{

	position: fixed;

	top: 0;

	right: 0;

	bottom: 0;

	padding: 0;

	/*overflow: hidden;*/

	background: #0000e3;

	width: 250px;

	box-sizing: border-box;

	transition: all 250ms;

	-webkit-transform: translateZ(0) translateX(-100%);

	transform: translateZ(0) translateX(100%);

	text-align:center;

	box-shadow: 0 0 10px #000;

	padding: 30px 25px;

	z-index: 10;

}



.header .navigation.active{

	transform: translateZ(0) translateX(0);

	transform: translateZ(0) translateX(0);

	-webkit-transition: 0.4s;

	transition: 0.4s;

}



.header .navigation .nav_content>li {

    text-align: left;

    list-style: none;

    line-height: 35px;

    width: 100%;

}

.header .navigation .nav_content>li a {

    color: #fff;

    text-decoration: none;

    font-size: 20px;

    display: block;

    position: relative;

}

.header .navigation .nav_social {

    display: flex;

    justify-content: space-between;

    margin: 0;

    padding: 0;

    width: 132px;

}

.header .navigation .nav_social>li {

    text-align: left;

    list-style: none;

    line-height: 78px;

}

.header .navigation .nav_social>li a {

    color: #fff;

    text-decoration: none;

    display: block;

}



.header .nav_toggle_button{

	width: 25px;

	height: 25px;

	line-height: 17px;

	padding: 10px;

	cursor:pointer;

	z-index: 100;

	right: 15px;

	top: 15px;

	position: absolute;

}

.header .nav_toggle_button .menu-btn {

  display: none;

}



.header .nav_toggle_button .menu-btn:checked ~ .menu {

  max-height: 240px;

}



.header .nav_toggle_button .menu-btn:checked ~ .menu-icon .navicon {

  background: transparent;

}



.header .nav_toggle_button .menu-btn:checked ~ .menu-icon .navicon:before {

  transform: rotate(-45deg);

}



.header .nav_toggle_button .menu-btn:checked ~ .menu-icon .navicon:after {

  transform: rotate(45deg);

}



.header .nav_toggle_button .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,

.header .nav_toggle_button .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {

  top: 0;

}



.header .nav_toggle_button .menu-icon {

  cursor: pointer;

  position: relative;

  user-select: none;

  display: inline-block;

}



.header .nav_toggle_button .menu-icon .navicon {

  background: #333;

  display: block;

  height: 2px;

  position: relative;

  transition: background .2s ease-out;

  width: 25px;

}



.header .nav_toggle_button .menu-icon .navicon:before,

.header .nav_toggle_button .menu-icon .navicon:after {

  background: #333;

  content: '';

  display: block;

  height: 100%;

  position: absolute;

  transition: all .2s ease-out;

  width: 100%;

}

.header .nav_toggle_button.active .menu-icon .navicon,

.header .nav_toggle_button.active .menu-icon .navicon:before,

.header .nav_toggle_button.active .menu-icon .navicon:after {

	background: #fff;

}

.header .nav_toggle_button .menu-icon .navicon:before {

  top: 8px;

}



.header .nav_toggle_button .menu-icon .navicon:after {

  top: -8px;

}

@media (min-width: 1024px) {

	.header .navigation {

		position: static;

		background: transparent;

		width: 100%;

		transform: none;

		padding: 0;

		display: flex;

		box-shadow: none;

	}

	.header .navigation .nav_content {

		display: flex;

		justify-content: space-between;

		padding-left: 0;

		width: 100%;

	}

    .header .navigation .nav_content>li {

		text-align: center;
		position: relative;
		line-height: 78px;
		
	}
	.header .navigation .nav_content li .nav-child{
	    width: 300px;
	    position: absolute;
	    z-index: 999;
	    text-align: left;
	    background: #fff;
	    display: none;
	    top: calc(100% - 5px);
	    left: 0;
	    list-style: none;
	    padding: 15px;
	}
	.header .navigation .nav_content li:hover .nav-child{
		display: block;
	}
	.header .navigation .nav_content li .nav-child li a{
		font-size: 16px;
		line-height: 1.6;
	}
	.header .navigation .nav_content li .nav-child li a:hover{
		font-weight: normal;
	}
	.header .navigation .nav_content li .nav-child li a:hover:after{
		display: none;
	}
    .header .navigation .nav_content>li a {

		color: #0000e3;

		padding-top: 1px;

	}
	.header .navigation .nav_content li a.btn-cs-login{
	    background: #0000e3;
    	color: #fff;
    	font-weight: 700;
	}
	.header .nav_toggle_button {

		display: none;

	}

	.header .navigation .nav_content>li a.login {

		background: #0000e3;

		color: #fff;

	}

	.header .navigation .nav_social {

		margin-left: 70px;

	}

}







/****************** content ******************/

/* section */

.section {

    width: 100%;

    position: relative;

    margin-top: 25px;

}

.section .section_title {

    text-align: center;

    font-size: 30px;

    color: #0000e3;

    font-weight: bold;

    font-family: Raleway-ExtraBold, Arial;

}

.section .main_img {

    position: relative;

}

.section .main_img img {

    max-width: 100%;

    width: 100%;

    display: block;

}

.section .main_img .cover_img {

    position: absolute;

    top: 0;

    left: 0;

    display: none;

}

.section .section_cnt_img {

	padding: 0;

	/* position: relative; */

}

@media (min-width: 1024px) {

	.section {

		margin-top: 0;

	}

	.section .main_img .cover_img {

        display: block;

	}

	.section .section_title {

		margin-bottom: 15px;

	}

}

@media (min-width: 1366px) {

	.section {

		margin-top: 0;

	}

	.section .main_img .cover_img {

        display: block;

	}

	.section .section_title {

		margin-bottom: 42px;

		font-size: 48px;

	}

}



/* section_discount */

.section_discount {

    position: relative;

    margin-top: 0;

}

.section_discount .main_img img {

    position: relative;

}



.section_discount .section_cnt_img .sec_logo {

    display: none;

    text-align: center;

}

.section_discount .section_cnt_img .main_txt {

	color: #333;

	padding: 15px;

}

.section_discount .section_cnt_img .main_txt .main_txt_title {

    font-size: 30px;

    line-height: 51px;

    margin-bottom: 14px;

    font-weight: bold;

    font-family: Raleway-ExtraBold, Arial;

}

.section_discount .section_cnt_img .main_txt .main_txt_desc {

    font-size: 22px;

    font-family: ZillaSlab-Italic, Arial;

}

.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul {
    padding: 0;
    list-style: none;
    display: block;
    justify-content: space-between;
}

.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul>li {

    width: 45%;

}

.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul>li a {

    text-decoration: none;

    display: block;

    background: #0000e3;

    color: #fff;

    height: 60px;

    width: 100%;

    font-size: 17px;

    line-height: 60px;

    text-align: center;

    position: relative;

}

.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul>li a:hover {

    font-weight: bold;

}

.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul>li a:after {

	content: "";

	position: absolute;

	bottom: 0;

	left: 50%;

	width: 0;

	height: 5px;

	background: transparent;

	transform: translateX(-50%);

	transition: width 0.3s;

}



.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul>li a:hover:after {

    background: #0000e3;

		width: 100%;

}

@media (min-width: 1024px) {

	.section_discount .section_cnt_img .main_txt {

		color: #fff;

		padding: 0;

		width: 50%;

		padding-left: 23px;

	}



	.section_discount .section_cnt_img .sec_logo {

		display: block;

	}

	.section_discount .section_cnt_img .sec_logo img {

		width: 115px;

	}

	.section_discount .section_cnt_img {

		position: absolute;

		top: 50%;

		left: 50%;

		transform: translate(-50%, -50%);

	}

}

@media (min-width: 1366px) {

	.section_discount .section_cnt_img .main_txt {

		color: #fff;

		padding: 0;

		width: 50%;

		padding-left: 23px;

	}

	.section_discount .section_cnt_img .sec_logo {

		display: block;

	}

	.section_discount .section_cnt_img .sec_logo img {

		width: 271px;

	}

	.section_discount .section_cnt_img {

		position: absolute;

		top: 50%;

		left: 50%;

		transform: translate(-50%, -50%);

	}

	.section_discount .section_cnt_img .main_txt .main_txt_title {

		font-size: 46px;

		margin-top: 28px;

	}

	.section_discount .section_cnt_img .main_txt .main_txt_desc {

		font-size: 24px;

	}

	.section_discount .section_cnt_img .main_txt .main_txt_desc p {

		margin-top: 0;

		margin-bottom: 0;

	}

	.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul>li {

    width: unset;

}

	.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul>li a {

		background: #fff;

		color: #0000e3;

		width: auto;

		font-size: 21px;
		padding: 0px 15px;
	}

}





/* section_how_work */

.section_how_work .main_img {

	display: none;

}

.section_how_work .main_img img {

    background: #0000e3;

}

.section_how_work .sec2_left img {

    max-width: 100%;

}

.section_how_work .sec2_right .how_tiktop_work {

    padding: 15px;

    background: #fff;

    position: relative;

}

.section_how_work .sec2_right .how_tiktop_work .work_title {

    font-size: 30px;

    margin-top: 0;

    margin-bottom: 21px;

    font-family: Raleway-ExtraBold, Arial;

}

.section_how_work .sec2_right .how_tiktop_work .work_cnt p {

    font-size: 22px;

    line-height: 29px;

    font-family: ZillaSlab-SemiBoldItalic, Arial;

    color: #00008f;

}

.section_how_work .sec2_right .how_tiktop_work .work_bottom_action a {

    text-decoration: none;

    display: inline-block;

    background: #0000e3;

    border: 5px solid #0000e3;

    color: #fff;

    height: 57px;

    line-height: 57px;

    padding: 0 15px;

    font-size: 21px;

    width: 100%;

    box-sizing: border-box;

    text-align: center;

    position: relative;

    transition: all 0.3s;

}

.section_how_work .sec2_right .how_tiktop_work .work_bottom_action a:hover {

    background: #fff;

    color: #0000e3;

}

@media (min-width: 1024px) {

    .section_how_work .main_img {

    	display: block;

    }

    .section_how_work .section_cnt_img {

		position: absolute;

		top: calc(50% - 40px);

		left: 50%;

		transform: translate(-50%, -50%);

		height: 100%;

		/* padding-top: 100px; */

	}

	.section_how_work .sec2_left {

		position: absolute;

		bottom: -2px;

		left: 0;

		max-width: calc(50% - 15px);

	}

	.section_how_work .sec2_right {

		position: absolute;

		top: 75px;

		right: 0;

		max-width: calc(50% - 15px);

	}

	.section_how_work .sec2_right .how_tiktop_work {

		padding: 10px 15px 30px 15px;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_title {

		font-size: 27px;

		font-weight: bold;

		color: #0000e3;

		margin-bottom: 0px;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_cnt p {

		font-size: 17px;

		margin-top: 0;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_cnt p:last-child {

	margin-bottom: 0;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_bottom_action {

		position: absolute;

		right: 25px;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_bottom_action a {

		font-size: 18px;

		width: unset;

		box-sizing: unset;

		height: 40px;

		line-height: 40px;

	}

}

@media (min-width: 1366px) {

    .section_how_work .main_img {

    	display: block;

    }

    .section_how_work .section_cnt_img {

		position: absolute;

		top: calc(50% - 40px);

		left: 50%;

		transform: translate(-50%, -50%);

		height: 100%;

		/* padding-top: 100px; */

	}

	.section_how_work .sec2_left {

		/*position: absolute;

		bottom: -2px;

		left: 0;

		max-width: calc(50% - 15px);*/
	    position: absolute;
	    top: 55%;
	    left: 0;
	    max-width: calc(50% - 15px);
	    transform: translateY(-50%);

	}

	.section_how_work .sec2_right {

		position: absolute;

		top: 100px;

		right: 0;

		max-width: calc(50% - 15px);

	}

	.section_how_work .sec2_right .how_tiktop_work {

		padding: 30px 25px;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_title {

		font-size: 48px;

		font-weight: bold;

		color: #0000e3;

		margin-bottom: 21px;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_cnt p {

		font-size: 22px;

		margin-top: 0;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_cnt p:last-child {margin-bottom: 1em;}

	.section_how_work .sec2_right .how_tiktop_work .work_bottom_action {

		position: absolute;

		right: 25px;

	}

	.section_how_work .sec2_right .how_tiktop_work .work_bottom_action a {

		font-size: 22px;

		width: unset;

		box-sizing: unset;

		height: 57px;

		line-height: 57px;

	}

}



/* section_quotation */

.section_quotation.section_quotation_img .main_img {

    display: none;

}

.section_quotation.section_quotation_img .section_title {

	color: #0000e3;

	font-size: 48px;

}

.section_quotation.section_quotation_img .section_cnt .quotation>li {

    border: 5px solid;

}

.section_quotation.section_quotation_img .section_cnt .quotation>li .quotation_title {

    font-size: 32px;

}

.section_quotation .section_cnt>.container {

	padding-left: 0;

	padding-right: 0;

}

.section_quotation .section_cnt .quotation {

    list-style: none;

    padding: 0;

}

.section_quotation .section_cnt .quotation>li {

    margin: 0px auto 60px auto;

    background: #fff;

    color: #0000e3;

    width: 80%;

    padding: 40px 25px 25px 25px;

    text-align: center;

    height: 340px;

    position: relative;

    box-sizing: border-box;

}

.section_quotation.type_simple .section_cnt .quotation>li {

	background: #0000e3;

	color: #fff;

}

.section_quotation .section_cnt .quotation>li .quotation_title {

    font-size: 40px;

    margin: 0;

    font-weight: bold;

    font-family: Raleway-ExtraBold, Arial;

}

.section_quotation .section_cnt .quotation>li .quotation_cnt {

    font-size: 36px;

    padding-bottom: 30px;

    position: relative;

    margin-bottom: 4px;

    height: 112px;

    box-sizing: border-box;

    font-family: ZillaSlab-Italic;

}

.section_quotation .section_cnt .quotation>li .quotation_cnt:after {

	content: "";

	height: 5px;

	width: 158px;

	position: absolute;

	bottom: 0;

	left: 50%;

	transform: translate(-50%, 0);

	background: #f84bff;

}



.section_quotation .section_cnt .quotation>li .quotation_price {

    font-size: 51px;

    font-weight: bold;

    font-family: Raleway-Medium;

}

.section_quotation .section_cnt .quotation>li .quotation_bottom_action {

    position: absolute;

    bottom: -27px;

    left: 50%;

    transform: translate(-50%, 0);

}

.section_quotation .section_cnt .quotation>li .quotation_bottom_action a {

	background: #f84bff;

	border: 5px solid #f84bff;

	display: block;

	height: 60px;

	line-height: 60px;

	width: 158px;

	font-size: 24px;

	text-decoration: none;

	color: #fff;

	transition: all 0.3s;

}

.section_quotation .section_cnt .quotation>li .quotation_bottom_action a:hover {

    background: #fff;

    color: #f84bff;

}

.section_quotation.section_quotation_img .section_cnt .quotation>li .quotation_cnt:after {

    background: #0000e3;

}

.section_quotation.section_quotation_img .section_cnt .quotation>li .quotation_cnt {

	color: #00008f;

}

.section_quotation.section_quotation_img .section_cnt .quotation>li .quotation_bottom_action a {

    background: rgba(55,236,169,1);

    background: -moz-linear-gradient(top, rgba(55,236,169,1) 0%, rgba(75,173,218,1) 50%, rgba(3,66,232,1) 100%);

    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(55,236,169,1)), color-stop(50%, rgba(75,173,218,1)), color-stop(100%, rgba(3,66,232,1)));

    background: -webkit-linear-gradient(top, rgba(55,236,169,1) 0%, rgba(75,173,218,1) 50%, rgba(3,66,232,1) 100%);

    background: -o-linear-gradient(top, rgba(55,236,169,1) 0%, rgba(75,173,218,1) 50%, rgba(3,66,232,1) 100%);

    background: -ms-linear-gradient(top, rgba(55,236,169,1) 0%, rgba(75,173,218,1) 50%, rgba(3,66,232,1) 100%);

    background: linear-gradient(to bottom, rgba(55,236,169,1) 0%, rgba(75,173,218,1) 50%, rgba(3,66,232,1) 100%);

    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37eca9', endColorstr='#0342e8', GradientType=0 );

    border: 0;

}



@media (min-width: 1024px) {

	.section_quotation.section_quotation_img .main_img {

        display: block;

	}

	.section_quotation.section_quotation_img .section_title {

		color: #fff;

	}

	.section_quotation.type_simple {

		padding: 60px 0 100px 0;

	}

	.section_quotation.type_simple:before {

		content: "";

		position: absolute;

		left: 0;

		top: 64px;

		background: url(/tiktop/images/page1/section_type_simple_before.png) no-repeat;

		background-size: contain;

		height: 42px;

		width: 541px;

		z-index: 1;

	}

	.section_quotation.section_quotation_img .section_cnt_img {

		position: absolute;

		top: 32px;

		left: 50%;

		transform: translate(-50%, 0);

	}

	.section_quotation .section_cnt>.container {

		padding-left: 15px;

		padding-right: 15px;

	}

	.section_quotation .section_cnt .quotation {

		display: flex;

		/*width: 83%;*/
		width: 100%;

		justify-content: space-between;

		margin: auto;

	}

	.section_quotation .section_cnt .quotation>li {

		margin: 0 10px;

		width: 100%;

		padding: 15px 10px 25px 10px;

	}

	.section_quotation.section_quotation_img .section_cnt .quotation>li {

		border: 0;

		/*height: 262px;*/
		height: 340px;
		width: 280px;
		max-width: 100%;
	}

	.section_quotation.section_quotation_img .section_cnt .quotation>li .quotation_title {

		font-size: 35px;

	}

	.section_quotation .section_cnt .quotation>li .quotation_title {

		font-size: 35px;

	}

	.section_quotation .section_cnt .quotation>li .quotation_cnt {

		font-size: 33px;

		height: 101px;

	}

	.section_quotation .section_cnt .quotation>li .quotation_price {

		font-size: 43px;

	}

}

@media (min-width: 1366px) {

	.section_quotation.section_quotation_img .section_cnt_img {

		position: absolute;

		top: 60px;

		left: 50%;

		transform: translate(-50%, 0);

	}

	.section_quotation .section_cnt .quotation>li {

		margin: 0 34px;

		padding: 40px 25px 25px 25px;

	}

	.section_quotation.section_quotation_img .section_cnt .quotation>li .quotation_title {

		font-size: 40px;

	}

	.section_quotation .section_cnt .quotation>li .quotation_cnt {

		font-size: 36px;

		height: 112px;

	}

	.section_quotation .section_cnt .quotation>li .quotation_price {

		font-size: 51px;

	}

}





/* section_typing_speed */

.section_typing_speed .main_img {

	display: none;

}

.section_typing_speed .typing_speed {

    padding: 15px;

    background: #fff;

    position: relative;

    box-sizing: border-box;

}

.section_typing_speed .typing_speed .typing_speed_title {

    font-size: 30px;

    margin-top: 0;

    margin-bottom: 23px;

    font-weight: bold;

    color: #0000e3;

    font-family: Raleway-ExtraBold;

}

.section_typing_speed .typing_speed .typing_speed_desc {

    font-size: 22px;

    color: #00008f;

    font-family: Raleway, Arial;

}

@media (min-width: 1024px) {

	.section_typing_speed .main_img {

		display: block;

		position: relative;

	}

	.section_typing_speed .main_img:before {

        content: "";

        position: absolute;

        left: 0;

        top: 5px;

        background: url(/tiktop/images/page2/section_typing_speed_before.png) no-repeat;

        background-size: contain;

        height: 33px;

        width: 541px;

        z-index: 1;

     }

	.section_typing_speed .main_img:after {

        content: "";

        position: absolute;

        right: 0;

        bottom: 7px;

        background: url(/tiktop/images/page2/section_typing_speed_after.png) no-repeat right;

        background-size: contain;

        height: 33px;

        width: 541px;

        z-index: 1;

     }

	.section_typing_speed .typing_speed {

		display: flex;

		justify-content: space-between;

		position: absolute;

		top: 50%;

		left: 50%;

		transform: translate(-50%, -50%);

		width: 100%;

		padding: 15px 23px 15px 23px;

	}

	.section_typing_speed .typing_speed .sec2_left {

		width: 50%;

		padding-right: 25px;

	}

	.section_typing_speed .typing_speed .sec2_right {

		width: 50%;

		padding-left: 25px;

	}

	.section_typing_speed .typing_speed .typing_speed_title {

		font-size: 36px;

		margin-bottom: 0;

	}

	.section_typing_speed .typing_speed .typing_speed_desc {

		font-size: 18px;

		line-height: 28px;

	}

	.section_typing_speed .typing_speed .typing_speed_desc p {

		margin-bottom: 0;

		margin-top: 19px;

	}

	.section_typing_speed .typing_speed .sec2_right .typing_speed_desc p:first-child {

		margin-bottom: 19px;

	}

}

@media (min-width: 1366px) {

	.section_typing_speed .main_img {

		display: block;

		position: relative;

	}

	.section_typing_speed .main_img:before {

        top: 19px;

        height: 48px;

        width: 541px;

     }

	.section_typing_speed .main_img:after {

        bottom: 24px;

        height: 48px;

        width: 541px;

     }

	.section_typing_speed .typing_speed {

		display: flex;

		justify-content: space-between;

		position: absolute;

		top: 50%;

		left: 50%;

		transform: translate(-50%, -50%);

		width: 100%;

		padding: 28px 23px 41px 23px;

	}

	.section_typing_speed .typing_speed .sec2_left {

		width: 50%;

		padding-right: 25px;

	}

	.section_typing_speed .typing_speed .sec2_right {

		width: 50%;

		padding-left: 25px;

	}

	.section_typing_speed .typing_speed .typing_speed_title {

		font-size: 43px;

		margin-bottom: 23px;

	}

	.section_typing_speed .typing_speed .typing_speed_desc {

		font-size: 18px;

		line-height: 28px;

	}

	.section_typing_speed .typing_speed .typing_speed_desc p {

		margin-bottom: 0;

		margin-top: 19px;

	}

	.section_typing_speed .typing_speed .sec2_right .typing_speed_desc p:first-child {

		margin-bottom: 29px;

	}

}

@media (min-width: 1400px) {

	.section_typing_speed .main_img:before {

        top: 44px;

        height: 48px;

        width: 541px;

     }

	.section_typing_speed .main_img:after {

        bottom: 41px;

        height: 48px;

        width: 541px;

     }

}



/* section_sixty_seconds */

.section_sixty_seconds .main_img {

    display: none;

}

.section_sixty_seconds .sixty_seconds {

    padding: 15px;

    position: relative;

    box-sizing: border-box;

}

.section_sixty_seconds .sixty_seconds .sec2_left {

    width: 100%;

}

.section_sixty_seconds .sixty_seconds .sec2_right {

    display: none;

}

.section_sixty_seconds .sixty_seconds .sec2_right img {

    max-width: 100%;

}

.section_sixty_seconds .sixty_seconds .sixty_seconds_title {

    font-size: 30px;

    margin-top: 0;

    margin-bottom: 23px;

    font-weight: bold;

    color: #0000e3;

    font-family: Raleway-Bold, Arial;

}

.section_sixty_seconds .sixty_seconds .sixty_seconds_desc {

    font-size: 22px;

    color: #00008f;

    font-weight: bold;

    font-family: ZillaSlab-Italic, Arial;

}

.section_sixty_seconds .sixty_seconds .sixty_seconds_bottom_action a {

	color: #0000e3;

	border: 5px solid #0000e3;

	text-decoration: none;

	height: 61px;

	width: 272px;

	line-height: 52px;

	display: block;

	box-sizing: border-box;

	text-align: center;

	font-size: 21px;

	font-weight: bold;

	margin: 0 auto 20px auto;

	transition: all 0.3s;

}

.section_sixty_seconds .sixty_seconds .sixty_seconds_bottom_action a:hover {

    background: #0000e3;

    color: #fff;

}

@media (min-width: 1024px) {

	.section_sixty_seconds .main_img {

		display: block;

	}



	.section_sixty_seconds .sixty_seconds .sec2_right {

		display: block;

		margin: 0 51px 0 auto;

	}

	.section_sixty_seconds .sixty_seconds {

		position: absolute;

		top: 50%;

		left: 50%;

		transform: translate(-50%, -50%);

		width: 100%;

		display: flex;

		box-sizing: unset;

	}

	.section_sixty_seconds .sixty_seconds .sec2_left {
		width: 500px;
	}

	.section_sixty_seconds .sixty_seconds .sixty_seconds_title {

		font-size: 38px;

		line-height: 38px;

		margin-bottom: 0;

	}

	.section_sixty_seconds .sixty_seconds .sixty_seconds_desc {

		font-size: 22px;

		line-height: 28px;

	}

	.section_sixty_seconds .sixty_seconds .sixty_seconds_bottom_action {

		/* margin-top: 81px; */

	}

	.section_sixty_seconds .sixty_seconds .sec2_right img {

		max-width: 550px;

	}

}

@media (min-width: 1366px) {

	.section_sixty_seconds .main_img {

		display: block;

	}



	.section_sixty_seconds .sixty_seconds .sec2_right {

		display: block;

		margin: 0 51px 0 auto;

	}

	.section_sixty_seconds .sixty_seconds {

		position: absolute;

		top: 50%;

		left: 50%;

		transform: translate(-50%, -50%);

		width: 100%;

		display: flex;

		box-sizing: unset;

	}

	.section_sixty_seconds .sixty_seconds .sec2_left {
	}

	.section_sixty_seconds .sixty_seconds .sixty_seconds_title {

		font-size: 48px;

		line-height: 47px;

		margin-bottom: 10px;

	}

	.section_sixty_seconds .sixty_seconds .sixty_seconds_desc {

		font-size: 25px;

		line-height: 28px;

	}

	.section_sixty_seconds .sixty_seconds .sixty_seconds_bottom_action {

		margin-top: 81px;

	}

	.section_sixty_seconds .sixty_seconds .sec2_right img {

		max-width: 791px;

	}

}



/* section_for_everyone */

.section_for_everyone .for_everyone {

	box-sizing: border-box;

}

.section_for_everyone .for_everyone.container {

	padding: 0;

}

.section_for_everyone .for_everyone .wrap_for_everyone {box-sizing: border-box;}

.section_for_everyone .for_everyone .sec2_left {

    margin-left: auto;

}

.section_for_everyone .for_everyone .sec2_right img {

    max-width: 100%;

    display: block;

}

.section_for_everyone .for_everyone .sec2_left .for_everyone_title {

    font-size: 40px;

    margin-top: 0;

    margin-bottom: 18px;

    font-weight: bold;

    color: #0000e3;

    font-family: Raleway-ExtraBold;

}

.section_for_everyone .for_everyone .sec2_left .for_everyone_desc {

    font-size: 25px;

    color: #00008f;

    font-weight: bold;

    font-family: ZillaSlab-Italic;

    line-height: 30px;

}

.section_for_everyone .for_everyone .sec2_left .for_everyone_desc p {

    margin-top: 0;

    margin-bottom: 0;

}

.section_for_everyone .for_everyone .sec2_left .for_everyone_bottom_action {

    margin-top: 38px;

    margin-bottom: 25px;

}

.section_for_everyone .for_everyone .sec2_left .for_everyone_bottom_action a {

    color: #0000e3;

    border: 5px solid #0000e3;

    text-decoration: none;

    height: 59px;

    width: 273px;

    line-height: 55px;

    display: block;

    box-sizing: border-box;

    text-align: center;

    font-size: 21px;

    font-weight: bold;

    margin: 0;

    font-family: Raleway, Arial;

    transition: all 0.3s;

}

.section_for_everyone .for_everyone .sec2_left .for_everyone_bottom_action a:hover {

    background: #0000e3;

    color: #fff;

}

@media (min-width: 1024px) {

	.section_for_everyone .for_everyone.container {

		margin: 0;

		max-width: unset;

	}

	.section_for_everyone .for_everyone .wrap_for_everyone {

    max-width: unset;

    padding: 15px 15px 0 15px;

}

}

@media (min-width: 1366px) {

	.section_for_everyone .for_everyone .sec2_left .for_everyone_bottom_action {

		margin-bottom: 0;

	}

	.section_for_everyone .for_everyone {

		display: flex;

	}

	.section_for_everyone .for_everyone.container {

		width: 100%;

		max-width: unset;

		padding: 0 15px;

		margin-bottom: 0;

	}

	.section_for_everyone .for_everyone .wrap_for_everyone {

		position: absolute;

		left: 0;

		top: 50%;

		transform: translate(0, -50%);

		width: 100%;

		padding: 0;

		margin-top: -12px;

	}

	.section_for_everyone .for_everyone .sec2_left .for_everyone_title {

		font-size: 48px;

	}

	.section_for_everyone .for_everyone .sec2_left .for_everyone_desc {

		max-width: 536px;

	}

	.section_for_everyone .for_everyone .sec2_left {

		width: 50%;

		position: relative;

	}

    .section_for_everyone .for_everyone .sec2_right {

		width: 50%;

	}

}



@media (min-width: 1200px) {

	.section_for_everyone .for_everyone.container .sec2_left {

		width: calc(1140px / 2);

	}

}





/****************** footer ******************/

.footer {

    background: #a5bfd5;

    color: #fff;

}

.footer .footer_cnt {

    overflow: hidden;

}

.footer .footer_cnt.container {

	padding-left: 0;

	padding-right: 0;

}

.footer .footer_cnt .footer_row {

    display: block;

    padding-left: 15px;

    padding-right: 15px;

}

.footer .footer_cnt .footer_row.copyright_row {

    margin-top: 41px;

}

.footer .footer_left,

.footer .footer_right {

    width: 100%;

}

.footer .footer_logo {

    text-align: center;

    padding-top: 35px;

}

.footer .footer_logo img {

    width: 275px;

}

.footer .address {

    text-align: center;

    margin-top: 13px;

    font-size: 14px;

    line-height: 19px;

    font-family: Raleway-Medium;

}

.footer .foot_menu {

    padding: 0;

    list-style: none;

    margin: 0;

    overflow: hidden;

    margin-top: 15px;

}

.footer .foot_menu>li {

    width: 50%;

    float: left;

}

.footer .foot_menu>li a {

    color: #fff;

    text-decoration: none;

    font-size: 17px;

    line-height: 25px;

    position: relative;

}







.footer .foot_menu>li a:after {

	content: "";

	display: block;

	position: absolute;

	left: 50%;

	width: 0;

	height: 5px;

	bottom: -3px;

	background: transparent;

	transform: translateX(-50%);

	transition: width 0.3s;

}

.footer .foot_menu>li a:hover:after {

	background: #0000e3;

	width: 100%;

}



.footer .copyright {

    margin-top: 30px;

    font-size: 15px;

}



.footer .foot_copyright_img img {

    height: 43px;

}

@media (min-width: 1024px) {

	.footer {

		padding: 62px 0;

	}

	.footer .footer_cnt.container {

		padding-left: 15px;

		padding-right: 15px;

	}

	.footer .footer_logo {

		text-align: left;

		padding-top: 0;

	}

	.footer .address {

		max-width: 285px;

	}

	.footer .foot_menu {

		margin-top: 0;

	}

	.footer .foot_menu>li {

		width: 100%;

		float: none;

	}

	.footer .footer_cnt .footer_row {

		display: flex;

		padding-right: 0;

	}

	.footer .footer_left {

		width: 50%;

	}

	.footer .footer_right {

		width: 306px;

		margin-left: auto;

	}

}



/****************** contact ******************/

.page-id-105 #main-content .container-inner .custom {

	font-size: 17px;

    color: #00008f;

    font-weight: bold;

    font-family: ZillaSlab-Italic, Arial;

}

@media (max-width: 768px) {

	.page-id-105 #main-content .container-inner > .row {display: block;}

	.page-id-105 #main-content .container-inner > .row > .col-lg-4 {

		max-width: unset;

	}

    .page-id-105 #main-content .container-inner > .row > .col-lg-8 {

		max-width: unset;

	}

}
.osm-item-description-text{
	height: auto !important;
}
.osm-container h2.osm-item-title{
	font-size: 26px;
}
.osm-container h2.osm-item-title a{
	color: #0000e3;
	text-decoration: none;
}  
.item-page h2.page-title {
	font-size: 30px;
	line-height: 51px;
	margin-bottom: 14px;
	font-weight: bold;
	font-family: Raleway-ExtraBold, Arial;
}
.item-page .article-body {
	font-family: Raleway;
	/*min-height: 20vh;*/
}
.lessonhints h1 {
	margin: 0px;
}
.clearfix:after {
	float: none;
	clear: both;
	display: block;
	content: "";
}
.lesson-progress-main .n2n_keyboard {
	max-width: 430px;
}
.lesson-progress-main .lesson-progress-float {
	width: calc(100% - 445px);
}
#mc_embed_signup form {
	display: block;
	position: relative;
	text-align: left;
	padding: 0px;
	max-width: 640px;
}
#mc_embed_signup label {
    display: block;
    font-size: 16px;
    padding-bottom: 10px;
    font-family: Raleway-Bold;
}
#mc_embed_signup input.email {
    font-size: 15px;
    display: block;
    padding: 0 0.4em;
    margin: 0 4% 10px 0;
    min-height: 32px;
    width: 58%;
    min-width: 130px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #999;
	-webkit-appearance: none;
}
#mc_embed_signup .button {
    clear: both;
    background-color: #aaa;
    border: 0 none;
    border-radius: 4px;
    letter-spacing: .03em;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    height: 32px;
    line-height: 32px;
    margin: 0 5px 10px 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    width: auto;
    transition: all 0.23s ease-in-out 0s;
}
#mc_embed_signup input.button {
    display: block;
    width: 35%;
    margin: 0 0 10px 0;
    min-width: 90px;
}
.os-custom-page {
	margin-left: 30px;
}
.cus-row:after {
	display: block;
	content: "";
	float: none;
	clear: both;
}
.cus-lg-6 {
	width: 50%;
	float: left;
}
.osm-container h1, .osm-container h2, .osm-container h3 {
	font-family: Raleway-Bold;
}
.osm-container h2 {
	font-size: 25px;
}
.osm-container h3 {
	font-size: 18px;
}
.os-custom-page form input,
.os-custom-page form textarea,
.os-custom-page form select {
	line-height: 25px;
	height: 25px;
	border: 1px solid #E1EAFF;
	padding: 5px;
	width: 375px;
	max-width: 100%;
	color: #333;
	margin-bottom: 0;
	box-shadow: none;
	border-radius: 0px;
	font-family: Raleway;
}
.os-custom-page form textarea {
	min-height: 75px;
}
.os-custom-page form select {
	height: 37px;
	width: 289px;
}
.os-custom-page form .control-label label {
	margin-bottom: 0px;
	font-size: 17px;
	color: #00008f;
	font-weight: bold;
	font-family: ZillaSlab-Italic, Arial;
}
.option-com_osmembership.view-register #main-content {
	background: #0000e3;
	padding: 46px 0;
}
.option-com_osmembership.view-register #main-content .container-inner {
    background: white;
    padding: 0 15px;
}
#mc_embed_signup .button#mc-embedded-subscribe,
.page-slug-inloggen #main-content form button.btn.btn-primary,
.page-slug-mijn-account #main-content form button.btn.btn-primary,
.rsform-block-verstuur .formControls .formBody button#Verstuur{
	line-height: 40px;
    background: #0000e3;
    border: 5px solid #0000e3;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-weight: normal;
	margin: 2px 0;
	height: 40px;
	padding: 0 15px;
	border-radius: 0px !important;
	box-sizing: unset;
    font-size: 20px;
    width: 247px;
    max-width: 100%;
    outline: none !important;
}
.os-custom-page form input[type="submit"] {
	line-height: 40px;
    background: #ff0033;
    border: 5px solid #ff0033;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-weight: normal;
	margin: 2px 0;
	height: 40px;
	padding: 0 15px;
	border-radius: 0px !important;
	box-sizing: unset;
    font-size: 20px;
    width: 247px;
    max-width: 100%;
    outline: none !important;
}
#mc_embed_signup .button#mc-embedded-subscribe:hover,
#mc_embed_signup .button#mc-embedded-subscribe:focus,
.page-slug-inloggen #main-content form button.btn.btn-primary:hover,
.page-slug-inloggen #main-content form button.btn.btn-primary:focus,
.page-slug-mijn-account #main-content form button.btn.btn-primary:hover,
.page-slug-mijn-account #main-content form button.btn.btn-primary:focus,
.rsform-block-verstuur .formControls .formBody button#Verstuur:hover,
.rsform-block-verstuur .formControls .formBody button#Verstuur:focus{
	/*opacity: 0.6;*/
	background: transparent;
	color: #0000e3;
}
.os-custom-page form input[type="submit"]:focus,
.os-custom-page form input[type="submit"]:hover {
	/*opacity: 0.6;*/
	background: transparent;
	color: #ff0033;
}
.os-custom-page form .input-prepend .add-on:first-child {
	height: 27px;
	line-height: 27px;
	border-color: #E1EAFF;
}
.os-custom-page form input[type="checkbox"],
.os-custom-page form input[type="radio"] {
	width: auto;
	margin: 0px;
}
.page-slug-contact #main-content article.item-page{
	display: none;
}
#os_form .form-actions{
	background-color: transparent;
    border-top: none;
    padding: 0;
}
.osm-container .osm-item-heading-box{
	border-bottom: 0;
    background: transparent;
    text-align: center;
}
.osm-container .osm-item-description{
	padding: 0;
	text-align: center;
}
.osm-taskbar li {
    float: none !important;
    display: inline-block;
}
.osm-taskbar li .btn{
	background: #f84bff;
    border: 5px solid #f84bff;
    display: block;
    height: 40px;
    line-height: 40px;
    width: 158px;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    padding: 0;
    text-align: center;
    text-shadow: none;
    box-shadow: none;
    font-size: 20px;
    border-radius: 0;
}
.osm-taskbar li .btn:hover,
.osm-taskbar li .btn:focus{
	background: transparent;
	color: #f84bff;
}
.osm-taskbar li .btn.btn-primary{
	border-color: #0000e3;
	background-color: #0000e3;
}
.osm-taskbar li .btn.btn-primary:hover,
.osm-taskbar li .btn.btn-primary:focus{
	background: transparent;
	color: #0000e3;
}
.osm-taskbar li{
	margin: 14px 0 2px!important;
	padding: 0 5px !important;
}
.osm-container .osm-item-description,
.osm-container .osm-item-heading-box{
	border-radius: 0 !important;
}
.osm-container{
	padding: 50px 0;
}
h1.osm-page-title{
	color: #0000e3;
	margin-bottom: 40px;
}
.page-slug-inloggen #main-content,
.page-slug-mijn-account #main-content {
    background: #0000e3;
    padding: 46px 0;
}
.page-slug-inloggen #main-content .container-inner,
.page-slug-mijn-account #main-content .container-inner {
	background: white;
    padding: 0 15px;
}
.page-slug-mijn-account #main-content form,
.page-slug-inloggen #main-content form {
	padding: 30px 0;
}
.page-slug-inloggen #main-content form fieldset ,
.page-slug-mijn-account #main-content form fieldset {
	padding: 0px 0;
    border: 0;
    border-radius: 0;
    margin: 0;
}
.page-slug-inloggen #main-content form fieldset .control-label,
.page-slug-mijn-account #main-content form fieldset .control-label {
    font-size: 17px;
    color: #00008f;
    font-weight: bold;
    font-family: ZillaSlab-Italic, Arial;
    pointer-events: none;
}
.page-slug-inloggen #main-content form fieldset input {
    line-height: 25px;
    border: 1px solid #E1EAFF;
    padding: 5px;
    width: 275px;
    color: #333;
    margin-top: 6px;
    margin-bottom: 0;
    outline: none;
    margin-bottom: 10px;
}
.page-slug-inloggen #main-content form fieldset input[type="checkbox"]{
	display: inline-block;
	width: auto;
}
.nav.nav-tabs.nav-stacked{
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}
.nav.nav-tabs.nav-stacked a{
	color: #0000e3;
	text-decoration: none;
}
.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul > li a {
	width: auto;
	padding: 0px 15px;
}
.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul > li {
	display: inline-block !important;
	margin-right: 15px;
}
.section_discount .section_cnt_img .main_txt .main_txt_bottom_action ul > li:last-child {
	margin-right: 0px;
}
.header .navigation .nav_content li .nav-child li a {
	font-size: 20px;
	padding: 10px 0px;
}

.section_typing_speed .typing_speed .typing_speed_desc {
	font-size: 18px;
}
.page-slug-typecursus-kinderen .section .main_img img {
	height: 800px;
	width: auto;
}
.header {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 999;
	background-color: #fff;
}
body {
	padding-top: 78px;
}
.section_sixty_seconds .sixty_seconds .sixty_seconds_bottom_action a {
	margin-left: 0px;
}
.page-slug-typecursus-dyslexie .section.section_discount .main_img img,
.page-slug-typecursus-12jr-en-ouder .section.section_discount .main_img img,
.page-slug-typecursus-kinderen .section.section_discount .main_img img {
    height: 550px;
    width: 100%;
}
.page-slug-typecursus-volwassenen .section .main_img img,
.page-slug-typecursus-dyslexie .section .main_img img,
.page-slug-typecursus-12jr-en-ouder .section .main_img img,
.page-slug-typecursus-kinderen .section .main_img img {
    height: 800px;
    width: auto;
}
.page-slug-typecursus-volwassenen .section .main_img img,
.page-slug-typecursus-dyslexie .section .main_img img,
.page-slug-typecursus-12jr-en-ouder .section .main_img img,
.page-slug-typecursus-kinderen .section .main_img img {
	object-fit: cover;
}
.page-slug-typecursus-12jr-en-ouder .section.section_typing_speed .main_img img {
	height: 930px;
}
h1.osm-page-title{
	margin-bottom: 30px !important;
}
.col-more-logo{
	width: 50%;
	text-align: left;
	margin: 5px 0;
}
.col-more-logo img{
	max-width: 90%;
	height: auto !important;
}
.row-more-logo{
	margin-left: 0 !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.course_lists{
	background-color: #0000e3;
}
#startlessondiv input{
	background-color: #fde700;
	cursor: pointer;
}
.option-com_users.view-login .content,
.option-com_typeinglessons.view-myaccount .content{
	min-height: calc(100vh - 506px);
	
}
.option-com_users.view-login .content{
	background-color: #0000e3;
}
.option-com_typeinglessons.view-myaccount .content #main-content{
	padding: 46px 0;
}
.tpl-my-ac-type-result a{
	text-decoration: none;

}
.option-com_users.view-profile .profile{
	padding-bottom: 20px;
}
.section_typing_speed .typing_speed .typing_speed_title h1 {

}
.result_divs .alltypeingfloatleft {
	width: 16.5%;
}
.event_lists_14 #current-lesson span{
	/*font-weight: 700;*/
    font-family: OpenDyslexicAlta-Regular;
}
.page-slug-typecursus-volwassenen .section .main_img img {
	height: 800px;
}
.page-slug-typecursus-volwassenen .section.section_discount .main_img img {
	height: 588px;
}

.my-account-block a {
	display: none!important;
}
.page-slug-b2b .section .main_img img {
	height: 930px;
	object-fit: cover;
}
.page-slug-b2b .section_discount .main_img img {
	height: 588px;
}
.page-slug-b2b .section.section_sixty_seconds .main_img img {
	height: 1000px;
}
.header .navigation .nav_content > li {
	float: left;
	margin: 0px 15px;
	width: auto;
}
.header .gnb .navigation .nav_content {
	display: block;
}
.header .navigation .nav_content li a.btn-cs-login {
	padding-left: 30px;
	padding-right: 30px;
}
.header.header-fixed {
	box-shadow: 3px 0 7px rgb(0 0 0 / 30%);
}
.section_sixty_seconds.custom-layout .sixty_seconds:after {
	display: block;
	content: "";
	float: none;
	clear: both;
}
.section_sixty_seconds.custom-layout .sixty_seconds .sec2_left,
.section_sixty_seconds.custom-layout .sixty_seconds .sec2_right {
	width: 40%;
	float: left;
}
.section_sixty_seconds.custom-layout .sixty_seconds .sec2_right {
	float: right;
}
.section_sixty_seconds.custom-layout .sixty_seconds .sec2_right h3 {
	color: #0000e3;
	font-family: Raleway-Bold, Arial;
	font-size: 20px;
	line-height: 26px;
}
.section_sixty_seconds.custom-layout .sixty_seconds .sec2_right p {
	color: #0000e3;
	font-family: Raleway, Arial;
	font-size: 18px;
	line-height: 26px;
}