* {

    margin: 0;

    padding: 0;

}



.shreya-home-why-choose-main {

    height: auto;

    /* border: 1px solid black; */

    background-color: #f5f4f9;

    padding: 30px 0px;





}

.shreya-home-why-choose-main .shreya-home-why-choose-main-heading {

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    /* border: 1px solid red; */

}

.shreya-home-why-choose-main .shreya-home-why-choose-main-heading h5 {

    color: #ef8f26;

    position: relative;

    display: inline-block;

    font-size: 24px;

    font-weight: 600;
    font-family: 'Yantramanav', sans-serif;

    transition: .5s;

}

.shreya-home-why-choose-main .shreya-home-why-choose-main-heading h5::before {

    position: absolute;

    content: "";

    top: 10px;

    left: -45px;

    background: #ef8f26;

    height: 16px;

    width: 16px;

    transition: all 1000ms ease;

    animation: st__rotate 5s infinite linear;

    animation-play-state: running;

    z-index: 1;

}

.rotat {

    display: inline-block;

    position: relative;

}

.rotat::before {

    position: absolute;

    content: "";

    top: -5px;

    left: 20px;

    background: #ef8f26;

    height: 16px;

    width: 16px;

    transform: rotate(45deg);

    transition: all 1000ms ease;



    animation: st__rotate 5s infinite linear;



    animation-play-state: running;

    z-index: 1;



}

.rotat::after {

    position: absolute;

    content: "";

    top: -1px;

    left: 21px;

    background: #003e4d;

    height: 16px;

    width: 16px;

    transform: rotate(45deg);

    transition: all 1000ms ease;

    animation: st__rotate 5s infinite linear;

    animation-play-state: running;

    z-index: 1;

}

.shreya-home-why-choose-main .shreya-home-why-choose-main-heading h5::after {

    position: absolute;

    content: "";

    top: 10px;

    left: -39px;

    background: linear-gradient(#0b7e9b, #084252);

    height: 16px;

    width: 16px;

    transition: all 1000ms ease;

    animation: st__rotate 5s infinite linear;

    animation-play-state: running;

    z-index: 1;

}

@keyframes st__rotate {

    0% {



        transform: rotate(0deg);

    }

    100% {



        transform: rotate(360deg);

    }

}

.shreya-home-why-choose-main .shreya-home-why-choose-main-container {

    display: flex;

    align-items: center;

    justify-content: center;

}

.shreya-home-why-choose-main .shreya-home-why-choose-container {

    width: 84%;

    /* border: 1px solid red; */

    height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 40px 0px;

}

.shreya-home-why-choose-main .shreya-home-why-choose-container .shreya-home-why-choose-container-left {

    width: 49%;

    height: 600px;

    /* border: 1px solid green; */

}

.shreya-home-why-choose-container-left .shreya-home-why-choose-container-left-header h1 {

    font-family: 'Yantramanav', sans-serif;

    /* text-align: center; */


    /* margin-left: -200px; */

    color: #222;

}

.shreya-home-why-choose-container-left .shreya-home-why-choose-container-left-header h3 {
    color: #19232B;
    /* color: #222; */
    font-family: 'Poppins', sans-serif !important;
        font-size:var(--sub-hading);

    font-weight: 500;
}

.shreya-home-why-choose-container-left .shreya-home-why-choose-container-left-header h3 span {
    color: #ef8f26;
}

.shreya-home-why-choose-container-left .shreya-home-why-choose-container-left-header p {
    margin-top: 20px;
    text-align: justify;
    font-family: 'Poppins', sans-serif !important;
    color: #757F95;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-size:var(--paragraph);
}

.shreya-home-why-choose-container-left .shreya-home-why-choose-container-left-header span {

    font-size: 30px;
    font-weight: 500;
    font-family: Poppins, sans-serif !important;
}

.shreya-home-why-choose-container-icons {

    height: 400px;

    /* background-color: aliceblue; */

    margin-top: 30px;

}

.shreya-home-why-choose-container-icons .shreya-home-why-choose-container-icons-div1 {

    height: 20%;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 0;

    /* margin-left: -20px; */

    border-bottom: 1px solid #ddd;
    /* margin-bottom: 30px; */

    cursor: pointer;

}

.shreya-home-why-choose-container-icons-div1 .shreya-home-why-choose-container-icon-box-main {

    width: 110px;

    height: 70px;

    border: 1px solid #003e4d;

    background-color: transparent;

    display: flex;

    align-items: center;

    justify-content: center;

}

.shreya-home-why-choose-container-icons-div1 .shreya-home-why-choose-container-icon-box-main .shreya-home-why-choose-container-icon-box {

    width: 50px;

    height: 50px;

    background: linear-gradient(#0b7e9b, #084252);

    display: flex;

    align-items: center;

    justify-content: center;

    /* border-radius: 4px; */

    /* margin-right: 20px; */

    transition: .3s ease;

}

.shreya-home-why-choose-container-icon-box-main .shreya-home-why-choose-container-icon-box i {

    font-size: 25px;

    color: #fff;

    transition: .3s ease;

}

.shreya-home-why-choose-container-icon-box-main .shreya-home-why-choose-container-icon-box:hover {

    animation: shake 0.3s ease-in-out;

}

.shreya-home-why-choose-container-icons-div1:hover .shreya-home-why-choose-container-icon-box {

    animation: shake 0.3s ease-in-out;

}

@keyframes shake {

    0% {
        transform: rotateZ(0);
    }

    25% {
        transform: rotateZ(-5deg);
    }

    50% {
        transform: rotateZ(5deg);
    }

    75% {
        transform: rotateZ(-5deg);
    }

    100% {
        transform: rotateZ(0);
    }

}

.shreya-home-why-choose-container-icons-div1 .shreya-home-why-choose-container-icon-box-content {

    padding: 10px;

}

.shreya-home-why-choose-container-icons-div1 .shreya-home-why-choose-container-icon-box-content h3 {

    color: #19232B;
    /* color: #222; */
    font-family: 'Poppins', sans-serif !important;
    font-size: 25px;
    font-weight: 500;

}

.shreya-home-why-choose-container-icons-div1 .shreya-home-why-choose-container-icon-box-content p {

    color: #757F95;

    font-size: 15px;

    line-height: 25px;
letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;


}

.shreya-home-why-choose-main .shreya-home-why-choose-container .shreya-home-why-choose-container-right {

    width: 49%;

    height: 600px;

    position: relative;

    z-index: 1;

    left: 5%;

    overflow: visible;

}

.shreya-home-why-choose-main .shreya-home-why-choose-container .shreya-home-why-choose-container-right::after {



    content: '';

    position: absolute;

    height: 250px;

    width: 250px;

    right: 65px;

    top: 50px;

    border: 65px solid #f18a27;

    box-shadow: 0px 5px 30px 0px #f18a27;

    z-index: -1;

    border-radius: 100%;

    background: transparent;

}

.shreya-home-why-choose-main .shreya-home-why-choose-container .shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box {

    /* position: absolute; */

    position: relative;

    width: 64%;

    height: 41%;

    top: 2%;

    /* left: -5%; */

    background-color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    animation: move-img 5s infinite;

}

.youtube-video-btn {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

}

.youtube-video-btn .popup-video {

    display: inline-block;

    height: 60px;

    width: 60px;

    min-width: 60px;

    line-height: 60px;

    font-size: 20px;

    border-radius: 60px;

    background-color: #fff;

    color: #f18a27;

    animation: pulse 2s infinite ease-in-out;

}



@keyframes pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);

    }

    70% {

        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);

    }

}

.shreya-home-why-choose-container .shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box .shreya-home-why-choose-right-img-box-child {

    background-color: #fff;

    position: absolute;

    width: 94%;

    height: 92%;

    background-image: url(../../../images/home/why-choose-home/why-school.jpg);

    background-size: cover;

}

.shreya-home-why-choose-container .shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box .shreya-home-why-choose-right-img-box-child .shreya-home-why-choose-right-img-box-child2-info-box {

    position: absolute;

    font-size: 18px;

    font-weight: 500;

    background: transparent;

    width: 57%;

    height: 15%;

    padding: 10px 25px 10px 20px;

    bottom: 30%;

    /* left: 110%; */

    z-index: 1;

    animation: move 7s infinite;

    right: -153px;

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box .shreya-home-why-choose-right-img-box-child .shreya-home-why-choose-right-img-box-child2-info-box::before {

    content: '';

    position: absolute;

    top: 0;

    /* left: -50%; */

    z-index: -1;

    height: 100%;

    width: 100%;

    opacity: 0.9;

    background: #fff;

    transform: skewX(-10deg);

    -webkit-transition: all 0.5s;

    -ms-transition: all 0.5s;

    transition: all 0.5s;

    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box .shreya-home-why-choose-right-img-box-child .shreya-home-why-choose-right-img-box-child2-info-box::after {

    content: '';

    position: absolute;

    height: 100%;

    width: 5px;

    /* left: -50%; */

    top: 0;

    transform: skewX(-10deg);

    background: #f18a27;

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box .shreya-home-why-choose-right-img-box-child .shreya-home-why-choose-right-img-box-child2-info-box span {

    display: flex;

    position: absolute;

    align-items: center;

    /* left: -43%; */

    /* top: 30%; */

    /* color: #222; */

    font-family: 'Lexend', sans-serif;

    color: #222222cb;

    font-size: 16px;

    font-weight: 600;

    /* padding: 4px; */

    font-family: 'Lexend', sans-serif;

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box .shreya-home-why-choose-right-img-box-child .shreya-home-why-choose-right-img-box-child2-info-box span i {

    color: #f18a27;

    font-size: 16px;

}

.shreya-home-why-choose-main .shreya-home-why-choose-container .shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box2 {

    /* position: absolute; */

    position: relative;

    width: 64%;

    height: 41%;

    top: 2%;

    left: -5%;

    background-color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    left: 27%;

    top: 10%;

    animation: move-img 5s infinite;

}

@keyframes move-img {

    0% {

        transform: rotate(-1deg) translate(-2px, -2px);

    }

    50% {

        transform: rotate(1deg) translate(2px, 2px);

    }

    100% {

        transform: rotate(-1deg) translate(-2px, -2px);

    }

}

.shreya-home-why-choose-container .shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box2 .shreya-home-why-choose-right-img-box-child2 {

    background-color: #fff;

    position: absolute;

    width: 94%;

    height: 92%;

    background-image: url(../../../images/home/why-choose-home/why-school2.jpg);

    background-size: cover;

}

.shreya-home-why-choose-container .shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box2 .shreya-home-why-choose-right-img-box-child2 .shreya-home-why-choose-right-img-box-child2-info-box2 {

    position: absolute;

    font-size: 18px;

    font-weight: 500;

    background: transparent;

    /* background-color: black; */

    width: 57%;

    height: 15%;

    left: -25%;

    padding: 10px 25px 10px 20px;

    bottom: 30%;

    z-index: 1;

    animation: move 7s infinite;

}

@keyframes move {

    0% {

        transform: translate(0);

    }

    25% {

        transform: translate(-15px, -15px);

    }

    50% {

        transform: translate(-8px, -8px);

    }

    75% {

        transform: translate(-15px, 8px);

    }

    100% {

        transform: translate(0);

    }

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box2 .shreya-home-why-choose-right-img-box-child2 .shreya-home-why-choose-right-img-box-child2-info-box2::before {

    content: '';

    position: absolute;

    top: 0;

    /* left: -50%; */

    z-index: -1;

    height: 100%;

    width: 100%;

    opacity: 0.9;

    background: #fff;

    transform: skewX(-10deg);

    -webkit-transition: all 0.5s;

    -ms-transition: all 0.5s;

    transition: all 0.5s;

    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box2 .shreya-home-why-choose-right-img-box-child2 .shreya-home-why-choose-right-img-box-child2-info-box2::after {

    content: '';

    position: absolute;

    height: 100%;

    width: 5px;

    /* left: -50%; */

    top: 0;

    transform: skewX(-10deg);

    background: #f18a27;

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box2 .shreya-home-why-choose-right-img-box-child2 .shreya-home-why-choose-right-img-box-child2-info-box2 span {

    display: flex;

    position: absolute;

    align-items: center;

    /* left: -43%; */

    /* top: 30%; */

    color: #222222cb;

    font-size: 16px;

    font-weight: 600;

    /* padding: 4px; */

    font-family: 'Lexend', sans-serif;

}

.shreya-home-why-choose-container-right .shreya-home-why-choose-right-img-box2 .shreya-home-why-choose-right-img-box-child2 .shreya-home-why-choose-right-img-box-child2-info-box2 span i {

    color: #f18a27;

    font-size: 18px;

}

.youtube-video-btn i {

    display: flex;

    position: absolute;

    top: 21px;

    left: 20px
}