* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

body {
    height: 4000px;
    width: 100%;
    margin: 0;
    background-color: #1a1a20;
    float: left;
    font-family: 'Montserrat', sans-serif;
}


nav {
    display: flex;
    justify-content: space-between;
    padding: 0 15%;
    height: 70px;
    width: 100%;
    line-height: 75px;
    position: fixed;
    top: 0;
    background: transparent;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    z-index: 1;
}

nav .navbar-brand {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: .5px;
}

nav .nav-list {
    display: flex;
    z-index: 0;
    transition: background-color 1s ease-in-out;
}

nav .nav-list .nav-item {
    cursor: pointer;
    height: 100%;
    transition: .4s;
}

nav .nav-list .nav-item:hover {
    background: #b69955;
}

nav .nav-list .nav-link {
    color: #f1f1f1;
    font-size: 18px;
    font-weight: 500;
    padding: 24px 50px;
}

@media (max-width: 935px) {

    nav {
        padding: 0 2rem;
    }

    nav .nav-list .nav-item {
        padding: 0 0px;
    }

    nav .nav-list .nav-link {
        padding: 24px 20px;
    }

}

@media (max-width: 675px) {

    nav .nav-list {
        display: grid;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.3);
        width: 100%;
        top: 0;
        left: 0;
        transform: translateY(23%) translateX(100%);
        z-index: -1;
        transition: .6s;
    }

    nav .nav-list .nav-item {
        padding-left: 35px;
        display: block !important;
    }

    nav .navbar-toggler {
        display: grid !important;
    }

    nav .nav-list .nav-link {
        padding: 22px 0px !important;
        padding-right: 437px !important;
    }

}

nav .navbar-toggler {
    display: none;
    height: min-content;
    margin: 18px -10px 0 0;
    cursor: pointer;
}

nav .navbar-toggler .bar {
    width: 40px;
    height: 5px;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 10%;
    transition: .4s;
}

input {
    display: none;
}

/* input:checked ~ nav .nav-list .nav-item {
    display: block !important;
} */

input:checked ~ nav .nav-list {
    transform: translateY(23%);
}

input:checked ~ nav .navbar-toggler {
    margin-top: 35px;
}

input:checked ~ nav .navbar-toggler .bar:nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
}

input:checked ~ nav .navbar-toggler .bar:nth-child(2) {
    display: none;
}

input:checked ~ nav .navbar-toggler .bar:nth-child(3) {
    transform: rotate(-45deg);
}



img {
    width: 100%;
}

nav .contents {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    height: 55%;
}

h1 {
    margin: 50px;
    color: white;
    font-size: 50px;
    text-align: center;

    border: 1px solid blue;
    padding: 10px 50px;
    box-shadow: 5px 10px darkblue;
}

h2 {
    color: white;
    font-size: 30px;
}

@media (max-width: 788px) {
    h2 {
        font-size: 23px;
    }
}

@media (max-width: 605px) {
    h2 {
        width: 370px;
        text-align: center;
    }
}

nav .contents ul {
    list-style: none;
}

a, a:visited{
    color: white;
    text-decoration:none;
}

nav .contents li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    color: white;
    float: left;
}

nav .contents li:hover {
    color: yellow;
}

.introduction-container {
    background-image: url("assets/images/background.jpg");
    background-size: cover;
    height: 800px;
    width: 100%;
    position: relative;
    top: 0;
    z-index: 0;

    display: flex;

    justify-content: center;
}

.intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 250px;

    text-align: center;

    height: 444px;
    width: 700px;

    font-family: 'Montserrat', sans-serif;
    font-size: 40px;

    color: white;

    /* background-color: rgba(0, 0, 0, 0.1); */
}

section #intro-title {
    margin-top: 112px;
    font-size: 50px;
}

section #intro-desc {
    font-size: 27px;
    margin-top: 68px;
}

section .contact-icons {
    display: flex;

    justify-content: space-evenly;
    width: 364px;
    height: 161px;
}

.small-icon {
    font-size: 50px;
    transition: transform 0.5s;
}

.small-icon:hover {
    transform: scale(1.2);
}

.resume {
    width: 167px;
    height: 43px;
    margin-top: 40px;
    border-radius: 12px;
    border: 2px solid #1d40cc;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1d40cc;
}

.resume:hover {
    background: #1635b0;
    cursor: pointer;
    border-color: #1635b0;
}

.resume:active {
    background: #0a2284;
    cursor: pointer;
    border-color: #1635b0;
}

@media (max-width: 788px) {
    section #intro-title {
        font-size: 35px;
    }
    section #intro-desc {
        font-size: 22px;
    }
}

@media (max-width: 515px) {
    section #intro-title {
        font-size: 28px;
        width: 350px;
    }
    section #intro-desc {
        margin-top: 50px;
        font-size: 17px;
        width: 350px;
    }
}

.container {
    background: #252532;
}

.about-container {
    padding-top: 100px;
    width: 100%;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-section {
    width: 75%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 50px;

}

#about-text {
    color: white;
    font-size: 20px;
    width: 550px;
    font-family: sans-serif;
    margin: 30px;
}

@media (max-width: 945px) {
    #about-text {
        font-size: 17px;
    }
}

@media (max-width: 845px) {
    .about-section{
        flex-direction: column-reverse;
        height: auto;
    }
    #my-picture {
        margin-top: 100px;
        margin-bottom: 30px;
        height: 300px !important;
        width: 300px !important;
    }
    #about-text {
        width: 80%;
    }
}

@media (max-width: 625px) {
    #about-text {
        font-size: 15px;
    }

    #my-picture {
        height: 250px !important;
        width: 250px !important;
    }
    h1 {
        font-size: 35px;

        width: 300px;
    }
}

#my-picture {
    height: 250px;
    width: 250px;
    aspect-ratio: 1/1;
    background-image: url('assets/images/akif-new.jpg');
    background-size: cover;
    border-radius: 220px;
    margin: 30px;
}
#my-picture:hover {
    transition: transform 30s;
    transform: rotate(360deg);
}
/*.spin:active {*/
/*    transition: transform 2.5s;*/
/*    transform: rotate(360deg);*/
/*}*/
header {
    color: white;
    font-family: sans-serif;
    font-size: 50px;
}

.experience-container {
    width: 885px;
    border-radius: 44px;
    margin-top: 76px;
    height: 993px;
}

.langs-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}


#experiences {
    padding-top: 295px;
    height: 2014px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lang-container-short {
    display: flex;
    align-items: center;
    width: 210px;
    flex-direction: column;
    background: #37374b;
    border-radius: 50px;
    margin-bottom: 147px;
}

.lang-container {
    display: flex;
    align-items: center;
    width: 210px;
    flex-direction: column;
    background: #37374b;
    border-radius: 50px;
    margin-bottom: 29px;
}

.experience-container header {
    margin: 31px 0;
    width: 100%;
    text-align: center;
}

.experience-container header h2 {
    font-size: 25px;
    color: yellow;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 186px;
    border-radius: 36px;
    margin: 52px 0;
    transition: transform 0.2s;
}

.small-icon {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 30px;
    width: 120px;
    border-radius: 36px;
    margin: 52px 0;
    transition: transform 0.2s;
}

.icon:hover {
    transform: scale(1.2);
}

.font {
    font-size: 138px;
}
.small-font {
    font-size: 80px;
}

@media (max-width: 908px) {
    .experience-container {
        width: 350px;
        border-radius: 44px;
        margin-top: 76px;
        height: 993px;

    }

    .lang-container, .lang-container-short {
        background: none;
        border: none;
    }

    .experience-container .lang-container {
        border-radius: 10px;
    }

    .experience-container header h2 {
        width: 100%;
    }
}

@media (max-width: 910px) {
    .icon{
        height: 130px;
        width: 120px;
    }

    .font {
        font-size: 100px;
    }

    .lang-section {
        width: 550px;
    }
}

@media (max-width: 605px) {
    .icon {
        height: 115px;
        width: 100px;
        width: 0 50px;
    }
    .font {
        font-size: 80px;
    }

    .lang-section {
        width: 340px;
    }
}


* {box-sizing:border-box}

    /* Slideshow container */
    .slideshow-container {
        margin-top: 105px;
        display: block;
        height: 392px;
        position: relative;
        aspect-ratio: 16 / 9;
        background: black;
        transition: 0.6s ease-in-out;
    }

    /* Hide the images by default */
    .mySlides1, .mySlides2, .mySlides3 {
        display: none;
    }

    .mySlides1 img, .mySlides2 img, .mySlides3 img {
    width:100%; height: 394px;
    object-fit: contain;
    }

    /* Next & previous buttons */
    .prev, .next {
        display: none;
        transition: 0.6s ease-in-out;
    }
    .slideshow-container:hover .prev {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 6%;
        width: auto;
        margin-top: -22px;
        padding: 182px 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease-in-out;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0,0,0,0.5);
      }

    .slideshow-container:hover .next {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 6%;
        width: auto;
        margin-top: -22px;
        padding: 182px 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease-in-out;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0,0,0,0.5);
      }

    /* Position the "next button" to the right */
    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
        transition: 0.6s ease-in-out;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        transition: 0.6s ease-in-out;
    }

    /* Caption text */
    .text {
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
    }

    /* Number text (1/3 etc) */
    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
    }

    /* The dots/bullets/indicators */
    .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3;
    }

    .project-name {
        width: 700px; height: 40px;
    }

    .project-desc {
        width: 700px;
    }

    .reveal, .reveal-start {
        position: relative;
        transform: translateY(150px);
        transition: 1s ease-in-out;
        opacity: 0;
    }

    .reveal.active {
        transform: translateY(0px);
        opacity: 1;
    }

    .reveal-start.active {
        transform: translateY(0px);
        opacity: 1;
    }

    /* Fading animation */
    .fade {
    animation-name: fade;
    animation-duration: 1.5s;
    }

    @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
    }

.test-container {
    display: flex;
    justify-content: space-around;
    height: 500px;
    width: 100%;
    background: black;
    color: white;
}
.disappear {
    height: 100px;
    width: 100px;
    background: green;
    opacity: 0;


}
.test-container button {
    height: 100px;
    width: 100px;
}
.test-container p {
    transition: 0.3s ease-in-out;
}

.appear{
    width: 300px;
    height: 100px;
    background-color: green;
    aspect-ratio: 16 / 9;
}

.slideshow-section {
    margin-top: 500px;
    padding-top: 200px;
    width: 100%;
    height: 3700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3 {

    font-size: 30px;
    color: white;

}

.slideshow-section p {
    color: white;
    font-size: 20px;
    color: #6f6f6f;
}

.used-tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 150px;
    width: 700px;
}

.used-tech {
    height: 49px;
    width: 149px;
    background: #28283a;
    text-align: center;
    padding-top: 11px;
    border-radius: 50px;
    font-size: 20px;
    color: #993900;
    margin: 10px 10px;
}

.framework {
    color: #8ce4ff;
}

@media(max-width: 725px) {
    .slideshow-container {
        height: 300px;
    }
    .mySlides1 img, .mySlides2 img, .mySlides3 {
        height: 300px;
}

    .slideshow-container:hover .prev {
        top: 7%;
        padding: 138px 16px;
    }
    .slideshow-container:hover .next {
        top: 7%;
        padding: 138px 16px;
    }
    .project-name, .project-desc {
        width: 530px;
    }
    .used-tech-container {
        width: 516px;
    }

    .next, .prev {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 7%;
        width: auto;
        margin-top: -22px;
        padding: 138px 11px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease-in-out;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0,0,0,0.5);
    }
}

@media(max-width: 550px) {
    .slideshow-container {
        height: 200px;
    }
    .mySlides1 img, .mySlides2 img, .mySlides3 img {
        height: 200px;
}

    .slideshow-container:hover .prev {
        top: 11%;
        padding: 88px 16px;
    }
    .slideshow-container:hover .next {
        top: 11%;
        padding: 88px 16px;
    }
    .project-name, .project-desc {
        width: 350px;
    }
    .used-tech-container {
        width: 350px;
    }

    .next, .prev {
        display: block;
        cursor: pointer;
        position: absolute;
        top: 11%;
        width: auto;
        margin-top: -22px;
        padding: 88px 11px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease-in-out;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0,0,0,0.5);
    }
}

.contact-section {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-text {
    margin-top: 100px;
    color: white;
    width: 700px;
    font-size: 20px;
    text-align: center;
}

@media(max-width: 725px) {

    .contact-section {
        height: 400px;
    }

    .contact-text {
        width: 350px;
        font-size: 15px;
    }

}

.current-working {
    font-size: 25px;
    text-align: center;
}