@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: 'Roboto', sans-serif;
}

.home {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: max-content;
    background: url(/assets/images/cv-bg.jpg) no-repeat;
    background-blend-mode: multiply;
    background-color: #888;
    background-size: cover;
    
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    transition: all 0.25s linear;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #378c3f;
    z-index: 9999;
}

header ul {
    width: 50%;
    list-style: none;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #FFFFFF;
}

header ul a {
    text-decoration: none;
    color: #FFFFFF;
}

header ul li {
    cursor: pointer;
    transition: all 0.25s ease;
}

header ul li:hover {
    color: #2C2C2C;
}


.home_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px auto 30px;
    color: #FFFFFF;
}




.profile_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    background-color: rgba(22, 218, 22, 0.315);
    border-radius: 50%;
}

.profile_img img {
    border-radius: 50%;
}


.home_container h2 {
    margin-top: 40px;
    font-size: 35px;
}

.home_container h4 {
    margin-top: 10px;
    letter-spacing: 2px;
}

.buttons {
    margin: 0 auto;
    padding-bottom: 10px;
}

.buttons button {
    width: 140px;
    height: 38px;
    background-color: #888888;
    border: none;
    margin-left: 5px;
    border-radius: 5px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.25s ease-in;
}

.buttons button:hover {
    background-color: #33ac3f;
}

.about {
    margin-top: 70px;
}

.about_container {
    display: flex;
    justify-content: space-evenly;
    width: 70%;
    height: 300px;
    margin: 0 auto;
    box-shadow: 0 5px 25px 0 rgba(0,0,0,.2);
}

.about_left_part, .about_right_part {
    width: 600px;
    padding: 20px;
}

.about_container h3 {
    width: max-content;
    font-size: 24px;
    margin: 0 0 15px;
    color: #D73B95;
}

.about_container p {
    font-size: 14px;
    color: #000000;
}

.about_left_part p {
    width: 100%;
    line-height: 1.6;
    font-size: 17px;
}

.about_right_part_container {
    width: 75%;
    display: flex;
    justify-content: space-between;
}

.about_right_part_container h4 {
    margin-bottom: 21px;
}

.about_right_part_container p {
    margin-bottom: 23.5px;
}

.about_right_part_container a {
    text-decoration: none;
    color: #000000;
}

#respons {
    display: none !important;
}

.skills {
    width: 100%;
    margin: 100px 0;
    height: max-content;
    color: #2C2C2C;
}
.skills h1 {
    text-align: center;
    margin: 10px auto 50px;
    color: #D73B95;
}

.skills_container {
    display: flex;
    justify-content: space-between;
    width: 70%;
    height: max-content;
    margin: 0 auto;
}

.skills_content {
    border: solid 3px;
    width: 300px;
    height: 200px;
    background-color: green;
    text-align: center;
    border-radius: 20px;
    padding: 13px;
    margin: 0 20px;
    box-shadow: 0 5px 25px 0 rgba(0,0,0, 0.5);
    border: none;
    color: #FFFFFF;
}

.skills_content h3 {
    margin: 20px 0 30px;
    font-size: 20px;
    color: #3E3E3F;
}

.skills_content p {
    color: #faf4f4;
}


.work_experience {
    width: 100%;
    height: max-content;
    padding-top: 70px;
}

.work_experience h1 {
    width: max-content;
    margin: 30px auto;
    font-size: 32px;
    color: #D73B95;
}

.work_experience_container, .education_container {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: max-content;
    margin: 0 auto;
}

.work_experience_content {
    display: flex;
    width: 100%;
    height: 214px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px 0 rgba(0,0,0,.2);
}

.work_experience_left_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 100%;
    background-color: #8FC648;
    color: #FFFFFF;
    padding: 2px;
}

.work_experience_left_part p {
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(to bottom left, #4e380f, #382406);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.work_experience_left_part h5 {
    font-size: 22px;
    text-align: center;
    box-shadow: none;
}


.work_experience_right_part {
    width: 100%;
    padding: 20px 35px;
    color: #2C2C2C;
}

.work_experience_right_part h5 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.work_experience_right_part p {
    font-size: 17px;
    line-height: 1.5;
    width: 100%;
    margin-left: 5px;
}

.education h1 {
    text-align: center;
}

.education {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: max-content;
}

.education h1 {
    margin-bottom: 30px;
    color: palevioletred;
}

.education_content {
    width: 100%;
    height: max-content;
    margin: 20px;
    padding: 15px;
    color: #3B3B3B;
}

.education_content h3 {
    width: 60%;
    font-size: 25px;
    margin-bottom: 10px;
}

.education_content p {
    width: 60%;
    font-size: 18px;
    margin-bottom: 20px;
}


.education_content_border  {
    display: flex;
    align-items: center;
    width: 100%;
    height: max-content;
}

.education_content_border div:first-child {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: palevioletred;
}

.education_content_border div:last-child {
    width: 70%;
    height: 2px;
    background-color: palevioletred;
    margin-left: 5px;
}

.education_content h3, p {
    margin-left: 18px;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    height: max-content;
}

.links div p {
    margin-top: 5px;
}

.links div:last-child {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.links a {
    margin-top: 5px;
    color: #FFFFFF;

}

@media screen and (max-width : 1250px) {
    header {
        width: 100%;
        margin: 0 auto;
    }

    header ul {
        width: 50%;
    }
}

@media screen and (max-width : 800px) {
    header ul {
        width: 95%;
    }
}

@media screen and (max-width : 992px) {
    .about_container {
        flex-direction: column;
        height: max-content;
    }

    .about_right_part_container {
        width: 50%;
    }

    .about_left_part p {
        width: 80%;
        word-wrap: break-word;
    }
    .about_left_part {
        width: 100%;
    }

    .about_right_part {
        width: 100%;
    }

    .work_experience_content {
        flex-direction: column;
        height: max-content !important;
    }
    .work_experience_left_part {
        width: 100%;
        height: 190px;
    }

    .education_content_border div:last-child {
        width: 100%;
        margin: 10px 0;
    }

    .education_container h3 {
        width: 95%;
    }

    .education_container p {
        width: 95%;
    }

    .education_content {
        margin: 0 auto;
    }

    .education_content_border {
        height: max-content;
    }

    .education_content {
        margin: 30px 0;
    }
}

footer {
    width: 100%;
    height: max-content;
    background-color: #378c3f;
    margin-top: 100px;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 70%;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.footer_container div:first-child h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

.footer_container div:first-child h4 {
    font-size: 18px;
    color: #f8f5f5e0;
}

.wrapper {
    display: inline-flex;
    list-style: none;
  }
  
  .wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .linkein:hover,
  .wrapper .linkein:hover .tooltip,
  .wrapper .linkein:hover .tooltip::before,
  .wrapper .github path:hover
  {
    background: #1877F2;
    fill: #ffffff;
  }

  .wrapper a:hover {
    color: #FFFFFF;
  }
  
  .wrapper .email:hover,
  .wrapper .email:hover .tooltip,
  .wrapper .email:hover .tooltip::before,
  .wrapper .github path:hover {
    background: #CD201F;;
    fill: #ffffff;
  }
  
  .wrapper .github:hover,
  .wrapper .github:hover .tooltip,
  .wrapper .github:hover .tooltip::before,
  .wrapper .github path:hover {
    background: #333333;
    fill: #ffffff;
  }


  








@media screen and (max-width : 771px) {

    .about_right_part_container {
        flex-direction: column;
    }
    .about_right_part_container div {
        display: none !important;
    }
    #respons {
        display: block !important;
    }

    header {
        width: 100%;
    }
    
    header ul {
        width: 80%;
    }

    .footer_container {
        width: 100%;
    }
}

@media screen and (max-width : 1201px) {
    .skills_container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .skills_content {
        margin-top: 30px;
        height: 220px;
        padding: 8px;
    }
}

@media screen and (max-width : 1242px) {
    .work_experience_container {
        width: 80%;
    }
    
    .work_experience_content {
        width: 100%;
        height: 260px;
    }
}

@media screen and (max-width : 600px) {
    footer {
        text-align: center;
        height: max-content;
    }
    .footer_container {
        flex-direction: column;
        height: max-content;
    }
    .wrapper {
        margin-top: 10px;
    }
}
              
.transUp{
    cursor: pointer;
    transition: .5s, color .10s;
        -webkit-transition: .5s, color .10s;
        -moz-transition: .5s, color .10s;
}
.transUp:hover{
    transform: translatey(-30px);
        -webkit-transform: translatey(-30px);
        -moz-transform: translatey(-30px);
}
              