@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.1s ease;

}



/* body {
  
} */

:root {
    --pri: #375E97;
    --pri2: #FB6542;
    --pri3: #FFBB00;




}

/* body{
    cursor: none;
    
} */

/* body .backgroundimg {
    background-image: url(./Image/mataji\ background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    background-attachment: fixed;
    top: 0;
} */

/* .cursor-dot{
    width: 15px;
    height: 15px;
    background-color: var(--pri);
}

.cursor-outline{
        width: 30px;
        height: 30px;
        border: 2px solid var(--pri3);
}

.cursor-dot , .cursor-outline{
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
} */

.logobar {

    background-color: var(--pri);
    z-index: 1;
    height: 35px;
    /* display: flex;
    align-items: center;
    justify-content: center; */

}



.logobar .logo {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-weight: 100;
    color: var(--pri3);
    font-size: 15px;


}

.logobar .logo .contact p {
    padding: 5px;

}

.logobar .logo .contact p i {
    padding: 10px;

}

.logobar .logo .login_Registration {
    display: flex;
    justify-content: center;
}

.logobar .logo .login_Registration a {
    padding: 0px 10px;
    cursor: pointer;
}

/* ===== Colours ===== */
/* :root {

    --body-color: #E4E9F7;
    --nav-color: rgb(104, 64, 244);
    --side-nav: #010718;
    --text-color: #151515;
    --back-color: #ffffff;
    --text-color_white: #ffffff;
    --btn-color: #4070F4;
    --btn-color_dark: #151515;
    --text-color_dark: #ffffff;
    --btn-nav_color: #4070F4;
    --btn-search: #ffffff;


} */

nav {
    /* top: 0;
    left: 0; */
    /* height: 70px; */
    width: 100%;
    background-color: white;
    z-index: 1;
    /* box-shadow: 0px 2px 10px 0px rgb(185, 185, 185); */
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    padding: 5px 5px;

}

/* body.dark nav {
    border: 1px solid #393838;
} */

nav .nav-bar {
    /* position: relative; */
    /* z-index: 0; */
    display: flex;
    /* height: 100%; */
    /* max-width: 1000px; */
    /* align-items: center; */
    /* width: 100%; */
    background-color: white;
    /* margin: 0 auto; */
    /* padding: 0 30px; */
    align-items: center;
    justify-content: space-between;
    /* background-color: aqua; */

}

nav .nav-bar .sidebarOpen {
    color: var(--text-color_white);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a {
    font-size: 25px;
    font-weight: 500;
    color: var(--pri);
    text-decoration: none;
}

/* 
.menu {
    display: flex;
    align-items: center;
    justify-content: center;

} */

.menu .logo-toggle {
    display: none;

}

.nav-bar .nav-links {
    display: flex;
    align-content: center;

}

.nav-bar .nav-links li {
    /* margin: 0 5px; */
    list-style: none;
    /* display: flex;
    align-items: center; */

}

.nav-links li a {
    display: flex;
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: var(--pri);
    text-decoration: none;
    padding: 0px 20px;

    /* background-color: aqua; */

}

.nav-links li a:hover {

    color: var(--pri3);

}

.nav-links li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    top: 30px;
    transform: translateX(-50%);
    height: 1px;
    width: 25px;
    /* border-radius: 1%; */
    background-color: var(--pri3);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover a::before {
    opacity: 1;
}

.nav-bar .darkLight-searchBox {
    display: flex;
    align-items: center;
}

.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.dark-light i,
.searchToggle i {
    position: absolute;
    color: var(--pri);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}


/*

.dark-light i.sun {
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun {
    opacity: 1;
    pointer-events: auto;
}

.dark-light.active i.moon {
    opacity: 0;
    pointer-events: none;
}*/

.searchToggle i.cancel {
    opacity: 0;
    pointer-events: none;
}

.searchToggle.active i.cancel {
    opacity: 1;
    pointer-events: auto;
}

.searchToggle.active i.search {
    opacity: 0;
    pointer-events: none;
}

.searchToggle i:hover {
    /* opacity: 0;
    pointer-events: none; */
    color: var(--pri3);
}

.searchBox {
    position: relative;
}

.searchBox .search-field {
    z-index: 1;
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: #313131;
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.searchToggle.active~.search-field {
    z-index: 1;
    background-color: white;
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
}

.search-field::before {
    z-index: 1;
    content: '';
    position: absolute;
    right: 14px;
    top: -4px;
    height: 12px;
    width: 12px;
    background-color: white;
    transform: rotate(-45deg);
    z-index: -1;
}

.search-field input {
    z-index: 1;
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--pri);
    background-color: white;
}

body.dark .search-field input {
    z-index: 1;
    color: var(--text-color_white);
}

.search-field i {
    z-index: 1;
    position: absolute;
    color: var(--pri);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.search-field i:hover {
    color: #FC6736;
}

body.dark .search-field i {
    z-index: 1;

}

@media (max-width: 790px) {
    nav .nav-bar .sidebarOpen {
        display: block;
    }

    .menu {
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all 0.4s ease;
    }

    nav.active .menu {
        left: -0%;
        background-color: white;
    }

    nav.active .nav-bar .navLogo a {
        opacity: 0;
        transition: all 0.3s ease;
    }

    .menu .logo-toggle {
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-toggle .siderbarClose {
        color: var(--text-color_white);
        font-size: 24px;
        cursor: pointer;
    }

    .nav-bar .nav-links {
        flex-direction: column;
        padding-top: 30px;
    }

    .nav-links li a {
        display: block;
        margin-top: 20px;
    }
}


.content_space {
    margin: 25px 50px;

    /* width: 95%; */
    /* background-color: white; */

}

@media (max-width:769px) {
    .content_space {
        margin: 25px 25px;
    
        /* width: 95%; */
        /* background-color: white; */
    
    }
}
/* -----------------------------------search---------------------------------------------------- */
.container{
    margin-top: 100px;
    margin-bottom: 100px;
}

.container form label{
    color: var(--pri);
}

.container form input{
    color: var(--pri);
}

.container form .search_field button{
    width: 100%;
    margin-top: 23px;
    padding: 7px;
    border: none;
    background-color: var(--pri3);
    color: white;
    border-radius: 5px;
}

.container form .search_field button:hover{
  
    color: var(--pri);
    border: 1px solid var(--pri);
    background-color: white;
}




.registrationForm {
    background-color: var(--pri3);
    /* height: 200px; */
    padding: 50px 0px;
    overflow: hidden;
    width: 100%;
    

}

/* 
.registrationForm .neededDetail {
    display: flex;



} */

.registrationForm .registrationForm_title h1 {
    color: var(--pri);
    margin: 25px 25px;
    font-weight: 900;
    font-size: 55px;
}

.registrationForm .neededDetail p {
    font-size: 15px;
    padding: 0vw 1vw 0vw 0vw;
    color: var(--pri);
    text-align: center;

}

/* .registrationForm .detail_btn {
    display: flex;

} */

.registrationForm .detail_btn button {
    border: none;
    padding: 20px;
    font-size: 15px;
    margin: 0.3vw;
    background-color: var(--pri);
    color: white;
    border-radius: 10px;


}

.registrationForm .detail_btn button:hover {
    color: var(--pri);
    border: 1px solid var(--pri);
    background-color: var(--pri3);

}

.registrationForm .detail_btn .modal .modal-dialog .modal-content .modal-body {

    color: var(--pri);
}

.registrationForm .detail_btn .modal .modal-dialog .modal-content .modal-body .tab-content {

    border-radius: 5px;

}

.registrationForm .detail_btn .modal .modal-dialog .modal-content .modal-body .nav-tabs li a {
    color: var(--pri);

}



.registrationForm .detail_btn .modal .modal-dialog .modal-content .modal-body .nav-tabs li .active {
    color: white;
    background-color: var(--pri3);

}

.registrationForm .detail_btn .modal .modal-dialog .modal-content .btn-close {
    /* background-color: var(--pri3) !important; */
    padding: 15px;
    color: white;
    /* margin: 10px; */
}


.registrationForm .detail_btn .modal .modal-dialog .modal-content .modal-footer a {
    background-color: var(--pri3) !important;
    padding: 15px;
    color: white;
}

.registrationForm .detail_btn .modal .modal-dialog .modal-content .modal-footer a:hover {
    background-color: white !important;
    border: 1px solid var(--pri3);
    color: var(--pri3);
}

@media (max-width:590px) {
    .registrationForm .registrationForm_title h1 {
        font-size: 40px;
    }

}

@media (max-width:440px) {
    .registrationForm .registrationForm_title h1 {
        font-size: 30px;
    }

}

/* ------------------------------------News_css------------------------ */


.news_main:before,
.news_main:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.news_main:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.news_main:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}



/* .news_cards img {
    height: 50px;
    margin: 0 40px;
  } */



.news_main {
    box-sizing: border-box;
    /* overflow: hidden; */
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* .news_cards {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    
} */

.slide_container {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 50s linear infinite;
}

.slide_container h2 {
    font-size: 32px;
    margin-bottom: 1em;
}

.slide_container .slide {

    display: grid;
    grid-auto-columns: 100%;
    grid-column-gap: 10px;
    grid-auto-flow: column;
    padding: 25px 20px;
    list-style: none;
    overflow: hidden;
    cursor: pointer;

}

.slide_container .slide p {
    font-size: 13px;
}

.slide_container .card {
    display: flex;
    /* margin: 0px 100px; */
    flex-direction: column;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 20%);
    transition: all 0.01s;
    border: none;
    width: 500px;

}

.slide_container .card .card-content p
    {
            width:700px;
        }

.news_main:hover .slide_container {
    animation-play-state: paused;
}


@keyframes scroll {
    from {
        transform: translateX(0);

    }

    to {
        transform: translateX(calc(-250px * 8));

    }
}

.slide_container .card:hover {
    color: white;
    background: var(--pri3);
}


.slide_container .card .card-title {
    font-size: 20px;
}

.slide_container .card .card-content {
    margin: 20px 0;
    max-width: 85%;
}

.slide_container .card .card-link-wrapper {
    margin-top: auto;
}



.slide_container .card .card-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: var(--pri3);
    padding: 6px 12px;
    border-radius: 5px;
    transition: 0.1s;
    font-size: 13px;
   
}

.slide_container .card:hover .card-link {
    background: white;
    color: var(--pri3);

}

.slide_container .slide::-webkit-scrollbar {
    height: 12px;

}

.slide_container .slide::-webkit-scrollbar-thumb,
.slide_container .slide::-webkit-scrollbar-track {
    border-radius: 92px;
}

.slide_container .slide::-webkit-scrollbar-thumb {
    background: var(--pri3);

}

.slide_container .slide::-webkit-scrollbar-track {
    background: rgb(231, 231, 231);
}

@media (max-width: 699px) {


       .news_main:before,
    .news_main:after {
        position: absolute;
        top: 0;
        width: 50px;
        height: 100%;
        content: "";
        z-index: 2;
    }

    .news_main:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    }

    .news_main:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    }



    .slide_container {

        /* animation-play-state: paused; */
        overflow: hidden;
        padding: 0px 0;


    }


    .slide_container .slide {

        display: flex;
        /* width: 700px; */
        justify-content: space-between;
        overflow: hidden;
        padding: 25px 5px;
        list-style: none;
        cursor: pointer;

    }

    .slide_container .card {
        display: flex;
        flex-direction: column;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 20%);
        transition: all 0.01s;
        border: none;
        width: 500px;
        text-align:justify;

    }
    
    
}

@media (min-width: 700px) {
    .slide_container .slide {
        grid-auto-columns: calc(calc(100% / 3) - 20px);
        grid-column-gap: 30px;
    }
}

@media (min-width: 1100px) {
    .slide_container .slide {
        grid-auto-columns: calc(25% - 30px);
        grid-column-gap: 40px;
    }
}


/* ------------------------------------marraigeForm_lobby------------------------ */

.marraigeForm_lobby {
    overflow: hidden;
    background-color: var(--pri);
    /* height: 200px; */
    padding: 50px 0px;
}

.marraigeForm_lobby h1 {
    color: var(--pri3);
    margin: 25px 25px;
    font-weight: 900;
    font-size: 55px;
}


.marraigeForm_lobby .neededDetail p {
    font-size: 15px;
    padding: 0px 10px 0px 0px;
    color: var(--pri3);

}

.marraigeForm_lobby .marraige_btn button {
    border: none;
    padding: 20px;
    font-size: 15px;
    margin: 0.3vw;
    background-color: var(--pri3);
    color: var(--pri);
    border-radius: 10px;
}

.marraigeForm_lobby .marraige_btn button:hover {
    border: 1px solid var(--pri3);
    background-color: var(--pri);
    color: var(--pri3);
}


.marraigeForm_lobby .marraige_btn .modal .modal-dialog .modal-content .modal-body {
    /* display: flex;
    justify-content: space-between; */
    /* background-color: #0C2D57; */
    color: var(--pri);
}

.marraigeForm_lobby .marraige_btn .modal .modal-dialog .modal-content .modal-body .tab-content {
    /* background-color: #F8F4E9; */
    border-radius: 5px;

}

.marraigeForm_lobby .marraige_btn .modal .modal-dialog .modal-content .modal-body .nav-tabs span a {
    color: var(--pri);

}



.marraigeForm_lobby .marraige_btn .modal .modal-dialog .modal-content .modal-body .nav-tabs span .active {
    color: white;
    background-color: var(--pri3);
    /* border: none; */
}

.marraigeForm_lobby .marraige_btn .modal .modal-dialog .modal-content .btn-close{
    padding: 15px;
    color: white;
}


.marraigeForm_lobby .marraige_btn .modal .modal-dialog .modal-content .modal-footer a {
    background-color: var(--pri3);
    padding: 15px;
    color: white;
}

.marraigeForm_lobby .marraige_btn .modal .modal-dialog .modal-content .modal-footer a:hover {
    background-color: white;
    border: 1px solid var(--pri3);
    color: var(--pri3);
}


@media (max-width:590px) {
    .marraigeForm_lobby h1 {
        font-size: 40px;
    }

}

@media (max-width:440px) {
    .marraigeForm_lobby h1 {
        font-size: 30px;
    }

}




/* -------------------------------------------title----------------------------- */

.title {
    margin-top: 60px;
}

.title .main_title {
    text-align: center;
    padding: 40px;
}

.title .main_title h1 {
    font-size: 45px;
    font-weight: 900;
}

.title .main_title p {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 600;
}

.form .inp {
    padding: 15px;
}

.modal-dialog {
    border: none;
}

@media (max-width:1200px) {
    .title .main_title h1 {
        font-size: 40px;
        font-weight: 900;
    }
}

@media (max-width:990px) {
    .title .main_title h1 {
        font-size: 20px;
        font-weight: 900;
    }

    .title .main_title p {

        font-size: 12px;
        font-weight: 600;
    }
}

@media (max-width:769px) {
    .title .main_title h1 {
        font-size: 20px;
        font-weight: 900;
    }


    .title .main_title p {

        font-size: 13px;
        font-weight: 600;
    }

}

@media (max-width:489px) {
    .title .main_title h1 {
        font-size: 20px;
        font-weight: 900;
    }

    .title .main_title p {

        font-size: 14px;
        font-weight: 600;
    }
}


/* -------------------------cards----------------------------------------------- */

.background {
    background-color: rgb(255, 255, 255);
    padding: 1px;
}
/* 
.content_space .tabs h1 {
    color: #0C2D57;
    padding: 0px 0px 60px 0px;
    font-size: 50px;
    text-align: center;
} */


.content_space .tabs .card h5 {
    color: var(--pri);
    font-size: 35px;
    padding: 10px;
    font-weight: 900;
}

.content_space .tabs .card p {
    color: var(--pri);
    padding: 10px;

}

.content_space .tabs .card {
    padding: 15px;
    background-color: var(--pri3);
    /* backdrop-filter: blur(2px); */
    border-radius: 20px;
    /* box-shadow: 0px 0px 24px 3px rgb(201, 201, 201); */
    border: none;

}

.background .content_space .tabs .card button{
    border: none;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0px;
    color: var(--pri3);
    background-color: var(--pri);
}

.content_space .tabs .card button:hover {
    color: var(--pri);
    border: 1px solid var(--pri);
    background-color: var(--pri3);
}

.background .content_space .tabs .middle_card{
    background-color: var(--pri) !important;
    
}

.background .content_space .tabs .middle_card h5{
   color: var(--pri3);
    
}


.background .content_space .tabs .middle_card p{
    color: var(--pri3);
     
 }

.background .content_space .tabs .middle_card button{
    border: none;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0px;
    color: white !important;
    background-color: var(--pri3) !important;
}


.background .content_space .tabs .middle_card button:hover {
    color: var(--pri3) !important;
    border: 1px solid var(--pri3) !important;
    background-color: var(--pri) !important;
}



@media (max-width: 790px) {
    .content_space .tabs h1 {
        text-align: center;
        font-size: 30px;


    }
}

@media (max-width: 590px) {
    .content_space .tabs h1 {
        font-size: 15px;


    }
}

/* ---------------------------gallery------------------------------------------------- */

/* .content_space .img_content {
    display: flex;
    justify-content: space-between;
    margin: 50px 0px;
}

.content_space .img_content .img img {
    border-radius: 20px;
}

.content_space .img_content .img_details {
    text-align: left;

}


.content_space .img_content .img_details h1 {

    color: #FC6736;
}


.content_space .img_content .img_details p {

    color: #0C2D57;
} */

/* ---------------------------agenda------------------------------------------------- */

/* .content_space .agenda h1 {
    color: var(--text-color);
    font-size: 30px;
    margin: 30px 0px;
}

.content_space .agenda .main .accordion .accordion-item button {
    background-color: var(--back-color);
    color: var(--text-color);
    border: none;
    box-shadow: 0px 0px 24px 5px var(--box-shadow);

}

.content_space .agenda .main .accordion .accordion-item {
    background-color: var(--back-color);
    color: var(--text-color);
    box-shadow: 0px 0px 24px 5px var(--box-shadow);

}


@media (max-width: 1200px) {
    .content_space .agenda h1 {
        text-align: center;
    }
}

@media (max-width: 790px) {
    .content_space .agenda h1 {
        text-align: center;
    }
} */


/* --------------------------------------meet_the_people------------------------------------ */

body .demo {
    background: white;
    padding: 1px;

}

.our-team {
    text-align: center;
    border-radius: 20px;
    background-color: var(--pri2);
    /* box-shadow: 0px 0px 24px 3px rgb(201, 201, 201); */
}

.our-team .team_img {
    position: relative;
    overflow: hidden;
}

.our-team .team_img:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.3s ease 0s;
}

.our-team:hover .team_img:after {
    bottom: 0;
}

.our-team img {
    width: 100%;
    height: auto;
}

.our-team .social {
    padding: 0 0 18px 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: -100%;
    right: 10px;
    background: var(--pri3);
    border-radius: 0 0 20px 20px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.our-team:hover .social {
    top: 0;
}

.our-team .social li a {
    color: var(--pri);
    display: block;
    padding: 15px;
    font-size: 15px;
}

.our-team:hover .social li a:hover {
    color: white;
}

.our-team .team-content {
    padding: 20px 0;
    background: var(--pri3);
}

.our-team .title {
    font-size: 18px;
    font-weight: bold;
    color: var(--pri);
    text-transform: capitalize;
    margin: 0 0 20px;
    position: relative;
}

.our-team .title:before {
    content: "";
    width: 25px;
    height: 1px;
    background: var(--pri);
    position: absolute;
    bottom: -10px;
    right: 50%;
    margin-right: 9px;
    transition-duration: 0.25s;
}

.our-team .title:after {
    content: "";
    width: 25px;
    height: 1px;
    background: var(--pri);
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: 9px;
    transition-duration: 0.25s;
}

.our-team:hover .title:before,
.our-team:hover .title:after {
    width: 50px;
}

.our-team .post {
    display: inline-block;
    font-size: 15px;
    color: var(--pri);
    text-transform: capitalize;
}

.our-team .post:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pri);
    margin: 0 auto;
    position: relative;
    top: -13px;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}

/* --------------------------------------footer--------------------------------------- */

footer{
    overflow: hidden;
}

footer h6 a {
    text-decoration: none;
    font-weight: 100;
    padding: 5px;
    transition: all 0.3s ease;
    color: white;
    /* font-weight: 900; */

}

footer h6 a:hover {

    color: var(--pri3);
}

footer section a {

    text-decoration: none;
}

footer section a i {
    font-size: 25px;
    transition-duration: 0.3s;
    color: white;
}

footer section a i:hover {

    color: var(--pri3);
}

footer {
    font-weight: 100;
}

footer .detail h1 {
    font-weight: 600;
    color: var(--pri);
    font-size: 40px;
}

footer .detail a {
    text-decoration: none;
    color: white;
    cursor: pointer;
    font-size: 10px;
    /* font-weight: 800; */
}

footer .detail a:hover {
    color: var(--pri3);
}

footer .box i {
    font-size: 220px;
    color: rgba(0, 0, 0, 0.5);
}