﻿/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
body {
	font-family: 'Open Sans';
	color: #4f4f4f;
}

/*table*/
.table-view {
	height: 100%;
	width: 100%;
	display: table;
}
.row-view {
	display: table-row;
}
.cell-view {
	display: table-cell;
	vertical-align: middle;
}
.background-block {
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
}
.img-full {
	width: 100%;
}

/*nopadding class*/
.nopadding {
	padding-left: 0;
	padding-right: 0;
}
.nomargin {
	margin-left: 0;
	margin-right: 0;
}
a {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
a, input, textarea, button, select {
	outline: none !important;
}
a:hover, a:focus {
	text-decoration: none;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - LOADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
#loader-wrapper {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 300;
	background: #05305a;
}
#loader-container {
	width: 100px;
	height: 100px;
	color: white;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: 5px solid #3498db;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: borderScale 1s infinite ease;
	-moz-animation: borderScale 1s infinite ease;
	animation: borderScale 1s infinite ease;
}
#loadingText {
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	font-size: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
@-webkit-keyframes borderScale {
	0% {
		border: 5px solid #FFF;
	}
	50% {
		border: 25px solid #0D355D;
	}
	100% {
		border: 5px solid #fff;
	}
}
@-moz-keyframes borderScale {
	0% {
		border: 5px solid #FFF;
	}
	50% {
		border: 25px solid #0D355D;
	}
	100% {
		border: 5px solid #fff;
	}
}
@keyframes borderScale {
	0% {
		border: 5px solid #FFF;
	}
	50% {
		border: 25px solid #0D355D;
	}
	100% {
		border: 5px solid #fff;
	}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*background*/
.bg-1 {
	background-color: #f6f6f9;
}
.bg-2 {
	background-color: #05305a;
}
.tt-overflow {
	overflow: hidden;
}

/*overlay*/
.tt-overlay {
	position: relative;
}
.tt-overlay:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.8;
}
.tt-overlay > * {
	position: relative;
}
.tt-overlay.color-2:before {
	opacity: 0.7;
}

/*custom hover*/
.custom-hover.custom-hover {
	display: inline-block;
	position: relative;
	overflow: hidden;
	vertical-align: top;
	max-width: 100%;
}
.custom-hover.custom-hover:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #32bee9;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
	-moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
	z-index: 1;
}
.custom-hover.custom-hover:hover:before {
	opacity: 0.7;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.custom-hover.custom-hover:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 29px;
	height: 29px;
	margin-top: -14.5px;
	margin-left: -14.5px;
	background: url(../img/hover_icon.png) no-repeat center center;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
	-moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
	z-index: 2;
}
.custom-hover.custom-hover:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.custom-hover.custom-hover.round:before {
	-moz-border-radius: 100%;
	border-radius: 100%;
}

/*c-btn*/
.c-btn {
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.c-btn.type-1 {
	font-size: 14px;
	line-height: 18px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	background: #34c6f2;
	border: 2px solid #34c6f2;
	-moz-border-radius: 3px;
	border-radius: 3px;
	vertical-align: top;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	transform: translateZ(0);
}
.c-btn.type-1 span, .c-btn.type-1 input {
	display: inline-block;
	padding: 11px 45px 11px 19px;
}
.c-btn.type-1:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: #fff;
	z-index: -1;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-btn.type-1:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	background: #fff;
	z-index: -1;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-btn.type-1 input {
	background: transparent;
	border: 0;
	font-size: inherit;
	line-height: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
}
.c-btn.type-1 .fa {
	position: absolute;
	top: 50%;
	right: 19px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.c-btn.type-1:hover {
	color: #34c6f2;
}
.c-btn.type-1:hover:before, .c-btn.type-1:hover:after {
	width: 51%;
}
.c-btn.type-1.color-2 {
	border-color: #f8d24b;
	background: #f8d24b;
	color: #323232;
}
.c-btn.type-1.color-3 {
	border-color: #1a1a1c;
	background: #1a1a1c;
	color: #fff;
}
.c-btn.type-1.color-3:hover {
	color: #fff;
}
.c-btn.type-1.color-4 {
	border-color: #f8d24b;
	background: #f8d24b;
	color: #fff;
}
.c-btn.type-1.color-4:hover {
	color: #f8d24b;
}
.c-btn.type-1.color-5 {
	border-color: #eee;
	background: #dfdfdf;
	color: #000;
}
.c-btn.type-1.color-5:hover {
	color: #000;
}
.c-btn.type-1.full {
	width: 100%;
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
}
.c-btn.type-1.size-2 {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	letter-spacing: 0.3px;
}
.c-btn.type-1.size-2 span, .c-btn.type-1.size-2 input {
	padding: 6.5px 22.5px;
}
.c-btn.type-1.size-3 {
	font-size: 20px;
	line-height: 26px;
	font-weight: 900;
	letter-spacing: 1px;
}
.c-btn.type-1.size-3 span, .c-btn.type-1.size-3 input {
	padding: 17px 68px 17px 28px;
}
.c-btn.type-1.size-3 .fa {
	right: 28px;
}
.c-btn.type-1.size-4 {
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
}
.c-btn.type-1.size-4 span, .c-btn.type-1.size-4 input {
	padding: 10px 105px;
}
.c-btn.type-1.radius-0 {
	-moz-border-radius: 0;
	border-radius: 0;
}
.c-btn.type-2 {
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	color: #f8d24b;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.c-btn.type-2:hover {
	color: #32bee9;
}
.c-btn.type-3 {
	display: inline-block;
	color: #000;
	background: #dfdfdf;
	border: 1px solid #eee;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-btn.type-3:hover {
	color: #fff;
	background: #fbab00;
}
.c-btn.type-4 {
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
	color: #383838;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	background: #f8d24b;
	border: 2px solid #f8d24b;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.c-btn.type-4 span, .c-btn.type-4 input {
	display: inline-block;
	position: relative;
	padding: 8px 63px 8px 20px;
	z-index: 2;
}
.c-btn.type-4 .fa {
	position: absolute;
	top: 50%;
	right: 15px;
	font-size: 17px;
	line-height: 20px;
	color: #262626;
	padding-left: 14px;
	border-left: 1px solid rgba(64, 64, 64, 0.4);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
}
.c-btn.type-4 input {
	background: transparent;
	border: 0;
	font-size: inherit;
	line-height: inherit;
	text-transform: inherit;
	letter-spacing: inherit;
}
.c-btn.type-4:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	background: #fff;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-btn.type-4:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	background: #fff;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-btn.type-4:hover {
	color: #383838;
}
.c-btn.type-4:hover:before, .c-btn.type-4:hover:after {
	width: 51%;
}
@media (max-width:767px) {
	.c-btn.type-1 {
		display: block;
		width: 100%;
		text-align: center;
	}
	.c-btn.type-1 span, .c-btn.type-1 input {
		padding-left: 40px;
		padding-right: 40px;
	}
	.c-btn.type-1.size-4 span, .c-btn.type-1.size-4 input {
		padding-left: 15px;
		padding-right: 15px;
		text-align: center;
	}
}

/*simple-text*/
.simple-text {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #777;
	letter-spacing: 0.5px;
}

/*simple-text size*/
.simple-text.size-2 {
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0;
}
.simple-text.size-3 {
	font-size: 14px;
	line-height: 22px;
}
.simple-text.size-4 {
	font-size: 15px;
	line-height: 26px;
}
.simple-text.size-5 {
	font-size: 14px;
	line-height: 26px;
}
.simple-text.size-6 {
	font-size: 18px;
	line-height: 30px;
}

/*simple-text color*/
.simple-text.color-2 {
	color: #fff;
}
.simple-text.color-3 {
	color: #898989;
}
.simple-text.color-4 {
	color: #242424;
}
.simple-text.color-5 {
	color: #c0c0c0;
}
.simple-text.color-6 {
	color: #1a1a1c;
}
.simple-text.color-7 {
	color: #676767;
}
.simple-text.color-8 {
	color: #b4b4b4;
}
.simple-text.color-9 {
	color: #000;
}
.simple-text.font-2 {
	font-family: 'Raleway';
}

/*simple-text title*/
.simple-text h1, .c-h1 {
	font-family: 'Raleway';
	font-size: 50px;
	line-height: 50px;
	font-weight: 800;
	color: #282c3d;
	margin-top: 0;
	letter-spacing: 1.5px;
}
.simple-text h1 small, .c-h1 small {
	font-size: 45px;
	line-height: 45px;
	font-weight: inherit;
	color: inherit;
}
.simple-text h2, .c-h2 {
	font-family: 'Raleway';
	font-size: 40px;
	line-height: 40px;
	font-weight: 800;
	color: #282c3d;
	margin-top: 0;
	letter-spacing: 0.5px;
}
.simple-text h3, .c-h3 {
	font-family: 'Raleway';
	font-size: 36px;
	line-height: 36px;
	font-weight: 800;
	color: #282c3d;
	margin-top: 0;
}
.simple-text h3 small, .c-h3 small {
	font-size: 34px;
	line-height: 34px;
	font-weight: inherit;
	color: inherit;
}
.simple-text h4, .c-h4 {
	font-family: 'Raleway';
	font-size: 26px;
	line-height: 28px;
	font-weight: 800;
	color: #282c3d;
	margin-top: 0;
	letter-spacing: 0.7px;
}
.simple-text h4 small, .c-h4 small {
	font-size: 25px;
	line-height: 27px;
	font-weight: inherit;
	color: inherit;
}
.simple-text h5, .c-h5 {
	font-family: 'Raleway';
	font-size: 20px;
	line-height: 26px;
	font-weight: 800;
	color: #282c3d;
	margin-top: 0;
}
.simple-text h5 small, .c-h5 small {
	font-size: 18px;
	line-height: 24px;
	font-weight: inherit;
	color: inherit;
}
.simple-text h6, .c-h6 {
	font-family: 'Raleway';
	font-size: 16px;
	line-height: 20px;
	font-weight: 800;
	color: #282c3d;
	margin-top: 0;
	letter-spacing: 0.5px;
}
.simple-text h6 small, .c-h6 small {
	font-size: 14px;
	line-height: 18px;
	font-weight: inherit;
	color: inherit;
}
@media (max-width:767px) {
	.simple-text h1, .c-h1 {
		font-size: 37px;
		line-height: 37px;
		letter-spacing: 1px;
	}
	.simple-text h1 small, .c-h1 small {
		font-size: 33px;
		line-height: 35px;
	}
	.simple-text h2, .c-h2 {
		font-size: 30px;
		line-height: 34px;
	}
	.simple-text h3, .c-h3 {
		font-size: 27px;
		line-height: 32px;
	}
	.simple-text h3 small, .c-h3 small {
		font-size: 25px;
		line-height: 25px;
	}
	.simple-text h4, .c-h4 {
		font-size: 20px;
		line-height: 26px;
	}
}

/*simple-text margins*/
.simple-text p, .simple-text h1, .simple-text h2, .simple-text h3, .simple-text h4, .simple-text h5, .simple-text h6, .simple-text img, .simple-text blockquote, .simple-text ul, .simple-text ol, .simple-text div[class^="col-"] {
	margin-bottom: 25px;
}
.simple-text .row:last-child {
	margin-bottom: -25px;
}

/*simple-text last-child*/
.simple-text p:last-child, .simple-text h1:last-child, .simple-text h2:last-child, .simple-text h3:last-child, .simple-text h4:last-child, .simple-text h5:last-child, .simple-text h6:last-child, .simple-text img:last-child, .simple-text blockquote:last-child, .simple-text ul:last-child, .simple-text ol:last-child {
	margin-bottom: 0;
}

/*simple-text image*/
.simple-text img {
	max-width: 100%;
	height: auto;
}
.simple-text img[align="left"] {
	margin-right: 30px;
}
.simple-text img[align="right"] {
	margin-left: 30px;
}

/*simple-text list*/
.simple-text ul {
	list-style: none;
	padding-left: 0;
}
.simple-text li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 8px;
}
.simple-text li:before {
	content: '- ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.simple-text li:last-child {
	margin-bottom: 0;
}

/*simple-text blockquote*/
.simple-text blockquote {
	position: relative;
	font-family: 'PT Serif';
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #fff;
	font-style: italic;
	letter-spacing: 0.5px;
	background: #05305a;
	border-left: 0;
	padding: 28px 70px 26px 106px;
}
.simple-text blockquote:before {
	content: '“';
	display: block;
	position: absolute;
	top: 31px;
	left: 23px;
	font-family: 'PT Serif';
	font-size: 103px;
	line-height: 103px;
	color: #1fb5c7;
}
.simple-text blockquote p {
	margin-bottom: 7px;
}
.simple-text blockquote footer {
	font-size: inherit;
	line-height: inherit;
	color: #1fb5c7;
	text-align: right;
}
.simple-text blockquote footer:before {
	content: '- ';
}
@media (max-width:767px) {
	.simple-text blockquote {
		padding: 15px 15px 15px 80px;
	}
	.simple-text blockquote:before {
		font-size: 80px;
		line-height: 80px;
		top: 20px;
		left: 15px;
	}
}
@media (max-width:479px) {
	.simple-text blockquote {
		padding: 15px;
	}
	.simple-text blockquote:before {
		display: none;
	}
}

/*simple-text additional*/
.txt-uppercase {
	text-transform: uppercase;
}
.txt-regular.txt-regular {
	font-weight: 400;
}
.txt-open-sans.txt-open-sans {
	font-family: 'Open Sans';
}
.txt-pt-serif {
	font-family: 'PT Serif';
}
.simple-text.style-2 h1, .simple-text.style-2 h2, .simple-text.style-2 h3, .simple-text.style-2 h4, .simple-text.style-2 h5, .simple-text.style-2 h6 {
	font-family: 'Open Sans';
	font-weight: 600;
	margin-bottom: 0px;
}
.simple-text.style-3 h1, .simple-text.style-3 h2, .simple-text.style-3 h3, .simple-text.style-3 h4, .simple-text.style-3 h5, .simple-text.style-3 h6 {
	font-weight: 300;
	margin-bottom: 10px;
}
.simple-text.style-4 h1, .simple-text.style-4 h2, .simple-text.style-4 h3, .simple-text.style-4 h4, .simple-text.style-4 h5, .simple-text.style-4 h6 {
	font-family: 'Open Sans';
	font-weight: 400;
	margin-bottom: 7px;
}

/*c-input type-1*/
.c-input.type-1 {
	width: 100%;
	height: 50px;
	font-size: 15px;
	font-weight: 400;
	color: #3a78b6;
	background: #083f77;
	border: 1px solid transparent;
	padding: 0 20px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-input.type-1::-webkit-input-placeholder {
	font-size: 15px;
	font-weight: 400;
	color: #3a78b6;
	opacity: 1;
}
.c-input.type-1:-moz-placeholder {
	font-size: 15px;
	font-weight: 400;
	color: #3a78b6;
	opacity: 1;
}
.c-input.type-1::-moz-placeholder {
	font-size: 15px;
	font-weight: 400;
	color: #3a78b6;
	opacity: 1;
}
.c-input.type-1:-ms-input-placeholder {
	font-size: 15px;
	font-weight: 400;
	color: #3a78b6;
	opacity: 1;
}
.c-input.type-1:focus {
	border-color: #f8d24b;
}

/*c-input type-2*/
.c-input.type-2 {
	width: 100%;
	height: 46px;
	font-family: 'PT Serif';
	font-size: 16px;
	font-weight: 400;
	color: #1a1a1a;
	letter-spacing: 0.5px;
	background: transparent;
	border: 1px solid #323232;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 0 20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-input.type-2::-webkit-input-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #1a1a1a;
	opacity: 1;
}
.c-input.type-2:-moz-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #1a1a1a;
	opacity: 1;
}
.c-input.type-2::-moz-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #1a1a1a;
	opacity: 1;
}
.c-input.type-2:-ms-input-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #1a1a1a;
	opacity: 1;
}
.c-input.type-2:focus {
	border-color: #b59a3d;
}

/*c-input type-3*/
.c-input.type-3 {
	width: 100%;
	height: 55px;
	font-family: 'PT Serif';
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	letter-spacing: 0.5px;
	font-style: italic;
	background: #fff;
	border: 1px solid #e1e1e1;
	padding: 0 20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-input.type-3::-webkit-input-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-input.type-3:-moz-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-input.type-3::-moz-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-input.type-3:-ms-input-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-input.type-3:focus {
	border-color: #f8d24b;
}
.c-input.type-3.size-2 {
	height: 50px;
}

/*c-input type-4*/
.c-input.type-4 {
	display: inline-block;
	width: 130px;
	height: 35px;
	font-size: 14px;
	line-height: 33px;
	font-weight: 400;
	color: #8e8d8d;
	letter-spacing: 0.3px;
	border: 1px solid #eee;
	padding: 0 5px;
	text-align: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-input.type-4::-webkit-input-placeholder {
	font-size: 14px;
	line-height: 31px;
	font-weight: 400;
	color: #8e8d8d;
	letter-spacing: 0.3px;
	opacity: 1;
}
.c-input.type-4:-moz-placeholder {
	font-size: 14px;
	line-height: 31px;
	font-weight: 400;
	color: #8e8d8d;
	letter-spacing: 0.3px;
	opacity: 1;
}
.c-input.type-4::-moz-placeholder {
	font-size: 14px;
	line-height: 31px;
	font-weight: 400;
	color: #8e8d8d;
	letter-spacing: 0.3px;
	opacity: 1;
}
.c-input.type-4:-ms-input-placeholder {
	font-size: 14px;
	line-height: 31px;
	font-weight: 400;
	color: #8e8d8d;
	letter-spacing: 0.3px;
	opacity: 1;
}
.c-input.type-4:focus {
	outline: none;
	border: 1px solid #f8d24b;
}
.c-input.type-4.size-2 {
	width: 100%;
	height: 38px;
	padding: 0 20px;
	text-align: left;
}
.c-input.type-4.color-2 {
	color: #c6c6c6;
	border-color: #e2e2e2;
}
.c-input.type-4.color-2::-webkit-input-placeholder {
	color: #c6c6c6;
}
.c-input.type-4.color-2:-moz-placeholder {
	color: #c6c6c6;
}
.c-input.type-4.color-2::-moz-placeholder {
	color: #c6c6c6;
}
.c-input.type-4.color-2:-ms-input-placeholder {
	color: #c6c6c6;
}
.c-input.type-4.color-2:focus {
	outline: none;
	border: 1px solid #f8d24b;
}
.c-input.type-5 {
	display: inline-block;
	width: 47px;
	height: 31px;
	font-size: 14px;
	line-height: 29px;
	font-weight: 400;
	color: #787879;
	letter-spacing: 0.3px;
	border: 1px solid #dedede;
	padding: 0 5px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-input.type-5:focus {
	outline: none;
	border: 1px solid #f8d24b;
}

/*c-are type-1*/
.c-area.type-1 {
	width: 100%;
	height: 203px;
	font-family: 'PT Serif';
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	letter-spacing: 0.5px;
	font-style: italic;
	background: #fff;
	border: 1px solid #e1e1e1;
	padding: 15px 20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-area.type-1::-webkit-input-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-area.type-1:-moz-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-area.type-1::-moz-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-area.type-1:-ms-input-placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #959595;
	opacity: 1;
}
.c-area.type-1:focus {
	border-color: #f8d24b;
}
.c-area.type-1.size-2 {
	height: 232px;
}

/*c-are type-2*/
.c-area.type-2 {
	width: 100%;
	height: 103px;
	font-size: 14px;
	font-weight: 400;
	color: #c6c6c6;
	letter-spacing: 0.5px;
	background: #fff;
	border: 1px solid #e2e2e2;
	padding: 15px 20px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.c-area.type-2::-webkit-input-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: #c6c6c6;
	opacity: 1;
}
.c-area.type-2:-moz-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: #c6c6c6;
	opacity: 1;
}
.c-area.type-2::-moz-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: #c6c6c6;
	opacity: 1;
}
.c-area.type-2:-ms-input-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: #c6c6c6;
	opacity: 1;
}
.c-area.type-2:focus {
	border-color: #f8d24b;
}
.tt-devider {
	width: 100%;
	height: 1px;
	background: #ededed;
}

/*custom select 1*/
.c-select-1 {
	position: relative;
	width: 96px;
}
.c-select-1 select {
	display: block;
	width: 100%;
	font-weight: 400;
	color: #b8b8b8;
	background: transparent;
	height: 42px;
	font-size: 12px;
	line-height: 30px;
	padding: 0px 11px;
	border: 1px solid #eee;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.c-select-1 select::-ms-expand {
	display: none;
}
.c-select-1 select:focus {
	outline: none;
}
.c-select-1 .select-arrow {
	display: block;
	position: absolute;
	top: 1px;
	right: 1px;
	text-align: center;
	background: #fff;
	color: #bdbdbd;
	width: 37px;
	height: 40px;
	line-height: 40px;
	border-left: 1px solid #eee;
	pointer-events: none;
}

/*custom select 2*/
.c-select-2 {
	position: relative;
	width: 100%;
}
.c-select-2 select {
	display: block;
	width: 100%;
	font-weight: 400;
	color: #959595;
	background: transparent;
	height: 55px;
	font-size: 14px;
	line-height: 36px;
	padding: 0px 11px;
	border: 1px solid #e2e2e2;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-bottom: 20px;
	font-family: "PT Serif";
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}
.c-select-2 select::-ms-expand {
	display: none;
}
.c-select-2 select:focus {
	outline: none;
}
.c-select-2 .select-arrow {
	display: block;
	position: absolute;
	top: 10px;
	right: 1px;
	text-align: center;
	background: #fff;
	color: #4e4e4e;
	width: 37px;
	height: 36px;
	line-height: 36px;
	pointer-events: none;
}

/*tt-checkbox*/
.tt-checkbox-entry {
	display: inline-block;
	cursor: pointer;
}
.tt-checkbox-form[type=checkbox] {
	position: relative;
	top: 2px;
	margin-right: 12px;
}
.tt-checkbox-form[type=checkbox]:focus {
	outline: none;
}
.tt-checkbox-text {
	font-size: 14px;
	line-height: 26px;
	font-weight: 400;
	color: #000;
	letter-spacing: 0.3px;
}

/*tt-radio*/
.tt-radio-entry {
	display: block;
}
.tt-radio-form[type=radio] {
	position: relative;
	top: 2px;
	margin-right: 12px;
}
.tt-radio-form[type=radio]:focus {
	outline: none;
}
.tt-radio-text {
	font-size: 14px;
	line-height: 26px;
	font-weight: 400;
	color: #000;
	letter-spacing: 0.3px;
}

/*tt-custom-list*/
.tt-custom-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tt-custom-list li {
	display: block;
	position: relative;
	font-family: 'PT Sans';
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	color: #000;
	letter-spacing: 0.5px;
	font-style: italic;
	padding-left: 55px;
	margin-bottom: 30px;
}
.tt-custom-list li:last-child {
	margin-bottom: 0;
}
.tt-custom-list li:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 23px;
	background: url(../img/list/list.png) no-repeat;
}
@media (max-width:767px) {
	.tt-custom-list li {
		margin-bottom: 15px;
	}
}
.marg4 {
	margin-left: -2px;
	margin-right: -2px;
}
.padd4 {
	padding-left: 2px;
	padding-right: 2px;
}
.pright20 {
	padding-right: 20px;
}
.pleft20 {
	padding-left: 20px;
}
.pleft40 {
	padding-left: 40px;
}
.pleft50 {
	padding-left: 50px;
}
@media (max-width:1199px) {
	.pright20 {
		padding-right: 0;
	}
	.pleft20 {
		padding-left: 0;
	}
	.pleft40 {
		padding-left: 0;
	}
	.pleft50 {
		padding-left: 0;
	}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - TT-HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 149px;
	background: #05305a;
	padding-top: 47px;
	z-index: 101;
}
.tt-header ul {
	padding-left: 0;
	margin-bottom: 0;
}
.tt-header .top-inner {
	float: left;
	margin-top: 15px;
}
.tt-header .logo {
	display: inline-block;
	height: 62px;
	line-height: 62px;
}
.tt-header .logo img {
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

/*general navigation*/
.tt-header .main-nav > ul {
	list-style: none;
}
.tt-header .main-nav > ul > li > a {
	font-family: 'Raleway';
	font-size: 15px;
	line-height: 15px;
	font-weight: 700;
	color: #e9e9e9;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.tt-header .main-nav > ul > li.active > a, .tt-header .main-nav > ul > li:hover > a {
	color: #32bee9;
}
.tt-header .main-nav > ul > li > ul {
	list-style: none;
}
.tt-header .main-nav > ul > li > ul > li > ul {
	list-style: none;
}

/*top-info*/
.tt-header .top-line {
	text-align: right;
}
.tt-header .top-info {
	display: inline-block;
	position: relative;
	padding: 0 24px;
}
.tt-header .top-info:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 26px;
	background: url(https://c.na35.content.force.com/servlet/servlet.ImageServer?id=01541000000Dh4A&oid=00D41000000LrHj) repeat-y;
	margin-top: -13px;
}
.tt-header .top-info:first-child:before {
	display: none;
}
.tt-header .top-info:last-child {
	padding-right: 0;
}
.tt-header .top-info a, .tt-header .top-info span {
	position: relative;
	font-size: 13px;
	line-height: 47px;
	font-weight: 400;
	color: #abb9c6;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.tt-header .top-info a + a {
	padding-left: 12px;
	margin-left: 8px;
}
.tt-header .top-info a + a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 12px;
	background: #7c8a99;
	margin-top: -6px;
}
.tt-header .top-info a:hover {
	color: #34c6f2;
}
.tt-header .top-info .fa, .tt-header .top-info .stroke-icon {
	font-size: 18px;
	line-height: 47px;
	margin-right: 8px;
	color: #34c6f2;
	vertical-align: middle;
}

/*nav-more*/
.tt-header .nav-more {
	display: inline-block;
	font-size: 0;
	margin-top: 30px;
	margin-left: 35px;
}
.tt-top-search {
	display: inline-block;
	font-size: 16px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.6);
	padding: 10px;
}
.tt-top-search:hover {
	color: #34c6f2;
}

/*cmn-toggle-switch*/
.cmn-toggle-switch:focus {
	outline: none;
}
.tt-header .cmn-toggle-switch {
	display: none;
	position: fixed;
	top: 35px;
	right: 15px;
	margin: -8.5px 0 0 0;
	padding: 0;
	width: 30px;
	height: 17px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-border-radius: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	background-color: transparent;
	z-index: 101;
}
.tt-header .cmn-toggle-switch span {
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
	right: 0;
	height: 3px;
	background: #34c6f2;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.tt-header .cmn-toggle-switch::before, .tt-header .cmn-toggle-switch::after {
	content: "";
	position: absolute;
	display: block;
	top: 7px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #34c6f2;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.tt-header .cmn-toggle-switch::before {
	margin-top: -7px;
}
.tt-header .cmn-toggle-switch::after {
	margin-top: 7px;
}
.tt-header .cmn-toggle-switch.active::before {
	-webkit-transform: translateY(7px) rotate(45deg);
	-moz-transform: translateY(7px) rotate(45deg);
	-ms-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
}
.tt-header .cmn-toggle-switch.active::after {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	-moz-transform: translateY(-7px) rotate(-45deg);
	-ms-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
}
.tt-header .cmn-toggle-switch.active span {
	opacity: 0;
}
.tt-header-margin {
	height: 149px;
}
@media (min-width:992px) {
	.tt-header {
		position: absolute;
		top: 0;
		left: 0;
		-webkit-transform: translateZ(0);
		-moz-transform: translateZ(0);
		transform: translateZ(0);
	}
	.tt-header.stick {
		position: fixed;
		top: -48px;
		-webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
		-moz-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
		box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
	}
	.tt-header.stick .top-inner {
		margin-top: 20px;
	}
	.tt-header .top-inner {
		position: relative;
	}
	.tt-header .top-inner:before {
		content: '';
		display: block;
		position: absolute;
		top: -34px;
		left: -30px;
		border-bottom: 23px solid #05305a;
		border-left: 16px solid transparent;
		border-right: 16px solid transparent;
		height: 0;
		width: 328px;
		z-index: 1;
	}
	.tt-header .top-line {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 49px;
		background: #0b233b url(https://c.na35.content.force.com/servlet/servlet.ImageServer?id=01541000000Dg5G&oid=00D41000000LrHj);
	}
	.tt-header .toggle-block {
		display: block !important;
		float: right;
	}
	.tt-header .main-nav {
		display: inline-block;
		vertical-align: top;
	}
	.tt-header .main-nav > ul > li {
		position: relative;
		float: left;
		margin-left: 34px;
	}
	.tt-header .main-nav > ul > li > a {
		display: block;
		position: relative;
		padding: 43px 2px;
	}
	.tt-header .main-nav > ul > li > a:before {
		content: '';
		display: block;
		position: absolute;
		bottom: 33px;
		left: 0;
		width: 0;
		height: 2px;
		background: #f8d24b;
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.tt-header .main-nav > ul > li > a:hover:before, .tt-header .main-nav > ul > li.active > a:before {
		width: 100%;
	}

	/*2nd level*/
	.tt-header .main-nav > ul > li > ul {
		display: block !important;
		position: absolute;
		top: 100%;
		left: 50%;
		width: 224px;
		background: #0b243d;
		margin-left: -112px;
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		transform: translateY(40px);
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.tt-header .main-nav > ul > li:hover > ul {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	.tt-header .main-nav > ul > li > ul > li {
		border-bottom: 1px solid #24323f;
		text-align: left;
	}
	.tt-header .main-nav > ul > li > ul > li > a {
		display: block;
		position: relative;
		font-size: 13px;
		line-height: 17px;
		font-weight: 400;
		color: #9aa4ae;
		letter-spacing: 0.3px;
		padding: 13px 25px 12px 24px;
		text-transform: uppercase;
	}
	.tt-header .main-nav > ul > li > ul > li.parent > a:before {
		content: "\f105";
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 22px;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		margin-top: -7px;
	}
	.tt-header .main-nav > ul > li > ul > li > a:hover {
		background: #05305a;
		color: #9aa4ae;
	}

	/*3rd level*/
	.tt-header .main-nav > ul > li > ul > li {
		position: relative;
	}
	.tt-header .main-nav > ul > li > ul > li > ul {
		display: block !important;
		position: absolute;
		top: 0;
		left: 100%;
		width: 224px;
		background: #0b243d;
		margin-top: 0;
		margin-left: 5px;
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		transform: translateY(40px);
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.tt-header .main-nav > ul > li > ul > li > ul:before {
		content: '';
		position: absolute;
		top: 0;
		left: -5px;
		bottom: 0;
		width: 5px;
		background: transparent;
	}
	.tt-header .main-nav > ul > li:nth-last-child(1) > ul > li > ul, .tt-header .main-nav > ul > li:nth-last-child(2) > ul > li > ul {
		left: auto;
		right: 100%;
		margin-right: 5px;
	}
	.tt-header .main-nav > ul > li > ul > li:hover > ul {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	.tt-header .main-nav > ul > li > ul > li > ul > li {
		border-bottom: 1px solid #24323f;
		text-align: left;
	}
	.tt-header .main-nav > ul > li > ul > li > ul > li:last-child {
		margin-bottom: 0;
	}
	.tt-header .main-nav > ul > li > ul > li > ul > li > a {
		display: block;
		position: relative;
		font-size: 13px;
		line-height: 17px;
		font-weight: 400;
		color: #9aa4ae;
		letter-spacing: 0.3px;
		padding: 13px 25px 12px 24px;
		text-transform: uppercase;
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.tt-header .main-nav > ul > li > ul > li > ul > li > a:hover {
		background: #05305a;
		color: #9aa4ae;
	}
	.tt-header .menu-toggle {
		padding-left: 7px;
	}
	.tt-header .main-nav .parent .parent .menu-toggle {
		display: none;
	}
}
@media (min-width:992px) and (max-width:1199px) {
	.tt-header .logo {
		width: 180px;
	}
	.tt-header .nav-more {
		margin-left: 10px;
	}
	.tt-header .main-nav > ul > li {
		margin-left: 26px;
	}
	.tt-header .top-inner:before {
		left: -60px;
	}
}
@media (max-width:991px) {
	.tt-header .logo {
		height: 46px;
		line-height: 52px;
	}
	.tt-header {
		position: absolute;
		left: 0;
		right: 0;
		padding-left: 15px;
		padding-right: 15px;
		height: auto;
	}
	.tt-header .top-inner {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 70px;
		padding: 9px 15px;
		background: #05305a;
		border-bottom: 1px solid #32bee9;
		z-index: 1;
	}
	.tt-header .top-inner {
		margin-top: 0px;
		float: none;
	}
	.tt-header .cmn-toggle-switch {
		display: block;
	}
	.tt-header .toggle-block {
		display: none;
		text-align: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-height: 100%;
		overflow: auto;
		background: #05305a;
		padding: 85px 15px 30px 15px;
		border-bottom: 1px solid #F2F2F2;
	}
	.tt-header .main-nav {
		margin-bottom: 15px;
	}
	.tt-header .main-nav > ul > li {
		padding: 13px 0;
	}
	.tt-header .main-nav > ul > li > a {
		display: block;
	}
	.tt-header .main-nav > ul > li.parent > ul {
		display: none;
		background: #0b233b;
		margin-top: 10px;
	}
	.tt-header .main-nav > ul > li.parent > a {
		position: relative;
		padding-left: 25px;
		padding-right: 25px;
	}
	.tt-header .main-nav > ul > li > ul > li > a {
		display: inline-block;
		font-size: 12px;
		line-height: 15px;
		font-weight: 300;
		color: #fff;
		letter-spacing: 0.5px;
		padding: 12px 22px;
		text-transform: uppercase;
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.tt-header .main-nav > ul > li > a {
		position: relative;
		padding-left: 25px;
		padding-right: 25px;
	}
	.tt-header .main-nav > ul > li > ul {
		display: none;
		background: #171f2b;
		padding: 15px 0;
		margin-top: 15px;
	}
	.tt-header .main-nav > ul > li > ul > li > a {
		display: block;
		position: relative;
	}
	.tt-header .main-nav > ul > li > ul > li > a:hover {
		color: #34c6f2;
	}
	.tt-header .main-nav > ul > li > ul > li > ul {
		display: none;
		list-style: none;
	}
	.tt-header .main-nav > ul > li > ul > li > ul > li > a {
		display: block;
		font-size: 13px;
		line-height: 17px;
		font-weight: 400;
		color: #787878;
		letter-spacing: 0.3px;
		text-transform: uppercase;
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.tt-header .main-nav > ul > li > ul > li > ul > li > a:hover {
		color: #fff;
	}
	.tt-header .menu-toggle, .tt-header .menu-toggle-inner {
		position: absolute;
		top: 50%;
		right: 0;
		padding: 13px 16px;
		margin-top: -20px;
	}
	.tt-header .nav-more {
		margin: 0 0 15px 0;
	}
	.tt-header .top-info:before {
		display: none;
	}
	.tt-header .top-info a:hover {
		color: #34c6f2;
	}
	.tt-header-margin {
		height: 70px;
	}
	.tt-header .top-info {
		display: block;
		text-align: center;
	}
	.tt-header .top-info {
		padding: 0;
	}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - TT-HEADER COLOR-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-header.color-2 {
	background: transparent;
	-webkit-transition: background 300ms ease-in-out;
	-moz-transition: background 300ms ease-in-out;
	transition: background 300ms ease-in-out;
}
.tt-header.color-2 .top-inner:before {
	opacity: 0;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.tt-header.color-2.stick {
	background: #05305a;
}
.tt-header.color-2.stick .top-inner:before {
	opacity: 1;
}
@media (min-width:992px) {
	.tt-header.color-2 .top-line {
		background: rgba(0, 0, 0, 0.3);
	}
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 09 - TT-HEDING */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-heding-title {
	position: relative;
	display: inline-block;
	margin-bottom: 0;
}
.tt-heding-title:after {
	content: '';
	display: inline-block;
	width: 65px;
	height: 3px;
	background: #f8d24b;
}
.tt-heding-title span {
	margin-right: 15px;
}
.tt-heding-desc {
	font-family: 'PT Serif';
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
	color: #aeaeae;
	font-style: italic;
	letter-spacing: 0.2px;
	margin-top: 7px;
}
.tt-heding.color-2 .tt-heding-title {
	color: #fff;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 10 - TT-HEDING TYPE-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-heding.type-2 .tt-heding-title:after {
	width: 50px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 27 - TT-BANNER-2 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-banner-2 {
	position: relative;
	top: -50px;
	background: #f8d24b;
	padding: 28px 27px 28px 40px;
}
.tt-banner-2:before {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: 8px;
	right: 8px;
	bottom: 8px;
	border: 2px dashed #b59a3d;
}
.tt-banner-2-right {
	text-align: right;
	padding-top: 4px;
}
.tt-banner-2-title {
	margin-bottom: 0;
}
@media (max-width:991px) {
	.tt-banner-2 {
		padding: 28px 27px;
	}
}
@media (max-width:767px) {
	.tt-banner-2 {
		top: -30px;
		padding: 28px 27px;
	}
	.tt-banner-2-right input[type="text"] {
		margin-bottom: 15px;
	}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 28 - TT-FOOTER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-footer {
	background: #151515;
}
.tt-footer-line {
	padding: 31px 0;
	border-top: 1px solid #222;
}
.tt-footer-copy {
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: #545454;
	letter-spacing: 0.5px;
	text-align: left;
}
.tt-footer-copy a {
	color: #545454;
}
.tt-footer-copy a:hover {
	color: #f8d24b;
}
@media (max-width:767px) {
	.tt-footer-line {
		padding: 15px 0;
	}
	.tt-footer-copy {
		text-align: center;
		margin-bottom: 15px;
	}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 29 - TT-TOPHEADING */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-topheading {
	position: relative;
	padding: 89px 0;
}
.tt-topheading:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
}
.tt-topheading-title {
	position: relative;
	color: #fff;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.tt-topheading-title span {
	margin-right: 20px;
}
.tt-topheading-title:after {
	content: '';
	display: inline-block;
	width: 50px;
	height: 3px;
	background: #f8d24b;
}
.tt-breadcrumbs {
	position: relative;
	list-style: none;
	font-size: 0;
}
.tt-breadcrumbs li {
	display: inline-block;
	position: relative;
	margin-right: 19px;
}
.tt-breadcrumbs li:after {
	content: '\f105';
	display: block;
	position: absolute;
	top: 0;
	left: 100%;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 12px;
	line-height: 15px;
	color: #fff;
	margin-left: 6px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.tt-breadcrumbs li:last-child {
	margin-right: 0;
}
.tt-breadcrumbs li:last-child:after {
	display: none;
}
.tt-breadcrumbs a, .tt-breadcrumbs span {
	font-size: 13px;
	line-height: 15px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.tt-breadcrumbs a:hover {
	color: #32bee9;
}
.tt-breadcrumbs a .fa {
	font-size: 14px;
	margin-right: 5px;
}
.tt-topheading .tt-breadcrumbs {
	padding-left: 0;
	margin-bottom: 0;
	margin-top: 9px;
}
@media (max-width:991px) {
	.tt-topheading {
		padding: 45px 0;
	}
}
@media (max-width:767px) {
	.tt-topheading .tt-breadcrumbs {
		float: none;
	}
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 37 - TT-CONTACT-FORM */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-contact-form .c-input {
	margin-bottom: 20px;
}
.tt-contact-form .c-area {
	margin-bottom: 30px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 72 - CUSTOM MARGINS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.marg-lg-b0 {
	height: 0px;
}
.marg-lg-b4 {
	height: 4px;
}
.marg-lg-b5 {
	height: 5px;
}
.marg-lg-b10 {
	height: 10px;
}
.marg-lg-b15 {
	height: 15px;
}
.marg-lg-b20 {
	height: 20px;
}
.marg-lg-b25 {
	height: 25px;
}
.marg-lg-b30 {
	height: 30px;
}
.marg-lg-b35 {
	height: 35px;
}
.marg-lg-b40 {
	height: 40px;
}
.marg-lg-b45 {
	height: 45px;
}
.marg-lg-b50 {
	height: 50px;
}
.marg-lg-b55 {
	height: 55px;
}
.marg-lg-b60 {
	height: 60px;
}
.marg-lg-b65 {
	height: 65px;
}
.marg-lg-b70 {
	height: 70px;
}
.marg-lg-b75 {
	height: 75px;
}
.marg-lg-b80 {
	height: 80px;
}
.marg-lg-b85 {
	height: 85px;
}
.marg-lg-b90 {
	height: 90px;
}
.marg-lg-b95 {
	height: 95px;
}
.marg-lg-b100 {
	height: 100px;
}
.marg-lg-b105 {
	height: 105px;
}
.marg-lg-b110 {
	height: 110px;
}
.marg-lg-b115 {
	height: 115px;
}
.marg-lg-b120 {
	height: 120px;
}
.marg-lg-b125 {
	height: 125px;
}
.marg-lg-b130 {
	height: 130px;
}
.marg-lg-b135 {
	height: 135px;
}
.marg-lg-b140 {
	height: 140px;
}
.marg-lg-b145 {
	height: 145px;
}
.marg-lg-b150 {
	height: 150px;
}
.marg-lg-b155 {
	height: 155px;
}
.marg-lg-b160 {
	height: 160px;
}
.marg-lg-b165 {
	height: 165px;
}
.marg-lg-b170 {
	height: 170px;
}
.marg-lg-b175 {
	height: 175px;
}
.marg-lg-b180 {
	height: 180px;
}
.marg-lg-b185 {
	height: 185px;
}
.marg-lg-b190 {
	height: 190px;
}
.marg-lg-b195 {
	height: 195px;
}
.marg-lg-b200 {
	height: 200px;
}
.marg-lg-b205 {
	height: 205px;
}
.marg-lg-b210 {
	height: 210px;
}
@media (max-width:1199px) {
	.marg-md-b0 {
		height: 0px !important;
	}
	.marg-md-b5 {
		height: 5px !important;
	}
	.marg-md-b10 {
		height: 10px !important;
	}
	.marg-md-b15 {
		height: 15px !important;
	}
	.marg-md-b20 {
		height: 20px !important;
	}
	.marg-md-b25 {
		height: 25px !important;
	}
	.marg-md-b30 {
		height: 30px !important;
	}
	.marg-md-b35 {
		height: 35px !important;
	}
	.marg-md-b40 {
		height: 40px !important;
	}
	.marg-md-b45 {
		height: 45px !important;
	}
	.marg-md-b50 {
		height: 50px !important;
	}
	.marg-md-b55 {
		height: 55px !important;
	}
	.marg-md-b60 {
		height: 60px !important;
	}
	.marg-md-b65 {
		height: 65px !important;
	}
	.marg-md-b70 {
		height: 70px !important;
	}
	.marg-md-b75 {
		height: 75px !important;
	}
	.marg-md-b80 {
		height: 80px !important;
	}
	.marg-md-b85 {
		height: 85px !important;
	}
	.marg-md-b90 {
		height: 90px !important;
	}
	.marg-md-b95 {
		height: 95px !important;
	}
	.marg-md-b100 {
		height: 100px !important;
	}
	.marg-md-b105 {
		height: 105px !important;
	}
	.marg-md-b110 {
		height: 110px !important;
	}
	.marg-md-b115 {
		height: 115px !important;
	}
	.marg-md-b120 {
		height: 120px !important;
	}
	.marg-md-b125 {
		height: 125px !important;
	}
	.marg-md-b130 {
		height: 130px !important;
	}
	.marg-md-b135 {
		height: 135px !important;
	}
	.marg-md-b140 {
		height: 140px !important;
	}
	.marg-md-b145 {
		height: 145px !important;
	}
	.marg-md-b150 {
		height: 150px !important;
	}
	.marg-md-b155 {
		height: 155px !important;
	}
	.marg-md-b160 {
		height: 160px !important;
	}
	.marg-md-b165 {
		height: 165px !important;
	}
	.marg-md-b170 {
		height: 170px !important;
	}
	.marg-md-b175 {
		height: 175px !important;
	}
	.marg-md-b180 {
		height: 180px !important;
	}
	.marg-md-b185 {
		height: 185px !important;
	}
	.marg-md-b190 {
		height: 190px !important;
	}
	.marg-md-b195 {
		height: 195px !important;
	}
	.marg-md-b200 {
		height: 200px !important;
	}
	.marg-md-b205 {
		height: 205px !important;
	}
	.marg-md-b210 {
		height: 210px !important;
	}
}
@media (max-width:991px) {
	.marg-sm-b0 {
		height: 0px !important;
	}
	.marg-sm-b5 {
		height: 5px !important;
	}
	.marg-sm-b10 {
		height: 10px !important;
	}
	.marg-sm-b15 {
		height: 15px !important;
	}
	.marg-sm-b20 {
		height: 20px !important;
	}
	.marg-sm-b25 {
		height: 25px !important;
	}
	.marg-sm-b30 {
		height: 30px !important;
	}
	.marg-sm-b35 {
		height: 35px !important;
	}
	.marg-sm-b40 {
		height: 40px !important;
	}
	.marg-sm-b45 {
		height: 45px !important;
	}
	.marg-sm-b50 {
		height: 50px !important;
	}
	.marg-sm-b55 {
		height: 55px !important;
	}
	.marg-sm-b60 {
		height: 60px !important;
	}
	.marg-sm-b65 {
		height: 65px !important;
	}
	.marg-sm-b70 {
		height: 70px !important;
	}
	.marg-sm-b75 {
		height: 75px !important;
	}
	.marg-sm-b80 {
		height: 80px !important;
	}
	.marg-sm-b85 {
		height: 85px !important;
	}
	.marg-sm-b90 {
		height: 90px !important;
	}
	.marg-sm-b95 {
		height: 95px !important;
	}
	.marg-sm-b100 {
		height: 100px !important;
	}
	.marg-sm-b105 {
		height: 105px !important;
	}
	.marg-sm-b110 {
		height: 110px !important;
	}
	.marg-sm-b115 {
		height: 115px !important;
	}
	.marg-sm-b120 {
		height: 120px !important;
	}
	.marg-sm-b125 {
		height: 125px !important;
	}
	.marg-sm-b130 {
		height: 130px !important;
	}
	.marg-sm-b135 {
		height: 135px !important;
	}
	.marg-sm-b140 {
		height: 140px !important;
	}
	.marg-sm-b145 {
		height: 145px !important;
	}
	.marg-sm-b150 {
		height: 150px !important;
	}
	.marg-sm-b155 {
		height: 155px !important;
	}
	.marg-sm-b160 {
		height: 160px !important;
	}
	.marg-sm-b165 {
		height: 165px !important;
	}
	.marg-sm-b170 {
		height: 170px !important;
	}
	.marg-sm-b175 {
		height: 175px !important;
	}
	.marg-sm-b180 {
		height: 180px !important;
	}
	.marg-sm-b185 {
		height: 185px !important;
	}
	.marg-sm-b190 {
		height: 190px !important;
	}
	.marg-sm-b195 {
		height: 195px !important;
	}
	.marg-sm-b200 {
		height: 200px !important;
	}
	.marg-sm-b205 {
		height: 205px !important;
	}
	.marg-sm-b210 {
		height: 210px !important;
	}
}
@media (max-width:767px) {
	.marg-xs-b0 {
		height: 0px !important;
	}
	.marg-xs-b5 {
		height: 5px !important;
	}
	.marg-xs-b10 {
		height: 10px !important;
	}
	.marg-xs-b15 {
		height: 15px !important;
	}
	.marg-xs-b20 {
		height: 20px !important;
	}
	.marg-xs-b25 {
		height: 25px !important;
	}
	.marg-xs-b30 {
		height: 30px !important;
	}
	.marg-xs-b35 {
		height: 35px !important;
	}
	.marg-xs-b40 {
		height: 40px !important;
	}
	.marg-xs-b45 {
		height: 45px !important;
	}
	.marg-xs-b50 {
		height: 50px !important;
	}
	.marg-xs-b55 {
		height: 55px !important;
	}
	.marg-xs-b60 {
		height: 60px !important;
	}
	.marg-xs-b65 {
		height: 65px !important;
	}
	.marg-xs-b70 {
		height: 70px !important;
	}
	.marg-xs-b75 {
		height: 75px !important;
	}
	.marg-xs-b80 {
		height: 80px !important;
	}
	.marg-xs-b85 {
		height: 85px !important;
	}
	.marg-xs-b90 {
		height: 90px !important;
	}
	.marg-xs-b95 {
		height: 95px !important;
	}
	.marg-xs-b100 {
		height: 100px !important;
	}
	.marg-xs-b105 {
		height: 105px !important;
	}
	.marg-xs-b110 {
		height: 110px !important;
	}
	.marg-xs-b115 {
		height: 115px !important;
	}
	.marg-xs-b120 {
		height: 120px !important;
	}
	.marg-xs-b125 {
		height: 125px !important;
	}
	.marg-xs-b130 {
		height: 130px !important;
	}
	.marg-xs-b135 {
		height: 135px !important;
	}
	.marg-xs-b140 {
		height: 140px !important;
	}
	.marg-xs-b145 {
		height: 145px !important;
	}
	.marg-xs-b150 {
		height: 150px !important;
	}
	.marg-xs-b155 {
		height: 155px !important;
	}
	.marg-xs-b160 {
		height: 160px !important;
	}
	.marg-xs-b165 {
		height: 165px !important;
	}
	.marg-xs-b170 {
		height: 170px !important;
	}
	.marg-xs-b175 {
		height: 175px !important;
	}
	.marg-xs-b180 {
		height: 180px !important;
	}
	.marg-xs-b185 {
		height: 185px !important;
	}
	.marg-xs-b190 {
		height: 190px !important;
	}
	.marg-xs-b195 {
		height: 195px !important;
	}
	.marg-xs-b200 {
		height: 200px !important;
	}
	.marg-xs-b205 {
		height: 205px !important;
	}
	.marg-xs-b210 {
		height: 210px !important;
	}
}