@media only screen and (max-width: 880px) {
html
{
  scroll-padding-top: 75px!important;
}
}
@keyframes kenburns {
  10% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.word,
.char {
  -webkit-animation-delay: var(--del);
          animation-delay: var(--del);
  -webkit-animation-direction: var(--dir, normal);
          animation-direction: var(--dir, normal);
  -webkit-animation-duration: var(--dur);
          animation-duration: var(--dur);
  -webkit-animation-iteration-count: var(--it, infinite);
          animation-iteration-count: var(--it, infinite);
  -webkit-animation-name: var(--name);
          animation-name: var(--name);
  -webkit-animation-timing-function: var(--tf);
          animation-timing-function: var(--tf);
  -webkit-animation-fill-mode: var(--fill, forwards);
          animation-fill-mode: var(--fill, forwards);
  display: inline-block;
  position: relative;
  transform-origin: 50% 100%;
  z-index: 1;
}

.headline--fall .char {
  --name: fall;
  --dur: 600ms;
  --del: calc(var(--char-index) * -0.05s);
  --tf: cubic-bezier(0.165, 0.44, 0.64, 1);
}
@-webkit-keyframes fall {
  0% {
    transform: rotateY(-25deg);
  }
  25% {
    transform: translateY(2%) rotateY(25deg);
  }
  50% {
    transform: rotateY(-25deg);
  }
  75% {
    transform: translateY(4%) rotateY(25deg);
  }
  100% {
    transform: rotateY(-25deg);
  }
}
@keyframes fall {
  0% {
    transform: rotateY(-25deg);
  }
  25% {
    transform: translateY(2%) rotateY(25deg);
  }
  50% {
    transform: rotateY(-25deg);
  }
  75% {
    transform: translateY(4%) rotateY(25deg);
  }
  100% {
    transform: rotateY(-25deg);
  }
}

.headline--flip .char {
  --name: flip;
  --dur: 4000ms;
  --del: calc(var(--char-index) * 0.075s);
  --tf: linear;
}
@-webkit-keyframes flip {
  5% {
    transform: rotateX(1turn);
  }
  10% {
    transform: rotateX(2turn);
  }
  20% {
    transform: rotateX(3turn);
  }
  40% {
    transform: rotateX(4turn);
  }
  70%, 100% {
    transform: rotateX(5turn);
  }
}
@keyframes flip {
  5% {
    transform: rotateX(1turn);
  }
  10% {
    transform: rotateX(2turn);
  }
  20% {
    transform: rotateX(3turn);
  }
  40% {
    transform: rotateX(4turn);
  }
  70%, 100% {
    transform: rotateX(5turn);
  }
}

.headline--float .char {
  --name: float;
  --dur: 2200ms;
  --del: calc(var(--char-index) * -0.5s);
  --tf: ease-in-out;
  --dir: alternate;
}
.headline--float .char:nth-child(2n) {
  --name: float-alt;
}
@-webkit-keyframes float {
  from {
    transform: translate(2%, -10%) rotate(-1deg);
  }
  to {
    transform: translate(-2%, 5%) rotate(3deg);
  }
}
@keyframes float {
  from {
    transform: translate(2%, -10%) rotate(-1deg);
  }
  to {
    transform: translate(-2%, 5%) rotate(3deg);
  }
}
@-webkit-keyframes float-alt {
  from {
    transform: translate(0%, -5%) rotate(-1deg);
  }
  to {
    transform: translate(2%, 10%) rotate(3deg);
  }
}
@keyframes float-alt {
  from {
    transform: translate(0%, -5%) rotate(-1deg);
  }
  to {
    transform: translate(2%, 10%) rotate(3deg);
  }
}

.headline--jog .char {
  --name: jog;
  --dur: 500ms;
  --del: calc(var(--char-index) * -0.025s);
  --tf: linear;
}
@-webkit-keyframes jog {
  0% {
    transform: translate(0, 0) rotate(5deg);
  }
  25% {
    transform: translate(5%, -5%) rotate(10deg);
  }
  50% {
    transform: translate(5%, 0) rotate(15deg);
  }
  75% {
    transform: translate(10%, -5%) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}
@keyframes jog {
  0% {
    transform: translate(0, 0) rotate(5deg);
  }
  25% {
    transform: translate(5%, -5%) rotate(10deg);
  }
  50% {
    transform: translate(5%, 0) rotate(15deg);
  }
  75% {
    transform: translate(10%, -5%) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}

.headline--jump .char {
  --name: jump;
  --dur: 800ms;
  --del: calc(var(--char-index) * 0.075s);
  --tf: cubic-bezier(0.165, 0.44, 0.64, 1);
}
@-webkit-keyframes jump {
  20% {
    transform: translateY(2%) scaleY(0.9);
  }
  40% {
    transform: translateY(-100%) scaleY(1.2);
  }
  50% {
    transform: translateY(10%) scaleY(0.8);
  }
  70% {
    transform: translateY(-5%) scaleY(1);
  }
  80%, 100% {
    transform: translateY(0) scaleY(1);
  }
}
@keyframes jump {
  20% {
    transform: translateY(2%) scaleY(0.9);
  }
  40% {
    transform: translateY(-100%) scaleY(1.2);
  }
  50% {
    transform: translateY(10%) scaleY(0.8);
  }
  70% {
    transform: translateY(-5%) scaleY(1);
  }
  80%, 100% {
    transform: translateY(0) scaleY(1);
  }
}

.headline--twirl .char {
  --name: twirl;
  --dur: 6000ms;
  --del: calc(var(--char-index) * 0.025s);
  --tf: linear;
}
@-webkit-keyframes twirl {
  2.5% {
    transform: rotateY(1turn);
  }
  5% {
    transform: rotateY(2turn);
  }
  10% {
    transform: rotateY(3turn);
  }
  20% {
    transform: rotateY(4turn);
  }
  40% {
    transform: rotateY(5turn);
  }
  70%, 100% {
    transform: rotateY(6turn);
  }
}
@keyframes twirl {
  2.5% {
    transform: rotateY(1turn);
  }
  5% {
    transform: rotateY(2turn);
  }
  10% {
    transform: rotateY(3turn);
  }
  20% {
    transform: rotateY(4turn);
  }
  40% {
    transform: rotateY(5turn);
  }
  70%, 100% {
    transform: rotateY(6turn);
  }
}
html {
  scroll-behavior: smooth;	
  scroll-padding-top: 115px; 
  /* height of sticky header */
}
.scroll_down {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
}
@media screen and (max-width: 979px) {
#scrollbarc {
  display: none!important;
}
.ls-layer-link {
  display: none!important;
}
}  
#scrollbarc {
margin-left: auto!important;
  margin-right: auto!important;
  width: 100%!important;
}
.scroll_down > div:last-child {
  font-size: 9px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.75;
  margin-top: 10px;
}
#icosky {
  margin-left: 50% !important;
  margin-bottom: 100px !important;
  position: absolute !important;
  bottom: 0 !important;
}
.scroll_icon {
  width: 24px;
  height: 46px;
  border: solid 2px #ffffff;
  border-radius: 12px;
  cursor: pointer;
}

.scroll_icon::after {
  display: block;
  position: absolute;
  margin-top: 3px;
  margin-left: 7px;
  width: 5px;
  height: 5px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  background: #FFFFFF;
  content: '';
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 1500ms;
  animation-duration: 1500ms;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
*, ::after, ::before {
  box-sizing: border-box;

}
.scroll_down > div:last-child {
  font-size: 7px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.75;

}
.scroll_icon {
  cursor: pointer;

}
@-webkit-keyframes scroll
{
	0%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
		-webkit-transform: translateY(23px);
		-moz-transform: translateY(23px);
		-ms-transform: translateY(23px);
		-o-transform: translateY(23px);
		transform: translateY(23px);
	}
}
@keyframes scroll
{
	0%
	{
		opacity: 1;
	}
	100%
	{
		opacity: 0;
		-webkit-transform: translateY(23px);
		-moz-transform: translateY(23px);
		-ms-transform: translateY(23px);
		-o-transform: translateY(23px);
		transform: translateY(23px);
	}
}



.mos-img img {display: none !important;}
.fixrel-in{
    position:relative
}
.clearfix::before, .clearfix::after {
    display: table;
    content: "";
    line-height: 0;
}
.clearfix::after {
    clear: both;
}

/*--------------------------------------------------
## Carousel
---------------------------------------------------*/

.portfolio-showcase video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    overflow: hidden;

}

.cp-title-slide {
    position: relative;
    height: 100vh;
    width: 100%;
	z-index: 3;
}

.cp-title {
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.cp-title:hover {
    opacity: 0.8;  color:#fff;
}

.back-titles .cp-title {
    opacity: 1;  color:#fff;
}

.cp-title-touch {
    width: 33%;
}

.cp-title {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 5.5vw;
    margin: 0;
    font-weight: 700;
    color: #fff!important;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 2;

}


.cp-title-touch .cp-title {
    font-size: 60px;
}

.images-swiper {
    width: 100%;
    height: 100%;

}

.cp-titles {
    z-index: 55;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}

.cp-titles-touch {
    opacity: 1;
}

.cp-titles-images {
    position: absolute;
    top: 0;
    
    overflow: hidden;
    height: 100vh;
    width: 100%;
    z-index: 44;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.cp-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
   /* -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);*/
    -webkit-transition: all 1.3s;
    -o-transition: all 1.3s;
    transition: all 1.3s;
}

.cp-image-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.swiper-slide-active .cp-image-wrapper {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.cp-titles-image {
    overflow: hidden;
}

.cp-titles-image .slide-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.cp-toggle {
    opacity: 1;
}



.slide-anim {
    -webkit-animation-name: slideAnim;
    animation-name: slideAnim;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes slideAnim {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

}

@keyframes slideAnim {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

}

.back-titles {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
}

.discover-p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 55vh;
    width: 50%;
    z-index: 999;
    pointer-events: none;
}

.discover-p-link {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 400%);
    -ms-transform: translate(-50%, 400%);
    transform: translate(-50%, 400%);
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    pointer-events: all;
}

.discover-p-link::before {
    background: #fff;
}

/*--------------------------------------------------
## Vertical
---------------------------------------------------*/

.cv-images-swiper {
    width: 100%;
    height: 100%;
}

.cv-images {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    height: 70%;
    width: 40%;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    right: 7%;
    z-index: 2;
}

.cv-images-back {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    height: 100vh;
    width: 40%;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    right: 0;
    z-index: 1;
}


.cv-titles-image,
.cv-image-wrapper,
.cv-image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cv-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cv-image-wrapper .slide-bgimg {
    width: 100%;
    height: 100%;
}

.cv-image-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


.cv-titles-image {
    overflow: hidden;
}

.cv-titles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;

}

.cv-meta {
    position: absolute;
    left: 8%;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 0;
}


.cv-title {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    width: 40%;

}

.cv-summary {
    width: 40%;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 14px;
    line-height: 25px;
}


.cv-discover {
    font-size: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 500;
}

.swiper-slide-active .cv-meta {
    opacity: 1;
}


.cv-slide-control {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 70%;
    width: 40%;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    right: 11%;
    z-index: 333;
    pointer-events: none;
}

.cv-slide-fraction {
    position: absolute;
    top: 10px;
    left: 10%;
    -webkit-transform: translate(-100%, -170%);
    -ms-transform: translate(-100%, -170%);
    transform: translate(-100%, -170%);
    bottom: unset;
    width: unset;
}

.cv-slide-pagination {
    position: absolute;
    bottom: 0;
    left: 10%;
    -webkit-transform: translate(-100%, 200%);
    -ms-transform: translate(-100%, 200%);
    transform: translate(-100%, 200%);
    pointer-events: all
}

.cv-slide-pagination i {
    cursor: pointer;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.cv-slide-prev {
    margin-right: 20px;
}

.cv-slide-fraction span {
    font-size: 12px;
    font-weight: 600;
    margin: 0 2px;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.cv-slide-fraction span.swiper-pagination-current {
    font-size: 30px;

}

.cv-titles-style-2 .cv-images-back {
    right: 0;
    z-index: -3;
    width: 100%;
    height: 100vh;
}

.cv-titles-style-2 .cv-title,
.cv-titles-style-2 .cv-summary,
.cv-titles-style-2 .cv-discover,
.cv-titles-style-2 .cv-slide-pagination i,
.cv-titles-style-2 .cv-slide-fraction span,
.leftis .cv-slide-pagination i,
.leftis .cv-slide-fraction span {
    color: #fff !important;
}

.cv-titles-style-2 .cv-slide-pagination,
.cv-titles-style-2 .cv-slide-fraction,
.leftis .cv-slide-pagination,
.leftis .cv-slide-fraction {
    left: unset;
    right: 0;
}

/*--------------------------------------------------
## Fullscreen
---------------------------------------------------*/

.cf-titles-images {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    height: 76vh;
    width: 90%;
    z-index: 44;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.cf-images-swiper {
    width: 100%;
    height: 100%;

}


.cf-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 1.3s;
    -o-transition: all 1.3s;
    transition: all 1.3s;
}

.cf-image-wrapper .slide-bgimg {
    width: 100%;
    height: 100%;

}

.cf-image-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;

}

.swiper-slide-active .cf-image-wrapper {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.cf-titles-image {
    overflow: hidden;

}

.cf-titles {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 99;

}

.cf-title-slide {
    position: relative;
    height: 20vh;
}

.cf-meta {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15%;
    opacity: 0;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    font-family: 'Roboto', sans-serif;
}

.cf-meta p {
    display: block;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
    width: 70%;
}

p.cf-year {
    margin-left: 5px;
}

.cf-year::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background: #fff;
    vertical-align: middle;
    margin: 0 10px;
}

.cf-discover {
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    margin-left: 5px;
}

.cf-discover::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background: #fff;
    vertical-align: middle;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: -2px;
}

.cf-discover:hover::before {
    width: 20px;
    margin-right: 15px;
}

.cf-discover:hover {
    color: #fff;
}


.cf-title {
    color: #fff;
    font-size: 60px;
    margin: 30px 0;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}
.cf-title a{
    color: #fff;
}
   

.swiper-slide-active .cf-meta {
    opacity: 1;
}
.portfolio-title {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.portfolio-image,
.portfolio-video {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
/*--------------------------------------------------
## Title Wall
---------------------------------------------------*/
.ct-portfolios {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70%;
}

.ct-portfolio {
    display: inline-block;
}

.ct-images {
    position: fixed;
    width: 28%;
    height: 35vh;
    overflow: hidden;
    float: left;
}

.ct-image-wrapper {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    width: 100%;
}

.ct-wrapper-height {
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.ct-image {
    width: 100%;
    height: 100%;
    position: absolute;
}


.ct-image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.ct-image video {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: unset;
}


.plyr--full-ui input[type="range"] {
    color: #fa343d
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
    background: #fa343d
}

.plyr__control--overlaid {
    background: #fa3d3d;
}

.plyr__video-embed iframe {
    top: -50%;
    height: 200%;
}


.ct-title-h {
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 3vw;
    line-height: 1.40;
    margin-right: 50px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;


}

.ct-title-h:hover {
    color: rgba(255, 255, 255, 1)
}

.ct-index {
    font-size: 30px;
    margin-right: 15px;
}


.ct-title a {
    text-decoration: none;
}



/*--------------------------------------------------
# Responsive
---------------------------------------------------*/

@media only screen and (max-width: 850px) {


    .cp-titles-images {
        height: 100vh;
        width: 100% !important;
    }

    .cp-title-slide {
        width: 100%;
    }

    .cp-titles .cp-title {
        display: none;
    }

    .back-titles {
        z-index: 66
    }

    .cp-title {
        line-height: 1.4
    }

    .c-button {
        margin-right: 15px;
    }

    .cf-titles-images {
        width: 100%;
        height: 100vh;
    }

    .ct-title-h {
        margin-right: 0;
        font-size: 30px;
    }
    .cv-title, .cv-summary {
        width: 90% !important;
    }
    .cv-images {
        height: 100vh;
        width: 100% !important;
        -webkit-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        z-index: -1;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        position: absolute;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .cv-images-back{ z-index: -3;}
.cv-image-wrapper{
        z-index: 4;  }
    .cv-title {
        line-height: 70px;
    }

   /* .cv-slide-control {
        display: none;
    }*/


    .next-project-section {
        height: unset;
    }

    .c-parallax-image {
        height: unset !important;
        padding: 0;
    }

    .next-project-image video {
        width: 100%;
    }

    br {
        display: none;
    }

    .project-header {
        height: unset;
        margin-bottom: 35px;
    }
.fixrel-in{
    height: 100vh;
    width: 100%;
}
.cv-summary {
    width: 70%;}
}
