/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Services
- Details 1
- Details 2
- Features
- Testimonials
- Customers
- Invitation
- Contact
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #fcfafb
- Buttons, icons - blue #0092ff
- Buttons, icons - red #ef473d
- Headings text - black #223150
- Body text - dark gray #5e6576
******************************************/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500&display=swap');

/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #5e6576; 
	font: 400 1rem/1.625rem 'Quicksand', sans-serif;
}

h1 {
	color: #223150;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.4px;
}

h2 {
	color: #223150;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.5rem;
	letter-spacing: -0.4px;
}

h3 {
	color: #223150;
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: -0.2px;
}

h4 {
	color: #223150;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 2rem;
	letter-spacing: -0.2px;
}

h5 {
	color: #223150;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
}

h6 {
	color: #223150;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375rem;
}
section {
	background-color: #fff;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #5e6576;
	text-decoration: underline;
}

a:hover {
	color: #5e6576;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.read-more {
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.read-more .fas {
	margin-left: 0.625rem;
	font-size: 1rem;
	vertical-align: -8%;
}

.blue {
	color: #0092ff;
}

.bg-gray {
	background-color: #fcfafb;
}

.bg-blue {
	background-color: #000e3d;
}

.section-title {
	margin-bottom: 0.5rem;
	color: #f37335;
	font-weight: 600;
	font-size: 0.875rem;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #0092ff;
}

.section-title span.section-sub-title {
    color: #f37335;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #0092ff;
	border-radius: 30px;
	background-color: #0092ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #0092ff; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #0092ff;
	border-radius: 30px;
	background-color: #0092ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #0092ff; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #0092ff;
	border-radius: 30px;
	background-color: #0092ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
	text-transform: uppercase;
}

.btn-solid-sm:hover {
	background-color: transparent;
	color: #0092ff; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #ef473d;
	border-radius: 30px;
	background-color: transparent;
	color: #ef473d;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #ef473d;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #ef473d;
	border-radius: 30px;
	background-color: transparent;
	color: #ef473d;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #ef473d;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #ef473d;
	border-radius: 30px;
	background-color: transparent;
	color: #ef473d;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #ef473d;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-textarea {
	width: 100%;
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 8px;
	background-color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-textarea {
	display: block;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
}

.form-control-input:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #0092ff;
	border-radius: 30px;
	background-color: #0092ff;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #0092ff;
	background-color: transparent;
	color: #0092ff;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #fcfafb;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 45px;
    height: 45px;
}

.navbar .logo-text {
	color: #223150;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #fcfafb;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #e5e5e5;
	text-decoration: none;
	transition: all 0.2s ease;
	text-transform: uppercase;
	font-weight: normal;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #0092ff;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #fcfafb;
}

.navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #5e6576;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #fcfafb;
	color: #0092ff;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #d1d1d1;
}
/* end of dropdown menu */

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/******************/
/*     Header     */
/******************/
.header {
	background-size: cover;
	text-align: center;
	position: relative;
}

.header .h1-large {
	margin-bottom: 1.75rem;
}

.header .p-large {
	margin-bottom: 2.25rem;
}

.header .image-container {
	margin-top: 5rem;
}


/********************/
/*     Services     */
/********************/
.cards-1 {
	padding-top: 5rem;
	padding-bottom: 2.25em;
}

.cards-1 h2 {
	margin-bottom: 3.5rem;
}

.cards-1 .card {
	margin-bottom: 5rem;
	border: none;
	background-color: transparent;
}

.cards-1 .card-icon {
	width: 66px;
	height: 66px;
	margin-bottom: 1.875rem;
	border-radius: 8px;
	background-color: #ddedfb;
	text-align: center;
}

.cards-1 .card-icon .fas,
.cards-1 .card-icon .far {
	color: #0092ff;
	font-size: 2rem;
	line-height: 66px;
}

.cards-1 .card-icon.red {
	background-color: #fbe4e4;
}

.cards-1 .card-icon.red .fas,
.cards-1 .card-icon.red .far {
	color: #ef473d;
}

.cards-1 .card-icon.green {
	background-color: #e0f4ea;
}

.cards-1 .card-icon.green .fas,
.cards-1 .card-icon.green .far {
	color: #16c66d;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-title {
	margin-bottom: 1.125rem;
}

.cards-1 .card-body p {
	margin-bottom: 1.125rem;
}

.cards-1 .read-more {
	color: #223150;
}

.cards-1 .read-more .fas {
	color: #223150;
}


/*********************/
/*     Details 1     */
/*********************/
.basic-1 {
	padding-top: 2.25rem;
	padding-bottom: 2.75rem;
	background: linear-gradient(rgb(252, 250, 251), rgb(255, 255, 255));
}

.basic-1 .image-container {
	margin-bottom: 4rem;
}

.basic-1 h2 {
	margin-bottom: 1.75rem;
}

.basic-1 p {
	margin-bottom: 2rem;
}


/*********************/
/*     Details 2     */
/*********************/
.basic-2 {
	padding-top: 4.5rem;
	padding-bottom: 9.5rem;
	background: url('../images/details-2-background.jpg') center center no-repeat;
	background-size: cover;
}

.basic-2 .text-container {
	margin-bottom: 4rem;
}

.basic-2 h2 {
	margin-bottom: 1.75rem;
}

.basic-2 p {
	margin-bottom: 2rem;
}


/********************/
/*     Features     */
/********************/
.accordion-1 {
	padding-top: 9.25rem;
	padding-bottom: 9.75rem;
	background-color: #000e3d;
}

.accordion-1 .h2-heading {
	margin-bottom: 1rem;
	color: #ffffff;
	text-align: center;
}

.accordion-1 .p-heading {
	margin-bottom: 4rem;
	color: #ffffff;
	text-align: center;
}

.accordion-1 .accordion {
	margin-bottom: 5rem;
}

.accordion-1 .accordion-item {
	margin-bottom: 2.5rem;
	border: none;
	border-radius: 0;
	background-color: transparent;
}

.accordion-1 .accordion-item:last-of-type {
	margin-bottom: 0;
}

.accordion-1 .accordion-icon {
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 4px;
	text-align: center;
	background-color: #14be9f;
}

.accordion-1 .accordion-icon.blue {
	background-color: #1d79fb;
}

.accordion-1 .accordion-icon.purple {
	background-color: #dc63ff;
}

.accordion-1 .accordion-icon.orange {
	background-color: #ff6c02;
}

.accordion-1 .accordion-icon .fas {
	color: #ffffff;
	font-size: 1.25rem;
	line-height: 44px;
}

.accordion-1 .accordion-header {
	margin-left: 4.125rem;
	padding: 0.5rem 0 0.5rem 0;
	border: none;
	background-color: transparent;
}

.accordion-1 .accordion-header button {
	padding: 0;
	border: none;
	background-color: transparent;
	color: #ffffff;
	box-shadow: none;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.625rem;
	letter-spacing: -0.4px;
	text-align: left;
}

.accordion-1 .accordion-header button:after {
	display: none;
}

.accordion-1 .accordion-body {
	margin-left: 4.125rem;
	padding: 0.375rem 0 0 0;
	color: #ffffff;
}


/************************/
/*     Testimonials     */
/************************/
.cards-2 {
	padding-top: 9.5rem;
	padding-bottom: 2.25rem;
	text-align: center;
}

.cards-2 .h2-heading {
	margin-bottom: 3.75rem;
}

.cards-2 .card {
	position: relative;
	margin-bottom: 5rem;
	border-radius: 10px;
	box-shadow: 0 4px 20px -1px rgba(0, 0, 0, 0.1);
}

.cards-2 .card .quotes {
	position: absolute;
	top: -15px;
	right: 0;
	left: 0;
	width: 48px;
	margin-right: auto;
	margin-left: auto;
}

.cards-2 .card-body {
	padding: 3.5rem 2rem 3.125rem 2rem;
}

.cards-2 .testimonial-author {
	margin-bottom: 0.125rem;
	color: #223150;
}

.cards-2 .occupation {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.cards-2 .card .gradient-floor {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 10px;
	width: 100%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.cards-2 .card .gradient-floor.red-to-blue {
	background: linear-gradient(to right, #ef3d91, #0092ff);
}

.cards-2 .card .gradient-floor.blue-to-purple {
	background: linear-gradient(to right, #0092ff, #637eff);
}

.cards-2 .card .gradient-floor.purple-to-green {
	background: linear-gradient(to right, #637eff, #16c66d);
}


/********************/
/*    Customers     */
/********************/
.slider-1 {
	padding-top: 2rem;
	padding-bottom: 3.75rem;
	background: linear-gradient(rgb(252, 250, 251), rgb(255, 255, 255));
	text-align: center;
}

.slider-1 h4 {
	margin-bottom: 0.25rem;
}

.slider-1 .section-divider {
	margin-bottom: 1rem;
}

.slider-1 .slider-container {
	margin-bottom: 0.5rem;
	padding: 1rem 0;
}


/**********************/
/*     Invitation     */
/**********************/
.basic-3 {
	padding-top: 4rem;
	background-size: cover;
	text-align: center;
}

.basic-3 .text-container {
	padding: 5rem 1.5rem 5.5rem 1.5rem;
	border-radius: 28px;
	background: url('../images/invitation-background.jpg') center center no-repeat;
	background-size: cover;
}

.basic-3 h2 {
	margin-bottom: 1rem;
	color: #ffffff;
}

.basic-3 .p-large {
	margin-bottom: 2.75rem;
	color: #ffffff;
}

.basic-3 .btn-solid-lg {
	border-color: #16c66d;
	background-color: #16c66d;
}

.basic-3 .btn-solid-lg:hover {
	border-color: #ffffff;
	background-color: transparent;
	color: #ffffff;
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 9.5rem;
	padding-bottom: 8.75rem;
}

.form-1 .text-container {
	margin-bottom: 4rem;
}

.form-1 .section-divider {
	margin-bottom: 1rem;
}

.form-1 h2 {
	margin-bottom: 1.75rem;
}

.form-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.form-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-top: 1.5rem;
	border-top: 1px solid #d0dae2;
	text-align: center;
}

.copyright a {
	text-decoration: none;
}

.copyright .list-unstyled,
.copyright .statement {
	opacity: 0.7;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed; 
  	z-index: 99; 
	bottom: 20px; 
	right: 20px; 
	display: none; 
	width: 52px;
	height: 52px;
	border: none; 
	border-radius: 50%; 
	outline: none; 
	background-color: #000e3d; 
	cursor: pointer; 
}

#myBtn:hover {
	background-color: #1d1d21;
}

#myBtn img {
	margin-bottom: 0.25rem;
	width: 18px;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 9rem;
	padding-bottom: 5rem;
	background-color: #fcfafb;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #fcfafb;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #0092ff;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */

	.header .h1-large {
		font-size: 3.25rem;
		line-height: 3.75rem;
	}
	/* end of header */


	/* Statistics */
	.counter .counter-cell {
		display: inline-block;
		margin-right: 1.5rem;
		margin-left: 1.5rem;
		vertical-align: top;
	}
	/* end of statistics */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		background-color: #000e3d;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #000e3d;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.05);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .nav-item .btn-solid-sm {
		margin-top: 0;
		margin-left: 1rem;
	}
	/* end of navigation */


	/* Header */
	.header {
		text-align: left;
	}

	.header .text-container {
		margin-top: 4rem;
	}

	.header .image-container {
		margin-top: 0;
	}

	.header .btn-solid-lg,
	.header .btn-outline-lg {
		margin-right: 0;
		margin-left: 0;
	}
	
	.header .btn-solid-lg {
		margin-right: 0.5rem;
	}
	/* end of header */


	/* Services */
	.cards-1 .card {
		display: inline-block;
		width: 286px;
		vertical-align: top;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2rem;
		margin-left: 2rem;
	}
	/* end of services */


	/* Details 1 */
	.basic-1 .image-container {
		margin-bottom: 0;
	}

	.basic-1 .text-container {
		margin-top: 2rem;
	}
	/* end of details 1 */
	
	
	/* Details 2 */
	.basic-2 .text-container {
		margin-top: 3rem;
		margin-bottom: 0;
	}
	/* end of details 2 */


	/* Testimonials */
	.cards-2 .card {
		display: inline-block;
		width: 298px;
		vertical-align: top;
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of testimonials */


	/* Invitation */
	.basic-3 .text-container {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}

	.basic-3 h2 {
		width: 42rem;
		margin-right: auto;
		margin-left: auto;
	}

	.basic-3 .p-large {
		width: 35rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of invitation */

	/* end of footer */


	/* Copyright */
	.copyright {
		text-align: left;
	}

	.copyright .list-unstyled li {
		display: inline-block;
		margin-right: 1rem;
	}

	.copyright .statement {
		text-align: right;
	}
	/* end of copyright */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */

.container {
    max-width: 1200px;
    padding: 0 15px;
}


/* Min-width 1200px */
@media (min-width: 1200px) {
	
	/* Header */
	.header {
		overflow: hidden;
	}

	.header .text-container {
		margin-top: 0;
	}

	.header .image-container {
		position: relative;
	}
	
	.header .image-container img {
		position: absolute;
		bottom: -520px;
		left: 60px;
		max-width: none;
	}
	/* end of header */


	/* Services */
	.cards-1 .card {
		width: 310px;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 5.5rem;
		margin-left: 5.5rem;
	}
	/* end of services */


	/* Details 1 */
	.basic-1 .text-container {
		margin-top: 5rem;
		margin-left: 2.75rem;
	}
	/* end of details 1 */


	/* Details 2 */
	.basic-2 .text-container {
		margin-top: 6rem;
		margin-right: 3rem;
	}

	.basic-2 .image-container {
		text-align: right;
	}
	/* end of details 2 */


	/* Features */
	.accordion-1 .accordion {
		margin-bottom: 0;
	}

	.accordion-1 .image-container {
		text-align: right;
	}
	/* end of features */


	/* Testimonials */
	.cards-2 .card {
		width: 356px;
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 1.125rem;
		margin-left: 1.125rem;
	}
	/* end of testimonials */


	/* Invitation */
	.basic-3 .text-container {
		padding-top: 8rem;
		padding-bottom: 8.5rem;
	}
	/* end of invitation */


	/* Contact */
	.form-1 .text-container {
		margin-top: 1.5rem;
		margin-right: 2.75rem;
	}
	
	.form-1 form {
		margin-left: 2.75rem;
	}
	/* end of contact */


	/* Footer */
	.footer .decoration-circles {
		left: 0;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */
}

.about-us-section .about-sec .abt-col {
    background-color: #fff;
    box-shadow: 0 0 10px rgb(21 87 153 / 8%);
    padding: 25px 20px 19px;
    border-radius: 10px;
    transition: all .4s ease-in-out;
}
.about-us-section .about-sec .abt-col>h3 {
    color: #2b2b2b;
    font-size: 18.29px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.about-us-section .abt-img {
    background-image: url(../images/abt-bg.png);
    background-repeat: no-repeat;
    background-position: 50%
}

.about-us-section .abt-img>img {
    max-width: 100%
}

ul.masonary {
    padding: 0;
    margin: 0;
}

.masonary li {
    list-style: none;
}

.masonary li {
    padding: 0 9.5px;
    margin-bottom: 19px
}

.masonary li img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 100%
}

@media only screen and (min-width: 668px) {
	
	.masonary li.width1 {
		width: 199px;
		height: 210px;
		margin-top: 190px
	}

	.masonary li.width2 {
		width: 297px;
		height: 360px
	}

	.masonary li.width3 {
		width: 197px;
		height: 290px;
		margin-top: 20px
	}

	.masonary li.width4 {
		width: 180px;
		margin-top: 60px
	}

	.masonary li.width4 img {
		width: 94px;
		height: 87px
	}

	.masonary li.width5 {
		width: 297px;
		height: 192px;
		padding-left: 30px
	}

	.masonary li.width6 {
		width: 198px;
		height: 240px;
		margin-top: -45px
	}

	.masonary li.width7 {
		width: 198px;
		height: 240px;
		margin-top: 0
	}

	.masonary li.width8 {
		width: 80px;
		height: 64px;
		margin-top: 0
	}

	.masonary li.width9 {
		width: 199px;
		height: 190px
	}

	.masonary li.width10 {
		width: 99px;
		height: 72px
	}
	
}

.course-section {
	background-color: #000e3d;
}

.course-section ul {
	margin: 0;
	padding: 0;
}

.course-section .sec-title h2, .course-section .sec-title h3, .course-section .sec-title p {
	color: #fff;
}

.course-section .sec-title p {
	font-weight: 200;
}

.course-section .sec-title h2 {
	text-transform: uppercase;
}

.course-section .find-course .course-img {
    background-image: url(../images/abt-element.png);
    background-repeat: no-repeat;
    background-position: 50%;
}
.course-section .courses-list {
    margin-top: 63px;
}

.course-section .find-course .course-img>img {
    max-width: 100%
}

.course-section .courses-list {
    margin-top: 63px
}

.course-section .courses-list .course-card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(21,87,153,.08);
    padding: 28px 28px 30px;
    border-radius: 25px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden
}

.course-section .courses-list .course-card .course-meta li {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    margin-right: 11px;
}

.course-section .courses-list .course-card>h3>a {
    color: #000e3d;
	text-decoration: none;
	font-weight: 600;
}

@media only screen and (min-width: 992px) {
	.course-section .courses-list .course-card:nth-child(2) {
		left: -100px
	}
	
}

.course-section .courses-list .course-card:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -1px;
    width: 7px;
    height: 166px;
    background-image: url(../images/shape3.png);
    background-repeat: no-repeat;
	height: 100%;
    background-color: coral;
}

.course-section .courses-list .course-card .course-meta li {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    margin-right: 11px
}

.course-section .courses-list .course-card .course-meta li img {
    margin-right: 7px
}

.course-section .courses-list .course-card .course-meta li:last-child {
    margin-right: 0
}

.course-section .courses-list .course-card .course-meta+span {
    display: inline-block;
    color: #155799;
    font-size: 18px;
    margin-left: auto;
    font-weight: 700
}

.course-section .courses-list .course-card>h3 {
    color: #2b2b2b;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 10px 0
}

.course-section .courses-list .course-card .posted-by>img {
    margin-right: 7px;
    border-radius: 100px
}

.course-section .courses-list .course-card .posted-by>a {
    display: inline-block;
    color: #575757;
    font-size: 14.23px;
    text-transform: capitalize;
    font-weight: 500
}

.course-section .courses-list .course-card .locat {
    margin-left: auto;
    display: inline-block;
    color: #575757;
    font-size: 14.23px
}

.course-section .courses-list .course-card .locat img {
    margin-right: 12px
}

.course-section .all-btn {
    float: right;
    display: inline-block;
    color: #fff;
    font-size: 14.23px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase
}

.course-section .all-btn i {
    padding-left: 13px
}

.section-sub-title {
	text-transform: uppercase;
	position: relative;
	text-align: center;
}

.section-sub-title>span {
	display: block;
	width: 150px;
	height: 2px;
	background-color: #f37335;
	margin: 0 auto;
}

.teachers-section {
	background-image: url(../images/bg.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	position: relative;
}

.teachers-section .section-sub-title {
	color: #fff;
}

.teachers-section .teachers-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: url(../images/overlay.png);
    background-color: rgba(0, 0, 0, 0.5);
	opacity: 0.4;
	z-index: 0;
	top: 0;
	left: 0;
}

.img-round {
	border-radius: 100%;
}
.text-gyellow {
    color: #ecae3d;
}

/** LATEST FROM BLOG */
#blog .section-tittle {
	font-size: 1.5rem;
	text-transform: uppercase;
}

#blog .section-tittle>span {
    display: block;
    width: 50px;
    height: 2px;
    background-color: #f37335;
}
/*--
/*  12 - Blog CSS
/*----------------------------------------*/
.blog-section .blog-wrap {
	margin-top: -10px;
  }
  
  .blog-section .blog-wrap .blog-content-wrap {
	padding-top: 35px;
  }
  
  .single-blog {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 98px 0px rgba(0, 0, 0, 0.07);
			box-shadow: 0px 0px 98px 0px rgba(0, 0, 0, 0.07);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
  }
  
  .single-blog .blog-img {
	position: relative;
	overflow: hidden;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
  }
  
  .single-blog .blog-img a {
	display: block;
  }
  
  .single-blog .blog-img a img {
	width: 100%;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
  }
  
  .single-blog .blog-img .top-meta {
	position: absolute;
	top: 35px;
	left: 30px;
  }
  
  .single-blog .blog-img .top-meta .date {
	width: 65px;
	height: 65px;
	line-height: 65px;
	text-align: center;
	background-image: -webkit-linear-gradient(330deg, #54d6eb 0%, #035cdd 100%);
	background-image: -o-linear-gradient(330deg, #54d6eb 0%, #035cdd 100%);
	background-image: linear-gradient(120deg, #54d6eb 0%, #035cdd 100%);
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	border-radius: 5px;
	font-family: "Manrope", sans-serif;
	display: inline-block;
	text-align: center;
	line-height: 12px;
	padding: 10px;
  }
  
  .single-blog .blog-img .top-meta .date span {
	font-size: 28px;
	line-height: 18px;
	font-weight: 500;
	line-height: 30px;
	display: block;
  }
  
  .single-blog .blog-content {
	padding: 20px;
  }
  
  @media only screen and (max-width: 991px) {
	.single-blog .blog-content {
	  padding: 35px;
	}
  }
  
  @media only screen and (max-width: 575px) {
	.single-blog .blog-content {
	  padding: 35px 24px;
	}
  }
  
  .single-blog .blog-content .blog-meta span {
	font-size: 14px;
	line-height: 24px;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	color: #999999;
	margin-right: 15px;
  }
  
  @media only screen and (max-width: 575px) {
	.single-blog .blog-content .blog-meta span {
	  margin-right: 12px;
	}
  }
  
  .single-blog .blog-content .blog-meta span i {
	color: #005de0;
	margin-right: 5px;
  }
  
  .single-blog .blog-content .title {
	font-size: 22px;
	line-height: 30px;
	color: #333333;
	padding-right: 15px;
	margin-top: 15px;
  }
  
  .single-blog .blog-content p {
	font-size: 14px;
	line-height: 26px;
	font-family: "Manrope", sans-serif;
	font-weight: 400;
	color: #4c4d56;
	margin-top: 10px;
  }
  
  .single-blog .blog-btn {
	border-top: 1px solid #ebebeb;
	padding: 15px 40px;
  }
  
  .single-blog .blog-btn .blog-btn-link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
			justify-content: space-between;
	font-size: 14px;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	color: #005de0;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
  }
  
  .single-blog .blog-btn .blog-btn-link i {
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
  }
  
  .single-blog .blog-btn .blog-btn-link:hover i {
	-webkit-transform: translateX(5px);
		-ms-transform: translateX(5px);
			transform: translateX(5px);
  }
  
  .single-blog:hover .blog-img a img {
	-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
			transform: scale(1.1);
  }
  
  .blog-section-2 {
	padding-bottom: 120px;
  }
  
  @media only screen and (max-width: 1199px) {
	.blog-section-2 {
	  padding-bottom: 100px;
	}
  }
  
  @media only screen and (max-width: 991px) {
	.blog-section-2 {
	  padding-bottom: 80px;
	}
  }
  
  @media only screen and (max-width: 767px) {
	.blog-section-2 {
	  padding-bottom: 60px;
	}
  }
  
  .blog-section-2 .blog-wrap .section-title .sub-title {
	color: #ff5538;
  }
  
  .blog-section-2 .blog-wrap .blog-content-wrap .single-blog .blog-img .top-meta .date {
	background: #ff5538;
  }
  
  .blog-section-2 .blog-wrap .blog-content-wrap .single-blog .blog-content .blog-meta span a:hover {
	color: #ff5538;
  }
  
  .blog-section-2 .blog-wrap .blog-content-wrap .single-blog .blog-content .blog-meta span i {
	color: #ff5538;
  }
 .single-blog .blog-content .title a {
	text-decoration: none;
  }
  
  .blog-section-2 .blog-wrap .blog-content-wrap .single-blog .blog-content .title a:hover {
	color: #ff5538;
  }
  
  .blog-section-2 .blog-wrap .blog-content-wrap .single-blog .blog-btn .blog-btn-link {
	color: #ff5538;
  }
  
  .blog-grid-wrap {
	margin-top: -30px;
  }
  
  .blog-grid-wrap .pagination {
	margin-top: 70px;
  }
  
  /*--
  /*  13 - Brand CSS
  /*----------------------------------------*/
  .brand-title {
	font-size: 22px;
	font-weight: 600;
	font-family: "Manrope", sans-serif;
	color: #717171;
	margin-top: -7px;
  }
  
  @media only screen and (max-width: 575px) {
	.brand-title {
	  font-size: 20px;
	}
  }
  
  .brand-title span {
	color: #005de0;
	font-weight: 700;
  }
  
  .brand-active {
	max-width: 1070px;
	width: 100%;
	margin: 45px auto 0;
  }
  
  .Brand-section-2 .brand-wrapper-2 {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 144px 0px rgba(0, 0, 0, 0.04);
			box-shadow: 0px 0px 144px 0px rgba(0, 0, 0, 0.04);
	border-radius: 10px;
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	margin-bottom: -150px;
	z-index: 1;
  }
  
  .Brand-section-3 .brand-wrapper {
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 120px;
  }
  
  @media only screen and (max-width: 1199px) {
	.Brand-section-3 .brand-wrapper {
	  padding-bottom: 100px;
	}
  }
  
  @media only screen and (max-width: 991px) {
	.Brand-section-3 .brand-wrapper {
	  padding-bottom: 80px;
	}
  }
  
  @media only screen and (max-width: 767px) {
	.Brand-section-3 .brand-wrapper {
	  padding-bottom: 60px;
	}
  }
  
  .Brand-section-3 .brand-wrapper .brand-title span {
	color: #ff5538;
  }


.fullscreen-bg video {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.fullscreen-bg {
  width: 100%;
  position: relative;
  top: 0;
  height: 100vh;
}

.fullscreen-bg div.overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/overlay.png);
  background-color: rgba(0, 0, 0, 0.5);
}
.scroll-down {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    z-index: 13;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
	color: #fff;
}

.portfolio-list__item:hover .bg-overlay {
    opacity: 1;
    visibility: visible;
}
.center-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bg-overlay {
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    background-image: -webkit-linear-gradient(to right, #23ced5aa 0%, #5192e1aa 100%);
    background-image: -moz-linear-gradient(to right, #23ced5aa 0%, #5192e1aa 100%);
    background-image: -ms-linear-gradient(to right, #23ced5aa 0%, #5192e1aa 100%);
    background-image: -o-linear-gradient(to right, #23ced5aa 0%, #5192e1aa 100%);
    background-image: linear-gradient(to right, #23ced5aa 0%, #5192e1aa 100%);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
	border-radius: 10px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.bg-overlay .opens {
    height: 77px;
    width: 75px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid #fff;
    display: inline-block;
    background: #fff;
    font-size: 28px;
    text-align: center;
    line-height: 70px;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.bg-overlay .opens img {
	width: 100%;
	height: 100%;
}

.bg-blog {
	background-image: url(../images/bg-blog.png);
    background-position: center center;
    background-repeat: no-repeat;
}

footer {
    background-color: #f2f7fd;
    padding: 30px 0;
}

footer ul {
	padding: 0;
	margin: 0;
}

footer .widget-about img.logo {
    margin-bottom: 28px;
	width: 70px;
	height: 70px;
}

footer .widget-contact ul li {
    display: block;
    margin-bottom: 19px;
	list-style: none;
	color: #fff;
}

footer .widget-contact ul li:last-child {
    margin-bottom: 0
}

footer .widget-contact ul li .contact-info>svg {
    vertical-align: top;
    margin-right: 5px;
    position: relative;
    top: 6px
}

footer .widget-contact ul li .contact-tt {
    display: inline-block;
    max-width: calc(100% - 21px)
}

footer .widget-contact ul li .contact-tt>h4 {
    color: #d5d5d5;
    margin-bottom: 6px;
    font-weight: 600;
	font-size: 0.9rem;
	line-height: normal;
	padding-bottom: 0;
}

footer .widget-contact ul li .contact-tt>span {
    display: block;
    color: #5e6576;
    font-size: 14.23px
}

footer .widget-title {
    color: #eef2ff;
    font-size: 18.29px;
    font-weight: 600;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 15px
}

footer .widget-links li {
    margin-bottom: 7px;
	list-style: none;
}

footer .widget-links li:last-child {
    margin-bottom: 0
}

footer .widget-links li a {
    display: block;
    color: #d5d5d5;
    font-size: 14.23px;
    font-weight: 500;
	text-decoration: none;
}

footer .widget-links li a:hover {
    color: #1260a0;
    padding-left: 5px
}

footer .widget-iframe iframe {
    width: 100%;
    height: 200px
}

footer .bottom-footer {
    border-top: 1px solid #bfbfbf;
    padding-top: 26px
}

footer .bottom-footer .social-links {
    text-align: right
}
.bdt-advanced-icon-box-icon {
	position: relative;
    z-index: 1;
	display: inline-block;
}
.bdt-advanced-icon-box-icon::before {
	content: "";
    height: 120px;
    width: 120px;
    text-align: center;
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    color: var(--white-color);
    background-color: var(--white-color);
    position: absolute;
    top: 55px;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: rgb(42 67 113 / 21%) 8px 8px 20px 0px;
}
.bdt-icon-wrapper {
	padding: 15px 20px;
    border-radius: 0 0 0 0;
    overflow: hidden;
    font-size: 80px;
    width: 80px;
    transform: rotate(0deg);
	position: relative;
	display: inline-block;
    line-height: 1;
	height: auto;
    text-align: center;
    position: relative;
    box-sizing: content-box;
}

.bdt-icon-wrapper img {
	height: auto;
    max-width: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
	position: relative;
    display: block;
    transition: transform 350ms cubic-bezier(.24,.85,.58,1);
    z-index: 1;
}

.bdt-icon-wrapper:after {
    content: '';
    position: absolute;
    transition: all .3s ease-out;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
}

#service .abt-col {
	padding: 15px;
}

.abt-col:hover {
    background-color: #fff;
    box-shadow: 8px 8px 30px 0 rgb(42 67 113 / 15%);
	border-radius: 15px;
}

.abt-col:hover .bdt-advanced-icon-box-icon::before {
    box-shadow: none;
}

@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(60px);
	}
}


svg #wheel {
	animation: scroll ease 2s infinite;
}
.position-relative {
    position: relative!important;
}
.bg-dot.primary {
    background-image: radial-gradient(#3f78e0 2px,transparent 2.5px);
}
figure img {
	width: 100%;
}

/* BLog */
.widget-latest ul {
	padding: 0;
	margin: 0;
}
.widget-latest ul li {
	list-style: none;
}
.widget-latest ul.block-list .single-item {
  }
  .widget-latest ul.block-list .single-item:last-child {
	margin-bottom: 0;
  }
  .widget-latest ul.block-list .single-item .item-img {
	margin-top: 5px;
	position: relative;
	overflow: hidden;
	background-color: #d7d8d9;
    border: 1px solid #d9d9db;
    min-height: 50px;
  }
  .widget-latest ul.block-list .single-item .item-img::before {
	content: 'Hình ảnh';
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    padding: 10px;
  }
  .widget-latest ul.block-list .single-item .item-img a {
	display: block;
  }
  .widget-latest ul.block-list .single-item .item-img a img {
	transform: scale(1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-latest ul.block-list .single-item .item-img .count-number {
	color: #ffffff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	right: -5px;
	bottom: -5px;
	z-index: 3;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	background-color: rgba(255, 74, 82, 0.8);
  }
  .widget-latest ul.block-list .single-item .item-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
  }
  .widget-latest ul.block-list .single-item .item-content .item-ctg {
	color: #ff4a52;
	font-weight: 600;
  }
  .widget-latest ul.block-list .single-item .item-content .item-title {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 8px;
	color: #111111;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
  }
  .widget-latest ul.block-list .single-item .item-content .item-title a {
	color: #111111;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
  }
  .widget-latest ul.block-list .single-item .item-content .item-title a:hover {
	color: #ff4a52;
  }
  .widget-latest ul.block-list .single-item .item-content .item-post-by {
	line-height: 1;
	font-size: 15px;
  }
  .widget-latest ul.block-list .single-item .item-content .item-post-by a {
	color: #111111;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-latest ul.block-list .single-item .item-content .item-post-by a span {
	color: #909090;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-latest ul.block-list .single-item .item-content .item-post-by a i {
	color: #ff4a52;
	margin-right: 10px;
  }
  @media only screen and (max-width: 1199px) {
	.widget-latest ul.block-list .single-item .item-content .item-post-by a i {
	  margin-right: 5px;
	}
  }
  .widget-latest ul.block-list .single-item .item-content .item-post-by a:hover {
	color: #ff4a52;
  }
  .widget-latest ul.block-list .single-item .item-content .item-post-by a:hover span {
	color: #ff4a52;
  }
  .widget-latest ul.block-list .single-item:hover .item-img a img {
	transform: scale(1.2);
  }
  .widget-blog-post ul.block-list .single-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 20px;
  }
  .widget-blog-post ul.block-list .single-item:last-child {
	margin-bottom: 0;
  }
  .widget-blog-post ul.block-list .single-item .item-img {
	margin-right: 15px;
	margin-top: 2px;
	overflow: hidden;
  }
  .widget-blog-post ul.block-list .single-item .item-img a {
	display: block;
  }
  .widget-blog-post ul.block-list .single-item .item-img img {
	transform: scale(1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-blog-post ul.block-list .single-item .item-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-date a {
	color: #646464;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-date a i {
	color: #ff4a52;
	margin-right: 10px;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-date a:hover {
	color: #ff4a52;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-title {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 8px;
	color: #111111;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-title a {
	color: #111111;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-title a:hover {
	color: #ff4a52;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-by {
	line-height: 1;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-by a {
	color: #111111;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-by a span {
	color: #909090;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-by a i {
	color: #ff4a52;
	margin-right: 10px;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-by a:hover {
	color: #ff4a52;
  }
  .widget-blog-post ul.block-list .single-item .item-content .item-post-by a:hover span {
	color: #ff4a52;
  }
  .widget-blog-post ul.block-list .single-item:hover .item-img img {
	transform: scale(1.2);
  }

  .teachers-section .container {
	  position: relative;
  }

  .team-name {
	  font-size: 15px;
	  color: #fff;
	  text-align: center;
  }

  .review-content {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
  }
  

/* end of min-width 1200px */

.video-background {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -99;
  background-image: url(../images/yugen-holdings.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#vidtop-content {
	top: 0;
	color: #fff;
}
.vid-info { position: absolute; top: 0; right: 0; width: 33%; background: rgba(0,0,0,0.3); color: #fff; padding: 1rem; font-family: Avenir, Helvetica, sans-serif; }
.vid-info h1 { font-size: 2rem; font-weight: 700; margin-top: 0; line-height: 1.2; }
.vid-info a { display: block; color: #fff; text-decoration: none; background: rgba(0,0,0,0.5); transition: .6s background; border-bottom: none; margin: 1rem auto; text-align: center; }
@media (min-aspect-ratio: 16/9) {
  .video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground { width: 300%; left: -100%; }
}
@media all and (max-width: 600px) {
.vid-info { width: 50%; padding: .5rem; }
.vid-info h1 { margin-bottom: .2rem; }
}
@media all and (max-width: 500px) {
.vid-info .acronym { display: none; }
}
ul.ul-design li {list-style: none;}