.hint {
    position: relative;
    display: inline-block;
    padding: 1px 6px 1px 6px;
}

.hint .hinttext {
    visibility: hidden;
    width: max-content;
    background-color: #c5c4c4;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 1px 5px 1px 5px;
    position: absolute;
    z-index: 1;
    bottom: 4%;

    margin-left: 18px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: smaller;


}

.hint .hinttext::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 0%;
    margin-left: -12px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #f00 transparent transparent;
}

.hint:hover .hinttext {
    visibility: visible;
    opacity: 1;
}

.inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    background-color: black;
    display: inline-block;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: red;
}

.custom-file-upload,.custom-attach-file-upload {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    transition: background-color 0.2s ease-in-out;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    background: azure;
    width: 300px;
    height: 200px;
    margin: 5px;
}

.error-border {
    background-color: red;
}

.custom-file-upload ul, .custom-attach-file-upload ul
{
    width: 100%;  /* Genişlik olarak divi tam kapla */
    height: 100%; /* Yükseklik olarak divi tam kapla */
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.custom-file-upload ul li,.custom-attach-file-upload ul li
{
    border: 1px;
    text-align: center;
}
.custom-file-upload ul li img,.custom-attach-file-upload ul li img
{
    width: 125px;
}
.custom-file-upload ul li label,.custom-attach-file-upload ul li label
{
    width: 125px;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

#file{
    color: black;
    visibility: hidden;
}

#attachfile{
    color: black;
    visibility: hidden;
}

.custom-file-upload:hover,.custom-attach-file-upload:hover {
    background-color: #cfe2ff;
    cursor: pointer;
}

h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

h1 span {
    display: block;
    font-size: 0.5em;
    line-height: 1.3;
}
h1 em {
    font-style: normal;
    font-weight: 600;
}

.two h1 {
    text-transform: capitalize;
}
.two h1:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    content: "";
   // background-color: #c50000;
}

.two h1 span {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 3em;
    padding-left: 0.25em;
    color: rgba(0, 0, 0, 0.6);
    padding-bottom: 10px;
}
.alt-two h1 {
    text-align:center;
}
.alt-two h1:before {
    left:50%; margin-left:-30px;
}

.eight h1 {
    text-align:center;
    font-size:26px; letter-spacing:1px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
    font-size: medium;
}

.eight h1:after,.eight h1:before {
    content: " ";
    display: block;
    border-bottom: 0px solid #ccc;
   
}






.wrapper {
    display: table;
    height: 100%; width: 100%;
}

.stage {
    display: table-cell;
    vertical-align: middle;
}

.tabled, .middled {
    text-align: center;
    margin: 0 auto;
}

.thin { font-weight: 300; }
.thick { font-weight: 500; }

a {
   
    font-size: 20px;
    color: #6c757d;
    text-decoration: none;
    position: relative;
    display: block;
}

p {
    font-weight: 250;
    font-size: 100%;
    margin: 1px;
}

[class^="link-"] {
    display: inline-block;
    margin: 2em
}



/* linkthree */
.link-3 a:before {
    content: '';
    border-bottom: solid 1px #6c757d;
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
}

.link-3 a:hover:before {
    -webkit-transform: scaleY(4);
    -moz-transform: scaleY(4);
    -ms-transform: scaleY(4);
    -o-transform: scaleY(4);
    transform: scaleY(4);
}

.link-3 a:before {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}



@-webkit-keyframes heartbeat {
    0% { -webkit-transform: scale(1); }
    10% { -webkit-transform: scale(1.1); }
    20% { -webkit-transform: scale(1); }
    30% { -webkit-transform: scale(1.1); }
    40% { -webkit-transform: scale(1); }
}

@-webkit-keyframes heartbeat-x {
    0% { -webkit-transform: scaleX(0); }
    10% { -webkit-transform: scaleX(1); }
    20% { -webkit-transform: scaleX(0); }
    30% { -webkit-transform: scaleX(1); }
    40% { -webkit-transform: scaleX(0); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

@keyframes heartbeat-x {
    0% { transform: scaleX(0); }
    10% { transform: scaleX(1); }
    20% { transform: scaleX(0); }
    30% { transform: scaleX(1); }
    40% { transform: scaleX(0); }
}

.validation-summary-errors ul
{
    list-style-type: none;
    color: red;
    font-weight: 500;
    width: 100%;
    text-align: -webkit-center;
    margin-bottom: 25px;
}



.btn-validate {
    font-family: "CircularStd-Bold", sans-serif;
    font-weight: normal;
    background-color: transparent;
    border: solid 1px lightsteelblue;
    color: #1b6ec2;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    padding: 12px 28px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='17' fill='%23000000'%3E %3Cpath fill-rule='evenodd' d='M24.736 10.246v6.351l16.4-8.347-16.4-8.099v6.085H.541v4.01h24.195z'/%3E %3C/svg%3E");
     background-position: right 32px center;
    background-repeat: no-repeat;
    background-size: 31px 12px;
    padding-right: 80px;
    margin-top: 10px;
}

.btn-back {
    font-family: "CircularStd-Bold", sans-serif;
    font-weight: normal;
    background-color: transparent;
    border: solid 1px lightsteelblue;
    color: #1b6ec2;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    padding: 12px 28px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='17' fill='%23000000'%3E %3Cpath fill-rule='evenodd' d='M17.264 6.246v-6.351L0.864 8.346l16.4 8.099v-6.085H41.459v-4.01H17.264z'/%3E %3C/svg%3E");
    background-position: left 32px center; /* Arka plan resmini sola taşıdık */
    background-repeat: no-repeat;
    background-size: 31px 12px;
    padding-left: 80px; /* Metni sağa taşımak için padding-left'i arttırdık */
    margin-top: 10px;
}


.btn-validate:hover, .btn-validate:focus {
    background-color: #3b4357;
    border-color: #3b4357;
    color: #ffffff;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(-4px);
    box-shadow: 4px 4px 0px rgba(3,4,3,.2);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='17' fill='%23ffffff'%3E %3Cpath fill-rule='evenodd' d='M24.736 10.246v6.351l16.4-8.347-16.4-8.099v6.085H.541v4.01h24.195z'/%3E %3C/svg%3E");
}

.btn-back:hover, .btn-back:focus {
    background-color: #3b4357;
    border-color: #3b4357;
    color: #ffffff;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(-4px);
    box-shadow: 4px 4px 0px rgba(3,4,3,.2);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='17' fill='%23ffffff'%3E %3Cpath fill-rule='evenodd' d='M17.264 6.246v-6.351L0.864 8.346l16.4 8.099v-6.085H41.459v-4.01H17.264z'/%3E %3C/svg%3E");
}

.btn:active {
    transform: translateY(0px);
    box-shadow: 0px 0px 0px rgba(3,4,3,.15);
}


.btn-validate:hover::after {
    opacity: 1;
}


/* Link CSS */

.text-block {
    color: #000000;
    font-family: "MaisonNeue-Book",Helvetica,Arial;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    width: calc(100% - (20px * 2));
    padding-bottom: 65px;
}

.text-block a:not(.btn) {
    color: #000000;
    font-family: "MaisonNeue-Bold",Helvetica,Arial;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 16px;
}

.text-block a:not(.btn):hover, .text-block a:not(.btn):focus {
// color: #fff;
}

.linkStyleOne a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    display: inline-block;
    position: relative;
    padding: 0 .15em;
    transitionall: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}
.linkStyleOne a:before {
    content: "";
    z-index: -1;
    width: 100%;
    height: 0%;
    background: rgba(0, 0, 0, 1);
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.linkStyleOne a:hover {
    border-bottom: 2px solid #ff0046;
    transform: translateY(-1px);
}

.linkStyleOne a:active {
    transform: translateY(0px);
}