/* *********************************************************************************************************************
	One% CSS Grid - 12 Columns Fluid CSS Grid System

	Why One% ? Let’s count ...
		we have 12 columns (magic number divided by 2, 3, 4, 6)

		for 12 columns we need 11 margins

		so if we count margin 3%, then 3% * 11 margins = 33%

		and if we count width of 1 column 5.5%, than 5.5% * 12 columns = 66%

		in the end we have 33% + 66% = 99% aaand ???

		1% is still here so that's the name - One%

	2 starting options ? Let’s count a bit more ...
		1200px - perfectly fits 1280 screens
			12 columns
			margin 3% / 36px (full-width)
			col1 5.5% / 66px (full-width)

		1000px - perfectly fits 1024 screens
			12 columns
			margin 3% / 30px (full-width)
			col1 5.5% / 55px (full-width)
*/





/* *********************************************************************************************************************
 * Main container for all
 */
.main_wrapper {
	margin: 0 auto;
	padding: 0 0 0 1%; /* THAT'S THE NAME ;) */
}

.main_wrapper {
	max-width:1180px;
}

.onerow {
	clear: both;
	padding: 0 10px;
}





/* *********************************************************************************************************************
 * Common columns definitions
 */
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
	float: left;
	margin: 0 3% 0 0;
}

.col1.last, .col2.last, .col3.last, .col4.last, .col5.last, .col6.last, .col7.last, .col8.last, .col9.last, .col10.last, .col11.last, .col12 {
	margin: 0;
}

.col1 { width: 5.5%; }
.col2 { width: 14%; }
.col3 { width: 22.5%; }
.col4 { width: 31%; }
.col5 { width: 39.5%; }
.col6 { width: 48%; }
.col7 { width: 56.5%; }
.col8 { width: 65%; }
.col9 { width: 73.5%; }
.col10 { width: 82%; }
.col11 { width: 90.5%; }
.col12 { width: 99%; margin: 0; }

.col1 img, .col2 img, .col3 img, .col4 img, .col5 img, .col6 img, .col7 img, .col8 img, .col9 img, .col10 img, .col11 img, .col12 img {
	width: 100%;
	height: auto;
	display: block;
}

/* *********************************************************************************************************************
 * Disable padding left/right 10px if I'm 1024 or gibber - correct percentage math
 */

@media all and (max-width: 1024px) {
	.main_wrapper {
		max-width: 1010px;
	}

	.main_wrapper .onerow {
		padding: 0;
	}
	.topics {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer .ft_top strong {
		font-size: 20px;
		padding: 0 0 26px;
		line-height: 26px;
	}
	.header .hd_bottom .ebook_info {
		padding: 60px 50px 30px 0;
	}
	.header .hd_bottom .ebook_info h2 {
		font-size: 32px;
		line-height: 40px;
	}
	.header .hd_bottom .ebook_info small {
		font-size: 20px;
	}
}

/* *********************************************************************************************************************
 * Small devices
 */
@media all and (max-width: 768px) 

	{	
		.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11 {float:none; width:99%;}
		
		.top_container {box-sizing:border-box; padding:30px 20px;}
		.header .hd_top {box-sizing:border-box; padding:10px 20px;}
		.header .hd_bottom {box-sizing:border-box; padding:30px 20px;}
		.header .hd_bottom .ebook_info {padding-top:0;}
		.bodycontainer .intro_container {box-sizing:border-box; padding:30px 20px 5px;}
		.form_container {box-sizing:border-box; padding:30px 20px;} 
		.b24-form-field {width:100%!important; margin:0 0 10px!important;}
		.b24-form-btn-container {width:100%!important; position:inherit!important; right:inherit!important; top:inherit!important; margin:0!important;}
		.highlight_container {box-sizing:border-box; padding:30px 20px;}
		.footer .ft_top {box-sizing:border-box; padding:30px 20px;} 
		.footer .ft_bottom {box-sizing:border-box; padding:20px;} 
		
		.topics {grid-template-columns: repeat(2, 1fr)!important;}
		
		.inner.home .form_blk {margin:20px 0;}
		

	}

@media all and (max-width:640px) 

	{
		.header .hd_top #menu {display:none;}
		
		.slicknav_menu {display:block; position:absolute; left:20px; top:114px; z-index:10000;}
		.slicknav_menu a.slicknav_btn {width:32px; height:32px; background:url(../images/menu_icon.png) no-repeat left top; 
		text-indent:-9999em; display:block;}
		.slicknav_menu .slicknav_nav {width:220px; background:#036360; padding:10px 15px; margin:0; 
		list-style:none; border-radius:3px;}
		.slicknav_menu .slicknav_nav li {padding:0; position:relative; border-bottom:1px dashed #fff;}
		.slicknav_menu .slicknav_nav li a {font-size:14px; color:#fff; text-transform:uppercase; 
		font-weight:600; padding:0 10px; line-height:38px; display:block;}
		.slicknav_menu .slicknav_nav li a:hover {color:#ecbe00;}
		.slicknav_menu .slicknav_nav li a a {padding:0;}
		.slicknav_menu .slicknav_nav li a span.slicknav_arrow {position:absolute; right:0; top:-1px;}
		
		.footer .ft_top p {padding:0; text-align:center;}
		
	}
	
@media all and (max-width:480px) 

	{	
		.topics {grid-template-columns: repeat(1, 1fr)!important;}
	}
	
@media all and (max-width:360px) 

	{
		
	}

@media all and (max-width:320px) 

	{
		
	}