/*****************************************
Colors:
- Backgrounds - light gray #f9f8f8
- Buttons - navy blue #f6774c
- Buttons - orange #579e66
- Headings text - navy blue #f6774c
- Body text - dark gray #565578
******************************************/

:root {
	--primario: #f6774c;
	--secundario: #579e66;
	--texto: #565578;
	--texto-claro: #ffffff;
	--fondo: #fff2dc;
	--fondo2: #defaeb;
	--fondo3: #e6ffea;
}


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #565578; 
	font: 500 1rem "Montserrat", sans-serif;
	line-height: 1.8rem;
}

h1, h2, h3, h4, h5, h6{
    color: var(--primario);
	font-weight: 700;

}

h1 {
	font-size: 2.5rem;
	line-height: 3.25rem;
	letter-spacing: -0.4px;
}

h2 {
	font-size: 2rem;
	line-height: 3.625rem;
}

h3 {
	font-size: 1.75rem;
	line-height: 2.25rem;
}

h4 {
	font-size: 1.5rem;
	line-height: 2.125rem;
}

h5 {
	font-size: 1.25rem;
	line-height: 1.625rem;
}

h6 {
	font-size: 1rem;
	line-height: 1.375rem;
}

.p-large {
	font-size: 2.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; 
    border: 1px solid #f6774c;
    border-radius: 30px;
    background-color: #f6774c;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 0; 
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    width: 100%; 
    height: auto; 
}

.btn-solid-reg:hover {
	background-color: var(--texto-claro);
	color: #f6774c; /* 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 #f6774c;
	border-radius: 30px;
	background-color: #f6774c;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #f6774c; /* 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 #f6774c;
	border-radius: 30px;
	background-color: #f6774c;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-sm:hover {
	background-color: transparent;
	color: #f6774c; /* 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 #579e66;
	border-radius: 30px;
	background-color: transparent;
	color: #579e66;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #579e66;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #579e66;
	border-radius: 30px;
	background-color: transparent;
	color: #579e66;
	font-weight: 600;
	font-size: 1.2rem;
	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 #579e66;
	border-radius: 30px;
	background-color: transparent;
	color: #579e66;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #579e66;
	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 #579e66;
	border-radius: 30px;
	background-color: #579e66;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #579e66;
	background-color: transparent;
	color: #579e66;
}

#message{
	min-height: 10rem!important;
}
/* 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: #fff2dc;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1rem;
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 132px;
	height: 30px;
}

.navbar .logo-text {
	color: #f6774c;
	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: #fff2dc;
	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: #565578;
	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: #579e66;
}

/* 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: #fff2dc;
}

.navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #f6774c;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #fff2dc;
	color: #579e66;
}

.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: 9rem;
	background-color: #e6ffea;
	text-align: center;
}

.header .h1-large {
	margin-bottom: 1.25rem;
}

.header .replace-me {
	color: #579e66;
	font-size: 3rem;
	line-height: 3rem;
}

.header .replace-me span {
	font-size: 0.65em;
}

.header h3 {
	margin-bottom: 2rem;
}

.header .p-large {
	margin-bottom: 2.75rem;
}

.header .text-container {
	margin-bottom: 2rem;
}


/********************/
/*     Features     */
/********************/
#features{
background-color: #fff2dc;
}
.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: #579e66;
	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;
	color: var(--secundario);
	margin-top: 1rem;
}

.cards-1 .card-body p {
	margin-bottom: 1.125rem;
}

.card .image-container{
	width: 50%;
	margin: 0 auto;
}


/*********************/
/*     Details 1     */
/*********************/
.basic-1 {
	padding-top: 8.5rem;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' %3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23579E66'/%3E%3Cstop offset='1' stop-color='%23F6774C'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='9' height='9' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%23ffffff' cx='4.5' cy='4.5' r='4.5'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-attachment: fixed;
	
}

.basic-1 .text-container {
	margin-bottom: 3rem;
}

.basic-1 h2 {
	margin-bottom: 1.875rem;
	color: #ffffff;
}

.basic-1 p {
	margin-bottom: 1.875rem;
	color: #ffffff;

}

.basic-1 .btn-solid-reg {
	cursor: pointer;
}

.basic-1 .image-container {
	margin-left: 4rem;
	width: 60%;
	margin-bottom: 1rem;
}


/*************************/
/*     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: 4.5rem;
	padding-bottom: 4rem;
	display: block;
	background-image: url("../images/fondo.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: -2;
}

.basic-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-image: linear-gradient(to right, transparent 0%, #ffffff 12%, #ffffff 88%, transparent 100%);

    z-index: -1; /* Asegura que el pseudo-elemento esté por encima de la imagen */
}

.basic-2 .container .row{
	justify-content: center;
    text-align: center;
}

.basic-2 h4 {
	margin-bottom: 0rem;
}

.basic-2 .titulo-guia {
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 2.5rem;
}



.basic-2 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.basic-2 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

/*********************/
/*    Subscribirse    */
/*********************/
.subscribirse {
	padding-top: 4.5rem;
	padding-bottom: 4rem;
	display: block;
	background-color: var(--primario);
}

.subscribirse .image-container {
	margin-bottom: 5rem;
}

.subscribirse h2 {
	color: var(--texto-claro);
	margin-bottom: 1.875rem;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 2.2rem;
}

.subscribirse .form-subscripcion{
	justify-content: space-between;
	align-items: flex-end;
}

.subscribirse .form-subscripcion .form-group{
	width: 60%;
	margin-right: 10px;
}

.subscribirse .form-subscripcion .btn-solid-lg{
	padding: 0px 0px;
	font-size: 1.25rem;
	background-color: var(--secundario);
	color: var(--texto-claro);
	font-weight: 700;
	height: 2.5rem;
	vertical-align: middle;
	width: 40%;
}

.subscribirse .form-subscripcion .btn-solid-lg:hover{
	padding: 0px 0px;
	font-size: 1.25rem;
	background-color: var(--texto);
	color: var(--texto-claro);
	font-weight: 700;
	height: 2.5rem;
	vertical-align: middle;
	width: 40%;
}

.subscribirse .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.subscribirse .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 4rem;
	padding-bottom: 4rem;
	background-color: #FFFFFF;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' %3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23579E66'/%3E%3Cstop offset='1' stop-color='%23579E66'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='9' height='9' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%23FFFFFF' cx='4.5' cy='4.5' r='4.5'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.05'/%3E%3C/svg%3E");
background-attachment: fixed;

}

.slider-1 .section-title {
	text-align: center;
	color: #ffffff;
}

.slider-1 .h2-heading {
	margin-bottom: 3rem;
	color: #ffffff;
	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;
	color: #ffffff;
	text-align: left;
	font-size: 1rem;
	font-weight: 500;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #181c3b;
	color: #fff2dc;
}

/**********************/
/*     Invitation     */
/**********************/
.basic-3 {
	padding-top: 9rem;
	padding-bottom: 9rem;
	background-color: #f6774c;
	text-align: center;
	background-color: #579e66;


	background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' %3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23579E66'/%3E%3Cstop offset='1' stop-color='%23F6774C'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='9' height='9' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%23ffffff' cx='4.5' cy='4.5' r='4.5'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.05'/%3E%3C/svg%3E");
background-attachment: fixed;
}

.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: #f6774c;
}

/******************************************/
/*     Basic-4 Servicios individuales     */
/******************************************/
.basic-4 {
	padding-top: 4.5rem;
	padding-bottom: 4rem;
}

.basic-4 .list-chevron i{
	margin-right: 0.5rem;
	padding-top: 0.3rem;

}

.basic-4 h2{
	color: var(--secundario);
	text-transform: uppercase;
}

.basic-4 .list-order {
	padding-left: 2rem;
}

.basic-4 .list-order li{
	list-style-type: decimal  !important;
	list-style: inherit;
	display: list-item;
	border: none;
	padding: .5rem 0.5rem;
}

#servicio-1, #servicio-3, #servicio-5{
	background-color: var(--fondo3);
}

/******************/
/*     Contact     */
/******************/
#contact{
	padding-top: 8.5rem;
	padding-bottom: 4rem;
}

/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.5rem;
	padding-bottom: 2rem;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' %3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1' gradientTransform='rotate(0,0.5,0.5)'%3E%3Cstop offset='0' stop-color='%23579E66'/%3E%3Cstop offset='1' stop-color='%23579E66'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='9' height='9' patternUnits='userSpaceOnUse'%3E%3Ccircle fill='%23FFFFFF' cx='4.5' cy='4.5' r='4.5'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.05'/%3E%3C/svg%3E");
   background-attachment: fixed;
}

.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 .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: #f6774c;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
	color: #f6774c;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: #000000;
	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;
}


/*--------------------------------------------------------------
# whatsapp
--------------------------------------------------------------*/

.btn-whatsapp{
    display: block;
    width: 80px;
    height: 80px;
    color: #fff;
    position: fixed;
    left: 10px;
    bottom: 3px;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
    z-index: 9999999;
    padding-top: 20px;
}

.btn-whatsapp img{width: 62%; float: left; text-align: left;}

@media only screen and (max-width: 768px) { 
 
     .btn-whatsapp img{width: 60%; float: left; text-align: left;}
    }

@media only screen and (max-width: 480px) { 
 .btn-whatsapp{
    padding-top: 22px;}
}

 @media only screen and (max-width: 320px) {
 
  .btn-whatsapp{
    padding-top: 22px;
    left: 10px;
  }
  .btn-whatsapp img{width: 62%; float: left; text-align: left;}
  
}




/*************************/
/*     Media Queries     */
/*************************/	
@media (max-width: 1200px){

	.basic-1 .image-container {
		margin-left: 4rem;
		width: 80%;
		margin-bottom: 1rem;
	}
}

@media (max-width: 1000px){

	.header {
		padding-bottom: 2rem;
	}

	.footer .footer-col.third {
		text-align: center;
		vertical-align: top;
	}
}

@media (max-width: 992px){

	.basic-1 .image-container {
		margin: 0 auto;
		width: 50%;
		margin-bottom: 2rem;
	}

	.foto img{
		object-fit: cover;
		height: 400px;
		width: 100%;
	}
}

@media (max-width: 768px){
    .btn-movil-box{
		padding: 0 10px;
	}
	.btn-solid-reg {
		line-height: 1.8rem;
	}
	.card .image-container {
		width: 40%;
		margin: 0 auto;
	}

	.header .replace-me {
		font-size: 2rem;
	}

	.basic-4 h2 {
		font-size: 1.5rem;
		line-height: 2.2rem;
	}

}

@media (max-width: 340px){

	.basic-4 h2 {
		font-size: 1.4rem;
		line-height: 2rem;
	}
	 
	h3{
		font-size: 1.2rem;
		line-height: 1.8rem;
	}

}

/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		padding-top: 9rem;
	}

	.header .h1-large {
		font-size: 2.5rem;
		line-height: 2rem;
	}

	.header h3{
		margin-bottom: 3rem;
	}

	
	/* 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: #fff2dc;
	}

	.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);
		width: 250px;
	}

	.dropdown-item.active, .dropdown-item:active {
		color: #fff;
		text-decoration: none;
		background-color: var(--secundario);
	}

	.navbar .dropdown-menu li, .navbar .dropdown-menu li a{
		line-height: 1.2rem;
	}

	.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: 4rem;
		text-align: left;
	}

	.header .row {
		flex-direction: row;
		align-items: center;
	}

	.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: 4rem;
	}

	.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: 46rem;
		margin-right: auto;
		margin-left: auto;
	}

	.basic-3 h4.resaltar{
		color: #fff2dc;
		font-size: 2rem;

	}

	/* 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 */
	

	/* Subscripcion */

	.mensaje{
		padding: 1rem;
		border-radius: 20px;
		
	}

	.mensaje p{
		color: var(--secundario);
		text-align: center;
		margin-bottom: 0;
		font-weight: 700;
		font-size: 1.3rem;
		margin-bottom: 2rem;
	}

	/* 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 {
		text-align: center;
		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: 12.5rem;
		padding-bottom: 13.5 rem;
	}

	.header .text-container h3{
		margin-bottom: 2rem;
	}

	.header .image-container {
		position: relative;
	}
	
	.header .image-container img {
		width: 250px;
	}

	.header .h1-large {
        font-size: 3rem;
        line-height: 1.625rem;
    }

	.header .replace-me {
		display: block;
	}
	/* 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{
	    background-color: #579e66;
		color: #ffffff;
		padding-bottom: 4rem;

	}

	.basic-1 h2 {
		margin-right: 1rem;
		font-size: 3rem;
	}

	/* 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.third {
		text-align: center;
		width: 100%;
	}
	/* 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 */