@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: "Nunito Sans", system-ui;
    margin: 0px;
    padding: 0px;
}
.background-video {
    position: fixed;
    top: 0px;
    height: 100%;
    width: 100%;
    left: 0px;
    z-index: 1;
    object-fit: cover;
}
.background-video iframe.splgvideoframe {
    overflow: hidden;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    background: none !important;
    box-sizing: content-box !important;
    min-height: 100vh;
    min-width: 100vw;
    width: auto;
    height: auto;
}
nav.navigation {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    z-index: 2;
    border-top: 1px solid #dedede;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
}
nav.navigation ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
nav.navigation ul li {
    padding: 0px 20px;
}
nav.navigation ul li a {
    color: #919191;
    text-decoration: none;
    padding: 15px 10px;
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}
nav.navigation ul li a:hover {
    color: #000;
}
.top-header {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    text-align: center;
}
.top-header a {
    display: inline-block;
    vertical-align: top;
}
.top-header a img {
    width: 120px;
}
.header-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
}
.header-banner img {
    object-fit: cover;
    max-height: 350px;
    height: 100%;
    width: 100%;
}
.caption {
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 300;
    padding-top: 60px;
}
main#primary {
    padding-bottom: 70px;
}
.about-text {
    padding: 80px 0px;
}
.about-text a {
    color: #000;
}
.video-section iframe {
    height: 730px;
}
.clients-section {
    padding: 80px 0px 0px;
}
.section-title h2 {
    font-weight: 300;
    margin-bottom: 30px;
}
.clients-section .col-xs-12 img {
    filter: grayscale(1);
    transition: all 0.5s ease;
    opacity: 0.5;
    cursor: pointer;
}
.clients-section .client-logo:hover img {
    filter: none;
    opacity: 1;
}
.copyrights-section {
    padding-bottom: 90px;
    padding-top: 30px;
    background-color: #f3f3f3;
    border-top: 1px solid #dedede;
}
.contact-section {
    padding: 80px 0px;
}
.contact-section input.form-control, .contact-section textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    background-color: #fafafa;
    border: 1px solid #a9a9a9;
    box-sizing: border-box;
    color: #000;
    height: 46px;
    height: auto;
    padding: 10px;
    position: relative;
    width: 100%;
}
.contact-section input.form-control:focus, .contact-section textarea.wpcf7-form-control.wpcf7-textarea.form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .25);
}
.contact-section label, .contact-section span.wpcf7-form-control-wrap {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}
.contact-section input.wpcf7-form-control.wpcf7-submit {
    background-color: transparent;
    color: #000;
    border-width: 2px;
    border-style: solid;
    border-color: #000;
    padding: 1em 2.5em;
    transition: 0.1s background-color linear, 0.1s color linear;
}
.contact-section input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #000;
    color: #fff;
}
.grid {
	max-width: 100%;
	list-style: none;
	margin: 30px auto;
	padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

.grid li {
	padding: 5px;
	width: 33.3%;
}

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
	opacity: 1;
}

.grid li a,
.grid li img {
	outline: none;
	border: none;
	display: block;
	max-width: 100%;
}

/* Effect 1: opacity */
.grid.effect-1 li.animate {
	-webkit-animation: fadeIn 0.65s ease forwards;
	animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

@keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

/* Effect 2: Move Up */
.grid.effect-2 li.animate {
	-webkit-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); opacity: 1; }
}

@keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

/* Effect 3: Scale up */
.grid.effect-3 li.animate {
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: scaleUp 0.65s ease-in-out forwards;
	animation: scaleUp 0.65s ease-in-out forwards;
}

@-webkit-keyframes scaleUp {
	0% { }
	100% { -webkit-transform: scale(1); opacity: 1; }
}

@keyframes scaleUp {
	0% { }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

/* Effect 4: fall perspective */
.grid.effect-4 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-4 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	-webkit-animation: fallPerspective .8s ease-in-out forwards;
	animation: fallPerspective .8s ease-in-out forwards;
}

@-webkit-keyframes fallPerspective {
	0% { }
	100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

@keyframes fallPerspective {
	0% { }
	100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

/* Effect 5: fly (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-5 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-5 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 50% 50% -300px;
	transform-origin: 50% 50% -300px;
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-animation: fly .8s ease-in-out forwards;
	animation: fly .8s ease-in-out forwards;
}

@-webkit-keyframes fly {
	0% { }
	100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}

@keyframes fly {
	0% { }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; }
}

/* Effect 6: flip (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-6 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-6 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: rotateX(-80deg);
	transform: rotateX(-80deg);
	-webkit-animation: flip .8s ease-in-out forwards;
	animation: flip .8s ease-in-out forwards;
}

@-webkit-keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}

@keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; }
}

/* Effect 7: helix (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-7 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-7 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-animation: helix .8s ease-in-out forwards;
	animation: helix .8s ease-in-out forwards;
}

@-webkit-keyframes helix {
	0% { }
	100% { -webkit-transform: rotateY(0deg); opacity: 1; }
}

@keyframes helix {
	0% { }
	100% { -webkit-transform: rotateY(0deg); transform: rotateY(0deg); opacity: 1; }
}

/* Effect 8:  */
.grid.effect-8 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-8 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-animation: popUp .8s ease-in forwards;
	animation: popUp .8s ease-in forwards;
}

@-webkit-keyframes popUp {
	0% { }
	70% { -webkit-transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: scale(1); opacity: 1; }
}

@keyframes popUp {
	0% { }
	70% { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@media screen and (max-width: 900px) {
	.grid li {
		width: 50%;
	}
}

@media screen and (max-width: 480px) {
	.grid li {
		width: 100%;
	}
}
.projects {
    padding: 80px 0px;
}
.grid li.grid-item .thumbnail {
    border: 1px solid #dedede;
    padding: 10px;
    position: relative;
}
.grid li.grid-item .thumbnail .my-work-thumbnail img {
    width: 100%;
}
.grid li.grid-item .thumbnail .thumb-caption {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    transition: all 0.3s ease-in;
    transform: scale(0);
    background-color: rgba(0, 0, 0, 0.6);
    height: calc(100% - 20px);
    width: calc(100% - 20px);
}
.grid li.grid-item:hover .thumbnail .thumb-caption {
    transform: scale(1);
}
.grid li.grid-item .thumbnail .thumb-caption h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    width: 100%;
}
.grid li.grid-item .thumbnail .thumb-caption a::before {
    content: '';
    background-color: #fff;
    height: 1px;
    width: 30px;
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
}
.grid li.grid-item .thumbnail .thumb-caption a {
    color: #fff;
    padding: 0px 5px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.grid li.grid-item .thumbnail .thumb-caption a::after {
    content: '';
    background-color: #fff;
    height: 1px;
    width: 30px;
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
}
.single-wrapper .project-slides ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
.single-wrapper .project-slides ul li {
    border: 1px solid #dedede;
    margin-bottom: 40px;
    padding: 10px;
    width: 100%;
}
.single-wrapper .project-slides ul li * {
    width: 100%;
}
.project-slides ul li iframe.splgvideoframe {
    min-height: 480px;
}
.single-wrapper {
    padding: 80px 0px;
}
.single-project .entry-content {
    margin: 0px;
}

@media (max-width: 767px) {
    nav.navigation ul li {
        padding: 0px 10px;
    }
    nav.navigation ul li a {
        font-size: 13px;
        font-weight: 400;
        padding: 6px 5px;
    }
    .copyrights-section {
        padding-bottom: 50px;
    }
}

