body {
  background-color: #151515;
  font-family: "Questrial", sans-serif;
  color: #e0e7eb;
  overflow-x: hidden;
}
a:visited,
a:active {
  color: #e0e7eb;
}
/* INTRO CONTAINER */

.distortion {
  /* width: 300px;
	height: 463px; */
  width: 1920px;
  height: 1080px;
  align-self: flex-end;
  /* to center */
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.intro-col {
  font-size: 15em;
  color: #e0e7eb;
}

.project-row-intro {
  width: 98%;
  /* padding: 0% 7%;
	margin: 0 autob; */
}

/* END INTRO CONTAINER */

/* Animated Logo */

@keyframes tipsy {
  0% {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(360deg);
  }
}

#logo-a {
  text-align: left;
  z-index: 95;
  max-height: 35px;
  font-family: Lato, sans-serif;
  color: #fffbf1;
  /* text-shadow: 0 1px 1px #2e2e31, 0 2px 2px #2e2e31; */
  font-size: 50px;
  font-weight: bold;
  letter-spacing: -3px;
  text-decoration: none;
  margin: 0;
  position: absolute;
  top: -20px;
  /* left: 50%;
	transform: translateX(-50%) translateY(-50%); */
  /* to avoid alignment errors */
}

#logo-a:before,
#logo-a:after {
  content: "";
  padding: 100 14px;
  position: absolute;
  left: 50%;
  width: 100%;
  top: 90%;
  display: block;
  /* border: 5px solid red; */
  border: 5px solid #ee2255;
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  animation: 10s infinite alternate ease-in-out tipsy;
}

#logo-a:before {
  /* border-color: #d9524a #d9524a rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); */
  border-color: #ee2255 #ee2255 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  z-index: -1;
}

#logo-a:after {
  /* border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #d9524a #d9524a; */
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ee2255 #ee2255;
  box-shadow: 5px 5px 5px rgba(46, 46, 49, 0.178);
}

/* End Animated Logo */

/* Animated Logo Footer*/

@keyframes tipsy {
  0% {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotate(360deg);
  }
}

/* End Animated Logo */

@keyframes scrollbar-animated {
  0% {
    overflow-y: hidden;
  }
  50% {
    overflow-y: hidden;
  }
  100% {
    overflow-y: visible;
  }
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #ee2255;
  /*rgba(224, 231, 235, 1)*/
  height: 10px;
}

::-webkit-scrollbar {
  height: 10px;
  /* width: 3px; */
  width: 10px;
  background-color: #151515;
}

.progress-bar {
  display: block;
  background: #f16b81;
  height: 5px;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 99;
}

.scrollToTop {
  display: none;
  position: fixed;
  right: 19px;
  bottom: 18px;
  /* color: rgba(0, 0, 0, 0.4); */
  color: rgba(224, 231, 235, 0.4);
  z-index: 99;
}

.scrollToTop:hover {
  text-decoration: none;
  /* color: rgba(0, 0, 0, 0.9); */
  color: rgba(224, 231, 235, 0.9);
}

a {
  color: #e0e7eb;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: #ee2244;
  text-decoration: none;
}

a:visited {
  color: rgba(196, 196, 196, 0.9);
}

::selection {
  background-color: #ee2255;
}

::-moz-selection {
  background-color: #ee2255;
}

h3 {
  font-family: "Questrial", serif;
  font-size: 25px;
  padding-bottom: 25px;
}

/* STARTER ANIMATIONS */

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated-name-1 {
  /* Nicka */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated-name-2 {
  /* Znà */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animated-name-3 {
  /*  Web Graphic Designer & UI/UX Designer */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated-name-end {
  /*	NAME CONTAINER FADING OUT */
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
.animated-name-end {
  /*	NAME CONTAINER FADING OUT */
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
@-webkit-keyframes FadeAway {
  0% {
    top: 50%;
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: -250%;
    opacity: 0;
  }
}
@keyframes FadeAway {
  0% {
    top: 50%;
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: 0;
  }
  100% {
    top: -250%;
    opacity: 0;
  }
}

@-webkit-keyframes ProtectionAway {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes ProtectionAway {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.animated-header-a {
  /* HEADER HOME */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated-header-b {
  /* HEADER WORK */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animated-prj-1a {
  /* FIRST ROW ON HOME PAGE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 5.8s;
  animation-delay: 5.8s;
}

.animated-prj-1b {
  /* PROJECT FIRST ROW ON WORK PAGE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.animated-prj-2a {
  /* PROJECT SECOND ROW ON HOME PAGE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 6.2s;
  animation-delay: 6.2s;
}

.animated-prj-2b {
  /* PROJECT SECOND ROW ON WORK PAGE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.animated-prj-3b {
  /* PROJECT THIRD ROW ON BANNERS PAGE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated-prj-4b {
  /* PROJECT FORTH ROW ON BANNERS PAGE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.animated-prj-5b {
  /* PROJECT FIFTH ROW ON BANNERS PAGE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

/* .star {
	visibility: hidden;
} */

.star-fade {
  -webkit-animation: animat_show 1.5s;
  animation: animat_show 1.5s;
  visibility: visible !important;
}

@-webkit-keyframes animat_show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animat_show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animated-bio-1 {
  /*	BIO START HERE */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.animated-bio-2 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animated-bio-3 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.animated-bio-4 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated-bio-5 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.animated-bio-6 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.animated-contacts {
  /* CONTACTS ROW */
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

/* END ANIMATIONS */

/* INTRO SECTION */

.click-protection {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 99;
  cursor: default;
  -webkit-animation-name: NoProtection;
  animation-name: NoProtection;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

@-webkit-keyframes NoProtection {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes NoProtection {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

.name-container {
  position: fixed;
  top: 50%;
  margin-top: -40px;
  height: 100px;
  right: 10%;
  z-index: 90;
  -webkit-animation-name: FadeAway;
  animation-name: FadeAway;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.title-name {
  display: none;
  font-size: 29px;
  color: #e0e7eb;
  text-align: right;
  font-family: "Questrial", serif;
  margin-bottom: -10px;
  padding-bottom: 0px;
  display: inline;
  z-index: 99;
}

.title-work {
  font-size: 21px;
  color: #e0e7eb;
  text-align: right;
  font-family: "Questrial", serif;
  margin-top: -5px;
  padding-top: 0px;
  z-index: 99;
}

.inner {
  z-index: 99;
}

.cover {
  z-index: 99;
}

/* HOME SECTION */

.header-container {
  position: fixed;
  font-family: "Questrial", serif;
  font-weight: 300;
  top: 3%;
  left: 2%;
  width: 96%;
  margin: 0 auto;
  padding: 0 3px;
  /*border: 1px solid #e0e7eb;*/
  z-index: 95;
}

.logo {
  text-align: left;
  z-index: 95;
}

/* To modify */

/* .logo img {
	max-height: 35px;
} */

.logo-footer {
  text-align: left;
  z-index: 90;
}

a.logo-footer.transition {
  color: #8f9396;
}

/* .logo-footer img {
	max-height: 35px;
	margin-top: 8px;
} */

.menu {
  text-align: right;
  z-index: 95;
}

.menu a {
  text-decoration: none;
}

/*	.menu a:hover {
		color: #e0e7eb;
		text-decoration: none;	
	} */

.menu ul {
  padding-top: 7px;
}

.menu ul li {
  font-family: "Questrial", sans-serif;
  list-style: none;
  display: inline-block;
  font-size: 15px;
  margin-left: 17px;
}

.menu ul li .sel {
  background: red;
  margin-left: 0px !important;
  margin: 0px !important;
}

.sld-lnk {
  color: rgba(196, 196, 196, 0.9);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s ease;
}

.sld-lnk:hover {
  color: #e0e7eb;
}

.sld-lnk:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #e0e7eb;
  transition: 0.3s;
}

.sld-lnk:hover:after {
  width: 100%;
}

.sld-lnk-selected,
.sld-lnk-selected:visited {
  color: #e0e7eb;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.sld-lnk-selected:hover {
  color: #e0e7eb;
}

.sld-lnk-selected:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #e0e7eb;
  transition: 0.3s;
}

.sld-lnk-selected:hover:after {
  width: 100%;
}

#portfolioFilters .sld-lnk {
  padding: 0 0 4px 0;
  margin: 0 17px 0 0;
  background: transparent;
  outline: none;
}
#portfolioFilters .sld-lnk:hover {
  outline: none;
}
#portfolioFilters .sld-lnk:focus {
  box-shadow: none;
}
#portfolioFilters .sld-lnk:after {
  border-bottom: none;
}
#portfolioFilters .current {
  color: #e0e7eb;
}
.social {
  color: rgba(196, 196, 196, 0.9);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s ease;
}

.social:hover {
  color: #ee2255 !important;
}

.social-container {
  display: block;
  opacity: 0;
  position: fixed;
  top: 3%;
  right: 3%;
  width: 35%;
  margin: 0 auto;
  padding: 3px 0px 0 0;
  font-size: 25px;
  text-align: right;
  z-index: 90;
}

.social-container ul {
  margin-right: 0px;
  padding-right: 46px;
}

.social-container ul li {
  color: #e0e7eb;
  list-style: none;
  display: inline-block;
  margin-left: 40px;
}

.social-container ul li a {
  color: #e0e7eb;
}

.social-container ul li a:hover {
  color: #ee2255;
}

.social-link {
  font-size: 35px;
  z-index: 90;
}

.social-link ul {
  margin-right: 0px;
  padding: 0 0;
}

.social-link ul li {
  color: #e0e7eb;
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.social-link ul li a {
  color: #e0e7eb;
}

.social-link ul li a:hover {
  color: #ee2255;
}

.social-link-footer {
  font-size: 25px;
  z-index: 90;
}

.social-link-footer ul {
  margin: 0 0 15px 0;
  padding: 0 0;
}

.social-link-footer ul li {
  color: #fff;
  list-style: none;
  display: inline-block;
  margin: 8px;
  text-align: center;
}

.social-link-footer ul li a {
  color: #fff;
}

.social-link-footer ul li a:hover {
  color: #ee2255;
}

.menu-hamb-mb {
  display: none;
  z-index: 95 !important;
}

.over-menu nav {
  display: none;
}

.over-menu-ul {
  display: none;
}

.site-wrapper {
  position: relative;
}

.site-wrapper-inner {
  width: 100%;
  background-color: #151515;
  z-index: 50 !important;
}
.ft-front-p {
  position: absolute;
}
footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  border-top: 0.5px solid rgba(21, 21, 21, 0.9);
  background-color: #272932;
  background: #2729323d;
  /*  */
  margin: 25px 0 0 0;
  padding: 20px 0 10px 0;
  font-size: 10px;
  text-align: center;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.footer-column-1 {
  padding: 58px 0px 0px 58px;
  text-align: left;
}

footer p {
  color: #fff;
  margin: 0 0;
}

.sitemap-footer {
  padding: 25px 20px 5px 0;
}

.sitemap-footer ul li {
  display: inline-block;
  list-style: none;
  margin-right: 25px;
  margin-bottom: 5px;
}

.sitemap-footer ul li a {
  display: block;
  color: rgba(196, 196, 196, 0.9);
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s ease;
}

.sitemap-footer ul li a:hover,
a.logo-footer.transition:hover {
  /* color: #e0e7eb; */
  color: #ee2255;
}

.divider {
  border-top: 1px solid #e0e7eb;
  border-top: 1px solid #e0e7eb2e;
  padding-top: 8px;
  color: #8f9396;
}

/* BIO PAGE */
.about-wrapper {
  display: flex;
  justify-content: center;
}
.bio-container {
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  font-family: "Questrial", sans-serif;
  font-weight: 300;
  background-color: #151515;
}

.bio-row {
  width: 89%;
  margin-bottom: 15px;
  z-index: 50;
}

.bio-row-l {
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 24px;
  line-height: 28px;
  font-family: "Questrial", serif;
  padding: 0;
}

.bio-row-l a {
  color: #e0e7eb;
  text-decoration: none;
}

.bio-row-l a:hover {
  color: #e0e7eb;
  text-decoration: line-through;
}

.bio-row-dwnld {
  font-size: 20px;
  margin-top: 45px;
}

.bio-row a {
  color: #e0e7eb !important;
  text-decoration: underline;
}

.bio-row a:hover {
  color: #e0e7eb;
  text-decoration: none;
}

.dwnld-lnk {
  color: #e0e7eb;
  font-size: 20px;
  text-decoration: none !important;
  border-bottom: 1px #e0e7eb solid;
  width: 200px;
  transition: 0.5s ease;
  white-space: nowrap;
  height: 35px;
}

.dwnld-lnk:hover {
  border-bottom: 0px solid transparent;
  width: 200px;
  color: #ee2255;
}

.dwnld-lnk:visited {
  color: #e0e7eb !important;
}

.end-img {
  max-height: 30px;
  max-width: 18px;
}

/* PROJECTS SECTION */

.ghost-dt {
  display: none;
}

.back img {
  max-height: 18px;
  margin-right: 5px;
}

.project-row {
  width: 96%;
  padding: 13px 0px 0 0px;
  margin: 0 auto;
}

.project-row-first {
  margin-top: 70px;
}

.project {
  display: table;
  margin: 0 0 31px 0;
  padding: 0 15px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  opacity: 1;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.project-last {
  margin: 0 0 0px 0;
}

.project img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  max-width: 100%;
  margin: auto;
  border-radius: 16px;
}

.text-box {
  position: absolute;
  font-size: 30px;
  text-align: center;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  z-index: 95;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.project img,
.project {
  transition: all 0.5s ease;
}

.text-box {
  transition: all 1.2s ease;
}

.project .text-box {
  opacity: 0;
}

.project:hover .text-box {
  opacity: 1;
}

.project:hover img {
  /*	opacity:0.65; blur(15px) brightness(70%) grayscale(50%)*/
  filter: brightness(50%) grayscale(50%);
  -webkit-filter: brightness(50%) grayscale(50%);
}
.project-title {
  font-family: "Questrial", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin: 0 0 0 0;
  /* height: 50px; */
}

.project-subtitle {
  font-family: "Questrial", sans-serif;
  font-size: 28px;
  color: #fff;
}
.col-md-3 .project-title {
  font-size: 30px;
}

.col-md-3 .project-subtitle {
  font-size: 21px;
}

.project-desc {
  font-family: "Questrial", sans-serif;
  font-size: 25px;
  color: #e0e7eb;
}

.project-quote {
  font-family: "Questrial", serif;
  padding: 10px 25px 10px 0;
  font-size: 25px;
  text-align: right;
  color: #e0e7eb;
}

.project-warning {
  text-align: right;
  color: #e0e7eb;
  font-size: 20px;
  font-family: "Hind", sans-serif;
}

.project-elements {
  display: table;
  margin: 0 0 18px 0;
  padding: 0 15px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  opacity: 1;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.project-elements img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  max-width: 100%;
  margin: auto;
  border-radius: 16px;
}

.project-vid {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  margin-top: -9px;
}
audio,
canvas,
progress,
video {
  border-radius: 16px;
}
/* l'Albero dei Cocomeri */
.adc-prj {
  margin: 3rem 0;
}
/* End of l'Albero dei Cocomeri */

/* FILTER STYLE --------------------------------------------- */

#portfolio {
  width: 100%;
  margin: 0px 0px;
}

.exitMenu {
  margin-top: 15px;
  padding: 10px 0;
  font-size: 25px;
}

.exitMenu a {
  font-family: "Questrial", sans-serif;
  color: #e0e7eb;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s ease;
}

.exitMenu a:hover {
  color: #e0e7eb;
}

.exitMenu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #e0e7eb;
  transition: 0.3s;
}

.exitMenu a:hover:after {
  width: 100%;
}

/* BANNERS SECTION */

.banner-halfpage {
  display: table;
  margin: 0 0 18px 0;
  padding: 0 15px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  font-size: 40px;
  text-align: center;
  opacity: 1;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.banner-halfpage img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  max-width: 300px;
  margin: auto;
}

.banner-leaderboard {
  display: table;
  margin: 0 0 18px 0;
}

.banner-leaderboard img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  max-height: 200px;
}

.banner-popunder {
  display: table;
  margin: 0 0 18px 0;
}

.banner-popunder img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  max-height: 700px;
}

.banner-medium {
  display: table;
  margin: 0 0 18px 0;
}

.banner-medium img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  max-height: 500px;
  padding: 0 5px;
}

/* POLICY */

#policy {
  opacity: 0;
  width: 100%;
  height: 40px;
  position: fixed;
  bottom: 0px;
  left: 0;
  background-color: #151515;
  border-top: 1px solid #e0e7eb;
  font-size: 10px;
  text-align: center;
  color: #e0e7eb;
  padding: 7px;
  z-index: 90;
}

#policy a {
  color: #151515;
}

#policy a:hover {
  color: #151515;
}
#policy a:first-child {
  margin: 0 0 0 4px;
}
.comma {
  font-size: 24px;
}

.btn-pol {
  font-size: 9px;
  /* background-color: #232835; */
  background: #e0e7eb;
  color: #151515;
}

.btn-pol:hover {
  opacity: 0.6;
}

h1 {
  font-size: 15px;
  text-align: center;
  color: #fff;
  margin: 5px auto;
}

h2 {
  font-size: 11px;
  line-height: 14px;
  text-align: left;
  color: #8f9396;
  margin: 0 auto;
}

.logo-btn {
  position: fixed;
  font-size: 26px;
  top: 22px;
  left: 50%;
  margin-left: -15px;
  z-index: 90;
}

.logo-btn img {
  /*	left: 50%;
		margin-left: -20px; */
  max-height: 30px;
}

.section-btn {
  position: fixed;
  font-size: 26px;
  top: 27px;
  right: 30px;
  z-index: 90;
}

.section-btn a {
  color: #e0e7eb;
}

.section-btn a:hover {
  color: #ee2244;
  text-decoration: none;
}

.starter-template {
  padding: 40px 15px;
  text-align: center;
  font-family: "Questrial", sans-serif;
}

/* ARROWS IN THE PROJECTS */

.col-xs-4 img {
  padding-top: 6px;
  max-block-size: 30px;
}

/* MEDIA QUERY FOR RESPONSIVE DESIGN *
/* 2048 */
/* to keep footer where it belongs */
@media (min-width: 2048px) {
  #about {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #about .about-dec-img .project-elements {
    margin: 0 0 -68px 0;
  }
  #about footer {
    position: absolute;
  }
}
/* 1280 */

@media (min-width: 1290px) {
  .menu ul {
    padding-top: 4px;
  }
  .menu ul li {
    list-style: none;
    display: inline-block;
    font-size: 18px;
    margin-left: 17px;
  }
  .ghost-img {
    display: none;
  }
}

/* 1024 */

@media (max-width: 1024px) {
  .menu-hamb-mb {
    display: block;
  }
  .logo-btn {
    /*	left: 50%;
		margin-left: -20px; */
    position: fixed;
  }
  .ghost-img {
    display: none;
  }
  /* Linglab */
  .hero-img {
    transform: translate(-50%, -20%) !important;
    margin-bottom: 0 !important;
  }
  .content-rijks {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0px;
  }
  .project-linglab {
    padding-left: 50px !important;
  }
}

/* 991 - 481 */

@media (max-width: 991px) {
  .text-box,
  .project-title,
  .project-subtitle {
    display: none;
  }
  .footer-column-1 {
    display: none !important;
  }
  .about-container {
    width: 100%;
    position: relative;
    padding: 50px 4px 0 4px;
    margin-bottom: 10px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .about {
    margin-top: 20px;
    text-align: justify;
    width: 100%;
  }
  .about-desk {
    display: none;
  }
  .bio-img-desk {
    display: none;
  }
  .about-mb {
    display: block;
  }
  .bio-img-mb {
    display: block;
  }
  .about-2 {
    text-align: justify;
    margin-top: 15px;
    max-width: 100%;
  }
  .about img {
    width: 100%;
    border: 1px solid #e0e7eb;
  }
  .about-footer {
    margin: 20px auto;
    padding: 15px 0 0 0;
    border-top: 1px dotted #e0e7eb;
    width: 100%;
  }
  .about-footer img {
    max-height: 16px;
    text-align: center;
    margin-left: 48%;
  }
  .ghost-img {
    display: none;
  }
}

/* end 991 */

/* TABLET */

/* @media (max-width: 768px) { */

@media (max-width: 1024px) {
  /*.col-xs-4, .col-xs-6 {
		padding: 0 !important;
	}	*/
  a {
    text-decoration: none;
  }
  .logo-btn {
    left: 50%;
    margin-left: -20px;
    position: fixed;
  }
  .logo-btn img {
    max-height: 30px;
  }
  .menu-hamb-mb {
    display: block;
  }
  .text-box,
  .project-title,
  .project-subtitle {
    display: none;
  }
  .title-page {
    font-size: 35px;
    margin-top: 12px;
    text-align: center;
    padding-left: 4px;
  }
  .title-clip {
    font-size: 20px;
    margin: 8px 0 4px 0 !important;
    text-align: left;
    padding-left: 5px;
  }
  .project-row {
    padding: 0;
  }
  .desc {
    font-size: 16px;
    text-align: left;
    padding-left: 4px;
  }
  .contacts-footer {
    margin: 20px auto;
    padding: 15px 0 0 0;
    border-top: 1px dotted #e0e7eb;
    width: 400px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -200px;
  }
  .contacts-footer img {
    max-height: 16px;
    text-align: center;
    margin-left: 46%;
  }
  /* Banners */
  .banner-leaderboard,
  .banner-halfpage,
  .banner-medium {
    padding-top: 0px !important;
  }
  .banner-halfpage {
    width: 33%;
  }
  .banner-medium img {
    width: 90%;
  }
  /* Linglab */
  .project-linglab {
    margin-top: 10% !important;
  }
  .hero-img {
    transform: translate(-50%, -20%) !important;
    margin-bottom: 0 !important;
  }
  .about-mobile {
    padding: 0 !important;
    margin-top: 30px;
  }
  /* Kartheiser */
  section.browser-mockup-section {
    padding: 0 !important;
  }
  .project-desc {
    margin: 25px 5px !important;
  }
  .project-pa {
    margin: 0;
  }
  .mt-mb {
    margin-top: 0 !important;
  }
  /* l'Albero dei Cocomeri */
  .adc-prj {
    margin: auto;
  }
  audio,
  canvas,
  progress,
  video {
    width: 100%;
  }
}

/* SMART PHONE */

@media (max-width: 480px) {
  .project-row {
    padding: 0;
  }
  .ghost-mb {
    display: none;
  }
  .ghost-dt {
    display: block;
  }
  .mmb {
    margin: 0 !important;
  }
  .col-xs-4,
  .col-xs-6 {
    padding: 0 !important;
  }
  .title-name {
    display: none;
    font-size: 19px;
    margin-bottom: -10px;
    padding-bottom: 0px;
    display: inline;
  }
  .title-work {
    font-size: 14px;
    margin-top: -5px;
    padding-top: 0px;
  }
  .menu {
    display: none !important;
  }
  .header-container {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
    font-family: "Questrial, serif";
  }
  .menu-hamb-mb {
    display: block;
    position: fixed;
    top: 21.3px;
    /* right: 13px; */
    right: 27px;
    padding: 10px;
    /* padding: 10px 25px 10px 10px; */
    z-index: 95;
  }
  .menu-hamb-mb span {
    display: block;
    margin-bottom: 8px;
    width: 22px;
    border-top: solid 2px #e0e7eb;
  }
  .over-menu {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.97);
    z-index: 95;
  }
  .over-menu ul {
    display: block;
    position: absolute;
    font-family: "Questrial", sans-serif;
    top: 20%;
    width: 100%;
    margin: auto auto;
    list-style: none;
    font-size: 65px;
    color: #151515;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
  }
  .over-menu a {
    color: #e0e7eb;
    text-decoration: none;
  }
  .over-inactive {
    color: #212223;
    opacity: 0.9;
  }
  .close-menu {
    display: block;
    position: fixed;
    top: 21.3px;
    right: 13px;
    padding: 10px;
    z-index: 95;
  }
  .close-menu span {
    display: block;
    margin-bottom: 8px;
    width: 22px;
    border-top: solid 1.5px #151515;
  }
  .cross-sx {
    transform: translateY(5px) translateX(0) rotate(45deg);
    background: rgba(224, 231, 235, 0.9);
  }
  .cross-dx {
    transform: translateY(-5px) translateX(0) rotate(-45deg);
    background: rgba(224, 231, 235, 0.9);
  }
  #portfolioFilters {
    margin: 1.5rem 0 1rem;
  }
  .about-wrapper {
    flex-direction: column;
  }
  .bio-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    font-size: 28px;
    line-height: 33px;
  }
  .bio-row {
    margin-bottom: 15px;
  }
  .bio-row-l {
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
    font-size: 19px;
    line-height: 23px;
    font-family: "Questrial", serif;
  }
  .bio-row-l a {
    color: #e0e7eb;
    text-decoration: none;
  }
  .bio-row-l a:hover {
    color: #e0e7eb;
    text-decoration: line-through;
  }
  .bio-row-dwnld {
    margin-top: 45px;
  }
  .bio-row a {
    color: #e0e7eb !important;
    text-decoration: underline;
  }
  .bio-row a:hover {
    color: #e0e7eb;
    text-decoration: none;
  }
  .dwnld-lnk {
    font-size: 20px;
  }
  .end-img {
    width: 96%;
    left: 50%;
    margin-left: -9px !important;
    max-height: 30px;
    max-width: 18px;
    margin: auto;
    position: absolute;
    margin-bottom: 15px;
  }
  .project-quote {
    font-size: 18px;
  }
  .sidebar ul li {
    font-size: 30px;
  }
  .title-page {
    font-size: 35px;
    margin-top: 12px;
    margin-bottom: 30px;
    text-align: center;
    padding-left: 20px;
  }
  /* Banners */
  .banner-leaderboard,
  .banner-halfpage,
  .banner-medium {
    padding-top: 0px !important;
  }
  /* l'Albero dei Cocomeri */
  .adc-prj {
    margin: auto;
  }
  audio,
  canvas,
  progress,
  video {
    width: 100%;
  }
  /* Kartheiser & NR projects */
  .mt-mb {
    margin-top: 0 !important;
  }
  .mw-mb,
  p.project-desc.project-kartheiser {
    /* max-width: 50vw; */
    max-width: 80vw;
    margin: 0 auto !important;
    /* word-break: break-word; */
    word-wrap: break-word;
  }
  p.project-desc.project-kartheiser {
    margin: 0 !important;
  }
  .mw-mb:nth-child(1),
  .mw-mb:nth-child(2),
  .mw-mb:nth-child(3) {
    max-width: 80vw;
  }
  /* To modify --> .project-pa*/
  p.project-desc.project-nr {
    margin: 50px 0 0 !important;
    max-width: 61vw;
    word-break: break-word;
  }
  .desc {
    font-size: 16px;
    text-align: left;
    padding-left: 5px;
  }
  .project-linglab {
    padding-left: 0 !important;
    word-break: break-word;
    max-width: 75vw;
  }
  section.browser-mockup-section {
    padding: 0 !important;
  }
  .browser-mockup-section p {
    /*margin-top: 50px;*/
    font-size: 18px;
  }
  .project-pa {
    margin: 25px 0 0 0 !important;
  }
  .about-mobile {
    padding: 0 !important;
    margin-top: 30px;
  }
  .bio::before {
    filter: brightness(0.5);
  }
  .footer-about {
    position: relative !important;
    margin-top: 7rem !important;
  }
  #policy {
    height: auto;
  }
  #policy p {
    margin: 2rem;
  }
}

/* end 480 */

@media (max-height: 480px) {
  .col-xs-4 {
    padding: 0 !important;
  }
  .sidebar ul li {
    font-size: 15px;
  }
}
@media (max-height: 320px) {
  .col-xs-4 {
    padding: 0 !important;
  }
  .sidebar ul li {
    font-size: 10px;
  }
}
