/*THEME COLORS*/
/*---------*/
@font-face {
  font-family: "montserrat";
  src: url(/assets/fonts/Montserrat-VariableFont_wght.ttf);
  src: url(/assets/fonts/Montserrat-Italic-VariableFont_wght.ttf);
}
@font-face {
  font-family: "comfortaa";
  src: url(/assets/fonts/Comfortaa-VariableFont_wght.ttf);
}
/*----------------------------*/
/*PRE SETS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.link {
  text-decoration: none;
  color: #051821;
}

h1,
h3,
h4 {
  font-family: "comfortaa";
}

p {
  font-family: "monserat";
  font-size: 1.2em;
}

li {
  font-family: "comfortaa";
}

.light-mode-text {
  color: #051821;
}

.light-mode-background {
  color: #dfe0df;
}

.dark-mode-text {
  color: white;
}

.dark-mode-background {
  color: #051821;
}

/*SCROLL BAR*/
/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #051821;
  border-radius: 10px;
}

.mobile-menu a {
  text-decoration: none;
  color: black;
}

header {
  background-color: #dfe0df;
  min-height: 5vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 999;
  /*NIGHT MODE*/
}
header .nav-container {
  border-radius: 20px;
  border-bottom: 1px solid black;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
header .nav-container .menu-L {
  display: none;
}
header .changeLight img {
  width: 35px;
}
header .changeLight img:hover {
  cursor: pointer;
}

/*-------------*/
/*HAMBURGER MENU*/
.hamburger-list-container {
  display: none;
  border-bottom: 1px solid black;
  background-color: #dfe0df;
}

.hamburger-list-container a {
  margin: 0;
  padding: 0;
}
.hamburger-list-container ul {
  padding-left: 0px;
}
.hamburger-list-container ul a:first-child li {
  margin: 10;
}

.hamburger-menu img {
  cursor: pointer;
}

.hamburger-list-container ul a:last-child li {
  margin: 10px auto;
  border-radius: 50px;
  border: 2px solid #DE7914;
  width: 110px;
}
.hamburger-list-container ul a li {
  width: 70%;
  text-align: center;
  margin: 10px auto 0 auto;
  list-style-type: none;
  font-weight: bolder;
  letter-spacing: 1px;
}

/*<---------FOOTER---------->*/
footer {
  border-top: 1px solid black;
  background-color: #dfe0df;
}
footer img {
  width: 30px;
}
footer ul {
  display: flex;
  padding: 20px 50px;
  justify-content: space-between;
  list-style-type: none;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  header .nav-container {
    justify-content: space-between;
  }
  header .nav-container .changeLight {
    order: 3;
  }
  header .nav-container .hamburger-menu {
    display: none;
  }
  header .nav-container .menu-L {
    width: 70%;
    max-width: 1200px;
    display: block;
  }
  header .nav-container .menu-L ul {
    width: 100%;
    display: flex;
    gap: 20px;
    margin: 5px auto 0 auto;
    padding: 5px;
  }
  header .nav-container .menu-L ul a {
    margin: 0 auto;
    text-decoration: none;
  }
  header .nav-container .menu-L ul a li {
    list-style-type: none;
    color: #051821;
  }
  header .nav-container .menu-L ul a:last-child {
    background-color: #DE7914;
    font-weight: bolder;
    border-radius: 20px;
    width: 90px;
    text-align: center;
  }
  header .mobile-menu .hamburger-list-container {
    display: none;
  }
}
.git-project-link {
  width: 36px;
  border-radius: 50px;
}

.carousel-control-next,
.carousel-control-prev {
  filter: invert(100%);
}

/*ANIMATIONS*/
/*MOBILE MENU SHOW*/
@-webkit-keyframes mobile-menu-anim-show {
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
@keyframes mobile-menu-anim-show {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
/*MOBILE MENU HIDE*/
@-webkit-keyframes mobile-menu-anim-hide {
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  0% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
@keyframes mobile-menu-anim-hide {
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
}
/*MENU ANIMATIONS*/
.show-menu {
  -webkit-animation: mobile-menu-anim-show 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: mobile-menu-anim-show 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.hide-menu {
  -webkit-animation: mobile-menu-anim-hide 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) reverse both;
  animation: mobile-menu-anim-hide 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) reverse both;
}

.rotateShow {
  -webkit-animation: rotate-90-show 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: rotate-90-show 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.rotateHide {
  -webkit-animation: rotate-90-hide 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both;
  animation: rotate-90-hide 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both;
}

@-webkit-keyframes rotate-90-show {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@keyframes rotate-90-show {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}
@-webkit-keyframes rotate-90-hide {
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotate-90-hide {
  100% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/*HOVER UNDERLINE MENU*/
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #DE7914;
}

.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #DE7914;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/*---------------------*/
/* TEST - (NOT IN USE)
@function set-text-color($color) {
    @if(lightness($color) > 70) {
        @return #051821
    }

    @else {
        @return #fff
    }
}

@mixin set-background($color) {
    background-color: $color;
    color: set-text-color($color);
}
*/
/*THEME COLORS*/
/*---------*/
@font-face {
  font-family: "montserrat";
  src: url(/assets/fonts/Montserrat-VariableFont_wght.ttf);
  src: url(/assets/fonts/Montserrat-Italic-VariableFont_wght.ttf);
}
@font-face {
  font-family: "comfortaa";
  src: url(/assets/fonts/Comfortaa-VariableFont_wght.ttf);
}
/*----------------------------*/
/*PRE SETS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.link {
  text-decoration: none;
  color: #051821;
}

h1,
h3,
h4 {
  font-family: "comfortaa";
}

p {
  font-family: "monserat";
  font-size: 1.2em;
}

li {
  font-family: "comfortaa";
}

.light-mode-text {
  color: #051821;
}

.light-mode-background {
  color: #dfe0df;
}

.dark-mode-text {
  color: white;
}

.dark-mode-background {
  color: #051821;
}

/*SCROLL BAR*/
/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #051821;
  border-radius: 10px;
}

.mobile-menu a {
  text-decoration: none;
  color: black;
}

header {
  background-color: #dfe0df;
  min-height: 5vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 999;
  /*NIGHT MODE*/
}
header .nav-container {
  border-radius: 20px;
  border-bottom: 1px solid black;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
header .nav-container .menu-L {
  display: none;
}
header .changeLight img {
  width: 35px;
}
header .changeLight img:hover {
  cursor: pointer;
}

/*-------------*/
/*HAMBURGER MENU*/
.hamburger-list-container {
  display: none;
  border-bottom: 1px solid black;
  background-color: #dfe0df;
}

.hamburger-list-container a {
  margin: 0;
  padding: 0;
}
.hamburger-list-container ul {
  padding-left: 0px;
}
.hamburger-list-container ul a:first-child li {
  margin: 10;
}

.hamburger-menu img {
  cursor: pointer;
}

.hamburger-list-container ul a:last-child li {
  margin: 10px auto;
  border-radius: 50px;
  border: 2px solid #DE7914;
  width: 110px;
}
.hamburger-list-container ul a li {
  width: 70%;
  text-align: center;
  margin: 10px auto 0 auto;
  list-style-type: none;
  font-weight: bolder;
  letter-spacing: 1px;
}

/*<---------FOOTER---------->*/
footer {
  border-top: 1px solid black;
  background-color: #dfe0df;
}
footer img {
  width: 30px;
}
footer ul {
  display: flex;
  padding: 20px 50px;
  justify-content: space-between;
  list-style-type: none;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  header .nav-container {
    justify-content: space-between;
  }
  header .nav-container .changeLight {
    order: 3;
  }
  header .nav-container .hamburger-menu {
    display: none;
  }
  header .nav-container .menu-L {
    width: 70%;
    max-width: 1200px;
    display: block;
  }
  header .nav-container .menu-L ul {
    width: 100%;
    display: flex;
    gap: 20px;
    margin: 5px auto 0 auto;
    padding: 5px;
  }
  header .nav-container .menu-L ul a {
    margin: 0 auto;
    text-decoration: none;
  }
  header .nav-container .menu-L ul a li {
    list-style-type: none;
    color: #051821;
  }
  header .nav-container .menu-L ul a:last-child {
    background-color: #DE7914;
    font-weight: bolder;
    border-radius: 20px;
    width: 90px;
    text-align: center;
  }
  header .mobile-menu .hamburger-list-container {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.montserrat-font {
  font-family: "montserrat";
}

main {
  background-color: #dfe0df;
  display: grid;
  text-align: center;
  width: 100%;
}
main .head {
  margin: 70px 15px 10px 15px;
}
main .self-description {
  max-height: 490px;
}
main .self-description h2 {
  padding: 10px;
}
main .self-description .img-bg {
  position: relative;
  z-index: 1;
  height: 150px;
  width: 150px;
  margin: 20px auto;
  background-color: #DE7914;
  border-radius: 100%;
}
main .self-description .img-bg img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  width: 95%;
}
main .self-description .cv-description {
  position: relative;
  z-index: 0;
  top: -60px;
  width: 80%;
  margin: 20px auto 0 auto;
  border: 1px solid #DE7914;
  padding-top: 50px;
  font-size: 1.14em;
}
main .education {
  width: 80%;
  margin: 0 auto;
}
main .education h2 {
  text-align: left;
}
main .education ul {
  padding: 0 10px;
  text-align: left;
}
main .education ul li {
  list-style-type: circle;
}
main .languages {
  background-color: #dfe0df;
  width: 80%;
  margin: 10px auto;
  text-align: left;
}
main .languages .italian,
main .languages .english,
main .languages .french {
  display: flex;
}
main .languages h2 {
  margin-top: 20px;
}
main .languages h3 {
  margin-top: 10px;
}
main .experiences {
  width: 80%;
  margin: 0 auto;
}
main .experiences h2 {
  margin-top: 50px;
  text-align: left;
}
main .experiences ul {
  padding: 0;
  text-align: left;
}
main .experiences ul li:first-child {
  margin-top: 30px;
}
main .experiences ul li {
  list-style-type: circle;
}
main .experiences ul li h3 {
  font-size: 1.1em;
  font-weight: bold;
}
main .experiences ul li small {
  margin-top: -10px;
  margin-bottom: 25px;
}
main .experiences ul li p {
  margin-top: -5px;
}
main .contact-me {
  padding: 0 10px;
}
main .contact-me a {
  color: #DE7914;
}

@media screen and (min-width: 768px) {
  main .self-description h2 {
    padding: 20px;
  }
  main .self-description .cv-description {
    max-width: 60%;
  }
  main .self-description .img-bg {
    max-width: 200px;
  }
  main .self-description h2 {
    max-width: 350px;
  }
  main .education h2 {
    text-align: center;
  }
  main .education ul {
    padding: 0 30px;
  }
  main .languages {
    display: grid;
    justify-content: center;
  }
  main .experiences {
    margin-top: 30px;
    display: grid;
    justify-content: center;
  }
  main .experiences h2 {
    text-align: center;
  }
  main .experiences ul {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1024px) {
  main {
    grid-template-columns: 500px 500px;
    justify-content: center;
    margin: 0 auto;
  }
  main .head {
    margin-top: 40px;
    grid-column: 1;
    grid-row: 1/span 2;
  }
  main .head h2 {
    margin-top: 50px;
  }
  main .education {
    margin-top: 40px;
  }
  main .education ul {
    margin-top: 50px;
  }
  main .self-description {
    grid-column: 1;
    grid-row: 2;
  }
  main .self-description .img-bg {
    width: 15vw;
    max-width: 170px;
    background-color: initial;
  }
  main .self-description .img-bg img {
    width: 100%;
  }
  main .self-description .cv-description {
    max-width: 90%;
  }
  main .languages {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  main .languages h2 {
    position: relative;
    left: 50%;
  }
  main .languages .italian {
    grid-column: 1;
    grid-row: 2;
  }
  main .languages .english {
    grid-column: 2;
    grid-row: 2;
  }
  main .languages .french {
    grid-column: 1;
    grid-row: 3;
  }
  main .experiences {
    grid-column: 2;
    grid-row: 2/4;
  }
  main .experiences h2 {
    margin-top: 60px;
  }
  main .experiences ul {
    margin-top: -30px;
  }
  main .contact-me {
    margin-top: 100px;
    grid-column: 1/span 2;
  }
}/*# sourceMappingURL=styles_curriculum-vitae.css.map */