/* fonts ----------------------------------------------------------- */
@font-face {
    font-family: 'montserrat_semibold';
    src: url('../fonts/montserrat_semibold.eot');
    src: url('../fonts/montserrat_semibold.eot?#iefix') format('embedded-opentype'),
    	 url('../fonts/montserrat_semibold.woff') format('woff'),
    	 url('../fonts/montserrat_semibold.ttf') format('truetype'),
    	 url('../fonts/montserrat_semibold.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat_regular';
    src: url('../fonts/montserrat_regular.eot');
    src: url('../fonts/montserrat_regular.eot?#iefix') format('embedded-opentype'),
    	 url('../fonts/montserrat_regular.woff') format('woff'),
    	 url('../fonts/montserrat_regular.ttf') format('truetype'),
    	 url('../fonts/montserrat_regular.svg#open_sanssemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat_bold';
    src: url('../fonts/montserrat_bold.eot');
    src: url('../fonts/montserrat_bold.eot?#iefix') format('embedded-opentype'),
    	 url('../fonts/montserrat_bold.woff') format('woff'),
    	 url('../fonts/montserrat_bold.ttf') format('truetype'),
    	 url('../fonts/montserrat_bold.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat-light';
    src: url('../fonts/montserrat-light.eot');
    src: url('../fonts/montserrat-light.eot?#iefix') format('embedded-opentype'),
    	 url('../fonts/montserrat-light.woff2') format('woff2'),
    	 url('../fonts/montserrat-light.woff') format('woff'),
    	 url('../fonts/montserrat-light.ttf') format('truetype'),
    	 url('../fonts/montserrat-light.svg#montserratlight') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* general css ----------------------------------- */
*, ::after, ::before {box-sizing: border-box;}
html {scroll-behavior: smooth;}
body {
	background-color:#fff;
	font-family:'montserrat_regular';
	font-size:16px;
	color:#2c2e30;
	margin: 0;
	padding: 0;
}
a, button {
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	outline:none !important;
}
h1 {
	font-weight: normal;
	font-family: 'montserrat_bold';
	font-size: 44px;
	margin: 60px 0 20px 0;
}
h2 {
	font-weight: normal;
	font-family: 'montserrat_bold';
	font-size: 34px;
	margin: 0 0 30px 0;
}
h3 a {
	font-weight: normal;
	font-family: 'montserrat_bold';
	font-size: 28px;
	margin: 0 0 30px 0;

	color:#2c2e30;
	text-decoration: none;
}
.col-9 h3 a {
	color: #2c2e30;
}
h4 {
	font-weight: normal;
	font-family: 'montserrat_bold';
	font-size: 34px;
	margin: 0 0 30px 0;
}
.wide_container .container {
	width: 2170px;
	max-width: 100%;
	margin: 0 auto;
}
.container {
	width: 1170px;
	max-width: 100%;
	margin: 0 auto;
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-3, .col-5, .col-4, .col-8, .col-9 {
    width: 100%;
    -webkit-box-flex: 0;
    padding: 0 15px;
}
.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
    max-width: 50%;
}
.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-9 {
	flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
	width: 80%;
	max-width: 100%;
}
.col-12 {width: 100%;}
.link {
	display: inline-block;
	height: 50px;
	line-height: 45px;
	border-radius: 30px;
	border: solid 2px #ff5b56;
	color: #ff5b56;
	font-size: 13px;
	font-family: 'montserrat_semibold';
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 30px;
	margin: 20px 0;
}
.link:hover {
	background: #ff5b56;
	color: #fff;
}
.more {
	display: block;
	text-align: center;
	padding-top: 40px;
	font-family: 'montserrat_semibold';
	font-size: 17px;
}
.more a {color: #6d6f70;}
.more a:hover {text-decoration: none;}


/* header ------------------------------- */
header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
}
header .container > a {
	font-family: 'montserrat_semibold';
	font-size: 30px;
	text-decoration: none;
	float: left;
	color: #2c2e30;
	margin-top: 45px;
}
header .container > a > strong {
	color: #fff;
	font-weight: normal;
	background: #ff5b56;
	display: inline-block;
	border-radius: 5px;
	padding: 0 4px;
}
header ul {
	list-style-type: none;
	margin: 0;
	padding: 40px 0 0 0;
	float: right;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
}
header ul li {
	display: inline-block;
	padding: 4px;
}
header ul li a {
	display: inline-block;
	color: #fff;
	border-radius: 20px;
	padding: 10px 20px;
	text-decoration: none;
	font-size: 13px;
}
header ul li a:hover {
	background: #fff;
	color: #ff5b56;
}
header ul li:last-child a {
	display: inline-block;
	border: solid 2px #2f5bea;
	color: #2f5bea;
	font-family: 'montserrat_semibold';
	text-transform: uppercase;
	margin-left: 40px;
}
header ul li:last-child a:hover {
	background: #2f5bea;
	color: #fff;
}
header.fix, .subsite header {background: #ff5b56;}
header.fix .container > a, .subsite header .container > a {
	margin-top: 17px;
	background: #fff;
	padding: 4px;
	border-radius: 5px;
}
header.fix ul, .subsite header ul {padding: 15px 0;}

/* nfo ---------------------------------- */
.nfo {
	padding: 150px 0 70px 0;
	background: #ff5b56 url(../images/bgNfo.png) no-repeat left -60px top;
	position: relative;
	overflow: hidden;
}
.col-12 {
	text-align: center;
	color:  #fff;
	padding: 0 10%;
	font-size: 18px;
}
.nfo .col-4 > a {
	display: inline-block;
	height: 50px;
	line-height: 45px;
	border-radius: 30px;
	border: solid 2px #2f5bea;
	color: #2f5bea;
	font-size: 13px;
	font-family: 'montserrat_semibold';
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 30px;
	margin: 20px 0;
}
.nfo .col-4 > a:hover {
	background: #2f5bea;
	color: #fff;
}
.nfo .col-4 > p {
	color: #7e8085;
	font-size: 21px;
	line-height: 30px;
	padding-right: 10px;
}
.mbook {
	position: relative;
	margin: 3% 3% 180px 3%;
}
.mbook > img {
	position: absolute;
	width: 131.8%;
	left: -15.6%;
	top: -8.3%;
}
#homeSlider .owl-dots {
	position: absolute;
	bottom: -110px;
	left: 0;
	width: 100%;
	text-align: center;
}
#homeSlider .owl-dot {
	background: transparent;
	border: solid 1px #fff;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	margin: 5px;
}
#homeSlider .owl-dot.active {background: #fff;}

/* features ---------------------------------- */
.features {padding: 90px 0;}
.features .row:nth-child(2n) {flex-direction: row-reverse;}
.features .row {
	margin-top: 50px;
	margin-bottom: 50px;
}
.features .col-10 {margin-left: 10%;}
.features img {
    border-radius: 50%;
    box-shadow: 3px 16px 80px -16px rgba(0,0,0,0.7);
    margin: 10px 0;
    max-width: 100%;
}
.features p {
	color: #54565a;
	line-height: 24px;
}

/* download ----------------------------------- */
.download {
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: 90px 0;
	background: #2f5bea;
}
.download .col-10 {margin-left: 10%;}
.download p {margin: 0 0 60px 0;}
.download label {
	display: block;
	font-size: 13px;
	font-family: 'montserrat_semibold';
	text-transform: uppercase;
	padding: 30px 0 10px 0;
}
.download input {
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 30px;
	border: none;
	padding: 0 20px;
	font-size:18px;
	outline:none;
}

div.newsletter {
  padding: 20px 0 0 0;
}
.newsletter input {
  float: left;
  width: 26px;
}
.newsletter label {
  display: table-cell;
  height: 50px;
  text-transform: none;
  text-align:left;
  vertical-align: middle;
  padding: 10px 0px 3px 0px; /* this makes the valign right with the corresponding checkbox */
}

.download button {
	display: inline-block;
	height: 50px;
	border-radius: 30px;
	border: solid 2px #fff;
	background: none;
	color: #fff;
	font-size: 13px;
	font-family: 'montserrat_semibold';
	text-transform: uppercase;
	padding: 0 40px;
	margin-top: 60px;
	cursor: pointer;
}
.download button:hover {
	border: solid 2px #fff;
	background: #fff;
	color: #2f5bea;
}

/* footer ----------------------------------- */
footer {
	color:#2c2e30;
	text-align:center;
	font-size:12px;
	padding:60px 0;
	background:#fff;
	letter-spacing: 1px;
}
footer strong {
	color:#ff5b56;
	font-weight:normal;
}
footer span {
	font-family: 'montserrat_semibold';
	font-size:19px;
	letter-spacing: 0px;
	display: inline-block;
	margin-bottom: 40px;
}
footer > span > strong {
	color:#fff;
	background:#ff5b56;
	display: inline-block;
	border-radius: 4px;
	padding: 0 3px;
}

/* subsite ---------------------------------- */
.bgRed {
	background: #ff5b56;
	color:#fff;
}
.subsiteTitle {
	text-align: center;
	padding: 80px 0 20px 0;
}
.subsiteTitle h1 {
	display: block;
	text-align: center;
	font-size: 34px;
	margin: 0;
	color: #2c2e30;
}
.content {padding: 60px 0;}
.content .col-10 {margin-left: 10%;}
.content .col-12 {padding: 15px 0;}
.content a {color:#ff5b56;}
.content a:hover {text-decoration: none;}

/* width till 1480px ----------------------------------- */
@media (max-width: 1480px) {
		.nfo {background: #ff5b56 url(../images/bgNfo.png) no-repeat left -350px top;}

}

/* width till 1024px ----------------------------------- */
@media (max-width: 1024px) {

	h1 {
		font-size: 34px;
		margin: 0 0 20px 0;
	}
	header .container, .nfo .container {padding:0 15px;}
	header ul li:last-child a {margin: 0;}
	.nfo {background: #ff5b56 url(../images/bgNfo.png) no-repeat left -450px top -90px;}
	.nfo .col-4 > p {
	    font-size: 18px;
	    line-height: 26px;
	}
}

/* width from 768px till 1023px --------------------- */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	header .container > a {font-size: 26px;}
	header ul li {padding: 2px;}
	header ul li a {color:#2c2e30;}
}

/* width from 481px till 767px --------------------- */
@media only screen and (min-width: 481px) and (max-width: 767px) {
	h1 {
		font-size: 26px;
		margin: 0 0 20px 0;
	}
	header {
		position: absolute;
		text-align: center;
		padding-top: 20px;
	}
	header .container > a {
		float: none;
		margin-top: 0;
	}
	header ul {
		padding: 30px 0 20px 0;
		float: none;
	}
	header ul {
		padding: 20px 0 30px 0;
		float: none;
	}
	header ul li a {background: #ff5b56;}
	header ul li:last-child a {
		margin: 0;
		background: transparent;
	}
	.nfo {
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 30px;
		background: #ff5b56 url(../images/bgNfo.png) no-repeat left -370px top -120px;
	}
	.nfo .col-4 > p {
		font-size: 18px;
		line-height: 26px;
		padding-right: 0;
	}
	.features {padding: 0 0 20px 0;}
	.features .col-10, .download .col-10 {
	    margin-left: 2%;
	    width: 96%
	}
	.more {padding-top: 0;}
	.download {padding: 40px 0;}
}

/* width till 480px ----------------------------------- */
@media (max-width: 480px){
	h1 {
		font-size: 30px;
		margin: 0 0 20px 0;
	}
	h2 {
		font-size: 26px;
		margin: 0 0 30px 0;
	}
	h4 {
		font-size: 26px;
		margin: 0 0 20px 0;
	}
	.row {
	    margin-right: 0;
	    margin-left: 0;
	}
	.col-3, .col-4, .col-5, .col-8 , .col-9, .col-10 {
	    -ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	    padding: 15px;
	    width: 100%;
	}
	header {
		position: relative;
		text-align: center;
		left: auto;
		top: auto;
		padding-top: 20px;
	}
	header .container > a {
		float: none;
		margin-top: 0;
	}
	header ul {
		padding: 30px 0 20px 0;
		float: none;
	}
	header ul li a {background: #ff5b56;}
	header ul li:last-child a {
		margin: 15px 0 0 0;
		background: transparent;
	}
	.nfo {
		padding: 0 0 20px 0;
		background: #ff5b56 url(../images/bgNfo.png) no-repeat left -360px top -260px;
		text-align: center;
	}
	.mbook {margin: 3% 3% 100px 3%;}
	#homeSlider .owl-dots {bottom: -80px;}
	.features .col-10, .download .col-10, .content .col-10 {margin-left: 0;}
	.features .row {
	    margin-top: 10px;
	    margin-bottom: 10px;
	}
	.features, .download {padding: 40px 0;}
	.download .col-5 {padding: 0;}
	.subsiteTitle {padding: 20px 0;}

}


/* width till 380px ----------------------------------- */
@media (max-width: 380px){
	header .container > a {font-size: 20px;}

}
