.offer:hover a {
    color: #547AEB;
}
header{
    background-color: #ffffff82 !important;
    backdrop-filter: blur(5px);
    z-index: 2;
}


/* ----------------- section 1 ----------------------- */

.home_section1_container{
    width: 100%;
    height: 100dvh;
    margin-top: -80px;
    position: relative;
    background-color: #000000cb;
}

.back_video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.home_section1{
    position: absolute;
    width: 100%;
    height: 100dvh;
    background-color: #00000063;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    gap: 20px;
    padding: 40px 4%;
}

.home_section1 h2{
    font-size: 50px;
    text-align: center;
    width: 80%;
}

.home_section1 p{
    font-size: 18px;
}

.home_section1 small{
    font-size: 14px;
    line-height: 1.7;
    width: 90%;
}

.scroll_box{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 60px;
    right: 100px;
    gap: 15px;
    cursor: pointer;
}

.scroll_box img {
    animation: shake 1.5s linear infinite;
}

@keyframes shake {
    0% {
        transform: translateY(5px);
    }
    25% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(5px);
    }
}

.home_section1 small {
    text-align: center;
    width: 70%;
    font-size: 16px;
    margin-top: 10px;
}

/* ----------------- section 2 ----------------------- */

.home_section2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 40px 4%;
}

.home_section2 h2 {
    font-size: 40px;
    width: 80%;
    margin-top: -20px;
    margin-bottom: -30px;
    text-align: center;
}

.home_section2 p {
    font-size: 16px;
}



.home_section2 .slab{
    margin-top: 20px;
}

.button {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #547aeb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    outline: none;
    overflow: hidden;
    font-size: 16px;
    border: none;
    height: 45px;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.05);
}

.button:hover .icon {
    transform: translate(4px);
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
    animation: shine 2.5s ease-out infinite;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60% {
        left: 100%;
    }
    to {
        left: 100%;
    }
} 


/* ----------------------- Section 2 --------------------------- */

.home_section2 {
    padding: 40px 4%;
    font-family: 'Poppins';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.home_section2 h3 {
    font-size: 32px;
    color: #547aeb;
}

.home_section2 h2 {
    font-size: 40px;
}

.home_section2 p {
    font-size: 18px;
    text-align: center;
    width: 85%;
    line-height: 1.7;
}

.home_section2 .slab {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home_section2 .slab img {
    width: 40px;
}

.home_section2 .slab .line {
    width: 150px;
    height: 2px;
    background-color: #547aeb;
}

.home_section2 .boxes {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.home_section2 .boxes .box {
    width: 25%;
    height: 120px;
    background-color: #EDF2FF;
    border-left: 1px solid #7e7e7e;
    border-bottom: 2px solid #7e7e7e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #547AEB;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, background-color 0.4s ease, border 0.4s ease;
    
}

/* .home_section2 .boxes .box .details{
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 10px;
} */

.home_section2 .boxes .box .counter_box{
    display: flex;
    align-items: center;
}

.home_section2 .boxes .box .counter{
    font-size: 40px;
    font-weight: 600;
}

.home_section2 .boxes .box .plus{
    font-size: 40px;
    font-weight: 600;
}

.home_section2 .boxes .box .line {
    width: 100%;
    height: 3px;
    background-color: #00144f;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.home_section2 .boxes .box:last-child {
    border-radius: 0 22px 0 0;
}

.home_section2 .boxes .box:first-child {
    border-radius: 22px 0 0 0;
    border-left: none;
}

.home_section2 .boxes .box p {
    font-size: 18px;
    text-align: left;
    margin-left: 10px;
}

.home_section2 .boxes .box:hover {
    color: #fff;
    background-color: #3C7FE0;
    border: 1px solid #3C7FE0;
}

.home_section2 .boxes .box:hover .line {
    transform: translateX(0);
}

.learnMoreBtn {
    margin-top: 25px;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: 1px solid #547AEB;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: #f3f3f3;
    color: #547AEB;
    border-radius: 10rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 16px;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: #fff;
    background-color: #547AEB;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.learnMoreBtn:hover {
    background-color: #547AEB;
    color: #fff;
}

.learnMoreBtn:hover .button__icon-wrapper {
    color: #547AEB;
    background-color: #fff;
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.learnMoreBtn:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.learnMoreBtn:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}


/* ------------------- Section 3 ---------------------------- */

.home_section3_container {
    background-color: #f2fefb;
}

.home_section3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 40px 4%;
    font-family: 'Poppins';
}

.home_section3 .boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home_section3 .boxes .left_box {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.home_section3 .boxes .left_box.active {
    display: flex;
    opacity: 1;
}

.home_section3 .boxes .right_box {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    /* gap: 20px; */
}

.home_section3 h2 {
    font-size: 40px;
}

.home_section3 h2 span {
    color: #547AEB;
}

.home_section3 .boxes .left_box p {
    font-size: 16px;
    font-weight: 400;
    width: 85%;
    line-height: 1.8;
}

.home_section3 .boxes .left_box h3 {
    font-size: 28px;
}

.home_section3 .boxes .left_box a {
    text-decoration: none;
    color: #547aeb;
}

.home_section3 .boxes .left_box .left_box_section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home_section3 .boxes .left_box .left_box_section .line {
    height: 7px;
    width: 100%;
    background-color: #3C7FE0;
}

.home_section3 .section_box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

/* ========== Sub Sections ======== */

.home_section3 .section_box .dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #547AEB;
}

.home_section3 .section_box .box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home_section3 .section_box .vLine {
    width: 6px;
    height: 80px;
    background-color: #547AEB;
}

.home_section3 .section_box .box .circle1 {
    width: 165px;
    height: 165px;
    background-color: #547AEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_section3 .section_box .box .circle1 .circle2 {
    width: 145px;
    height: 145px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_section3 .section_box .box .circle1 .circle2 p {
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* .right_box img{
  width: 500px;
} */


/* .home_section3 .slabs{
  width: fit-content;
  border: 1px solid #547AEB;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 5px 10px;
}

.home_section3 .slabs .slab{
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.home_section3 .slabs .slab.active{
  background-color: #547AEB;
  color: #fff;
} */

.right_box ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right_box ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    width: 180px;
    background-color: burlywood;
    background: radial-gradient(#547AEB, #304585);
    height: 150px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* .right_box ul li.active {
    transform: scale(1.07);
} */

.right_box ul li:hover {
    transform: scale(1.07);
    transition: transform 0.3s ease;
}

.right_box ul:last-child {
    margin-left: -20px;
}

.right_box ul:first-child {
    margin-right: -20px;
}

.right_box ul li .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 130px;
    background-color: #fff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.right_box ul li .inner .content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 155px;
    height: 125px;
    background: radial-gradient(#547AEB, #304585);
    color: #fff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}


/* ---------------- Section 4 -------------------- */

.home_section4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 4%;
    flex-direction: column;
    font-family: 'Poppins';
}

.home_section4 h2 {
    font-size: 40px;
    color: #547AEB;
}

.home_section4 p {
    width: 90%;
    text-align: center;
    line-height: 1.7;
}

.home_section4 .boxes {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-top: 60px;
}

.home_section4 .boxes .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16.7%;
}

.home_section4 .boxes .box .outer_polygon {
    clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    width: 100px;
    height: 90px;
    background-color: #0363a8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_section4 .boxes .box .middle_polygon {
    clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    width: 85px;
    height: 75px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_section4 .boxes .box .inner_polygon {
    clip-path: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    width: 70px;
    height: 60px;
    background-color: #0363a8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_section4 .boxes .box .inner_polygon img {
    width: 40px;
}

.home_section4 .boxes .box .line {
    height: 60px;
    border-left: 1px dashed #547AEB;
}

.home_section4 .boxes .box .dot {
    width: 10px;
    height: 10px;
    background-color: #547AEB;
    border-radius: 50%;
}

.home_section4 .boxes .box p {
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
}

.home_section4 .boxes .box:nth-child(2),
.home_section4 .boxes .box:nth-child(4),
.home_section4 .boxes .box:nth-child(6) {
    margin-top: -120px;
}

.home_section4 .boxes .box:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
    cursor: pointer;
}


/* .home_section4 .boxes .box:nth-child(1){
  animation: shake 1.4s linear infinite;
}
.home_section4 .boxes .box:nth-child(2){
  animation: shake 1.6s linear infinite;
}
.home_section4 .boxes .box:nth-child(3){
  animation: shake 1.2s linear infinite;
}
.home_section4 .boxes .box:nth-child(4){
  animation: shake 1.9s linear infinite;
}
.home_section4 .boxes .box:nth-child(5){
  animation: shake 1.4s linear infinite;
}
.home_section4 .boxes .box:nth-child(6){
  animation: shake 1.7s linear infinite;
} */


/* ---------------------- Section 5 -------------------- */

.home_section5_container {
    background-color: #f2fefb;
}

.home_section5 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 4%;
    font-family: 'Poppins';
}

.home_section5 .left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.home_section5 .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.home_section5 .right h2 {
    font-size: 36px;
}

.home_section5 .right h2 span {
    color: #547aeb;
}

.home_section5 .right p {
    line-height: 1.7;
}

#bottone1 {
    text-decoration: none;
    padding-left: 33px;
    padding-right: 33px;
    padding-bottom: 16px;
    padding-top: 16px;
    border-radius: 9px;
    background: #547AEB;
    color: #fff;
    border: none;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
    font-weight: 500;
}

#bottone1:hover {
    box-shadow: 10px 5px 70px -5px #547aeb;
}

#bottone1:active {
    transform: scale(0.97);
    box-shadow: 7px 5px 56px -10px #547aeb;
}

.home_section5 .left .boxes {
    display: flex;
    align-items: center;
    gap: 50px;
}

.home_section5 .left .boxes .box {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    /* transition: all 0.3s ease; */
}

.home_section5 .left .boxes .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.home_section5 .left .boxes .box .content {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.home_section5 .left .boxes .box:hover .content {
    background-color: #0e1423;
    color: #fff;
}

.home_section5 .left .boxes .box .content small{
    text-align: center;
}

.home_section5 .left .boxes .box:hover {
    transform: scale(1.07);
    transition: all 0.3s ease;
}

.home_section5 .left .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home_section5 .left .dots .inner {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #547AEB;
}

.home_section5 .left .dots .outer {
    width: 15px;
    height: 15px;
    border: 1px solid #EDF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.m1:hover~.dots .outer {
    border: 2px solid #000;
    /* Adjust the border color and size as needed */
    background-color: red;
}





















@media screen and (max-width: 768px) {

    header{
        background-color: #ffffff82 !important;
        backdrop-filter: none !important;
        z-index: 2;
    }

    /* --------------------- Section 1 -------------------------- */
    .home_section1_container{
        margin-top: 0;
        height: 100dvh;
    }

    .home_section1{
        padding: 30px 4%;
        height: 100dvh;
        gap: 15px;
        align-items: flex-start;
    }

    .home_section1 h2{
        font-size: 26px;
        width: 100%;
        text-align: left;
    }

    .home_section1 small{
        width: 100%;
        text-align: left;
    }

    .scroll_box{
        opacity: 0;
        visibility: hidden;
    }












    /* --------------------- Section 2 -------------------------- */
    .home_section2 {
        padding: 30px 4%;
        align-items: flex-start;
    }
    .home_section2 h3 {
        font-size: 25px;
        color: #547aeb;
    }
    .home_section2 h2 {
        font-size: 26px;
        text-align: left;
    }
    .home_section2 p {
        font-size: 16px;
        width: 100%;
        text-align: left;
    }
    .home_section2 .boxes {
        width: 100%;
        gap: 15px;
    }
    .home_section2 .boxes .box {
        width: 100%;
        border: none;
        border-radius: 0px !important;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }
    .learnMoreBtn {
        padding: 10px 15px;
    }
    .home_section2 .slab {
        width: 100%;
    }
    /* ---------------------------- Section 3 ------------------------- */
    .home_section3 {
        padding: 30px 4%;
        align-items: flex-start;
    }
    .home_section3 h2 {
        font-size: 28px;
    }
    .home_section3 .boxes {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .home_section3 .boxes .left_box {
        width: 100%;
    }
    .home_section3 .boxes .left_box p {
        width: 100%;
    }
    .home_section3 .boxes .right_box {
        width: 100%;
    }

    .home_section3 .section_box .box {
        width: calc(50% - 15px);
    }
    .right_box ul {
        gap: 10px;
    }
    .right_box ul:last-child {
        margin-left: -30px;
    }
    .right_box ul:first-child {
        margin-right: -30px;
    }
    .right_box img {
        width: 100%;
    }
    .right_box ul li {
        width: 135px;
        height: 120px;
    }
    .right_box ul li .inner {
        width: 125px;
        height: 110px;
    }
    .right_box ul li .inner .content {
        width: 120px;
        height: 105px;
        font-size: 12px;
    }
    /* -------------------------- Section 4 ----------------------- */
    .home_section4 h2 {
        font-size: 28px;
    }
    .home_section4 {
        padding: 30px 4%;
        align-items: flex-start;
    }
    .home_section4 p {
        width: 100%;
        text-align: left;
        line-height: 1.5;
    }
    .home_section4 .boxes {
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
    }
    .home_section4 .boxes .box {
        /* width: calc(50% - 10px); */
        width: 100%;
    }
    .home_section4 .boxes .box:nth-child(2),
    .home_section4 .boxes .box:nth-child(4),
    .home_section4 .boxes .box:nth-child(6) {
        margin-top: 0px;
    }
    .home_section4 .boxes .box p {
        width: 100%;
        text-align: center;
    }
    /* ------------------------- Section5 -------------------------- */
    .home_section5 {
        padding: 30px 4%;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }
    .home_section5 .left {
        width: 100%;
        flex-direction: column;
    }
    .home_section5 .left .boxes {
        flex-direction: column;
    }
    .home_section5 .right {
        width: 100%;
    }
    .home_section5 .right h2 {
        font-size: 24px;
    }
}