@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap'); /* 600 weight used in main_banner h3 and a */

/*@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");*/ /* used for star ratings */

html,body {
	height: 100%;
}
@media (max-width: 767px) {
	html,body {
		height: auto;
	}
}
body {
	background: #f8f8f8;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	flex-direction: column;
/*	height: 100vh;*/
}
a {
	transition: all 0.5s ease;
	color: #4a4a4a;
}
a:hover {
	text-decoration: none;
	color: #dc3545;
}
.bgColorTheme {
	background-color: #dc3545;
}
/* begin override bootstrap */
.navbar-light .navbar-nav .nav-link:hover {
	color: #dc3545;
}
.page-link {
	color: #666;
}
.page-item.active .page-link {
	background-color: #dc3545;
	border-color: #dc3545;
}
.nav-item {
	white-space: nowrap;
/*	font-size: 12px;*/
	font-weight: 600;
}
/* end override bootstrap */

.btn-orange, .btn-light-orange {
	border: none; /* incase btn-orange is used in a <button> instead of an <a> */
	display: inline-block;
	color: #fff;
	border-radius: 20px;
	padding: 10px 20px;
	text-decoration: none;
	font-size: 14px;
}
.btn-orange {
	background-color: #dc3545;
}
.btn-orange:hover {
	color: #fff;
	background: #e9351f;
}
.btn-light-orange {
	background: #fbc418;
}
.btn-light-orange:hover {
	color: #fff;
	background: #ebb304;
}

.subscribe-title {
	width: 24vw;
}
@media (max-width: 767px) {
	.subscribe-title {
		width: 100%;
	}
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(43,51,63,.7);
	color: white;
	font-size: 16px;
	padding: 6px 28px;
	border: 2px solid #fff;
	cursor: pointer;
	border-radius: 10px;
	text-align: center;
	transition: all .4s;
}
.container-video-thumb {
	position: relative;
}
.container-video-thumb:hover .play-btn {
	background-color: rgba(115,133,159,.5);
}

.clink {
	text-decoration: none;
	display: block;
	padding: 8px 0 8px 10px;
}

.img-container {
	/*min-height: 176px;*/
	border-radius: 10px;
}
.hover-zoom .img-container {
	overflow: hidden;
}
.hover-zoom img {
	transition: all 0.7s ease;
}
.hover-zoom:hover img {
	transform: scale(1.3);
}
.hover-zoom .view {
	opacity: 0;
	background-color: #fff;
	color: #000;
	font-weight: bold;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
	border-radius: 5px;
	text-align: center;
	padding: 10px 20px;
	position: absolute;
	top: 50%;
	margin: auto;
	z-index: 2;
	left: 0;
	right: 0;
	width: 190px;
	transition: all 0.5s ease;
}
.hover-zoom:hover .view {
	opacity: 1;
	top: 30%;
}

.card-link {
	text-decoration: none;
	color: #000;
}
.card-height {
	height: 100%;
}
.card-title-text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	font-weight: 500;
	padding-top: 10px;
	min-height: 58px;
}
.card-authors {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.icon-play-container {
	position: relative;
	display: inline-block;
}
.icon-play {
	position: absolute;
	width: 100px;
	height: 100px;
	border: solid 2px #fff;
	border-radius: 100px;
	top: 50%;
	left: 50%;
	margin-top: -60px;
	margin-left: -50px;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.5);
}
.icon-play:before {
	content: "";
	width: 34px;
	height: 53px;
	border-left: 2px solid #fff;
	border-radius: 5px;
	position: absolute;
	top: 23px;
	left: 37px;
}
.icon-play:after {
	content: "";
	position: absolute;
	top: 27px;
	left: 19px;
	width: 42px;
	height: 42px;
	transform: rotate(45deg) skew(-5deg, -5deg);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	border-radius: 5px;
}
.icon-play-container:hover .icon-play {
	background-color: rgba(0, 0, 0, 0.8);
}

.signin_banner {
	background-color: #000;
	background-image: url('images/subscribe.jpg');
	background-position: left;
	color: #fff;
	border-radius: 20px;
	min-height: 400px;
	text-shadow: 2px 2px 4px #000;
}
.main_banner {
	background: #405a8a url("images/banner.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	height: 440px;
	color: #fff;
	border-radius: 20px;
	text-shadow: 2px 2px 4px #000;
}
.main_banner h3 {
	width: 100%;
/*	font-size: 3vw;
	line-height: 3.2vw;*/
	font-size: 3em;
	line-height: 1em;
	font-weight: 600;
}
.partner-title {
	font-size: 1.8vw;
	line-height: 2.5vw;
	font-weight: 600;
}
.signup {
	text-decoration: none;
	color: #fff;
	font-weight: 600;
}
.signup:hover {
	transform: translateX(6px);
}
@media (min-width: 767px) {
	.main_banner h3 {
		width: 50%;
	}
	.main_banner p {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.main_banner {
		height: 320px;
	}
	.main_banner h3 {
		font-size: 20px;
		line-height: 20px;
		width: 100%;
	}
	.main_banner p {
		width: 100%;
	}
}
@media (max-width: 992px) {
	.partner-title {
		font-size: 28px;
		line-height: 28px;
	}
}

.newsletter_input {
	border-radius: 30px;
	padding: 10px 20px;
	font-size: .875rem;
	background-color: transparent;
	color: #fff;
	border: 3px solid #fff;
	outline: none;
}
.newsletter_input::placeholder {
	color: #fff;
	opacity: 1;
}

.testimonials {
	background: #405a8a;
	border-radius: 20px;
	color: #fff;
	height: 276px;
}
/*@media (min-width: 768px) {
	.testimonials {
		height: 144px;
	}
}
@media (min-width: 992px) {
	.testimonials {
		height: 120px;
	}
}*/

.header {
	background: #405a8a;
	border-radius: 20px;
	color: #fff;
}
.header a {
	color: #fff;
}
.footer a {
	color: #999;
}
.footer-left, .footer-right {
	color: #999;
	padding: 40px 0;
	font-size: 14px;
}
.footer-right {
	text-align: right;
}
@media (max-width: 768px) {
	.footer-left {
		padding-bottom: 0;
	}
	.footer-left, .footer-right {
		text-align: center;
	}
}
@media (min-width: 768px) {
	/* start bootstrap override */
	.col-form-label {
		text-align: right;
	}
	/* end bootstrap override */
}

.social {
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	border-radius: 500px;
	background: #ddd;
	color: #000;
	vertical-align: middle;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.1s ease-in-out;
	transition-property: all;
	transition-property: color, background-color;

	fill: currentColor;
}
.facebook, .google-plus, .linkedin, .twitter, .instagram {
	background: #fff;
}
.facebook:hover, .google-plus:hover, .linkedin:hover, .twitter:hover, .instagram:hover {
	color: #fff;
}
.twitter {
	color: #00acee;
	border: solid 1px #00acee;
}
.twitter:hover {
	background: #00acee;
}
.facebook {
	color: #3b5998;
	border: solid 1px #3b5998;
}
.facebook:hover {
	background: #3b5998;
}
.instagram {
	color: #DE487B;
	border: solid 1px #DE487B;
}
.instagram:hover {
	background: #DE487B;
}
.linkedin {
	color: #0e76a8;
	border: solid 1px #0e76a8;
}
.linkedin:hover {
	background: #0e76a8;
}

.like {
	color: #ddd;
}
.like:hover * {
	cursor: pointer;
	color: #f00;
}
.like.disabled:hover * {
	color: #ddd;
}
.like.selected {
	color: #f00;
}

/* test comment */