/*--------------------------------------------------------------
# Newsletter One
--------------------------------------------------------------*/
.newsletter-one {
    position: relative;
    display: block;
    padding: 0 0 95px;
    z-index: 1;
}

.newsletter-one .container {
    max-width: 1470px;
}

.newsletter-one__inner {
    position: relative;
    display: block;
    background-color: var(--Freshflow-base);
    padding-left: 50px;
    padding-right: 95px;
    padding-top: 90px;
    padding-bottom: 50px;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.newsletter-one__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .53;
    z-index: -1;
}

.newsletter-one__big-text {
    position: absolute;
    left: 46px;
    bottom: 20px;
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -0.03em;
    text-transform: lowercase;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.06) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    z-index: -1;
}

.newsletter-one__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.newsletter-one__shape-1 img {
    width: auto;
}

.newsletter-one__shape-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.newsletter-one__shape-2 img {
    width: auto;
}

.newsletter-one__title-box {
    position: relative;
    display: block;
    margin-top: -55px;
}

.newsletter-one__title {
    font-size: 100px;
    color: var(--Freshflow-white);
    font-weight: 600;
    line-height: 100px;
    font-family: var(--Freshflow-font);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.newsletter-one__sub-title {
    font-size: 60px;
    color: var(--Freshflow-white);
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.03em;
}

.newsletter-one__img-boxes {
    position: relative;
    display: block;
}

.newsletter-one__img-shape {
    position: relative;
    display: block;
    height: 310px;
    width: 310px;
    border: 4px solid rgba(237, 239, 255, .20);
    border-radius: 50%;
    margin: 0 auto 0;
}

.newsletter-one__img-box-1 {
    position: absolute;
    top: -40px;
    right: 5px;
    height: 195px;
    width: 195px;
    border: 3px solid var(--Freshflow-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-one__img-1 {
    position: relative;
    display: block;
    width: 175px;
    overflow: hidden;
    border-radius: 50%;
}

.newsletter-one__img-1 img {
    width: 100%;
    border-radius: 50%;
}

.newsletter-one__img-box-2 {
    position: absolute;
    bottom: 45px;
    left: -60px;
    height: 127px;
    width: 127px;
    border: 3px solid var(--Freshflow-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-one__img-2 {
    position: relative;
    display: block;
    width: 107px;
    overflow: hidden;
    border-radius: 50%;
}

.newsletter-one__img-2 img {
    width: 100%;
    border-radius: 50%;
}

.newsletter-one__img-box-3 {
    position: absolute;
    bottom: -30px;
    right: 20px;
    height: 127px;
    width: 127px;
    border: 3px solid var(--Freshflow-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-one__img-3 {
    position: relative;
    display: block;
    width: 107px;
    overflow: hidden;
    border-radius: 50%;
}

.newsletter-one__img-3 img {
    width: 100%;
    border-radius: 50%;
}

.newsletter-one__form-box {
    position: relative;
    display: block;
    margin-top: 115px;
}

.newsletter-one__form {
    position: relative;
    display: block;
}

.newsletter-one__input {
    position: relative;
    display: block;
}

.newsletter-one__input input[type="email"] {
    font-size: 18px;
    color: var(--Freshflow-white);
    font-weight: 400;
    height: 65px;
    width: 100%;
    background: transparent;
    border: 2px solid #F1F1F2;
    border-radius: 16px;
    outline: none;
    padding: 0 25px 0;
}

.newsletter-one__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--Freshflow-extra);
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: var(--Freshflow-black);
    padding: 23.5px 35px 23.5px;
    border-radius: 16px;
    gap: 10px;
    overflow: hidden;
    font-family: var(--Freshflow-font-two);
    border: none;
    margin-top: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.newsletter-one__btn:hover {
    color: var(--Freshflow-white);
}

.newsletter-one__btn::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10%;
    height: 10%;
    background-color: rgba(var(--Freshflow-black-rgb), 1);
    background-position: left center;
    transition-timing-function: ease-in-out;
    transition-property: all;
    transform-origin: left;
    transform-style: preserve-3d;
    transform: scaleX(1);
    opacity: 0;
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.newsletter-one__btn:hover::before {
    opacity: 1;
    width: 120%;
    height: 200%;
    transform: scaleX(1.0);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
}

.newsletter-one__form-text {
    font-size: 14px;
    color: var(--Freshflow-white);
    margin-top: 13px;
}

.newsletter-one__form-text a {
    color: var(--Freshflow-white);
    text-decoration: underline;
}

.newsletter-one__form-text a:hover {
    color: var(--Freshflow-extra);
    text-decoration: underline;
}


/*--------------------------------------------------------------
# Newsletter Two
--------------------------------------------------------------*/
.newsletter-two {
    position: relative;
    display: block;
    background-color: var(--Freshflow-base);
    z-index: 2;
}

.newsletter-two__big-text {
    position: absolute;
    right: 0px;
    bottom: 20px;
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -0.03em;
    text-transform: lowercase;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.06) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    z-index: -1;
}

.newsletter-two__img-box {
    position: absolute;
    top: 0px;
    left: -48px;
    height: 195px;
    width: 195px;
    border: 3px solid #F1F1F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-two__img {
    position: relative;
    display: block;
    width: 175px;
    overflow: hidden;
    border-radius: 50%;
}

.newsletter-two__img img {
    width: 100%;
    border-radius: 50%;
}

.newsletter-two__inner {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 23px 0 25px;
}

.newsletter-two__left {
    position: relative;
    display: block;
}

.newsletter-two__title-box {
    position: relative;
    display: block;
}

.newsletter-two__title {
    font-size: 40px;
    font-weight: 600;
    color: var(--Freshflow-white);
    line-height: 45px;
    letter-spacing: -0.03em;
}

.newsletter-two__title span {
    font-weight: 300;
}

.newsletter-two__text {
    font-size: 14px;
    color: var(--Freshflow-white);
}

.newsletter-two__text a {
    color: var(--Freshflow-white);
    text-decoration: underline;
}

.newsletter-two__text a:hover {
    color: var(--Freshflow-extra);
    text-decoration: underline;
}

.newsletter-two__form-box {
    position: relative;
    display: block;
    max-width: 775px;
    width: 100%;
}

.newsletter-two__form {
    position: relative;
    display: block;
}

.newsletter-two__input {
    position: relative;
    display: block;
}

.newsletter-two__input input[type="email"] {
    font-size: 16px;
    color: var(--Freshflow-gray);
    font-weight: 500;
    height: 60px;
    width: 100%;
    background: #F1F1F2;
    border: none;
    border-radius: 6px;
    outline: none;
    padding: 0 25px 0;
    padding-right: 160px;
}

.newsletter-two__btn {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Freshflow-extra);
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: var(--Freshflow-black);
    padding: 21px 20px 21px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    gap: 10px;
    overflow: hidden;
    font-family: var(--Freshflow-font-two);
    border: none;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
}

.newsletter-two__btn:hover {
    color: var(--Freshflow-white);
}

.newsletter-two__btn::before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10%;
    height: 10%;
    background-color: rgba(var(--Freshflow-black-rgb), 1);
    background-position: left center;
    transition-timing-function: ease-in-out;
    transition-property: all;
    transform-origin: left;
    transform-style: preserve-3d;
    transform: scaleX(1);
    opacity: 0;
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.newsletter-two__btn:hover::before {
    opacity: 1;
    width: 120%;
    height: 200%;
    transform: scaleX(1.0);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
}























/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/