/* COLORS */
body {
  font-family: 'Assistant', sans-serif;
  font-weight: normal;
  min-width: 300px;
  height: 100%;
  position: relative;
}
#loader {
  position: fixed;
  z-index: 10000;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  cursor: wait;
  background-color: #ffffff;
  background-image: url("../img/loading-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}
#btn-to-top {
  position: fixed;
  bottom: 20px;
  right: 14px;
  border: 0;
  border-bottom: solid 2px #000000;
  font-weight: 800;
  border-radius: 0;
  padding: 8px 8px 2px 8px;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 998;
  font-size: 17px;
}
#btn-to-top:hover,
#btn-to-top:focus {
  animation: colorSwatch 3s infinite ease;
  -webkit-animation: colorSwatch 3s infinite ease;
}
.pause-anim {
  animation-play-state: paused !important;
}
.portfolio {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}
.portfolio * {
  box-sizing: border-box;
}
.portfolio img {
  max-width: 100%;
}
.portfolio .head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
  padding: 10px 10px 0px 10px;
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 1440px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .portfolio .head {
    padding-left: 0;
    padding-right: 0;
  }
}
.portfolio .head .logo {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .portfolio .head .logo {
    padding-left: 10px;
  }
}
.portfolio .head .logo a {
  text-decoration: none;
  color: #000000;
}
.portfolio .head .logo img {
  width: 45px;
}
.portfolio .head .logo h1 {
  display: inline-block;
  font-size: 22px;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  padding: 0 10px;
  margin: 0;
  vertical-align: bottom;
}
.portfolio .head .logo h1:hover,
.portfolio .head .logo h1:focus {
  animation: colorSwatch 3s infinite ease;
  -webkit-animation: colorSwatch 3s infinite ease;
}
.portfolio .head .anim-state button {
  background: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}
.portfolio .head .anim-state button span.icon {
  position: relative;
  top: 2px;
}
@media screen and (max-width: 768px) {
  .portfolio .head .anim-state.desk {
    display: none;
  }
}
.portfolio .head .anim-state.nav-item:hover {
  padding: 10px 10px 10px 15px !important;
}
.portfolio .head .anim-state.nav-item span.icon {
  margin-right: 0 !important;
}
.portfolio .menu {
  width: 100%;
  display: inline-block;
  height: 100%;
  position: relative;
  z-index: 9999;
}
.portfolio .menu ul {
  display: flex;
  flex-direction: column-reverse;
  padding: 0;
  margin: 0;
  list-style: none;
  bottom: 50%;
  transform: rotate(180deg) translateY(-55%);
  position: fixed;
}
@media screen and (max-width: 768px) {
  .portfolio .menu ul {
    display: none;
  }
}
.portfolio .menu ul.last-menu li {
  writing-mode: vertical-lr;
}
.portfolio .menu ul li {
  writing-mode: vertical-rl;
  padding: 40px 0;
  -webkit-font-smoothing: auto;
  font-size: 24.3px;
  font-family: 'Assistant';
  font-weight: 700;
  letter-spacing: 0.4px;
}
.portfolio .menu ul li a {
  color: #000000;
  text-decoration: none;
  padding-left: 2px;
  transition: all 0.2s ease-in-out;
}
.portfolio .menu ul li a:after {
  content: "";
  width: 2px;
  height: 0%;
  display: block;
  transition: height 0.2s ease-in-out;
}
.portfolio .menu ul li a:hover:after {
  content: "";
  height: 100%;
}
.portfolio .menu ul li:nth-child(1) a:hover {
  color: #ffce54;
}
.portfolio .menu ul li:nth-child(1) a:after {
  background-color: #ffce54;
}
.portfolio .menu ul li:nth-child(2) a:hover {
  color: #f26372;
}
.portfolio .menu ul li:nth-child(2) a:after {
  background-color: #f26372;
}
.portfolio .menu ul li:nth-child(3) a:hover {
  color: #827fff;
}
.portfolio .menu ul li:nth-child(3) a:after {
  background-color: #827fff;
}
.portfolio #mob-menu-trigger {
  display: none;
  cursor: pointer;
  border-bottom: solid 2px #000000;
  font-family: 'Assistant', sans-serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 0;
  padding: 1px 0px 3px 0px;
  margin-bottom: 8px;
  color: #000000;
  position: relative;
  z-index: 9999;
}
.portfolio #mob-menu-trigger:hover,
.portfolio #mob-menu-trigger:focus {
  animation: colorSwatch 3s infinite ease;
  -webkit-animation: colorSwatch 3s infinite ease;
}
@media screen and (max-width: 768px) {
  .portfolio #mob-menu-trigger {
    display: inline-block;
    margin-right: 10px;
  }
}
@keyframes colorSwatch {
  0% {
    color: #000000;
    border-bottom-color: #000000;
  }
  25% {
    color: #ffce54;
    border-bottom-color: #ffce54;
  }
  50% {
    color: #f26372;
    border-bottom-color: #f26372;
  }
  75% {
    color: #827fff;
    border-bottom-color: #827fff;
  }
  100% {
    color: #000000;
    border-bottom-color: #000000;
  }
}
.portfolio #mob-menu {
  background-color: #000000;
  padding-bottom: 12px;
}
.portfolio #mob-menu .nav-item {
  color: #ffffff;
  font-family: 'Assistant', sans-serif;
  font-weight: 700;
  font-size: 24px;
  padding: 10px 10px 10px 15px;
  position: relative;
  transition: all 0.2s ease;
}
.portfolio #mob-menu .nav-item:hover,
.portfolio #mob-menu .nav-item:focus {
  text-decoration: none;
  padding-left: 25px;
}
.portfolio #mob-menu .nav-item:hover:first-child,
.portfolio #mob-menu .nav-item:focus:first-child {
  color: #ffce54;
}
.portfolio #mob-menu .nav-item:hover:nth-child(2) .nav-link,
.portfolio #mob-menu .nav-item:focus:nth-child(2) .nav-link {
  color: #f26372;
}
.portfolio #mob-menu .nav-item:hover:nth-child(3),
.portfolio #mob-menu .nav-item:focus:nth-child(3) {
  color: #827fff;
}
.portfolio #mob-menu .nav-item span:not(.sr-only) {
  margin-right: 22px;
}
.portfolio #mob-menu .nav-item.dropdown a.dropdown-toggle {
  color: #ffffff;
}
.portfolio #mob-menu .nav-item.dropdown a.dropdown-toggle:after {
  display: none;
}
.portfolio #mob-menu .nav-item.dropdown .dropdown-menu {
  background-color: #000000;
  padding: 0;
}
.portfolio #mob-menu .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #ffffff;
  padding: .2rem 2.5rem;
}
.portfolio #mob-menu .nav-item.dropdown .dropdown-menu .dropdown-item:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: transparent;
  transition: width 0.4s ease-in-out;
}
.portfolio #mob-menu .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #f26372;
  transition: all 0.3s ease;
}
.portfolio #mob-menu .nav-item.dropdown .dropdown-menu .dropdown-item:hover:after {
  background-color: #f26372;
  width: 100%;
}
.portfolio .welcome {
  display: inline-block;
  padding: 0 40px;
  margin-top: 70px;
  position: relative;
}
.portfolio .welcome .row {
  justify-content: center;
  flex-direction: row-reverse;
}
.portfolio .welcome .welcome-inside {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
}
.portfolio .welcome .welcome-inside .inner-circle {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 350px;
  background-color: rgba(255, 206, 84, 0.9);
  color: #ffffff;
  border-radius: 100%;
  position: absolute;
  right: 13%;
}
@media screen and (max-width: 900px) {
  .portfolio .welcome .welcome-inside .inner-circle {
    right: 1%;
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .welcome .welcome-inside .inner-circle {
    position: relative;
  }
}
@media screen and (max-width: 520px) {
  .portfolio .welcome .welcome-inside .inner-circle {
    width: 260px;
    height: 260px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .welcome .welcome-inside .inner-circle {
    width: 240px;
    height: 240px;
  }
}
.portfolio .welcome .welcome-inside .inner-circle .text-inside-circle {
  font-size: 78px;
  font-family: 'Poppins', 'Assistant', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 520px) {
  .portfolio .welcome .welcome-inside .inner-circle .text-inside-circle {
    font-size: 64px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .welcome .welcome-inside .inner-circle .text-inside-circle {
    font-size: 54px;
  }
}
.portfolio .welcome .welcome-inside .inner-circle .text-bend {
  color: #000000;
  position: relative;
  left: -110px;
  top: 8px;
  font-size: 24px;
  font-weight: bold;
  animation: rotateText 90s infinite linear;
  -webkit-animation: rotateText 90s infinite linear;
}
@media screen and (max-width: 900px) {
  .portfolio .welcome .welcome-inside .inner-circle .text-bend {
    font-size: 22px;
  }
}
@media screen and (max-width: 520px) {
  .portfolio .welcome .welcome-inside .inner-circle .text-bend {
    font-size: 18px;
    left: -90px;
    top: 8px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .welcome .welcome-inside .inner-circle .text-bend {
    font-size: 16.5px;
    left: -75px;
  }
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.portfolio .welcome .welcome-inside .portrait {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  padding-right: 14%;
}
@media screen and (max-width: 900px) {
  .portfolio .welcome .welcome-inside .portrait {
    padding-right: 0;
    justify-content: flex-start;
    padding-left: 7%;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .welcome .welcome-inside .portrait {
    flex-wrap: wrap-reverse;
    justify-content: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .welcome .welcome-inside .portrait {
    padding-left: 4%;
  }
}
.portfolio .welcome .welcome-inside .portrait img {
  min-height: 250px;
  height: 600px;
  position: relative;
}
@media screen and (max-width: 780px) {
  .portfolio .welcome .welcome-inside .portrait img {
    height: 75vw;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .welcome .welcome-inside .portrait img {
    top: -60px;
  }
}
.portfolio .welcome .welcome-inside .portrait figure#scene {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 780px) {
  .portfolio .welcome .welcome-inside .portrait figure#scene {
    display: none;
  }
}
.portfolio .welcome .welcome-inside .portrait figure#scene img[class^="elt-portrait"] {
  position: absolute;
  min-height: auto !important;
  z-index: -1;
}
.portfolio .welcome .welcome-inside .portrait figure#scene .elt-portrait-1 {
  top: auto !important;
  left: 30px !important;
  bottom: 10px !important;
  right: auto !important;
  height: 126px;
}
.portfolio .welcome .welcome-inside .portrait figure#scene .elt-portrait-2 {
  top: auto !important;
  bottom: 28px !important;
  right: 139px !important;
  left: auto !important;
  height: 160px;
}
.portfolio .welcome .welcome-inside .portrait figure#scene .elt-portrait-3 {
  top: 234px !important;
  left: 118px !important;
  right: auto !important;
  bottom: auto !important;
  height: 68px;
}
.portfolio .welcome .welcome-inside .portrait figure.mob-scene {
  display: none;
}
@media screen and (max-width: 780px) {
  .portfolio .welcome .welcome-inside .portrait figure.mob-scene {
    display: inline-block;
    position: relative;
  }
}
.portfolio .project {
  display: inline-block;
  padding: 0 40px;
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 667px) {
  .portfolio .project {
    margin-top: 50px;
  }
}
.portfolio .project .row {
  justify-content: center;
}
.portfolio .project .project-intro {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
}
.portfolio .project .project-intro .inner-circle {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 350px;
  background-color: rgba(242, 99, 114, 0.9);
  color: #ffffff;
  border-radius: 100%;
  position: absolute;
  left: 18%;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .portfolio .project .project-intro .inner-circle {
    left: 10%;
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .project .project-intro .inner-circle {
    left: 1%;
    position: relative;
  }
}
@media screen and (max-width: 520px) {
  .portfolio .project .project-intro .inner-circle {
    width: 260px;
    height: 260px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .project .project-intro .inner-circle {
    width: 240px;
    height: 240px;
  }
}
.portfolio .project .project-intro .inner-circle .text-inside-circle {
  font-size: 78px;
  font-family: 'Poppins', 'Assistant', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 520px) {
  .portfolio .project .project-intro .inner-circle .text-inside-circle {
    font-size: 64px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .project .project-intro .inner-circle .text-inside-circle {
    font-size: 54px;
  }
}
.portfolio .project .project-intro .inner-circle .text-bend {
  color: #000000;
  position: relative;
  left: -103px;
  top: 8px;
  font-size: 24px;
  font-weight: bold;
  animation: rotateText 80s infinite linear;
  -webkit-animation: rotateText 80s infinite linear;
}
@media screen and (max-width: 900px) {
  .portfolio .project .project-intro .inner-circle .text-bend {
    font-size: 22px;
  }
}
@media screen and (max-width: 520px) {
  .portfolio .project .project-intro .inner-circle .text-bend {
    font-size: 18px;
    left: -85px;
    top: 8px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .project .project-intro .inner-circle .text-bend {
    font-size: 16.5px;
    left: -71px;
  }
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.portfolio .project .project-intro .tablet {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  padding-right: 5%;
}
@media screen and (max-width: 900px) {
  .portfolio .project .project-intro .tablet {
    padding-right: 0;
    justify-content: flex-start;
    padding-left: 7%;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .project .project-intro .tablet {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
  }
}
.portfolio .project .project-intro .tablet img {
  min-height: 250px;
  height: 430px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .portfolio .project .project-intro .tablet img {
    left: 10% !important;
  }
}
@media screen and (max-width: 780px) {
  .portfolio .project .project-intro .tablet img {
    height: 75vw;
    left: 0 !important;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .project .project-intro .tablet img {
    top: -45px;
  }
}
.portfolio .project .project-intro .tablet figure#scene2 {
  display: inline-block;
  position: relative;
  left: 13%;
}
@media screen and (max-width: 780px) {
  .portfolio .project .project-intro .tablet figure#scene2 {
    display: none;
  }
}
.portfolio .project .project-intro .tablet figure#scene2 img[class^="elt-tablet"] {
  position: absolute;
  min-height: auto !important;
  z-index: -1;
}
.portfolio .project .project-intro .tablet figure#scene2 .elt-tablet-1 {
  top: auto !important;
  left: 200px !important;
  bottom: 150px !important;
  right: auto !important;
  height: 70px;
}
@media screen and (max-width: 900px) {
  .portfolio .project .project-intro .tablet figure#scene2 .elt-tablet-1 {
    left: 260px !important;
    bottom: 140px !important;
  }
}
.portfolio .project .project-intro .tablet figure.mob-scene {
  display: none;
}
@media screen and (max-width: 780px) {
  .portfolio .project .project-intro .tablet figure.mob-scene {
    display: inline-block;
    position: relative;
  }
}
.portfolio .project .project-list {
  padding: 0 30px;
  margin-top: 50px;
}
@media screen and (max-width: 780px) {
  .portfolio .project .project-list {
    margin-top: -50px;
  }
}
@media screen and (max-width: 576px) {
  .portfolio .project .project-list {
    padding: 0;
  }
}
.portfolio .project .project-list .list {
  list-style: none;
  padding: 0 0 0 30px;
}
@media screen and (max-width: 576px) {
  .portfolio .project .project-list .list {
    padding: 10px;
  }
}
.portfolio .project .project-list .list .card {
  border-radius: 0;
  border: none;
  border-top: solid 2px #000000;
  position: relative;
  padding: 14px 6px;
  margin: 1% 1% 36px 1%;
  justify-content: space-between;
}
.portfolio .project .project-list .list .card a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  color: #000000;
}
.portfolio .project .project-list .list .card a:hover {
  text-decoration: none;
}
@media screen and (min-width: 576px) {
  .portfolio .project .project-list .list .card.col-sm-6 {
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
  }
}
@media screen and (min-width: 992px) {
  .portfolio .project .project-list .list .card.col-lg-3 {
    -ms-flex: 0 0 23%;
    flex: 0 0 23%;
    max-width: 23%;
  }
}
@media screen and (max-width: 520px) {
  .portfolio .project .project-list .list .card {
    border-top-width: 1px;
  }
}
.portfolio .project .project-list .list .card .card-img {
  display: flex;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 12px;
  top: -25px;
  border: solid 2px #000000;
  border-radius: 100%;
  padding: 9px;
  background-color: #ffffff;
  background-clip: padding-box;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .portfolio .project .project-list .list .card .card-img {
    border-width: 1px;
  }
}
.portfolio .project .project-list .list .card h3 {
  margin-top: 18px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}
.portfolio .project .project-list .list .card p {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.portfolio .project .project-list .list .card button {
  border: none;
  background-color: #ffffff;
  color: #f26372;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-end;
  font-weight: 700;
  padding-right: 0;
  margin-right: 5px;
  overflow: hidden;
}
.portfolio .project .project-list .list .card button:after {
  content: "";
  display: block;
  width: 21%;
  height: 2px;
  background-color: #f26372;
  transition: width 0.4s ease;
  left: 23px;
  position: relative;
}
.portfolio .project .project-list .list .card button:hover:after {
  width: 100%;
}
.portfolio .project .project-list .list .card button a {
  color: #f26372;
  text-decoration: none;
}
.portfolio .image-gallery {
  margin-top: 60px;
  padding-right: 0;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .portfolio .image-gallery {
    padding-left: 0;
  }
}
.portfolio .image-gallery .project-nav-indicator {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 89%;
  margin: auto;
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .portfolio .image-gallery .project-nav-indicator {
    display: none;
  }
}
.portfolio .image-gallery .project-nav-indicator.solo {
  justify-content: flex-end;
}
.portfolio .image-gallery .project-nav-indicator div:hover {
  display: inline-block;
}
.portfolio .image-gallery .project-nav-indicator div:hover .hidden-project {
  visibility: visible;
  opacity: 1;
}
.portfolio .image-gallery .project-nav-indicator a {
  color: #000000;
  font-size: 18px;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  font-weight: 700;
  transition: all 0.2s ease;
}
.portfolio .image-gallery .project-nav-indicator a:hover {
  color: #f26372;
}
.portfolio .image-gallery .project-nav-indicator a:hover:after {
  width: 100%;
}
.portfolio .image-gallery .project-nav-indicator a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000000;
  display: block;
  margin-top: 2px;
  transition: width 0.3s ease;
}
@media screen and (max-width: 768px) {
  .portfolio .image-gallery .project-nav-indicator a:after {
    width: 100%;
  }
}
.portfolio .image-gallery .project-nav-indicator .hidden-project {
  visibility: hidden;
  opacity: 0;
  display: block;
  font-size: 15px;
  margin-top: 4px;
  transition: all 0.3s ease;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .portfolio .image-gallery .project-nav-indicator .hidden-project {
    visibility: visible;
    opacity: 1;
  }
}
.portfolio .image-gallery .project-title {
  width: 100%;
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 0 16px;
}
@media screen and (max-width: 962px) {
  .portfolio .image-gallery .project-title {
    padding: 0 5%;
  }
}
.portfolio .image-gallery .project-title ul.project-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.portfolio .image-gallery .project-title ul.project-nav li {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  margin-bottom: 2px;
  display: inline-block;
  width: auto;
  padding: 2px 0;
}
.portfolio .image-gallery .project-title ul.project-nav li:first-child {
  border-bottom: solid 2px #000000;
}
.portfolio .image-gallery .project-title ul.project-nav li:not(:first-child) {
  display: none;
}
.portfolio .image-gallery .project-title ul.project-nav li a {
  color: #000000;
  text-decoration: none;
}
.portfolio .image-gallery .project-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  margin-bottom: 2px;
}
@media screen and (max-width: 372px) {
  .portfolio .image-gallery .project-title .info span.col-sm-6 {
    display: block;
    padding: 6px 0;
  }
}
.portfolio .image-gallery .project-title .info span a {
  color: #000000;
}
.portfolio .image-gallery .project-title p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 10px;
}
.portfolio .image-gallery .project-title p span {
  display: block;
  font-style: italic;
  font-size: 16px;
  margin-top: 13px;
}
.portfolio .image-gallery .flex-row .flex-column {
  max-width: 30%;
}
@media screen and (max-width: 962px) {
  .portfolio .image-gallery .flex-row .flex-column {
    max-width: 46%;
  }
}
@media screen and (max-width: 576px) {
  .portfolio .image-gallery .flex-row .flex-column {
    max-width: 80%;
  }
}
.portfolio .image-gallery .flex-row .flex-column.duo-desk {
  max-width: 50%;
}
@media screen and (max-width: 962px) {
  .portfolio .image-gallery .flex-row .flex-column.duo-desk {
    max-width: 100%;
  }
}
.portfolio .image-gallery .flex-row .flex-column.duo-app {
  max-width: 50%;
}
.portfolio .image-gallery .flex-row figure {
  position: relative;
  margin: 13px;
}
.portfolio .image-gallery .flex-row figure:hover a:before,
.portfolio .image-gallery .flex-row figure:hover a:after {
  opacity: 1;
}
.portfolio .image-gallery .flex-row figure:hover .overlay {
  opacity: 1;
}
.portfolio .image-gallery .flex-row figure a {
  display: inline-block;
  width: 100%;
  height: auto;
  position: relative;
}
.portfolio .image-gallery .flex-row figure a .overlay {
  display: inline-block;
  position: absolute;
  background-color: rgba(242, 99, 114, 0.9);
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.portfolio .image-gallery .flex-row figure a .overlay .icon {
  height: 100%;
  font-size: 2.8em;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.portfolio .image-gallery .flex-row figure a .overlay p {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  height: 100%;
  margin: 0;
  justify-content: center;
  align-items: center;
  padding-top: 78px;
  color: white;
  font-size: 18px;
}
.portfolio .image-gallery .flex-row img {
  border: solid 1px #dfdfdf;
}
.portfolio .image-gallery .project-filter {
  text-align: center;
  padding: 0 18px;
}
@media screen and (max-width: 550px) {
  .portfolio .image-gallery .project-filter {
    margin-top: 30px;
  }
}
.portfolio .image-gallery .project-filter input[type="radio"] {
  display: none;
}
.portfolio .image-gallery .project-filter label {
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin: 14px 8px;
  border-bottom: solid 2px transparent;
}
@media screen and (max-width: 550px) {
  .portfolio .image-gallery .project-filter label {
    margin: 6px 8px;
  }
}
@media screen and (max-width: 372px) {
  .portfolio .image-gallery .project-filter label {
    margin: 3px 8px;
  }
}
.portfolio .image-gallery .project-filter input[type="radio"][id^="filtre"]:checked + label {
  border-bottom: solid 2px #f26372;
  color: #f26372;
}
.portfolio .image-gallery .project-filter input[type="radio"][id^="filtre"] + label:hover {
  border-bottom: solid 2px #f26372;
  color: #f26372;
}
.portfolio .image-gallery .school-project {
  float: left;
  margin-top: 35px;
}
@media screen and (max-width: 962px) {
  .portfolio .image-gallery .school-project.col-6 {
    max-width: 100%;
  }
}
.portfolio .image-gallery .school-project header {
  padding: 0 2% 0 7%;
}
@media screen and (max-width: 962px) {
  .portfolio .image-gallery .school-project header {
    padding: 0 2% 0 5%;
  }
}
@media screen and (max-width: 576px) {
  .portfolio .image-gallery .school-project header {
    padding: 0 3%;
  }
}
.portfolio .image-gallery .school-project header h3 {
  font-family: 'Poppins';
  font-size: 20px;
  border-bottom: solid 2px;
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.portfolio .image-gallery .school-project header p {
  font-size: 18px;
}
.portfolio .image-gallery .school-project .project-images {
  padding: 0 0 0 5%;
  justify-content: space-evenly;
}
@media screen and (max-width: 750px) {
  .portfolio .image-gallery .school-project .project-images {
    padding: 0 0 0 3%;
  }
}
@media screen and (max-width: 576px) {
  .portfolio .image-gallery .school-project .project-images {
    padding: 0;
  }
}
.portfolio .image-gallery .school-project .project-images figure {
  margin: 13px;
}
.portfolio .image-gallery .school-project .school-info p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #777777;
  font-style: italic;
}
.portfolio .image-gallery .school-project .school-info p a {
  color: #777777;
  text-decoration: underline;
}
.portfolio .image-gallery .school-project .school-info p a:hover {
  color: #f26372;
}
.portfolio .image-gallery .school-project .school-info p.team-members a {
  text-decoration: none;
}
.portfolio .contact {
  display: inline-block;
  padding: 0 40px;
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width: 667px) {
  .portfolio .contact {
    margin-top: 120px;
  }
}
.portfolio .contact .row {
  justify-content: center;
  flex-direction: row-reverse;
}
.portfolio .contact .contact-inside {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
}
.portfolio .contact .contact-inside .inner-circle {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 350px;
  background-color: rgba(130, 127, 255, 0.9);
  color: #ffffff;
  border-radius: 100%;
  position: absolute;
  right: 13%;
}
@media screen and (max-width: 900px) {
  .portfolio .contact .contact-inside .inner-circle {
    right: -1%;
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .contact .contact-inside .inner-circle {
    position: relative;
  }
}
@media screen and (max-width: 520px) {
  .portfolio .contact .contact-inside .inner-circle {
    width: 260px;
    height: 260px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .contact .contact-inside .inner-circle {
    width: 240px;
    height: 240px;
  }
}
.portfolio .contact .contact-inside .inner-circle .text-inside-circle {
  font-size: 78px;
  font-family: 'Poppins', 'Assistant', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 520px) {
  .portfolio .contact .contact-inside .inner-circle .text-inside-circle {
    font-size: 64px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .contact .contact-inside .inner-circle .text-inside-circle {
    font-size: 54px;
  }
}
.portfolio .contact .contact-inside .inner-circle .text-bend {
  color: #000000;
  position: relative;
  left: -112px;
  top: 8px;
  font-size: 24px;
  font-weight: bold;
  animation: rotateText 90s infinite linear;
  -webkit-animation: rotateText 90s infinite linear;
}
@media screen and (max-width: 900px) {
  .portfolio .contact .contact-inside .inner-circle .text-bend {
    font-size: 22px;
  }
}
@media screen and (max-width: 520px) {
  .portfolio .contact .contact-inside .inner-circle .text-bend {
    font-size: 18px;
    left: -90px;
    top: 8px;
  }
}
@media screen and (max-width: 350px) {
  .portfolio .contact .contact-inside .inner-circle .text-bend {
    font-size: 16.5px;
    left: -77px;
  }
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.portfolio .contact .contact-inside .phone {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  padding-left: 8%;
}
@media screen and (max-width: 900px) {
  .portfolio .contact .contact-inside .phone {
    padding-right: 0;
    justify-content: flex-start;
    padding-left: 7%;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .contact .contact-inside .phone {
    flex-wrap: wrap-reverse;
    justify-content: center;
    padding-left: 0;
  }
}
.portfolio .contact .contact-inside .phone img {
  min-height: 250px;
  height: 560px;
  position: relative;
}
@media screen and (max-width: 780px) {
  .portfolio .contact .contact-inside .phone img {
    height: 75vw;
  }
}
@media screen (min-width: 577px) and (max-width: 667px) {
  .portfolio .contact .contact-inside .phone img {
    top: -60px;
  }
}
.portfolio .contact .contact-inside .phone figure#scene3 {
  display: flex;
  position: relative;
}
@media screen and (max-width: 780px) {
  .portfolio .contact .contact-inside .phone figure#scene3 {
    display: none;
  }
}
.portfolio .contact .contact-inside .phone figure#scene3 img[class^="elt-portrait"] {
  position: absolute;
  min-height: auto !important;
  z-index: -1;
}
.portfolio .contact .contact-inside .phone figure#scene3 img.phone-elt {
  top: 3% !important;
  left: 2% !important;
  bottom: auto !important;
  right: auto !important;
  height: 415px !important;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .portfolio .contact .contact-inside .phone figure#scene3 img.phone-elt {
    height: 33vw !important;
  }
}
@media screen and (max-width: 1100px) {
  .portfolio .contact .contact-inside .phone figure#scene3 img.phone-elt {
    top: 8vh !important;
  }
}
@media screen and (max-width: 870px) {
  .portfolio .contact .contact-inside .phone figure#scene3 img.phone-elt {
    top: 10vh !important;
  }
}
.portfolio .contact .contact-inside .phone figure.mob-scene {
  display: none;
}
@media screen and (max-width: 780px) {
  .portfolio .contact .contact-inside .phone figure.mob-scene {
    display: inline-block;
    position: relative;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .contact .contact-inside .phone figure.mob-scene {
    position: absolute;
    padding-left: 25px;
    top: -66%;
  }
}
@media screen and (max-width: 577px) {
  .portfolio .contact .contact-inside .phone figure.mob-scene {
    top: -74%;
  }
}
.portfolio .contact .contact-links {
  padding-left: 25px;
  margin-top: -100px;
}
@media screen and (max-width: 800px) {
  .portfolio .contact .contact-links {
    margin-top: -160px;
  }
}
@media screen and (max-width: 667px) {
  .portfolio .contact .contact-links {
    margin-top: 50px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 577px) {
  .portfolio .contact .contact-links {
    padding: 0;
  }
}
.portfolio .contact .contact-links .row {
  flex-direction: row;
}
.portfolio .contact .contact-links p {
  margin-top: 8px;
  color: #000000;
  text-align: center;
  font-size: 20px;
}
.portfolio .contact .contact-links a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 190px;
  border-radius: 170px;
  transition: all 0.2s ease-out;
  border: solid 2px #000000;
  text-decoration: none;
  background-color: #ffffff;
}
@media screen and (max-width: 992px) {
  .portfolio .contact .contact-links a {
    height: 170px;
    width: 170px;
    margin: auto;
  }
}
.portfolio .contact .contact-links a:hover {
  transform: scale(1.1);
}
.portfolio .contact .contact-links a:hover:after {
  content: "";
  font-family: 'ptf-icon-font';
  display: inline-block;
  position: absolute;
  color: #ffffff;
  right: 13px;
  top: -3px;
  border-radius: 60px;
  width: 40px;
  height: 40px;
  padding-top: 4px;
  text-align: center;
  font-size: 20px;
}
.portfolio .contact .contact-links a.mail:hover:after {
  content: "\e905";
  background-color: #f26372;
  padding-right: 2px;
}
.portfolio .contact .contact-links a.cv:hover:after {
  content: "\e902";
  background-color: #ffce54;
}
.portfolio .contact .contact-links a.linkedin:hover:after {
  content: "\e907";
  background-color: #827fff;
}
.portfolio .contact .contact-links a.deviant:hover:after {
  content: "\e907";
  background-color: #f26372;
}
.portfolio .contact .contact-links a .icon {
  font-size: 76px;
  text-align: center;
  width: 100%;
  height: auto;
}
.portfolio .contact .contact-links a .icon.icon-email2 {
  color: #f26372;
}
.portfolio .contact .contact-links a .icon.icon-curriculum-vitae {
  color: #ffce54;
}
.portfolio .contact .contact-links a .icon.icon-linkedin2 {
  color: #827fff;
}
.portfolio .contact .contact-links a .icon.icon-deviantart {
  color: #f26372;
}
@font-face {
  font-family: 'ptf-icon-font';
  src: url('../font/ptf-icon-font.eot');
  src: url('../font/ptf-icon-font.ttf');
  font-weight: normal;
  font-style: normal;
}
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'ptf-icon-font' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-wrench:before {
  content: "\e90c";
}
.icon-magic:before {
  content: "\e90d";
}
.icon-group:before {
  content: "\e90f";
}
.icon-users:before {
  content: "\e90f";
}
.icon-eye:before {
  content: "\e902";
}
.icon-pictures:before {
  content: "\e90a";
}
.icon-send:before {
  content: "\e905";
}
.icon-cursor:before {
  content: "\e907";
}
.icon-edit:before {
  content: "\e908";
}
.icon-email2:before {
  content: "\e900";
}
.icon-curriculum-vitae:before {
  content: "\e901";
}
.icon-zoom-in:before {
  content: "\e906";
}
.icon-external-link:before {
  content: "\e90b";
}
.icon-map-pin:before {
  content: "\e909";
}
.icon-plus:before {
  content: "\e903";
}
.icon-minus:before {
  content: "\e904";
}
.icon-deviantart:before {
  content: "\eaaa";
}
.icon-linkedin2:before {
  content: "\eaca";
}
.icon-images:before {
  content: "\e90e";
}
.icon-menu2:before {
  content: "\e9be";
}
.icon-location:before {
  content: "\e947";
}
.icon-link1:before {
  content: "\e9cb";
}
.icon-play3:before {
  content: "\ea1c";
}
.icon-pause2:before {
  content: "\ea1d";
}
