/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Features
- Details 1
- Details Modal
- Details 2
- Testimonials
- Invitation
- Pricing
- Questions
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f9f8f8
- Buttons - navy blue #2774b1
- Buttons - orange #ef334a
- Headings text - navy blue #2774b1
- Body text - dark gray #565578
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #565578; 
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
	color: #2774b1;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.4px;
}

h2 {
	color: #2774b1;
	font-weight: 600;
	font-size: 2rem;
	line-height: 2.625rem;
	letter-spacing: -0.4px;
}

h3 {
	color: #2774b1;
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: -0.2px;
}

h4 {
	color: #2774b1;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2.125rem;
	letter-spacing: -0.2px;
}

h5 {
	color: #2774b1;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
}

h6 {
	color: #2774b1;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.625rem;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #565578;
	text-decoration: underline;
}

a:hover {
	color: #565578;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.blue {
	color: #6168ff;
}

.bg-gray {
	background-color: #f9f8f8;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #2774b1;
	border-radius: 30px;
	background-color: #2774b1;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #2774b1; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #2774b1;
	border-radius: 30px;
	background-color: #2774b1;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #2774b1; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #2774b1;
	border-radius: 30px;
	background-color: #2774b1;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-sm:hover {
	background-color: transparent;
	color: #2774b1; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #ef334a;
	border-radius: 30px;
	background-color: transparent;
	color: #ef334a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #ef334a;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #ef334a;
	border-radius: 30px;
	background-color: transparent;
	color: #ef334a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #565578;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #ef334a;
	border-radius: 30px;
	background-color: transparent;
	color: #ef334a;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #ef334a;
	color: #ffffff;
	text-decoration: none;
}

.form-floating label {
	margin-left: 0.5rem;
	color: #72719b;
}

.form-floating .form-control {
	padding-left: 1.25rem;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #ef334a;
	border-radius: 30px;
	background-color: #ef334a;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #ef334a;
	background-color: transparent;
	color: #ef334a;
}

/* Fade Animation For Rotating Text - ReplaceMe  */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
/* end of fade animation for rotating text - replaceme */


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #FDF880;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 230px;
	height: 50px;
}

.navbar .logo-text {
	color: #2774b1;
	font-weight: 600;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #FDF880;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #2774b1;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #ef334a;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #FDF880;
}

.navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #2774b1;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #FDF880;
	color: #ef334a;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #d1d1d1;
}
/* end of dropdown menu */

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/******************/
/*     Header     */
/******************/
.header {
	padding-top: 8rem;
	padding-bottom: 7rem;
	background-color: #FDF880;
	text-align: center;
}

.header .h1-large {
	margin-bottom: 1.25rem;
}

.header .replace-me {
	color: #ef334a;
}

.header .replace-me span {
	text-decoration: underline;
}

.header .p-large {
	margin-bottom: 2.75rem;
}

.header .btn-solid-lg {
	display: block;
	margin-bottom: 1.75rem;
}

.header .text-container {
	margin-bottom: 5rem;
}


/********************/
/*     Features     */
/********************/
.cards-1 {
	padding-top: 9rem;
	padding-bottom: 1.25em;
	text-align: center;
}

.cards-1 .h2-heading {
	margin-bottom: 3.75rem;
}

.cards-1 .h2-heading span {
	color: #ef334a;
	text-decoration: underline;
}

.cards-1 .card {
	margin-bottom: 5rem;
	border: none;
	background-color: transparent;
}

.cards-1 .card-icon {
	width: 76px;
	height: 76px;
	margin-right: auto;
	margin-bottom: 2.5rem;
	margin-left: auto;
	border-radius: 10px;
	background-color: #efebfd;
}

.cards-1 .card-icon .fas,
.cards-1 .card-icon .far {
	color: #8763ee;
	font-size: 2.5rem;
	line-height: 76px;
}

.cards-1 .card-icon.green {
	background-color: #defaeb;
}

.cards-1 .card-icon.green .fas,
.cards-1 .card-icon.green .far {
	color: #00d462;
}

.cards-1 .card-icon.blue {
	background-color: #e2ebfd;
}

.cards-1 .card-icon.blue .fas,
.cards-1 .card-icon.blue .far {
	color: #1f68f3;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-title {
	margin-bottom: 1rem;
}

.cards-1 .card-body p {
	margin-bottom: 1.125rem;
}


/*********************/
/*     Details 1     */
/*********************/
.basic-1 {
	padding-top: 9.5rem;
	padding-bottom: 10rem;
}

.basic-1 .text-container {
	margin-bottom: 4rem;
}

.basic-1 h2 {
	margin-bottom: 1.875rem;
}

.basic-1 p {
	margin-bottom: 1.875rem;
}

.basic-1 .btn-solid-reg {
	cursor: pointer;
}


/*************************/
/*     Details Modal     */
/*************************/
.modal-dialog {
	max-width: 1150px;
	margin-right: 1rem;
	margin-left: 1rem;
	pointer-events: all;
}

.modal-content {
	padding: 2.75rem 1.25rem;
}

.modal-content .btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
}

.modal-content .image-container {
	margin-bottom: 3rem;
}

.modal-content img {
	border-radius: 6px;
}

.modal-content h3 {
	margin-bottom: 0.5rem;
}

.modal-content hr {
	width: 44px;
	margin-top: 0.125rem;
	margin-bottom: 1.25rem;
	margin-left: 0;
	height: 2px;
	border: none;
	background-color: #53575a;
}

.modal-content h4 {
	margin-top: 2rem;
	margin-bottom: 0.625rem;
}

.modal-content .list-unstyled {
	margin-bottom: 2rem;
}

.modal-content .list-unstyled .fas {
	font-size: 0.75rem;
	line-height: 1.75rem;
}

.modal-content .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.modal-content .btn-solid-reg {
	margin-right: 0.5rem;
}

.modal-content .btn-outline-reg {
	cursor: pointer;
}


/*********************/
/*     Details 2     */
/*********************/
.basic-2 {
	padding-top: 9.5rem;
	padding-bottom: 9rem;
}

.basic-2 .image-container {
	margin-bottom: 5rem;
}

.basic-2 h2 {
	margin-bottom: 1.875rem;
}

.basic-2 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.basic-2 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 9.25rem;
	padding-bottom: 9.75rem;
}

.slider-1 .section-title {
	text-align: center;
}

.slider-1 .h2-heading {
	margin-bottom: 3rem;
	text-align: center;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 86%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -12px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -12px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	position: relative;
	border: none;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-right: auto;
	margin-bottom: 1.25rem;
	margin-left: auto;
	border-radius: 50%;
}

.slider-1 .card-body {
	padding: 0;
}

.slider-1 .testimonial-text {
	margin-bottom: 1rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #181c3b;
}


/**********************/
/*     Invitation     */
/**********************/
.basic-3 {
	padding-top: 9rem;
	padding-bottom: 9rem;
	background-color: #2774b1;
	text-align: center;
}

.basic-3 h4 {
	margin-bottom: 2.375rem;
	color: #ffffff;
}

.basic-3 .btn-outline-lg {
	border-color: #ffffff;
	color: #ffffff;
}

.basic-3 .btn-outline-lg:hover {
	background-color: #ffffff;
	color: #2774b1;
}


/*******************/
/*     Pricing     */
/*******************/
.cards-2 {
	padding-top: 9rem;
	padding-bottom: 5.25em;
}

.cards-2 .h2-heading {
	margin-bottom: 3.75rem;
	text-align: center;
}

.cards-2 .card {
	margin-bottom: 5rem;
	padding: 4rem 1rem;
	border: 1px solid #9fa3ae;
	border-radius: 20px;
	background-color: #ffffff;
	text-align: center;
}

.cards-2 .card-body {
	padding: 0;
}

.cards-2 .card-title {
	margin-bottom: 2rem;
}

.cards-2 .card-title .decoration-lines {
	width: 30px;
	margin-bottom: 0.25rem;
}

.cards-2 .card-title .decoration-lines.flipped {
	transform: scaleX(-1);
}

.cards-2 .card-title span {
	margin-right: 0.75rem;
	margin-left: 0.75rem;
	color: #2774b1;
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2rem;
	letter-spacing: -0.2px;
}

.cards-2 .card-body .list-unstyled {
	margin-bottom: 3rem;
}

.cards-2 .card-body .list-unstyled li {
	margin-bottom: 0.625rem;
}

.cards-2 .card-body .price {
	margin-bottom: 3rem;
	color: #2774b1;
	font-weight: 600;
	font-size: 3.5rem;
	line-height: 2rem;
	letter-spacing: -0.2px;
}

.cards-2 .card-body .price span {
	font-weight: 400;
	font-size: 1rem;
	line-height: 0;
}


/*********************/
/*     Questions     */
/*********************/
.accordion-1 {
	padding-top: 9rem;
	padding-bottom: 9rem;
}

.accordion-1 .h2-heading {
	margin-bottom: 1.5rem;
	text-align: center;
}

.accordion-1 .accordion-item {
	padding-bottom: 1rem;
	border: none;
	border-bottom: 1px solid #cdcedd;
}

.accordion-1 .accordion-header {
	width: 100%;
	background-color: #76159c;
}

.accordion-1 .accordion-button {
	width: auto;
	padding-top: 2rem;
	padding-left: 0;
	background: none;
	box-shadow: none;
	font-weight: 600;
	font-size: 1.15rem;
	line-height: 1.625rem;
	
}

.accordion-1 .accordion-button:not(.collapsed) {
	color: #FFFFFF;
	background-color: #76159c;
	
}

.accordion-1 .accordion-button::after,
.accordion-1 .accordion-button:not(.collapsed)::after {
	display: none;
}

.accordion-1 .accordion-button:not(.collapsed)::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 436.686 265.011'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%232774b1;%7d%3c/style%3e%3c/defs%3e%3ctitle%3echevron-down-solid-1%3c/title%3e%3cpath class='cls-1' d='M201.373,257.982L7.03,63.638a24,24,0,0,1,0-33.941L29.7,7.03a24,24,0,0,1,33.9-.04L218.344,161.011,373.089,6.99a24,24,0,0,1,33.9.04L429.657,29.7a24,24,0,0,1,0,33.941L235.315,257.982a24,24,0,0,1-33.942,0h0Z'/%3e%3c/svg%3e");
	transform: rotate(-180deg);
}

.accordion-1 .accordion-button::before {
	align-self: flex-start;
	flex-shrink: 0;
	width: 1.125rem;
	height: 0.75rem;
	margin-top: 0.5rem;
	margin-right: 0.75rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 436.686 265.011'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%232774b1;%7d%3c/style%3e%3c/defs%3e%3ctitle%3echevron-down-solid-1%3c/title%3e%3cpath class='cls-1' d='M201.373,257.982L7.03,63.638a24,24,0,0,1,0-33.941L29.7,7.03a24,24,0,0,1,33.9-.04L218.344,161.011,373.089,6.99a24,24,0,0,1,33.9.04L429.657,29.7a24,24,0,0,1,0,33.941L235.315,257.982a24,24,0,0,1-33.942,0h0Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.125rem;
	transition: transform 0.2s ease-in-out;
	background-color: #76159c;
}

.accordion-1 .accordion-body {
	padding-top: 0;
	padding-left: 1.875rem;
	padding-bottom: 1.125rem;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.5rem;
	padding-bottom: 2rem;
	background-color: #2774b1;
}

.footer a {
	color: #ffffff;
	text-decoration: none;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #ffffff;
	opacity: 0.8;
}

.footer p,
.footer ul {
	color: #ffffff;
	opacity: 0.8;
}
.footer ul li a{
	color:#fff2dc;
	font-weight:700;
}
.footer ul li a:hover{
	color:#FFFFFF;
}
.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
	color: #2774b1;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
	color: #2774b1;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: #2774b1;
	text-align: center;
}

.copyright p,
.copyright a {
	color: #ffffff;
	text-decoration: none;
}

.copyright p {
	opacity: 0.8;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed; 
  	z-index: 99; 
	bottom: 20px; 
	right: 20px; 
	display: none; 
	width: 52px;
	height: 52px;
	border: none; 
	border-radius: 50%; 
	outline: none; 
	background-color: #44434a; 
	cursor: pointer; 
}

#myBtn:hover {
	background-color: #1d1d21;
}

#myBtn img {
	margin-bottom: 0.25rem;
	width: 18px;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 9rem;
	padding-bottom: 5rem;
	background-color: #FDF880;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f9f8f8;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #ef334a;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 600;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/	
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		padding-top: 9rem;
	}

	.header .h1-large {
		font-size: 3.75rem;
		line-height: 4.625rem;
	}
	/* end of header */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	.h2-heading {
		width: 33rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: transparent;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.extra-page {
		padding-top: 0.5rem;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #FDF880;
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .nav-item .btn-outline-sm {
		margin-top: 0;
		margin-left: 0.625rem;
	}
	/* end of navigation */


	/* Header */
	.header {
		padding-top: 12rem;
		padding-bottom: 7rem;
		text-align: left;
	}

	.header .text-container {
		margin-bottom: 0;
	}

	.header .btn-solid-lg {
		display: inline-block;
		margin-bottom: 0;
	}
	/* end of header */


	/* Features */
	.cards-1 .card {
		display: inline-block;
		width: 286px;
		vertical-align: top;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2rem;
		margin-left: 2rem;
	}
	/* end of features */


	/* Details 1 */
	.basic-1 .text-container {
		margin-bottom: 0;
	}
	/* end of details 1 */

	
	/* Details Modal */
	/* Stops body and navbar shift on modal open */
	body.modal-open {
		overflow-y: scroll !important;
		padding-right: 0 !important;
	}

	body.modal-open .navbar {
		padding-right: 0 !important;
	}
	/* end of stops body and navbar shift on modal open */

	.modal {
		padding-right: 0 !important;
	}

	.modal-dialog {
		margin-top: 120px;
		margin-right: auto;
		margin-left: auto;
	}
	
	.modal-content .image-container {
		margin-bottom: 0;
	}
	/* end of details modal */


	/* Details 2 */
	.basic-2 {
		padding-bottom: 10rem;
	}

	.basic-2 .image-container {
		margin-bottom: 0;
	}
	/* end of details 2 */


	/* Testimonials */
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	
	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	/* end of testimonials */


	/* Invitation */
	.basic-3 h4 {
		width: 44rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of invitation */


	/* Pricing */
	.cards-2 .card {
		display: inline-block;
		width: 298px;
		vertical-align: top;
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of pricing */


	/* Questions */
	.accordion-1 .accordion {
		width: 820px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of questions */
	
	
	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}
	
	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {
	
	/* General Styles */
	.container {
		max-width: 1140px;
	}
	/* end of general styles */
	

	/* Header */
	.header {
		overflow: hidden;
		padding-top: 14.5rem;
		padding-bottom: 2rem;
	}

	.header .image-container {
		position: relative;
	}
	
	.header .image-container img {
		position: absolute;
		top: -180px;
		left: -10px;
		width: 840px;
		max-width: none;
	}
	/* end of header */


	/* Features */
	.cards-1 .card {
		width: 310px;
	}
	
	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 5.5rem;
		margin-left: 5.5rem;
	}
	/* end of features */


	/* Details 1 */
	.basic-1 .text-container {
		margin-top: 10rem;
	}

	.basic-1 h2 {
		margin-right: 4rem;
	}

	.basic-1 .image-container {
		margin-left: 4rem;
	}
	/* end of details 1 */


	/* Details Modal */
	.modal-content {
		padding-right: 2rem;
		padding-left: 2rem;
	}
	/* end of details modal */


	/* Details 2 */
	.basic-2 .text-container {
		margin-top: 8rem;
		margin-left: 5rem;
	}
	/* end of details 2 */


	/* Testimonials */
	.slider-1 .swiper-container {
		width: 96%;
	}

	.slider-1 .swiper-button-prev {
		left: -28px;
	}
	
	.slider-1 .swiper-button-next {
		right: -28px;
	}
	/* end of testimonials */


	/* Pricing */
	.cards-2 .card {
		width: 342px;
	}
	
	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 2.5rem;
		margin-left: 2.5rem;
	}
	/* end of pricing */


	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 6rem;
	}
	
	.footer .footer-col.second {
		margin-right: 6.5rem;
	}
	
	.footer .footer-col.third {
		text-align: right;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */
}
/* end of min-width 1200px */







.logo-slider {
 
  border: 0px solid #575757;
 
  padding: 20px;
  overflow: hidden;
  max-width: 99%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
}
.logo-slider:hover .home-slider {
  /*animation-play-state: paused;*/
}
.logo-slider .home-slider {
  display: flex;
  position: relative;
  animation: marquee_slider 60s linear infinite;
  justify-content: space-around;
}
.logo-slider .home-slider img {
  display: block;
  min-width: 150px;
  height: 200px;
  margin: 0 1vw;
}
.home-slider .logo-slider img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0) 80px, rgba(255, 255, 255, 0) calc(100% - 80px), white);
}
@media (max-width: 900px) {
  .logo-slider {
    width: 100%;
   /* width: min(max(100%, 60vw), 500px);*/
  }
}
@media (max-width: 1168px) {
  .logo-slider {
    width: 100%;
    /*width: min(max(100%, 50vw), 700px);*/
  }
}
@media (max-width: 768px) {
  .logo-slider {
    width: 100%;
    /*width: min(max(100%, 30vw), 400px);*/
  }
}

@keyframes marquee_slider {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


.about-us-img {
	width:190px !important;
	height:230px !important;
	border:1px solid #999;
	box-shadow:3px 2px 5px #000;
}



.blink12345 {
                animation: blinker12345 1.5s linear infinite;
                color: red;
                font-family: sans-serif;
            }
            @keyframes blinker12345 {
                50% {
                    opacity: 0.3;
                }
            }
			
			
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #cccccc !important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #cccccc !important;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #cccccc !important;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #cccccc !important;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #cccccc !important;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #cccccc !important;
}		




.countdown {
  padding:auto;
  margin:auto;
}
.countdown  div {
  display: inline-block;
  font-size: 1em;
  list-style-type: none;
  padding: 5px 5px;
  text-align: left;
 /* text-transform: uppercase;*/
}

.countdown div span {
  display: inline-block;
  font-size: 1.0rem;
}



.blink_text {
 animation-name: blinker;
 animation-duration: 2s;
 animation-timing-function: linear;
 animation-iteration-count: infinite;
}

@keyframes blinker {  
 0% { opacity: 1.0; color:#631919;}
 10% { opacity: 0.8; color:#b963ee;}
 20% { opacity: 1.0; color:#e57314;}
 30% { opacity: 0.8; color:#85af38;}
 40% { opacity: 1.0; color:#5c144f;}
 50% { opacity: 0.8; color:#ebdb5e;}
 60% { opacity: 1.0; color:#97d2d4;}
 70% { opacity: 0.8; color:#e30613;}
 80% { opacity: 1.0; color:#46918;}
 90% { opacity: 0.8; color:#3e3f40;}
 100% { opacity: 1.0; color:#2c7ef2;}
}

.blink_text_white {
 animation-name: blinker_white;
 animation-duration: 5s;
 animation-timing-function: linear;
 animation-iteration-count: infinite;
}

@keyframes blinker_white {  
 0% { opacity: 1.0; color:#FFFFFF;}
 20% { opacity: 1.0; color:#EEEEEE;}
 40% { opacity: 1.0; color:#FFFF00;}
 60% { opacity: 1.0; color:#DDDDDD;}
 80% { opacity: 1.0; color:#00FFFF;}
 100% { opacity: 1.0; color:#FFFF00;}
}

.blink_text_black {
 animation-name: blinker_black;
 animation-duration: 5s;
 animation-timing-function: linear;
 animation-iteration-count: infinite;
}

@keyframes blinker_black {  
 0% { opacity: 1.0; color:#000000;}
 20% { opacity: 1.0; color:#999999;}
 40% { opacity: 1.0; color:#666666;}
 60% { opacity: 1.0; color:#333333;}
 80% { opacity: 1.0; color:#bbbbbb;}
 100% { opacity: 1.0; color:#aaaaaa;}
}



.blink_text {
 animation-name: blinker;
 animation-duration: 1s;
 animation-timing-function: linear;
 animation-iteration-count: infinite;
}

@keyframes blinker {  
 0% { opacity: 1.0; }
 50% { opacity: 0.5; }
 100% { opacity: 1.0; }
}



.accordion-button {
  background-color: #cccccc;
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  
}

.accordion-button.collapsed {
  background-color: #76159c;
  color:#FFFFFF;
}


.author-img {
	width:180px;
	height:230px;
	border-radius:10px;
	box-shadow:1px 2px 5px #333;
	margin-bottom:10px;
}
.zoom-circle {
    transition: transform 0.2s linear; /* Animation */
    z-index:9999999999999;
    margin: 0 auto;
	
	
}

.zoom-circle:hover {
    transition: transform 1.2s ease-in-out; /* Animation */
	border-radius:10px;
	box-shadow:1px 2px 5px #333;
	z-index:9999999999999;
	position:relative;
	-moz-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
	
} 




.font30 {
	font-size:30px;
}
.font28 {
	font-size:28px;
}
.font25{
	font-size:25px;
}
.font22 {
	font-size:22px;
}
.font20 {
	font-size:20px;
}
.font18 {
	font-size:18px;
}
.font16 {
	font-size:16px;
}
.font15 {
	font-size:15px;
}
.font14 {
	font-size:14px;
}

.font30 a{
	font-size:30px;
}

.font25 a{
	font-size:25px;
}

.btn .font25 a{
	font-size:25px;
}
.font22 a{
	font-size:22px;
}
.font20 a{
	font-size:20px;
}
.font18 a{
	font-size:18px;
}
.font16  a{
	font-size:16px;
}
.font14 a{
	font-size:14px;
}
.bold400 {
	font-weight:400;
}
.bold500 {
	font-weight:500;
}
.bold600 {
	font-weight:600;
}
.bold700 {
	font-weight:700;
}
.bold800 {
	font-weight:800;
}
.bold900 {
	font-weight:900;
}
.min-height200{
	min-height: 200px! important;
}
.min-height300{
	min-height: 300px! important;
}
.min-height350{
	min-height: 350px! important;
}
.min-height400{
	min-height: 400px! important;
}
.italic {
    font-style: italic;
	font-weight:600;
}

.oblique {
    font-style: oblique;
	font-weight:600;
}

.margin-top-10{
	margin-top:10px !important;
}
.line-heght-15 {
	line-height:1.5em;
}
.line-heght-25 {
	line-height:2.5em;
}

.myred {
	color:#C52D2F !important;
}
.mygreen {
	color:#28A745 !important;
}
.mywhite {
	color:#FFFFFF !important;
}
.mydarkblue{
    color:#021B75 !important;
}
.mybox-new {
	padding:10px 15px;
	margin: auto;
	background: transparent;
	margin-bottom:15px;
	border: 2px solid transparent;
	border-image: linear-gradient(to right, #2CA201 0%,#7DF7FF 25%, #C30CB4 50%, #7DF7FF 75%, #2CA201 100%);
	border-image: -webkit-linear-gradient(to right, #2CA201 0%,#7DF7FF 25%, #C30CB4 50%, #7DF7FF 75%, #2CA201 100%);
	border-image: -moz-linear-gradient(to right, #2CA201 0%,#7DF7FF 25%, #C30CB4 50%, #7DF7FF 75%, #2CA201 100%);
	border-image: -ms-linear-gradient(to right, #2CA201 0%,#7DF7FF 25%, #C30CB4 50%, #7DF7FF 75%, #2CA201 100%);
	border-image: -o-linear-gradient(to right, #2CA201 0%,#7DF7FF 25%, #C30CB4 50%, #7DF7FF 75%, #2CA201 100%);
	border-image-slice: 1;
}

.mybox-new-1 {
	padding:30px 25px;
	margin: 10px;
	background: transparent;
	margin-bottom:15px;
	border: 2px solid transparent;
	border-image: linear-gradient(to right, #cccccc 0%,#dddddd 25%, #eeeeee 50%, #dddddd 75%, #cccccc 100%);
	border-image: -webkit-linear-gradient(to right, #cccccc 0%,#dddddd 25%, #eeeeee 50%, #dddddd 75%, #cccccc 100%);
	border-image: -moz-linear-gradient(to right, #cccccc 0%,#dddddd 25%, #eeeeee 50%, #dddddd 75%, #cccccc 100%);
	border-image: -ms-linear-gradient(to right, #cccccc 0%,#dddddd 25%, #eeeeee 50%, #dddddd 75%, #cccccc 100%);
	border-image: -o-linear-gradient(to right, #cccccc 0%,#dddddd 25%, #eeeeee 50%, #dddddd 75%, #cccccc 100%);
	border-image-slice: 1;
}

.mybox {
	padding:25px 15px;
	margin: auto;
	background: transparent;
	margin-bottom:15px;
	border: 1px solid transparent;
	border-image: linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -webkit-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -moz-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -ms-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -o-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image-slice: 1;
}
.mybox-bordered-new {
       border:none;
       padding:5px;
   }
@media screen and (max-width: 768px) {
   .mybox {
    width:94%; 
    padding:10px;
   }
   .mybox-new{
        width:94%; 
    padding:10px;
   }
   .mybox-new-1{
        width:94%; 
    padding:10px;
   }
   .mybox-bordered-new {
       border:1px dotted #666;
       padding:5px;
   }
}

.mybox-img {
	padding:10px;
	margin: auto;
	background: transparent;
	margin-bottom:15px;
	border: 1px solid transparent;
	border-image: linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -webkit-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -moz-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -ms-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -o-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #0C5CC2 50%, #FFF15C 75%, #D0281B 100%);
	border-image-slice: 1;
	box-shadow:3px 5px 5px #333;
}

.hr-fancy {
		border-bottom: 1px solid transparent;
	border-image: linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -webkit-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -moz-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -ms-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image: -o-linear-gradient(to right, #D0281B 0%,#FFF15C 25%, #D0281B 50%, #FFF15C 75%, #D0281B 100%);
	border-image-slice: 1;
}


hr.style1{
	border-top: 1px solid #8c8b8b;
}


hr.style2 {
	border-top: 3px double #8c8b8b;
}

hr.style3 {
	border-top: 1px dashed #8c8b8b;
}

hr.style4 {
	border-top: 1px dotted #8c8b8b;
}

hr.style5 {
	background-color: #fff;
	border-top: 2px dashed #8c8b8b;
}


hr.style6 {
	background-color: #fff;
	border-top: 2px dotted #8c8b8b;
}

hr.style7 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}


hr.style8 {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}
hr.style8:after {
	content: '';
	display: block;
	margin-top: 2px;
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}

hr.style9 {
	border-top: 1px dashed #8c8b8b;
	border-bottom: 1px dashed #fff;
}

hr.style10 {
	border-top: 1px dotted #8c8b8b;
	border-bottom: 1px dotted #fff;
}


hr.style11 {
	height: 6px;
	background: url(css/hr-11.png) repeat-x 0 0;
    border: 0;
}


hr.style12 {
	height: 6px;
	background: url(css/hr-12.png) repeat-x 0 0;
    border: 0;
}

hr.style13 {
	height: 10px;
	border: 0;
	box-shadow: 0 10px 10px -10px #8c8b8b inset;
}


hr.style14 { 
  border: 0; 
  height: 6px; 
  background-image: -webkit-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -moz-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -ms-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -o-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2); 
}
hr.style14-sm { 
  border: 0; 
  height: 2px; 
  background-image: -webkit-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -moz-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -ms-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -o-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2); 
}

hr.style15 {
	border-top: 4px double #8c8b8b;
	text-align: center;
}
hr.style15:after {
	content: '\002665';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
}

hr.style16 { 
  border-top: 1px dashed #8c8b8b; 
} 
hr.style16:after { 
  content: '\002702'; 
  display: inline-block; 
  position: relative; 
  top: -12px; 
  left: 40px; 
  padding: 0 3px; 
  background: #f0f0f0; 
  color: #8c8b8b; 
  font-size: 18px; 
}


hr.style17 {
	border-top: 1px solid #8c8b8b;
	text-align: center;
}
hr.style17:after {
	content: '§';
	display: inline-block;
	position: relative;
	top: -14px;
	padding: 0 10px;
	background: #f0f0f0;
	color: #8c8b8b;
	font-size: 18px;
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	transform: rotate(60deg);
}


hr.style18 { 
  height: 30px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 1px 0 0 0; 
  border-radius: 20px; 
} 
hr.style18:before { 
  display: block; 
  content: ""; 
  height: 30px; 
  margin-top: -31px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 0 0 1px 0; 
  border-radius: 20px; 
}

/* For NEWS Scrolling */
 hr.style-two-mrq {
    border: 0;
    height: 2px;
    background-image: -webkit-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -moz-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -ms-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2);
  background-image: -o-linear-gradient(left, #D0281B, #FFF15C, #0C5CC2); 
}

label{
	color:#0C5CC2;
	font-size:15px;
	font-weight:600;
}




.GreenNumbers {
    list-style-type: none;
}
.GreenNumbers ul {
    margin-left: 2em;
}
.GreenNumbers li {
   
	padding:10px 5px 5px 40px; line-height:200%; text-transform: capitalize;
}
.GreenNumbers li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    display: block;
    position: relative;
    max-width: 0px;
    max-height: 0px;
    left: -1.3em;
    top: .05em;
    color: #FE0000;
    font-weight: bold;
}
.GreenNumbers ul.b li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: red; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */ 
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  
} 


.GreenNumbersterms {
    list-style-type: none;
}
.GreenNumbersterms ul {
    margin-left: 2em;
}
.GreenNumbersterms li {
   
	padding:2px 2px 2px 40px; line-height:200%; text-transform: capitalize;
}
.GreenNumbersterms li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    display: block;
    position: relative;
    max-width: 0px;
    max-height: 0px;
    left: -1.3em;
    top: .05em;
    color: #212121;
    font-weight: bold;
}
.GreenNumbersterms ul.b li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #212121; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */ 
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  
} 

@media only screen and (max-width: 767px) {
	.GreenNumbers li {
   
	padding:10px 5px 5px 10px; line-height:150%; text-transform: capitalize;
	}
	.GreenNumbers li ul li{
   
	padding:0; line-height:150%; text-transform: capitalize;
	}
	
	.GreenGreenNumberstermsNumbers li {
   
	padding:10px 5px 5px 10px; line-height:150%; text-transform: capitalize;
	}
	.GreenNumbersterms li ul li{
   
	padding:0; line-height:150%; text-transform: capitalize;
	}
	
}




