header{
    background-color: #3dcd58;
    /*padding: 20px 0;*/
    overflow: hidden;
}

.relative{
    position: relative;
}

.inline-block {
    display: inline-block;
    vertical-align: top;
}

.p20{
    padding: 20px 50px;
}

.logo-container{
    background-color: #fff;
    text-align: right;
    display: flex;
    align-items: center;
}

.logo-container:after {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #fff;
    border-radius: 25px;
    content: '';
    top: -100px;
    right: -30px;
    transform: rotate(45deg);
}

.logo{
    z-index: 10;
}

.background-logo{
    position: absolute;
    background-color: #fff;
    width: 800px;
    height: 800px;
    z-index: 0;
    transform: rotate(31deg);
    border-radius: 20px;
    top: -221px;
    left: -540px;
}

.banner-form{
    background-size: contain;
}

img.banner{
    width: 100%;
}

.form-container{
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
}

.form-container .title{
    background-color: #D81820;
    color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.form-container .title h2{
    line-height: 50px !important;
}

.form-container .btn{
    background-color: #e5a900;
    color: #000;
    border-radius: 5px;
    line-height: 30px;
    padding: 0 20px;
    font-weight: bold;
    margin: 10px auto;
}

.form-container form{
    padding: 10px 20px;
}

.form-container form input[type=text],
.form-container form input[type=number],
.form-container form input[type=email],
.form-container form textarea{
    background-color: #f1f0f5;
    border-color: #c6c6c7;
}

.post-banner{
    background-color: #3dcd58;
    overflow: hidden;
}

.banner-text{
    color: #fff;
    padding: 20px;
    text-align: center;
}

.banner-text span{
    line-height: 50px;
    font-size: 2rem;
}

.banner-text span:nth-child(2){
    display: block;
    font-size: 3rem;
    font-weight: bold;
}

.banner-text span:nth-child(3){
    font-size: 1rem;
}

img.product-img {
    display: inline-block;
    margin-bottom: 10px;
}

.products span.title {
    display: block;
    font-size: 1.5rem;
    color: #D81820;
}

.products .item{
    margin-bottom: 30px;
    padding: 20px;
}

.products a {
	color: #6f766b;
	text-decoration: none;
	cursor: pointer;
}

.products a:hover{
	color: #6f766b;
}

.advantages h2{
    color: #D81820;
    margin-bottom: 50px;
}

.advantage {
    margin-bottom: 30px;
}

.advantage span{
    display: block;
    color: #6f766b;
}

footer{
    background-color: #D81820;
    padding: 20px 0;
    color: #fff;
    margin-top: 30px;
}

footer a, a:hover {
	color: white;
	text-decoration: none;
}

.contact {
    margin-bottom: 30px;
}

.contact span {
    font-size: 1.3rem;
}

.contact span.phone-number {
    font-size: 2rem;
}

@media(min-width: 560px) {
    .logo-container:after {
        top: -55%;
    }
}

@media(min-width: 640px) {
    .logo-container:after {
        top: -55%;
    }

    .form-container{
        position: absolute;
        top: 20px;
        padding: 0;
    }

    .post-banner{
        min-height: 400px;
        background: url(../img/bgcurve.png) top left no-repeat;
        background-size: cover;
    }
}

.cta-fixed-box{
	position: fixed;
    top: 35%;
    left: 10px;
    background: #df0611;
    padding: 10px 20px;
    border-radius: 20px;
    width: 80px;
    height: 300px;
    z-index: 9999;
}

.cta-fixed-box a{
	color: white;
}

.cta-fixed-box .whatsapp{
	position: absolute;
    left: 5px;
    bottom: -10px;
}

.cta-fixed-box .call{
	position: absolute;
/*     left: 5px; */
    bottom: -10px;
}

.cta-fixed-box .mail{
	position: absolute;
    left: 20px;
    bottom: -10px;
}

.cta-fixed-box .messenger{
	position: absolute;
    left: 5px;
    bottom: -10px;
}

.cta-fixed-box p{
	margin-bottom: 0;
    color: white;
    font-size: 0.7rem;
}

.cta-fixed-box img{
	max-width: 40px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.zoom {
  padding: 30px;
  /*background-color: green;*/
  transition: transform .2s; /* Animation */
  /*width: 200px;*/
  /*height: 200px;*/
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}