@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #7380ec;
    --color-danger: #ff7782;
    --color-success: #41f1b6;
    --color-warning: #ffbb55;
    --color-white: #fff;
    --color-info-dark: #7d8da1;
    --color-info-light: #dce1eb;
    --color-dark: #363949;
    --color-light: rgba(132, 139, 200, 0.18);
    --color-primary-variant: #111e88;
    --color-dark-variant: #677483;
    --color-background: #f6f6f9;
    --color-background-image-1: url(../assets/img/bg-1.jpg);
    --color-background-image-2: url(../assets/img/bg-2.jpg);
    --color-background-image-3: url(../assets/img/bg-3.jpg);
    --color-background-image-4: url(../assets/img/bg-4.jpg);
    --color-background-image-5: url(../assets/img/bg-5.jpg);
    --color-background-image-6: url(../assets/img/bg-6.jpg);
    --color-background-image-7: url(../assets/img/bg-7.jpg);
    --color-background-image-8: url(../assets/img/bg-8.jpg);
    --color-background-image-9: url(../assets/img/bg-9.jpg);
    --color-background-image-10: url(../assets/img/bg-10.jpg);
    --card-border-radius: 2rem;
    --border-radius-1: 0.4rem;
    --border-radius-2: 0.8rem;
    --border-radius-3: 1.2rem;
    --card-padding: 1.8rem;
    --padding-1: 1.2rem;
    --button-padding: 0.3rem 0.6rem;
    --box-shadow: 0 2rem 3rem var(--color-light);
}

.dark-theme-varibles {
    --color-background: #181a1e;
    --color-white: #202528;
    --color-dark: #edeffd;
    --color-dark-variant: #a3bdcc;
    --color-light: rgba(0, 0, 0, 0.4);
    --box-shadow: 0 2rem 3rem var(--color-light);
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Sayfa kaydırmalarını smooth yapar */
}

html {
    transition: all 0.3s ease-in-out; /* Tüm öğeler için geçiş efekti */
}

a, button, img, input, textarea, div {
    transition: all 0.3s ease-in-out; /* Linkler, butonlar, resimler ve inputlar için */
}



body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--color-dark);
    overflow: auto;
    background: linear-gradient(315deg, rgb(184 27 17) 3%, rgb(255 255 255) 38%, rgb(191 51 42) 68%, rgb(0 0 0) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    color: var(--color-dark);
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

    .wave:nth-of-type(2) {
        bottom: -1.25em;
        animation: wave 18s linear reverse infinite;
        opacity: 0.8;
    }

    .wave:nth-of-type(3) {
        bottom: -2.5em;
        animation: wave 20s -1s reverse infinite;
        opacity: 0.9;
    }

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}


a {
    color: var(--color-dark);
}

img {
    display: block;
    width: 100%;
}

h1 {
    font-weight: 800;
    font-size: 1.8rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 0.87rem;
}

h4 {
    font-size: 0.8rem;
}

h5 {
    font-size: 0.77rem;
}

small {
    font-size: 0.75rem;
}

.text-muted {
    color: var(--color-info-dark);
}

p {
    color: var(--color-dark-variant);
}

b {
    color: var(--color-dark);
}

.primary {
    color: var(--color-primary);
}

.danger {
    color: var(--color-danger);
}

.warning {
    color: var(--color-warning);
}

.success {
    color: var(--color-success);
}

.white {
    color: var(--color-white);
}

.dark {
    color: var(--color-dark);
}

.light {
    color: var(--color-light);
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes popup {
    from {
        transform: scale(0.5);
    }

    to {
        transform: scale(1);
    }
}

.popup {
    animation: popup 0.5s ease-out;
}

.fade-up {
    animation: fadeInUp 1s ease-out forwards;
}

.profile {
    position: relative; /* Referans noktası belirtiyoruz */
    z-index: 1;
    margin-bottom: -6rem;
}


.card {
    border-radius: 2rem 2rem 0 0;
    padding: 6rem 20px 20px 20px;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.219);
    text-align: center;
    max-width: 600px;
    width: 600px;
    color: #333;
    overflow: hidden;
    background: linear-gradient(315deg, rgb(184 27 17) 3%, rgb(255 255 255) 38%, rgb(242 141 141) 68%, rgb(255 255 255) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
}



.card-footer {
    background-color: #b81b11;
    border-radius: 0 0 30px 30px;
    padding: 20px;
    margin: 0 -20px 0 -20px;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.219);
    text-align: center;
    max-width: 600px;
    width: 600px;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}







    .card-footer img {
        width: 100px;
    }

    .card-footer .copyright-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

        .card-footer .copyright-info small {
            color: white;
            font-size: 12px;
        }

.head_ {
    z-index: -1;
}

    .head_ .video_bg video {
    width: 600px;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    margin-bottom: -6rem;
    }

.head .card-head img {
    width: 100%;
    height: 300px;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}


.profile-pic img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Dalga Animasyonu */
.profile-pic::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 15px solid rgb(193, 193, 193);
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 1.5s infinite ease-out;
    opacity: 1;
    z-index: 0;
}

/* Dalga Yayılma Animasyonu */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

h2 {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

p {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    padding: 0 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .social-links span {
        color: #000000;
    }

    .social-links a {
        text-decoration: none;
        color: #000000;
        background-color: transparent;
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin: 0 5px;
        font-size: 2rem;
    }

    .social-links .btn_ {
        color: #b81b11;
        background-color: transparent;
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin: 0 5px;
        font-size: 2rem;
        cursor: pointer;
    }

    .social-links a h2 {
        color: #000;
        transition: all ease .3s;
    }

    .social-links a:hover h2 {
        color: #333;
        transition: all ease .3s;
    }

.custom-links {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.link-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 150px;
    height: 150px;
    margin: 10px;
}

    .link-box:hover {
        background-color: #e0e0e0;
    }

    .link-box img {
        width: 70px;
        height: 70px;
        object-fit: cover;
    }

    .link-box i {
        font-size: 4rem;
        color: #000000;
    }

    .link-box span {
        font-weight: bold;
        font-size: 14px;
    }

    .link-box p {
        font-size: 14px;
        color: #666;
    }

.link-box_hizmet {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 250px;
    height: 200px;
    margin: 10px;
}

    .link-box_hizmet:hover {
        background-color: #e0e0e0;
    }

    .link-box_hizmet img {
        width: 100%;
        height: auto;
        border-radius: 1rem;
        object-fit: cover;
    }

    .link-box_hizmet i {
        font-size: 4rem;
        color: #000000;
    }

    .link-box_hizmet span {
        font-weight: bold;
        font-size: 16px;
    }

    .link-box_hizmet p {
        font-size: 14px;
        color: #666;
    }

.link-box_hizmet_detay img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

.link-box_hizmet_detay p {
    font-size: 14px;
    color: #666;
}


/* onay */
.funds-success-message-container {
    font-family: Roboto, "Segoe UI", "Helvetica Neue", sans-serif !important;
    color: #333;
    margin-top: 100px;
    max-width: 500px;
    margin: 0 auto;
}

.funds-checkmark-text-container {
    display: block;
    width: auto !important;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.funds-checkmark-container {
    height: 40px;
    padding: 0 4px 0 0px;
    display: inline-block;
    width: 70px;
    margin: 0 auto;
}

    .funds-checkmark-container:after {
        clear: both;
    }

.funds-success-done-text {
    vertical-align: middle;
    margin: 0;
    padding: 15px 0 0 0;
    display: inline;
}

.funds-success-message {
    text-align: center;
    margin-top: 2em;
}

    .funds-success-message h2 {
        margin-top: 0px;
    }


/* CHECKMARK */
.funds-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 5;
    stroke-miterlimit: 10;
    stroke: #33bb11;
    fill: none;
    -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.funds-checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 5;
    stroke: #ffffff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    -webkit-box-shadow: inset 0px 0px 0px #33bb11;
    box-shadow: inset 0px 0px 0px #33bb11;
    -webkit-animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.funds-checkmark-check {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.funds-display-on-ie {
    display: none;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .funds-display-on-ie {
        display: block;
    }

    .funds-checkmark {
        display: none;
    }

    .funds-ie-checkmark-circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 5;
        stroke-miterlimit: 10;
        stroke: #33bb11;
        fill: none;
        -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    .funds-ie-checkmark {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: block;
        stroke-width: 5;
        stroke: #ffffff;
        stroke-miterlimit: 10;
        margin: 10% auto;
        -webkit-box-shadow: inset 0px 0px 0px #33bb11;
        box-shadow: inset 0px 0px 0px #33bb11;
        -webkit-animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
        animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
    }

    .funds-ie-checkmark-check {
        -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }
}

@-webkit-keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes scale {
    0%, 100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes scale {
    0%, 100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}

@-webkit-keyframes fill {
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 30px #33bb11;
        box-shadow: inset 0px 0px 0px 30px #33bb11;
    }
}

@keyframes fill {
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 30px #33bb11;
        box-shadow: inset 0px 0px 0px 30px #33bb11;
    }
}

@media only screen and (max-width: 768px) {
    .funds-checkmark-text-container {
        display: block;
    }

    .funds-checkmark-container {
        height: auto;
        padding: 0;
        display: block;
        width: 100%;
    }
}


/* Modal için arka plan */
#mapModal_ {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    /* Modal içeriği (Harita ve kapatma butonu) */
    #mapModal_ iframe {
        border: none;
        padding: 20px;
        width: 100vw;
        height: 100vh;
        background-color: white;
        border-radius: 10px;
    }

    /* Modal içinde kapatma butonu */
    #mapModal_ button {
        position: absolute;
        width: max-content;
        height: auto;
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        background-color: #000;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        #mapModal_ button:hover {
            background-color: rgba(0, 0, 0, 0.219);
        }

    /* Modalın ekranda gizli olduğu durumda (başlangıçta) */
    #mapModal_[style*="display: none;"] {
        display: none;
    }


/* Modal Arka Planı */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal İçerik Kutusu */
.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border-radius: 1rem;
    transform: scale(0.7);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

/* Kapat Butonu */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 10px;
}

    .close:hover,
    .close:focus {
        color: black;
        cursor: pointer;
    }

/* Açılış Animasyonu */
.animate-modal {
    animation: modal-appear 0.3s forwards;
}

/* Kapanış Animasyonu */
.modal-fade-out {
    animation: modal-disappear 0.3s forwards;
}

@keyframes modal-appear {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes modal-disappear {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.7);
        opacity: 0;
    }
}


/*menu*/

/* Modal Arka Planı */
.modal-menu {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Menü Modal İçeriği */
.modal-content-menu {
    background-color: #fff;
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    text-align: center;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2rem 0 0 2rem;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

/* Kapat Butonu */
.close-menu {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

    .close-menu:hover {
        color: #333;
    }

/* Açılış ve kapanış animasyonları */
.slide-in-menu {
    animation: slideIn 0.3s forwards;
}

.modal-slide-out-menu {
    animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* Menü Genel Stili */
.menu_ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Menü Kart Stili */
.menu-item {
    width: 80% !important;
    max-width: 250px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* Menü Hover Efekti */
    .menu-item:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
        background-color: #e9ecef;
    }

    /* Menü Yazı Stili */
    .menu-item h2 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: #007bff;
    }

    .menu-item:hover h2 {
        color: #0056b3;
    }

.container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.btn {
    margin: 2rem;
    padding: 10px 20px;
    font-size: 16px;
    background: #000000;
    color: white;
    border-radius: 1rem;
    transition: 0.3s;
    cursor: pointer;
}

    .btn:hover {
        background: #000000;
    }

.input_div {
    margin: 1rem 0;
}

/* QR Kodu Ortalaması ve Boyut Ayarları */
#qrCodeContainer {
    margin: 0 auto;
    position: relative;
    width: 200px;
    height: 200px;
}

    #qrCodeContainer img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
    }

    #qrCodeContainer canvas {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
    }
/* QR Kodun Altındaki Yazı */
#qrAnimate h2 {
    margin-top: .5rem;
    font-size: 1.5rem;
    color: #333;
}

#qrAnimate h4 {
    margin-top: .5rem;
    font-size: 1rem;
    color: #333;
}

p {
    margin-top: 5px;
    color: #666;
    font-size: 1rem;
}

.row_ {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #34495e;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

    input:focus,
    select:focus,
    textarea:focus {
        border-color: #3498db;
        outline: none;
    }

.domain-section {
    border: 2px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.domain-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.price-display {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    color: #27ae60;
}

.logo-upload {
    border: 2px dashed #e0e0e0;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 15px 0;
}

.toggle-content {
    display: none;
    margin-top: 10px;
}

    .toggle-content.active {
        display: block;
    }

button {
    background: #000000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s ease;
}

    button:hover {
        background: #5f5f5f;
        color: #ffffff;
    }

.domain-check-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    margin-left: 10px;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Radio Button Özelleştirme */
.radio-group {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.radio-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 100%
}

    .radio-card:hover {
        border-color: #3498db;
    }

    .radio-card.selected {
        border-color: #3498db;
        background-color: #f8faff;
    }

    .radio-card input[type="radio"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 20px;
    width: 20px;
    border: 2px solid #3498db;
    border-radius: 4px;
    background-color: #fff;
}

.radio-card.selected .checkmark {
    background-color: #3498db;
}

.checkmark:after {
    content: "✓";
    position: absolute;
    display: none;
    color: white;
    font-size: 14px;
    left: 3px;
    top: -1px;
}

.radio-card.selected .checkmark:after {
    display: block;
}

.radio-card label {
    display: block;
    cursor: pointer;
    margin: 0;
    padding-right: 25px;
}

.radio-group input[type="radio"]:checked ~ .checkmark:after {
    display: block;
}

/* Checkbox Özelleştirme */
input[type="checkbox"] {
    position: relative;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    opacity: 0;
}

    input[type="checkbox"] + label {
        position: relative;
        padding-left: 30px;
        cursor: pointer;
    }

        input[type="checkbox"] + label:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 2px solid #3498db;
            border-radius: 4px;
            background: white;
            transition: all 0.3s ease;
        }

    input[type="checkbox"]:checked + label:before {
        background: #3498db;
        border-color: #3498db;
    }

    input[type="checkbox"] + label:after {
        content: "✓";
        position: absolute;
        left: 5px;
        top: 2px;
        color: white;
        font-size: 14px;
        opacity: 0;
        transition: all 0.3s ease;
    }

    input[type="checkbox"]:checked + label:after {
        opacity: 1;
    }

/* Radio Group Düzeni */
.radio-group {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

    /* Hover Efektleri */
    .radio-group label:hover .checkmark,
    input[type="checkbox"] + label:hover:before {
        border-color: #2980b9;
    }

/* Logo Bölümü Düzenlemesi */
.logo-section {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.logo-options {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .logo-options .option-card {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }

.link-box.ariza_ {
    width: 90%;
    height: max-content;
    background-color: #4799d5;
    color: #fff;
}


    .link-box.ariza_:hover {
        background-color: #000;
    }




    .link-box.ariza_ i {
        font-size: 5rem;
        color: #fff;
    }




    .link-box.ariza_ span {
        font-weight: bold;
        font-size: 22px;
        line-height: 1.4;
    }

.ariza_box .ariza_ i {
    display: inline-block;
    transition: transform 0.6s ease-in-out;
}



.ariza_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}





.card__ {
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 28px 20px;
    box-sizing: border-box;
    height: auto;
    object-fit: cover;
    margin: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.blog__read {
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 28px 20px;
    box-sizing: border-box;
    height: auto;
    object-fit: cover;
    margin: 20px;
    display: flex;
    flex-direction: column;
}

.card__image {
    width: 250px;
    max-height: 250px;
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    -o-object-fit: cover;
    object-fit: cover;
}

.blog__image {
    width: 100%;
    max-height: auto;
    border-radius: var(--border-radius-primary);
    box-shadow: 24px 24px 80px rgba(0, 0, 0, 0.1);
    -o-object-fit: cover;
    object-fit: cover;
}


.card__date {
    display: block;
    font-family: var(--font-family-secondary);
    font-size: var(--font-size-caption);
    line-height: var(--line-height-caption);
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 6px;
}


.card__title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    color: var(--color-text);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background-image: linear-gradient(90deg, #b0baff, #c2fffc);
    background-size: 100% 42%;
    background-repeat: no-repeat;
    background-position: 0 85%;
    padding: 0 4px;
    margin-left: 4px;
}

.referans {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.referans-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 1rem;
}

.referans .referans-item h3 {
    font-size: 1.2rem;
    margin: .5rem 1rem;
    width: 100%;
    color: aliceblue;
    border-radius: 1rem;
}

.referans .referans-item i {
    font-size: 1.2rem;
}

.referans .referans-item iframe {
    border-radius: 1rem;
}

.referans .referans-item .primary_ {
    background: #67abcf;
}

.referans .referans-item .primary_2 {
    background: #e59a39;
}

.referans .referans-item .primary_3 {
    background: #d96b8a;
}



.btn-anduwell {
    position: relative; /* Butonun kendisini referans noktası yapar */
    color: #b81b11;
    background: rgb(255 255 255);
    width: 11rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    margin: 0 5px;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1; /* Butonun efektin üstünde görünmesini sağlar */
}

.efc_ {
    position: relative; /* Butonun kendisini referans noktası yapar */
    z-index: 0; /* Butonun efektin üstünde görünmesini sağlar */
}

    .efc_::before {
        content: "";
        position: absolute;
        top: 50%; /* Butonun tam ortasına hizalar */
        left: 50%; /* Butonun tam ortasına hizalar */
        width: 113px;
        height: 13px;
        border-radius: 3rem;
        border: 15px solid rgb(162 82 77);
        transform: translate(-50%, -50%) scale(.8); /* Ortalamayı sağlar */
        animation: pulse 1.5s infinite ease-out;
        opacity: 1;
        z-index: 0; /* Efektin butonun arkasında kalmasını sağlar */
    }

.efc2_ {
    position: relative; /* Butonun kendisini referans noktası yapar */
    z-index: 0; /* Butonun efektin üstünde görünmesini sağlar */
}

    .efc2_::before {
        content: "";
        position: absolute;
        top: 50%; /* Butonun tam ortasına hizalar */
        left: 50%; /* Butonun tam ortasına hizalar */
        width: 113px;
        height: 13px;
        border-radius: 3rem;
        border: 15px solid rgb(162 82 77);
        transform: translate(-50%, -50%) scale(.8); /* Ortalamayı sağlar */
        animation: pulse 1.5s infinite ease-out;
        opacity: 1;
        z-index: 0; /* Efektin butonun arkasında kalmasını sağlar */
    }

.forms_ {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    /* margin: 0 -20px;
     background: rgb(0,0,0);
   background: radial-gradient(circle, #16b0b0 0%, rgb(22 176 176) 19%, rgb(22 176 176 / 45%) 62%, rgba(255, 255, 255, 1) 100%);
*/
}


/*form*/

.form-container {
    background: linear-gradient(135deg, #485361, #848b93);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.back-button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
}

.form-header h2 {
    margin: 0;
    color: white;
    font-size: 18px;
    text-align: center;
    flex-grow: 1;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: background 0.3s, transform 0.2s;
}

    .form-input::placeholder {
        color: #ffffff;
    }

    .form-input:focus {
        border: 1px solid #ccc;
        transform: scale(1.02);
    }

.phone-input {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.phone-prefix {
    padding: 8px;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 10px 0 0 10px;
    color: #ffffff;
    font-size: 14px;
}

.phone-number {
    border-radius: 0 10px 10px 0;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.submit-button {
    width: 100%;
    padding: 10px;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    transition: all ease .3s;
    background: linear-gradient(135deg, #23427a, #155ca7);
}

    .submit-button:hover {
        background: linear-gradient(135deg, #155ca7), #23427a;
        transition: all ease .3s;
    }

/* Modal için genel stiller */
.pdf-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 80%;
    background: #fff;
    z-index: 1000;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

    /* iframe için genel stiller */
    .pdf-modal iframe {
        width: 100%;
        height: 100%;
    }

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* Pagination List */
.pagination {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

    /* Pagination Items */
    .pagination li {
        display: inline;
    }

        /* Active Page */
        .pagination li.active span {
            display: inline-block;
            padding: 10px 15px;
            background-color: #4acdc8;
            color: white;
            border-radius: 15px;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Links */
        .pagination li a {
            display: inline-block;
            padding: 10px 15px;
            text-decoration: none;
            color: #4acdc8;
            background-color: white;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

            /* Hover and Focus States */
            .pagination li a:hover, .pagination li a:focus {
                background-color: #4acdc8;
                color: white;
                border-color: #4acdc8;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

        /* Next/Previous Arrows */
        .pagination li.PagedList-skipToNext a {
            font-weight: bold;
            padding: 10px 15px;
        }

        /* Disabled Links (Optional) */
        .pagination li.disabled span {
            display: inline-block;
            padding: 10px 15px;
            background-color: #e9ecef;
            color: #6c757d;
            border-radius: 5px;
            font-weight: bold;
        }

.modal- {
    display: none; /* Modal başlangıçta gizlenir */
    position: fixed;
    z-index: 1000; /* Üstte olmasını sağlar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Arkadaki karartma efekti */
}

.modal-content- {
    position: relative;
    margin: auto;
    width: 80%;
    height: 80%;
    max-width: 800px;
    max-height: 500px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

#video-player {
    width: 100%; /* Modal genişliğine uyum sağlar */
    height: auto; /* Videonun oranlarını korur */
}

.close-btn- {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1100; /* Videodan daha yukarıda olması için yüksek bir değer */
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
}




/* Modal ve tasarım */
#storyModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    #storyModal.show {
        display: flex;
        opacity: 1;
        transform: scale(1);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    #storyModal.hide {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

.story-container {
    position: relative;
    width: 100%;
    /*            max-width: 600px;
*/ background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bars {
    position: absolute;
    top: 35px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.progress-bar {
    flex-grow: 1;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    overflow: hidden;
}

    .progress-bar .progress {
        height: 100%;
        width: 0;
        background-color: #fff;
        border-radius: 2px;
        transition: width 0s linear;
    }


.story-content {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    height: 100vh;
}

.story-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

    .story-item.active {
        opacity: 1;
        transform: translateX(0%);
        z-index: 1;
    }

    .story-item.inactive {
        opacity: 0;
        transform: translateX(-100%);
        z-index: 0;
    }

    .story-item img,
    .story-item video {
        max-width: 100%;
        max-height: 100vh;
        object-fit: contain;
    }

.prev,
.next,
.close-btn {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
}

.prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 100vh;
    width: 40%;
}

    .prev:hover {
        background: #5f5f5f33;
        color: #ffffff;
    }

.next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 100vh;
    width: 40%;
}

    .next:hover {
        background: #5f5f5f33;
        color: #ffffff;
    }


.close-btn {
    top: 55px;
    right: 15px;
    font-size: 40px;
    font-weight: bold;
    z-index: 21;
    width: max-content;
}

    .close-btn:hover {
        background: #5f5f5f33;
        color: #ffffff;
    }
/* Sol Üst Profil Alanı */
.story-header {
    position: absolute;
    top: 55px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.profile-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.profile_info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile_ {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    object-fit: cover;
}

.profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.music-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .music-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }


    .music-btn i {
        font-size: 22px;
        color: white;
        transition: transform 0.3s ease, opacity 0.3s ease;
        position: absolute;
    }

    .music-btn .fa-volume-mute {
        transform: scale(0);
        opacity: 0;
    }

.music-paused .fa-volume-mute {
    transform: scale(1);
    opacity: 1;
}

.music-paused .fa-volume-up {
    transform: scale(0);
    opacity: 0;
}

/* Modal için arka plan */
#mapModalGenel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    /* Modal içeriği (Harita ve kapatma butonu) */
    #mapModalGenel iframe {
        border: none;
        padding: 20px;
        width: 100vw;
        height: 100vh;
        background-color: white;
        border-radius: 10px;
    }

    /* Modal içinde kapatma butonu */
    #mapModalGenel button {
        position: absolute;
        width: max-content;
        height: auto;
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        background-color: #000;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
    }

        #mapModalGenel button:hover {
            background-color: #ccc;
        }

    /* Modalın ekranda gizli olduğu durumda (başlangıçta) */
    #mapModalGenel[style*="display: none;"] {
        display: none;
    }
@media (max-width : 479px) {

    body {
        padding: 0;
    }

    .card {
        padding: 5rem 10px 20px 10px;
        width: 100vw;
    }

    .card-head {
        margin: 0 0 -75px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

        .card-head img {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }

    .social-links {
        margin-bottom: 0;
    }

    .head_ .video_bg video {
width: 100%;
        max-width: 600px;
        height: 300px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-bottom: -6rem;
    }

    .card__date {
        margin-bottom: 8px;
    }

    .card__content {
        width: 55%;
    }

    .card__ {
        flex-direction: row;
        align-items: center;
        margin: 20px;
        padding: 12px;
    }

    .card__image {
        width: 45%;
        margin-bottom: 0;
    }

    .link-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: #f7f7f7;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: 100px;
        height: 130px;
        margin: 10px;
    }

        /*yeni eklendi*/
        .link-box i {
            font-size: 3.3rem;
        }

        .link-box:hover {
            background-color: #e0e0e0;
        }

        .link-box img {
            width: 70px;
            height: 70px;
            object-fit: cover;
        }

        .link-box span {
            font-weight: 600;
            font-size: 12px;
        }

        .link-box p {
            font-size: 14px;
            color: #666;
        }

    .link-box_hizmet {
        width: 300px;
        height: 230px;
    }

        .link-box_hizmet:hover {
            background-color: #e0e0e0;
        }



        .link-box_hizmet span {
            font-weight: bold;
            font-size: 16px;
        }

        .link-box_hizmet p {
            font-size: 14px;
            color: #666;
        }

    .profile {
        margin-bottom: -5rem;
    }

    .profile-pic img {
        width: 125px;
        height: 125px;
    }

    .profile-pic::before {
        width: 90px;
        height: 90px;
    }

    .video_bg {
        margin: -20px 0 -15px 0;
        width: 100%;
        border-radius: 0;
    }

    .card-footer {
        margin: 0;
        margin-bottom: 5.7rem;
        width: 100vw;
    }

    .row_ {
        position: fixed;
        background-color: #b81b11;
        bottom: 0;
        left: 0;
        right: 0;
        justify-content: space-evenly;
        z-index: 1000;
        margin: 1rem;
        border-radius: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.342);
    }

        .row_ .social-links .title_ {
            display: none;
        }

        .row_ .btn_ {
background-color: transparent;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        }

            .row_ .btn_ i {
                color: #fff;
            }

    .link-box.ariza_ i {
        font-size: 4rem;
        color: #fff;
    }

    .link-box.ariza_ span {
        font-weight: bold;
        font-size: 18px;
        line-height: 1.4;
    }

    .form-container {
        padding: 25px
    }

    .btn-anduwell {
        width: 10rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 3rem;
        margin: 0 5px;
        padding: .5rem 1rem;
        font-size: .8rem;
        font-weight: bold;
    }

    .forms_ {
        gap: .5rem;
        padding: 1rem .1rem;
        margin: 0;
    }

    .form-container {
        border-radius: 20px;
        display: flex;
        padding: 20px;
        width: 80%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-content: center;
        margin: auto;
    }

    .form-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    /* Modal içinde kapatma butonu */
    #mapModal_ button {
        top: 50px;
        right: 30px;
        padding: 5px 10px;
        background-color: #ff5c5c;
        border-radius: 5px;
        cursor: pointer;
        font-size: 10px;
    }

    .card-footer .copyright-info small {
        font-size: 9px
    }

    .card-footer .copyright-info .entek_ {
        width: 30px !important;
    }

    .card-footer .copyright-info .kalmuk_ {
        width: 90px !important;
    }

    .pagination {
        gap: 5px;
    }

        .pagination li a, .pagination li.active span {
            padding: 8px 12px;
            font-size: 0.9rem;
        }
}

@media (max-width : 479px) {

    .form-container {
        padding: 10px
    }
}
