/* Alumni chapter */

/* .view_item img{
width: 150px;
height: 100px;
border-radius:60%;
} */

/* arrow icon */


.wrapper {
    width: 800px;
    margin: 20px auto;
}

.links {
    margin-bottom: 25px;
    /* background: #fff; */
    padding: 15px;
    border-radius: 20px;
}


.links ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.links ul li {
    margin: 0 15px;
    font-weight: 600;
    text-transform: uppercase;

    font-size: 20px;
    cursor: pointer;
}

.links ul li:hover,
.links ul li.active {
    color: #48246e;
}

/* .view_main{
background: #fff;
border-radius: 3px;
padding: 15px;
} */

.list-view .view_item {
    background: #fff;
    margin: 10px;
    /* padding: 10px 20px; */
    display: flex;
    align-items: center;

}

.list-view .view_item:last-child {
    margin-bottom: 0;
}

.list-view .view_item .vi_left {
    width: 140px;
}


.view_item .title {
    font-weight: 600;
    padding: 20px;
}

.view_item .content {
    margin: 5px 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 200;
    padding: 20px;
}

/* image Gallery */

.gallery {
    /* margin:10px 50px; */
}

.gallery img {
    width: 230px;
    padding: 5px;
    /* filter: grayscale(100%); */
    transition: 1s;
}

.gallery img:hover {
    transform: scale(1.1);
}

/*---------------------------------------------------------------------------------------*/

/* dep home-arrow icon */
.arrow_right {
    height: 12px;
    width: 12px;
    padding-bottom: 2px;
}

/*--------------------------------------------------------------------------------------*/

/*----------------------------auto number---------------------------------*/


body {
    counter-reset: section;
}

.auto_num::before {
    counter-increment: section;
    content: counter(section);
}

/*---------------------------------------------------------------------------------------*/


/*----------------------------popup forn---------------------------------------*/

/* Style the form container */
body .gform_wrapper {
    background-color: #f9f9f9;
    border: 1px solid #e6e6e6;
    /* width: 50%; */
    /* Reduce the width of the form */
    margin: 20px auto;
    /* Center the form */
    padding: 20px;
    border-radius: 5px;
}

/* Reduce the size of the IROTPopup content */
body .itro_opaco,
body .itro_popup {
    width: 50%;
    /* Adjust this value as needed */
    margin: 20px auto;
    /* Center the popup */
}

/* Make the form heading a flex container and adjust the direction of items */
body .gform_wrapper .gform_heading {
    display: flex;
    flex-direction: column;
}

/* Style the form title */
body .gform_wrapper .gform_heading .gform_title {
    text-align: center;
    font-size: 24px;
    color: #3d1767;
    /* Adjust size as needed */
    padding: 20px 0;
    /* Add some space above and below the title */
    display: block;
    /* Ensure the title is displayed */
    order: -1;
    /* Move the title to the top */
    font-weight: bold;
    /* Make the title bold */
    background-color: #f9f9f9;
    /* Highlight the title */
}

/* Style the form fields */
body .gform_wrapper .gfield input[type=text],
body .gform_wrapper .gfield textarea {
    border: 1px solid #696262;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

/* Style the form submit button */
body .gform_wrapper .gform_footer input[type=submit] {
    background-color: #48246e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid rgb(95, 95, 95);
    cursor: pointer;
}

/* Change the color of the submit button on hover */
body .gform_wrapper .gform_footer input[type=submit]:hover {
    background-color: #3d1767;
}

/* Hide the required fields indicator */
body .gform_wrapper .gform_required_legend {
    display: none;
}

#close_cross {
    top: 20px
}

/* For mobile screens */
@media only screen and (max-width: 600px) {
    body .gform_wrapper {
        margin: 10px auto;
        padding: 10px;
    }

    body .itro_opaco,
    body .itro_popup {
        width: 90%;
    }

    body .gform_wrapper .gform_heading .gform_title {
        font-size: 18px;
        padding: 10px 0;
    }

    body .gform_wrapper .gfield input[type=text],
    body .gform_wrapper .gfield textarea {
        padding: 5px;
    }

    body .gform_wrapper .gform_footer input[type=submit] {
        padding: 5px 10px;
    }
}

/* For tablet screens */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    body .gform_wrapper {
        margin: 15px auto;
        padding: 15px;
    }

    body .itro_opaco,
    body .itro_popup {
        width: 70%;
    }

    body .gform_wrapper .gform_heading .gform_title {
        font-size: 20px;
        padding: 15px 0;
    }

    body .gform_wrapper .gfield input[type=text],
    body .gform_wrapper .gfield textarea {
        padding: 7px;
    }

    body .gform_wrapper .gform_footer input[type=submit] {
        padding: 7px 14px;
    }
}