/*--------------------------------------------------------------
# Newsletter One
--------------------------------------------------------------*/
.newsletter-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

.newsletter-one__inner {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--finris-base);
    padding: 79px 0 65px;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.newsletter-one__img-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    border-radius: 50%;
    border-bottom-left-radius: 0;
}

.newsletter-one__img-1 img {
    width: auto;
}

.newsletter-one__img-2 {
    position: absolute;
    bottom: 0;
    right: 0px;
}

.newsletter-one__img-2 img {
    width: auto;
}

.newsletter-one__title {
    font-size: 60px;
    color: var(--finris-white);
    font-weight: 400;
    line-height: 1em;
    text-transform: uppercase;
}

.newsletter-one__text {
    font-size: 18px;
    font-weight: 500;
    color: var(--finris-white);
    line-height: 28px;
    margin-top: 18px;
    margin-bottom: 52px;
}

.newsletter-one__form {
    position: relative;
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 0;
}

.newsletter-one__input {
    position: relative;
    display: block;
}

.newsletter-one__input input[type="text"] {
    font-size: 18px;
    color: var(--finris-white);
    font-weight: 500;
    height: 75px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--finris-white);
    border-radius: 37px;
    outline: none;
    padding: 0 40px 0;
    padding-right: 172px;
}



.newsletter-one__btn {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    border: none;
    font-size: 18px;
    color: var(--finris-base);
    background-color: var(--finris-white);
    font-weight: 500;
    padding: 14.5px 32px;
    border-radius: 37px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.newsletter-one__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    background-color: var(--finris-black);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.newsletter-one__btn:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.newsletter-one__btn:hover {
    color: var(--finris-white);
}

.newsletter-one__btn::after {
    position: absolute;
    background-color: var(--finris-black);
    bottom: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.newsletter-one__btn:hover:after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------------------------------
# Newsletter Two
--------------------------------------------------------------*/
.newsletter-two {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--finris-base);
    padding: 43px 0 43px;
    z-index: 1;
}

.newsletter-two__big-text {
    font-weight: 400;
    font-size: 220px;
    line-height: .8em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: var(--finris-font-two);
    text-transform: uppercase;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: -1;
}

.newsletter-two__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.newsletter-two__left {
    position: relative;
    display: block;
}

.newsletter-two__title {
    font-size: 60px;
    line-height: 1em;
    font-weight: 400;
    color: var(--finris-white);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.newsletter-two__text {
    font-size: 18px;
    font-weight: 500;
    color: var(--finris-white);
}

.newsletter-two__right {
    position: relative;
    display: block;
    max-width: 670px;
    width: 100%;
}

.newsletter-two__form {
    position: relative;
    display: block;
}

.newsletter-two__input {
    position: relative;
    display: block;
}

.newsletter-two__input input[type="text"] {
    font-size: 18px;
    color: var(--finris-white);
    font-weight: 500;
    height: 80px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--finris-white);
    border-radius: 40px;
    outline: none;
    padding: 0 40px 0;
    padding-right: 172px;
}

.newsletter-two__btn {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    border: none;
    background-color: var(--finris-white);
    font-size: 18px;
    color: var(--finris-base);
    font-weight: 500;
    padding: 14.5px 32px;
    border-radius: 37px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.newsletter-two__btn:hover {
    color: var(--finris-white);
}

.newsletter-two__btn::after {
    position: absolute;
    background-color: var(--finris-black);
    bottom: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.newsletter-two__btn:hover:after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.newsletter-two__btn:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    background-color: var(--finris-black);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.newsletter-two__btn:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}










/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/