﻿@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap");

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #ffffff;
    color: #a5a5a5;
}

ul {
    list-style: none;
    margin-bottom: 0px;
    padding: 0;
}

p {
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    line-height: 2.29;
    font-weight: 400;
    color: #a5a5a5;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

    p a {
        display: inline;
        position: relative;
        color: inherit;
        border-bottom: solid 1px #ffa07f;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

a,
a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p a:active {
    position: relative;
    color: #ff6347;
}

p a:hover {
    color: #ffffff;
    background: #ffa07f;
}

    p a:hover::after {
        opacity: 0.2;
    }

::selection {
    background: #ffd266;
    color: #c88e00;
}

p::selection {
    background: #ffd266;
    color: #c88e00;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 14px;
}

h5 {
    font-size: 11px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cairo", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

.form-control {
    color: #db5246;
}



.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

.custom-btn {
    background-color: #1450a3;
    border: none;
    outline: none;
    color: white;
    width: 100px;
    height: 35px;
    border-radius: 7px;
    box-shadow: 0 10px 20px -10px #191d88;
    cursor: pointer;
}

/*********************************
1. Header Start
*********************************/
.header {
    position: fixed;
    top: 45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1318px;
    height: 104px;
    background: #ffffff;
    z-index: 10;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

    .header.scrolled {
        top: 15px;
    }

        .header.scrolled .header_content::before {
            box-shadow: 0px 20px 49px rgba(0, 0, 0, 0.17);
        }

.header_content {
    width: 100%;
    height: 100%;
}

    .header_content::before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        box-shadow: 0px 20px 49px rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

/*********************************
3.1 Logo
*********************************/

.logo_container {
    display: inline-block;
    padding-right: 50px;
}

.logo span {
    font-family: "Cairo", sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #3a3a3a;
    vertical-align: middle;
    text-transform: uppercase;
    margin-left: 3px;
}

/*********************************
3.2 Main Nav
*********************************/

.main_nav_container {
    display: inline-block;
    margin-left: auto;
    padding-right: 93px;
}

.main_nav {
    margin-top: 7px;
}

.main_nav_item {
    display: inline-block;
    margin-left: 30px;
}

    .main_nav_item:last-child {
        margin-right: 0px;
    }

    .main_nav_item a   {
        font-family: "Cairo", sans-serif;
        font-size: 17px;
        font-weight: 700;
        color: #1450a3;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

        .main_nav_item a:hover {
            font-size: 18px;
            color: #ffc436;
        }

/*********************************
3.3 Header Side
*********************************/

.header_side {
     width: 279px;
    height: 100%;
    background: #ffb606;
}

    .header_side img {
        width: 29px;
        height: 29px;
    }

    .header_side span {
        display: block;
        position: relative;
        font-size: 18px;
        font-weight: 500;
        color: #ffffff;
        padding-left: 12px;
    }

.hamburger_container {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    display: none;
    cursor: pointer;
}

    .hamburger_container i {
        font-size: 24px;
        padding: 10px;
        color: #3a3a3a;
    }

    .hamburger_container:hover i {
        color: #337ccf;
    }

/*********************************
4. Menu
*********************************/

.menu_container, .deprt {
    position: fixed;
    top: 0;
    left: -50vw;
    width: 50vw;
    height: 100vh;
    background: #ffffff;
    z-index: 12;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    visibility: hidden;
    opacity: 0;
}
.deprt {
    left: -100vw;
    width: 100vw;
    height: 100vh;
}


.team-container {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 100px 10px;
    place-items: center;
   
}
.team-box-img {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 1rem;
}

.team-box-content {
    width: 100%;
}

.team-box-elements {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.team-heading {
    font-size: 1.7rem;
    color: black;
    font-weight: 500;
    line-height: 1.5;
    text-align: right;
    justify-content: right;
}

.team-box {
    background-color:#fff;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
}

    .team-box:hover {
        background-color: #ddd;
        box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all.2s ease-in-out;
    }



.team-box-name {
    font-size: 1.73rem;
    line-height: 1.5;
}

    .menu_container.active, .deprt.active {
        visibility: visible;
        opacity: 1;
        left: 0;
    }

.menu {
    position: absolute;
    top: 150px;
    right: 0;
    padding-right: 15%;
}

.menu_list {
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 1000ms 600ms ease;
    opacity: 0;
}

.menu_container.active .menu_list {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.menu_item {
    text-align: right;
    margin-bottom: 20px;
}
.dropdown-submenu {
    position: relative;
}


    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }
.dropdown-menu > li > a {
  
    color: #1450a3;
}
.dropdown > a  {
    color: #1450a3;
}


.menu_item a {
    font-family: "Cairo", sans-serif;
    font-size: 23px;
    font-weight: 600;
    color: #1450a3;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

        .menu_item a:hover {
            color: #ffb606;
        }

.menu_close_container {
    position: absolute;
    top: 86px;
    left: 79px;
    width: 21px;
    height: 21px;
    cursor: pointer;
    z-index:100;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu_close {
    top: 9px;
    width: 21px;
    height: 3px;
    background: #3a3a3a;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

    .menu_close::after {
        display: block;
        position: absolute;
        top: -9px;
        left: 9px;
        content: "";
        width: 3px;
        height: 21px;
        background: #3a3a3a;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
    background: #ffb606;
}

/*********************************
4.1 Menu Social
*********************************/

.menu_social_container {
    margin-top: 100px;
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 1000ms 1000ms ease;
    -moz-transition: all 1000ms 1000ms ease;
    -ms-transition: all 1000ms 1000ms ease;
    -o-transition: all 1000ms 1000ms ease;
    transition: all 1000ms 1000ms ease;
    opacity: 0;
    padding-left: 4px;
}

.menu_social_item {
    display: inline-block;
    margin-right: 10px;
}

    .menu_social_item a i {
        color: #1450a3;
    }

        .menu_social_item a i:hover {
            font-size: 40px;
            color: #ffc436;
        }

.menu_container.active .menu_social_container {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

/*********************************
4.2 Menu copyright
*********************************/

.menu_copyright {
    margin-top: 60px;
    -webkit-transform: translateY(3.5rem);
    -moz-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    -o-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
    -webkit-transition: all 1000ms 1200ms ease;
    -moz-transition: all 1000ms 1200ms ease;
    -ms-transition: all 1000ms 1200ms ease;
    -o-transition: all 1000ms 1200ms ease;
    transition: all 1000ms 1200ms ease;
    opacity: 0;
    padding-left: 3px;
    color: black;
}

.menu_container.active .menu_copyright {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.social_container {
    padding-top: 9px;
    padding-left: 60px;
    font-size: 30px;
}

/*
1.Header End

*/
/*
    slider Start
*/

.slider {
    border-radius: 10px;
    direction: ltr;
    position: relative;
    background: #3a3a3a;
    margin: 0 5%;
    margin-bottom: 200px;
}

.myslide {
    height: 655px;
    display: none;
    overflow: hidden;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 50px;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    transition: 0.1s;
    user-select: none;
}

    .prev:hover,
    .next:hover {
        color: #ffc436;
    }

.next {
    right: 0;
}

.dotsbox {
    direction: rtl;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

    .active,
    .dot:hover {
        border-color: #ffc436;
    }

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 3.5s;
    animation-name: fade;
    animation-duration: 77.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 1;
    }

    to {
        opacity: 1;
    }
}

.txt {
    position: absolute;
    text-align: right;
    color: #fff;
    line-height: 35px;
    top: 40%;
    right: 15%;
    -webkit-animation-name: posi;
    -webkit-animation-duration: 2s;
    animation-name: posi;
    animation-duration: 2s;
    z-index: 999;
}

@-webkit-keyframes posi {
    from {
        right: 25%;
    }

    to {
        right: 15%;
    }
}

@keyframes posi {
    from {
        right: 25%;
    }

    to {
        right: 15%;
    }
}

.txt h1 {
    color: #ffc436;
    font-size: 40px;
    margin-bottom: 20px;
}

.txt p {
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid black;
    background-color: rgba(0, 0, 0, 0.27);
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.slider img {
    opacity: 0.5;
    transform: scale(1.5, 1.5);
    -webkit-animation-name: zoomin;
    -webkit-animation-duration: 40s;
    animation-name: zoomin;
    animation-duration: 40s;
}

@-webkit-keyframes zoomin {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

@keyframes zoomin {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

/*
    slider End
*/

/*
    About start
*/

.About-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 200px 0;
    width: 100%;
    max-width: 700px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.About-btn {
    width: 200px;
    height: 60px;
    font-size: 20px;
    margin-top: 20px;
}

    .About-btn:hover {
        background-color: #191d88;
    }

#About {
    display: flex;
    justify-content: center;
    align-items: center;
}

.About-contnet {
    text-align: center;
    padding: 50px;
}

    .About-contnet h3 {
        font-size: 45px;
        font-weight: 700;
        color: #191d88;
        padding-bottom: 20px;
    }

    .About-contnet p {
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        color: #000;
        padding-bottom: 20px;
    }

/*About End */

/* footer start */

.footer {
    width: 100%;
    padding-top: 86px;
    overflow: hidden;
    background: black;
}

    .footer .section_title h1 {
        color: #ffffff;
    }

.newsletter {
    padding-bottom: 85px;
    border-bottom: solid 2px #1450a3;
}

.newsletter_form_container {
    width: 60%;
    margin-top: 48px;
}

.newsletter_email {
    width: calc(100% - 164px);
    height: 42px;
    border: none;
    padding-left: 27px;
    font-weight: 500;
    color: black;
}

    .newsletter_email:focus {
        outline: solid 2px #ffb606;
    }

.newsletter_submit_btn {
    width: 164px;
    height: 42px;
    border: none;
    background: #1450a3;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

    .newsletter_submit_btn:focus {
        border: solid 2px #ffffff;
    }

.footer_content {
    padding-top: 80px;
    padding-bottom: 83px;
    text-align: right;
    border-bottom: solid 2px #4d4e4e;
}

.footer_about_text {
    font-size: 12px;
    margin-top: 24px;
    margin-bottom: 0px;
    padding-left: 20px;
}

.footer_column_title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding-top: 15px;
}

.footer_column_content {
    margin-top: 25px;
}

.footer_list_item {
    margin-bottom: 11px;
}

    .footer_list_item a {
        font-size: 14px;
        color: #a5a5a5;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -ms-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
    }

        .footer_list_item a:hover {
            color: #ffb606;
        }

.footer_contact_item {
    font-size: 16px;
    font-weight: 400;
    color: #a5a5a5;
    margin-bottom: 22px;
}

    .footer_contact_item:last-child {
        margin-bottom: 0px;
    }

.footer_contact_icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 10px;
}

    .footer_contact_icon img {
        width: 100%;
    }

/*********************************
 Footer Copyright
*********************************/
.footer_copyright {
    text-align: center;
}

.footer_bar {
    padding-top: 19px;
    padding-bottom: 19px;
}

.footer_social .menu_social_item a i {
    color: #ffffff;
}

    .footer_social .menu_social_item a i:hover {
        color: #ffb606;
    }

.footer_social .menu_social_item:last-child {
    margin-left: 0px;
}

/* footer end  */

/* vision Start */
.vision {
    background-color: black;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    color: #eee;
    position: relative;
}

    .vision .list .item {
        position: absolute;
        background-color: black;
        inset: 0 0 0 0;
    }

        .vision .list .item img {
            width: 100%;
            height: 100%;
            opacity: 0.5;
            object-fit: cover;
        }


        .vision .list .item .content {
            text-align: right;
            position: absolute;
            top: 30%;
            width: 1140px;
            max-width: 80%;
            left: 50%;
            transform: translateX(-50%);
            padding-right: 5%;
            box-sizing: border-box;
            text-shadow: 0 5px 10px #0004;
        }

        .vision .list .item .goals {
            left: 60%;
        }

         .item .content .author  {
            font-weight: bold;
            letter-spacing: 3px;
            color: #ffc436;
            margin: 5px 0;
        }

         .item .content .title,
         .item .content .topic {
            font-weight: bold;
            font-size: 2.5em;
            list-style: 1.3em;
        }

         .item .content .topic {
            color: #87c4ff;
        }

         .item .content .des {
            margin-top: 10px;
            max-width: 50%;
            font-size: 1.3em;
        }
         .item .content .goals-doc {
            font-weight: bold;
            font-size: 14px;
        }

         .item .content .buttons {
            display: grid;
            grid-template-columns: repeat(2, 200px);
            grid-template-rows: 40px;
            gap: 5px;
            margin-top: 20px;
        }

            .item .content .buttons button {
                font-family: "Cairo";
                border: none;
                color: #eee;
                cursor: pointer;
                background-color: #1450a3;
                letter-spacing: 2px;
                font-weight: 500;
            }

                 .item .content .buttons button:nth-child(2) {
                    background-color: transparent;
                    color: #eee;
                    cursor: pointer;
                    border: 1px solid #eee;
                }

                 .item .content .buttons button:hover {
                    background-color: #FFC436;
                }

                 .item .content .buttons button:nth-child(2):hover {
                    background-color: #FFC436;
                    color: #eee;
                    border: 1px solid #eee;
                }
/* vision-title start */
.vision-title {
    position: absolute;
    bottom: 50px;
    right: 50%;
    width: max-content;
    z-index: 9;
    display: flex;
    gap: 20px;
}

    .vision-title .item {
        width: 150px;
        height: 220px;
        flex-shrink: 0;
        position: relative;
        border-radius: 20px;

    }

        .vision-title .item img {
            width: 100%;
            height: 100%;
            opacity: 0.8;
            border-radius: 20px;
            object-fit: cover;
        }

        .vision-title .item .content {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
        }

            .vision-title .item .content .title {
                font-weight: bold;
                font-size: 18px;
                color: white;
            }

/* vision-title end */
/* arrow */
.arrows {
    position: absolute;
    top: 80%;
    left: 52%;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .arrows button {
        width: 40px;
        height: 40px;
        border-radius: 56%;
        background-color: #eee4;
        border: none;
        font-family: monospace;
        color: #fff;
        font-weight: bold;
        font-size: large;
        transition: 0.5s;
        z-index: 9;
    }

        .arrows button:hover {
            background-color: #eee;
            color: #555;
        }

.vision .list .item:nth-child(1) {
    z-index: 1;
}

    .vision .list .item:nth-child(1) .author,
    .vision .list .item:nth-child(1) .title,
    .vision .list .item:nth-child(1) .topic,
    .vision .list .item:nth-child(1) .des,
    .vision .list .item:nth-child(1) .buttons {
        transform: translateY(50px);
        filter: blur(20px);
        opacity: 0;
        animation: showCoutent 0.5s 1s linear 1 forwards;
    }

@keyframes showCoutent {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.vision .list .item:nth-child(1) .title {
    animation-delay: 1.3s;
}

.vision .list .item:nth-child(1) .topic {
    animation-delay: 1.4s;
}

.vision .list .item:nth-child(1) .des {
    animation-delay: 1.6s;
}

.vision .list .item:nth-child(1) .buttons {
    animation-delay: 1.8s;
}

/* effect next click */
.vision.next-vision .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    border-radius: 20px;
    animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage {
    to {
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        border-radius: 0;
    }
}

.vision.next-vision .vision-title .item:nth-child(1) img {
    width: 0;
    opacity: hidden;
    animation: showThumbnail 0.5s linear 1 forwards;
}

@keyframes showThumbnail {
    to {
        width: 150px;
    }
}

.vision.next-vision .vision-title {
    transform: translateX(150px);
    animation: transformThumbnail 0.5s linear 1 forwards;
}

@keyframes transformThumbnail {
    to {
        transform: translateX(0);
    }
}
/*effect prev click */

.vision.prev-vision .list .item:nth-child(2) {
    z-index: 2;
}

    .vision.prev-vision .list .item:nth-child(2) img {
        position: absolute;
        bottom: 0;
        left: 0;
        animation: outImage 0.5s linear 1 forwards;
    }

@keyframes outImage {
    to {
        width: 150px;
        height: 220px;
        border-radius: 20px;
        left: 50%;
        bottom: 50px;
    }
}

.vision.prev-vision .vision-title .item:nth-child(1) {
    width: 0;
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail 0.5s linear 1 forwards;
}

.vision.prev-vision .list .item:nth-child(2) .author,
.vision.prev-vision .list .item:nth-child(2) .title,
.vision.prev-vision .list .item:nth-child(2) .topic,
.vision.prev-vision .list .item:nth-child(2) .des,
.vision.prev-vision .list .item:nth-child(2) .buttons {
    animation: contentOut 1.5s linear 1 forwards;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

.vision.next-vision .arrows button,
.vision.prev-vision .arrows button {
    pointer-events: none;
}

.time {
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
}

.vision.next-vision .time,
.vision.prev-vision .time {
    width: 100%;
    animation: timeRunning 2s linear 1 forwards;
}

@keyframes timeRunning {
    to {
        width: 0;
    }
}




/* Vision  end*/
