.newsletter {
    padding: 60px 0px;
    background-color: #232323;
    position: relative;
    overflow: hidden;
    display: flex;
    margin: 60px 0px;
    min-height: 340px;
    align-items: center;
}

.newsletter::after {
    background-image: url(../images/bg5.png);
    content: "";
    width: 350px;
    background-repeat: no-repeat;
    height: 350px;
    right: -154px;
    bottom: -65px;
    position: absolute;
    opacity: .1;
    animation: rotation 15s infinite linear;
    -webkit-animation: rotation 15s infinite linear;
    background-size: contain;
    pointer-events: none;

}


.newsletter::before {
    background-image: url(../images/bg5.png);
    content: "";
    width: 350px;
    background-repeat: no-repeat;
    height: 350px;
    left: -154px;
    top: -65px;
    pointer-events: none;
    position: absolute;
    opacity: .1;
    animation: rotation 15s infinite linear;
    -webkit-animation: rotation 15s infinite linear;
    background-size: contain;
}

@keyframes rotation {
    from {
        transform-origin: center center;
        transform: rotate(0deg);
        transform-box:fill-box ;

    }

    to {
        transform-origin: center center;
        transform: rotate(359deg);
        transform-box:fill-box ;

    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform-origin: center center;
        transform-box:fill-box ;


    }

    to {
        -webkit-transform: rotate(359deg);
        transform-origin: center center;
        transform-box:fill-box ;


    }
}

.newsletter .title {
    margin: 0 0 70px;
}

.newsletter .title h2 {
    color: #Fff;

}


.form_newsletter {
    margin: auto;
    width: 85%;
}



.input_newsletter input {
    border-radius: 5px;
    border-color: #A7A7A7;
    height: 55px;
    background: rgba(255, 255, 255, 0.068);
}


.btn_newsletter .ctm-btn-1:hover {
    background-color: #fff;
    color: #232323;
}

.btn_newsletter .ctm-btn-1 {
    height: 55px;
    background-color: transparent;
    border: 1px solid #A7A7A7;
    color: #fff;
    width: 100%;
    padding: 14px 0;
    font-family: "font_bold";
}

.btn-whatsapp-pulse {
	background: #162484;
	color: white;
	position: fixed;
	bottom: 0px;
	left: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
    border: 1px solid #fff;
	animation-name: pulse;
    z-index: 999;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 #16258429;
	}
	80% {
		box-shadow: 0 0 0 14px #16258466;
	}
}

.btn-whatsapp-pulse-border {
	bottom: 60px;
	left: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border:hover {
    color: #fff;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #162484;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}




.element_footer {
    width: 100%;
    background-color: #162484;
    min-height: 80px;
    padding: 10px 0;
    z-index: 1;
    margin-top: 100px ;
    display: flex;
    position: relative;
    align-items: center;

}
.element_footer::after{
    background-image: url(../images/bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center;
    position: absolute;
    content: "";
    z-index: -1;
    right: 0;
}

.element_footer ul  {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px ;
}
.element_footer ul li  {
    position: relative;
    display: block;
}
.element_footer ul li::after  {
    content: "";
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    left: -44px;
    background-image: url(../images/bg6.png);
}
.element_footer ul li:last-of-type::after  {
    display: none;

}
.element_footer ul li a{
    color: #fff;
    width: 100%;
}