body>main>header {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

#waveHolder {
    display: none;
}

#headerSectionHolder {
    width: 300%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    scroll-snap-type: x mandatory;
}

body>main>header .headerSection {
    width: 100%;
    height: 100vh;
    position: relative;
    scroll-snap-align: start;
    white-space: normal;
    overflow: hidden;
}

body>main>header #insuranceListCyrcle {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 16px;
}

body>main>header .headerSection .contentHeader {
    height: 100%;
    overflow: auto;
    text-align: justify;
}

body>main>header .headerSection .contentHeader header {
    height: 100%;
    width: 100%;
    position: relative;
}

body>main>header .headerSection#LowAbuotUsSection .contentHeader {
    /* background-color: #ffffff99; */
}

body>main>header .headerSection#LowAbuotUsSection .contentHeader main {
    min-height: 100vh;
    line-height: 32px;
    padding-top: 128px;
    background-color: #ffffff99;

}

body>main>header .headerSection#LowAbuotUsSection article {
    scroll-behavior: smooth;
}

body>main>header .headerSection#LowAbuotUsSection .contentHeader header .boxHeader {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    height: 50vh;
}

body>main>header .headerSection#LowAbuotUsSection .contentHeader header .boxHeader .logo {
    width: 20vh;
}

body>main>header .headerSection#LowAbuotUsSection .contentHeader header .boxHeader h1 {
    font-size: 2.5vh;
    color: var(--darkBlue);
}

body>main>header .headerSection#LowAbuotUsSection .contentHeader .title {
    font-size: 2.5vh;
    display: block;
    font-family: IRANSansWeb_Bold;
    color: var(--darkBlue);
    text-align: center;
    margin-bottom: 32px;
}

body>main>header .headerSection .contentHeader::-webkit-scrollbar {
    display: none;
}

#DoScroll {
    width: 30px;
    height: 48px;
    border: 2px solid var(--darkBlue);
    border-radius: 15px;
    position: relative;
}

#DoScroll #scroll {
    width: 3px;
    height: 6px;
    background: var(--darkBlue);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px;
    animation: scroll 2s infinite ease-in-out;
    border-radius: 50%;
}

@media (min-width:980px) {
    body>main>header .headerSection {
        padding: 120px 256px 176px;
    }
    #navigationBarHeader {
        background-color: #fff7;
        padding: 8px 32px;
        border-radius: 32px;
    }
    body>main>header .headerSection#LowAbuotUsSection .contentHeader header .boxHeader {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -15%);
    }
    body>main>header #insuranceMenuIndexSection:target #cyrcleHolder {
        animation: scaleCyrcle .5s ease-out;
    }
    #waveHolder {
        position: fixed;
        top: -5%;
        left: 0;
        width: 50vw;
        z-index: 0;
        display: inline-block;
        pointer-events: none;
    }
    .dtl1 {
        transform: translateY(-19%) translateX(87%);
    }
    .dtl2 {
        transform: translateY(-12%) translateX(-5%);
    }
    .desTpLft.dtl1 .cls-1{
        fill:#1410ef
    }
    .desTpLft.dtl2 .cls-1{
        fill:#559dff
    }
}

@media (max-width:980px) {
    body>main>header {
        position: relative;
        width: 100vw;
        white-space: normal;
    }
    body>main>header .headerSection {
        overflow: scroll;
        height: calc(100% - 64px);
        padding: 138px 24px 24px;
    }
    body>main>header .headerSection#LowAbuotUsSection .contentHeader header .boxHeader {
        height: 100%;
        width: 100%;
        justify-content: center;
    }
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%) scale(1.5);
    }
    100% {
        transform: translateY(-100%);
    }
}

@keyframes scaleCyrcle {
    0% {
        transform: translate(-50%, -50%) scale(.1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}