/*======================================
[ CSS Table of contents ]
* Global CSS
* Mobile Navigation CSS
* Header CSS
* Hero Slider CSS
* Schedule CSS
* Contact Us CSS
* Footer CSS
* Partner Logos CSS
* Page Section Styles (andrologie, infertilité, infos pratiques)
* FAQ Styles
========================================*/

/*=============================
	Global CSS
===============================*/
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #888;
}
ul, ol {
	padding-inline-start: 40px;
}
.section ul li {
	list-style-type: square;
}
#scrollUp {
	bottom: 15px;
	right: 15px;
	background: var(--primary);
	color: #fff;
	font-size: 25px;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	padding: 0;
	border-radius: 3px;
	box-shadow: 0px 0px 10px #00000026;
}
#scrollUp:hover {
	background: var(--secondary);
}
/*=============================
	End Global CSS
===============================*/

/*=============================
	Mobile Navigation CSS
===============================*/
.slicknav_menu {
	display: none;
	background: #fff;
	padding: 8px;
	border-bottom: 1px solid #eee;
}
.slicknav_nav {
	width: 100%;
	order: 3;
	color: var(--secondary);
}
.slicknav_btn {
	background-color: var(--primary);
	order: 2;
}
.mobile-rdv-btn {
	display: none;
}
.slicknav_menu .mobile-rdv-btn {
	display: inline-block;
	order: 1;
	margin-right: 10px;
	padding: 6px 12px;
	background-color: var(--primary);
	color: #fff;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}
.slicknav_menu .mobile-rdv-btn:hover {
	background-color: var(--secondary);
	color: #fff;
}
.slicknav_nav a,
.slicknav_nav .slicknav_row,
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_txtnode {
	color: var(--secondary);
}
.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
	background: var(--primary);
	color: #fff;
}
.slicknav_nav ul {
	border-left: 2px solid var(--primary);
	margin-left: 10px;
}
/*=============================
	End Mobile Navigation CSS
===============================*/

/*===================
	Start Header CSS
=====================*/
.header {
	background-color: #fff;
	position: relative;
}
.header .navbar-collapse {
	padding: 0;
}
.header .top-link {
	float: left;
}
.header .top-link li {
	display: inline-block;
	margin-right: 15px;
}
.header .top-link li:last-child {
	margin-right: 0;
}
.header .top-link li a {
	color: var(--secondary);
	font-size: 14px;
	font-weight: 400;
}
.header .top-link li:hover a {
	color: var(--primary);
}
.header .top-contact {
	float: right;
}
.header .top-contact li {
	display: inline-block;
	margin-right: 25px;
	color: var(--secondary);
}
.header .top-contact li:last-child {
	margin-right: 0;
}
.header .top-contact li a {
	font-size: 14px;
}
.header .top-contact li a:hover {
	color: var(--primary);
}
.header .top-contact li i {
	color: var(--primary);
	margin-right: 8px;
}
.header .header-inner {
	background: #fff;
	z-index: 999;
	width: 100%;
}
.get-quote {
	margin-top: 12px;
}
.get-quote .btn {
	color: #fff;
}
.header .logo {
	float: left;
	margin-top: 18px;
}
.header .navbar {
	background: none;
	box-shadow: none;
	border: none;
	margin: 0;
	height: 0;
	min-height: 0;
}
.header .nav li {
	margin-right: 15px;
	float: left;
	position: relative;
}
.header .nav li:last-child {
	margin: 0;
}
.header .nav li a {
	color: var(--secondary);
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 25px 12px;
	display: inline-block;
	position: relative;
}
.header .nav li a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width: 0%;
	background: var(--primary);
	border-radius: 5px 5px 0 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}
.header .nav li.active a:before {
	opacity: 1;
	visibility: visible;
	width: 100%;
}
.header .nav li.active a {
	color: var(--primary);
}
.header .nav li:hover a:before {
	opacity: 1;
	width: 100%;
	visibility: visible;
}
.header .nav li:hover a {
	color: var(--primary);
}
.header .nav li a i {
	display: inline-block;
	margin-left: 1px;
	font-size: 13px;
}
/* Dropdown Menu */
.header .nav li .dropdown {
	background: #fff;
	width: 220px;
	position: absolute;
	left: -20px;
	z-index: 999;
	box-shadow: 0px 3px 5px #3333334d;
	transform-origin: 0 0 0;
	transform: scaleY(0.2);
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
	top: 74px;
	border-left: 3px solid var(--primary);
}
.header .nav li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.header .nav li .dropdown li {
	float: none;
	margin: 0;
	border-bottom: 1px dashed #eee;
}
.header .nav li .dropdown li:last-child {
	border: none;
}
.header .nav li .dropdown li a {
	padding: 12px 15px;
	color: #666;
	display: block;
	font-weight: 400;
	text-transform: capitalize;
	background: transparent;
	transition: all 0.2s ease;
}
.header .nav li .dropdown li a:before {
	display: none;
}
.header .nav li .dropdown li:last-child a {
	border-bottom: 0;
}
.header .nav li .dropdown li:hover a {
	color: var(--primary);
}
.header .nav li .dropdown li a:hover {
	border-color: transparent;
}
/* Header Sticky */
.header.sticky .header-inner {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	bottom: initial;
	transition: all 0.4s ease;
	animation: fadeInDown 0.5s both 0.1s;
	box-shadow: 0px 0px 13px #00000054;
}
/*=========================
	End Header CSS
===========================*/

/*===========================
	Start Hero Area CSS
=============================*/
.slider .single-slider {
	height: 600px;
}
.slider .single-slider::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #F5F1EB;
	z-index: 1;
}
.slider .single-slider .text {
	position: relative;
	z-index: 2;
	margin-top: 120px;
}
.slider .single-slider .text h1,
.slider .single-slider .text p {
	color: var(--secondary) !important;
	text-shadow: none;
}
.slider.index2 .single-slider .text {
	margin-top: 150px;
}
.slider .single-slider h1 {
	color: var(--secondary);
	font-size: 38px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 42px;
}
.slider .single-slider h1 span {
	color: var(--secondary-old);
}
.slider .single-slider p {
	color: var(--secondary);
	margin-top: 27px;
	font-weight: 400;
	text-shadow: 1px 1px 6px #ffffff;
}
.slider .single-slider .button {
	margin-top: 30px;
}
.slider .single-slider .btn {
	color: #fff;
	background: var(--primary);
	font-weight: 500;
	display: inline-block;
	margin: 0;
	margin-right: 10px;
}
.slider .single-slider .btn:last-child {
	margin: 0;
}
.slider .single-slider .btn.primary {
	background: var(--secondary);
	color: #fff;
}
.slider .single-slider .btn.primary:before {
	background: var(--primary);
}
/* Slider Animation */
.owl-item.active .single-slider h1 {
	animation: fadeInUp 1s both 0.6s;
}
.owl-item.active .single-slider p {
	animation: fadeInUp 1s both 1s;
}
.owl-item.active .single-slider .button {
	animation: fadeInDown 1s both 1.5s;
}
/*===========================
	End Hero Area CSS
=============================*/

/*=============================
	Start Schedule CSS
===============================*/
.schedule {
	background: #fff;
	margin: 0;
	padding: 0;
	height: 230px;
}
.schedule .schedule-inner {
	position: relative;
	transform: translateY(-50%);
	z-index: 9;
}
.schedule .single-schedule {
	position: relative;
	text-align: left;
	z-index: 3;
	border-radius: 5px;
	background: var(--primary);
	transition: all .3s ease-out 0s;
}
.schedule .single-schedule .inner {
	overflow: hidden;
	position: relative;
	padding: 30px;
	z-index: 2;
}
.schedule .single-schedule:before {
	position: absolute;
	z-index: -1;
	content: '';
	bottom: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	height: 90%;
	background: var(--primary);
	opacity: 0;
	filter: blur(10px);
	transition: all .3s ease-out 0s;
}
.schedule .single-schedule:hover:before {
	opacity: 0.8;
}
.schedule .single-schedule:hover {
	transform: translateY(-5px);
}
.schedule .single-schedule span {
	display: block;
	color: #fff;
}
.schedule .single-schedule h4 {
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
	text-transform: capitalize;
	color: #fff;
	margin-top: 13px;
}
.schedule .single-schedule p {
	color: #fff;
	margin-top: 22px;
}
.schedule .single-schedule a {
	color: #fff;
	margin-top: 25px;
	font-weight: 500;
	display: inline-block;
	position: relative;
}
.schedule .single-schedule a:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0%;
	background: #fff;
	transition: all 0.4s ease;
}
.schedule .single-schedule a:hover:before {
	width: 100%;
}
.schedule .single-schedule a i {
	margin-left: 10px;
}
.schedule .single-schedule .time-sidual {
	overflow: hidden;
	margin-top: 17px;
}
.schedule .single-schedule .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 3px;
}
.schedule .single-schedule .time-sidual li:last-child {
	margin: 0;
}
.schedule .single-schedule .time-sidual li span {
	display: inline-block;
	float: right;
}
.schedule .single-schedule .day-head .time {
	font-weight: 400;
	float: right;
}
/*=============================
	End Schedule CSS
===============================*/

/*=========================
	Start Contact Us CSS
===========================*/
.contact-us .inner {
	box-shadow: 0px 0px 10px #00000024;
	border-radius: 5px;
	overflow: hidden;
}
.contact-us .contact-us-form {
	padding: 50px 40px;
}
.contact-us .contact-us-form h2 {
	position: relative;
	font-size: 32px;
	color: #333;
	font-weight: 600;
	line-height: 27px;
	text-transform: capitalize;
	margin-bottom: 12px;
	padding-bottom: 20px;
	text-align: left;
}
.contact-us .contact-us-form h2:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 2px;
	width: 50px;
	background: var(--primary);
}
.contact-us .contact-us-form p {
	font-size: 14px;
	color: #333;
	font-weight: 400;
	text-align: left;
	margin-bottom: 50px;
}
.contact-us .form {
	margin-top: 30px;
}
.contact-us .form .form-group {
	margin-bottom: 22px;
}
.contact-us .form .form-group input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	text-transform: capitalize;
	padding: 0px 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}
.contact-us .form .form-group textarea {
	width: 100%;
	height: 100px;
	border: 1px solid #eee;
	text-transform: capitalize;
	padding: 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}
.contact-us .form .form-group.login-btn {
	margin: 0;
}
.contact-us .form button {
	border: none;
}
.contact-us .form .btn {
	display: inline-block;
	margin-right: 10px;
	color: #fff;
	line-height: 20px;
	width: 100%;
}
.contact-us .form .btn:hover {
	background: var(--primary);
	color: #fff;
}
.contact-us .contact-info {
	margin-top: 50px;
}
.contact-us .single-info {
	background: var(--primary);
	padding: 40px 60px;
	height: 150px;
	border-radius: 10px;
	position: relative;
	transition: all .3s ease-out 0s;
}
.contact-us .single-info:before {
	position: absolute;
	z-index: -1;
	content: '';
	bottom: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	height: 90%;
	background: var(--primary);
	opacity: 0;
	filter: blur(10px);
	transition: all .3s ease-out 0s;
}
.contact-us .single-info:hover:before {
	opacity: 0.8;
}
.contact-us .single-info:hover {
	transform: translateY(-5px);
}
.contact-us .single-info i {
	font-size: 42px;
	color: #fff;
	position: absolute;
	left: 40px;
}
.contact-us .single-info .content {
	margin-left: 45px;
}
.contact-us .single-info .content h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
.contact-us .single-info .content p {
	color: #fff;
	margin-top: 0;
}
.contact-us .single-info .content p a {
	color: #fff;
}
/* Google Map */
.contact-us #myMap {
	height: 100%;
	width: 100%;
}
/*=========================
	End Contact Us CSS
===========================*/

/*=========================
	Start Footer CSS
===========================*/
.footer {
	position: relative;
}
.footer .footer-top {
	padding: 100px 0;
	position: relative;
	background: var(--primary);
}
.footer .footer-top:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #000;
	opacity: 0.1;
}
.footer .single-footer .social {
	margin-top: 25px;
}
.footer .single-footer .social li {
	display: inline-block;
	margin-right: 10px;
}
.footer .single-footer .social li:last-child {
	margin-right: 0;
}
.footer .single-footer .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #fff;
	padding: 0;
	border-radius: 100%;
	display: block;
	color: #fff;
	font-size: 16px;
}
.footer .single-footer .social li a:hover {
	color: var(--primary);
	background: #fff;
	border-color: transparent;
}
.footer .single-footer.f-link li a i {
	margin-right: 10px;
}
.footer .single-footer.f-link li {
	display: block;
	margin-bottom: 12px;
}
.footer .single-footer.f-link li:last-child {
	margin: 0;
}
.footer .single-footer.f-link li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	transition: all 0.4s ease;
	font-weight: 400;
}
.footer .single-footer.f-link li a:hover {
	padding-left: 8px;
}
.footer .single-footer h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 40px;
	padding-bottom: 20px;
	position: relative;
}
.footer .single-footer h2::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width: 50px;
	background: #fff;
}
.footer .single-footer .time-sidual {
	overflow: hidden;
	margin-top: 15px;
}
.footer .single-footer .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span {
	display: inline-block;
	float: right;
}
.footer .single-footer .day-head .time {
	font-weight: 400;
	float: right;
}
.footer .single-footer p {
	color: #fff;
}
.footer .copyright {
	background: var(--primary);
	padding: 25px 0;
	text-align: center;
}
.footer .copyright .copyright-content p {
	color: #fff;
}
.footer .copyright .copyright-content p a {
	color: #fff;
	font-weight: 400;
	text-decoration: underline;
	display: inline-block;
	margin-left: 4px;
}
/*=========================
	End Footer CSS
===========================*/

/* =============================================
   Partner Logos Banner
   ============================================= */
.partners-logos {
	padding: 2rem 0;
	background-color: #f5f5f5;
}
.partners-logos .partners {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
}
.partners-logos .partner img {
	max-height: 60px;
	object-fit: contain;
	display: block;
	max-width: 150px;
}
@media (max-width: 768px) {
	.partners-logos .partners {
		flex-direction: column;
	}
	.partners-logos .partner {
		margin-bottom: 1rem;
	}
	.partners-logos .partner:last-child {
		margin-bottom: 0;
	}
}
.partners-caption {
	padding-top: 10px;
	font-size: 10px;
	width: 100%;
	text-align: center;
}
/* =============================================
   End Partner Logos Banner
   ============================================= */

/* =============================================
   Page Content Sections
   (andrologie, infertilité masculine, infos pratiques)
   ============================================= */
.page-section {
	padding: 50px 0;
}
.page-section:nth-child(even) {
	background: #F5F1EB;
}
.page-section:nth-child(odd) {
	background: #fff;
}
.page-section h2,
.page-title {
	font-weight: 600;
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1.2rem;
	color: var(--secondary);
}
.page-section h3 {
	font-weight: 600;
	font-size: 1.25rem;
	margin-top: 1.8rem;
	margin-bottom: 1rem;
	color: var(--secondary);
}
.page-section p,
.page-section li {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #444;
}
.page-section ul {
	list-style: none;
	padding-left: 0;
}
.page-section ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.6rem;
}
.page-section ul li::before {
	content: "\2022";
	color: var(--primary);
	font-weight: bold;
	font-size: 1.3em;
	position: absolute;
	left: 0;
	top: -0.05em;
}
.page-highlight {
	background: #fff;
	border-left: 4px solid var(--primary);
	padding: 1.2rem 1.5rem;
	margin: 1.5rem 0;
	border-radius: 0 6px 6px 0;
}
.page-section:nth-child(even) .page-highlight {
	background: #FAFAF7;
}
.page-brochure {
	display: inline-flex;
	align-items: center;
	color: var(--primary);
	font-weight: 500;
	margin-top: 0.5rem;
}
.page-brochure i {
	margin-right: 0.4rem;
}

/* Spermogramme anomaly cards */
.infert-anomaly {
	background: #FAFAF7;
	border-radius: 6px;
	padding: 0.6rem 1rem;
	margin-bottom: 0.4rem;
	display: flex;
	align-items: baseline;
}
.page-section:nth-child(even) .infert-anomaly {
	background: #fff;
}
.infert-anomaly strong {
	min-width: 220px;
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 0.03em;
}
/* =============================================
   End Page Content Sections
   ============================================= */

/* =============================================
   FAQ Accordion Styles
   ============================================= */
.faq-block {
	padding: 50px 0;
}
.faq-block .faq-category-title {
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 2rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary);
}
.faq-block .faq-category-title:first-of-type {
	margin-top: 0;
}
.faq-block .accordion {
	border: none;
}
.faq-block .accordion .faq-question {
	background: #fff;
	cursor: pointer;
	padding: 1rem 1.5rem;
	margin-bottom: 0.3rem;
	border: none;
	border-radius: 0.25rem;
	position: relative;
	transition: background 0.2s;
	font-size: 1.08rem;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--secondary);
}
.faq-block .accordion .faq-question:hover {
	background: #F5F1EB;
}
.faq-block .accordion .faq-chevron {
	display: inline-block;
	margin-right: 0.8rem;
	transition: transform 0.3s;
	min-width: 1em;
	height: 1em;
	transform: rotate(0deg);
}
.faq-block .accordion .faq-question:not(.collapsed) .faq-chevron {
	transform: rotate(90deg);
}
.faq-block .accordion .card {
	border: none;
	background: none;
	box-shadow: none;
}
.faq-block .accordion .card-header {
	padding: 0;
	border: none;
	background: none;
}
.faq-block .accordion .card-body {
	padding: 1rem 1.5rem 1.5rem 3.3rem;
	background: none;
	border: none;
	font-size: 1.05rem;
	line-height: 1.8;
	color: #444;
}
.faq-block .accordion .card-body ul {
	list-style: none;
	padding-left: 0;
}
.faq-block .accordion .card-body ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}
.faq-block .accordion .card-body ul li::before {
	content: "\2022";
	color: var(--primary);
	font-weight: bold;
	font-size: 1.3em;
	position: absolute;
	left: 0;
	top: -0.05em;
}
.faq-block .accordion .card-body .page-highlight {
	background: #F5F1EB;
}
.faq-block .card-body .ft {
	color: #444;
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 0.8rem;
	display: block;
}
.faq-block .card-body .ft-highlight {
	background: #F5F1EB;
	border-left: 4px solid var(--primary);
	padding: 1.2rem 1.5rem;
	margin: 1.5rem 0;
	border-radius: 0 6px 6px 0;
	color: #333;
	font-size: 1.05rem;
	line-height: 1.8;
}
.faq-block .card-body .ft-highlight strong {
	color: #333;
}
.faq-block h4 {
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--secondary);
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

/* Lab cards */
.lab-card {
	background: #fff;
	border-radius: 6px;
	padding: 1rem 1.2rem;
	margin-bottom: 0.8rem;
	border-left: 3px solid var(--primary);
}
.lab-card strong {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--secondary);
}
.lab-card .lab-address,
.lab-card .lab-tel {
	font-size: 0.95rem;
	color: #666;
}
.lab-card .lab-tel {
	margin-top: 0.2rem;
}

/* AMP center cards */
.amp-center {
	background: #fff;
	border-radius: 6px;
	padding: 1.2rem 1.5rem;
	margin-bottom: 1rem;
	border-left: 3px solid var(--primary);
}
.amp-center strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--secondary);
	font-size: 1.05rem;
}
.amp-center a {
	display: block;
	color: var(--primary);
	font-size: 0.95rem;
	word-break: break-all;
	margin-bottom: 0.2rem;
}
/* =============================================
   End FAQ Accordion Styles
   ============================================= */

/* =============================================
   Old FAQ page styles (faq.php)
   ============================================= */
.faq .accordion {
	border: none;
}
.faq .faq-category h3 {
	margin-bottom: 1rem;
	font-weight: 600;
}
.faq .accordion .faq-question {
	background: #f8f9fa;
	cursor: pointer;
	padding: 1rem 1.5rem;
	margin-bottom: 0.2rem;
	border: none;
	border-radius: 0.25rem;
	position: relative;
	transition: background 0.2s;
	font-size: 1.08rem;
	display: flex;
	align-items: center;
}
.faq .accordion .faq-question:hover {
	background: #eef2f6;
}
.faq .accordion .faq-chevron {
	display: inline-block;
	margin-right: 0.8rem;
	transition: transform 0.3s;
	width: 1em;
	height: 1em;
	transform: rotate(0deg);
}
.faq .accordion .faq-question:not(.collapsed) .faq-chevron {
	transform: rotate(90deg);
}
.faq .accordion .card {
	border: none;
	background: none;
	box-shadow: none;
}
.faq .accordion .card-header {
	padding: 0;
	border: none;
	background: none;
}
.faq .accordion .card-body {
	padding: 1rem 2.5rem;
	background: none;
	border: none;
	font-size: 1rem;
}
/* =============================================
   End Old FAQ page styles
   ============================================= */

/* =============================================
   CTA (call-to-action) button section
   ============================================= */
.cta-section {
	background: #fff;
	text-align: center;
	padding: 40px 0 50px;
}
.cta-section p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}
/* =============================================
   End CTA section
   ============================================= */
