﻿  /*  ----------aday buton için */
        .btn:link,
        .btn:visited {
            text-transform: uppercase;
            text-decoration: none;
            padding: 15px 40px;
            display: inline-block;
            border-radius: 100px;
            transition: all .2s;
            min-width: 260px;
            margin-bottom: 4px;
            margin-top: 1px;
            font-size: medium;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background-color: #b18627;
        }

        .btn:active {
            transform: translateY(-1px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            background-color: #b18627;
        }

        .btn-white {
            background-color: #c5c5c5;
            color: #252525;
        }

        .btn::after {
            content: "";
            display: inline-block;
            height: 100%;
            width: 100%;
            border-radius: 100px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            transition: all .4s;
        }

        .btn-white::after {
            background-color: #fff;
        }

        .btn:hover::after {
            transform: scaleX(1.3) scaleY(1.5);
            opacity: 0;
        }

        .btn-animated {
            animation: moveInBottom 5s ease-out;
            animation-fill-mode: backwards;
        }




        @media (min-width:992px) and (max-width: 1200px) {
            .btn:link,
            .btn:visited {
                padding: 10px 40px;
                min-width: 235px;
            }
        }

        @keyframes moveInBottom {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0px);
            }
        }


         @media (max-width: 991px) {
            .btn:link,
            .btn:visited {
                font-size: small;
                /*min-width: 170px;*/
                padding: 5px 10px;
            }

           
        }