[id^="bell"] {
    scroll-margin-top: 100px;
}

.totalBodyContainer {
    background-color: #F8F8F8;
    padding-bottom: 0;
}

.bellSection1 {
    margin-top: 120px;
    width: 100%;
}

.bellSection1Container {
    background: url("/images/solutions/emergency/bell/bellSection1Bg.png") no-repeat center center / cover;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(18, 34, 45, 0.2)
}

.bellSection1Text {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    line-height: 3.75rem;
    letter-spacing: -1.6px;
    color: #12222D;
    text-align: center;
}

.bellSection2 {
    width: 100%;
}

.bellSection2Wrapper {
    /*height: 320px;*/
    padding: 75px 0;
}

.bellSection2TextContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bellSection2Text {
    text-align: left;
    font-family: SCDream, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2.375rem;
    letter-spacing: -1.44px;
    color: #12222D;
}

.bellSection2ImgContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bellSection2ImgWrapper {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #DCDCDC;
    border-radius: 4px;
}

.bellSection2ImgWrapper:hover{
    border: 1px solid #FC9C75;
}

.bellSection2ImgWrapper > img {
    width: 100%;
}

.bellSection2InnerText {
    font-family: SCDream, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6875rem;
    letter-spacing: -0.96px;
    color: #12222D;
}

.bellSection3 {
    width: 100%;
    background-color: white;
    padding-top: 80px;
    padding-bottom: 126px;
}

.bellSection3Wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.bellSection3Part{
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.bellSection3Part.animate{
    opacity: 1;
    transform: translateY(0);
}


.bellSection3PartImgContainer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.bellSection3PartImgContainer > img {
    width: 100%;
    max-width: 471px;
}

.bellSection3PartSpecContainer{
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.bellSection3Part.animate> .bellSection3PartImgContainer{
    opacity: 1;
    transform: translateY(0);
}

.bellSection3Part.animate> .bellSection3PartSpecContainer{
    opacity: 1;
    transform: translateY(0);
}

.bellSection3Part.animate> .bellSection3PartImgContainer:nth-child(1){
    transition-delay: 0s;
}

.bellSection3Part.animate> .bellSection3PartSpecContainer:nth-child(2){
    transition-delay: 0.2s;
}

.bellSection3PartSpecWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.bellSection3PartTitleContainer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
}

.bellSection3PartTitle {
    font-family: SCDream, sans-serif;
    font-weight: 800;
    font-size: 1.875rem;
    line-height: 2.625rem;
    letter-spacing: -1.2px;
    color: #12222D;
}

.bellSection3PartSubTitle {
    font-family: SCDream, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6875rem;
    letter-spacing: -0.96px;
    color: #12222D;
}

.bellSection3PartListContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-top: 2px solid #12222D;
}

.bellSection3PartListWrapper {
    padding: 0.75rem 0 0.75rem 0.8125rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    border-bottom: 1px solid rgba(18, 34, 45, 0.4);
}

.bellSection3PartListNum {
    font-family: SCDream, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6875rem;
    letter-spacing: -0.96px;
    color: #12222D;
}

.bellSection3PartListText {
    font-family: SCDream, sans-serif;
    font-weight: 500;
    font-size: 0.8751rem;
    line-height: 1.6875rem;
    letter-spacing: -0.84px;
    color: #12222D;
}


@media (max-width: 1399px) {
    .bellSection2Text {
        text-align: center;
    }

    .bellSection2Wrapper{
        gap: 50px;
    }
}

@media (max-width: 991px) {
    [id^="bell"] {
        scroll-margin-top: 40px;
    }

    .bellSection3Part{
        gap: 40px;
    }
}


@media (max-width: 575px) {
    .bellSection2Text {
        font-size: 1.143rem;
    }

    .bellSection2ImgContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bellSection2ImgWrapper{
        max-width: 140px;
    }

    .bellSection2ImgContainer > :nth-child(odd) {
        justify-self: end;
    }

    .bellSection2ImgContainer > :nth-child(even) {
        justify-self: start;
    }

}