@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;500&display=swap");
html, body, #fullheight {
  height: 100%;
  box-sizing: border-box;
}

.bold {
  font-weight: bold;
}

#loader {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 1%;
}
#loader .wrapper {
  height: 100%;
  background-color: #3a3f3f;
}
#loader .lds-grid {
  position: relative;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  transform: translateY(-50%);
}
#loader .lds-grid div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #27AE60;
  animation: lds-grid 1.2s linear infinite;
}
#loader .lds-grid div:nth-child(1) {
  top: 8px;
  left: 8px;
  animation-delay: 0s;
}
#loader .lds-grid div:nth-child(2) {
  top: 8px;
  left: 32px;
  animation-delay: -0.4s;
}
#loader .lds-grid div:nth-child(3) {
  top: 8px;
  left: 56px;
  animation-delay: -0.8s;
}
#loader .lds-grid div:nth-child(4) {
  top: 32px;
  left: 8px;
  animation-delay: -0.4s;
}
#loader .lds-grid div:nth-child(5) {
  top: 32px;
  left: 32px;
  animation-delay: -0.8s;
}
#loader .lds-grid div:nth-child(6) {
  top: 32px;
  left: 56px;
  animation-delay: -1.2s;
}
#loader .lds-grid div:nth-child(7) {
  top: 56px;
  left: 8px;
  animation-delay: -0.8s;
}
#loader .lds-grid div:nth-child(8) {
  top: 56px;
  left: 32px;
  animation-delay: -1.2s;
}
#loader .lds-grid div:nth-child(9) {
  top: 56px;
  left: 56px;
  animation-delay: -1.6s;
}
@keyframes lds-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

@media (min-width: 335px) {
  #main-wrapper {
    height: 100%;
    width: 100%;
    background-color: white;
  }
  #main-wrapper .header {
    height: 75px;
    width: 100%;
    padding: 10px;
    background-color: white;
    position: fixed;
    top: 0;
    box-sizing: border-box;
    z-index: 999;
    display: flex;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .header {
    height: 90px;
    width: 100%;
    padding: 20px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .header .menu {
    width: auto;
  }
  #main-wrapper .header .menu label {
    display: flex;
    flex-direction: column;
    width: auto;
    cursor: pointer;
  }
  #main-wrapper .header .menu label .kreis {
    width: 50px;
    height: 50px;
    border: 2px solid #3a3f3f;
    border-radius: 100px;
    background: none;
  }
  #main-wrapper .header .menu label span {
    background: #3a3f3f;
    height: 4px;
    width: 35px;
    margin: 2px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    position: relative;
    top: -40px;
    left: 9px;
  }
  #main-wrapper .header .menu label input[type=checkbox] {
    display: none;
  }
  #main-wrapper .header .menu label input[type=checkbox]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(5px, 6px);
  }
  #main-wrapper .header .menu label input[type=checkbox]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
  }
  #main-wrapper .header .menu label input[type=checkbox]:checked ~ span:nth-of-type(3) {
    width: 1%;
    transform-origin: bottom;
    transform: translate(16px, -10px) rotatez(45deg);
  }
  #main-wrapper .header .name {
    width: auto;
    height: auto;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 2px solid #3a3f3f;
    display: flex;
    align-items: center;
  }
  #main-wrapper .header .name p {
    font-family: "Cairo", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-right: 10px;
    line-height: 22px;
    color: #3a3f3f;
  }
  #main-wrapper .header .name p span {
    font-size: 12px;
  }
  #main-wrapper .header .mail {
    display: none;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .header .mail {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  #main-wrapper .header .mail a {
    font-family: "Cairo", sans-serif;
    font-size: 18px;
    color: #3a3f3f;
    text-decoration: none;
  }
}
@media (min-width: 335px) {
  #main-wrapper #menu-slider {
    position: fixed;
    height: auto;
    width: 100%;
    background-color: white;
    display: none;
    padding: 30px;
    margin-top: 75px;
    box-sizing: border-box;
    z-index: 998;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper #menu-slider {
    width: 40%;
  }
}
@media (min-width: 335px) {
  #main-wrapper #menu-slider .menu-item {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  #main-wrapper #menu-slider .menu-item .menu-state {
    height: 30px;
    width: 30px;
    border: 1px solid #B9B9B9;
    border-radius: 50px;
    margin-right: 20px;
  }
  #main-wrapper #menu-slider .menu-item .menu-state.active {
    background-color: #27AE60;
    border-color: #27AE60;
  }
  #main-wrapper #menu-slider .menu-item .menu-name {
    font-family: "Cairo", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #3a3f3f;
  }
  #main-wrapper #menu-slider .menu-item .menu-name.active {
    color: #27AE60;
  }
  #main-wrapper #menu-slider .menu-dots {
    width: 1px;
    height: 35px;
    background-color: #B9B9B9;
    margin-left: 15px;
  }
  #main-wrapper #menu-slider .menu-dots.active {
    background-color: #27AE60;
  }
  #main-wrapper .main-content {
    position: relative;
    box-sizing: border-box;
    min-height: 100%;
    height: 98%;
    width: 98%;
    padding: 30px;
    height: auto;
    background-color: #3a3f3f;
    margin-left: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .main-content {
    padding: 50px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .main-content p {
    font-family: "Cairo", sans-serif;
    font-size: 14px;
    color: white;
    text-align: left;
    font-weight: 200;
    margin-bottom: 10px;
  }
  #main-wrapper .main-content .line {
    width: 100%;
    height: 1px;
    background-color: white;
    margin-bottom: 20px;
  }
  #main-wrapper .main-content.home {
    background-size: auto 16%;
    background-position: 288px 73px;
    background-repeat: no-repeat;
    min-height: 100%;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .main-content.home {
    background-image: url("../img/julian_freund.png");
    background-size: 78% auto;
    background-position: -120px bottom;
    min-height: 500px;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .main-content.home {
    background-size: 75% auto;
    background-position: -150px bottom;
    min-height: 768px;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .main-content.home {
    background-size: 75% auto;
    background-position: -150px bottom;
    min-height: 100%;
  }
}
@media (min-width: 335px) {
  #main-wrapper .main-content.contact {
    min-height: 150px;
    height: auto;
    background-color: #3a3f3f;
  }
  #main-wrapper .main-content .tester1 {
    height: 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .main-content .tester1 {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .main-content .tester2, #main-wrapper .main-content .about-me-images {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .main-content .tester2, #main-wrapper .main-content .about-me-images {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .main-content .tester2.without-space, #main-wrapper .main-content .about-me-images.without-space {
    justify-content: flex-start;
  }
  #main-wrapper .main-content .tester2.without-space .projects-entries, #main-wrapper .main-content .about-me-images.without-space .projects-entries {
    margin-right: 35px;
  }
  #main-wrapper .main-content .tester2.without-space .projects-entries:nth-child(2),
  #main-wrapper .main-content .tester2.without-space .projects-entries:nth-child(4),
  #main-wrapper .main-content .tester2.without-space .projects-entries:nth-child(6), #main-wrapper .main-content .about-me-images.without-space .projects-entries:nth-child(2),
  #main-wrapper .main-content .about-me-images.without-space .projects-entries:nth-child(4),
  #main-wrapper .main-content .about-me-images.without-space .projects-entries:nth-child(6) {
    margin-right: 0;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .main-content .tester2.without-space .projects-entries:nth-child(2),
  #main-wrapper .main-content .tester2.without-space .projects-entries:nth-child(4), #main-wrapper .main-content .about-me-images.without-space .projects-entries:nth-child(2),
  #main-wrapper .main-content .about-me-images.without-space .projects-entries:nth-child(4) {
    margin-right: 35px;
  }
  #main-wrapper .main-content .tester2.without-space .projects-entries:nth-child(3),
  #main-wrapper .main-content .tester2.without-space .projects-entries:nth-child(6), #main-wrapper .main-content .about-me-images.without-space .projects-entries:nth-child(3),
  #main-wrapper .main-content .about-me-images.without-space .projects-entries:nth-child(6) {
    margin-right: 0;
  }
}
@media (min-width: 335px) {
  #main-wrapper .home-entry {
    min-height: 100%;
    width: 100%;
    padding-top: 75px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: white;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .home-entry {
    min-height: auto;
    width: 55%;
    padding-top: 150px;
    margin-left: auto;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .home-entry {
    min-height: auto;
    width: 55%;
    padding-top: 65px;
    margin-left: auto;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .home-entry {
    min-height: auto;
    width: 40%;
    padding-top: 65px;
    margin-left: 50%;
  }
}
@media (min-width: 335px) {
  #main-wrapper .home-entry h1 {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 60px;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  #main-wrapper .home-entry p {
    font-family: "Cairo", sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 22px;
    letter-spacing: 1px;
    font-style: normal;
  }
  #main-wrapper .home-entry p:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .home-entry p {
    font-size: 16px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .home-entry .arrow-down {
    height: 50px;
    width: 50px;
    background-image: url("../img/arrow-down-small.png");
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
  }
  #main-wrapper .home-entry #contact-button {
    height: 40px;
    width: 160px;
    margin-top: 10px;
    background-color: #27AE60;
    border-radius: 30px;
    cursor: pointer;
  }
  #main-wrapper .home-entry #contact-button p {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
  }
  #main-wrapper .cv-entries {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: white;
    margin-bottom: 45px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries {
    width: 45%;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .cv-heading {
    display: flex;
    flex-direction: column;
  }
  #main-wrapper .cv-entries .cv-heading p {
    font-family: "Cairo", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 0;
  }
  #main-wrapper .cv-entries .cv-heading h1 {
    font-family: "Cairo", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .cv-heading h1.heading-shortener {
    width: 250px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .cv-content-wrapper {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content-bar {
    width: 20px;
    height: auto;
    margin-right: 10px;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content-bar .cv-content-bar-point {
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50px;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content-bar .cv-content-bar-point.active {
    background-color: #27AE60;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content-bar .cv-content-bar-bar {
    height: calc(100% - 20px);
    width: 2px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content-bar .cv-content-bar-bar.active {
    background-color: #27AE60;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content {
    width: calc(100% - 30px);
    height: auto;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content h2 {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content p {
    font-family: "Cairo", sans-serif;
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 15px;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content p span {
    font-weight: 500;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content p:last-child {
    line-height: 25px;
    margin-bottom: 0;
    font-style: normal;
  }
  #main-wrapper .cv-entries .cv-content-wrapper .cv-content p:first-child {
    line-height: 25px;
    margin-bottom: 5px;
    font-style: normal;
    font-size: 14px;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper h2 {
    width: 100%;
    margin-left: auto;
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar {
    width: 100%;
    height: 30px;
    margin-left: auto;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer {
    width: 100%;
    height: 30px;
    border: 1px solid #27AE60;
    border-radius: 30px;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner {
    height: 26px;
    margin-top: 2px;
    margin-left: 2px;
    background-color: #27AE60;
    border-radius: 30px;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.hcd {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.agile {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.pd {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.web-development {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.mc {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.team {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.empathy {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.motivation-curiosity {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.resilience-reliability {
    width: 0;
  }
  #main-wrapper .cv-entries .cv-skill-bar-wrapper .skill-bar .skill-bar-outer .skill-bar-inner.problem-solving {
    width: 0;
  }
  #main-wrapper .cv-entries .certification-wrapper {
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 55px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification body {
    text-align: center;
    padding-top: 30px;
  }
  #main-wrapper .cv-entries .certification-wrapper .certification .diamond {
    width: 100px;
    height: 100px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    content: "";
    width: 140px;
    height: 140px;
    left: -9px;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -webkit-transition: border-color 0.3s;
    -moz-transform: rotate(45deg);
    -moz-transition: border-color 0.3s;
    transform: rotate(45deg);
  }
  #main-wrapper .cv-entries .certification-wrapper .certification .diamond-inner-2 {
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    content: "";
    left: 8px;
    top: 7px;
    right: 0;
    bottom: 0;
    border: 2px solid #9C9819;
    -webkit-transform: rotate(0deg);
    -webkit-transition: border-color 0.3s;
    -moz-transform: rotate(0deg);
    -moz-transition: border-color 0.3s;
    transform: rotate(0deg);
  }
  #main-wrapper .cv-entries .certification-wrapper .certification .diamond-inner {
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    content: "";
    width: 120px;
    height: 120px;
    left: 8px;
    top: 7px;
    right: 0;
    bottom: 0;
    border: 2px solid #9C9819;
    -webkit-transform: rotate(0deg);
    -webkit-transition: border-color 0.3s;
    -moz-transform: rotate(0deg);
    -moz-transition: border-color 0.3s;
    transform: rotate(0deg);
  }
  #main-wrapper .cv-entries .certification-wrapper .certification .logo {
    height: 200px;
    width: 200px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    margin-bottom: 20px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .logo {
    height: 100px;
    width: 100px;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .logo {
    height: 150px;
    width: 150px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .psm {
    height: 100px;
    width: 100px;
    background-image: url("../img/psmi.png");
    background-size: 90px auto;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-45deg);
    margin-top: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .psm {
    background-size: 70px auto;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .psm {
    background-size: 100px auto;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .vfl {
    height: 100px;
    width: 100px;
    background-image: url("../img/vfl-waiblingen.png");
    background-size: 90px auto;
    background-repeat: no-repeat;
    background-position: -12px center;
    transform: rotate(-45deg);
    margin-top: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .vfl {
    background-size: 70px auto;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .vfl {
    background-size: 100px auto;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .tb {
    height: 100px;
    width: 100px;
    background-image: url("../img/tb-beinstein.png");
    background-size: 70px auto;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-45deg);
    margin-top: 6px;
    margin-left: 6px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .tb {
    background-size: 70px auto;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .tb {
    background-size: 80px auto;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .brain-birds {
    height: 100px;
    width: 100px;
    background-image: url("../img/brain-birds.png");
    background-size: 90px auto;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-45deg);
    margin-top: 10px;
    margin-left: 10px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .brain-birds {
    background-size: 70px auto;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .brain-birds {
    background-size: 100px auto;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .interaction-desing-foundation {
    height: 100px;
    width: 100px;
    background-image: url("../img/idf.png");
    background-size: 90px auto;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-45deg);
    margin-top: 5px;
    margin-left: 5px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .interaction-desing-foundation {
    background-size: 90px auto;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .interaction-desing-foundation {
    background-size: 90px auto;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification p {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 18px;
    font-family: "Cairo", sans-serif;
    line-height: 25px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .cv-entries .certification-wrapper .certification p {
    font-size: 12px;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .cv-entries .certification-wrapper .certification p {
    font-size: 14px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .cv-entries .certification-wrapper .certification .p-bold {
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 50px;
  }
  #main-wrapper .cv-entries .certification-wrapper .certification .p-light {
    font-weight: lighter;
    margin-bottom: 5px;
  }
  #main-wrapper .projects-entries {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    color: white;
    margin-bottom: 45px;
  }
  #main-wrapper .projects-entries.coming-soon {
    justify-content: flex-start;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .projects-entries {
    width: 45%;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .projects-entries {
    width: 30%;
  }
}
@media (min-width: 335px) {
  #main-wrapper .projects-entries .project-heading {
    display: flex;
    flex-direction: column;
  }
  #main-wrapper .projects-entries .project-heading p {
    font-family: "Cairo", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 0;
  }
  #main-wrapper .projects-entries .project-heading h1 {
    font-family: "Cairo", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .projects-entries .project-heading h1.heading-shortener {
    width: 250px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .projects-entries .project-content-wrapper {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .projects-entries .project-content-wrapper {
    margin-bottom: 20px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .projects-entries .project-content-wrapper .project-content {
    width: calc(100% - 30px);
    height: auto;
  }
  #main-wrapper .projects-entries .project-content-wrapper .project-content h2 {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
  }
  #main-wrapper .projects-entries .project-content-wrapper .project-content p {
    font-family: "Cairo", sans-serif;
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 25px;
    margin-bottom: 0;
    font-style: normal;
  }
  #main-wrapper .projects-entries .project-content-wrapper .project-content p span {
    font-weight: 500;
  }
  #main-wrapper .projects-entries .project-content-wrapper .project-content a {
    color: white;
  }
  #main-wrapper .projects-entries .button-more {
    height: 40px;
    width: 100%;
    margin-top: 10px;
    background-color: #27AE60;
    border-radius: 30px;
    cursor: pointer;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .projects-entries .button-more {
    margin-top: 10px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .projects-entries .button-more p {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
  }
  #main-wrapper .projects-entries .button-more-active {
    height: 40px;
    width: 100%;
    margin-top: 10px;
    background-color: #27AE60;
    border-radius: 30px;
    cursor: pointer;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .projects-entries .button-more-active {
    margin-top: 10px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .projects-entries .button-more-active p {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
  }
  #main-wrapper .about-me-entries {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: white;
    margin-bottom: 45px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .about-me-entries {
    width: 45%;
    margin-bottom: 20px;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .about-me-entries {
    width: 30%;
    margin-bottom: 20px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .about-me-entries img {
    margin-bottom: 5px;
    border-radius: 10px;
  }
  #main-wrapper .about-me-entries p {
    width: 100%;
    height: auto;
    text-align: left;
    font-size: 14px;
    font-family: "Cairo", sans-serif;
    line-height: 20px;
    font-weight: 200;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .about-me-entries p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .contact-entries {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: white;
    margin-bottom: 45px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .contact-entries {
    width: 40%;
  }
}
@media (min-width: 335px) and (min-width: 992px) {
  #main-wrapper .contact-entries {
    width: 30%;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .contact-entries {
    width: 30%;
  }
}
@media (min-width: 335px) {
  #main-wrapper .contact-entries .contact-heading {
    display: flex;
    flex-direction: column;
  }
  #main-wrapper .contact-entries .contact-heading p {
    font-family: "Cairo", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 0;
  }
  #main-wrapper .contact-entries .contact-heading h1 {
    font-family: "Cairo", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
  }
}
@media (min-width: 335px) and (min-width: 1200px) {
  #main-wrapper .contact-entries .contact-heading h1 {
    font-size: 30px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .contact-entries .contact-content-wrapper {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  #main-wrapper .contact-entries .contact-content-wrapper {
    margin-bottom: 20px;
  }
}
@media (min-width: 335px) {
  #main-wrapper .contact-entries .contact-content-wrapper .contact-content {
    width: calc(100% - 30px);
    height: auto;
  }
  #main-wrapper .contact-entries .contact-content-wrapper .contact-content h2 {
    font-family: "Cairo", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
  }
  #main-wrapper .contact-entries .contact-content-wrapper .contact-content p {
    font-family: "Cairo", sans-serif;
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 40px;
    margin-bottom: 0;
    font-style: normal;
  }
  #main-wrapper .contact-entries .contact-content-wrapper .contact-content p span {
    font-weight: 500;
  }
  #main-wrapper .contact-entries .contact-content-wrapper .contact-content a {
    color: white;
    cursor: pointer;
    text-decoration: underline;
  }
  .details-view {
    height: auto;
    width: 100%;
    background-color: #3a3f3f;
    padding: 0px;
    box-sizing: border-box;
    display: none;
  }
  .details-view .details-header {
    height: 75px;
    width: 100%;
    padding: 10px;
    background-color: white;
    position: fixed;
    box-sizing: border-box;
    z-index: 999;
    display: flex;
  }
  .details-view .details-header .title {
    height: 80px;
    width: auto;
    position: fixed;
    left: 30px;
  }
  .details-view .details-header .title h1 {
    font-family: "Cairo", sans-serif;
    font-size: 25px;
    line-height: 55px;
    color: #3a3f3f;
  }
  .details-view .details-header .close {
    height: 55px;
    width: 55px;
    position: fixed;
    right: 30px;
    z-index: 999;
    cursor: pointer;
  }
  .details-view .details-header .close div.ex2:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "x";
    font-family: "Cairo", sans-serif;
    font-size: 80px;
    color: #3a3f3f;
    line-height: 40px;
    text-align: center;
  }
  .details-view .details-content {
    box-sizing: border-box;
    padding: 100px 50px 50px 50px;
    background-color: #3a3f3f;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .details-view .details-content .details-content-entry {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
  }
  .details-view .details-content .details-content-entry .details-content-flex {
    width: 48%;
  }
  .details-view .details-content .details-content-entry .details-content-flex.order-1 {
    order: 1;
  }
  .details-view .details-content .details-content-entry .details-content-flex.order-2 {
    order: 2;
  }
}
@media (min-width: 335px) {
  .details-view .details-content .section .section-button {
    display: inline-block;
  }
  .details-view .details-content .section .section-button h2 {
    float: left;
    margin-right: 10px;
  }
  .details-view .details-content .section .section-button .arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 7px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .details-view .details-content .section .section-button.active .arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 7px;
    margin-top: 11px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .details-view .details-content .section .section-content {
    display: none;
  }
  .details-view .details-content .details-header-img {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
  }
  .details-view .details-content h2 {
    font-family: "Cairo", sans-serif;
    font-weight: bolder;
    color: white;
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 30px;
  }
  .details-view .details-content p {
    font-family: "Cairo", sans-serif;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
  }
}
@media (min-width: 335px) {
  .details-view .details-content p.bold-big {
    font-size: 18px;
    font-weight: bolder;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content p.bold-big {
    font-size: 20px;
  }
}
@media (min-width: 335px) {
  .details-view .details-content p.bold-small {
    font-size: 14px;
    font-weight: bolder;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content p.bold-small {
    font-size: 16px;
  }
}
@media (min-width: 335px) {
  .details-view .details-content p.underline {
    font-size: 20px;
    text-decoration: underline;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content p.underline {
    font-size: 22px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content .details-flex {
    display: flex;
  }
}
@media (min-width: 335px) {
  .details-view .details-content .details-flex .details:last-child {
    margin-top: 60px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content .details-flex .details {
    width: 100%;
  }
  .details-view .details-content .details-flex .details:first-child {
    padding-right: 10px;
  }
  .details-view .details-content .details-flex .details:last-child {
    margin-top: 0px;
    padding-left: 10px;
  }
}
@media (min-width: 335px) {
  .details-view .details-content .details-flex .details ul li {
    font-family: "Cairo", sans-serif;
    font-weight: 300;
    color: white;
    font-size: 14px;
    line-height: 20px;
    list-style: square;
    margin-left: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content .details-flex .details ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 335px) {
  .details-view .details-content ul {
    width: 100%;
  }
  .details-view .details-content ul li {
    font-family: "Cairo", sans-serif;
    font-weight: 300;
    color: white;
    font-size: 14px;
    line-height: 20px;
    list-style: square;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 335px) and (min-width: 768px) {
  .details-view .details-content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 335px) {
  .details-view .details-content ul li .bold {
    font-weight: bolder;
  }
  .details-view .details-content ul li .cursive {
    font-style: italic;
  }
  .details-view .details-content ul img {
    width: 100%;
    height: auto;
  }
  .details-view .details-content .margin-bottom {
    margin-bottom: 60px;
  }
  .details-view .details-content .details-content-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=index.css.map */