/**
* Name: EMERITE
* Updated: Mar 10 2025 with Bootstrap v5.3.3
*/

.container {
	max-width: 980px;
}

/**
   * #NOTIFICATION TOAST 
   */

.notification-toast {
	bottom: 30px;
}

/**
 * responsive larger than 1200px screen
 */

@media (min-width: 1200px) {
	/**
   * #REUSED STYLE 
   */

	.container {
		max-width: 1200px;
	}

	.product-featured .showcase > div {
		min-width: calc(50% - 10px);
	}

	.product-featured .display-number {
		--fs-5: 1.125rem;
	}

	.product-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1400px) {
	/**
   * #REUSED STYLE 
   */

	.container {
		max-width: 1350px;
	}

	.banner-content {
		left: 110px;
		max-width: 460px;
	}
}

:root {
	/**
   * colors
   */

	--spanish-gray: hsl(0, 0%, 60%);
	--sonic-silver: hsl(0, 0%, 47%);
	--eerie-black: hsl(0, 0%, 13%);
	--salmon-pink: hsl(353, 100%, 78%);
	--sandy-brown: hsl(29, 90%, 65%);
	--bittersweet: hsl(0, 100%, 70%);
	--ocean-green: hsl(152, 51%, 52%);
	--davys-gray: hsl(0, 0%, 33%);
	--cultured: hsl(0, 0%, 93%);
	--white: hsl(0, 100%, 100%);
	--onyx: hsl(0, 0%, 27%);

	/**
   * typography
   */

	--fs-1: 1.563rem;
	--fs-2: 1.375rem;
	--fs-3: 1.25rem;
	--fs-4: 1.125rem;
	--fs-5: 1rem;
	--fs-6: 0.938rem;
	--fs-7: 0.875rem;
	--fs-8: 0.813rem;
	--fs-9: 0.75rem;
	--fs-10: 0.688rem;
	--fs-11: 0.625rem;

	--weight-300: 300;
	--weight-400: 400;
	--weight-500: 500;
	--weight-600: 600;
	--weight-700: 700;

	/**
   * border-radius
   */

	--border-radius-md: 10px;
	--border-radius-sm: 5px;

	/**
   * transition 
   */

	--transition-timing: 0.2s ease;
}

/**
 * NOTIFICATION TOAST 
 */

.notification-toast {
	position: fixed;
	bottom: 80px;
	left: 20px;
	right: 20px;
	background: var(--white);
	max-width: 300px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	border-radius: var(--border-radius-md);
	box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.15);
	transform: translateX(calc(-100% - 40px));
	transition: 0.5s ease-in-out;
	z-index: 5;
	animation: slideInOut 10s ease-in-out infinite;
}

@keyframes slideInOut {
	0%,
	45%,
	100% {
		transform: translateX(calc(-100% - 40px));
		opacity: 0;
		visibility: hidden;
	}

	50%,
	95% {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}
}

.notification-toast.closed {
	display: none;
}

.toast-close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	color: var(--sonic-silver);
}

.toast-close-btn ion-icon {
	--ionicon-stroke-width: 50px;
}

.toast-banner {
	width: 70px;
	height: 70px;
	border: 1px solid var(--cultured);
	border-radius: var(--border-radius-sm);
}

.toast-banner img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.toast-detail {
	width: calc(100% - 85px);
	padding-right: 10px;
}

.toast-message {
	font-size: var(--fs-10);
	color: var(--sonic-silver);
	margin-bottom: 8px;
}

.toast-title {
	font-size: var(--fs-7);
	font-weight: var(--weight-500);
	color: var(--onyx);
}

.toast-meta {
	font-size: var(--fs-10);
	color: var(--sonic-silver);
}

/**
 * NOTIFICATION TOAST 
 */

.notification-toast {
	position: fixed;
	bottom: 80px;
	left: 20px;
	right: 20px;
	background: var(--white);
	max-width: 300px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	-webkit-border-radius: var(--border-radius-md);
	border-radius: var(--border-radius-md);
	-webkit-box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.15);
	box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.15);
	-webkit-transform: translateX(-webkit-calc(-100% - 40px));
	-ms-transform: translateX(calc(-100% - 40px));
	transform: translateX(calc(-100% - 40px));
	-webkit-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	z-index: 5;
	-webkit-animation: slideInOut 10s ease-in-out infinite;
	animation: slideInOut 10s ease-in-out infinite;
}

@-webkit-keyframes slideInOut {
	0%,
	45%,
	100% {
		-webkit-transform: translateX(-webkit-calc(-100% - 40px));
		transform: translateX(calc(-100% - 40px));
		opacity: 0;
		visibility: hidden;
	}

	50%,
	95% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}
}

@keyframes slideInOut {
	0%,
	45%,
	100% {
		-webkit-transform: translateX(-webkit-calc(-100% - 40px));
		transform: translateX(calc(-100% - 40px));
		opacity: 0;
		visibility: hidden;
	}

	50%,
	95% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}
}

.notification-toast.closed {
	display: none;
}

.toast-close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	color: var(--sonic-silver);
}

.toast-close-btn ion-icon {
	--ionicon-stroke-width: 50px;
}

.toast-banner {
	width: 70px;
	height: 70px;
	border: 1px solid var(--cultured);
	-webkit-border-radius: var(--border-radius-sm);
	border-radius: var(--border-radius-sm);
}

.toast-banner img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.toast-detail {
	width: -webkit-calc(100% - 85px);
	width: calc(100% - 85px);
	padding-right: 10px;
}

.toast-message {
	font-size: var(--fs-10);
	color: var(--sonic-silver);
	margin-bottom: 8px;
}

.toast-title {
	font-size: var(--fs-7);
	font-weight: var(--weight-500);
	color: var(--onyx);
}

.toast-meta {
	font-size: var(--fs-10);
	color: var(--sonic-silver);
}

button {
	background: none;
	font: inherit;
	border: none;
	cursor: pointer;
}

/*-----------------------------------*\
  #PRODUCT FEATURED
\*-----------------------------------*/

.product-featured {
	margin-bottom: 30px;
}

.product-featured .showcase-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: inline mandatory;
}

.product-featured .showcase-container {
	min-width: 100%;
	padding: 30px;
	border: 1px solid var(--cultured);
	border-radius: var(--border-radius-md);
	scroll-snap-align: start;
}

.product-featured .showcase-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-featured .showcase-content {
	margin-top: 30px;
}

.product-featured .showcase-rating {
	color: var(--sandy-brown);
	display: flex;
	align-items: center;
	font-size: 16px;
	margin-bottom: 15px;
}

.product-featured .showcase-title {
	font-size: var(--fs-7);
	color: var(--eerie-black);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-transform: uppercase;
	margin-bottom: 3px;
}

.product-featured .showcase-desc {
	color: var(--sonic-silver);
	font-size: var(--fs-7);
	font-weight: var(--weight-300);
	margin-bottom: 10px;
}

.product-featured .price-box {
	font-size: var(--fs-3);
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.product-featured .price {
	color: var(--salmon-pink);
	font-weight: var(--weight-700);
}

.product-featured del {
	color: var(--sonic-silver);
	font-weight: var(--weight-300);
}

.product-featured .showcase-status {
	margin-bottom: 15px;
}

.product-featured .showcase-status .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--eerie-black);
	font-size: var(--fs-9);
	font-weight: var(--weight-400);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.product-featured .showcase-status-bar {
	background: var(--cultured);
	position: relative;
	height: 10px;
	border-radius: 5px;
}

.product-featured .showcase-status-bar::before {
	position: absolute;
	content: '';
	top: 3px;
	left: 3px;
	height: 4px;
	width: 40%;
	background: rgb(236, 65, 30);
	border-radius: 4px;
}

.product-featured .countdown-desc {
	color: var(--eerie-black);
	font-size: var(--fs-9);
	font-weight: var(--weight-600);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.product-featured .countdown {
	display: flex;
	gap: 5px;
}

.product-featured .countdown-content {
	padding: 5px;
	background: var(--cultured);
	border-radius: var(--border-radius-md);
	text-align: center;
}

.product-featured .display-number {
	color: rgb(236, 65, 30);
	font-size: var(--fs-5);
	font-weight: var(--weight-500);
	min-width: 40px;
}

.product-featured .display-text {
	color: var(--davys-gray);
	font-size: var(--fs-11);
}

.product-featured .countdown {
	gap: 20px;
}

.product-featured .showcase {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.product-featured .showcase-img {
	max-width: fit-content;
}

.product-featured .showcase-content {
	margin-top: 0;
	min-width: calc(100% - 345px);
}

.container {
	max-width: 980px;
}

/**
   * #NOTIFICATION TOAST 
   */

.notification-toast {
	bottom: 30px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: 'Open Sans', sans-serif;
	color: #4d4643;
}

a {
	color: rgb(236, 65, 30);
	text-decoration: none;
}

a:hover {
	color: rgb(236, 65, 30);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: rgb(236, 65, 30);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: rgb(236, 65, 30);
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

#header .logo a {
	color: rgb(236, 65, 30);
}

#header .logo a span {
	color: rgba(33, 8, 220, 0.952);
}
#header .logo a .emerite {
	color: rgb(236, 65, 30);
}

#header .logo img {
	max-height: 53px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
	margin-left: 20px;
	border-left: 1px solid #c4c4c4;
}

.header-social-links a {
	color: #a0a0a0;
	display: inline-block;
	line-height: 0px;
	transition: 0.3s;
	padding-left: 20px;
}

.header-social-links a i {
	line-height: 0;
}

.header-social-links a:hover {
	color: rgb(236, 65, 30);
}

@media (max-width: 768px) {
	.header-social-links {
		padding: 0 15px 0 0;
		border-left: 0;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #111;
	white-space: nowrap;
	text-transform: uppercase;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: rgb(236, 65, 30);
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-top: 2px solid rgb(236, 65, 30);
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #111;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
	color: rgb(236, 65, 30);
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #111;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: rgb(236, 65, 30);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
	color: rgb(236, 65, 30);
}

.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	overflow: hidden;
	position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

#hero .carousel-container {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: absolute;
	bottom: 60px;
	top: 70px;
	left: 55px;
	right: 55px;
}

#hero .carousel-content {
	background: rgba(4, 4, 4, 0.7);
	padding: 20px;
	color: #fff;
	border-top: 5px solid rgb(236, 65, 30);
}

#hero .carousel-content h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: 700;
}

#hero .btn-get-started {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 4px;
	transition: 0.5s;
	line-height: 1;
	margin: 10px;
	color: #fff;
	animation-delay: 0.8s;
	border: 2px solid rgb(236, 65, 30);
}

#hero .btn-get-started:hover {
	background: rgb(236, 65, 30);
	color: #fff;
	text-decoration: none;
}

#hero .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
	opacity: 1;
	transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	left: 0;
	transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	background: none;
	font-size: 30px;
	line-height: 0;
	width: auto;
	height: auto;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50px;
	transition: 0.3s;
	color: rgba(255, 255, 255, 0.6);
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.6);
	color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
	cursor: pointer;
	background: #fff;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: 0.6;
	transition: 0.3s;
}

#hero .carousel-indicators li.active {
	opacity: 1;
	background: rgb(236, 65, 30);
}

@media (min-width: 1024px) {
	#hero .carousel-content {
		width: 60%;
	}

	#hero .carousel-control-prev,
	#hero .carousel-control-next {
		width: 5%;
	}
}

@media (max-width: 992px) {
	#hero .carousel-container {
		top: 58px;
	}

	#hero .carousel-content h2 {
		margin-bottom: 15px;
		font-size: 22px;
	}

	#hero .carousel-content p {
		font-size: 15px;
	}
}

@media (max-height: 500px) {
	#hero {
		height: 120vh;
	}
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
	overflow: hidden;
}

.departments .nav-tabs {
	border: 0;
}

.departments .nav-link {
	border: 0;
	padding: 12px 15px 12px 0;
	transition: 0.3s;
	color: #111;
	border-radius: 0;
	border-right: 2px solid #ebf1f6;
	font-weight: 600;
	font-size: 15px;
}

.departments .nav-link:hover {
	color: rgb(236, 65, 30);
}

.departments .nav-link.active {
	color: rgba(33, 8, 220, 0.952);
	border-color: rgb(236, 65, 30);
}

.departments .tab-pane.active {
	animation: fadeIn 0.5s ease-out;
}

.departments .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #111;
}

.departments .details p {
	color: #111;
}

.departments .details p:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.departments .nav-link {
		border: 0;
		padding: 15px;
	}

	.departments .nav-link.active {
		color: #fff;
		background: #1977cc;
	}
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors {
	background: #fff;
}

.doctors .member {
	position: relative;
	box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
	padding: 30px;
	border-radius: 10px;
}

.doctors .member .pic {
	overflow: hidden;
	width: 180px;
	border-radius: 50%;
}

.doctors .member .pic img {
	transition: ease-in-out 0.3s;
}

.doctors .member:hover img {
	transform: scale(1.1);
}

.doctors .member .member-info {
	padding-left: 30px;
}

.doctors .member h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 20px;
	color: #111;
}

.doctors .member span {
	display: block;
	font-size: 15px;
	padding-bottom: 10px;
	position: relative;
	font-weight: 500;
}

.doctors .member span::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 1px;
	background: #b2c8dd;
	bottom: 0;
	left: 0;
}

.doctors .member p {
	margin: 10px 0 0 0;
	font-size: 14px;
}

.doctors .member .social {
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.doctors .member .social a {
	transition: ease-in-out 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	width: 32px;
	height: 32px;
	background: #111;
}

.doctors .member .social a i {
	color: #fff;
	font-size: 16px;
	margin: 0 2px;
}

.doctors .member .social a:hover {
	background: rgb(236, 65, 30);
}

.doctors .member .social a + a {
	margin-left: 8px;
}

.appointment-btn {
	margin-left: 25px;
	background: #1977cc;
	color: #fff;
	border-radius: 50px;
	padding: 8px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	display: inline-block;
}

.appointment-btn:hover {
	background: #166ab5;
	color: #fff;
}

@media (max-width: 768px) {
	.appointment-btn {
		margin: 0 15px 0 0;
		padding: 6px 18px;
	}
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
	width: 100%;
}

.appointment .php-email-form .form-group {
	padding-bottom: 8px;
}

.appointment .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.appointment .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.appointment .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.appointment .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.appointment .php-email-form .loading:before {
	content: '';
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
	border-color: rgb(236, 65, 30);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
	height: 44px;
}

.appointment .php-email-form textarea {
	padding: 10px 12px;
}

.appointment .php-email-form button[type='submit'] {
	background: rgb(236, 65, 30);
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.appointment .php-email-form button[type='submit']:hover {
	background: #1c84e3;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f7f7f7;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: rgb(236, 65, 30);
	bottom: 0;
	left: calc(50% - 25px);
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: rgb(236, 65, 30);
	min-height: 40px;
	margin-top: 72px;
}

.breadcrumbs h2 {
	font-size: 26px;
	font-weight: 300;
	color: #fff;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	color: #fff;
}

.breadcrumbs ol a {
	color: #fff;
}

.breadcrumbs ol li + li {
	padding-left: 10px;
}

.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: '/';
}

@media (max-width: 991px) {
	.breadcrumbs {
		margin-top: 58px;
	}

	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	text-align: center;
	padding: 70px 20px 80px 20px;
	transition: all ease-in-out 0.3s;
	background: #fff;
}

.services .icon-box .icon {
	margin: 0 auto;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: ease-in-out 0.3s;
	position: relative;
}

.services .icon-box .icon i {
	font-size: 36px;
	transition: 0.5s;
	position: relative;
}

.services .icon-box .icon svg {
	position: absolute;
	top: 0;
	left: 0;
}

.services .icon-box .icon svg path {
	transition: 0.5s;
	fill: #f5f5f5;
}

.services .icon-box h4 {
	font-weight: 600;
	margin: 10px 0 15px 0;
	font-size: 22px;
}

.services .icon-box h4 a {
	color: #111;
	transition: ease-in-out 0.3s;
}

.services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.services .icon-box:hover {
	border-color: #fff;
	box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
	color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
	color: #fff;
}

.services .iconbox-blue:hover .icon path {
	fill: #47aeff;
}

.services .iconbox-orange i {
	color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
	color: #fff;
}

.services .iconbox-orange:hover .icon path {
	fill: #ffa76e;
}

.services .iconbox-pink i {
	color: #e80368;
}

.services .iconbox-pink:hover .icon i {
	color: #fff;
}

.services .iconbox-pink:hover .icon path {
	fill: #e80368;
}

.services .iconbox-yellow i {
	color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
	color: #fff;
}

.services .iconbox-yellow:hover .icon path {
	fill: #ffbb2c;
}

.services .iconbox-red i {
	color: #ff5828;
}

.services .iconbox-red:hover .icon i {
	color: #fff;
}

.services .iconbox-red:hover .icon path {
	fill: #ff5828;
}

.services .iconbox-teal i {
	color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
	color: #fff;
}

.services .iconbox-teal:hover .icon path {
	fill: #11dbcf;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
	border-top: 1px solid #ececec;
	border-left: 1px solid #ececec;
}

.clients .client-logo {
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	overflow: hidden;
	background: #fff;
	height: 100px;
}

.clients .client-logo img {
	transition: all 0.3s ease-in-out;
	height: 36px;
	filter: grayscale(100%);
}

.clients .client-logo:hover img {
	filter: none;
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content h2 {
	font-weight: 700;
	font-size: 42px;
	line-height: 60px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.about-us .content h3 {
	font-weight: 500;
	line-height: 32px;
	font-size: 24px;
}

.about-us .content ul {
	list-style: none;
	padding: 0;
}

.about-us .content ul li {
	padding: 10px 0 0 28px;
	position: relative;
}

.about-us .content ul i {
	left: 0;
	top: 7px;
	position: absolute;
	font-size: 20px;
	color: rgb(236, 65, 30);
}

.about-us .content p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
	margin-bottom: 20px;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
	position: relative;
	overflow: hidden;
}

.team .member .social {
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 40px;
	opacity: 0;
	transition: ease-in-out 0.3s;
	text-align: center;
	background: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
}

.team .member .social a {
	transition: color 0.3s;
	color: #111;
	margin: 0 10px;
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.team .member .social a i {
	line-height: 0;
}

.team .member .social a:hover {
	color: rgb(236, 65, 30);
}

.team .member .social i {
	font-size: 18px;
	margin: 0 2px;
}

.team .member .member-info {
	padding: 25px 15px;
}

.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 18px;
	color: #111;
}

.team .member .member-info span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	color: #b4aca8;
}

.team .member .member-info p {
	font-style: italic;
	font-size: 14px;
	line-height: 26px;
	color: #847872;
}

.team .member:hover .social {
	opacity: 1;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
	height: 60px;
	display: block;
	background: none;
	border-radius: 0;
}

.skills .progress .skill {
	padding: 0;
	margin: 0 0 6px 0;
	text-transform: uppercase;
	display: block;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	color: #111;
}

.skills .progress .skill .val {
	float: right;
	font-style: normal;
}

.skills .progress-bar-wrap {
	background: #e7e7e7;
}

.skills .progress-bar {
	width: 1px;
	height: 10px;
	transition: 0.9s;
	background-color: rgb(236, 65, 30);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: ease-in-out 0.3s;
}

.features .icon-box i {
	font-size: 32px;
	padding-right: 10px;
	line-height: 1;
}

.features .icon-box h3 {
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 16px;
}

.features .icon-box h3 a {
	color: #111;
	transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
	color: rgb(236, 65, 30);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.contact .info {
	background: #fff;
}

.contact .info i {
	font-size: 20px;
	color: rgb(236, 65, 30);
	float: left;
	width: 44px;
	height: 44px;
	border: 1px solid rgb(236, 65, 30);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #111;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #444444;
}

.contact .info:hover i {
	background: rgb(236, 65, 30);
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
	padding: 30px;
	background: #fff;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: rgb(236, 65, 30);
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: '';
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid rgb(236, 65, 30);
	border-top-color: #eee;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: rgb(236, 65, 30);
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type='submit'] {
	background: rgb(236, 65, 30);
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type='submit']:hover {
	background: rgb(236, 65, 30);
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
	padding: 0px 0 20px 0;
}

.blog .entry {
	margin-bottom: 60px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
	max-height: 440px;
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}

.blog .entry .entry-title {
	font-size: 28px;
	font-weight: bold;
	padding: 0;
	margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
	color: #111;
	transition: 0.3s;
}

.blog .entry .entry-title a:hover {
	color: rgb(236, 65, 30);
}

.blog .entry .entry-meta {
	margin-bottom: 15px;
	color: #777777;
}

.blog .entry .entry-meta ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

.blog .entry .entry-meta ul li + li {
	padding-left: 20px;
}

.blog .entry .entry-meta i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
}

.blog .entry .entry-meta a {
	color: #847872;
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}

.blog .entry .entry-content p {
	line-height: 24px;
}

.blog .entry .entry-content .read-more {
	-moz-text-align-last: right;
	text-align-last: right;
}

.blog .entry .entry-content .read-more a {
	display: inline-block;
	background: rgb(236, 65, 30);
	color: #fff;
	padding: 6px 20px;
	transition: 0.3s;
	font-size: 14px;
	border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
	background: rgb(236, 65, 30);
}

.blog .entry .entry-content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
}

.blog .entry .entry-content blockquote {
	overflow: hidden;
	background-color: #fafafa;
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
	color: #4d4643;
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #111;
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog .entry .entry-footer {
	padding-top: 10px;
	border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
	color: #5e5e5e;
	display: inline;
}

.blog .entry .entry-footer a {
	color: #1e1e1e;
	transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
	color: rgb(236, 65, 30);
}

.blog .entry .entry-footer .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
}

.blog .entry .entry-footer .cats li {
	display: inline-block;
}

.blog .entry .entry-footer .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
}

.blog .entry .entry-footer .tags li {
	display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
	padding-right: 6px;
	color: #6c757d;
	content: ',';
}

.blog .entry .entry-footer .share {
	font-size: 16px;
}

.blog .entry .entry-footer .share i {
	padding-left: 5px;
}

.blog .entry-single {
	margin-bottom: 30px;
}

.blog .blog-author {
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
	width: 120px;
	margin-right: 20px;
}

.blog .blog-author h4 {
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 0px;
	padding: 0;
	color: #111;
}

.blog .blog-author .social-links {
	margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
	color: rgba(17, 17, 17, 0.5);
	margin-right: 5px;
}

.blog .blog-author p {
	font-style: italic;
	color: #bfb9b6;
}

.blog .blog-comments {
	margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
	font-weight: bold;
}

.blog .blog-comments .comment {
	margin-top: 30px;
	position: relative;
}

.blog .blog-comments .comment .comment-img {
	margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
	width: 60px;
}

.blog .blog-comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
	font-weight: bold;
	color: #4d4643;
	transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
	color: rgb(236, 65, 30);
}

.blog .blog-comments .comment h5 .reply {
	padding-left: 10px;
	color: #111;
}

.blog .blog-comments .comment h5 .reply i {
	font-size: 20px;
}

.blog .blog-comments .comment time {
	display: block;
	font-size: 14px;
	color: #2b2b2b;
	margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
	padding-left: 40px;
}

.blog .blog-comments .reply-form {
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
	font-weight: bold;
	font-size: 22px;
}

.blog .blog-comments .reply-form p {
	font-size: 14px;
}

.blog .blog-comments .reply-form input {
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
	box-shadow: none;
	border-color: rgb(236, 65, 30);
}

.blog .blog-comments .reply-form textarea {
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
	box-shadow: none;
	border-color: rgb(236, 65, 30);
}

.blog .blog-comments .reply-form .form-group {
	margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
	border-radius: 4px;
	padding: 10px 20px;
	border: 0;
	background-color: #111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
	background-color: #1e1e1e;
}

.blog .blog-pagination {
	color: #444444;
}

.blog .blog-pagination ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.blog .blog-pagination li {
	margin: 0 5px;
	transition: 0.3s;
}

.blog .blog-pagination li a {
	color: #111;
	padding: 7px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
	background: rgb(236, 65, 30);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
	color: #fff;
}

.blog .sidebar {
	padding: 30px;
	margin: 0 0 60px 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
	font-size: 20px;
	font-weight: 700;
	padding: 0 0 0 0;
	margin: 0 0 15px 0;
	color: #111;
	position: relative;
}

.blog .sidebar .sidebar-item {
	margin-bottom: 30px;
}

.blog .sidebar .search-form form {
	background: #fff;
	border: 1px solid #ddd;
	padding: 3px 10px;
	position: relative;
}

.blog .sidebar .search-form form input[type='text'] {
	border: 0;
	padding: 4px;
	border-radius: 4px;
	width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	background: rgb(236, 65, 30);
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	line-height: 0;
}

.blog .sidebar .search-form form button i {
	line-height: 0;
}

.blog .sidebar .search-form form button:hover {
	background: rgb(236, 65, 30);
}

.blog .sidebar .categories ul {
	list-style: none;
	padding: 0;
}

.blog .sidebar .categories ul li + li {
	padding-top: 10px;
}

.blog .sidebar .categories ul a {
	color: #111;
	transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
	color: rgb(236, 65, 30);
}

.blog .sidebar .categories ul a span {
	padding-left: 5px;
	color: #b4aca8;
	font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
	margin-top: 15px;
}

.blog .sidebar .recent-posts img {
	width: 80px;
	float: left;
}

.blog .sidebar .recent-posts h4 {
	font-size: 15px;
	margin-left: 95px;
	font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
	color: #111;
	transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
	color: rgb(236, 65, 30);
}

.blog .sidebar .recent-posts time {
	display: block;
	margin-left: 95px;
	font-style: italic;
	font-size: 14px;
	color: #b4aca8;
}

.blog .sidebar .tags {
	margin-bottom: -10px;
}

.blog .sidebar .tags ul {
	list-style: none;
	padding: 0;
}

.blog .sidebar .tags ul li {
	display: inline-block;
}

.blog .sidebar .tags ul a {
	color: #515151;
	font-size: 14px;
	padding: 6px 14px;
	margin: 0 6px 8px 0;
	border: 1px solid #c4c4c4;
	display: inline-block;
	transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
	color: #fff;
	border: 1px solid rgb(236, 65, 30);
	background: rgb(236, 65, 30);
}

.blog .sidebar .tags ul a span {
	padding-left: 5px;
	color: #aaaaaa;
	font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	color: #fff;
	font-size: 14px;
	background: #111;
}

#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #1e1e1e;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
	font-size: 22px;
	margin: 0 0 10px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
}

#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: 'Roboto', sans-serif;
	color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: rgb(236, 65, 30);
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #fff;
}

#footer .footer-newsletter {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px 0 0 4px;
	text-align: left;
}

#footer .footer-newsletter form input[type='email'] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type='submit'] {
	position: absolute;
	top: 0;
	right: -4px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: rgb(236, 65, 30);
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type='submit']:hover {
	background: rgb(236, 65, 30);
}

#footer .credits {
	padding-top: 5px;
	font-size: 13px;
	color: #fff;
}

#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: rgb(236, 65, 30);
	color: #fff;
	text-decoration: none;
}

ul,
li {
	margin: 0;
	padding: 0;
}

body {
	line-height: 28px;
	color: #53545a;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}

blockquote {
	margin: 0 0 1rem;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

a {
	color: rgb(236, 65, 30);
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	color: #0f6674;
}

a:not([href]):not([class]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

pre,
code,
kbd,
samp {
	font-size: 1em;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

figure {
	margin: 0 0 1rem;
}

img {
	vertical-align: middle;
	border-style: none;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
	border-radius: 0;
}

button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

[role='button'] {
	cursor: pointer;
}

select {
	word-wrap: normal;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
	cursor: pointer;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type='radio'],
input[type='checkbox'] {
	box-sizing: border-box;
	padding: 0;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

@media (max-width: 1200px) {
	legend {
		font-size: calc(1.275rem + 0.3vw);
	}
}

progress {
	vertical-align: baseline;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}

[hidden] {
	display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 0.5rem;

	font-weight: bold;
	line-height: 1.2;
}

h1,
.h1 {
	font-size: 2.5rem;
}

@media (max-width: 1200px) {
	h1,
	.h1 {
		font-size: calc(1.375rem + 1.5vw);
	}
}

h2,
.h2 {
	font-size: 2rem;
}

@media (max-width: 1200px) {
	h2,
	.h2 {
		font-size: calc(1.325rem + 0.9vw);
	}
}

h3,
.h3 {
	font-size: 1.75rem;
}

@media (max-width: 1200px) {
	h3,
	.h3 {
		font-size: calc(1.3rem + 0.6vw);
	}
}

h4,
.h4 {
	font-size: 1.5rem;
}

@media (max-width: 1200px) {
	h4,
	.h4 {
		font-size: calc(1.275rem + 0.3vw);
	}
}

h5,
.h5 {
	font-size: 1.25rem;
}

h6,
.h6 {
	font-size: 1rem;
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
}

.display-1 {
	font-size: 6rem;
	font-weight: 300;
	line-height: 1.2;
}

@media (max-width: 1200px) {
	.display-1 {
		font-size: calc(1.725rem + 5.7vw);
	}
}

.display-2 {
	font-size: 5.5rem;
	font-weight: 300;
	line-height: 1.2;
}

@media (max-width: 1200px) {
	.display-2 {
		font-size: calc(1.675rem + 5.1vw);
	}
}

.display-3 {
	font-size: 4.5rem;
	font-weight: 300;
	line-height: 1.2;
}

@media (max-width: 1200px) {
	.display-3 {
		font-size: calc(1.575rem + 3.9vw);
	}
}

.display-4 {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
}

@media (max-width: 1200px) {
	.display-4 {
		font-size: calc(1.475rem + 2.7vw);
	}
}

hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
	font-size: 80%;
	font-weight: 400;
}

mark,
.mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	list-style: none;
}

.list-inline-item {
	display: inline-block;
}

.list-inline-item:not(:last-child) {
	margin-right: 0.5rem;
}

.initialism {
	font-size: 90%;
	text-transform: uppercase;
}

.blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.blockquote-footer {
	display: block;
	font-size: 80%;
	color: #6c757d;
}

.blockquote-footer::before {
	content: '\2014\00A0';
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.img-thumbnail {
	padding: 0.25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 5px;
	max-width: 100%;
	height: auto;
}

.figure {
	display: inline-block;
}

.figure-img {
	margin-bottom: 0.5rem;
	line-height: 1;
}

.figure-caption {
	font-size: 90%;
	color: #6c757d;
}

code {
	font-size: 87.5%;
	color: #e83e8c;
	word-wrap: break-word;
}

a > code {
	color: inherit;
}

kbd {
	padding: 0.2rem 0.4rem;
	font-size: 87.5%;
	color: #fff;
	background-color: #212529;
	border-radius: 0.2rem;
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: 700;
}

pre {
	display: block;
	font-size: 87.5%;
	color: #212529;
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}

.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container,
	.container-sm {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container,
	.container-sm,
	.container-md {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container,
	.container-sm,
	.container-md,
	.container-lg {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1140px;
	}
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*='col-'] {
	padding-right: 0;
	padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

.col {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
}

.row-cols-1 > * {
	flex: 0 0 100%;
	max-width: 100%;
}

.row-cols-2 > * {
	flex: 0 0 50%;
	max-width: 50%;
}

.row-cols-3 > * {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.row-cols-4 > * {
	flex: 0 0 25%;
	max-width: 25%;
}

.row-cols-5 > * {
	flex: 0 0 20%;
	max-width: 20%;
}

.row-cols-6 > * {
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.col-auto {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.col-1 {
	flex: 0 0 8.33333%;
	max-width: 8.33333%;
}

.col-2 {
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.col-5 {
	flex: 0 0 41.66667%;
	max-width: 41.66667%;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	flex: 0 0 58.33333%;
	max-width: 58.33333%;
}

.col-8 {
	flex: 0 0 66.66667%;
	max-width: 66.66667%;
}

.col-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	flex: 0 0 83.33333%;
	max-width: 83.33333%;
}

.col-11 {
	flex: 0 0 91.66667%;
	max-width: 91.66667%;
}

.col-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.order-first {
	order: -1;
}

.order-last {
	order: 13;
}

.order-0 {
	order: 0;
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

.order-4 {
	order: 4;
}

.order-5 {
	order: 5;
}

.order-6 {
	order: 6;
}

.order-7 {
	order: 7;
}

.order-8 {
	order: 8;
}

.order-9 {
	order: 9;
}

.order-10 {
	order: 10;
}

.order-11 {
	order: 11;
}

.order-12 {
	order: 12;
}

.offset-1 {
	margin-left: 8.33333%;
}

.offset-2 {
	margin-left: 16.66667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333%;
}

.offset-5 {
	margin-left: 41.66667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333%;
}

.offset-8 {
	margin-left: 66.66667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333%;
}

.offset-11 {
	margin-left: 91.66667%;
}

@media (min-width: 576px) {
	.col-sm {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
	.row-cols-sm-1 > * {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.row-cols-sm-2 > * {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.row-cols-sm-3 > * {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.row-cols-sm-4 > * {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.row-cols-sm-5 > * {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.row-cols-sm-6 > * {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-sm-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}
	.col-sm-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-sm-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-sm-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-sm-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-sm-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-sm-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-sm-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-sm-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-sm-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-sm-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-sm-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-sm-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-sm-first {
		order: -1;
	}
	.order-sm-last {
		order: 13;
	}
	.order-sm-0 {
		order: 0;
	}
	.order-sm-1 {
		order: 1;
	}
	.order-sm-2 {
		order: 2;
	}
	.order-sm-3 {
		order: 3;
	}
	.order-sm-4 {
		order: 4;
	}
	.order-sm-5 {
		order: 5;
	}
	.order-sm-6 {
		order: 6;
	}
	.order-sm-7 {
		order: 7;
	}
	.order-sm-8 {
		order: 8;
	}
	.order-sm-9 {
		order: 9;
	}
	.order-sm-10 {
		order: 10;
	}
	.order-sm-11 {
		order: 11;
	}
	.order-sm-12 {
		order: 12;
	}
	.offset-sm-0 {
		margin-left: 0;
	}
	.offset-sm-1 {
		margin-left: 8.33333%;
	}
	.offset-sm-2 {
		margin-left: 16.66667%;
	}
	.offset-sm-3 {
		margin-left: 25%;
	}
	.offset-sm-4 {
		margin-left: 33.33333%;
	}
	.offset-sm-5 {
		margin-left: 41.66667%;
	}
	.offset-sm-6 {
		margin-left: 50%;
	}
	.offset-sm-7 {
		margin-left: 58.33333%;
	}
	.offset-sm-8 {
		margin-left: 66.66667%;
	}
	.offset-sm-9 {
		margin-left: 75%;
	}
	.offset-sm-10 {
		margin-left: 83.33333%;
	}
	.offset-sm-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 768px) {
	.col-md {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
	.row-cols-md-1 > * {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.row-cols-md-2 > * {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.row-cols-md-3 > * {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.row-cols-md-4 > * {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.row-cols-md-5 > * {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.row-cols-md-6 > * {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-md-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}
	.col-md-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-md-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-md-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-md-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-md-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-md-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-md-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-md-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-md-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-md-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-md-first {
		order: -1;
	}
	.order-md-last {
		order: 13;
	}
	.order-md-0 {
		order: 0;
	}
	.order-md-1 {
		order: 1;
	}
	.order-md-2 {
		order: 2;
	}
	.order-md-3 {
		order: 3;
	}
	.order-md-4 {
		order: 4;
	}
	.order-md-5 {
		order: 5;
	}
	.order-md-6 {
		order: 6;
	}
	.order-md-7 {
		order: 7;
	}
	.order-md-8 {
		order: 8;
	}
	.order-md-9 {
		order: 9;
	}
	.order-md-10 {
		order: 10;
	}
	.order-md-11 {
		order: 11;
	}
	.order-md-12 {
		order: 12;
	}
	.offset-md-0 {
		margin-left: 0;
	}
	.offset-md-1 {
		margin-left: 8.33333%;
	}
	.offset-md-2 {
		margin-left: 16.66667%;
	}
	.offset-md-3 {
		margin-left: 25%;
	}
	.offset-md-4 {
		margin-left: 33.33333%;
	}
	.offset-md-5 {
		margin-left: 41.66667%;
	}
	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.33333%;
	}
	.offset-md-8 {
		margin-left: 66.66667%;
	}
	.offset-md-9 {
		margin-left: 75%;
	}
	.offset-md-10 {
		margin-left: 83.33333%;
	}
	.offset-md-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
	.row-cols-lg-1 > * {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.row-cols-lg-2 > * {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.row-cols-lg-3 > * {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.row-cols-lg-4 > * {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.row-cols-lg-5 > * {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.row-cols-lg-6 > * {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-lg-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}
	.col-lg-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-lg-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-lg-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-lg-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-lg-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-lg-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-lg-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-lg-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-lg-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-lg-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-lg-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-lg-first {
		order: -1;
	}
	.order-lg-last {
		order: 13;
	}
	.order-lg-0 {
		order: 0;
	}
	.order-lg-1 {
		order: 1;
	}
	.order-lg-2 {
		order: 2;
	}
	.order-lg-3 {
		order: 3;
	}
	.order-lg-4 {
		order: 4;
	}
	.order-lg-5 {
		order: 5;
	}
	.order-lg-6 {
		order: 6;
	}
	.order-lg-7 {
		order: 7;
	}
	.order-lg-8 {
		order: 8;
	}
	.order-lg-9 {
		order: 9;
	}
	.order-lg-10 {
		order: 10;
	}
	.order-lg-11 {
		order: 11;
	}
	.order-lg-12 {
		order: 12;
	}
	.offset-lg-0 {
		margin-left: 0;
	}
	.offset-lg-1 {
		margin-left: 8.33333%;
	}
	.offset-lg-2 {
		margin-left: 16.66667%;
	}
	.offset-lg-3 {
		margin-left: 25%;
	}
	.offset-lg-4 {
		margin-left: 33.33333%;
	}
	.offset-lg-5 {
		margin-left: 41.66667%;
	}
	.offset-lg-6 {
		margin-left: 50%;
	}
	.offset-lg-7 {
		margin-left: 58.33333%;
	}
	.offset-lg-8 {
		margin-left: 66.66667%;
	}
	.offset-lg-9 {
		margin-left: 75%;
	}
	.offset-lg-10 {
		margin-left: 83.33333%;
	}
	.offset-lg-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		flex-basis: 0;
		flex-grow: 1;
		max-width: 100%;
	}
	.row-cols-xl-1 > * {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.row-cols-xl-2 > * {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.row-cols-xl-3 > * {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.row-cols-xl-4 > * {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.row-cols-xl-5 > * {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.row-cols-xl-6 > * {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-xl-auto {
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}
	.col-xl-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-xl-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-xl-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-xl-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-xl-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-xl-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-xl-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-xl-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-xl-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-xl-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-xl-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-xl-first {
		order: -1;
	}
	.order-xl-last {
		order: 13;
	}
	.order-xl-0 {
		order: 0;
	}
	.order-xl-1 {
		order: 1;
	}
	.order-xl-2 {
		order: 2;
	}
	.order-xl-3 {
		order: 3;
	}
	.order-xl-4 {
		order: 4;
	}
	.order-xl-5 {
		order: 5;
	}
	.order-xl-6 {
		order: 6;
	}
	.order-xl-7 {
		order: 7;
	}
	.order-xl-8 {
		order: 8;
	}
	.order-xl-9 {
		order: 9;
	}
	.order-xl-10 {
		order: 10;
	}
	.order-xl-11 {
		order: 11;
	}
	.order-xl-12 {
		order: 12;
	}
	.offset-xl-0 {
		margin-left: 0;
	}
	.offset-xl-1 {
		margin-left: 8.33333%;
	}
	.offset-xl-2 {
		margin-left: 16.66667%;
	}
	.offset-xl-3 {
		margin-left: 25%;
	}
	.offset-xl-4 {
		margin-left: 33.33333%;
	}
	.offset-xl-5 {
		margin-left: 41.66667%;
	}
	.offset-xl-6 {
		margin-left: 50%;
	}
	.offset-xl-7 {
		margin-left: 58.33333%;
	}
	.offset-xl-8 {
		margin-left: 66.66667%;
	}
	.offset-xl-9 {
		margin-left: 75%;
	}
	.offset-xl-10 {
		margin-left: 83.33333%;
	}
	.offset-xl-11 {
		margin-left: 91.66667%;
	}
}

.table {
	width: 100%;
	margin-bottom: 1rem;
	color: #666666;
}

.table th,
.table td {
	padding: 0.75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
	border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
	padding: 0.3rem;
}

.table-bordered {
	border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
	border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
	border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
	color: #666666;
	background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
	background-color: #bee5eb;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
	border-color: #86cfda;
}

.table-hover .table-primary:hover {
	background-color: #abdde5;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
	background-color: #abdde5;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
	background-color: #b8c8ce;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
	border-color: #7a98a3;
}

.table-hover .table-secondary:hover {
	background-color: #a9bcc4;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
	background-color: #a9bcc4;
}

.table-success,
.table-success > th,
.table-success > td {
	background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
	border-color: #8fd19e;
}

.table-hover .table-success:hover {
	background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
	background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
	background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
	border-color: #86cfda;
}

.table-hover .table-info:hover {
	background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
	background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
	background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
	border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
	background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
	background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
	background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
	border-color: #ed969e;
}

.table-hover .table-danger:hover {
	background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
	background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
	background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
	border-color: #fbfcfc;
}

.table-hover .table-light:hover {
	background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
	background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
	background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
	border-color: #95999c;
}

.table-hover .table-dark:hover {
	background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
	background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
	background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
	background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
	background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
	color: #fff;
	background-color: #343a40;
	border-color: #454d55;
}

.table .thead-light th {
	color: #495057;
	background-color: #e9ecef;
	border-color: #dee2e6;
}

.table-dark {
	color: #fff;
	background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
	border-color: #454d55;
}

.table-dark.table-bordered {
	border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
	.table-responsive-sm {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-sm > .table-bordered {
		border: 0;
	}
}

@media (max-width: 767.98px) {
	.table-responsive-md {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-md > .table-bordered {
		border: 0;
	}
}

@media (max-width: 991.98px) {
	.table-responsive-lg {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-lg > .table-bordered {
		border: 0;
	}
}

@media (max-width: 1199.98px) {
	.table-responsive-xl {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.table-responsive-xl > .table-bordered {
		border: 0;
	}
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
	border: 0;
}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #666666;
	text-align: right;
	vertical-align: middle;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 30px;
	transition:
		color 0.15s ease-in-out,
		background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out,
		box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}

.btn:hover {
	color: #666666;
	text-decoration: none;
}

.btn:focus,
.btn.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.btn.disabled,
.btn:disabled {
	opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
	pointer-events: none;
}

.btn-primary {
	color: #fff;
	background-color: rgb(236, 65, 30);
	border-color: rgb(236, 65, 30);
}

.btn-primary:hover {
	color: #fff;
	background-color: rgb(236, 65, 30);
	border-color: rgb(236, 65, 30);
}

:root {
	--text-color: #f5f5f5;
	--hover-color: #12f7ff;
	--bg-color: #250821;
	--secon-bg-color: #292e33;
	--big-font: 2.5rem;
	--normal-font: 2rem;
	--neon-box-shadow: 0 0 0.5rem #12f7ff;
	--h2-font: 3rem;
	--font-neon-text-shadow:
		0 0 10px rgba(18, 247, 255, 0.3), 0 0 20px rgba(18, 247, 255, 0.3),
		0 0 30px rgba(18, 247, 255, 0.3), 0 0 40px rgba(18, 247, 255, 0.3),
		0 0 70px rgba(18, 247, 255, 0.3), 0 0 80px rgba(18, 247, 255, 0.3),
		0 0 100px rgba(18, 247, 255, 0.3), 0 0 150px rgba(18, 247, 255, 0.3);
}

/* ======== PARTIE A PROPOS DE NOUS =================*/

.home {
	height: 100%;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	grid-gap: 4em;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;

	background: #ffffff;
	border-bottom: 1px solid var(--text-color);
	padding: 15px 10%;
}

.home-content {
	max-width: 600px;
}

.home-content h1 {
	font-size: var(--big-font);
	font-weight: 700;
}

.change-text {
	font-size: 1.5rem;
	font-weight: 600;
}

.change-text h3 {
	display: inline-flex;
	margin: 0;
	vertical-align: top;
}

.change-text h3 .word {
	position: absolute;
	display: flex;
	opacity: 5px;
}

.change-text h3 .word .letter {
	transform-origin: center center 25px;
}

.change-text h3 .word .letter.out {
	transform: rotateX(90deg);
	transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}

.change-text h3 .word .letter.in {
	transition: 0.38s ease;
}

.change-text h3 .word .letter.behind {
	transform: rotateX(-90deg);
}

.home-content p {
	color: #bdbdbd;
	line-height: 1.6;
}

.info-box {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	width: 300px;
	margin: 1rem 0 2rem;
}

.info-box h5 {
	font-weight: 600;
	color: #111;
	font-size: 1rem;
}

.info-box span {
	font-size: 0.7rem;
	color: #bdbdbd;
}

.home-image {
	position: relative;
}

.img-box {
	text-align: center;
}

.img-box img {
	width: 100%;
	max-width: 350px;
	height: auto;
}

.liquid-shape {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 10%;
}

.liquid-shape:nth-child(2) {
	filter: blur(50px);
}

.btn-box {
	display: flex;
	justify-content: space-between;
	width: 320px;
	height: 45px;
}

.btn-box a.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 100%;
	background: var(--hover-color);
	color: rgba(33, 8, 220, 0.952);
	font-size: 1rem;
	letter-spacing: 1px;
	font-weight: 600;
	transition: 0.6s;
	box-shadow: var(--neon-box-shadow);
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	border: 2px solid var(--hover-color);
}

.btn-box {
	display: flex;
	justify-content: space-between;
	width: 320px;
	height: 45px;
}

.btn-box a.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 100%;
	background: #003366;
	color: #ffffff;
	font-size: 1rem;
	letter-spacing: 1px;
	font-weight: 600;
	transition: 0.6s;
	box-shadow: #003366;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	border: 2px solid #ffffff;
}

a.btn:hover {
	color: #f0f0f0;
}

a.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(33, 8, 220, 0.952);
	width: 0%;
	height: 100%;
	z-index: -1;
	transition: 0.4s;
}

a.btn:hover {
	color: #ffffff;
}

a.btn:hover::before {
	width: 100%;
}

a.btn:nth-child(2) {
	background: #ff0000;
	color: #ffffff;
}

a.btn:nth-child(2):hover {
	color: var(--text-color);
}

a.btn:nth-child(2)::before {
	background: #003366;
}

.socia-icon {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	width: 220px;
	height: 40px;
}

.socia-icon a {
	display: inline-flex;
	width: 50px;
	height: 100%;
	justify-content: center;
	align-items: center;
	background: #003366;
	color: #ffffff;
	border: 2px solid var(--hover-color);
	transition: 0.6s;
	box-shadow: 0 0 0.3rem #003366;
	border-radius: 5px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.socia-icon a i {
	font-size: 1.5rem;
}

.socia-icon a:hover {
	color: rgb(236, 65, 30);
}

.socia-icon a::before {
	content: '';
	position: absolute;
	left: 0;
	width: 0%;
	height: 100%;
	background: var(--hover-color);
	transition: 0.6s;
	z-index: -1;
}

.socia-icon a:hover::before {
	width: 100%;
}

/* ======== FIN PARTIE A PROPOS DE NOUS =================*/

/* ======== DEBUT PARTIE BLOG-SINGLE =================*/

:root {
	--bg-color: linear-gradient(
		180deg,
		rgba(247, 1, 120, 1) 0%,
		rgba(160, 8, 156, 1) 51%,
		rgba(99, 13, 178, 1) 100%
	);
}

.homme {
	height: 100%;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	grid-gap: 4em;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;

	background: #ffffff;
	border-bottom: 1px solid var(--text-color);
	padding: 1.85rem 10%;
}

.text-animate {
	width: 57%;
	position: relative;
}

.text-animate h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: transparent;
	-webkit-text-stroke: 0.1vw #770753;
	background: var(--bg-color);
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-position: 0 0;
	transition: 0.6s;
	letter-spacing: 0px;
	animation: moveText 3s linear infinite;
	animation-delay: 2s;
}

.text-animate h2::before {
	content: '';
	position: absolute;
	top: 7px;
	left: -3px;
	width: 0;
	height: 70%;
	border-right: 2px solid #ba0b84;
	animation: moveCursorText 3s linear infinite;
	animation-delay: 2s;
}

.hero-info h3 {
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	color: #757575;
}

.hero-info h1 {
	font-size: 3.5rem;
}

.hero-info p {
	font-size: 0.9rem;
	color: #757575;
	line-height: 1.5rem;
}

/* @keyframes */
@keyframes moveText {
	0%,
	10%,
	100% {
		background-position: -24rem 0;
	}
	65%,
	85% {
		background-position: 0rem 0;
	}
}

@keyframes moveCursorText {
	0%,
	10%,
	100% {
		width: 0;
	}
	65%,
	78%,
	85% {
		width: 100%;
		opacity: 1;
	}
	75%,
	85% {
		opacity: 0;
	}
}

@keyframes animate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Break Points */
@media (max-width: 991px) {
	.home-content {
		margin-top: 5rem;
	}
	.socia-icons {
		margin-top: 2rem;
	}
}

@media (max-width: 768px) {
	.home {
		grid-template-columns: 1fr;
	}
	.home-image {
		margin-bottom: 5rem;
	}
	.liquid-shape {
		width: 80%;
		left: 10%;
		top: 13%;
	}
}

/* ======== FIN PARTIE BLOG-SINGLE =================*/

/*--------------------------------------------------------------
# ça va  jusque ici
--------------------------------------------------------------*/

/* About Section css ===================================================================*/

.about {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 2em;
	background: var(--text-color);
}

.about .img-about {
	text-align: center;
	position: relative;
}

.about .img-about img {
	max-width: 400px;
	height: auto;
}

.about-content span {
	color: var(--bg-color);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.about-content h2 {
	color: rgb(236, 65, 30);
	font-weight: 700;
	font-size: var(--normal-font);
}

.about-content h3 {
	font-weight: 600;
	font-size: 1.5rem;
	margin-bottom: 0.2rem;
}

.about-content p {
	color: #111;
	font-weight: 300;
	margin-bottom: 1.5rem;
}

.info-about1,
.info-about2,
.info-about3 {
	background: var(--bg-color);
	font-size: 0.5rem;
	position: absolute;
	padding: 10px;
	width: 90px;
	height: 90px;
	border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
	display: block;
	box-shadow: var(--neon-box-shadow);
	border: 1px solid var(--hover-color);
	outline: 2px solid var(--bg-color);
	z-index: 100;
	animation: morph 6s linear infinite;
}

.info-about1 {
	left: 10%;
	top: 34%;
}

.info-about2 {
	left: 66%;
	top: 15%;
}

.info-about3 {
	left: 61%;
	top: 70%;
}

.img-about span {
	color: var(--hover-color);
	font-size: 1rem;
	font-weight: 600;
}
