body {
    height: 100vh;
    background: linear-gradient(to right, #352169, #180544);
}

/*! ======================= Header ======================= */
.my-container {
    width: 90%;
    margin: auto;
}
header {
    overflow: hidden;
    position: relative; 
    height: 100vh;
    padding-block: 50px 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.row-hero {
    align-items: center;
    padding-block: 50px;
}
.row-hero .hero-img {
    width: 350px;
    bottom: 20px;
    position: absolute;
    left: 0;
}
.row-hero .container-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
.row-hero .caption {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
header .caption .text {
    color: #fff;
    text-align: center;
}
header h2 {
    font-size: 70px;
}
header .text p {
    font-size: 40px;
    font-weight: 500;
}
header .logo {
    width: 150px;
    margin: 0 auto;
}
img {
    width: 100%;
}


.progress-container {
    width: 800px;
    height: 15px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px auto;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        45deg,
        #fff 25%,
        transparent 25%,
        transparent 50%,
        #fff 50%,
        #fff 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 40px 40px;
    border-radius: 20px;
    animation: moveStripes 1s linear infinite;
    transition: width 0.2s ease;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.contact-us ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.contact-us ul li {
    display: flex;
    gap: 10px;
}
.contact-us ul li:hover .icon {
    background-color: #fff;
    background-image: none;
    color: rgba(91, 56, 173, 1);
    border-color: rgba(91, 56, 173, 1);
}
.contact-us ul .icon {
    width: 35px;
    height: 35px;
    /* background-image: linear-gradient(to right, rgba(147, 51, 205, 1), rgba(91, 56, 173, 1)); */
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(91, 56, 173, 1);
    border-radius: 50%;
    border: 1px solid transparent;
    transition: .3s;
}
.contact-us ul .text {
    display: flex;
    flex-direction: column;
    color: #fff ;
}
/* .contact-us ul .text > span:first-of-type {
    color: #000000a1;
} */
@media (max-width: 991px) {
    header h2 {
        font-size: 30px;
    }
    header .text p {
        font-size: 20px;
    }
    .progress-container {
        width: 350px;
    }

    .row-hero .hero-img {
        width: 200px;
        bottom: 20%;
    }
    .contact-us ul .text {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .row-hero .hero-img {
        width: 150px;
    }
    .progress-container {
        width: 270px;
    }
}