.boxAnimationContainer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #151c29;
    padding: 30px 0 60px 0;
    z-index: 0;
    position: relative;
}
.boxAnimationContainer::before {
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url("../../assets/img/headerBottomBlueShape.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}
.boxAnimation {
    width: 650px;
    height: 650px;
    margin: 150px 0 150px 0;
    padding: 0px 10px;
    border-radius: 50%;
    position: relative;
    background: #151c29;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    box-shadow: 0px 0px 20px 2px #324b7f40;
}
.boxAnimationInner {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 105%;
    height: 102%;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(0deg, #151c29, #151c29, #11809d, #113d9d);
    box-shadow: 0px 0px 20px 20px #324b7f96;
    filter: blur(1px);
    transition: top 3s ease;
}

.boxAnimation h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    padding: 0px;
}
.boxAnimation h1 span {
    color: #556EA4
}
.boxAnimation p {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
    padding: 0px;
}
.boxAnimation a {
    background-color: #fff;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    padding: 8px 35px;
    border-radius: 15px;
    transition: .3s;
}

.boxAnimation a:hover {
    background-color: #556EA4;
    color: #fff;
    transition: .3s;
}

.boxAnimationSecondSec {
    width: 100%;
    max-width: 1320px;
    background-color: #151C29;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 35px 35px 0 0;
    padding: 20px;
    box-shadow: 0px 15px 7.1px rgb(0 0 0 / 25%);
}
.boxAnimationSecondSecCol {
    max-width: 35%;
    flex-grow: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.boxAnimationSecondSecCol h4 {
    margin: 0px;
    padding: 0px;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #556EA4;
}
.boxAnimationSecondSecCol p {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #556EA4;
    line-height: 1.4em;
}

@media (max-width: 1024px){
    .boxAnimation {
        width: 500px;
        height: 500px;
        margin: 150px 0 60px 0;
    }
    .boxAnimation h1{
        font-size: 30px;
    }
    .boxAnimation p{
        font-size: 18px;
    }
    .boxAnimation a {
        font-size: 18px;
    }
    .boxAnimationContainer {
        padding: 30px 0 20px 0;
    }
    .boxAnimationSecondSec {
        max-width: 90%;
    }
    .boxAnimationSecondSecCol h4{
        font-size: 30px;
    }
    .boxAnimationSecondSecCol p{
        font-size: 12px;
    }

}

@media (max-width: 768px){
    .boxAnimation {
        width: 400px;
        height: 400px;
        margin: 150px 0 60px 0;
    }
    .boxAnimationInner{
        width: 100%;
        height: 100%;
    }
    .boxAnimation h1{
        font-size: 24px;
    }
    .boxAnimation p{
        font-size: 14px;
    }
    .boxAnimation a {
        font-size: 16px;
    }
    .boxAnimationContainer {
        padding: 30px 0 20px 0;
    }
    .boxAnimationSecondSec {
        max-width: 90%;
    }
    .boxAnimationSecondSecCol h4{
        font-size: 30px;
    }
    .boxAnimationSecondSecCol p{
        font-size: 12px;
    }

}
@media (max-width: 460px){
    .boxAnimationContainer::before{
        bottom: 87px;
    }
}
@media (max-width: 425px){
    .boxAnimation {
        width: 300px;
        height: 300px;
        margin: 120px 0 30px 0;
    }
    .boxAnimationContainer::before {
        bottom: 70px;
    }
    .boxAnimationInner{
        width: 300px;
        height: 300px;
        top: -10px;
    }
    .boxAnimation h1 {
        font-size: 16px;
    }
    .boxAnimation p {
        font-size: 12px;
    }
    .boxAnimation a {
        font-size: 12px;
    }

    .boxAnimationSecondSecCol h4 {
        font-size: 20px;
    }
    .boxAnimationSecondSecCol p {
        font-size: 10px;
    }

}
@media (max-width: 375px) {
    .boxAnimationContainer::before {
        bottom: 65px;
    }
    .boxAnimationSecondSec {
        max-width: 95%;
    }
    .boxAnimationSecondSecCol h4 {
        font-size: 16px;
    }
    .boxAnimationSecondSecCol p {
        font-size: 8px;
    }
}
@media (max-width: 320px){
    .boxAnimationContainer::before {
        bottom: 70px;
    }
}
