@charset "UTF-8";
@font-face {
  font-family: "Lora";
  src: url("../../fonts/Lora/Lora-Medium.ttf");
}

@font-face {
  font-family: "Sofia";
  src: url("../../fonts/Sofia/Sofia-Regular.ttf");
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Regular.ttf");
}

@font-face {
  font-family: "Marker";
  src: url("../../fonts/Marker/PermanentMarker-Regular.ttf");
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 13px;
  height: 13px;
}

::-webkit-scrollbar-thumb {
  background: #E96443;
}

::-webkit-scrollbar-thumb:hover {
  background: #E96443;
}

::-webkit-scrollbar-track {
  background: #FFFFFF;
  -webkit-box-shadow: inset 7px 10px 12px 0 #E9E9E9D1;
          box-shadow: inset 7px 10px 12px 0 #E9E9E9D1;
}

/* Gestion des balises */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}

* body {
  margin: 0;
  font-family: "Roboto", "Open Sans", sans-serif;
  color: #391208;
}

* body h1 {
  font-size: 50px;
}

* body h2 {
  font-size: 45px;
}

* body h3 {
  font-size: 30px;
  color: #FFFFFF;
  background-color: #E96443;
  border-radius: 2px 30px 30px 30px;
  -webkit-box-shadow: 0 5px 10px #D5D5D5;
          box-shadow: 0 5px 10px #D5D5D5;
  padding: 20px;
  margin: 0 30px 30px 30px;
  float: left;
  position: absolute;
  display: inline;
  font-family: "Lora", "Open Sans", sans-serif;
}

* body h4 {
  font-size: 21px;
  margin: 0;
  font-family: "Lora", "Open Sans", sans-serif;
}

* body h5 {
  font-size: 18px;
  margin: 0;
}

* body h6 {
  font-size: 16px;
  margin: 0;
}

* body p {
  margin: 0;
}

* body h1, * body h2 {
  margin: 0;
  font-family: "Sofia", "Open Sans", sans-serif;
}

* body .link, * body .link:link {
  color: #391208;
  text-decoration: none;
  background-position-y: -0%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #FFFFFF), color-stop(50%, #E96443));
  background-image: linear-gradient(#FFFFFF 50%, #E96443 50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-size: auto 175%;
}

* body .link:hover {
  color: #FFFFFF;
  background-position-y: 100%;
  padding: 3px;
}

/* Page */
.container {
  margin-top: 50px;
}

.category {
  padding: 70px 50px;
}

@media screen and (max-width: 550px) {
  .category {
    padding: 70px 25px;
  }
}

@media screen and (max-width: 450px) {
  .category {
    padding: 70px 10px;
  }
}

.category:nth-child(odd) {
  background-color: #fdf0e8da;
}

.category div {
  margin-top: 100px;
}

/* Back to top */
#backTop {
  display: inline-block;
  background-color: #E96443C2;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: background-color .3s, opacity .5s, visibility .5s;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#backTop::after {
  line-height: 50;
  color: #FFFFFF;
}

#backTop:hover {
  cursor: pointer;
  background-color: #E96443;
}

#backTop:hover i {
  opacity: 1;
}

#backTop:active {
  background-color: #E96443;
}

#backTop.show {
  opacity: 1;
  visibility: visible;
}

#backTop i {
  margin-top: 5px;
  color: #FFFFFFC2;
  font-size: 2.5em;
}

/* Navbar */
.navbar-area {
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #333333;
  overflow: hidden;
  position: fixed;
  -webkit-box-shadow: 0 1px 5px #94928F;
          box-shadow: 0 1px 5px #94928F;
  z-index: 1000;
  -webkit-transition: height .5s ease;
  transition: height .5s ease;
}

.navbar-area.open {
  height: 360px;
  -webkit-transition: height .5s ease;
  transition: height .5s ease;
}

.site-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 819px) {
  .site-navbar {
    min-height: 60px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 10px;
  }
}

.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 819px) {
  .site-navbar ul {
    position: absolute;
    width: 100%;
    height: calc(100vh - 60vh);
    left: 0;
    top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 1000;
  }
}

@media screen and (max-width: 819px) {
  .site-navbar ul li {
    width: 100%;
    text-align: center;
  }
}

.site-navbar ul li a {
  color: #FFFFFF;
  padding: 20px;
  display: block;
  text-decoration: none;
  font-size: 17px;
  font-family: "Lora", "Open Sans", sans-serif;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-animation: ease-out;
          animation: ease-out;
}

@media screen and (max-width: 819px) {
  .site-navbar ul li a {
    padding: 20px;
    width: 100%;
  }
}

.site-navbar ul li a.active {
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-animation: ease-in-out;
          animation: ease-in-out;
  border-bottom: 5px solid #E96443;
  color: #FFFFFF;
}

@media screen and (max-width: 819px) {
  .site-navbar ul li a.active {
    background-color: #FFFFFF1A;
    border-bottom: none;
  }
}

.site-navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 819px) {
  .site-navbar ul li a:hover {
    background-color: #FFFFFF1A;
  }
}

@media screen and (max-width: 819px) {
  .site-navbar ul li a.open {
    max-height: 100vh;
    overflow: visible;
    z-index: 1000;
  }
}

p.title {
  color: #E9E9E9D1;
  padding: 15px 50px 15px 16px;
  font-family: "Sofia", "Open Sans", sans-serif;
  font-size: 20px;
}

p.title, .site-navbar ul li a {
  float: left;
  color: #E9E9E9D1;
  text-align: center;
  height: 60px;
  text-decoration: none;
  display: block;
}

.nav-toggler {
  border: 2px solid #FFFFFF;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}

@media screen and (max-width: 819px) {
  .nav-toggler {
    display: block;
  }
}

.nav-toggler span, .nav-toggler span:before, .nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #FFFFFF;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav-toggler span:before {
  content: '';
  -webkit-transform: translateY(-9px);
          transform: translateY(-9px);
}

.nav-toggler span:after {
  content: '';
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.nav-toggler .toggle-open span {
  background-color: transparent;
}

.nav-toggler .toggle-open span:before {
  -webkit-transform: translateY(0px) rotate(45deg);
          transform: translateY(0px) rotate(45deg);
}

.nav-toggler .toggle-open span:after {
  -webkit-transform: translateY(-3px) rotate(-45deg);
          transform: translateY(-3px) rotate(-45deg);
}

@media screen and (max-width: 819px) {
  .nav-toggler {
    display: block;
  }
}

/* Titre */
#title {
  color: white;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 40%;
  margin-left: 15%;
  z-index: 999;
}

@media screen and (max-width: 390px) {
  #title h1 {
    font-size: 40px;
  }
  #title h2 {
    font-size: 35px;
  }
}

/* Arrows */
.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  bottom: 120px;
  z-index: 999;
}

.arrows:hover {
  cursor: pointer;
}

.arrows path {
  stroke: #FFFFFF;
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 3s infinite;
  -webkit-animation: arrow 3s infinite;
}

.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
  /* Safari and Chrome */
}

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
  /* Safari and Chrome */
}

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  /* Safari and Chrome */
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes arrow /*Safari and Chrome*/ {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Waves */
@-webkit-keyframes move_wave {
  0% {
    -webkit-transform: translateX(0) translateZ(0) scaleY(1);
            transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    -webkit-transform: translateX(-25%) translateZ(0) scaleY(0.55);
            transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    -webkit-transform: translateX(-50%) translateZ(0) scaleY(1);
            transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}
@keyframes move_wave {
  0% {
    -webkit-transform: translateX(0) translateZ(0) scaleY(1);
            transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    -webkit-transform: translateX(-25%) translateZ(0) scaleY(0.55);
            transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    -webkit-transform: translateX(-50%) translateZ(0) scaleY(1);
            transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

.waveWrapper {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.waveWrapper .waveWrapperInner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
  bottom: -1px;
  background-image: -webkit-gradient(linear, right top, left top, from(#800080), to(#E96443));
  background-image: linear-gradient(to left, #800080, #E96443);
}

.waveWrapper .waveWrapperInner.bgTop {
  z-index: 15;
  opacity: 0.5;
}

.waveWrapper .waveWrapperInner.bgTop .waveTop {
  background-size: 50% 100px;
  background-image: url("../../images/wave-top.png");
}

.waveWrapper .waveWrapperInner.bgMiddle {
  z-index: 10;
  opacity: 0.75;
}

.waveWrapper .waveWrapperInner.bgMiddle .waveMiddle {
  background-size: 50% 120px;
  background-image: url("../../images/wave-mid.png");
}

.waveWrapper .waveWrapperInner.bgBottom {
  z-index: 5;
}

.waveWrapper .wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.waveAnimation .waveTop {
  -webkit-animation: move_wave 13s linear infinite;
          animation: move_wave 13s linear infinite;
}

.waveAnimation .waveMiddle {
  -webkit-animation: move_wave 16s linear infinite;
          animation: move_wave 16s linear infinite;
}

.waveAnimation .waveBottom {
  background-size: 50% 100px;
  background-image: url("../../images/wave-bot.png");
  -webkit-animation: move_wave 20s linear infinite;
          animation: move_wave 20s linear infinite;
}

/* Présentation */
#presentation {
  place-items: center;
  margin-top: 95vh;
}

#presentation div {
  width: 100%;
  font-size: 26px;
  margin: 150px auto auto auto;
  padding-left: 100px;
}

@media screen and (max-width: 650px) {
  #presentation div {
    padding-left: 0;
  }
}

#presentation div p, #presentation div a {
  font-size: 18px;
}

/* Parcours */
#experience .container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-y, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

#experience .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

#experience .row .col-lg-6 {
  padding-left: 40px;
}

#experience .parcours-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #333333;
}

#experience .parcours-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #815581;
  position: relative;
}

#experience .parcours-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #815581;
  border: 2px solid #815581;
}

#experience .parcours-item h5 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #E96443;
  margin-bottom: 10px;
}

#experience .parcours-item h5 a {
  line-height: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #E96443;
  margin-bottom: 10px;
  text-decoration: none;
}

#experience .parcours-item h6 {
  font-size: 16px;
  background: #e964431f;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

#experience .parcours-item ul {
  padding-left: 20px;
}

#experience .parcours-item ul li {
  padding-left: 10px;
}

/* Compétences */
.html-bg {
  background-color: #DD4B25;
}

.css-bg {
  background-color: #006CB5;
}

.js-bg {
  background-color: #EED81D;
}

.react-bg {
  background-color: #60DAFB;
}

.bootstrap-bg {
  background-color: #7A52B3;
}

.scss-bg {
  background-color: #CD669A;
}

.php-bg {
  background-color: #777BB3;
}

.symfony-bg {
  background-color: #000000;
}

.api-bg {
  background-color: #00ACB6;
}

.mysql-bg {
  background-color: #01618A;
}

.git-bg {
  background-color: #F15030;
}

.github-bg {
  background-color: #1B1F23;
}

.phpstorm-bg {
  background-color: #8D4DED;
}

.agile-bg {
  background-color: #6CD2A2;
}

.trello-bg {
  background-color: #24719F;
}

.fab, .fas, .devicon {
  font-size: 30px;
  color: #FFFFFF;
}

div .fab, div .fas, div .devicon {
  text-align: center;
}

.skills-list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#front-list, #back-list, #db-list, #other-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  padding-bottom: 15px;
  margin-top: 20px;
}

@media screen and (max-width: 519px) {
  #front-list, #back-list, #db-list, #other-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin: 5px 0 !important;
  }
  #front-list .html-column, #back-list .html-column, #db-list .html-column, #other-list .html-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .css-column, #back-list .css-column, #db-list .css-column, #other-list .css-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .scss-column, #back-list .scss-column, #db-list .scss-column, #other-list .scss-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  #front-list .bootstrap-column, #back-list .bootstrap-column, #db-list .bootstrap-column, #other-list .bootstrap-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 4;
    grid-row: 4;
  }
  #front-list .js-column, #back-list .js-column, #db-list .js-column, #other-list .js-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 5;
    grid-row: 5;
  }
  #front-list .react-column, #back-list .react-column, #db-list .react-column, #other-list .react-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 6;
    grid-row: 6;
  }
  #front-list .php-column, #back-list .php-column, #db-list .php-column, #other-list .php-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .symfony-column, #back-list .symfony-column, #db-list .symfony-column, #other-list .symfony-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .api-column, #back-list .api-column, #db-list .api-column, #other-list .api-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  #front-list .mysql-column, #back-list .mysql-column, #db-list .mysql-column, #other-list .mysql-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .git-column, #back-list .git-column, #db-list .git-column, #other-list .git-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .github-column, #back-list .github-column, #db-list .github-column, #other-list .github-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .phpstorm-column, #back-list .phpstorm-column, #db-list .phpstorm-column, #other-list .phpstorm-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  #front-list .agile-column, #back-list .agile-column, #db-list .agile-column, #other-list .agile-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 4;
    grid-row: 4;
  }
  #front-list .trello-column, #back-list .trello-column, #db-list .trello-column, #other-list .trello-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 5;
    grid-row: 5;
  }
}

@media screen and (min-width: 519px) {
  #front-list, #back-list, #db-list, #other-list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #front-list .html-column, #back-list .html-column, #db-list .html-column, #other-list .html-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .css-column, #back-list .css-column, #db-list .css-column, #other-list .css-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .scss-column, #back-list .scss-column, #db-list .scss-column, #other-list .scss-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .bootstrap-column, #back-list .bootstrap-column, #db-list .bootstrap-column, #other-list .bootstrap-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .js-column, #back-list .js-column, #db-list .js-column, #other-list .js-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  #front-list .react-column, #back-list .react-column, #db-list .react-column, #other-list .react-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  #front-list .php-column, #back-list .php-column, #db-list .php-column, #other-list .php-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .symfony-column, #back-list .symfony-column, #db-list .symfony-column, #other-list .symfony-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .api-column, #back-list .api-column, #db-list .api-column, #other-list .api-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .api-column h5, #back-list .api-column h5, #db-list .api-column h5, #other-list .api-column h5 {
    font-size: 18px !important;
    margin-top: 5px;
  }
  #front-list .mysql-column, #back-list .mysql-column, #db-list .mysql-column, #other-list .mysql-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .git-column, #back-list .git-column, #db-list .git-column, #other-list .git-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .github-column, #back-list .github-column, #db-list .github-column, #other-list .github-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .phpstorm-column, #back-list .phpstorm-column, #db-list .phpstorm-column, #other-list .phpstorm-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .agile-column, #back-list .agile-column, #db-list .agile-column, #other-list .agile-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .agile-column h5, #back-list .agile-column h5, #db-list .agile-column h5, #other-list .agile-column h5 {
    font-size: 18px !important;
    padding-top: 0 !important;
  }
  #front-list .agile-column .agile-bg, #back-list .agile-column .agile-bg, #db-list .agile-column .agile-bg, #other-list .agile-column .agile-bg {
    margin-right: 12px !important;
  }
  #front-list .trello-column, #back-list .trello-column, #db-list .trello-column, #other-list .trello-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

@media screen and (min-width: 818px) {
  #front-list, #back-list, #db-list, #other-list {
    -ms-grid-columns: (minmax(0, 1fr))[3];
        grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #front-list .html-column, #back-list .html-column, #db-list .html-column, #other-list .html-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .css-column, #back-list .css-column, #db-list .css-column, #other-list .css-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .scss-column, #back-list .scss-column, #db-list .scss-column, #other-list .scss-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .bootstrap-column, #back-list .bootstrap-column, #db-list .bootstrap-column, #other-list .bootstrap-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .js-column, #back-list .js-column, #db-list .js-column, #other-list .js-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .react-column, #back-list .react-column, #db-list .react-column, #other-list .react-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .php-column, #back-list .php-column, #db-list .php-column, #other-list .php-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .symfony-column, #back-list .symfony-column, #db-list .symfony-column, #other-list .symfony-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .api-column, #back-list .api-column, #db-list .api-column, #other-list .api-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .mysql-column, #back-list .mysql-column, #db-list .mysql-column, #other-list .mysql-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .git-column, #back-list .git-column, #db-list .git-column, #other-list .git-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .github-column, #back-list .github-column, #db-list .github-column, #other-list .github-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .phpstorm-column, #back-list .phpstorm-column, #db-list .phpstorm-column, #other-list .phpstorm-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .agile-column, #back-list .agile-column, #db-list .agile-column, #other-list .agile-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .agile-column h5, #back-list .agile-column h5, #db-list .agile-column h5, #other-list .agile-column h5 {
    font-size: 18px !important;
    margin-top: 0px;
    padding-top: 0 !important;
  }
  #front-list .agile-column .agile-bg, #back-list .agile-column .agile-bg, #db-list .agile-column .agile-bg, #other-list .agile-column .agile-bg {
    margin-right: 12px !important;
  }
  #front-list .trello-column, #back-list .trello-column, #db-list .trello-column, #other-list .trello-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

@media screen and (min-width: 1067px) {
  #front-list, #back-list, #db-list, #other-list {
    -ms-grid-columns: (minmax(0, 1fr))[4];
        grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #front-list .html-column, #back-list .html-column, #db-list .html-column, #other-list .html-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .css-column, #back-list .css-column, #db-list .css-column, #other-list .css-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .scss-column, #back-list .scss-column, #db-list .scss-column, #other-list .scss-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .bootstrap-column, #back-list .bootstrap-column, #db-list .bootstrap-column, #other-list .bootstrap-column {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .js-column, #back-list .js-column, #db-list .js-column, #other-list .js-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .react-column, #back-list .react-column, #db-list .react-column, #other-list .react-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .php-column, #back-list .php-column, #db-list .php-column, #other-list .php-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .symfony-column, #back-list .symfony-column, #db-list .symfony-column, #other-list .symfony-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .api-column, #back-list .api-column, #db-list .api-column, #other-list .api-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .mysql-column, #back-list .mysql-column, #db-list .mysql-column, #other-list .mysql-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .git-column, #back-list .git-column, #db-list .git-column, #other-list .git-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .github-column, #back-list .github-column, #db-list .github-column, #other-list .github-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .phpstorm-column, #back-list .phpstorm-column, #db-list .phpstorm-column, #other-list .phpstorm-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .agile-column, #back-list .agile-column, #db-list .agile-column, #other-list .agile-column {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .agile-column .agile-bg, #back-list .agile-column .agile-bg, #db-list .agile-column .agile-bg, #other-list .agile-column .agile-bg {
    margin-right: 15px !important;
  }
  #front-list .agile-column h5, #back-list .agile-column h5, #db-list .agile-column h5, #other-list .agile-column h5 {
    font-size: 18px !important;
    margin-top: 0;
  }
  #front-list .trello-column, #back-list .trello-column, #db-list .trello-column, #other-list .trello-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

@media screen and (min-width: 1316px) {
  #front-list, #back-list, #db-list, #other-list {
    -ms-grid-columns: (minmax(0, 1fr))[5];
        grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  #front-list .html-column, #back-list .html-column, #db-list .html-column, #other-list .html-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .css-column, #back-list .css-column, #db-list .css-column, #other-list .css-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .scss-column, #back-list .scss-column, #db-list .scss-column, #other-list .scss-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .bootstrap-column, #back-list .bootstrap-column, #db-list .bootstrap-column, #other-list .bootstrap-column {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .js-column, #back-list .js-column, #db-list .js-column, #other-list .js-column {
    -ms-grid-column: 5;
    grid-column: 5;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .react-column, #back-list .react-column, #db-list .react-column, #other-list .react-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  #front-list .php-column, #back-list .php-column, #db-list .php-column, #other-list .php-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .symfony-column, #back-list .symfony-column, #db-list .symfony-column, #other-list .symfony-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .api-column, #back-list .api-column, #db-list .api-column, #other-list .api-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .mysql-column, #back-list .mysql-column, #db-list .mysql-column, #other-list .mysql-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .git-column, #back-list .git-column, #db-list .git-column, #other-list .git-column {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .github-column, #back-list .github-column, #db-list .github-column, #other-list .github-column {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .phpstorm-column, #back-list .phpstorm-column, #db-list .phpstorm-column, #other-list .phpstorm-column {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .agile-column, #back-list .agile-column, #db-list .agile-column, #other-list .agile-column {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  #front-list .agile-column .agile-bg, #back-list .agile-column .agile-bg, #db-list .agile-column .agile-bg, #other-list .agile-column .agile-bg {
    margin-right: 18px !important;
  }
  #front-list .agile-column h5, #back-list .agile-column h5, #db-list .agile-column h5, #other-list .agile-column h5 {
    font-size: 19px !important;
    margin-top: 0;
  }
  #front-list .trello-column, #back-list .trello-column, #db-list .trello-column, #other-list .trello-column {
    -ms-grid-column: 5;
    grid-column: 5;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}

#front-list .column, #back-list .column, #db-list .column, #other-list .column {
  float: left;
  margin-top: 0 !important;
  height: 100%;
}

#front-list .column.hidden, #back-list .column.hidden, #db-list .column.hidden, #other-list .column.hidden {
  height: 75px;
  -webkit-transition: height .7s;
  transition: height .7s;
}

@media screen and (max-width: 322px) {
  #front-list .column.api-column h5, #back-list .column.api-column h5, #db-list .column.api-column h5, #other-list .column.api-column h5 {
    font-size: 19px !important;
  }
  #front-list .column.api-column .api-bg, #back-list .column.api-column .api-bg, #db-list .column.api-column .api-bg, #other-list .column.api-column .api-bg {
    margin-right: 12px !important;
  }
  #front-list .column.agile-column h5, #back-list .column.agile-column h5, #db-list .column.agile-column h5, #other-list .column.agile-column h5 {
    font-size: 19px !important;
  }
  #front-list .column.agile-column .agile-bg, #back-list .column.agile-column .agile-bg, #db-list .column.agile-column .agile-bg, #other-list .column.agile-column .agile-bg {
    margin-right: 12px !important;
  }
}

@media screen and (min-width: 550px) {
  #front-list .column.agile-column h5, #back-list .column.agile-column h5, #db-list .column.agile-column h5, #other-list .column.agile-column h5 {
    padding-top: 8px !important;
  }
}

@media screen and (min-width: 551px) {
  #front-list .column .api-bg, #back-list .column .api-bg, #db-list .column .api-bg, #other-list .column .api-bg {
    margin-right: 12px !important;
  }
  #front-list .column .agile-bg, #back-list .column .agile-bg, #db-list .column .agile-bg, #other-list .column .agile-bg {
    margin-right: 12px !important;
  }
  #front-list .column.agile-column h5, #back-list .column.agile-column h5, #db-list .column.agile-column h5, #other-list .column.agile-column h5 {
    font-size: 16px !important;
    margin-top: 5px;
  }
}

@media screen and (min-width: 597px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    padding-top: 8px !important;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 20px !important;
  }
}

@media screen and (min-width: 654px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 20px !important;
  }
}

@media screen and (min-width: 843px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
    margin-top: 0px;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 15px !important;
  }
}

@media screen and (min-width: 877px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
    margin-top: 10px;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 15px !important;
  }
}

@media screen and (min-width: 940px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
    margin-top: 10px;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 20px !important;
  }
}

@media screen and (min-width: 1115px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 18px !important;
    margin-top: 0;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 18px !important;
  }
}

@media screen and (min-width: 1115px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
    margin-top: 0;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 18px !important;
  }
}

@media screen and (min-width: 1159px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
    margin-top: 10px;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 18px !important;
  }
}

@media screen and (min-width: 1201px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
    margin-top: 10px;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 18px !important;
  }
}

@media screen and (min-width: 1433px) {
  #front-list .column .agile-column h5, #back-list .column .agile-column h5, #db-list .column .agile-column h5, #other-list .column .agile-column h5 {
    font-size: 19px !important;
    margin-top: 10px;
  }
  #front-list .column .agile-column .agile-bg, #back-list .column .agile-column .agile-bg, #db-list .column .agile-column .agile-bg, #other-list .column .agile-column .agile-bg {
    margin-right: 18px !important;
  }
}

#front-list .column .content, #back-list .column .content, #db-list .column .content, #other-list .column .content {
  background-color: #fdf0e8da;
  -webkit-box-shadow: 0 5px 10px #E9E9E9D1;
          box-shadow: 0 5px 10px #E9E9E9D1;
  border-radius: 20px;
  padding: 10px;
  margin-top: 0 !important;
  height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
}

#front-list .column .content.hidden, #back-list .column .content.hidden, #db-list .column .content.hidden, #other-list .column .content.hidden {
  height: 65px;
  -webkit-transition: all .6s;
  transition: all .6s;
}

#front-list .column .content:hover, #back-list .column .content:hover, #db-list .column .content:hover, #other-list .column .content:hover {
  cursor: pointer;
}

#front-list .column .content h5, #back-list .column .content h5, #db-list .column .content h5, #other-list .column .content h5 {
  height: 55px;
  font-size: 21px;
  font-family: "Marker", serif;
  padding-top: 5px;
}

#front-list .column .content p, #back-list .column .content p, #db-list .column .content p, #other-list .column .content p {
  padding: 0 10px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all .8s;
  transition: all .8s;
}

#front-list .column .content p.hidden, #back-list .column .content p.hidden, #db-list .column .content p.hidden, #other-list .column .content p.hidden {
  visibility: hidden;
  opacity: 0;
  padding: 0 10px;
  -webkit-transition: all .1s;
  transition: all .1s;
}

#front-list .column .square, #back-list .column .square, #db-list .column .square, #other-list .column .square {
  height: 45px;
  width: 45px;
  border-radius: 10px;
  margin: 0 20px 0 20px !important;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#front-list .column .square i, #back-list .column .square i, #db-list .column .square i, #other-list .column .square i {
  margin: auto;
}

@media screen and (min-width: 532px) {
  #front-list .column .square.agile-bg, #back-list .column .square.agile-bg, #db-list .column .square.agile-bg, #other-list .column .square.agile-bg {
    margin-right: 20px !important;
  }
}

@media screen and (min-width: 567px) {
  #front-list .column .square.api-bg, #back-list .column .square.api-bg, #db-list .column .square.api-bg, #other-list .column .square.api-bg {
    margin-right: 20px !important;
  }
}

/* Projets */
#projects .container .grid-container-line {
  margin-top: 30px !important;
}

#projects .container #portfolio-filters {
  list-style: none;
  margin-bottom: 20px;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#projects .container #portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 10px 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
  color: #800080;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid #800080;
}

#projects .container #portfolio-filters li:hover, #projects .container #portfolio-filters li.filter-active {
  color: #FFFFFF;
  background-color: #800080;
}

#projects .container #items-list, #projects .container #front-list, #projects .container #back-list, #projects .container #db-list, #projects .container #other-list {
  margin: 8px -16px;
}

#projects .container #items-list, #projects .container #items-list > .column {
  padding: 0 8px;
}

#projects .container #items-list:after {
  content: '';
  display: table;
  clear: both;
}

#projects .container .column {
  float: left;
  height: 262px;
  width: 100%;
  display: block;
  margin-top: 0 !important;
}

#projects .container .column.hidden {
  display: none;
}

#projects .container .content {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 5px 10px #E9E9E9D1;
          box-shadow: 0 5px 10px #E9E9E9D1;
  margin: 0 0 16px 0;
  border-radius: 20px;
  height: 246px;
  overflow: hidden;
  -webkit-transition: visibility 1s, opacity .5s ease-out;
  transition: visibility 1s, opacity .5s ease-out;
}

#projects .container .content img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 165px;
  border-radius: 20px 20px 0 0;
  -webkit-transition: height .4s ease-in-out;
  transition: height .4s ease-in-out;
}

#projects .container .content img:after {
  background: #0000004D;
}

#projects .container .content:hover img, #projects .container .content.show img {
  height: 0;
  -webkit-transition: height .4s ease-in-out;
  transition: height .4s ease-in-out;
}

#projects .container .content:hover h4, #projects .container .content.show h4 {
  color: #800080;
}

#projects .container .content:hover .skills, #projects .container .content.show .skills {
  color: #391208;
  -webkit-transition: color .2s linear;
  transition: color .2s linear;
}

#projects .container .content:hover .techno li, #projects .container .content.show .techno li {
  background-color: #8000808C;
  color: #FFFFFF;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

#projects .container .content .text-content {
  margin: 0 10px 0 10px !important;
}

#projects .container .content h4, #projects .container .content p {
  padding: 0 10px 0 10px;
}

#projects .container .content h4 {
  color: #412344;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#projects .container .content .skills {
  list-style: url("../../images/arrow.svg");
  position: relative;
  display: inline-block;
  word-wrap: break-word;
  overflow: auto;
  color: transparent;
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
  -webkit-transition: color .1s linear;
  transition: color .1s linear;
}

#projects .container .content .techno {
  list-style: none;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-padding-start: 0 !important;
          padding-inline-start: 0 !important;
}

#projects .container .content .techno li {
  display: inline-block;
  margin: 0 10px 0 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
  background-color: transparent;
  color: transparent;
  border-radius: 3px;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

@media screen and (min-width: 200px) {
  #projects.category {
    padding: 70px 15px;
  }
  #projects.category h3 {
    margin-left: 65px;
  }
}

@media screen and (min-width: 439px) {
  #projects.category {
    padding: 70px 50px;
  }
}

@media screen and (min-width: 715px) {
  #projects.category {
    padding: 70px 15px;
  }
  #projects.category h3 {
    margin-left: 65px;
  }
  #projects.category .column {
    width: 50%;
  }
}

@media screen and (min-width: 787px) {
  #projects.category {
    padding: 70px 50px;
  }
  #projects.category .column {
    width: 50%;
  }
}

@media screen and (min-width: 1061px) {
  #projects.category {
    padding: 70px 15px;
  }
  #projects.category h3 {
    margin-left: 65px;
  }
  #projects.category .column {
    width: 50%;
  }
}

@media screen and (min-width: 1083px) {
  #projects.category {
    padding: 70px 25px;
  }
  #projects.category h3 {
    margin-left: 55px;
  }
  #projects.category .column {
    width: 33%;
  }
}

@media screen and (min-width: 1226px) {
  #projects.category {
    padding: 70px 50px;
  }
  #projects.category h3 {
    margin-left: 30px;
  }
  #projects.category .column {
    width: 33%;
  }
}

/* Contact */
#about .text-align {
  text-align: center;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}
/*# sourceMappingURL=main.css.map */