

.first-block .block-with-txt .left h1 {
    color: #FFF;
    font-size: 40px;
    margin-bottom: 26px;
    animation: textGlow 2s infinite alternate;
}

.first-block .block-with-txt .left .button {
    width: 315px;
    letter-spacing: 5px;
    background: linear-gradient(87.79deg, #0099FA 0%, #002ED9 100%);
    border: solid, 1px, blue;
    border-radius: 12px;
    color: #FFF;
    height: 51px;
    text-align: center;
    align-content: center;
    font-size: 17px;
    margin-top: 40px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

.second-block {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background-color: #EEF2F9;
    padding-top: 100px;
    padding-left: 100px;
    padding-bottom: 50px;
    justify-content: space-between;
    animation: fadeIn 2s ease-in-out;
}

.second-block .left-left h2 {
    color: #1E385B;
    font-size: 36px;
    margin-bottom: 80px;
    animation: slideInFromBottom 1.5s ease-in-out;
}

.second-block .left-left .min-sum .sum {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #0099fa, #1a4dde);
    background-clip: text;
    color: #0b75ec;
    font-size: 56px;
    animation: textZoom 1.5s infinite alternate;
}

.second-block .right-right img {
    width: 100%;
    height: 100%;
    animation: fadeInImage 3s ease-in-out;
}

/* Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px #0099fa, 0 0 10px #0099fa, 0 0 15px #0099fa;
    }
    100% {
        text-shadow: 0 0 10px #002ed9, 0 0 20px #002ed9, 0 0 30px #002ed9;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.third-block {
    background-color: white;
    padding-top: 100px;
    padding-left: 92px;
    padding-right: 400px;
    padding-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 2s ease-in-out;
}

.third-block .poc {
    color: #1E385B;
    font-size: 36px;
    animation: textGlow 1s infinite alternate;
}

.third-block .block {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    row-gap: 67px;
    animation: slideInFromBottom 1.5s ease-in-out;
}

.third-block .block .top .sec {
    min-width: 240px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    animation: slideInFromLeft 1.5s ease-in-out;
}

.third-block .button {
    padding-top: 32px;
    padding-bottom: 31px;
    font-size: 16px;
    border-radius: 12px;
    margin-top: 63px;
    background: linear-gradient(87.79deg, #0099FA 0%, #002ED9 100%);
    width: 248px;
    height: 82px;
    text-align: center;
    align-self: center;
    color: white;
    animation: bounce 2s infinite;
}

.fourth-block {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background-color: #0F487C;
    padding-left: 102px;
    padding-right: 402px;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 140px;
    animation: fadeIn 2s ease-in-out;
}

.fourth-block .sec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    background-color: #04294B;
    width: 357px;
    height: 352px;
    align-items: center;
    padding-bottom: 28px;
    animation: zoomIn 1.5s ease-in-out;
}

.fourth-block .sec img {
    width: 228px;
    height: 228px;
    margin-top: -48px;
    animation: rotateIn 2s ease-in-out;
}

.fourth-block .sec p {
    color: white;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    animation: fadeInText 1.5s ease-in-out;
}

.fourth-block .sec .but {
    background: #0F487C;
    width: 156.96px;
    height: 51px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px #0099fa, 0 0 10px #0099fa, 0 0 15px #0099fa;
    }
    100% {
        text-shadow: 0 0 10px #002ed9, 0 0 20px #002ed9, 0 0 30px #002ed9;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform: rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


.fiveth-block{
	.email{
		.button{
			animation: bounce 2s infinite;
		}
	}
}