/* Title */
@import url('https://fonts.googleapis.com/css2?family=Athiti:wght@200;300;400;500;600;700&display=swap');




.aboutUs_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    padding-top: 2rem;
    padding-bottom: 10rem;
}

.aboutUs_container_header {
    width: 80%;
    /* border: 2px solid black; */
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0;
}

.aboutUs_container_header .content_header_img {
    flex-basis: 40%;
}

.aboutUs_container_header .content_header_img img {

    width: 450px;
    height: 400px;
}

.aboutUs_container_header .content_dialog {
    flex-basis: 50%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aboutUs_container_header .content_dialog h5 {
    color: #ff3115;
    font-weight: 400;
    font-size: 1.2rem;
}

.aboutUs_container_header .content_dialog h3 {
    font-style: italic;
    color: black;
    max-width: 100%;
    font-weight: 500;
    font-size: 1.6rem;
}

.aboutUs_container_header .content_dialog h3::after {
    content: "";
    margin: 1rem 0;
    display: block;
    width: 30%;
    height: 3px;
    background: #ff3115;
}

.aboutUs_container_header .content_dialog p {
    font-family: 'Athiti', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.9rem;
    color: rgb(129, 129, 129);
    font-size: 1.1rem;
}

@media screen and (max-width:1300px) {
    .aboutUs_container_header {
        width: 95%;
    }
}

@media screen and (max-width:1100px) {
    .aboutUs_container_header .content_header_img img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width:700px) {
    .aboutUs_container_header {
        width: 90%;
        flex-direction: column-reverse;
    }

    .aboutUs_container_header .content_header_img, .aboutUs_container_header .content_dialog {
        flex-basis: 100%;
    }

    .aboutUs_container_header .content_dialog {
        /* text-align: center; */
    }

    .aboutUs_container_header .content_dialog h3 {
        max-width: 100%;
        font-size: 1.3rem;
    }

    .aboutUs_container_header .content_dialog p {
        max-width: 100%;
        font-weight: 300;
    }
}

@media screen and (max-width:420px) {
    .aboutUs_container_header .content_dialog {
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .aboutUs_container {
        padding-top: 1rem;
    }

}


.aboutUs_content2 {
    /* margin: 10rem 0; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: #f9f9f9;
    padding: 10rem 0;
    justify-content: center;
    align-items: center;
}

.aboutUs_content2 .topic_left {
    flex-basis: 40%;
}

.aboutUs_content2 .topic_left h2 {
    /* color: #FF1949; */
    font-weight: 600;
    font-size: 2rem;
}

.aboutUs_content2 .topic_left h2::after {
    content: "";
    margin: 1rem 0;
    display: block;
    width: 20%;
    height: 3px;
    background: #ff3115;
}

.aboutUs_content2 .topic_left h4, .aboutUs_content2 .topic_left p {
    font-family: 'Athiti', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
}

.aboutUs_content2 .topic_left p {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8rem;
    color: rgb(129, 129, 129);
}

.aboutUs_content2 .content_aboutus_right {
    flex-basis: 40%;
    padding-left: 2rem;
    display: grid;
    place-items: center;
}

.aboutUs_content2 .content_aboutus_right img {
    width: 500px;
    height: auto;
    max-width: 500px;
}

.aboutUs_content2_1 {
    width: 100%;
    background: white;
    padding: 10rem 0;
}

.aboutUs_content2_1 .topic_center {
    margin: auto;
    width: 80%;
    /* border: 2px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutUs_content2_1 .topic_center h2 {
    /* width: 100%; */
    font-size: 1.8rem;
}

.aboutUs_content2_1 .topic_center h2::after {
    content: "";
    display: block;
    background: #ff3115;
    height: 3px;
    width: 50%;
    margin: auto;
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
}

.box_item_container {
    width: 100%;
    /* height: 400px; */
    /* border: 2px solid black; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 1.5rem;

}

.box_item1 {
    background: #f0f0f0;
    flex-basis: 32%;
    /* height: 300px; */
    text-align: center;
    font-size: 1rem;
    display: grid;
    place-items: center;
    gap: 1.2rem;
    padding: 2rem 0;
    height: 285px;
}

.box_item1:hover i {
    animation: scale11 0.5s;
}

@keyframes scale11 {
    0% {
        transform: scale(0%);
    }

    100% {
        transform: scale(100%);
    }
}

.box_item1 h5:hover {
    cursor: pointer;
    color: #ff3115;
    transition: all 0.3s ease;
}

.box_item1 h5 {
    font-size: 1.3rem;
    font-weight: 400;
}

.box_item1 i {
    transition: all 0.3s ease;
    font-size: 2rem;
    color: white;
    padding: 23px 20px;
    border-radius: 100px;
    background: #ff3115;
    transform: scale(100%);
}

.box_item1 p {
    font-family: 'Athiti', sans-serif;
    font-weight: 400;
    padding: 0 1.5rem;
    color: rgb(129, 129, 129);
}

@media screen and (max-width:780px) {
    .box_item1 {
        flex-basis: 48%;
    }

    .aboutUs_content2_1 {
        padding: 7rem 0;
    }
}

@media screen and (max-width:550px) {
    .aboutUs_content2_1 {
        padding-top: 3rem;
    }

    .aboutUs_content2_1 .topic_center {
        width: 90%;
    }

    .box_item1 {
        flex-basis: 100%;
    }
}

@media screen and (max-width:910px) {
    .aboutUs_content2 .topic_left {
        flex-basis: 90%;
        text-align: center;
    }

    .aboutUs_content2 .content_aboutus_right {
        margin-top: 1.5rem;
        flex-basis: 80%;
        /* text-align: center; */
    }

    .aboutUs_content2 .topic_left h2::after {
        margin: 1rem auto !important;
    }
}

@media screen and (max-width:700px) {
    .aboutUs_content2 .content_aboutus_right img {
        max-width: 400px;
    }

    .aboutUs_content2 .content_aboutus_right h4 {
        font-size: 1.3rem;
    }

    .aboutUs_content2 .content_aboutus_right p {
        font-size: 1rem;
    }
}

@media screen and (max-width:420px) {
    .aboutUs_content2 {
        margin: 4rem 0;
    }

    .aboutUs_content2 .content_aboutus_right img {
        width: 100%;
    }
}

.aboutUs_content4 {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
}

.aboutUs_content4 .topic_left4 {
    flex-basis: 40%;
}

.aboutUs_content4 .content_right_container {
    flex-basis: 60%;
}

.box1_1 h4 {
    padding-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 4rem;
}

.box1_1 p {
    line-height: 1.9rem;
    font-weight: 300;
    font-size: 1.2rem;
    color: #5c5c5c;
}

@media screen and (max-width:700px) {
    .aboutUs_content4 .content_right_container {
        flex-basis: 90%;
        margin: auto;
    }

    .box1_1 h4 {
        font-size: 1.3rem;
    }

    .box1_1 p {
        font-size: 1rem;
    }
}







.aboutUs_content3 {
    width: 100%;
    background-image: url('../images/img3.jpg');
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: grid;
    place-items: center;
    /* padding: 5rem 0; */
    gap: 2rem;
    padding: 2rem 0;
}

.aboutUs_content3 h2 {
    font-size: 1.8rem;
    color: white;
}

.aboutUs_content3 h2::after {
    content: "";
    width: 50%;
    height: 3px;
    background: #ff3115;
    display: block;
    margin: auto;
    margin-top: 1.2rem;
}


.sys_info {
    width: 50%;
    padding: 2rem 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sys_info .info1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.sys_info .info1 i {
    color: #ff3115;
    font-size: 4rem;
    margin-bottom: 1rem;
}

@media screen and (max-width:700px) {
    .sys_info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

}

.aboutUs_content4 {
    width: 100%;
    margin-top: 4rem;
}

.aboutUs_content4_wrapper {
    display: flex;
    flex-direction: column;
    width: 80%;
    /* border: 2px solid green; */
    margin: auto;
    gap: 2rem;
}

.aboutUs_content4_wrapper h2::after {
    content: "";
    display: block;
    width: 10%;
    height: 3px;
    background: #ff3115;
    margin-top: 1.5rem;
}

.stafff_detail {
    color: black;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border: 0.25px solid rgb(226, 226, 226);
}

.staff_name11 {
    display: flex;
    width: 100%;
    background: rgb(226, 226, 226);
    padding: 10px 0px;
    flex-wrap: wrap;
}

.staff_name11 p {
    padding-left: 20px;
    margin-right: 2rem;
}

.staff_name11 span {
    color: #ff3115;
    padding-left: 20px;
}

.staff_img {
    display: flex;
    /* flex-wrap: wrap; */
}

.staff_img img {
    width: 200px;
    height: 200px;
    border-radius: 200px;
}

.staff_list_items {
    width: 90%;
    display: grid;
    /* justify-content: center; */
    /* align-items: center; */
    padding: 20px 20px;
}

@media screen and (max-width:720px) {
    .staff_name11 {
        flex-direction: column;
    }
}

@media screen and (max-width:550px) {
    .staff_img {
        flex-direction: column;
    }

    .staff_img img {
        align-self: center;
    }

    .aboutUs_content4_wrapper h2::after {
        width: 40%;
    }
}

.pre-item {
    line-height: 1.6rem;
    width: 100%;
    white-space: pre-wrap;
    padding-left: 1rem;
    /* text-align: center; */
    max-height: 200px;
    overflow: hidden;
}

@media screen and (max-width:560px) {
    .pre-item {
        padding-left: 0;
        font-size: 0.8rem;
    }
}
.aboutUs_content2_3{
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
}
.vheading{
    font-size: 1.8rem;
}
.vheading::after {
    content: "";
    display: block;
    background: #ff3115;
    height: 3px;
    width: 10%;
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
}
.vbox{
    width: 100%;
    height: 100%;
}
.vframe11{
    width: 100%;
    height: 600px;
}
.editbtn{
    background-color: #d1d1d1;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.5 all ease-in-out;
    border-radius: 10px;
    display: inline-block;
    width: 80px;
    text-align: center;
}
.editbtn:hover{
    background-color: #a9ffbf;
}
#popup-box22{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0%;
    left: 0;
    background-color: #ffbebe73;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}
#popup-box22.active{
    z-index: 100;
    visibility: visible;
    opacity: 1;
}
.popup-con{
    background-color: white;
    width: 50%;
    height: 60%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}
#closebtn1{
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    right: 2%;
    top: 2%;
    cursor: pointer;
}
.sh-table1{
    width: 90%;
}

.sh-table1 td, .sh-table1 th,.sh-table2 td, .sh-table2 th  {
    /* border: 1px solid #ddd; */
    padding: 5px;
}
.sh-table1 th,.sh-table2 th {
    font-style: italic;
}
/* .sh-table1 th:nth-child(2){
    width: 200px;
} */
.sh-table1 th:nth-child(1){
    width: 60px;
}

.sh-table1 td:nth-child(3),.sh-table1 td:nth-child(1){
    text-align: center;
}

.sh-table1 tr:nth-child(odd),.sh-table2 tr:nth-child(odd) {
    background-color: rgb(245, 245, 245);
}

.sh-table1 tr:hover ,.sh-table2 tr:hover{
    background-color: rgb(243, 243, 243);
}

.sh-table1 th {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(228, 228, 228);
}
@media screen and (max-width:960px) {
    .popup-con{
        width: 80%;
    }
}
@media screen and (max-width:560px) {
    .popup-con{
        width: 90%;
    }
    .aboutUs_content2_3{
        width: 90%;
    }
    .vframe11{
        height: 300px;
    }
}