        .partner-card {
            min-width: 200px;
            flex-shrink: 0;
            /* background: white; */
            border-radius: 1rem;
            overflow: hidden;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
            transition: transform 0.50s ease;
        }

        .partner-card img {
            width: 100%;
            height: 140px;
            object-fit: contain;
            padding: 1rem;
        }


        /* From Uiverse.io by bhaveshxrawat */
        .card {
            width: 200px;
            height: 100px;
            background: #054829;
            position: relative;
            display: flex;
            place-content: center;
            place-items: center;
            overflow: hidden;
            border-radius: 20px;
        }

        .card h2 {
            z-index: 1;
            color: white;
            font-size: 2em;
        }

        .card::before {
            content: '';
            width: 50px;
            background-image: linear-gradient(180deg, #054829, #159e5e);
            height: 350%;
            animation: rotBGimg 3s linear infinite;
            transition: all 0.2s linear;
        }

        @keyframes rotBGimg {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .card::after {
            content: '';
            background: #054829;
            inset: 5px;
            border-radius: 15px;
        }






        /* From Uiverse.io by gohar_7145 */
        .outline {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .rect {
            stroke-dashoffset: 0;
            stroke-dasharray: 0 0 10 40 10 40;
            transition: 0s;
            stroke: #054829;
        }

        .nav {
            position: relative;
            width: 900px;
            height: 30px;
            border-radius: 40px;
        }

        .container:hover .outline .rect {
            transition: 999999s;
            /* Must specify these values here as something *different* just so that the transition works properly */
            stroke-dashoffset: 1;
            stroke-dasharray: 0;
        }

        .container {
            position: absolute;
            inset: 0;
            /* background: #054829; */
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            align-items: center;
            padding: 0em;
        }

        .btn {
            padding: 0em 0em;
            color: #fff;
            cursor: pointer;
            transition: 0.3s;
            font-size: 25;
        }

        .btn:hover {
            background: #4a793d;
            border-radius: 10px;
        }

        .btn:nth-child(1):hover~svg .rect {
            stroke-dashoffset: 0;
            stroke-dasharray: 0 2 8 73.3 8 10.7;
        }

        .btn:nth-child(2):hover~svg .rect {
            stroke-dashoffset: 0;
            stroke-dasharray: 0 12.6 9.5 49.3 9.5 31.6;
        }

        .btn:nth-child(3):hover~svg .rect {
            stroke-dashoffset: 0;
            stroke-dasharray: 0 24.5 8.5 27.5 8.5 55.5;
        }

        .btn:nth-child(4):hover~svg .rect {
            stroke-dashoffset: 0;
            stroke-dasharray: 0 34.7 6.9 10.2 6.9 76;
        }

        .btn:hover~.outline .rect {
            stroke-dashoffset: 0;
            stroke-dasharray: 0 0 10 40 10 40;
            transition: 0s !important;
        }

        /* / nav */



        /* From Uiverse.io by Tsiangana */
        .botao {
            width: 155px;
            height: 45px;
            border-radius: 20px;
            border: none;
            box-shadow: 0px 0px #078a4d;
            padding: 5px 10px;
            background-color: #078a4d;
            color: #fff;
            font-family: Roboto, sans-serif;
            font-weight: 505;
            font-size: 19px;
            line-height: 1;
            cursor: pointer;
            filter: drop-shadow(0 0 10px #078a4d);
            transition: 0.5s linear;
        }

        .botao .mysvg {
            display: none;
        }

        .botao:hover {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: 0.5s linear;
        }

        .botao:hover .texto {
            display: none;
        }

        .botao:hover .mysvg {
            display: inline;
        }

        .botao:hover::after {
            content: "";
            position: absolute;
            width: 16px;
            height: 3px;
            background-color: #0a9253;
            margin-left: -20px;
            animation: animate 0.9s linear infinite;
        }

        .botao:hover::before {
            content: "";
            position: absolute;
            top: -3px;
            left: -3px;
            width: 100%;
            height: 100%;
            border: 3.5px solid transparent;
            border-top: 3.5px solid #ffffff;
            border-right: 3.5px solid #fff;
            border-radius: 50%;
            animation: animateC 2s linear infinite;
        }

        @keyframes animateC {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes animate {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(20px);
            }
        }

        /* // */

        /* From Uiverse.io by andrew-demchenk0 */
        .button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 150px;
            height: 60px;
            border-radius: 100%;
            border: none;
            background-color: #078a4d;
        }

        .button:hover {
            background-color: #078a4d;
        }

        /* // */

        body {
            position: relative;
            z-index: 0;
        }

        body::before {
            content: "";
            position: fixed;
            width: 100%;
            height: 100%;
            background-image: url('/image/backg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.1;
            /* Adjust the opacity as needed */
            z-index: -1;
        }
