/*
	======================================================
	General
	======================================================
*/
	body{
		background-color: #fff;
    font-family: 'Pier Sans';
    font-weight: 400;
		color: #282828;
		overflow-x: hidden !important;
	}
	main{
		position: relative;
		overflow: hidden;
	}
	a{
		text-decoration: none;
		transition: all .4s ease;
	}
	a:hover{
		color: #818d60;
		text-decoration: none;
	}
	#to-top{
		padding: .5rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background-color: #818d60;
		border: 1px solid #818d60;
		color: #fff;
		width: 50px;
		height: 50px;
		text-align: center;
		border-radius: 50%;
		position: fixed;
		bottom: 30px;
		right: 30px;
		transition: all .4s ease;
		opacity: 0;
		visibility: hidden;
		box-shadow: 0 0 10px rgba(0,0,0,.2);
		z-index: 1000;
	}
	#to-top img{
		max-height: 20px;
		filter: brightness(0) invert(1);
	}
	#to-top:hover {
		cursor: pointer;
		filter: none;
		background-color: #f76363;
		border-color: #f76363;
	}
	#to-top.show {
		opacity: 1;
		visibility: visible;
	}
	.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6{
    font-family: 'Playfair Display';
		font-weight: 600;
	}
	.h6, h6{
		font-size: 1.25rem;
	}
	b, strong{
		font-weight: bold;
	}
	.bg-lightgray{
		background-color: #f2f2f2;
	}
	.collapsing {
		transition: height .35s ease;
	}
	.andalusia{
		font-family: 'Andalusia';
		font-weight: 400;
	}
	.ink-free{
		font-family: 'Ink Free';
		font-weight: 500;
	}
	.serenity{
		font-family:  'Serenity';
		font-weight: 300;
	}
	.nueva{
	font-family: 'Style Script', cursive;
	font-weight: 300;
	font-size:24px;
	}
	.big-title{
		font-size: 3rem;
	}
	.text-pink{
		color: #f76363;
	}
	.text-primary{
		color: #818d60 !important;
	}
	.text-second{
		color: #fed0cb !important;
	}
	.text-dark{
		color: #666 !important;
	}
	.mb-30{
		margin-bottom: 30px;
	}
	.mt-30{
		margin-top: 30px;
	}
	.mb-45{
		margin-bottom: 45px;
	}
	.mb-60{
		margin-bottom: 60px !important;
	}
	.mb-100{
		margin-bottom: 100px !important;
	}
	.btn{
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 0;
		font-weight: 700;
		padding: 0 2rem;
		height: 50px;
		position: relative;
		border-radius: 30px;
		transition: all .4s ease;
	}
	.btn:focus{
		box-shadow: none;
	}
	.btn span{
		display: inline-block;
		position: relative;
		z-index: 99;
	}
	.btn-primary{
		background-color: #818d60;
		border-color: #818d60;
		color: #fff;
	}
	.btn-primary:hover,
	.btn-primary:focus,
	.btn-primary:not(:disabled):not(.disabled).active, 
	.btn-primary:not(:disabled):not(.disabled):active{
		background-color: #f76363;
		border: 1px solid #f76363;
		color: #fff;
		filter: none;
		box-shadow: none;
	}
	.btn-primary:hover:before,
	.btn-primary:focus:before{
		width: 100%;
	}
	.btn-outline-primary {
		color: #818d60;
		border-width: 2px;
		border-color: #818d60;
	}
	.btn-outline-primary:hover {
		color: #fff;
		background-color: #818d60;
		border-color: #818d60;
		filter: none;
	}
	.form-group{
		margin-bottom: 1.5rem;
	}
	.form-control{
		background-color: #fff;
		border: 1px solid #e4e4e4;
		border-radius: 0;
		height: calc(1.5em + 1rem + 2px);
	}
	.form-control:focus{
		border-color: #818d60;
		box-shadow: none;
	}
	.form-control::placeholder{
		color: #000;
		opacity: .7;
	}
	.form-check-label{
		color: #a4a4a4;
		font-size: 14px;
	}
	.container-fluid{
		position: relative;
	}
	.social-item {
		display: flex;
		align-items: center;
	}
	.social-item a svg {
		height: 20px;
		width: 20px;
	}
	section,
	.section{
		padding: 100px 0;
		position: relative;
	}
	section img,
	.section img{
		display: block;
		max-width: 100%;
	}
	.section-title{
		font-weight: 400;
		margin-bottom: 1.5rem;
		position: relative;
	}
	.andalusia.section-title{
		font-size: 2.5rem;
		font-weight: 400;
	}
	.ink-free.section-title{
		font-size: 3rem;
		font-weight: 400;
	}
	.section-subtitle{
		font-size: 1.25rem;
		font-weight: 300;
		margin-bottom: 0;
		text-transform: uppercase;
	}
	.section-description{
		line-height: 1.5;
		font-size: 18px;
	}
	.section-description p{
		margin-bottom: 0;
	}
	.section-description p:not(:last-child){
		margin-bottom: 1.5rem;
	}
	@media (min-width: 992px){
		.big-title{
			font-size: 4.5rem;
		}
		.section-title{
			font-size: 2.5rem;
		}
		.andalusia.section-title{
			font-size: 3rem;
		}
		.ink-free.section-title{
			font-size: 3.5rem;
		}
		.flex-direction-lg-row{
			flex-direction: row;
		}
	}	
	@media (min-width: 1440px){
		.container{
			max-width: 1440px;
		}
	}	
	@media (max-width: 360px){
		.h1, h1{
			font-size: 2rem;
		}
	}
/*
	======================================================
	Header
	======================================================
*/
	header{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 999999;
	}
	.navbar{
		padding-top: 10px;
		padding-bottom: 10px;
		background-color: rgba(255,255,255,.9);
		box-shadow: 2px 0 6px rgba(0,0,0,.4);
		transition: all .4s ease;
	}
	/*.navbar:before{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% - 1px);
		width: 95%;
		height: 2px;
		margin: auto;
		background-color: #fff;
	}*/
	.navbar.fixed-top{
		background-color: rgba(255,255,255,.9);
		box-shadow: 2px 0 6px rgba(0,0,0,.4);
	}
	.navbar.fixed-top:before{
		background-color: #818d60;
	}
	.navbar-brand{
		min-width: 150px;
		max-width: 150px;
		display: flex;
		align-items: center;
	}
	.navbar-brand img{
		display: block;
		width: 100%;
		max-width: 80px;
		height: auto;
		transition: all .4s ease;
	}
	.navbar-brand .logo{
		display: none;
	}
	.navbar.fixed-top .navbar-brand .logo{
		display: none;
	}
	.navbar.fixed-top .navbar-brand .logo-alt{
		display: block;
		max-width: 80px;
	}
	.navbar .nav-item{
		position: relative;
		display: flex;
		align-items: center;
	}
	.navbar .nav-link,
	.navbar-expand-lg .navbar-nav .nav-link{
		color: #555;
		font-size: 1rem;
		padding: .5rem 15px;
		position: relative;
		text-transform: uppercase;
	}
	.navbar .active .nav-link,
	.navbar .nav-link:hover,
	.navbar-expand-lg .navbar-nav .active .nav-link,
	.navbar-expand-lg .navbar-nav .nav-link:hover{
		color: #818d60;
		filter: none;
	}
	.navbar.fixed-top .nav-link,
	.navbar-expand-lg.fixed-top .navbar-nav .nav-link{
		color: #818d60;
	}
	.navbar.fixed-top .active .nav-link,
	.navbar.fixed-top .nav-link:hover,
	.navbar-expand-lg.fixed-top .navbar-nav .active .nav-link,
	.navbar-expand-lg.fixed-top .navbar-nav .nav-link:hover{
		color: #f76363;
	}
	.navbar-toggler svg{
		height: 20px;
		width: auto;
	}
	.navbar-toggler svg rect{
		transition: all .4s ease;
		fill: #818d60;
	}
	.navbar-toggler:hover svg rect{
		fill: #f76363;
	}
	.navbar-toggler:focus{
		outline: none;
	}
	.navbar-social img{
		max-height: 25px;
	}
	.navbar-social .nav-item:not(:last-child){
		margin-right: 1rem;
	}
	.navbar-social .nav-item::after{
		content: none !important;
	}
	.navbar .navbar-social .nav-link, 
	.navbar-expand-lg .navbar-social .nav-link{
		padding: .5rem 0;
	}
	.navbar-nav .dropdown-menu{
		border: 0;
		border-radius: 0;
		padding: 0;
		box-shadow: 2px 2px 6px rgba(0,0,0,.4);
	}
	.navbar-nav .dropdown-menu .dropdown-item{
		padding: .5rem 1.5rem
	}
	@media (min-width: 992px){
		.navbar{
			background-color: rgba(255,255,255,.9);
			box-shadow: 2px 0 6px rgba(0,0,0,.4);
		}
		.navbar-nav{
			align-items: center;
		}
		.navbar-brand img{
			max-width: 130px;
		}
		.navbar-brand .logo{
			display: block;
		}
		.navbar-brand .logo-alt{
			display: none;
		}
		.navbar-nav .dropdown:hover > .dropdown-menu{
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
			-webkit-transition-delay: 0s, 0s, 0s;
			transition-delay: 0s, 0s, 0s;
			visibility: visible;
			opacity: 1;
			z-index: 1000;
			display: initial !important;
			top: 100%;
		}
		.navbar .nav-link-featured,
		.navbar-expand-lg .navbar-nav .nav-link-featured{
			margin-left: 15px;
		}
	}
	@media (max-width: 991px){
		#main-navbar > .container{
			padding: 0;
		}
		#main-navbar .navbar-nav{
			padding: 0 0 1rem;
		}
		#main-navbar .navbar-nav .nav-item:not(:last-child){
			margin-bottom: .75rem;
			margin-right: 0;
		}
		.navbar .nav-link,
		.navbar-expand-lg .navbar-nav .nav-link{
			padding: 10px 0;
			width: 100%;
		}
		.main-navbar > .container {
			padding: 0;
		}
	}
/*
	======================================================
	Hero
	======================================================
*/
	.hero{
		display: flex;
		align-items: center;
		min-height: 500px;
	}
	.big-hero{
		min-height: 100vh;
	}
	.hero-content{
		position: absolute;
		display: flex;
		align-items: center;
		width: 100%;
		z-index: 2;
	}
	.hero-content .container{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.hero-title{
		font-size: 1.75rem;
		font-weight: 900;
		line-height: 1;
		margin-bottom: 0;
	}
	.hero-subtitle{
		font-size: 1.25rem;
		margin-bottom: 0;
	}
	.hero-text-box{
		display: inline-block;
		background-color: rgba(215, 151, 151, .9);
		color: #fff;
		padding: 1.5rem 1rem;
		text-align: center;
	}
	#heroSlider{
		position: absolute;
		width: 100%;
		height: 100%;
	}
	#heroSlider .carousel-inner{
		height: 100%;
	}
	#heroSlider .carousel-item{
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		height: 100%;
	}
	.carousel-control{
		background-color: #fff;
		color: #f76363;
		margin: auto;
		width: 30px;
		height: 30px;
		opacity: 1;
		z-index: 3;
		filter: none !important;
		transition: all .4s ease;
	}
	.carousel-control svg{
		max-height: 20px;
	}
	.carousel-control-prev{
		left: 0px;
	}
	.carousel-control-next{
		right: 0px;
	}
	.carousel-control:hover,
	.carousel-control:focus{
		background-color: #f76363;
		color: #fff;
	}
	@media (min-width: 576px){
		.hero-title{
			font-size: 2.25rem;
		}
	}
	@media (min-width: 992px){
		.hero-subtitle {
		    font-size: 1.5rem;
		}
		.hero-title {
		    font-size: 3rem;
		}
		.carousel-control{
			width: 50px;
			height: 50px;
		}
		.carousel-control svg{
			max-height: 35px;
		}
	}
	@media (max-width: 575px){
		.hero-text-box{
			width: calc(100% - 50px);
		}
	}
/*
	======================================================
	Gallery
	======================================================
*/
	.gallery-item{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding-top: 100%;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
	}
	.gallery-item:before{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,.4);
		transition: all .4s ease;
	}
	.gallery-item:hover{
		filter: none;
	}
	.gallery-item:hover:before{
		background-color: initial;
	}
	.gallery-h-100{
		height: calc(100% - 15px);
	}
	.gallery-info{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
/*
	======================================================
	About
	======================================================
*/
	.about-us{
		position: relative;
	}
	.about-us:before{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		height: 64%;
		width: 100%;
		background-color: #f0f2ed;
	}
	.about-block{
		text-align: center;
	}
	.about-block img{
		display: block;
		height: 100px;
		width: auto;
		margin: 0 auto 15px; 
	}
	.about-block h4{
		margin-bottom: 15px;
	}
	.about-block p{
		margin-bottom: 0;
		font-size: 14px;
	}
	.about-border{
		padding-top: 30px;
		border-top: 4px solid #bebebe;
	}
	.about-featured{
		position: relative;
		z-index: 2;
	}
	.about-featured-content{
		background: none;
		padding: 30px;
		font-size: 18px;
		line-height: 1.5;
	}
	.about-featured-content img{
		display: block;
		height: 80px;
		width: auto;
		margin-bottom: 15px;
	}
	.about-featured-content p{
		margin-bottom: 0;
	}
	.whatsapp-button{
		display: inline-flex;
		align-items: center;
		background-color: #818d60;
		color: #fff;
		padding: 10px 30px;
		border-radius: 30px;
		font-size: 18px;
		font-weight: 700;
	}
	.whatsapp-button:hover{
		background-color: #d79797;
		color: #fff;
	}
    .whatsapp-button2 {
        display: inline-flex;
        align-items: center;
        background-color: #818d60;
        color: #fff;
        padding: 5px 10px;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 700;
    }
    .whatsapp-button2:hover{
		background-color: #d79797;
		color: #fff;
	}
	.whatsapp-button.bg-main{
		background-color: #f76363;
	}
	.whatsapp-button.bg-main:hover{
		background-color: #818d60;
	}
	.whatsapp-button img{
		display: block;
		height: 30px;
		width: auto;
		margin-right: 10px;
	}
	#benefits{
		position: relative;
	}
	.benefits {
		display: block;
		width: 100%;
		margin: 0px;
	}
	#questions{
		background-color: #fbf4f4;
	}
	@media (min-width: 992px){
		#benefits:before{
			content: '';
			display: block;
			position: absolute;
			right: 0;
			top: 0;
			width: 40%;
			height: 100%;
			background-color: #d79797;
		}
		.about-border{
			border-top: 0;
			border-left: 4px solid #bebebe;
			padding-left: 30px;
		}
		.about-featured-content{
			padding: 30px 60px;
			border-top: 0;
		}
	}
	@media (min-width: 1200px){
		.about-featured-content{
			padding: 30px 60px 80px;
		}
	}
	@media (min-width: 1440px){
		.about-featured-content{
			padding-top: 0;
			padding-bottom: 110px;
		}
	}
/*
	======================================================
	Great Things
	======================================================
*/
	.great-things{
		position: relative;
	}
	.great-things:before{
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		height: 70%;
		width: 100%;
		background-image: url('../img/bg-pink.jpg');
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.great-things-box{
		position: relative;
	}
	.great-things-box img{
		display: block;
		height: auto;
		width: 100%;
		margin: 0; 
		z-index: 3;
		margin-top: 0px;
	}
	.great-things-box > h4{
		position: absolute;
		left: 15px;
		bottom: 15px;
		margin: 0;
	}
	.great-things-box .great-things-content{
		display: flex;
		justify-content: center;
		flex-direction: column;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(215, 151, 151, .9);
		padding: 30px;
		color: #fff;
		font-size: 16px;
		transform: translateY(100%);
		opacity: 0;
		visibility: hidden;
		transition: all .4s ease;
	}
	.great-things-box:hover .great-things-content{
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	.great-things-box .great-things-content h4{
		margin-bottom: 30px;
	}
	.great-things-box .great-things-content ul{
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.great-things-box .great-things-content ul li{
		position: relative;
		padding-left: 15px;
		margin-bottom: 15px;
	}
	.great-things-box .great-things-content ul li:before{
		content: '';
		display: block;
		height: 10px;
		width: 10px;
		border-radius: 50%;
		background-color: #fff;
		position: absolute;
		left: 0;
		top: 10px;
	}
	@media (min-width: 1200px){
		.great-things-box .great-things-content{
			font-size: 20px;
			padding: 30px 60px;
		}
		.great-things-box .great-things-content h4{
			font-size: 2rem;
			margin-bottom: 45px;
		}
	}
/*
	======================================================
	eBook-Form 
	======================================================
*/
    .ebook-container{
		position: relative;
		z-index: 1;
	}
    .ebook-form{
		position: relative;
		color: #fff;
        margin-top: 120px;
        margin-bottom: 120px;
	}
	.ebook-form label{
		font-size: 1.5rem;
	}
	.ebook-form .section-title{
		font-size: 3rem;
	}
	.ebook-form .ebook-info{
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 30px 0 60px;
	}
	.ebook-form .ebook-info .item{
		display: flex;
		align-items: center;
		color: #fff;
		font-size: 18px;
	}
	.ebook-form .ebook-info .item .fa{
		font-size: 24px;
		margin-right: 5px;
	}
	.ebook-form:before{
		content: '';
		display: block;
		position: absolute;
		left: -10%;
		top: -10%;
		background-color: #f5abab;
		width: 120%;
		height: 120%;
		z-index: 1;
	}
	.ebook-form form{
		position: relative;
		z-index: 1;
	}
	.ebook-form .form-control{
		border-color: #fff;
		background-color: transparent;
		color: #fff;
		font-size: 18px;
		padding: .5rem 1rem;
		border-radius: 30px;
		z-index: 1;
	}
    .ebook-form .form-checkbox{
        margin-left: 40px;
    }
	.ebook-form .form-control::placeholder{
		color: #fff;
	}
    @media (min-width: 992px){
		.ebook-form:before{
			width: 120%;
		}
	}
/*
	======================================================
	KITS
	======================================================
*/
#kits a h5{
	background-color: #818d60;
	color: #fff;
}
#kits a h5:hover{
	background-color: #d79797;
}
#kits img{
	filter: brightness(0.8);
}
#kits img:hover{
	filter: none;
}
/*
	======================================================
	steps-kit 
	======================================================
*/
    .steps-container{
		position: relative;
		z-index: 1;
	}
    .steps-kit{
		position: relative;
		color: #fff;
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .steps-kit .steps{
		position: relative;
		z-index: 1;
	}
    .steps-kit:before{
		content: '';
        display: block;
        position: absolute;
        left: -10%;
        top: -2%;
        background-color: #f5abab;
        width: 120%;
        height: 104%;
        z-index: 1;
	}
    .steps-group{
		margin-bottom: 1.5rem;
	}
	.steps-control{
		background-color: #fff;
		border: 1px solid #e4e4e4;
		border-radius: 0;
		height: calc(1.5em + 1rem + 2px);
	}
	.steps-control:focus{
		border-color: #818d60;
		box-shadow: none;
	}
	}
    .steps-kit .steps-control{
		color: #fff;
	}
    @media (min-width: 992px){
		.steps-kit:before{
			width: 120%;
		}
	}
/*
	======================================================
	Universe
	======================================================
*/
	.universe{
		position: relative;
		padding-bottom: 50px;
	}
	.universe:before{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: 100px;
		width: 100%;
		height: 50%;
		background-color: #fbf4f4;
	}

  .valientes-contenido{
		padding-left: 60px;
		padding-right: 30px;
		padding-bottom: 40px;
		font-size: 16px;
	}
	.attorneys:before{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
	}
	.attorneys:after{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 30%;
		height: 50px;
		background-color: #818d60;
		clip-path: polygon(0 0, 0% 100%, 100% 70%);
	}
	@media (min-width: 576px){
		.attorneys{
			padding-bottom: 250px;
		}
		.attorneys:before{
			clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
		}
		.attorneys:after{
			height: 100px;
			clip-path: polygon(0 0, 0% 100%, 100% 46%);
		}
	}
	@media (min-width: 768px){
		.attorneys:after{
			clip-path: polygon(0 0, 0% 100%, 100% 44%);
		}
	}
	@media (min-width: 992px){
		.attorneys:after{
			clip-path: polygon(0 0, 0% 100%, 100% 64%);
		}
	}
	@media (min-width: 1440px){
		.attorneys:after{
			clip-path: polygon(0 0, 0% 100%, 100% 60%);
		}
	}
/*
	======================================================
	Legal Support
	======================================================
*/
	#accordionLaw {
		border: 1px solid #e4e4e4;
		border-bottom: 0;
	}
	#accordionLaw > .card{
		border-radius: 0;
		border-bottom: 1px solid #e4e4e4;
	}
	#accordionLaw > .card .card-header .btn:focus,
	#accordionLaw > .card .card-header .btn:hover{
		text-decoration: none;
	}
	#accordionLaw > .card .card-header .btn:hover{
		padding-left: 30px;
	}
	.legal-form{
		background-color: #fcfbfb;
		border: 1px solid #e4e4e4;
		padding: 30px;
	}
/*
	======================================================
	Map
	======================================================
*/
	#map{
		padding: 0;
	}
	.responsive-map{
		position: relative;
		width: 100%;
		height: 600px;
	}
	.responsive-map iframe{
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
/*
	======================================================
	Footer
	======================================================
*/
	.footer{
		padding: 0;
	}
	.footer-section{
		padding: 150px 0;
		position: relative;
	}
	.footer-section:before{
		content: '';
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 40%;
		height: 100%;
		background-color: #d65352;
	}
	.footer-block{
		position: relative;
		z-index: 1;
	}
	.contact-container{
		position: relative;
		z-index: 1;
	}
	.contact-form{
		position: relative;
		color: #fff;
	}
	.contact-form label{
		font-size: 1.5rem;
	}
	.contact-form .section-title{
		font-size: 3rem;
	}
	.contact-form .contact-info{
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 30px 0 60px;
	}
	.contact-form .contact-info .item{
		display: flex;
		align-items: center;
		color: #fff;
		font-size: 18px;
	}
	.contact-form .contact-info .item .fa{
		font-size: 24px;
		margin-right: 5px;
	}
	.contact-form:before{
		content: '';
		display: block;
		position: absolute;
		left: -10%;
		top: -10%;
		background-color: #f5abab;
		width: 120%;
		height: 120%;
		z-index: 1;
	}
	.contact-form form{
		position: relative;
		z-index: 1;
	}
	.contact-form .form-control{
		border-color: #fff;
		background-color: transparent;
		color: #fff;
		font-size: 18px;
		padding: .5rem 1rem;
		border-radius: 30px;
		z-index: 1;
	}
    .contact-form .form-checkbox{
        margin-left: 40px;
    }
	.contact-form .form-control::placeholder{
		color: #fff;
	}
	.copyright{
		padding: 30px 0;
	}
	.copyright,
	.copyright a{
		color: #282828;
		text-align: center;
	}
	.copyright p{
		margin-bottom: 0;
	}
	@media (min-width: 992px){
		.contact-form:before{
			width: 150%;
		}
	}
/*
  ======================================================
  Whatsapp
  ======================================================
*/
	#whatsapp-button{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 30px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    font-size: 30px;
    background-color: #25D366;
    box-shadow: 0px 5px 20px rgba(0,0,0,.2);
    color: #fff;
    border-radius: 50%;
    z-index: 999;
	}