* {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
    border: none;
    outline: none;
    color: #223263;
    text-decoration: none;
}

.anim_body :is(#main_nav, .social_media_link, .link_icons, .main_page, footer) {
    /* display: none; */
    opacity: 0;
}

.anim_body {
    overflow: hidden;
    height: 100vh;
}

.anim_start .into_anim {

    animation: slideT 0.4s 1.6s ease-out forwards,
        slideL 0.4s 2.8s ease-out forwards;
}

@keyframes slideT {

    0% {
        height: 100vh;
        transform: scale(1);
    }

    100% {
        height: 14vh;
        transform: scale(0.4);
    }
}

@keyframes slideL {

    0% {
        width: 100vw;
        height: 14vh;
        top: 0px;
        /* height: 14vh;
        transform: scale(0.4); */
    }

    100% {
        width: 24vw;
        height: 0vh;
        top: 40px;
        /* height: 14vh;
        transform: scale(0.4); */
    }
}

html .anim_start {
    animation: scrollH 0.1s 3.5s ease-out forwards;
}

html .anim_start .main_page {
    animation: fadeIn 0.6s 1.6s ease-out forwards;
}

html .anim_start :is(#main_nav, .social_media_link, .link_icons, footer) {
    animation: fadeIn 0.6s 3.5s ease-out forwards;
}

@keyframes scrollH {

    0% {
        overflow: hidden;
        height: 100vh;
    }

    /* 100%{
        opacity: 1;
    } */

    100% {
        overflow: visible;
        height: auto;
    }
}

@keyframes fadeIn {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.anim_start .logo_text {
    /* right: 20%; */
    margin-right: -428px;
    opacity: 1;
}

.anim_start .logo_icon {
    /* right: 17%; */
    margin-right: 500px;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    /* background: #d7d7d7;  */
    background: #7EBBE2;
    border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #A9D2EB;
}

.stop_scroll {
    height: 100vh;
    overflow: hidden;
}

.body_overlay {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 50, 99, 0.4);
}

.active_overlay .body_overlay {
    visibility: visible !important;
}

/* nav {
    position: fixed;
    width: 100%;
} */

nav {
    position: fixed;
    width: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    backdrop-filter: blur(10px);
}

.container {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 12px;
    /* overflow: hidden; */
}


.dropdown {
    position: relative;
    /* overflow: hidden; */
}

.dropdown-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border: 1px solid #EBF0FF;
    border-radius: 8px;
    z-index: 1;
}

.container a,
.dropdown .dropbtn {
    white-space: nowrap;
}

.container a:hover,
.dropdown:hover .dropbtn {
    color: #288ECE;
}

.dropdown:hover .dropbtn img {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.dropdown_flex {
    left: -340px;
    flex-direction: row;
    gap: 24px
}

.navh_link_div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.logo_div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
    border-bottom: 1px solid rgba(40, 142, 206, 0.4);
}

.input_nav_div,
.input_email_btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

input#mem_no {
    width: 120px;
}

select#mem_type {
    color: #6B6A75;
    width: 140px;
    border-right: 1.5px solid #288ECE;
}

.nav_input {
    background: #FFFFFF;
    padding: 12px 16px;
}

.nav_loginbtn {
    padding: 6px 8px 4px;
    background: #288ECE;
    border-radius: 28px;
}


.input_mem,
input#mem_email {
    width: fit-content;
    border: 1.5px solid #288ECE;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
}


.social_media_link {
    position: fixed;
    z-index: 2;
    top: 30%;
    width: 50px;
    height: 270px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0px 20px 20px 0px;
    gap: 24px;
}

.social_media_link::before {
    content: "";
    /* top: -8px; */
    position: absolute;
    z-index: -1;
    background-color: cadetblue;
    width: 50px;
    height: 270px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0px 20px 20px 0px;
}


a.sm_icon {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-left: 8px;
    background-color: #ffff;
    border-radius: 100px;
}

a.sm_icon::before {
    content: "";
    position: absolute;
    /* top: -12px;
    left: -10px; */
    z-index: -2;
    width: 57px;
    height: 48px;
    border-radius: 0px 50px 50px 0px;
    /* filter: blur(2px); */
}

a.facebook::before {
    background: #3B5998;
}

a.youtube::before {
    background: #FA0910;
}

a.twitter::before {
    background: #1DA1F2;
}

a.instagram::before {
    background: #E1306C;
}

a.linkedin::before {
    background: #0A66C2;
}

a.sm_icon img {
    vertical-align: middle;
}

#quick_link,
#phone_app {
    position: fixed;
    bottom: 19%;
    right: 0;
}

#phone_app {
    bottom: 10%;
}

.float_icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    /* margin-right: 16px; */
    /* margin-top: 24px */
}


.float_icon>img {
    width: 40px;
    height: 40px;
    display: block;
    padding: 8px;
    margin-right: 24px;
    background: #288ECE;
    border-radius: 100px;
    /* width: fit-content; */
    box-shadow: 0px 0px 20px rgb(0 0 0 / 30%);
    cursor: pointer;
}

a.action_link {
    width: -webkit-fill-available;
    padding: 16px 24px;
    background: #D4EFFF;
    border-radius: 8px;
}

.action_link_div {
    /* display: flex; */
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    background: #288ECE;
    border-radius: 16px;
    /* width: fit-content; */
}

.status_bdiv {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    width: 100%;
}

.phone_div {
    padding: 24px;
    background: #288ECE;
    border-radius: 16px;
}

.phone_mockup>h1 {
    text-align: center;
}

.phone_mockup {
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 24px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px 2px rgb(0 0 0 / 25%);
    border-radius: 20px;
}

.app_btn span {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

.app_btn {
    /* width: fit-content; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 16px;
    gap: 8px;
    background: #288ECE;
    border-radius: 8px;
}

img.phone_icon {
    width: 150px;
}

.phone_line {
    width: 132px;
    height: 5px;
    background: #000000;
    border-radius: 100px;
}

.active_nav {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #288ECE;
}

/* nav---------------- */

.into_anim {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.into_anim img {
    -webkit-transition: all .4s .6s ease-in;
    transition: all .4s .6s ease-in;
}


.logo_icon {
    z-index: 1;
    position: relative;
    right: 0%;
    width: 200px;
}

.logo_text {
    position: absolute;
    opacity: 0;
    right: 50%;
}

/* anim slider------------  start*/

.svg_slider {
    display: flex;
    align-items: center;
    gap: 80px;
    background: url(../img/clip_path_bg.svg) no-repeat center center / cover;
    overflow: hidden;
}

.svg_anim {
    position: relative;
    width: 640px;
    height: 620px;
    margin-left: 20px;
}

.svg_anim:before {
    content: "";
    width: 260px;
    height: 280px;
    position: absolute;
    z-index: 1;
    left: -16px;
    top: 160px;
    background-image: url(../img/main_logo_holo.svg);
    background-size: 100% 100%;
}

.svg_anim img {
    width: 200px;
    position: absolute;
    animation-duration: .6s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    /* animation-direction: reverse; */
    /* transition: all .6s ease-out; */
}

.svg_anim img:nth-of-type(1) {
    width: 180px;

}

.prev_svg_ai {
    animation-name: prevSvgImg;
    /* transform: translate(0px, 0px) scale(1); */
}

.active_svg_ai {
    animation-name: activeSvgImg;
    /* transform: translate(280px, 200px) scale(1.8); */
}

.next_svg_ai {
    animation-name: nextSvgImg;
    /* transform: translate(0px, 450px) scale(1); */
}

@keyframes prevSvgImg {
    from {
        transform: translate(350px, 200px) scale(1.8)
    }

    to {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes activeSvgImg {
    from {
        transform: translate(0px, 440px);
    }

    to {
        transform: translate(350px, 200px) scale(1.8)
    }
}

@keyframes nextSvgImg {
    0% {
        transform: translate(0px, 0px) scale(1)
    }

    3% {
        transform: translate(-20px, 20px);

    }

    20% {
        opacity: 0;
    }

    50% {
        transform: translate(-180px, 380px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 440px);
        opacity: 1;
    }
}

.slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .slider, */
.slider .imgs {
    width: 300px;
    height: 380px;
    /* max-height: 300px; */
    position: relative;
}

.slider .imgs {
    display: flex;
    overflow: hidden;
}

.slider .img {
    min-width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    animation: .6s ease-out;
    animation-fill-mode: both;
}

.dots {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.dot {
    width: 18px;
    height: 8px;
    background: #ffff;
    /* background: #aaaa; */
    border-radius: 2px;
    margin: 0 6px;
    cursor: pointer;
}

.active-dot {
    background: #223263;
    transform: scale(1.4);
    cursor: default;
}

@keyframes defaultSlide {
    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes leftNext {
    from {
        top: 100%;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes leftCurr {
    from {
        top: 0;
        opacity: 1;
    }

    to {
        top: -100%;
        opacity: 0;
    }
}

@keyframes rightNext {
    from {
        top: -100%;
    }

    to {
        top: 0;
    }
}

@keyframes rightCurr {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

/* anim slider------------ */

.calendar_div>h1 {
    text-align: center;
    margin-bottom: 40px;
}

.wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.event_div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0px 0px;
    gap: 24px;
}

.container-calendar {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 32px 24px 8px;
    /* margin: 0 auto; */
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
}

.button-container-calendar button {
    cursor: pointer;
    display: inline-block;
    zoom: 1;
    background: #00a2b7;
    color: #fff;
    border: 1px solid #0aa2b5;
    border-radius: 4px;
    padding: 5px 10px;
}

.table-calendar {
    border-collapse: collapse;
}

.table-calendar td,
.table-calendar th {
    padding: 18px;
    text-align: center;
    vertical-align: top;
}

.table-calendar td span {
    font-weight: 500;
    font-size: 18px;
}

#thead-month {
    border-bottom: 2px solid #EBF0FF;
}

#thead-month tr th {
    color: #288ECE;
}

tbody#calendar-body {
    margin: 0px 20px;
}

.date-picker.selected span {
    background: #288ECE;
    padding: 13px 11px;
    border-radius: 10px;
    color: #FFFFFF;
}

/* sunday */
.date-picker:nth-child(1) span {
    color: #53A5D8;
}

/* friday */
/* .date-picker:nth-child(6) {
    color: green;
} */


.button-container-calendar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: -webkit-fill-available;
    margin: 0px 20px;
}

.footer-container-calendar select {
    cursor: pointer;
    zoom: 1;
    color: #288ECE;
    font-weight: 600;
    font-size: 18px;
    padding-right: 2px;
}

.header_div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.content_img_div {
    width: fit-content;
    position: relative;
    /* margin: auto; */
}

.name_tag {
    position: absolute;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    gap: 2px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

.name_tag .p_tag_pri {
    width: 230px;
}

.right_tag {
    right: 140px;
}

.left_tag {
    left: 140px;
}

.active_pop .name_tag {
    bottom: 10px;
    right: 200px;
    height: 280px;
}

.span_tag {
    font-size: 16px;
    line-height: 24px;
    color: #9098B1;
}

.popup_btn {
    width: -webkit-fill-available;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

img.content_img {
    width: 225px;
    height: 300px;
    border-radius: 20px;
}

.name_tag p {
    text-align: center;
    white-space: nowrap;
}

.main_page {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 140px 0px 80px;
    gap: 80px;
}

/* home------------- */

.page_content {
    display: grid;
    grid-template-columns: auto auto;
    padding: 124px 64px 0;
    gap: 40px;
}

.left_section {
    width: 100%;
    height: 74vh;
    overflow-y: scroll;
    border-right: 1px solid #223263;
}

.right_section {
    /* width: fit-content; */
    height: 74vh;
    overflow-y: scroll;
}


.left_scroll_div {
    display: flex;
    padding: 40px 8px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.text_div {
    margin: 40px 0 24px;
}

.text_div .pri_btn {
    margin: 40px auto 0 auto;
}

.pri_btn {
    width: fit-content;
    padding: 12px 24px;
    background: #FFFFFF;
    border: 2px solid #288ECE;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #288ECE;
}

.side_navbtn {
    position: relative;
    width: fit-content;
    color: #9098B1;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 16px;
    overflow: hidden;
    white-space: nowrap;
}

.active_snavbtn {
    color: #223263;
    background: rgba(36, 34, 32, 0.04);
    border: 1px solid #EBF0FF;
    border-radius: 12px;
}

.active_snavbtn::before {
    content: "";
    position: absolute;
    width: 293px;
    height: 56px;
    left: calc(50% - 293px/2 - 9.5px);
    top: calc(50% - 56px/2);
    background: radial-gradient(50% 50% at 50% 50%, rgba(126, 187, 226, 0.48) 0%, rgba(126, 187, 226, 0) 100%, rgba(126, 187, 226, 0) 100%);
    opacity: 0.6;
    filter: blur(20px);
}

.display_h1,
.display_h {
    font-weight: 300;
    font-size: 32px;
    line-height: 39px;
}

.italic {
    font-style: italic;
}

.display_h2,
.display_h2b {
    font-weight: 300;
    font-size: 24px;
}

/* .display_h2b {
    font-weight: 600;
    font-size: 24px;
} */

.display_h,
.display_h2b {
    font-weight: 600;
}

.text_div .display_h1 {
    padding-bottom: 24px;
}

.p_tag,
.p_tag_pri {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
}

.p_tag_pri {
    font-weight: 600;
}

.p_smb {
    font-weight: 600;
    font-size: 14px;
}

.p_smb_500 {
    font-weight: 500;
    font-size: 14px;
}

.margin_b4{
    margin-bottom: 4px;
}

.acc_color{
    color: #9098B1;
}

.marginS_64 {
    margin: 0px 64px;
}

.readm_btn {
    font-weight: 700;
    text-decoration: underline;
    color: #288ECE;
}


.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #53A5D8;
}

.footer * {
    color: #FFFFFF;
    vertical-align: middle;
}

/* login page------------- */

form.login_form {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    margin: 60px 0px;
}

form.login_form .display_h1 {
    margin-bottom: 40px;
    text-align: center;
    color: #288ECE;
}

.input_tag {
    width: 301px;
    padding: 15px 24px;
    margin: 8px 0 40px;
    border: 1.5px solid #288ECE;
    border-radius: 24px;
}

::placeholder {
    color: rgba(34, 50, 99, 0.6);
    opacity: 1;
    /* Firefox */
}

.fullp_center {
    display: flex;
    /* height: 94vh; */
    align-items: center;
    justify-content: center;
}

form.login_form label {
    color: #7F7E83;
    font-weight: 600;
    font-size: 14px;
}

form.login_form .pri_btn {
    background: #288ECE;
    color: #FFFFFF;
    border: none;
    margin: 0 auto 24px;
}

span.bm_link {
    text-align: center;
}

span.bm_link * {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

span.bm_link a {
    font-weight: 600;
    font-size: 14px;
    color: #288ECE;
    text-decoration: underline;
}

/* login page------------- end */

.mcard_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin: 40px 0;
}

.title_mcard_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.mcard_div {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.mcard_veiw {
    position: relative;
    width: fit-content;
    height: 470px;
}

.profile_img {
    position: relative;
    top: 0px;
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all .4s ease-in-out;
}

.pro_content {
    position: relative;
    top: 0px;
    margin-top: -40px;
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px 16px;
    gap: 6px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all .4s ease-in-out;
}

.pro_name {
    width: -webkit-fill-available;
}

.pro_name>h2 {
    margin-bottom: 4px;
}

.pro_info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 0px;
    opacity: 0.1; 
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.pro_subtitle {
    letter-spacing: 0.5px;
    font-weight: 600;
    text-decoration: underline;
}

.mcard_veiw:hover .profile_img {
    transform: scale(0.4);
    top: -100px;
}

.mcard_veiw:hover .pro_content {
    z-index: -1;
    top: -212px;
    padding: 40px 24px 16px;
}

.mcard_veiw:hover .pro_info {
    height: 228px;
    opacity: 1;
    /* animation: proinfoHA 0.4s ease-in-out both; */
}


@keyframes proinfoHA  {
    /* 0% {
        display: none;
        visibility: hidden;
        height: 0px;
        opacity: 0.1;
    } */

    1% {
        display: flex;
        visibility: visible;
    }

    100% {
        height: 284px;
        opacity: 1;
    }
}

/* executive committee-------------*/
@media (max-width: 991px) {
    .logo_div {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0px 24px 14px;
        border: none;
    }

    .input_nav_div {
        justify-content: center;
        flex-wrap: wrap;
    }

    .container {
        display: none;
        position: absolute;
        width: 100vw;
        height: 90vh;
        padding: 24px;
        justify-content: flex-start;
        background-color: #ddf2ff;
        flex-direction: column;
        overflow-x: scroll;
    }

    .container a,
    .dropdown .dropbtn {
        padding: 8px;
        border-bottom: solid 0.5px rgba(34, 50, 99, 0.3);
    }

    .dropdown .dropbtn img {
        margin-left: 8px;
    }

    .dropdown-content {
        position: static;
        flex-direction: column !important;
        box-shadow: none;
        border: none;
        border-radius: none;
        background-color: transparent;
    }

    .toggle .container {
        display: flex;
    }

    .toggle-menu {
        position: absolute;
        top: 20%;
        left: 2%;
        width: 34px;
        height: 30px;
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        padding: 4px;
        background-color: #288ECE;
        /* background-color: rgba(0, 0, 0, 0.2); */
        border-radius: 5px;
        cursor: pointer;
    }

    .line {
        width: 100%;
        height: 3px;
        border-radius: 5px;
        background-color: #ffff;
        transition: transform 0.2s ease-out;
    }

    .toggle .line1 {
        background-color: #ffff;
        transform: scale(0.9) rotateZ(-45deg) translate(-5px, 4px);
    }

    .toggle .line2 {
        display: none;
    }

    .toggle .line3 {
        background-color: #ffff;
        transform: scale(0.9) rotateZ(45deg) translate(-5px, -4px);
    }

    .toggle .toggle-menu {
        background-color: #288ECE;
    }

    .nav_link {
        position: fixed;
        padding-top: 12%;
        background-color: #ffffff;
        /* margin: auto; */
        z-index: 2;
        top: 90px;
        left: 0%;
        height: 100vh;
        width: 0px;
        overflow: hidden;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 4%;
        transition: all .2s ease-in-out;
    }

    .toggle .nav_link {
        display: flex;
        width: 300px;
        box-shadow: 1px 0 15px 2px rgba(0, 0, 0, 0.4);
    }

    .page_content {
        padding: 150px 64px 0;
    }
}

@media (max-width: 780px) {
    .left_section {
        display: none;
    }
}