html, body {
	/*height: 100% !important;*/
	padding: 0;
	margin: 0;
}
body {
	background-color: #FFF;
	font-family: 'Oswald', sans-serif;
	line-height: 1.6;
	font-size: 19px;
	color: #000;
	border-left: 15px solid #FFF;
	border-right: 15px solid #FFF;
}
a {
	font-weight: normal;
	color: #1c69d4;
}
a:hover, a:focus {
	color: #1c69d4;
	text-decoration: underline;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
}
p {
	font-family: 'Open Sans', sans-serif;
	letter-spacing: -0.5px;
}
hr {
	border-color: rgba(146, 146, 146, 0.23);
}
pre {
	max-height: 300px;
	padding: 10px;
	background-color: #f5f5f5;
	border: 1px solid #e1e1e8;
	border-radius: 4px;
	-webkit-tab-size: 3;
	tab-size: 3;
}
code {
	padding: 2px 4px;
	font-size: 90%;
	color: #c7254e;
	background-color: #f9f2f4;
	border-radius: 4px;
}
::selection {
	background-color: #1c69d4;
	color: #FFF;
}

.lead {
	font-size: 21px;
	font-weight: normal;
}
.thumbnail {
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 0;
}


/* ------------------------------------------------------------- *
 *  Page preloader (display loading animation while page loads)
/* ------------------------------------------------------------- */

#preloader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	z-index: 99999;
}
#preloader .pulse {
	position: absolute;
	display: inline-block;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin-top: -40px;
	margin-left: -40px;
	border-radius: 40px;
	background-color: #1c69d4;
	-webkit-animation: scaleout 1.0s infinite ease;
	animation: scaleout 1.0s infinite ease;
}
@-webkit-keyframes scaleout {
	0% { -webkit-transform: scale(0.0) }
	100% {
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}
@keyframes scaleout {
	0% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	} 100% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}


/* ------------------------------------ *
 *  Bage borders
/* ------------------------------------ */

.border-top, .border-bottom, .border-left, .border-right {
	position: fixed;
	background-color: #FFF;
	z-index: 99998;
}
.border-top {
	top: 0;
	left: 0;
	height: 15px;
	width: 100%;
}
.border-bottom {
	bottom: 0;
	left: 0;
	height: 15px;
	width: 100%;
}
.border-left {
	top: 0;
	left: 0;
	width: 15px;
	height: 100%;
}
.border-right {
	top: 0;
	right: 0;
	width: 15px;
	height: 100%;
}


/* ------------------------------------ *
 *  Body content
/* ------------------------------------ */

#body-content {
	position: relative;
	background-color: #FFF;
}


/* ------------------------------------------------------------- *
 *  Page content
/* ------------------------------------------------------------- */

#page-content {
	position: relative;
}


/* ------------------------------------ *
 *  Headings
/* ------------------------------------ */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	text-transform: uppercase;
	line-height: 1.3;
	font-weight: bold;
	font-weight: 600;
}
.h1, .h2, .h3, h1, h2, h3 {
	margin-top: 0px;
	margin-bottom: 20px;
}
.h4, .h5, .h6, h4, h5, h6 {
	margin-top: 10px;
	margin-bottom: 20px;
}

.h1, h1 { font-size: 42px; }
.h2, h2 { font-size: 36px; }
.h3, h3 { font-size: 31px; }
.h4, h4 { font-size: 26px; }
.h5, h5 { font-size: 22px; }
.h6, h6 { font-size: 19px; }

/* If background classes used */
.h1 [class*="bg-"],
.h2 [class*="bg-"],
.h3 [class*="bg-"],
.h4 [class*="bg-"],
.h5 [class*="bg-"],
.h6 [class*="bg-"],
h1 [class*="bg-"],
h2 [class*="bg-"],
h3 [class*="bg-"],
h4 [class*="bg-"],
h5 [class*="bg-"],
h6 [class*="bg-"] {
	display: inline-block;
	padding: 0px 4px;
	margin-right: 3px;
}
.h1 [class*="bg-"]:hover,
.h2 [class*="bg-"]:hover,
.h3 [class*="bg-"]:hover,
.h4 [class*="bg-"]:hover,
.h5 [class*="bg-"]:hover,
.h6 [class*="bg-"]:hover,
h1 [class*="bg-"]:hover,
h2 [class*="bg-"]:hover,
h3 [class*="bg-"]:hover,
h4 [class*="bg-"]:hover,
h5 [class*="bg-"]:hover,
h6 [class*="bg-"]:hover {
	text-decoration: none;
}


/* Custom headings
=================== */
.heading {
	position: relative;
	width: 100%;
	margin-bottom: 40px;
	z-index: 3;
}
.heading .heading-title {
	margin: 0;
	font-size: 36px;
	font-weight: bold;
}
.heading .heading-title [class*="bg-"] {
	display: inline-block;
	padding: 0px 7px;
}
@media (max-width: 768px) {
	.heading .heading-title [class*="bg-"] {
		padding: 0px 4px;
	}
}
.heading .heading-title [class*="bg-"] + [class*="bg-"] {
	margin-left: 5px;
}
@media (max-width: 768px) {
	.heading .heading-title [class*="bg-"] + [class*="bg-"] {
		margin-left: 2px;
	}
}

@media (min-width: 768px) {
	.heading p {
		font-size: 21px;
	}
}

/* Custom heading divider */
.heading .hr-short {
	margin-bottom: 20px;
}
.heading .heading-title + .hr-short {
	margin-top: 20px;
	margin-bottom: 0;
}

/* Custom heading aligns */
.heading-center {
	text-align: center;
}
.heading.heading-center .hr-short {
	margin-left: auto;
	margin-right: auto;
}

.heading-right {
	text-align: right;
}
.heading.heading-right .hr-short {
	margin-left: auto;
	margin-right: 0;
}

/* Custom heading sizes */
.heading.heading-xsm .heading-title {
	font-size: 28px;
}
.heading.heading-sm .heading-title {
	font-size: 42px;
}
.heading.heading-md .heading-title {
	font-size: 52px;
}
.heading.heading-lg .heading-title {
	font-size: 62px;
}
.heading.heading-xlg .heading-title {
	font-size: 80px;
}

@media (max-width: 1440px) {
	.heading .heading-title,
	.heading.heading-lg .heading-title,
	.heading.heading-xlg .heading-title {
		font-size: 52px;
	}
}
@media (max-width: 768px) {
	.heading .heading-title,
	.heading.heading-sm .heading-title,
	.heading.heading-md .heading-title,
	.heading.heading-lg .heading-title,
	.heading.heading-xlg .heading-title {
		font-size: 42px;
	}
}
@media (max-width: 480px) {
	.heading .heading-title,
	.heading.heading-sm .heading-title,
	.heading.heading-md .heading-title,
	.heading.heading-lg .heading-title,
	.heading.heading-xlg .heading-title {
		font-size: 36px;
	}
}


/* ------------------------------------ *
 *  Divider
/* ------------------------------------ */

hr.hr-short {
	display: block;
	width: 40px;
	height: 4px;
	background-color: #1c69d4;
	margin: 0 0 25px 0;
}
hr.hr-short.hr-short-center,
hr.hr-short.text-center {
	margin-left: auto;
	margin-right: auto;
}
hr.hr-short.hr-short-right,
hr.hr-short.text-right {
	margin-left: auto;
	margin-right: 0;
}


/* ------------------------------------ *
 *  Lists
/* ------------------------------------ */

.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}
.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}


/* ------------------------------------ *
 *  Section
/* ------------------------------------ */

section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}
section .container {
	position: relative;
	z-index: 3;
}


/* ------------------------------------------------------------- *
 *  Cover (used as image cover)
/* ------------------------------------------------------------- */

.cover {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
}

[class*="cover-opacity-"]::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	z-index: 1;
	opacity: 0;
}


/* Cover opasity
================= */
.cover-opacity-0::before { opacity: 0; }
.cover-opacity-0-5::before { opacity: .05; }
.cover-opacity-1::before { opacity: .1; }
.cover-opacity-1-5::before { opacity: .15; }
.cover-opacity-2::before { opacity: .2; }
.cover-opacity-2-5::before { opacity: .25; }
.cover-opacity-3::before { opacity: .3; }
.cover-opacity-3-5::before { opacity: .35; }
.cover-opacity-4::before { opacity: .4; }
.cover-opacity-4-5::before { opacity: .45; }
.cover-opacity-5::before { opacity: .5; }
.cover-opacity-5-5::before { opacity: .55; }
.cover-opacity-6::before { opacity: .6; }
.cover-opacity-6-5::before { opacity: .65; }
.cover-opacity-7::before { opacity: .7; }
.cover-opacity-7-5::before { opacity: .75; }
.cover-opacity-8::before { opacity: .8; }
.cover-opacity-8-5::before { opacity: .85; }
.cover-opacity-9::before { opacity: .9; }
.cover-opacity-9-5::before { opacity: .95; }


/* ------------------------------------ *
 *  Intro
/* ------------------------------------ */

#section-intro {
	position: relative;
	padding: 0;
	overflow: hidden;
}


/* Intro image
=============== */
.intro-image-wrap {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.intro-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}


/* Intro caption
================= */
.intro-caption {
	position: absolute;
	bottom: 80px;
	left: 80px;
	right: 80px;
	z-index: 3;
	z-index: 2;
}
.intro-caption-title {
	font-size: 82px;
	font-weight: bold;
}
.intro-caption-title [class*="bg-"] {
	padding: 0px 10px;
}
.intro-caption-subtitle {
	margin: 15px 0 0 0;
	font-size: 28px;
}

@media (max-width: 992px) {
	.intro-caption-title {
		font-size: 68px;
	}
}
@media (max-width: 768px) {
	.intro-caption {
		bottom: 8%;
		left: 5%;
		right: 5%;
	}
	.intro-caption-title {
		font-size: 38px;
	}
	.intro-caption-title [class*="bg-"] {
		padding: 0px 4px;
	}
	.intro-caption-subtitle {
		font-size: 21px;
	}
}
@media (max-width: 320px) {
	.intro-caption-title {
		font-size: 32px;
	}
}



/* ----------------------------------------- *
 *  Intro 404 error
/* ----------------------------------------- */

#section-intro.intro-error {
}


/* ------------------------------------------------------------- *
 *  Page header
/* ------------------------------------------------------------- */

#page-header {
	position: relative;
	overflow: hidden;
}
.page-header-inner {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 100px 8%;
	z-index: 1;
}
@media (min-width: 992px) {
	.page-header-inner.container,
	.page-header-inner[class*="max-width-"] {
		padding-left: 0;
		padding-right: 0;
	}
}
@media (max-width: 992px) {
	.page-header-inner {
		padding-top: 25%;
		padding-bottom: 20%;
		padding-left: 4%;
		padding-right: 4%;
	}
}
@media (max-width: 480px) {
	.page-header-inner {
		padding-top: 35%;
		padding-bottom: 20%;
	}
}


/* Page header caption
======================= */
.page-header-caption {
	position: relative;
	margin: 0 auto;
	z-index: 4;
}
@media (max-width: 1282px) {
	.page-header-caption {
		padding-left: 8%;
		padding-right: 8%;
	}
}
@media (max-width: 992px) {
	.page-header-caption {
		padding-left: 3%;
		padding-right: 3%;
	}
}

/* page header title */
.ph-title-wrap {
}
.page-header-title {
	margin: 0 0 15px 0;
	font-size: 52px;
	font-weight: bold;
	font-weight: 600;
	color: #000;
}
@media (max-width: 991px) {
	.page-header-title {
		font-size: 42px ;
	}
}
@media (max-width: 768px) {
	.page-header-title {
		font-size: 32px;
	}
}

.page-header-title span {
	display: inline-block;
	padding: 0px 10px;
	margin-right: 5px;
}

/* page header subtitle */
.ph-subtitle-wrap {
}
.page-header-subtitle {
	margin: 20px 0 0 0;
	font-size: 28px;
	color: #000;
}
@media (max-width: 992px) {
	.page-header-subtitle {
		margin-top: 8px;
	}
}
@media (max-width : 768px) {
	.page-header-subtitle {
		font-size: 21px;
	}
}

/* page header description */
.page-header-description {
	margin: 30px 0 0 0;
	line-height: inherit;
	font-size: 18px;
	color: #000;
}
.ph-desc-inner {
}
.page-header-description p {
}
@media (max-width: 767px) {
	.page-header-description {
		font-size: 16px;
	}
}

/* page header categories */
.ph-category-wrap {
}
.page-header-category {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 400;
}
.page-header-category a,
.page-header-category span {
	position: relative;
	display: inline-block;
	background-color: #1c69d4;
	margin-bottom: 3px;
	padding: 2px 6px;
	color: #fff;
}
.page-header-category a:hover {
	opacity: .9;
}


/* Page header caption sizes
============================= */
/* caption sizes xs */
.page-header-caption.ph-cap-xs .page-header-title {
	font-size: 32px;
}
.page-header-caption.ph-cap-xs .page-header-subtitle {
	font-size: 21px;
}

/* caption sizes sm */
.page-header-caption.ph-cap-sm .page-header-title {
	font-size: 44px;
}
.page-header-caption.ph-cap-sm .page-header-subtitle {
	font-size: 24px;
}

/* caption sizes lg */
.page-header-caption.ph-cap-lg {
	padding-bottom: 10px;
}
.page-header-caption.ph-cap-lg .page-header-title {
	font-size: 68px;
}
.page-header-caption.ph-cap-lg .page-header-subtitle {
	font-size: 28px;
}
.page-header-caption.ph-cap-lg .page-header-description {
	font-size: 20px;
}

/* caption sizes xlg */
.page-header-caption.ph-cap-xlg {
	padding-bottom: 15px;
}
.page-header-caption.ph-cap-xlg .page-header-title {
	font-size: 86px;
}
.page-header-caption.ph-cap-xlg .page-header-subtitle {
	font-size: 34px;
}
.page-header-caption.ph-cap-xlg .page-header-description {
	font-size: 20px;
}

/* caption sizes xxlg */
.page-header-caption.ph-cap-xxlg {
	padding-bottom: 20px;
}
.page-header-caption.ph-cap-xxlg .page-header-title {
	max-width: 100%;
	font-size: 6vw;
}
.page-header-caption.ph-cap-xxlg .page-header-subtitle {
	margin-top: 20px;
	font-size: 34px;
}
.page-header-caption.ph-cap-xxlg .page-header-description {
	font-size: 22px;
	font-weight: 400;
}

/* caption sizes on smaller screens */
@media (max-width: 991px) {
	.page-header-caption.ph-cap-sm .page-header-title,
	.page-header-caption.ph-cap-lg .page-header-title,
	.page-header-caption.ph-cap-xlg .page-header-title {
		font-size: 62px;
	}
	.page-header-caption.ph-cap-xlg .page-header-subtitle,
	.page-header-caption.ph-cap-xxlg .page-header-subtitle {
		font-size: 28px;
	}
	.page-header-caption.ph-cap-lg .page-header-description,
	.page-header-caption.ph-cap-xlg .page-header-description,
	.page-header-caption.ph-cap-xxlg .page-header-description {
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.page-header-caption.ph-cap-sm .page-header-title,
	.page-header-caption.ph-cap-lg .page-header-title,
	.page-header-caption.ph-cap-xlg .page-header-title,
	.page-header-caption.ph-cap-xxlg .page-header-title {
		font-size: 36px;
	}
	.page-header-caption.ph-cap-sm .page-header-subtitle,
	.page-header-caption.ph-cap-lg .page-header-subtitle,
	.page-header-caption.ph-cap-xlg .page-header-subtitle,
	.page-header-caption.ph-cap-xxlg .page-header-subtitle {
		font-size: 21px;
	}
}


/* Page header aligns
====================== */

/* page header align right */
.ph-right .page-header-caption {
	text-align: right;
}
.ph-right .page-header-caption .ph-title-wrap,
.ph-right .page-header-caption .ph-subtitle-wrap,
.ph-right .page-header-caption .page-header-description,
.ph-right .page-header-caption .page-header-title,
.ph-right .page-header-caption .page-header-subtitle {
	margin-left: auto;
	text-align: right;
}

/* page header align center */
.ph-center .page-header-caption {
	text-align: center;
}
.ph-center .page-header-caption .ph-title-wrap,
.ph-center .page-header-caption .ph-subtitle-wrap,
.ph-center .page-header-caption .page-header-description,
.ph-center .page-header-caption .page-header-title,
.ph-center .page-header-caption .page-header-subtitle {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}


/* Page header sizes
===================== */
#page-header.ph-xs .page-header-inner {
	padding-top: 80px;
	padding-bottom: 40px;
}
#page-header.ph-sm .page-header-inner {
	padding-top: 140px;
	padding-bottom: 80px;
}
#page-header.ph-lg .page-header-inner {
	padding-top: 120px;
	padding-bottom: 40px;
}
#page-header.ph-xlg .page-header-inner {
	padding-top: 240px;
	padding-bottom: 200px;
}

@media (max-width: 991px) {
	#page-header.ph-xs .page-header-inner,
	#page-header.ph-sm .page-header-inner,
	#page-header.ph-lg .page-header-inner,
	#page-header.ph-xlg .page-header-inner {
		padding-top: 30%;
		padding-bottom: 15%;
	}
}
@media (max-width: 480px) {
	#page-header.ph-xs .page-header-inner,
	#page-header.ph-sm .page-header-inner,
	#page-header.ph-lg .page-header-inner,
	#page-header.ph-xlg .page-header-inner {
		padding-top: 45%;
		padding-bottom: 25%;
	}
}

/* page header full height (desktop only) */
@media (min-width: 992px) {
	#page-header.ph-full {
		height: 100vh;
		min-height: 100vh;
	}

	/* caption position */
	#page-header.ph-full .page-header-inner {
		display: table;
		width: 100%;
		height: 85%;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	#page-header.ph-full .page-header-caption {
		display: table-cell;
		vertical-align: bottom;
		padding-left: 0;
		padding-right: 0;
	}

	#page-header.ph-full.ph-center .page-header-inner {
		height: 100%;
	}
	#page-header.ph-full.ph-center .page-header-caption {
		display: table-cell;
		vertical-align: middle;
	}
}

/* page header full height (small screens only) */
@media (max-width: 991px) {
	#page-header.ph-full-m {
		height: 100vh;
		min-height: 100vh;
	}

	/* caption position */
	#page-header.ph-full-m .page-header-inner {
		display: table;
		width: 100%;
		height: 85%;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	#page-header.ph-full-m .page-header-caption {
		display: table-cell;
		vertical-align: bottom;
		padding-left: 0;
		padding-right: 0;
	}

	#page-header.ph-full-m.ph-center .page-header-inner {
		height: 100%;
	}
	#page-header.ph-full-m.ph-center .page-header-caption {
		display: table-cell;
		vertical-align: middle;
	}
}


/* Page header styles
====================== */
/* page header caption light color */
.page-header-caption.ph-cap-light {
	color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-title {
	color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-subtitle {
	color: #FFF;
}
.page-header-caption.ph-cap-light .page-header-description {
	color: #FFF;
}


/* Page header image
===================== */
.page-header-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}



/* ------------------------------------ *
 *  Scroll down arrow
/* ------------------------------------ */

.scroll-down-arrow {
	position: absolute;
	display: block;
	bottom: 40px;
	left: 50%;
	margin-left: -25px;
	z-index: 9;
}
.scroll-down-arrow a {
	display: block;
	width: 50px;
	height: 50px;
}
.scroll-down-arrow a > span {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 1;
	-webkit-animation: mymove 1.4s infinite ease;
	animation: mymove 1.4s infinite ease;
}
@-webkit-keyframes mymove { /* Chrome, Safari, Opera */
	0% { top: 0; opacity: 0; }
	50% { opacity: 1; }
	100% { top: 7px; opacity: 0; }
}
@keyframes mymove { /* Standard */
	0% { top: 0; opacity: 0; }
	50% { opacity: 1; }
	100% { top: 7px; opacity: 0; }
}


/* If in page header (displayed only if "#page-header" contains class "ph-full" or "ph-full-m")
============================================ */
#page-header .scroll-down-arrow {
	display: none;
}
@media (min-width: 992px) {
	#page-header.ph-full .scroll-down-arrow,
	#page-header.ph-full-m .scroll-down-arrow {
		display: block;
	}
}

/* if page header caption contains class "ph-cap-light" */
body.ph-cap-light-on #page-header .scroll-down-arrow a {
	color: #FFF;
}


/* ------------------------------------ *
 *  Welcome section
/* ------------------------------------ */

.welcome-section {
	padding: 120px 0;
}
@media (max-width: 992px) {
	.welcome-section {
		padding: 13% 0;
	}
}

@media (min-width: 1200px) {
	.welcome-section .col-right .col-inner {
		padding-left: 40px;
	}
}





/* ------------------------------------ *
 *  Panels
/* ------------------------------------ */

.panel-group .panel {
	background-color: #FFF;
	border-radius: 2px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.panel-heading {
	position: relative;
	padding: 15px;
}
.panel-title {
	font-size: 22px;
}
@media (max-width: 768px) {
	.panel-title {
		font-size: 18px;
	}
}
.panel-body {
	padding: 15px;
}

/* panel-default */
.panel-default {
	border-color: #DDD;
}
.panel-default > .panel-heading {
	background-color: #FFF;
	color: #000;
}
.panel-default .panel-title a:hover, .panel-default .panel-title a:focus {
	color: #000;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #DDD;
}

/* panel-primary */
.panel-primary {
	border-color: #337AB7;
}
.panel-primary > .panel-heading {
	background-color: #337AB7;
	color: #FFF;
}
.panel-primary .panel-title a:hover, .panel-primary .panel-title a:focus {
	color: #000;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #337AB7;
}

/* panel-success */
.panel-success {
	border-color: #7BBD28;
}
.panel-success > .panel-heading {
	background-color: #7BBD28;
	color: #FFF;
}
.panel-success .panel-title a:hover, .panel-success .panel-title a:focus {
	color: #000;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #7BBD28;
}

/* panel-info */
.panel-info {
	border-color: #90D8E8;
}
.panel-info > .panel-heading {
	background-color: #90D8E8;
	color: #FFF;
}
.panel-info > .panel-heading span {
	color: rgba(255, 255, 255, 0.7);
}
.panel-info .panel-title a:hover, .panel-info .panel-title a:focus {
	color: #000;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #90D8E8;
}

/* panel-warning  */
.panel-warning {
	border-color: #F4DF4D;
}
.panel-warning > .panel-heading {
	background-color: #F4DF4D;
	color: #000;
}
.panel-warning .panel-title a:hover, .panel-warning .panel-title a:focus {
	color: #1c69d4;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #F4DF4D;
}

/* panel-danger */
.panel-danger {
	border-color: #1c69d4;
}
.panel-danger > .panel-heading {
	background-color: #1c69d4;
	color: #FFF;
}
.panel-danger .panel-title a:hover, .panel-danger .panel-title a:focus {
	color: #000;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #1c69d4;
}


/* ------------------------------------------------------------- *
 *  Accordion
/* ------------------------------------------------------------- */

.tt-accordion {
	position: relative;
	margin-top: 80px;
}


/* tt-accordion item
===================== */
.tt-accordion-item {
	margin-bottom: 7px;
}

/* tt-accordion item header */
.tt-accordion-item-header {
	background-color: #EEE;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tt-accordion-item-header:hover {
	background-color: #EAEAEA;
}

.tt-accordion-item-title {
	margin: 0;
	font-size: 28px;
	font-weight: 400;
}
@media (max-width: 992px) {
	.tt-accordion-item-title {
		font-size: 22px;
	}
}
.tt-accordion-item-title button {
	position: relative;
	width: 100%;
	padding: 30px 65px 30px 80px;
	background: transparent;
	cursor: pointer;
	text-align: left;
	text-transform: uppercase;
	font-weight: inherit;
	outline: none;
	border: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
@media (max-width: 992px) {
	.tt-accordion-item-title button {
		padding-left: 70px;
	}
}

.tt-accordion-item-arrow {
	position: absolute;
	content: "";
	right: 20px;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	font-size: 16px;
	color: inherit;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tt-accordion-item-title button.collapsed > .tt-accordion-item-arrow {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.tt-accordion-item-queue {
	position: absolute;
	top: 50%;
	left: 15px;
	font-size: 48px;
	color: rgba(0, 0, 0, 0.2);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (max-width: 992px) {
	.tt-accordion-item-queue {
		font-size: 40px;
	}
}

/* tt-accordion item body */
.tt-accordion-item-body {
	padding: 15px;
}


/* tt-accordion styles
======================= */

/* tt-accordion boxed style */
.tt-accordion.accordion-boxed .tt-accordion-item {
	border: 15px solid #F1F1F1;
	border-radius: 10px;
}
.tt-accordion.accordion-boxed .tt-accordion-item-header {
	background-color: transparent;
}
.tt-accordion.accordion-boxed .tt-accordion-item-body {
	padding: 30px;
	border-top: 1px solid #ddd;
}

/* tt-accordion minimal style */
.tt-accordion.accordion-minimal .tt-accordion-item-header {
	background-color: transparent;
	border-bottom: 2px solid #222;
}
.tt-accordion.accordion-minimal .tt-accordion-item-title button {
	padding-left: 60px;
	padding-right: 50px;
}
.tt-accordion.accordion-minimal .tt-accordion-item-queue {
	left: 0px;
}
.tt-accordion.accordion-minimal .tt-accordion-item-arrow {
	right: 0;
}

/* tt-accordion dark style */
.tt-accordion.accordion-dark .tt-accordion-item-header {
	background-color: #222;
	color: #FFF;
}
.tt-accordion.accordion-dark .tt-accordion-item-title button {
	color: #FFF;
}
.tt-accordion.accordion-dark .tt-accordion-item-queue {
	color: #FFF;
}

/* tt-accordion colored style */
.tt-accordion.accordion-colored .tt-accordion-item-header {
	background-color: #1c69d4;
	color: #FFF;
}
.tt-accordion.accordion-colored .tt-accordion-item-title button {
	color: #FFF;
}
.tt-accordion.accordion-colored .tt-accordion-item-queue {
	color: #FFF;
}


/* ------------------------------------ *
 *  FAQ section
/* ------------------------------------ */

.faq-section {
}
.faq-section #accordion {
	margin-top: 80px;
}


/* ------------------------------------------------------------- *
 * tt-Grid
/* ------------------------------------------------------------- */

.tt-grid {
	position: relative;
}
.tt-grid::after {
	content: "";
	display: table;
	clear: both;
}


/* tt-grid top content
======================= */
.tt-grid-top {
	position: relative;
	padding-bottom: 60px;
}
@media (max-width: 768px) {
	.tt-grid-top {
		padding-bottom: 40px;
	}
}


/* tt-grid item
================ */
.tt-grid-item {
	position: relative;
	float: left;
	width: 100%;
}
.ttg-item-inner {
	position: relative;
}


/* tt-grid layouts (if you use Isotope make the same changes in "isotope-grid-sizer" as well!)
=================== */
/* layout-2 */
@media (min-width: 768px) {
	.tt-grid.ttg-layout-2 .tt-grid-item {
		width: 50%;
	}
}

/* layout-3 */
@media (min-width: 768px) {
	.tt-grid.ttg-layout-3 .tt-grid-item {
		width: 50%;
	}
}
@media (min-width: 1200px) {
	.tt-grid.ttg-layout-3 .tt-grid-item {
		width: 33.33333%;
	}
}

/* layout-4 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tt-grid.ttg-layout-4 .tt-grid-item {
		width: 50%;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1399px) {
	.tt-grid.ttg-layout-4 .tt-grid-item {
		width: 33.33333%;
	}
}

@media (min-width: 1400px) {
	.tt-grid.ttg-layout-4 .tt-grid-item {
		width: 25%;
	}
}


/* tt-grid item gaps
===================== */
/* Gap 1 */
.tt-grid.ttg-gap-1,
.tt-grid.ttg-gap-1 .tt-grid-top {
	margin-left: 0.2vw;
	margin-right: 0.2vw;
}
body.tt-sidebar-on #blog-grid .tt-grid.ttg-gap-1,
.container .tt-grid.ttg-gap-1 {
	margin-left: -0.2vw;
	margin-right: -0.2vw;
}
.container .tt-grid.ttg-gap-1 .tt-grid-top {
	padding-left: -0.2vw;
	padding-right: -0.2vw;
}
.tt-grid.ttg-gap-1 .ttg-item-inner {
	margin: 0 0.2vw 0.4vw 0.2vw;
}

/* Gap 2 */
.tt-grid.ttg-gap-2,
.tt-grid.ttg-gap-2 .tt-grid-top {
	margin-left: 1vw;
	margin-right: 1vw;
}
body.tt-sidebar-on #blog-grid .tt-grid.ttg-gap-2,
.container .tt-grid.ttg-gap-2 {
	margin-left: -1vw;
	margin-right: -1vw;
}
.container .tt-grid.ttg-gap-2 .tt-grid-top {
	padding-left: -1vw;
	padding-right: -1vw;
}
.tt-grid.ttg-gap-2 .ttg-item-inner {
	margin: 0 1vw 2vw 1vw;
}

/* Gap 3 */
.tt-grid.ttg-gap-3,
.tt-grid.ttg-gap-3 .tt-grid-top {
	margin-left: 2vw;
	margin-right: 2vw;
}
body.tt-sidebar-on #blog-grid .tt-grid.ttg-gap-3,
.container .tt-grid.ttg-gap-3 {
	margin-left: -2vw;
	margin-right: -2vw;
}
.tt-grid.ttg-gap-3 .ttg-item-inner {
	margin: 0 2vw 4vw 2vw;
}

/* Gap 4 */
.tt-grid.ttg-gap-4,
.tt-grid.ttg-gap-4 .tt-grid-top {
	margin-left: 3vw;
	margin-right: 3vw;
}
body.tt-sidebar-on #blog-grid .tt-grid.ttg-gap-4,
.container .tt-grid.ttg-gap-4 {
	margin-left: -3vw;
	margin-right: -3vw;
}
.tt-grid.ttg-gap-4 .ttg-item-inner {
	margin: 0 3vw 6vw 3vw;
}




/* ------------------------------------------------------------- *
 * Sidebar
/* ------------------------------------------------------------- */

.tt-sidebar {
}
@media (max-width: 991px) {
	.tt-sidebar {
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		border-left: none !important;
		border-right: none !important;

		margin-top: 30px;
		padding-top: 40px;
		border-top: 1px dotted rgba(150, 150, 150, 0.18);
	}
}

/* Sidebar left */
.tt-sidebar.tt-sidebar-left {
	padding-right: 25px;
	margin-right: 25px;
}
@media (max-width: 1600px) {
	.tt-sidebar.tt-sidebar-left {
		padding-right: 15px;
		margin-right: 15px;
	}
}

/* Sidebar right */
.tt-sidebar.tt-sidebar-right {
	padding-left: 25px;
	margin-left: 25px;
}
@media (max-width: 1600px) {
	.tt-sidebar.tt-sidebar-right {
		padding-left: 15px;
		margin-left: 15px;
	}
}


/* ------------------------------------------------------------- *
 * Sidebar widgets
/* ------------------------------------------------------------- */

.tt-sidebar-widget {
	margin-top: 60px;
	overflow: hidden;
}

/* Sidebar headings */
.tt-sidebar-heading {
	margin-bottom: 30px;
}
.tt-sidebar-heading-title {
	margin: 0;
	font-size: 21px;
	font-weight: bold;
}
.tt-sidebar-heading hr,
.tt-sidebar-heading .hr-short {
	margin-top: 15px;
	margin-bottom: 0;
}




/* ------------------------------------ *
 *  Counter Up
/* ------------------------------------ */

.counter-up-section {
}
@media (max-width: 992px) {
	.counter-up-section {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}
.counter-up-inner {
	position: relative;
	margin: 50px 0;
	text-align: center;
	overflow: hidden;
}
.counter-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 130px;
	z-index: 1;
	color: rgba(0, 0, 0, 0.06);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.counter-up-inner:hover .counter-icon {
	font-size: 150px;
}
.counter {
	position: relative;
	font-size: 40px;
	font-weight: 600;
	line-height: normal;
	z-index: 2;
}

.counter-up-section hr,
.counter-up-section .hr-short {
	margin-top: 10px;
	margin-bottom: 10px;
}


/* ------------------------------------ *
 *  Contact Section
/* ------------------------------------ */

.contact-section {
}


/* Contact info
=============== */
.contact-info {
}
.contact-info p {
	margin-bottom: 10px;
}
.contact-info .ci-icon {
	margin-right: 8px;
}



/* ------------------------------------ *
 *  Map section
/* ------------------------------------ */

.map-section {
}


/* Google Map
===============
*  Tutorial: https://developers.google.com/maps/documentation/javascript/tutorial
*  Map styles: https://snazzymaps.com/
*/

#tt-map {
	width: 100%;
	min-height: 400px;
	background-color: rgba(238, 238, 240, 1);
	padding-bottom: 30%; /* map-height */
}

/* if boxed layout is enabled */
body.tt-boxed .tt-wrap #tt-map {
	padding-bottom: 40%;
}



/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */

.btn {
	position: relative;
	display: inline-block;
	padding: 15px 25px;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	z-index: 1;
	border: 0 solid transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.btn + .btn {
	margin-left: 5px;
}
.btn.focus,
.btn:focus {
	outline: 0;
	text-decoration: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* button border radius */
.btn,
.btn-group-lg > .btn,
.btn-group-sm > .btn {
	border-radius: 0;
}

/* button margin bottom */
.btn,
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
	margin-bottom: 6px;
}


/* Button global hover pseudo element
====================================== */
.btn::before {
	position: absolute;
	display: block;
	content: "";
	top: -1px;
	bottom: -1px;
	left: -1px;
	right: -1px;
	background-color: rgba(0, 0, 0, 0.12);
	z-index: -1;
	-webkit-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-moz-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-o-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-ms-transition: all .3s cubic-bezier(.645,.045,.355,1);
	transition: all .3s cubic-bezier(.645,.045,.355,1);

	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.btn:hover::before {
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* button active */
.btn:not(:disabled):not(.disabled).active::before,
.btn:not(:disabled):not(.disabled):active::before,
.show > .btn.dropdown-toggle::before {
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* button disabled */
.btn.disabled::before,
.btn:disabled::before {
	display: none;
}

/* button toggle */
.btn[data-toggle="button"]::after {
	position: absolute;
	display: inline-block;
	content: "";
	top: 3px;
	right: 6px;
	width: 5px;
	height: 8px;
	border: solid #FFF;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-moz-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-o-transition: all .3s cubic-bezier(.645,.045,.355,1);
	-ms-transition: all .3s cubic-bezier(.645,.045,.355,1);
	transition: all .3s cubic-bezier(.645,.045,.355,1);
}
.btn[data-toggle="button"].active::after {
	opacity: 1;
	visibility: visible;
}
.btn.btn-light[data-toggle="button"]::after,
.btn.btn-outline-light[data-toggle="button"]::after {
	border-color: #333;
}
.btn[class*="btn-outline-"][data-toggle="button"]::after {
	top: 0;
	right: 3px;
}

/* button checkbox and radio */
.btn-group-toggle[data-toggle="buttons"] .btn::before {
	background-color: #1c69d4;
}
.btn-group-toggle[data-toggle="buttons"] .btn:hover {
	color: #FFF;
}



/* Standard buttons
==================== */
/* Button primary */
.btn-primary,

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	color: #fff;
	background-color: #1c69d4;
	border-color: #1c69d4;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-primary::before {
}
.btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: #1c69d4;
	border-color: #1c69d4;
}

/* Button secondary */
.btn-secondary,

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle,

.btn-secondary:hover,
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-secondary::before {
}

/* Button success */
.btn-success,

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle,

.btn-success:hover,
.btn-success.focus,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-success::before {
}

/* Button danger */
.btn-danger,

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle,

.btn-danger:hover,
.btn-danger.focus,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-danger::before {
}

/* Button warning */
.btn-warning,

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle,

.btn-warning:hover,
.btn-warning.focus,
.btn-warning:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
	color: #333;
	background-color: #ffc107;
	border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-warning::before {
	background-color: rgba(0, 0, 0, 0.07);
}

/* Button info */
.btn-info,

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle,

.btn-info:hover,
.btn-info.focus,
.btn-info:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
	color: #fff;
	background-color: #17a2b8;
	border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-info::before {
}

/* Button light */
.btn-light,

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle,

.btn-light.focus,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
	color: #333;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-light:hover {
	color: #FFF;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-light::before {
	background-color: #1c69d4;
}

/* Button gray */
.btn-gray,

.btn-gray:not(:disabled):not(.disabled).active,
.btn-gray:not(:disabled):not(.disabled):active,
.show > .btn-gray.dropdown-toggle,

.btn-gray:hover,
.btn-gray.focus,
.btn-gray:focus,
.btn-gray:not(:disabled):not(.disabled).active:focus,
.btn-gray:not(:disabled):not(.disabled):active:focus,
.show > .btn-gray.dropdown-toggle:focus {
	color: #333;
	background-color: rgba(160, 160, 160, 0.2);
	border-color: rgba(160, 160, 160, 0.2);
}
.btn-gray:not(:disabled):not(.disabled).active:focus,
.btn-gray:not(:disabled):not(.disabled):active:focus,
.show > .btn-gray.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-gray::before {
	background-color: rgba(0, 0, 0, 0.07);
}

/* Button dark */
.btn-dark,

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle,

.btn-dark:hover,
.btn-dark.focus,
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
	color: #fff;
	background-color: #000;
	border-color: #000;
}
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-dark::before {
	background-color: #1c69d4;
}

/* Button link */
.btn-link,

.btn-link:not(:disabled):not(.disabled).active,
.btn-link:not(:disabled):not(.disabled):active,
.show > .btn-link.dropdown-toggle,

.btn-link:hover,
.btn-link.focus,
.btn-link:focus,
.btn-link:not(:disabled):not(.disabled).active:focus,
.btn-link:not(:disabled):not(.disabled):active:focus,
.show > .btn-link.dropdown-toggle:focus {
	color: #1c69d4;
	background-color: transparent;
	border-color: transparent;
}
.btn-link:not(:disabled):not(.disabled).active:focus,
.btn-link:not(:disabled):not(.disabled):active:focus,
.show > .btn-link.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-link:before {
	display: none;
}

.text-light .btn-link,
.text-white .btn-link {
	color: #FFF !important;
}
.text-light .btn-link:hover,
.text-light .btn-link.focus,
.text-light .btn-link:focus,
.text-light .btn-link:not(:disabled):not(.disabled).active:focus,
.text-light .btn-link:not(:disabled):not(.disabled):active:focus,
.text-light .show > .btn-link.dropdown-toggle:focus,
.text-white .btn-link:hover,
.text-white .btn-link.focus,
.text-white .btn-link:focus,
.text-white .btn-link:not(:disabled):not(.disabled).active:focus,
.text-white .btn-link:not(:disabled):not(.disabled):active:focus,
.text-white .show > .btn-link.dropdown-toggle:focus {
	color: #1c69d4 !important;
	background-color: transparent;
	border-color: transparent;
}


/* Button outline
================== */
.btn[class*="btn-outline-"] {
	background-color: transparent;
	background-image: none;
	padding: 12px 22px;
	border-width: 3px;

	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.btn[class*="btn-outline-"]:not(:disabled):not(.disabled).active:focus,
.btn[class*="btn-outline-"]:not(:disabled):not(.disabled):active:focus,
.show > .btn[class*="btn-outline-"].dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* Button outline primary */
.btn-outline-primary,
.btn-outline-primary:focus,
.btn-outline-primary:disabled,
.btn-outline-primary.disabled,
.btn-outline-primary:disabled:hover,
.btn-outline-primary.disabled:hover {
	color: #1c69d4;
	border-color: #1c69d4;
}
.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
	color: #fff;
	border-color: #1c69d4;
}
.btn-outline-primary::before {
	background-color: #1c69d4;
}

/* Button outline secondary */
.btn-outline-secondary,
.btn-outline-secondary:focus,
.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled:hover,
.btn-outline-secondary.disabled:hover {
	color: #6c757d;
	border-color: #6c757d;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
	color: #fff;
	border-color: #6c757d;
}
.btn-outline-secondary::before {
	background-color: #6c757d;
}

/* Button outline success */
.btn-outline-success,
.btn-outline-success:focus,
.btn-outline-success:disabled,
.btn-outline-success.disabled,
.btn-outline-success:disabled:hover,
.btn-outline-success.disabled:hover {
	color: #28a745;
	border-color: #28a745;
}
.btn-outline-success:hover,
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
	color: #fff;
	border-color: #28a745;
}
.btn-outline-success::before {
	background-color: #28a745;
}

/* Button outline danger */
.btn-outline-danger,
.btn-outline-danger:focus,
.btn-outline-danger:disabled,
.btn-outline-danger.disabled,
.btn-outline-danger:disabled:hover,
.btn-outline-danger.disabled:hover {
	color: #dc3545;
	border-color: #dc3545;
}
.btn-outline-danger:hover,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
	color: #fff;
	border-color: #dc3545;
}
.btn-outline-danger::before {
	background-color: #dc3545;
}

/* Button outline warning */
.btn-outline-warning,
.btn-outline-warning:focus,
.btn-outline-warning:disabled,
.btn-outline-warning.disabled,
.btn-outline-warning:disabled:hover,
.btn-outline-warning.disabled:hover {
	color: #ffc107;
	border-color: #ffc107;
}
.btn-outline-warning:hover,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
	color: #333;
	border-color: #ffc107;
}
.btn-outline-warning::before {
	background-color: #ffc107;
}

/* Button outline info */
.btn-outline-info,
.btn-outline-info:focus,
.btn-outline-info:disabled,
.btn-outline-info.disabled,
.btn-outline-info:disabled:hover,
.btn-outline-info.disabled:hover {
	color: #17a2b8;
	border-color: #17a2b8;
}
.btn-outline-info:hover,
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
	color: #fff;
	border-color: #17a2b8;
}
.btn-outline-info::before {
	background-color: #17a2b8;
}

/* Button outline light */
.btn-outline-light,
.btn-outline-light:focus,
.btn-outline-light:disabled,
.btn-outline-light.disabled,
.btn-outline-light:disabled:hover,
.btn-outline-light.disabled:hover {
	color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-outline-light:hover,
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
	color: #333;
	border-color: #f8f9fa;
}
.btn-outline-light::before {
	background-color: #f8f9fa;
}

/* Button outline gray */
.btn-outline-gray,
.btn-outline-gray:focus,
.btn-outline-gray:disabled,
.btn-outline-gray.disabled,
.btn-outline-gray:disabled:hover,
.btn-outline-gray.disabled:hover {
	color: rgba(160, 160, 160, 0.8);
	border-color: rgba(160, 160, 160, 0.5);
}
.btn-outline-gray:hover,
.btn-outline-gray:not(:disabled):not(.disabled).active,
.btn-outline-gray:not(:disabled):not(.disabled):active,
.show > .btn-outline-gray.dropdown-toggle {
	color: #333;
}
.btn-outline-gray::before {
	background-color: rgba(160, 160, 160, 0.5);
}

/* Button outline dark */
.btn-outline-dark,
.btn-outline-dark:focus,
.btn-outline-dark:disabled,
.btn-outline-dark.disabled,
.btn-outline-dark:disabled:hover,
.btn-outline-dark.disabled:hover {
	color: #111;
	border-color: #111;
}
.btn-outline-dark:hover,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
	color: #fff;
	border-color: #111;
}
.btn-outline-dark::before {
	background-color: #111;
}

/* Button outline link */
.btn-outline-link,

.btn-outline-link:not(:disabled):not(.disabled).active,
.btn-outline-link:not(:disabled):not(.disabled):active,
.show > .btn-outline-link.dropdown-toggle,

.btn-outline-link:hover,
.btn-outline-link.focus,
.btn-outline-link:focus,
.btn-outline-link:not(:disabled):not(.disabled).active:focus,
.btn-outline-link:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-link.dropdown-toggle:focus {
	color: #1c69d4;
	background-color: transparent;
	border-color: transparent;
}
.btn-outline-link:not(:disabled):not(.disabled).active:focus,
.btn-outline-link:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-link.dropdown-toggle:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.btn-outline-link:before {
	display: none;
}


/* Button block
================ */
.btn-block + .btn-block {
    margin-top: 0;
}


/* Extra shadow
================ */
.btn-shadow:not(.btn-outline-link):not(.btn-link) {
	-webkit-box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.45);
	-moz-box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.45);
	box-shadow: 0px 6px 25px -5px rgba(0, 0, 0, 0.45);
}


/* Button group
================ */
.btn-group .btn {
}


/* Button dropdown
=================== */
.dropdown-toggle::after {
	vertical-align: 0.155em;
}

/* button dropdown toggle split */
.btn.dropdown-toggle-split {
	padding-right: 10px !important;
	padding-left: 10px !important;
}
.btn[class*="btn-outline-"].dropdown-toggle-split {
	margin-left: -3px;
}

/* button dropdown menu */
.dropdown-menu {
	border-radius: 0;
}
.dropdown-item.active,
.dropdown-item:active {
	color: #FFF;
	text-decoration: none;
	background-color: #1c69d4;
}
.dropdown-item:focus,
.dropdown-item:hover {
	color: #000;
	text-decoration: none;
	background-color: #F1F1F1;
}


/* Button social
================= */
.btn-social {
	position: relative;
	padding-left: 55px;
	text-align: left;
	color: #FFF;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.btn-social:hover,
.btn-social:focus,
.btn-social:active,
.btn-social.active {
	color: #FFF;
}

/* Button social icon */
.btn-social > .btn-social-icon {
	position: absolute;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 0;
	top: 0;
	bottom: 0;
	width: 42px;
	font-size: 20px;
	border-right: 1px solid rgba(0,0,0,0.12);
}
.btn-social > .btn-social-icon > i {
}

/* Button social sizes */
.btn-social.btn-xs { padding-left: 55px; }
.btn-social.btn-sm { padding-left: 55px; }
.btn-social.btn-lg { padding-left: 60px; }
.btn-social.btn-xlg { padding-left: 65px; }


/* Button social min
===================== */
.btn-social-min {
	position: relative;
	width: 46px;
	height: 46px;
	padding: 0 !important;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 16px;
}

.btn-social-min.btn-link {
	width: 30px;
	height: 30px;
	color: #333;
}
.btn-social-min.btn-link:hover,
.btn-social-min.btn-link:focus {
	color: #1c69d4;
}

/* Button social min sizes */
.btn-social-min.btn-xs {
	width: 28px;
	height: 28px;
	line-height: 22px;
	font-size: 12px;
}
.btn-social-min.btn-link.btn-xs {
	width: 20px;
	height: 20px;
}


.btn-social-min.btn-sm {
	width: 34px;
	height: 34px;
	line-height: 28px;
	font-size: 13px;
}
.btn-social-min.btn-link.btn-sm {
	width: 24px;
	height: 24px;
}

@media (min-width: 991px) {
	.btn-social-min.btn-lg {
		width: 54px;
		height: 54px;
		font-size: 19px;
	}
	.btn-social-min.btn-link.btn-lg {
		width: 34px;
		height: 34px;
	}

	.btn-social-min.btn-xlg {
		width: 68px;
		height: 68px;
		line-height: 62px;
		font-size: 24px;
	}
	.btn-social-min.btn-link.btn-xlg {
		width: 34px;
		height: 34px;
	}
}


/* Button social types
======================= */

/* Button facebook */
.btn-facebook {
	background-color: #3b5998;
	color: #FFF;
}
.btn-facebook:hover,
.btn-facebook:focus{
	color: #FFF;
}

/* Button twitter */
.btn-twitter {
	background-color: #55acee;
	color: #FFF;
}
.btn-twitter:hover,
.btn-twitter:focus{
	color: #FFF;
}

/* Button dropbox */
.btn-dropbox {
	background-color: #1087dd;
	color: #FFF;
}
.btn-dropbox:hover,
.btn-dropbox:focus{
	color: #FFF;
}

/* Button linkedin */
.btn-linkedin {
	background-color: #007bb6;
	color: #FFF;
}
.btn-linkedin:hover,
.btn-linkedin:focus{
	color: #FFF;
}

/* Button pinterest */
.btn-pinterest {
	background-color: #cb2027;
	color: #FFF;
}
.btn-pinterest:hover,
.btn-pinterest:focus{
	color: #FFF;
}

/* Button google */
.btn-google {
	background-color: #dd4b39;
	color: #FFF;
}
.btn-google:hover,
.btn-google:focus{
	color: #FFF;
}

/* Button instagram */
.btn-instagram {
	background-color: #3f729b;
	color: #FFF;
}
.btn-instagram:hover,
.btn-instagram:focus{
	color: #FFF;
}

/* Button tumblr */
.btn-tumblr {
	background-color: #2c4762;
	color: #FFF;
}
.btn-tumblr:hover,
.btn-tumblr:focus{
	color: #FFF;
}

/* Button vk */
.btn-vk {
	background-color: #587ea3;
	color: #FFF;
}
.btn-vk:hover,
.btn-vk:focus{
	color: #FFF;
}

/* Button flickr */
.btn-flickr {
	background-color: #ff0084;
	color: #FFF;
}
.btn-flickr:hover,
.btn-flickr:focus{
	color: #FFF;
}

/* Button soundcloud */
.btn-soundcloud {
	background-color: #f50;
	color: #FFF;
}
.btn-soundcloud:hover,
.btn-soundcloud:focus{
	color: #FFF;
}

/* Button yahoo */
.btn-yahoo {
	background-color: #720e9e;
	color: #FFF;
}
.btn-yahoo:hover,
.btn-yahoo:focus{
	color: #FFF;
}

/* Button dribbble */
.btn-dribbble {
	background-color: #222;
	color: #FFF;
}
.btn-dribbble:hover,
.btn-dribbble:focus{
	color: #FFF;
}

/* Button youtube */
.btn-youtube {
	background-color: #cc181e;
	color: #FFF;
}
.btn-youtube:hover,
.btn-youtube:focus{
	color: #FFF;
}

/* Button behance */
.btn-behance {
	background-color: #0057ff;
	color: #FFF;
}
.btn-behance:hover,
.btn-behance:focus{
	color: #FFF;
}


/* Button close
================= */
.tt-close-btn {
	position: relative;
	display: inline-block;
	top: 6px;
	width: 21px;
	height: 21px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.tt-close-btn:hover {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}
.tt-close-btn::before,
.tt-close-btn::after {
	content: '';
	position: absolute;
	background-color: #000;
}
.tt-close-btn::before {
	left: 0;
	top: 9px;
	width: 100%;
	height: 3px;
}
.tt-close-btn::after {
	left: 9px;
	top: 0;
	width: 3px;
	height: 100%;
}

/* Button close light color*/
.tt-close-btn.tt-close-light::before,
.tt-close-btn.tt-close-light::after {
	background-color: #FFF;
}


/* Button rounded
================== */
.btn-rounded {
	border-radius: 4px;
}
.btn-rounded-2x {
	border-radius: 8px;
}
.btn-rounded-3x {
	border-radius: 12px;
}
.btn-rounded-4x {
	border-radius: 17px;
}
.btn-rounded-5x {
	border-radius: 50px;
}
.btn-rounded-full {
	border-radius: 50%;
}


/* Button sizes
================ */
.btn-group-xs > .btn, .btn-xs { /* Extra size */
	padding: 5px 10px;
	font-size: 13px;
}
.btn-group-xs > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-xs {
	padding: 3px 8px;
	border-width: 2px;
}

.btn-group-sm > .btn, .btn-sm {
	padding: 10px 15px;
	font-size: 14px;
}
.btn-group-sm > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-sm {
	padding: 7px 12px;
	border-width: 2px;
}

.btn-group-lg > .btn, .btn-lg {
	padding: 20px 35px;
	font-size: 20px;
}
.btn-group-lg > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-lg {
	padding: 17px 27px;
}

.btn-group-xlg > .btn, .btn-xlg { /* Extra size */
	padding: 25px 40px;
	font-size: 19px;
}
.btn-group-xlg > .btn[class*="btn-outline-"],
.btn[class*="btn-outline-"].btn-xlg {
	padding: 22px 32px;
}


/* Play button
=============== */
.btn-play-wrap {
	display: inline-block;
}
.btn.btn-play {
	position: relative;
	width: 46px;
	height: 46px;
	padding: 0 0 0 4px !important;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 14px;
	text-decoration: none;
}

.btn-play.btn-link {
	width: 30px;
	height: 30px;
}

/* button play sizes */
.btn-play.btn-xs {
	width: 28px;
	height: 28px;
	padding: 0 !important;
	line-height: 22px;
	font-size: 8px;
}
.btn-play.btn-link.btn-xs {
	width: 20px;
	height: 20px;
}

.btn-play.btn-sm {
	width: 34px;
	height: 34px;
	padding: 0 !important;
	line-height: 28px;
	font-size: 10px;
}
.btn-play.btn-link.btn-sm {
	width: 24px;
	height: 24px;
}

.btn-play.btn-lg {
	width: 62px;
	height: 62px;
	line-height: 48px;
	font-size: 20px;
}
.btn-play.btn-link.btn-lg {
	width: 34px;
	height: 34px;
}

.btn-play.btn-xlg {
	width: 86px;
	height: 86px;
	line-height: 62px;
	font-size: 24px;
}
.btn-play.btn-link.btn-xlg {
	width: 42px;
	height: 42px;
}

/* play button animation */
.btn-play-wrap.btn-play-animate .btn.btn-play {
	-webkit-animation: vbbulse 2s infinite;
	animation: vbbulse 2s infinite;
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}
@-webkit-keyframes vbbulse {
	0% { -webkit-box-shadow: 0 0 0 0 rgba(181, 181, 181, 0.86); }
	70% { -webkit-box-shadow: 0 0 0 25px rgba(0, 64, 216, 0); }
	100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 64, 216, 0); }
}
@keyframes vbbulse {
	0% { -moz-box-shadow: 0 0 0 0 rgba(181, 181, 181, 0.86); box-shadow: 0 0 0 0 rgba(181, 181, 181, 0.86); }
	70% { -moz-box-shadow: 0 0 0 25px rgba(0, 64, 216, 0); box-shadow: 0 0 0 25px rgba(0, 64, 216, 0); }
	100% { -moz-box-shadow: 0 0 0 0 rgba(0, 64, 216, 0); box-shadow: 0 0 0 0 rgba(0, 64, 216, 0); }
}


/* ------------------------------------------------------------- *
 * Social buttons
/* ------------------------------------------------------------- */

.social-buttons {
}
.social-buttons ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.social-buttons ul > li {
	display: inline-block;
	margin: 0 2px;
}
.social-buttons ul > li:first-child {
	margin-left: 0;
}
.social-buttons ul > li:last-child {
	margin-right: 0;
}

.social-buttons .btn.btn-link {
	width: auto;
	height: auto;
	line-height: 1.4;
	margin-right: 15px;
	border: none !important;
	border-radius: 0;
	text-decoration: none;
	overflow: visible;
}
.social-buttons li:last-child .btn.btn-link {
	margin-right: 0;
}


/* ------------------------------------------------------------- *
 * Forms
/* ------------------------------------------------------------- */

.form-control {
	display: block;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.09);
	padding: 5px 15px;
	font-size: 18px;
	color: #888;
	border: 2px solid rgba(148, 148, 148, 0.2);
	border-radius: 4px;
}
.form-control:focus {
	color: #333;
	background-color: #FFF;
	border-color: #1c69d4;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.form-control + .form-control {
	margin-top: 8px;
}

.form-control:disabled, .form-control[readonly] {
	background-color: rgba(177, 177, 177, 0.26);
	opacity: 1;
}

.form-text {
	margin-top: 5px;
}

label {
	display: inline-block;
	margin-bottom: 8px;
}

select {
	cursor: pointer;
}

.form-group {
	margin-bottom: 18px;
}
.input-group-text {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 5px 12px;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #666;
	text-align: center;
	white-space: nowrap;
	background-color: rgba(181, 181, 181, 0.25);
	border: 1px solid rgba(148, 148, 148, 0.4);
	border-radius: 0;
}

/* Placeholder */
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #888;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #888;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #888;
}


/* Custom forms
================= */
/* custom select */
.custom-select {
	display: inline-block;
	width: 100%;
	height: 46px;
	background-color: rgba(132, 132, 132, 0.12);
	padding: 5px 20px 5px 15px;
	font-size: 18px;
	color: #666;
	border: 2px solid transparent;
	border-radius: 0;
}
.custom-select:focus {
	color: #333;
	background-color: rgba(132, 132, 132, 0.1);
	border-color: #1c69d4;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* custom file browser */
.custom-file {
}
.btn-file {
	vertical-align: middle;
	cursor: pointer;
}
.btn-file > * input {
	position: absolute;
	left: 50%;
	width: 1%;
	opacity: 0;
}
.custom-file-info {
	width: 75%;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 14px;
	color: #777;
	line-height: 1;
}

/* custom checkbox/radio */
.custom-control-label {
	cursor: pointer;
}
.custom-control-label::before {
	background-color: #e1e1e1;
	border-color: #d2d2d2;
}

.custom-control-input:active ~ .custom-control-label::before {
	color: #333;
	background-color: #d6d6d6;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
	background-color: #1c69d4;
}
.custom-control-input:checked ~ .custom-control-label::before {
	color: #fff;
	background-color: #1c69d4;
	border-color: #1c69d4;
}

.custom-control-input:focus ~ .custom-control-label::before {
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.custom-control-input:disabled ~ .custom-control-label {
	cursor: not-allowed;
}
.custom-control-input:disabled ~ .custom-control-label::before {
	background-color: #e1e1e1;
}

/* range slider */
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 7px;
  color: transparent;
  cursor: pointer;
  background-color: rgba(181, 181, 181, 0.35);
  border-color: transparent;
  border-radius: 20px;
}

.custom-range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -4px;
  background-color: #1c69d4;
  border: none;
  border-radius: 20px;
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #1c69d4;
  opacity: .3;
}
.custom-range:focus::-webkit-slider-thumb,
.custom-range:focus::-moz-range-thumb,
.custom-range:focus::-ms-thumb {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* form with button inside */
.form-btn-inside {
	position: relative;
}
.form-btn-inside .form-control {
	padding-right: 45px;
}
.form-btn-inside button {
	position: absolute;
	top: 50%;
	right: 0;
	width: auto;
	height: 100%;
	line-height: 40px;
	background-color: transparent;
	padding: 0 15px 0 15px;
	font-size: 18px;
	color: #333;
	border: none;
	cursor: pointer;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.form-btn-inside button:hover {
	opacity: .8;
}
.form-btn-inside button:focus {
	outline: none;
}


/* Forms validation
==================== */
/* valid */
.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
	border-color: #28a745;
}
.valid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: 80%;
	color: #28a745;
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
	color: #28a745;
}
.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
	color: #28a745;
}
.custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input:valid ~ .custom-control-label::before {
	background-color: #28a745;
}
.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
	background-color: #28a745;
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
	border-color: #28a745;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* valid tooltip */
.valid-tooltip {
	color: #FFF;
	background-color: rgba(40,167,69,.8);
	border-radius: 0;
}

/* invalid */
.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
	border-color: #dc3545;
}
.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: 80%;
	color: #dc3545;
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
	color: #dc3545;
}
.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
	color: #dc3545;
}
.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
	border-color: #dc3545;
}
.custom-control-input.is-invalid ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid ~ .custom-control-label::before {
	background-color: #efa2a9;
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
	border-color: #dc3545;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.custom-file-input.is-invalid:focus~.custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
   -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

/* invalid tooltip */
.invalid-tooltip {
	color: #FFF;
	background-color: rgba(220,53,69,.8);
	border-radius: 0;
}


/* Form sizes
============== */
/* default height */
.form-control,
select.form-control:not([size]):not([multiple]) {
	height: 52px;
}
select.form-control,
textarea.form-control {
	height: auto;
}

/* form control lg */
.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text,
.custom-select-lg {
	height: 64px;
	padding: 5px 18px;
	font-size: 18px;
}
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > select.form-control:not([size]):not([multiple]),
select.form-control-lg:not([size]):not([multiple]) {
	height: 64px;
}

/* form control sm */
.form-control-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text,
.custom-select-sm {
	height: 40px;
	padding: 3px 10px;
	font-size: 16px;
}
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > select.form-control:not([size]):not([multiple]),
select.form-control-sm:not([size]):not([multiple]) {
	height: 40px;
}


/* ------------------------------------ *
 *  Footer
/* ------------------------------------ */

#footer {
	padding: 30px 0 50px 0;
}
#footer .copyright {
	color: #585858;
}


/* ------------------------------------ *
 *  Scroll to top button
/* ------------------------------------ */

.scrolltotop {
	position: fixed;
	display: none;
	bottom: 15px;
	right: 15px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #FFF;
	text-align: center;
	font-size: 24px;
	color: #1c69d4;
	text-decoration: none;
	z-index: 9999;
}
.scrolltotop:hover, .scrolltotop:focus {
	color: #1c69d4;
}
@media (max-width: 768px) {
	.scrolltotop {
		bottom: 15px;
		right: 15px;
	}
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #333;
    background: transparent;
    border-bottom: 5px solid #1c69d4;
}
.nav-pills .nav-link {
    border-radius: 0;
    padding: 0 10px;
    font-size: 21px;
    font-weight: 500;
    color: #333;
}
.bgi-title a {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}
.blog-grid-item .bgi-title a:hover {
    color: #222;
}

.counter-up-section {
}
@media (max-width: 992px) {
    .counter-up-section {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}
.counter-up-inner {
    position: relative;
    margin: 50px 0;
    text-align: center;
    overflow: hidden;
}
.counter-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 130px;
    z-index: 1;
    color: rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.counter-up-inner:hover .counter-icon {
    font-size: 150px;
}
.counter {
    position: relative;
    font-size: 72px;
    font-weight: 600;
    line-height: normal;
    z-index: 2;
}

.counter-up-section hr,
.counter-up-section .hr-short {
    margin-top: 20px;
    margin-bottom: 30px;
}
#blog-post-section {
}
@media (max-width: 992px) {
    #blog-post-section {
        padding-top: 10%;
    }
}

/* Blog post
============= */
.blog-post {
}
.blog-post-inner {
    position: relative;
}

/* Blog post featured image */
.blog-post-featured-image {
    display: block;
    margin-bottom: 40px;
}

.blog-post-featured-image.bg-image { /* for background image height */
    padding-bottom: 50%;
}
@media (max-width: 992px) {
    .blog-post-featured-image.bg-image { /* for background image height */
        padding-bottom: 60%;
    }
}
@media (max-width: 768px) {
    .blog-post-featured-image.bg-image { /* for background image height */
        padding-bottom: 75%;
    }
}

/* Blog post heading */
.blog-post-heading {
    position: relative;
    background-color: #FFF;
    padding: 0 0 3% 0;
    z-index: 1;
}
.blog-post-featured-image + .blog-post-heading {
    padding: 3% 0 5% 0;
}
.blog-post-title {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}
@media (max-width: 992px) {
    .blog-post-title {
        font-size: 28px;
    }
}

/* Blog post categories */
.blog-post-categories-wrap {
    margin-bottom: 20px;
    font-size: 14px;
    color: #FFF;
}
.bsp-category {
    display: inline-block;
    background-color: #1c69d4;
    margin-bottom: 3px;
    margin-right: 1px;
    padding: 0 4px;
    font-size: 14px;
    color: #FFF;
}
.bsp-category:hover,
.bsp-category:focus {
    opacity: .8;
    color: #FFF;
    text-decoration: none;
}

/* Blog post content */
.blog-post-content {
    margin-bottom: 40px;
}

/* Blog post image */
.blog-post-content .blog-post-image {
    margin: 40px 0;
}
.bp-image-wrap {
    position: relative;
    display: block;
    background-color: rgba(91, 107, 140, 0.1);
}
.bp-image {
}
img.bp-image {
    padding-bottom: 0;
}

.bp-image-caption {
    margin-top: 5px;
    font-size: 13px;
    font-style: italic;
    color: #888;
}
.bp-image-caption a {
    color: inherit;
    border-bottom: 1px dotted;
}
.bp-image-caption a:hover {
    color: #1c69d4;
}


/* Blog post slider (OWL Carousel)
=========================== */
.blog-post-slider {
}

.blog-post-content .owl-carousel {
    margin: 30px 0 30px 0;
}
.blog-post-content .owl-carousel.dots-outside {
    margin-bottom: 60px;
}
.blog-post-content .owl-carousel .cc-item {
    margin: 0;
    padding: 0;
}

.blog-post-content .owl-carousel .blog-post-image {
    margin: 0;
}


/* Blog post attributes
========================== */
.blog-post-attributes {
    margin-bottom: 40px;
}

.blog-post-meta-wrap {
    overflow: hidden;
}

/* Blog post meta */
.blog-post .author-avatar {
    position: relative;
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border-radius: 50%;
}
.blog-post .author-avatar::before {
    position: absolute;
    content: "";
    top: 50%;
    right: -21px;
    width: 21px;
    height: 1px;
    border-bottom: 1px solid rgba(136, 136, 136, 0.16);
}

.bsp-meta {
    padding: 0 0 0 15px;
    font-size: 14px;
    color: #999;
    overflow: hidden;
    float: left;
    border-left: 1px solid rgba(136, 136, 136, 0.16);
}
.bsp-meta .article-author {
    font-size: 16px;
    color: #333;
}
.bsp-meta .article-author a {
    color: #333;
}
.bsp-meta .article-author a:hover {
    text-decoration: underline;
    color: #1c69d4;
}
.bsp-meta .article-time-cat {
    font-size: 14px;
    color: #888;
}
.bsp-meta .article-time-cat a {
    color: #888;
}
.bsp-meta .article-time-cat a:hover {
    color: #1c69d4;
}
.bsp-meta .article-time {
}

/* Blog post links */
.blog-post-links {
    margin: 8px 0 0 0;
    padding: 0;
    text-align: right;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    list-style: none;
}
@media (max-width: 420px) {
    .blog-post-links {
        margin-top: 20px;
        text-align: left;
    }
}
.blog-post-links > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    margin-left: 3px;
}
.blog-post-links a:not(.btn) {
    display: inline-block;
    color: #333;
}
.blog-post-links a:not(.btn):hover,
.blog-post-links a:not(.btn):focus {
    text-decoration: none;
    color: #1c69d4;
}

/* Blog post comment count */
.bsp-comment-count {
}

/* Blog post tags */
.blog-post-tags {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
}
.blog-post-tags span {
    color: #333;
}
.blog-post-tags > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-post-tags > ul > li {
    float: left;
    margin: 3px;
}
.blog-post-tags a {
    display: block;
    background-color: rgba(138, 138, 154, 0.15);
    padding: 2px 8px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.blog-post-tags a:hover {
    background-color: #1c69d4;
    text-decoration: none;
    color: #fff;
}


/* Blog post share
=================== */
.blog-post-share {
}
.blog-post-share > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.blog-post-share > ul > li {
    display: inline-block;
    margin: 0 1px;
}
.bp-share-text {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}


/* Blog post nav
=================== */
.blog-post-nav {
    margin-top: 60px;
    padding-top: 40px;
    overflow: hidden;
    border-top: 1px solid rgba(150, 150, 150, 0.2);
}

.bp-nav-col {
    float: left;
    width: 50%;
}
.bp-nav-left {
    padding-right: 5%;
    border-right: 1px solid rgba(150, 150, 150, 0.2);
}
.bp-nav-right {
    padding-left: 5%;
    text-align: right;
}

.bp-nav-text {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.bp-nav-title {
    margin: 0;
    line-height: 1.2;
}
.bp-nav-title a {
    font-size: 21px;
    font-weight: 600;
    color: #333;
}
.bp-nav-title a:hover,
.bp-nav-title a:focus {
    text-decoration: underline;
    color: #333;
}
@media (max-width: 768px) {
    .bp-nav-title, .bp-nav-title {
        font-size: 16px;
    }
}


/* Blog related posts
====================== */
.related-posts {
    margin-top: 60px;
    padding-top: 60px;
    overflow: hidden;
    border-top: 1px solid rgba(150, 150, 150, 0.2);
}
.related-posts-heading {
    font-size: 21px;
    margin: 0 0 30px 0;
}


/* Related posts carousel
========================== */
.related-posts-carousel {
}

.related-posts-carousel .owl-carousel .cc-item {
    margin: 0;
    padding: 0;
}

/* Related posts carousel item */
.related-posts-item {
}
.related-posts-item .rp-item-image-wrap {
    position: relative;
    background-color: rgba(91, 107, 140, 0.1);
}
.related-posts-item .rp-item-image {
    display: block;
    margin-bottom: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.related-posts-item .rp-item-image:hover {
    opacity: .9;
}
.rp-item-info {
}
.related-posts-item .rp-item-title,
.related-posts-item .rp-item-title h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.related-posts-item .rp-item-title:hover,
.related-posts-item .rp-item-title h4:hover {
    text-decoration: underline;
    color: #1c69d4;
}
.related-posts-item .rp-item-categores-wrap {
    margin-bottom: 10px;
    font-size: 12px;
    color: #999;
}
.related-posts-item .rp-item-category {
    display: inline-block;
    background-color: #1c69d4;
    padding: 0 4px;
    color: #FFF;
    margin-bottom: 3px;
}
.related-posts-item .rp-item-category:hover {
    opacity: .8;
}

/* Related posts OWL Carousel */
.related-posts .owl-carousel {
    min-height: 0;
}


/* Blog post comments
====================== */
#blog-post-comments {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(150, 150, 150, 0.2);
}

.blog-post-comments-heading {
    margin: 0 0 30px 0;
    font-size: 24px;
}

/* tt-Comment list */
.tt-comment-list {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
}
.tt-comment-list > li {
    margin-top: 30px;
}

/* tt-Comment */
.tt-comment {
}

/* tt-Comment avatar */
.tt-comment-avatar {
    position: relative;
    display: inline-block;
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
}
.tt-comment-avatar:hover {
}
@media (max-width: 768px) {
    .tt-comment-avatar {
        width: 40px;
        height: 40px;
        margin-top: 20px;
        margin-left: 20px;
    }
}

/* tt-Comment pody */
.tt-comment-body {
    position: relative;
    display: table;
    padding: 20px;
    border: 1px solid rgba(150, 150, 150, 0.2);
}
@media (max-width: 768px) {
    .tt-comment-body {
        display: block;
    }
}

/* tt-Comment meta */
.tt-comment-meta {
    margin-right: 70px;
}

.tt-comment-heading {
    margin: 0 0 5px 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
    color: #333;
}
.tt-comment-heading a {
    color: #333;
}
.tt-comment-heading a:hover {
    color: #1c69d4;
}

.tt-comment-time {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-style: italic;
    color: #888;
}

/* tt-Comment text */
.tt-comment-text {
    clear: both;
    font-size: 17px;
}

/* tt-Comment reply */
.tt-comment-reply {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    font-size: 13px;
    z-index: 9;
}
.tt-comment-reply a {
    color: #888;
}
.tt-comment-reply a:hover {
    color: #1c69d4;
}

/* tt-Comment form */
#tt-comment-form {
    margin-top: 80px;
    padding: 5%;
    border: 1px solid rgba(150, 150, 150, 0.2);
}
#tt-comment-form .tt-comment-form-reminder {
    margin-top: 20px;
}
#tt-comment-form .tt-comment-form-reminder label {
    font-size: 16px;
    color: #666;
}
.tt-sidebar-categories {
}
.tt-sidebar-categories > ul > li {
    padding: 0;
}
.tt-sidebar-categories > ul > li > a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1;
    background-color: #f1f1f3;
    padding: 15px 20px;
    margin-bottom: 2px;
    border-left: 3px solid #e6e6e6;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.tt-sidebar-categories > ul > li > a:hover {
    background-color: #ededf1;
    padding-left: 25px;
    border-left-color: #1c69d4;
}
.tt-sidebar-categories > ul > li:first-child {
    padding-top: 0;
    border: 0;
}
.tt-sidebar-categories > ul > li > a span {
    position: relative;
    float: right;
    top: -4px;
    background-color: #FFF;
    padding: 6px 5px 4px 5px;
    text-align: center;
    font-size: 12px;
    color: #333;
    border-radius: 50px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.tt-sidebar-categories > ul > li > a:hover span {
    background-color: #1c69d4;
    color: #FFF;
}

/* Blog sidebar post list
========================== */
.tt-sidebar-post-list {
}
.tt-sidebar-post-list > ul > li {
    list-style: none;
    overflow: hidden;
    margin-bottom: 17px;
}
.tt-sidebar-post-list > ul > li:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.tt-sidebar-post-list .post-thumb {
    float: left;
    display: block;
    margin: 0 15px 0 0;
    width: 114px;
    height: 86px;
    background-color: rgba(238, 238, 240, 1);
    overflow: hidden;
    border-radius: 3px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.tt-sidebar-post-list .post-thumb:hover {
    opacity: .9;
}

.tt-sidebar-post-list .post-data {
    display: table;
}
.tt-sidebar-post-list .post-data .post-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: bold;
    font-weight: 600;
    line-height: 1.4;
}
.tt-sidebar-post-list .post-data .post-title a {
    font-weight: bold;
    font-weight: 600;
    color: #333;
}
.tt-sidebar-post-list .post-data .post-title a:hover {
    text-decoration: underline;
    color: #1c69d4;
}
.tt-sidebar-post-list .post-data .author {
    display: block;
    font-size: 14px;
    line-height: 15px;
}
.tt-sidebar-post-list .post-data .author a {
    color: #333;
}
.tt-sidebar-post-list .post-data .author a:hover {
    color: #1c69d4;
}
.tt-sidebar-post-list .post-data .date {
    display: block;
    font-size: 13px;
    color: #888;
}

/* Blog sidebar post comments list
=================================== */
.tt-sidebar-comments-list {
}

.tt-sidebar-comment-wrap {
    padding-bottom: 17px;
    margin-bottom: 17px;
    border-bottom: 1px solid #ededed;
}
.tt-sidebar-comment-wrap:last-child {
    margin: 0;
    padding: 0;
    border: none;
}
.tt-sidebar-comment-meta {
    display: table;
}
.tt-sidebar-comment-avatar {
    float: left;
    display: block;
    margin: 0 15px 0 0;
    overflow: hidden;
    width: 40px;
    height: 40px;
    background-color: rgba(238, 238, 240, 1);
    border-radius: 50%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.tt-sidebar-comment-avatar:hover {
    opacity: .9;
}
.tt-sidebar-comment-data {
}
.tt-sidebar-comment-data .author {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.tt-sidebar-comment-data .author a {
    color: #333;
}
.tt-sidebar-comment-data .author a:hover {
    text-decoration: underline;
    color: #1c69d4;
}
.tt-sidebar-comment-data .date {
    display: block;
    font-size: 13px;
    color: #888;
}

.tt-sidebar-comment-wrap .tt-sidebar-comment {
    clear: both;
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
    line-height: 1.3;
    color: #888;
}
.tt-sidebar-comment-wrap .tt-sidebar-comment a {
    color: #888;
}
.tt-sidebar-comment-wrap .tt-sidebar-comment a:hover {
    text-decoration: underline;
    color: #1c69d4;
}
.tt-sidebar-comment-wrap .tt-sidebar-comment p {
    margin-bottom: 0;
}
/* ---------------------------------------------------------------------- *
 *  Content carousel - CC
 *  Based on OWL Carousel: http://owlcarousel2.github.io/OwlCarousel2/
/* ---------------------------------------------------------------------- */

.owl-carousel {
}

.owl-carousel .owl-item {
    z-index: 9;
    overflow: hidden;
    /* image flickering fix */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Page swiping fix on mobile devices */
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}


/* Prev/Next nav buttons
========================= */
.owl-nav {
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* owl-nav buttons */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    width: 35px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: #FFF;
    overflow: hidden;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev::before,
.owl-carousel .owl-nav button.owl-next::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1c69d4;
    z-index: -1;
    opacity: .6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    width: 45px;
}
.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-next:focus {
    outline: none;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    padding-right: 3px;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0;
    padding-left: 3px;
}

.owl-carousel .owl-nav button.owl-prev::after,
.owl-carousel .owl-nav button.owl-next::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.owl-carousel .owl-nav button.owl-prev::after {
    content: "\f053";
}
.owl-carousel .owl-nav button.owl-next::after {
    content: "\f054";
}

.owl-carousel:hover .owl-nav button.owl-prev {
    left: 0;
}
.owl-carousel:hover .owl-nav button.owl-next {
    right: 0;
}

@media (max-width: 992px) {
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        top: 50%;
        width: 30px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    .owl-carousel .owl-nav button.owl-prev:hover,
    .owl-carousel .owl-nav button.owl-next:hover {
        width: 35px;
    }
}

/* Prev/Next buttons disabled (no loop) */
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
    opacity: .3;
    cursor: default;
}
.owl-carousel .owl-nav button.owl-prev.disabled::before,
.owl-carousel .owl-nav button.owl-next.disabled::before {
    opacity: .6 !important;
}


/* Prev/Next nav buttons styles
================================ */
/* Prev/Next buttons - show on hover */
body:not(.is-mobile) .owl-carousel.nav-hover .owl-nav {
    opacity: 0;
    visibility: hidden;
}
body:not(.is-mobile) .owl-carousel.nav-hover:hover .owl-nav {
    opacity: 1;
    visibility: visible;
}

/* Prev/Next buttons light */
.owl-carousel.nav-light .owl-nav button.owl-prev,
.owl-carousel.nav-light .owl-nav button.owl-next {
    color: #222;
}
.owl-carousel.nav-light .owl-nav button.owl-prev::before,
.owl-carousel.nav-light .owl-nav button.owl-next::before {
    background-color: #FFF;
    opacity: 1;
}
.owl-carousel.nav-light .owl-nav button.owl-prev:hover,
.owl-carousel.nav-light .owl-nav button.owl-next:hover {
    color: #1c69d4;
}

/* Prev/Next buttons dark */
.owl-carousel.nav-dark .owl-nav button.owl-prev,
.owl-carousel.nav-dark .owl-nav button.owl-next {
    color: #FFF;
}
.owl-carousel.nav-dark .owl-nav button.owl-prev::before,
.owl-carousel.nav-dark .owl-nav button.owl-next::before {
    background-color: #111;
    opacity: .4;
}

/* Prev/Next buttons rounded */
.owl-carousel.nav-rounded .owl-nav button.owl-prev,
.owl-carousel.nav-rounded .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100px;
}
.owl-carousel.nav-rounded .owl-nav button.owl-prev {
    left: 20px;
}
.owl-carousel.nav-rounded .owl-nav button.owl-next {
    right: 20px;
}
@media (max-width: 992px) {
    .owl-carousel.nav-rounded .owl-nav button.owl-prev,
    .owl-carousel.nav-rounded .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }
}

/* Prev/Next buttons minimal */
.owl-carousel.nav-minimal .owl-nav button.owl-prev,
.owl-carousel.nav-minimal .owl-nav button.owl-next {
    width: 70px;
    height: 70px;
    min-height: 60px;
    font-size: 26px;
    color: #222;
}
.owl-carousel.nav-minimal.nav-light .owl-nav button.owl-prev,
.owl-carousel.nav-minimal.nav-light .owl-nav button.owl-next {
    color: #FFF;
}

.owl-carousel.nav-minimal .owl-nav button.owl-prev:hover,
.owl-carousel.nav-minimal .owl-nav button.owl-next:hover {
    color: #1c69d4;
}

.owl-carousel.nav-minimal .owl-nav button.owl-prev::before,
.owl-carousel.nav-minimal .owl-nav button.owl-next::before {
    background-color: transparent !important;
}


/* Prev/Next nav buttons positions
=================================== */
/* Prev/Next buttons position outside (left/right) */
.owl-carousel.nav-outside .owl-nav button.owl-prev,
.owl-carousel.nav-outside .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.owl-carousel.nav-outside .owl-nav button.owl-prev,
.owl-carousel.nav-outside:hover .owl-nav button.owl-prev {
    left: -70px;
}
.owl-carousel.nav-outside .owl-nav button.owl-next,
.owl-carousel.nav-outside:hover .owl-nav button.owl-next {
    right: -70px;
}

@media (max-width: 1540px) {
    .owl-carousel.nav-outside .owl-nav button.owl-prev,
    .owl-carousel.nav-outside .owl-nav button.owl-next {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
    }
    .owl-carousel.nav-outside .owl-nav button.owl-prev,
    .owl-carousel.nav-outside:hover .owl-nav button.owl-prev {
        left: 15px;
    }
    .owl-carousel.nav-outside .owl-nav button.owl-next,
    .owl-carousel.nav-outside:hover .owl-nav button.owl-next {
        right: 15px;
    }
}

/* Prev/Next nav buttons position outside top */
.owl-carousel.nav-outside-top .owl-nav {
    position: absolute;
    top: -50px;
    right: 0;
    width: 60px;
}

.owl-carousel.nav-outside-top .owl-nav button.owl-prev,
.owl-carousel.nav-outside-top .owl-nav button.owl-next {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 17px;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.owl-carousel.nav-outside-top .owl-nav button.owl-prev:hover::before,
.owl-carousel.nav-outside-top .owl-nav button.owl-next:hover::before {
    opacity: 1;
}

.owl-carousel.nav-outside-top:hover .owl-nav button.owl-prev {
    left: 0;
}
.owl-carousel.nav-outside-top:hover .owl-nav button.owl-next {
    right: 0;
}

/* Prev/Next nav buttons position bottom right */
.owl-carousel.nav-bottom-right .owl-nav {
    position: absolute;
    top: auto;
    bottom: 85px;
    right: 3%;
    width: 92px;
}

.owl-carousel.nav-bottom-right .owl-nav button.owl-prev,
.owl-carousel.nav-bottom-right .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 21px;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.owl-carousel.nav-bottom-right .owl-nav button.owl-prev::before,
.owl-carousel.nav-bottom-right .owl-nav button.owl-next::before {
    opacity: .6;
}
.owl-carousel.nav-bottom-right .owl-nav button.owl-prev:hover::before,
.owl-carousel.nav-bottom-right .owl-nav button.owl-next:hover::before {
    opacity: 1;
}

.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-prev,
.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-prev {
    left: 0;
}
.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-next,
.owl-carousel.nav-bottom-right:hover .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-prev::before,
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-next::before {
    opacity: .85;
}
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-prev:hover::before,
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-next:hover::before {
    opacity: 1;
}

.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-prev.disabled::before,
.owl-carousel.nav-bottom-right.nav-light .owl-nav button.owl-next.disabled::before {
    opacity: 1 !important;
}

@media (min-width: 768px) {
    .owl-carousel.dots-right.nav-bottom-right .owl-nav {
        bottom: 110px;
    }
    .owl-carousel.dots-outside.nav-bottom-right .owl-nav {
        bottom: 85px;
    }
}
@media (max-width: 992px) {
    .owl-carousel.nav-bottom-right .owl-nav {
        bottom: 60px;
    }
}
@media (max-width: 768px) {
    .owl-carousel.nav-bottom-right .owl-nav {
        right: 5%;
        width: 84px;
    }
    .owl-carousel.nav-bottom-right .owl-nav button.owl-prev,
    .owl-carousel.nav-bottom-right .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .owl-carousel.dots-outside.nav-bottom-right .owl-nav {
        bottom: 55px;
    }
}


/* Dots
======== */
.owl-dots, .owl-nav.disabled + .owl-dots {
    position: absolute;
    bottom: 30px;
    margin-top: 0px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.owl-dots button.owl-dot {
    display: inline-block;
}
.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-dots button.owl-dot span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0px 3px;
    background-color: #a9a9a9;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.owl-dots button.owl-dot.active span,
.owl-dots button.owl-dot:hover span {
    background-color: #1c69d4;
}
.owl-dots button.owl-dot.active span {
}

@media (max-width: 768px) {
    .owl-dots, .owl-nav.disabled + .owl-dots {
        bottom: 10px;
    }
}

/* dots rounded */
.dots-rounded .owl-dots button.owl-dot span {
    border-radius: 10px;
}

/* disable dots on small screens */
/*@media (max-width: 768px) {
	.owl-dots,
	.owl-nav.disabled + .owl-dots {
		display: none !important;
	}
	.dots-outside {
		margin-bottom: 0 !important;
	}
}*/


/* Dots positions
=================== */
/* Dots position outside */
.dots-outside {
    margin-bottom: 55px;
}
.dots-outside .owl-dots, .dots-outside .owl-nav.disabled + .owl-dots {
    bottom: -40px;
}

/* Dots position left */
.dots-left .owl-dots, .dots-left .owl-nav.disabled + .owl-dots {
    left: 3%;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/* Dots position right */
.dots-right .owl-dots, .dots-right .owl-nav.disabled + .owl-dots {
    left: inherit;
    right: 3%;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/* Dots position center right */
.dots-center-right .owl-dots {
    position: absolute;
    top: 50%;
    bottom: auto !important;
    left: auto !important;
    right: 15px;
    text-align: right;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}
.dots-center-right .owl-dots button.owl-dot {
    display: block;
    line-height: 0;
}
.dots-center-right .owl-dots button.owl-dot span {
    margin: 5px 0;
}


/* CC item
=========== */
.owl-carousel .cc-item {
    position: relative;
    display: block;
    overflow: hidden;
}


/* CC item image
================= */
.owl-carousel .owl-item .cc-image {
    position: relative;
    display: block;
    /*min-height: 300px;*/
    z-index: 1;
}
.owl-carousel .owl-item .cc-image.bg-image {
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}


/* CC link
=========== */
.cc-link {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.cc-link-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: #FFF;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    font-size: 15px;
    color: #000;
    z-index: 3;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.cc-link:hover .cc-link-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}


/* CC item hover
================= */
/* CC item hover zoom */
.owl-carousel.cc-hover-zoom .cc-item {
    overflow: hidden;
}
.owl-carousel.cc-hover-zoom .cc-item .cc-image,
.owl-carousel.cc-hover-zoom .cc-item img {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.owl-carousel.cc-hover-zoom .cc-item:hover .cc-image,
.owl-carousel.cc-hover-zoom .cc-item:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}


/* CC item size (for background images only!)
============================================== */
.owl-carousel.owl-size-1 .cc-item .cc-image.bg-image { padding-bottom: 10% }
.owl-carousel.owl-size-2 .cc-item .cc-image.bg-image { padding-bottom: 20% }
.owl-carousel.owl-size-3 .cc-item .cc-image.bg-image { padding-bottom: 30% }
.owl-carousel.owl-size-4 .cc-item .cc-image.bg-image { padding-bottom: 40% }
.owl-carousel.owl-size-5 .cc-item .cc-image.bg-image { padding-bottom: 50% }
.owl-carousel.owl-size-6 .cc-item .cc-image.bg-image { padding-bottom: 60% }
.owl-carousel.owl-size-7 .cc-item .cc-image.bg-image { padding-bottom: 70% }
.owl-carousel.owl-size-8 .cc-item .cc-image.bg-image { padding-bottom: 80% }
.owl-carousel.owl-size-9 .cc-item .cc-image.bg-image { padding-bottom: 90% }
.owl-carousel.owl-size-10 .cc-item .cc-image.bg-image { padding-bottom: 100% }
.owl-carousel.owl-size-11 .cc-item .cc-image.bg-image { padding-bottom: 110% }
.owl-carousel.owl-size-12 .cc-item .cc-image.bg-image { padding-bottom: 120% }
.owl-carousel.owl-size-13 .cc-item .cc-image.bg-image { padding-bottom: 130% }
.owl-carousel.owl-size-14 .cc-item .cc-image.bg-image { padding-bottom: 140% }
.owl-carousel.owl-size-15 .cc-item .cc-image.bg-image { padding-bottom: 150% }
.owl-carousel.owl-size-16 .cc-item .cc-image.bg-image { padding-bottom: 160% }
.owl-carousel.owl-size-17 .cc-item .cc-image.bg-image { padding-bottom: 170% }
.owl-carousel.owl-size-18 .cc-item .cc-image.bg-image { padding-bottom: 180% }
.owl-carousel.owl-size-19 .cc-item .cc-image.bg-image { padding-bottom: 190% }
.owl-carousel.owl-size-20 .cc-item .cc-image.bg-image { padding-bottom: 200% }

@media (max-width: 1024px) {
    .owl-carousel.owl-size-8 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-9 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-10 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-11 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-12 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-13 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-14 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-15 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-16 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-17 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-18 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-19 .cc-item .cc-image.bg-image,
    .owl-carousel.owl-size-20 .cc-item .cc-image.bg-image {
        padding-bottom: 70%
    }
}

/* full height (for desktop only!) */
@media (min-width: 992px) {
    .owl-carousel.owl-size-full .cc-item .cc-image.bg-image {
        height: 100vh;
        min-height: 100vh;
    }
}

/* full height (for small screen only!) */
@media (max-width: 991px) {
    .owl-carousel.owl-size-full-m .cc-item .cc-image.bg-image {
        height: 100vh;
        min-height: 100vh;
    }
}


/* owl elements
================ */
/* owl video */
.owl-carousel .owl-video-wrapper {
    z-index: 2;
}

/* owl video play icon */
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background-color: rgba(0, 0, 0, 0.7);
    background-position: center;
    cursor: pointer;
    z-index: 1;
    border-radius: 80px;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* cursor grab icon */
.owl-carousel.cursor-grab .owl-stage {
    cursor: -webkit-grab;
    cursor: grab;
}
.owl-carousel.cursor-grab .owl-stage:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}


/* if owl lazy loading enabled
=============================== */
.owl-lazy-wrap {
    position: relative;
}
.owl-lazy {
}
.owl-lazy.bg-image {
}
.owl-lazy-loader {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.owl-lazy-loader.owl-lazy-loading {
    background-image: url(../img/loader.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: inherit;
}
.call-link {
    font-weight: bold;
    color: #fff;
}
.call-link:hover,.call-link:active,.call-link:focus,.call-link:visited {
    text-decoration: none;
    color: #fff;
}

.social-icons a {
    font-size: 36px;
    color: #fff;
}
