@import url(https://fonts.googleapis.com/css?family=Sanchez:400italic,400);



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Sanchez', serif;
    /* font-size: 12px; */
    /* background: #040E27; */
    /* background: linear-gradient(#040E27, white); */
    background: linear-gradient(-45deg, #051640, #040E27, #040E27, #051640) fixed;
    background-size: 200% 200%;
    color: #fff;
    animation: gradient 10s ease infinite;

}


@-webkit-keyframes AnimationName {
    0% {
        background-position: 20% 0%
    }

    50% {
        background-position: 81% 100%
    }

    100% {
        background-position: 20% 0%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 20% 0%
    }

    50% {
        background-position: 81% 100%
    }

    100% {
        background-position: 20% 0%
    }
}

@-o-keyframes AnimationName {
    0% {
        background-position: 20% 0%
    }

    50% {
        background-position: 81% 100%
    }

    100% {
        background-position: 20% 0%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 20% 0%
    }

    50% {
        background-position: 81% 100%
    }

    100% {
        background-position: 20% 0%
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1 {
    font-size: 36px;
    margin: 30px;
    text-align: center;
    text-transform: uppercase;

}

section {
    padding: 100px 0px;
}


/* header start */

header {
    background-color: #f0f0f000;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
}

#blog {
    color: #fff;
    font-weight: 500;
    transition: 0.7s ease;
}

#blog:hover {
    transform: scale(1.1);
}

/* .logo {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}
.logo:hover {
    color: #FFDD00;
} */


.button {
    margin: 0;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
}

/* button styling */
.button {
    --border-right: 6px;
    --text-stroke-color: rgba(255, 255, 255, 0.6);
    --animation-color: #FFDD00;
    --fs-size: 2em;
    letter-spacing: 3px;
    text-decoration: none;
    font-size: var(--fs-size);
    font-family: "Arial";
    position: relative;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-stroke-color);
}


/* this is the text, when you hover on button */
.hover-text {
    position: absolute;
    box-sizing: border-box;
    content: attr(data-text);
    color: var(--animation-color);
    width: 0%;
    inset: 0;
    border-right: var(--border-right) solid var(--animation-color);
    overflow: hidden;
    transition: 0.5s;
    -webkit-text-stroke: 1px var(--animation-color);
}

/* hover */
.button:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color))
}

.navigation a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding: 15px;
    transition: all 0.3s ease-in;
}

.navigation a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #000000;
    opacity: 0;
    transition: 300ms ease-in-out;
    transform: scale(0);
}

.navigation a:hover::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 3px;
    background: #fbd214;
    opacity: 1;
    transition: 400ms ease-in-out;
    transform: scale(1);
    color: #fbd214;
}



.header-active {
    background-color: #032144;
    transition: 0.7s ease-in;

}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 60px; */
}

li {
    list-style: none;
}

.nav-link {
    transition: 0.3s ease-out;
}

.nav-link:hover {
    color: #FFDD00;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: white;
}



.search-container {
    position: relative;
    --size-button: 40px;
    margin: 0 20px;
}

.search-input {
    padding-left: var(--size-button);
    height: var(--size-button);
    font-size: 15px;
    border: none;
    color: #fff;
    outline: none;
    width: var(--size-button);
    transition: all ease 0.3s;
    background-color: #022144;
    box-shadow: 1.5px 1.5px 3px #0e0e0e, -1.5px -1.5px 3px rgb(95 94 94 / 25%), inset 0px 0px 0px #0e0e0e, inset 0px -0px 0px #5f5e5e;
    border-radius: 50px;
    cursor: pointer;

}

.search-input:focus,
.search-input:not(:invalid) {
    width: 200px;
    cursor: text;
    box-shadow: 0px 0px 0px #0e0e0e, 0px 0px 0px rgb(95 94 94 / 25%), inset 1.5px 1.5px 3px #0e0e0e, inset -1.5px -1.5px 3px #5f5e5e;
}


.search-input:focus+.icon,
.search-input:not(:invalid)+.icon {
    pointer-events: all;
    cursor: pointer;
}

.search-container .icon {
    position: absolute;
    width: var(--size-button);
    height: var(--size-button);
    top: 0;
    left: 0;
    padding: 8px;
    pointer-events: none;
}

.search-container .icon svg {
    width: 100%;
    height: 100%;
}

/* header finish */

.container {
    max-width: 768px;
    margin: 2em auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quotes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: -webkit-fill-available;
}

blockquote {
    margin-bottom: 25px;
}

.quote {
    position: relative;
    font-size: 20px;
    line-height: 1.7em;
    word-break: break-word;

    border: 3px #032144a5 solid;
    padding: 10px 20px;
    border-radius: 10px;

}

.quote:hover {
    background: #032144;
    transform: scale(1.01);
    transition: 0.7s ease;
    cursor: pointer;
}

.quote footer {
    font-size: 0.6em;
    font-weight: 700;
    color: #d3d3cf;
    text-align: right;
}

.quote footer:before {
    content: '\2015';
}

/* .quote:after {
    content: '🤖';
    position: absolute;
    top: 0.28em;
    right: 0;
    font-size: 1em; 
    font-style: italic; 
     color: #e7e6e4; 
     z-index: -1; }
 */

.avatar {
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    /* border:4px #fec110 solid; */
}

.deneme {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flex-item:nth-of-type(1) {
    flex-grow: 1;
}

.flex-item:nth-of-type(2) {
    flex-grow: 2;
    display: block;
    align-self: center;
}

.flex-item:nth-of-type(3) {
    flex-grow: 1;
    text-align: end;
}

/* loader */

.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    opacity: 0;

}


.loader.show {
    opacity: 1;
}

.loader div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #f4f4f4;
    animation: loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loader div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}

.loader div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}

.loader div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

.fullScreen {
    position: fixed;
    right: 0;
    top: 100px;
    border-radius: 20px 0px 0px 20px;
    background-color: #022144;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.fixed {
    position: fixed;
    left: 0;
    top: 300px;
    border-radius: 0px 20px 20px 0px;
    background-color: #022144;
    z-index: 999;
}

.fixed .social-icons {
    display: flex;
    flex-direction: column;
}

.footer {
    /* background-color: #000016; */
    background-color: #032144;
    color: #fff;
    /* padding: 2em 200px; */
    padding: 10px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .copy-right {
    display: flex;
    justify-content: space-between;
    margin: 10px 0px;
}


.footer-title {
    font-size: 1em;
    font-weight: 500;
    align-self: center;
}

.footer-title a {
    color: #FFDD00;
    text-decoration: none;
    transition: 0.7s ease-out;

}

.footer-title a:hover {
    color: #FFDD00;
    text-decoration: none;
    transform: scale(1.9);
    transition: 0.7s ease-out;
    text-shadow: 0 0 5px #FFDD00,
        0 0 25px #FFDD00,
        0 0 50px #FFDD00,
        0 0 200px #FFDD00;
}

.footer .social-icons a {
    font-size: 1em;
    padding: 0 12px 0 0;
}

.social-icons a {
    aspect-ratio: 1;
    color: #fff;
    font-size: 1.7em;
    padding: 5px;
    border-radius: 50%;
}

.social-icons a i {
    background: #022144;
    border-radius: 50%;
    padding: 15px;
    aspect-ratio: 1;
    transition: 0.7s ease;
}

.social-icons a i:hover {
    transform: scale(0.9);
    transition: 0.7s ease;
    background-color: #fec110;
    box-shadow: 0 0 5px #FFDD00,
        0 0 25px #FFDD00,
        0 0 50px #FFDD00,
        0 0 200px #FFDD00;
}

.card-social-icons a {
    aspect-ratio: 1;
    color: #fff;
    font-size: 1.1em;
    padding: 2px;
    border-radius: 50%;
}

.card-social-icons a i {
    background: #022144;
    border-radius: 50%;
    padding: 15px;
    aspect-ratio: 1;
    transition: 0.7s ease;
}

.card-social-icons a i:hover {
    transform: scale(0.9);
    transition: 0.7s ease;
    background-color: #fec110;
    box-shadow: 0 0 5px #FFDD00,
        0 0 25px #FFDD00,
        0 0 50px #FFDD00,
        0 0 200px #FFDD00;
}

@keyframes loader {
    0% {
        top: 8px;
        height: 64px;
    }

    50%,
    100% {
        top: 24px;
        height: 32px;
    }
}

/* cities page */
/* cities page */
/* cities page */

.cities {
    width: 100%;
    margin: 10px;
    padding: 20px;
}

.cities select {
    width: 100%;
    min-height: 50px;
    background: #f0ffff24;
    border: 3px #032144 solid;
    border-radius: 20px;
    color: white;
    font-family: 'Avenir Book6';
    font-size: 17px;
    padding: 10px 30px;
    transition: 0.7s ease;
}

.cities select:hover {
    border: 3px #ededed solid;
    transform: scale(1.01);
    transition: 0.7s ease;
    cursor: pointer;

}


.citySelectBtn {
    width: 100%;
    min-height: 50px;
    margin-top: 50px;
    background: #fbd11400;
    border: 3px #FFDD00 solid;
    border-radius: 20px;
    color: #FFDD00;
    font-family: 'Sanchez', serif;
    font-size: 20px;
    font-weight: bold;
    transition: 0.7s ease;
}

.citySelectBtn:hover {
    transform: scale(1.01);
    transition: 0.7s ease;
    background: #FFDD00;
    color: white;
    box-shadow: 0 0 5px #FFDD00,
        0 0 25px #FFDD00,
        0 0 50px #FFDD00,
        0 0 200px #FFDD00;
    cursor: pointer;

}



/* cities page */
/* cities page */
/* cities page */


/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #032144;
    margin: auto;
    padding: 20px;
    border: 1px solid #022144;
    border-radius: 25px;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    background: #fec110;
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    float: right;
    font-size: 23px;
    font-weight: bold;
    border-radius: 10px;
}

.close:hover,
.close:focus {
    background: #ffffff;
    color: #fec110;
    border-radius: 10px;
    border: 2px #fec110 solid;
    text-decoration: none;
    cursor: pointer;
}

.close-icon {
    font-size: 35px;
}

.modal-header {
    padding: 2px 16px;
    color: white;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    width: 100%;
    padding: 2px 16px;
    color: #040E27;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.modal-footer .modal-creator {
    align-self: center;
}

.modal-footer .modal-creator a {
    color: #fec110;
    text-decoration: none;
    cursor: pointer;
}

#list-title-id {
    font-size: 36px;
    margin: 30px;
    text-align: center;
    text-transform: uppercase;
}

#stb {
    font-size: 36px;
    margin: 30px;
    text-align: center;
    text-transform: uppercase;
}













/*Magic card*/
.card {
    min-height: 254px;
    background: #f5f5f5;
    overflow: visible;
    box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 25px
}

.card-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    padding: 2rem 2rem;
    color: #051640;
}

.card-img {
    --size: 150px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    transform: translateY(-50%);
    background: #42caff;
    background: linear-gradient(to bottom, #42caff 0%, #e81aff 100%);
    position: relative;
    transition: all .3s ease-in-out;
}

.card-img::before {
    content: "";
    border-radius: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    border: 1rem solid #022144;
}

.card-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/*Text*/
.text-title {
    text-transform: uppercase;
    font-size: 0.75em;
    color: #42caff;
    letter-spacing: 0.05rem;
}

.text-body {
    font-size: 1.2em;
    text-align: center;
    color: #051640;
    font-weight: 400;
    font-style: italic;
}

.card-info .social-icons {
    align-self: center;
}

.card-info .social-icons a i {
    background: #02214400;
    border: 2px #FFDD00 solid;
    color: #fbd214;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form div {
    min-width: 50%;
    margin: 10px;
}

.form-div {
    display: flex;
    flex-direction: row;
}

form h2 {
    color: #051640;
    margin: 10px;
}

.input {
    border: none;
    border-radius: 15px;
    padding: 15px;
    background-color: #f3f3f3;
    box-shadow: 6px 6px 12px #ffffff,
        -6px -6px 12px #c5c5c5;
    font-size: medium;
    font-weight: bold;
    min-width: 48%;

}

.input:focus {
    outline-color: #FFDD00;
    place-content: "Enter your message!";
}

.input-custom {
    width: 100%;
}

textarea {
    min-height: 150px;
}

.input-submit {
    background: #ffffff;
    color: #FFDD00;
    border: 3px #FFDD00 solid;
    transition: 0.7s ease;
}

.input-submit:hover {
    border: 3px #FFDD00 solid;
    transform: scale(1.01);
    transition: 0.7s ease;
    background: #FFDD00;
    color: white;
    /* box-shadow: 0 0 5px #FFDD00,
        0 0 10px #FFDD00,
        0 0 20px #FFDD00,
        0 0 30px #FFDD00; */
    cursor: pointer;
}

.name-inputs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



/*Hover*/
.card:hover .card-img {
    --size: 110px;
    width: var(--size);
    height: var(--size);
}

.info-titles-item {
    display: flex;
    flex-direction: column;
}


.info-titles {
    position: relative;
    z-index: 1;
    padding: 1px 10px 0px 10px;
    font-size: large;

}

.info-titles::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #FFDD00;
    opacity: 1;
    margin-bottom: 2px;
    z-index: -1;
}

.info-titles:hover::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFDD00;
    opacity: 1;
}

.card-info-container {
    display: flex;
    flex-direction: row;
    width: -webkit-fill-available;
}








@media (max-width:1023px) {
    header {
        background: #022144;
        padding: 12px 20px;
    }

    .navigation a {
        padding-left: 10px;
    }

    .title {
        font-size: 1.8em;
    }

    section {
        padding: 80px 20px;
    }

    .main-content h2 {
        font-size: 1em;
    }

    .main-content h3 {
        font-size: 1.6em;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: #FFDD00;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: #FFDD00;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #022144;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .name-inputs {
        display: grid;
        justify-content: stretch;
        min-width: 90%;
    }

    .name-inputs input {
        margin-top: 20px;
    }

    .form-div {
        min-width: 90%;
    }

    .card-info .social-icons {
        display: flex;
    }

    .card-info .social-icons a i {
        background: #051640;
        border: 0px #040e27 solid;
        color: #ffffff;
        padding: 9px;
        /* font-size: 20px; */
    }

    .card-info-container {
        display: flex;
        flex-direction: column;
        width: -webkit-fill-available;
    }

    .card-info-container .card-info {
        width: 100%;
    }



}

@media (max-width:865px) {
    .fixed {
        display: none;
    }

    .footer .copy-right {
        display: flex;
        justify-content: space-between;
        margin: 10px 0px;
        flex-direction: column-reverse;
    }

    .copy-right .social-icons {
        display: flex;
        align-self: center;
    }

    .copy-right .social-icons a i {
        border: 2px #fff solid;
        padding: 10px;
    }

    .footer-title {
        text-align: center;
    }

    .hover-text {
        display: none;
    }
}

@media (max-width:641px) {
    body {
        font-size: 12px;
    }

    .main-content h2 {
        font-size: 0.8em;
    }

    .main-content h3 {
        font-size: 1.4em;
    }

    #blog {
        display: none;
    }

    .deneme {
        flex-direction: column;
    }

    .flex-item:nth-of-type(1) {
        flex-grow: 1;
        align-self: center;
    }
}

@media (max-width:300px) {
    body {
        font-size: 10px;

    }
}