/* Single Portfolio Item */

/* Psuedo Elegant Icon Before & After Elements */
.inno-port .hero .scroll::before,
.inno-port .swipe .prev,
.inno-port .swipe .next,
.inno-port .hero.video .mute {
    font-family: 'ElegantIcons';
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
}

/* Base */
.inno-port {
    padding: 0 0 50px;
}

.inno-port .container {
    max-width: 1400px;
}

.inno-port .section-title-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.inno-port .section-title-wrapper h2 {
    font-size: 48px;
    line-height: 1;
}

.inno-port h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 0;
}

.inno-port h6 {
    margin: 0 0 5px;
    line-height: 1;
    font-family: Yantramanav, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #abbbd0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Hero */
.inno-port .hero {
    margin-bottom: 60px;
    position: relative;
    aspect-ratio: 2.3333;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

    /* Aspect Ratio Fallback */
    @supports not (aspect-ratio: 2.3333 / 1) {
        .inno-port .hero::before {
            float: left;
            padding-top: 233.33%;
            content: "";
        }

        .inno-port .hero::after {
            display: block;
            content: "";
            clear: both;
        }
    }

.inno-port .hero .contents {
    padding: 0 20px 25px;
}

.inno-port .hero.video {
    overflow: hidden;
}

.inno-port .hero.video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    display: flex;
}

    /* Fix for 4k and other massive screen sizes*/
    @media (min-aspect-ratio: 16 / 9) {
        .inno-port .hero.video iframe {
            height: 233.33vw;
        }
    }

.inno-port .hero .contents {
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-grow: 1;
}

.inno-port .hero .contents > div {
    flex: 1;
}

.inno-port .hero .contents > div:first-child {
    flex: 2;
}

.inno-port .hero .contents > div:last-child {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -10px;
    flex: 2;
}

/* Mute Button */
.inno-port .hero.video .mute {
    transition: all .2s ease-out;
    border: 1px solid #ABBBD0;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inno-port .hero.video .mute::before {
    position: absolute;
    display: block;
    color: #092D74;
}

.inno-port .hero.video .mute:hover {
    border-color: #092D74;
    background-color: #ABBBD0;
}

.inno-port .hero.video .mute.silent::before {
    content: '\e067';
}

.inno-port .hero.video .mute.loud::before {
    content: '\e069';
}

/* Other Hero Elements */
.inno-port .hero .title {
    position: relative;
}

.inno-port .hero .title::before {
    height: 4px;
    width: 100px;
    left: 0;
    top: calc(100% + 5px);
    background-color: #fff;
    position: absolute;
    display: block;
    content: "";
    box-shadow: 0 0 5px rgba(0,0,0,.75);
}

.inno-port .hero .title h1 {
    color: #fff;
    font-family: Yantramanav, sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.15;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0,0,0,.75);
    margin: 0;
    position: relative;
}

.inno-port .hero .scroll,
.inno-port .swipe {
    font-family: Yantramanav, sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, .75);
}

.inno-port .hero .scroll {
    z-index: 1;
    position: relative;
}

.inno-port .hero .scroll::before {
    content: '\37';
    display: block;
    position: absolute;
    text-align: center;
    width: 100%;
    top: calc(100% - 6px);
}

.inno-port .swipe {
    display: none;
    justify-content: center;
    margin-bottom: -30px;
    z-index: 1;
    position: relative;
}

.inno-port .swipe .text {
    margin: 0 15px;
}

/* Main Content Areas */
.inno-port .project-content {
    margin-bottom: 30px;
}

/* Slick Arrows */
.inno-port .slick-arrows {
    position: relative;
    z-index: 1;
    width: 970px;
    margin-left: auto;
    margin-right: auto;
}

.inno-port .slick-arrows .slick-arrow {
    transition: all .2s ease-out;
    border: 1px solid #ABBBD0;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    top: 232px;
}

.inno-port .slick-arrows .slick-arrow:hover {
    border-color: #092D74;
    background-color: #ABBBD0;
}

.inno-port .slick-arrows .slick-arrow::before {
    font-family: 'ElegantIcons';
    -webkit-font-smoothing: antialiased;
    display: block;
    text-align: center;
    line-height: 76px;
    font-size: 50px;
    color: #092D74;
}

.inno-port .slick-arrows .slick-arrow.prev {
    left: 0;
}

.inno-port .slick-arrows .slick-arrow.prev::before {
    content: '\34';
}

.inno-port .slick-arrows .slick-arrow.next {
    right: 0;
}

.inno-port .slick-arrows .slick-arrow.next::before {
    content: '\35';
}

/* Slick Slider */
.inno-port .portfolio-media-slider {
    margin-bottom: 60px;
    height: 545.625px;
}

.inno-port .portfolio-media-slider .slick-list,
.inno-port .portfolio-media-slider .slick-track {
    height: 100%;
}

.inno-port .portfolio-media-slider .slick-slide {
    padding: 0 15px;
}

.inno-port .portfolio-media-slider .slick-slide img {
    max-height: 100%;
}

/* Contact Info */
.inno-port .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
}

.inno-port .contact .image {
    width: calc(45% + 1px);
    text-align: right;
    padding-right: 20px;
    border-right: 1px solid #abbbd0;
}

.inno-port .contact .image img {
    max-height: 100px;
}

.inno-port .contact .information {
    width: calc(55% - 1px);
    padding-left: 20px;
}

.inno-port .contact .information p {
    margin: 0;
    line-height: 1.4;
}

/* Related Projects */
.inno-port .related {
    margin-bottom: 30px;
}

.inno-port .related .post {
    display: block;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

    /* Aspect Ratio Fallback */
    @supports not (aspect-ratio: 1 / 1) {
        .inno-port .related .post::before {
            float: left;
            padding-top: 100%;
            content: "";
        }

        .inno-port .related .post::after {
            display: block;
            content: "";
            clear: both;
        }
    }

.inno-port .related .post .bg {
    position: absolute;
    z-index: 1;
    width: calc(100% + 10px);
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .8s cubic-bezier(.21,.68,.19,.69);
    transform: translateX(-10px);
}

.inno-port .related .post:hover .bg {
    transform: translateX(0);
}

.inno-port .related .post:hover .post-meta {
    opacity: 1;
}

.inno-port .related .post .post-meta {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity .2s ease-in-out;
    opacity: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1;
}

.inno-port .related .post .post-meta .cats {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.inno-port .related .post .post-meta .cats h6 {
    display: inline-block;
    position: relative;
    font-size: 12px;
    padding: 0 6px 0 0;
    margin: 0 8px 0 0;
    line-height: 15px;
    color: #fff;
}

.inno-port .related .post .post-meta .cats h6::before {
    position: absolute;
    top: 0;
    right: -4px;
    content: '/';
    font-size: 12px;
}

.inno-port .related .post .post-meta .cats h6:last-child::before {
    display: none;
}

.inno-port .related .post .post-meta h4 {
    color: #fff;
    margin: 15px 0;
}

@media only screen and (max-width: 1400px) {
    .inno-port .section-title-wrapper {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .inno-port .section-title-wrapper {
        max-width: 992px;
    }
}

@media only screen and (max-width: 992px) {
    .inno-port .hero .title h1 {
        font-size: 36px;
    }

    .inno-port .section-title-wrapper {
        max-width: 767px;
    }

    .inno-port .slick-arrows {
        width: 737px;
    }

    .inno-port .slick-arrows .slick-arrow {
        top: 182.28px;
    }

    .inno-port .portfolio-media-slider {
        height: 414.56px;
    }

    .inno-port .related .post .post-meta {
        padding: 10px;
    }

    .inno-port .related .post .post-meta h4 {
        font-size: 22px;
        margin-bottom: 0;
    }

    .inno-port .portfolio-media-slider .slick-slide img {
        max-width: 737px;
    }
}

@media only screen and (max-width: 768px) {
    .inno-port .hero .contents {
        padding: 0 15px 10px;
        flex-wrap: wrap-reverse;
    }

    .inno-port .hero .contents > div:first-child {
        flex: none;
        max-width: 100%;
    }

    .inno-port .hero .contents .title::before {
        display: none;
    }

    .inno-port .hero .contents .title h1 {
        font-size: 28px;
		line-height: 1.1;
    }

    .inno-port .hero .scroll {
        display: none;
    }

    .inno-port .hero.video .contents > div:last-child {
        margin-bottom: 4px;
        margin-left: 5px;
        flex: none;
    }

    .inno-port .hero.video .mute {
        width: 30px;
        height: 30px;
    }

    .inno-port .hero.video .mute::before {
        font-size: 16px;
    }

    .inno-port .section-title-wrapper {
        max-width: 100%;
    }

    .inno-port .slick-arrows {
        display: none;
    }

    .inno-port .portfolio-media-slider {
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
	
	.inno-port .portfolio-media-slider .slick-list,
	.inno-port .portfolio-media-slider .slick-track {
    	min-height: 100%;
	}

    .inno-port .swipe {
        display: flex;
    }

    .inno-port .portfolio-media-slider .slick-slide img {
        max-width: calc(100vw - 30px);
    }

    .inno-port .related .post .post-meta {
        opacity: 1;
    }
}