@charset "UTF-8";
/*

    Table of contents

	01.	GOOGLE FONTS
	02.	BODY
	03.	CUSTOM CLASSES
	04. FORM ELEMENTS
	05.	SECTIONS
	06.	HTML TAGS
	07.	LINKS
	08.	MODAL
	09.	PAGINATION
	10. PRELOADER
	11.	TRANSITION OVERLAY
	12.	SANDWICH BUTTON
	13.	SCROLL DOWN
	14.	NAVIGATION MENU
	15.	HEADER
	16.	SOCIAL MEDIA
	17.	NAVBAR
	18.	SLIDER
	19.	PAGE HEADER
	20.	VIDEO BG
	21.	WORKS
	22.	FEATURES CONTENT
	23.	LISTING CONTENT
	24.	FULL MEDIA CONTENT
	25.	INTRODUCTION
	26. OUR TEAM
	27.	NEWS
	28.	SAY HELLO
	29.	LOGOS
	30.	FOOTER
	31.	RESPONSIVE TABLET FIXES
	32. REPSONSIVE MOBILE FIXES
*/

/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville:400|Poppins:300,400,600,800&subset=latin-ext");

:root {
    --dynamic-img-car: url('../images/red-car.gif');
    --dynamic-img-napkin: url('../images/charmee-front.jpg');
}

/* BODY */
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "zonapro-black";
    font-size: 14px;
    color: #313434;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

html {
    height: 100%;
}

/* CUSTOM ELEMENTS */
.overflow {
    overflow: hidden !important;
}

.no-margin {
    margin: 0 !important;
}

/* HTML ELEMENTS */
img {
    max-width: 100%;
}

/* LINKS */
a {
    color: #313434;
}

a {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

/* TRANSITION OVERLAY */
.transition-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: -100%;
    z-index: 10;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.transition-overlay * {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.transition-overlay .layer {
    width: 10px;
    height: 100%;
    float: left;
    background: #313434;
    transition-delay: 0.4s;
}

.transition-overlay.active {
    top: 0;
}

.transition-overlay.active .layer {
    width: 100%;
}

/* ODOMETER */
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit {
    padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
    left: 0;
}

/* PRELOADER */
.preloader {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    overflow: hidden;
    background: #f03a37;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader * {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader .layer {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #313434;
    z-index: 2;
}

.preloader .inner {
    margin: 0;
    position: relative;
    z-index: 3;
}

.preloader figure {
    display: block;
    margin: 0;
}

.preloader figure img {
    height: 110px;
}

.preloader .typewriter {
    height: 26px;
    line-height: 26px;
    display: inline-block;
    transform: translateY(-70px);
    color: #fff;
    font-family: "Libre Baskerville", serif;
}

.preloader .typewriter #typewriter-text {
    float: left;
    font-size: 20px;
    margin-left: 5px;
    margin-top: -2px;
    margin-right: 3px;
}

.preloader .typewriter #typewriter-suffix {
    width: 2px;
    height: 22px;
    display: inline-block;
    background: #fff;
    text-indent: -1000px;
    overflow: hidden;
}

.page-loaded {
    overflow: inherit;
}

.page-loaded .preloader {
    left: -100%;
    transition-delay: 0.6s;
}

.page-loaded .preloader .layer {
    bottom: -100%;
    transition-delay: 0.2s;
}

.page-loaded .preloader .inner {
    transform: translateY(30px);
    opacity: 0;
}

.page-loaded .header .social-media {
    transform: translateY(0);
    opacity: 1;
}

.page-loaded .navbar {
    transform: translateY(0);
}

.page-loaded .soundbar {
    transform: translateX(0);
}

/* NAVIGATION MENU */
.navigation-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    left: 0;
    top: -100%;
    z-index: 8;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.navigation-menu * {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.navigation-menu .nav-bg {
    width: 10px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #313434;
    transition-delay: 0.4s;
}

.navigation-menu .nav-bg2 {
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #f03a37;
    transition-delay: 0.8s;
}

.navigation-menu .inner {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.navigation-menu .inner address {
    float: left;
    color: #fff;
    font-family: "Libre Baskerville", serif;
    font-size: 20px;
    transform: translateX(-200%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    margin: 0;
    height: 170px;
    position: absolute;
    top: 50%;
    margin-top: -85px;
}

.navigation-menu .inner address span {
    font-family: "Poppins", sans-serif;
    display: block;
    font-size: 2vw;
    font-weight: 800;
    margin-bottom: 20px;
}

.navigation-menu .inner ul {
    float: right;
    margin: 0;
    padding: 30px;
    display: grid;
    justify-content: end;
    font-family: 'zonapro-bold-up';
}

.navigation-menu .inner ul li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.navigation-menu .inner ul li:hover ul {
    max-height: 500px;
}

.navigation-menu .inner ul li a {
    font-size: 3.5vw;
    color: #fff;
    font-weight: 800;
    position: relative;
}

.navigation-menu .inner ul li a:hover {
    text-decoration: none;
    color: #c28ebf;
}

.navigation-menu .inner ul li a:hover:before {
    width: 100%;
}

.navigation-menu .inner ul li a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 0;
    bottom: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);

}

.navigation-menu .inner ul:after {
    content: "";
    position: absolute;
    top: 4%;
    bottom: 0%;
    left: 68%;
    border-left: 1px solid #ffffff;
    transform: translate(-50%);
}

.navigation-menu .inner ul li ul {
    max-height: 0;
    width: 100%;
}

.navigation-menu .inner ul li ul li {
    display: block;
}

.navigation-menu .inner ul li ul li a {
    font-size: 26px;
}

.navigation-menu .inner ul li ul li a:before {
    height: 4px;
    bottom: 8px;
}

.navigation-menu.open {
    top: 0;
}

.navigation-menu.open .nav-bg {
    width: 100%;
}

.navigation-menu.open .nav-bg2 {
    width: 100%;
}

.navigation-menu.open address {
    transition-delay: 1s;
    transform: translateY(0);
}

.navigation-menu.open ul li {
    margin: 0;
}

/* SANDWICH BUTTON */
.sandwich-btn {
    width: 22px;
    height: 22px;
    float: left;
    position: relative;
    cursor: pointer;
}

.sandwich-btn span {
    display: block;
    height: 2px;
    width: 18px;
    background: #fff;
    opacity: 1;
    position: absolute;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.sandwich-btn span:nth-child(1) {
    top: 0;
}

.sandwich-btn span:nth-child(2) {
    top: 8px;
}

.sandwich-btn.open span:nth-child(1) {
    top: 4px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.sandwich-btn.open span:nth-child(2) {
    top: 4px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

/* EQUALIZER */
.equalizer {
    width: 46px;
    height: 46px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotate(90deg);
}

.equalizer span {
    background: #fff;
    width: 2px;
    height: 2px;
    top: 50%;
    bottom: 0;
    left: 0%;
    transform: translateY(-50%);
    position: absolute;
    transition: height 0.2s linear;
}

.equalizer span:nth-child(1) {
    margin-left: 4px;
}

.equalizer span:nth-child(2) {
    margin-left: 8px;
}

.equalizer span:nth-child(4) {
    margin-left: 12px;
}

.equalizer span:nth-child(5) {
    margin-left: 16px;
}

.equalizer span:nth-child(6) {
    margin-left: 20px;
}

.equalizer.paused span {
    height: 3px !important;
}

/* HEADER */
.header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.header .social-media {
    position: absolute;
    left: 44px;
    bottom: 90px;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    margin: 0;
    padding: 0;
    z-index: 2;
    transform: translateY(100%);
    opacity: 0;
    transition-delay: 1.2s;
}

.header .social-media li {
    float: left;
    margin: 0;
    margin-right: 15px;
    padding: 0;
    list-style: none;
}

.header .social-media li a {
    float: left;
    color: #fff;
    position: relative;
}

.header .social-media li a:hover {
    text-decoration: none;
}

.header .social-media li a:hover:before {
    width: 100%;
}

.header .social-media li a:before {
    content: "";
    width: 0;
    height: 6px;
    background: #00bbcc;
    position: absolute;
    left: 0;
    bottom: 2px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

/* NAVBAR */
.navbar {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    padding: 30px 40px;
    font-family: "Libre Baskerville", serif;
    transform: translateY(-100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-delay: 0.8s;
}

.logo {
    position: fixed;
    z-index: 7;
    left: 15px;
    top: 30px;
}

.logo a img {
    height: 65px;
}

.navbar .sandwich-nav {
    margin-right: 0;
}

.navbar .sandwich-nav .sandwich-text {
    float: left;
    height: 46px;
    overflow: hidden;
}

.navbar .sandwich-nav .sandwich-text.move-up b {
    transform: translateY(-50%);
}

.navbar .sandwich-nav .sandwich-text b {
    float: left;
    font-weight: 400;
    line-height: 46px;
    color: #fff;
    font-family: "Libre Baskerville", serif;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.navbar .sandwich-nav .sandwich-btn {
    float: left;
    margin-left: 10px;
    margin-top: 18px;
}

/* SOUNDBAR */
.soundbar {
    width: 46px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-left: 40px;
    z-index: 2;
    transform: translateX(-150%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-delay: 1s;
}

.soundbar .sound {
    width: 158px;
    float: left;
    text-align: center;
    transform: rotate(-90deg);
    margin-left: -52px;
}

.soundbar .sound .sound-title {
    float: left;
    line-height: 46px;
    color: #fff;
    font-family: "Libre Baskerville", serif;
}

.soundbar .sound .sound-text {
    height: 46px;
    line-height: 46px;
    float: left;
    overflow: hidden;
    text-align: center;
    font-family: "Libre Baskerville", serif;
}

.soundbar .sound .sound-text.move-up b {
    transform: translateY(-50%);
}

.soundbar .sound .sound-text b {
    width: 100%;
    display: block;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    font-weight: 400;
}

.soundbar .sound .equalizer {
    float: left;
    margin: 0 10px;
}

.soundbar .sound .equalizer * {
    transition-delay: 0s;
}

.soundbar .sound .equalizer .holder {
    width: 23px;
    height: 20px;
    float: left;
    margin-left: 10px;
    position: relative;
}

/* SLIDER */
.header {
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
    left: 0;
    top: 0;
}

.header:before {
    content: "";
    width: 60%;
    height: 20px;
    background: #f03a37;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.header:after {
    content: "";
    width: 80%;
    height: 60%;
    background-color: #f03a37;
    margin-left: 10%;
    top: 0;
    z-index: 2;
}

.header h5 {
    font-size: 36px;
    color: #fff;
    font-family: "Libre Baskerville", serif;
    margin-bottom: 0;
    position: relative;
}

.header h5:before {
    content: "";
    width: 30px;
    height: 3px;
    background: #fff;
    float: left;
    margin-top: 19px;
    margin-right: 6px;
    margin-left: -18px;
}

.header h5 span {
    position: relative;
}

.header h5 span:after {
    content: "";
    width: 100%;
    height: 7px;
    background: #00bbcc;
    position: absolute;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.header h2 {
    font-size: 4vw;
    color: #062049;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: -25px;
}

.header-line-1 {
    width: 0;
    animation:
        typing 3.5s steps(30, end) forwards;
    animation-delay: 1s;
}

.header-line-2 {
    width: 0;
    animation:
        typing 3.5s steps(30, end) forwards;
    animation-delay: 2.5s;
}

.header-line-3 {
    width: 0;
    animation:
        typing 3.5s steps(30, end) forwards;
    animation-delay: 4s;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

.header .btn-ghost {
    width: 180px;
    height: 54px;
    line-height: 52px;
    display: inline-block;
    border-radius: 54px;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
    background: url(../images/btn-bg.jpg);
    background-size: cover;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.header .btn-ghost * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.header .btn-ghost span {
    position: relative;
    display: inline-block;
}

.header .btn-ghost span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
}

.header .btn-ghost span:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.header .btn-ghost:hover span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.header .btn-ghost:hover {
    text-decoration: none;
}

.header .btn-play {
    color: #fff;
    position: relative;
    z-index: 2;
}

.header .btn-play img {
    height: 50px;
}

.header .video-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.header .video-bg video {
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.header .video-bg .container {
    position: relative;
    z-index: 2;
}

.header .swiper-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.header .swiper-carousel * {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.header .swiper-carousel .swiper-button-prev {
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: none;
    cursor: url("../images/arrow-left.png"), auto;
}

.header .swiper-carousel .swiper-button-next {
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    cursor: url("../images/arrow-right.png"), auto;
}

.header .swiper-carousel .swiper-slide {
    height: 100%;
    display: flex;
    background: #eee;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    background-size: cover;
}

.header .swiper-carousel .swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #313434;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.header .swiper-carousel .swiper-slide .inner {
    opacity: 0;
    padding: 0 5vw;
    position: relative;
    z-index: 2;
    transform: translateY(50px);
}

.header .swiper-carousel .swiper-slide .inner h2 {
    font-size: 6vw;
}

.header .swiper-carousel .swiper-slide-active {
    margin: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.header .swiper-carousel .swiper-slide-active:after {
    content: "";
    opacity: 0;
}

.header .swiper-carousel .swiper-slide-active .inner {
    opacity: 1;
    transform: translateY(0);
}

.header .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.header .swiper-container .swiper-slide {
    overflow: hidden;
}

.header .swiper-container .swiper-button-next {
    width: auto;
    height: auto;
    background: none;
    right: 0px;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
}

.header .swiper-container .swiper-button-next * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.header .swiper-container .swiper-button-next span {
    position: relative;
    display: inline-block;
}

.header .swiper-container .swiper-button-next span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
}

.header .swiper-container .swiper-button-next span:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.header .swiper-container .swiper-button-next:hover span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.header .swiper-container .swiper-button-prev {
    width: auto;
    height: auto;
    background: none;
    left: auto;
    right: 0;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-right: 30px;
    margin-top: 0px;
}

.header .swiper-container .swiper-button-prev * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.header .swiper-container .swiper-button-pauseplay {
    width: auto;
    height: auto;
    background: none;
    right: 0px;
    font-weight: 800;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-right: 30px;
    cursor: pointer;
}

.scroll-side-text {
    font-size: 15px;
    width: auto;
    height: auto;
    background: none;
    font-weight: 600;
    color: #062049;
    overflow: hidden;
    position: relative;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: -5px;
    margin-top: 34px;
}

.scrolls {
    position: fixed;
    z-index: 7;
    top: 45%;
    right: 2.5%;
    margin-top: -100px;
    margin-left: -250px;
}

.scrolls .scroll-down {
    position: relative;
    margin-left: 17px;
    margin-top: 27px;
    cursor: pointer;
}

.scrolls .scroll-up {
    position: relative;
    margin-left: 17px;
    margin-top: -16px;
    cursor: pointer;
}

.version-title {
    position: fixed;
    z-index: 7;
    transform: rotate(-90deg);
    color: #062049;
    font-family: "Libre Baskerville", serif;
    width: 158px;
    bottom: 175px;
    left: -21px;
    font-weight: bolder;
    font-size: 10px;
}

.social-header {
    position: fixed;
    z-index: 7;
    bottom: 10px;
    margin: 0;
    padding: 0;
    right: 36px;
    font-size: 16px;
}

.social-header li {
    float: left;
    margin: 0;
    margin-right: 10px;
    padding: 0;
    list-style: none;
}

.social-header li a {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    position: relative;
    background: #16234d;
    transition: 0.5s ease;
}

.header .swiper-container .swiper-button-prev span {
    position: relative;
    display: inline-block;
}

.header .swiper-container .swiper-button-prev span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
}

.header .swiper-container .swiper-button-prev span:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.header .swiper-container .swiper-button-prev:hover span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.header .swiper-container .swiper-pagination-fraction {
    width: 100px;
    position: absolute;
    left: auto;
    right: 40px;
    bottom: 20px;
    color: #fff;
    text-align: right;
}

.header .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
    font-size: 50px;
    font-weight: 800;
}

.header .swiper-container .swiper-pagination-fraction .swiper-pagination-current:before {
    content: "0";
}

.header .swiper-container .swiper-pagination-fraction .swiper-pagination-total {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.7;
}

.header .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.header .slide-inner:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.2;
}

main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

/* PAGE HEADER */
.page-header {
    width: 100%;
    height: 100%;
    min-height: 560px;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background: url(../images/int-hero.jpg) center;
    background-size: cover;
}

.page-header .social-media {
    position: absolute;
    left: 140px;
    bottom: 30px;
    margin: 0;
    padding: 0;
    font-family: "Libre Baskerville", serif;
    z-index: 2;
}

.page-header .social-media li {
    float: left;
    margin: 0;
    margin-right: 15px;
    padding: 0;
    list-style: none;
}

.page-header .social-media li a {
    float: left;
    color: #fff;
    position: relative;
}

.page-header .social-media li a:hover {
    text-decoration: none;
}

.page-header .social-media li a:hover:before {
    width: 100%;
}

.page-header .social-media li a:before {
    content: "";
    width: 0;
    height: 6px;
    background: #00bbcc;
    position: absolute;
    left: 0;
    bottom: 2px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.page-header .inner-content {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.page-header .inner-content .inner {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 0 140px;
}

.page-header .inner-content .inner h2 {
    font-size: 8vw;
    color: #fff;
    display: block;
    font-weight: 800;
    margin-bottom: 2s0px;
}

.page-header .inner-content .inner h6 {
    font-size: 20px;
    color: #fff;
    display: block;
    font-family: "Libre Baskerville", serif;
}

/* WORKS */
.works {
    background-image: url("../images/services-bg2.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.works-img-container {
    position: absolute;
    bottom: 53px;
    left: 130px;
}

.works .works-title {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0;
    margin-bottom: 80px;
}

.works .works-title h2 {
    font-size: 6vw;
    font-weight: 800;
    line-height: 1;
}

.works .works-title p {
    display: block;
    color: #8f999a;
    font-size: 22px;
    font-weight: 300;
    line-height: 34px;
    margin: 0;
    font-family: "Libre Baskerville", serif;
}

.works .works-grid {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.works .works-grid.two-cols li {
    width: 50%;
}

.works .works-grid li {
    width: 33.33333%;
    float: left;
    margin: 0;
    margin-bottom: 80px;
    padding: 0 2vw;
    list-style: none;
}

.works .works-grid li figure {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.works .works-grid li figure * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.works .works-grid li figure:hover a {
    transform: scale(0.95);
    box-shadow: 5px 20px 50px 5px rgba(153, 153, 153, 0.4);
}

.works .works-grid li figure:hover a img {
    transform: scale(1);
}

.works .works-grid li figure:hover figcaption {
    padding-left: 10px;
}

.works .works-grid li figure:hover figcaption span {
    height: 0;
}

.works .works-grid li figure a {
    float: left;
    overflow: hidden;
}

.works .works-grid li figure a img {
    width: 100%;
    float: left;
}

.works .works-grid li figure figcaption {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 30px;
}

.works .works-grid li figure figcaption span {
    width: 3px;
    height: 50px;
    background: #f03a37;
    position: absolute;
    left: 20px;
    top: -80%;
}

.works .works-grid li figure figcaption small {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    color: #8f999a;
    font-family: "Libre Baskerville", serif;
    font-size: 13px;
}

.works .works-grid li figure figcaption h3 {
    font-weight: 800;
}

/* WORKS SINGLE */
.works-single {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    position: relative;
    z-index: 2;
}

.works-single .works-title {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0;
    margin-bottom: 30px;
}

.works-single .works-title h2 {
    font-size: 6vw;
    font-weight: 800;
    line-height: 1;
}

.works-single .works-title p {
    display: block;
    color: #8f999a;
    font-size: 22px;
    font-weight: 300;
    line-height: 34px;
    margin-bottom: 50px;
    font-family: "Libre Baskerville", serif;
}

.works-single article {
    margin-bottom: 50px;
}

.works-single article h6 {
    font-weight: 600;
    text-transform: uppercase;
}

.works-single article p {
    margin: 0;
    font-size: 16px;
    font-family: "Libre Baskerville", serif;
    color: #8f999a;
}

.works-single ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.works-single ul li {
    width: 33.3333%;
    float: left;
    margin: 0;
    padding: 2vw;
    list-style: none;
}

.works-single ul li.double {
    width: 50%;
}

.works-single ul li.full {
    width: 100%;
}

/* AWARDS */
.awards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    background: url(../images/bg-shape-pattern.jpg) center no-repeat;
    background-size: auto 150%;
}

.awards h4 {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-transform: uppercase;
}

.awards p {
    font-size: 18px;
    font-family: "Libre Baskerville", serif;
    line-height: 30px;
    color: #8f999a;
    padding-left: 10%;
}

.awards figure {
    width: 100%;
    float: left;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.awards figure:after {
    content: "";
    width: 6px;
    height: 6px;
    background: #f03a37;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -3px;
    border-radius: 50%;
}

.awards figure img {
    height: 60px;
    display: inline-block;
}

.awards small {
    font-size: 18px;
    font-weight: 600;
    transform: translateY(-8px);
    display: inline-block;
}

.awards .odometer {
    font-weight: 800;
    font-size: 50px;
    margin-bottom: 20px;
}

/* SIDE CONTENT BLOCK */
.side-content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-size: cover;
}

.side-content-block .inner {
    width: 50%;
    padding: 200px 0;
}

.side-content-block .inner .holder {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.side-content-block .inner .holder p {
    font-family: "Libre Baskerville", serif;
    font-size: 23px;
    line-height: 36px;
    margin-bottom: 44px;
}

.side-content-block .inner .holder h6 {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 20px;
    margin-bottom: 0;
}

/* ICON CONTENT BLOCK */
.icon-content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #878d94;
    text-align: center;
}

.icon-content-block * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.icon-content-block .content-box {
    flex: 1;
    padding: 100px 2vw;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-content-block .content-box:hover {
    background: rgba(0, 0, 0, 0.05);
}

.icon-content-block .content-box:last-child {
    border-right: none;
}

.icon-content-block .content-box figure {
    display: block;
    margin-bottom: 30px;
}

.icon-content-block .content-box figure img {
    height: 50px;
}

.icon-content-block .content-box h4 {
    font-family: "Libre Baskerville", serif;
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.icon-content-block .content-box p {
    margin-bottom: 20px;
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    line-height: 27px;
}

.icon-content-block .content-box a {
    display: inline-block;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.icon-content-block .content-box a img {
    width: 50px;
}

.icon-content-block .content-box a:hover {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* CLIENTS */
.clients {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    text-align: center;
}

.clients * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.clients h2 {
    font-size: 6vw;
    font-weight: 800;
    margin-bottom: 50px;
}

.clients h6 {
    font-family: "Libre Baskerville", serif;
    font-size: 18px;
}

.clients ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
    padding: 0;
    position: relative;
}

.clients ul:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 2px;
    bottom: 0;
    z-index: 2;
}

.clients ul:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 2;
}

.clients ul li {
    width: 33.3333%;
    margin: 0;
    margin-right: -1px;
    margin-bottom: -1px;
    padding: 15px 0;
    list-style: none;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.clients ul li:hover figure {
    opacity: 1;
}

.clients ul li figure {
    width: 100%;
    float: left;
    margin: 0;
    padding: 15px 30%;
    overflow: hidden;
    position: relative;
    opacity: 0.4;
}

.clients ul li figure img {
    width: 100%;
    float: left;
}

.clients ul li figure h6 {
    width: 100%;
    float: left;
    text-align: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    height: 16px;
    font-weight: 800;
    font-size: 13px;
    opacity: 0;
}

/* TEXT CONTENT BLOCK */
.text-content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}

.text-content-block h2 {
    font-size: 5vw;
    font-family: "Libre Baskerville", serif;
}

.text-content-block h4 {
    font-weight: 600;
    font-size: 3vw;
    margin-bottom: 50px;
}

.text-content-block p {
    font-size: 19px;
    line-height: 30px;
    color: #8f999a;
    font-family: "Libre Baskerville", serif;
    margin: 0;
}


/* TEAM */
.team {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    background: #dbe4e4;
}

.team * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.team ul {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.team ul li {
    width: 20%;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    border-right: 1px solid #dbe4e4;
}

.team ul li:hover {
    transform: translateY(-40px);
}

.team ul li:hover .social-links {
    opacity: 1;
}

.team ul li:last-child {
    border-right: 0;
}

.team ul li:nth-child(2) {
    margin-top: 40px;
}

.team ul li:nth-child(4) {
    margin-top: 40px;
}

.team ul li figure {
    width: 100%;
    float: left;
    margin: 0;
    background: #fff;
}

.team ul li figure img {
    width: 100%;
    float: left;
}

.team ul li figure figcaption {
    width: 100%;
    float: left;
    padding: 15px;
    position: relative;
}

.team ul li figure figcaption h5 {
    font-weight: 600;
}

.team ul li figure figcaption .social-links {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 2;
    background: #fff;
    padding: 3px;
    opacity: 0;
    padding-left: 15px;
}

.team ul li figure figcaption .social-links a {
    float: left;
    margin-right: 10px;
}

.team ul li figure figcaption .social-links a:hover {
    color: #f03a37;
}

.team ul li figure figcaption small {
    display: block;
}

/* BLOG */
.blog {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
}

.blog .post {
    width: 100%;
    float: left;
    margin: 50px 0;
}

.blog .post .social-share {
    width: 100%;
    float: left;
    padding: 0 !important;
    margin-bottom: 40px;
}

.blog .post .social-share li {
    float: left;
    margin-right: 5px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.blog .post .social-share li.facebook a {
    background: #475993;
}

.blog .post .social-share li.twitter a {
    background: #76a9ea;
}

.blog .post .social-share li.google-plus a {
    background: #f34a38;
}

.blog .post .social-share li.linkedin a {
    background: #0077b7;
}

.blog .post .social-share li.youtube a {
    background: #f61c0d;
}

.blog .post .social-share li a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    float: left;
    background: #f03a37;
    color: #fff;
    border: none;
    border-radius: 0;
}

.blog .post .post-image {
    width: 100%;
    display: block;
    margin-bottom: 0;
}

.blog .post .post-image img {
    width: 100%;
}

.blog .post .post-content {
    width: 100%;
    display: block;
    padding: 0 50px;
    font-size: 18px;
}

.blog .post .post-content h6 {
    font-weight: 300;
    line-height: 38px;
    font-size: 26px;
    margin-bottom: 30px;
}

.blog .post .post-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}

.blog .post .post-content p:last-child {
    margin-bottom: 0;
}

.blog .post .post-content strong {
    font-weight: 600;
}

.blog .post .post-content figure {
    display: block;
    margin-bottom: 20px;
}

.blog .post .post-content blockquote {
    display: block;
    padding: 40px;
    margin-bottom: 40px;
    background: #f03a37;
    color: #fff;
    font-family: "Libre Baskerville", serif;
    position: relative;
}

.blog .post .post-content blockquote:before {
    content: "";
    font-family: fontawesome;
    color: #fff;
    font-size: 90px;
    position: absolute;
    left: 40px;
    top: 0;
    opacity: 0.1;
}

.blog .post .post-content blockquote:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    bottom: -20px;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #f03a37 transparent transparent transparent;
}

.blog .post .post-content blockquote h5 {
    font-weight: 800;
    font-family: Poppins;
    margin: 0;
}

.blog .post .post-content ul {
    padding-left: 20px;
}

.blog .post .post-content ul li {
    padding: 3px 0;
}

.blog .post .post-content .avatar {
    display: block;
    color: #8f999a;
    line-height: 50px;
    margin: 25px 0;
    font-size: 13px;
    font-weight: 600;
}

.blog .post .post-content .avatar img {
    height: 50px;
    float: left;
    margin-right: 10px;
    border-radius: 50%;
}

.blog .post .post-content .avatar a {
    color: #313434;
}

.blog .post .post-content .post-date {
    display: block;
    color: #8f999a;
    margin-bottom: 10px;
    font-family: "Libre Baskerville", serif;
    font-size: 16px;
}

.blog .post .post-content .post-title {
    display: block;
    font-size: 3vw;
    font-weight: 800;
    margin-bottom: 20px;
}

.blog .post .post-content .post-title a {
    float: left;
    color: #313434;
}

.blog .post .post-content .post-intro {
    display: block;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog .post .post-content .post-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.blog .post .post-content .post-link:hover {
    text-decoration: none;
    color: #f03a37;
}

.blog .post .post-content .post-link:hover:before {
    width: 0;
}

.blog .post .post-content .post-link:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #f03a37;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

/* CONTACT */
.contact {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}

.contact .title {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}

.contact .title h5 {
    font-weight: 800;
    font-size: 13px;
    color: #8f999a;
}

.contact .title h3 {
    font-family: "Libre Baskerville", serif;
    font-size: 38px;
    margin: 0;
}

.contact .contact-box {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.contact .contact-box h6 {
    font-size: 16px;
    font-weight: 800;
}

.contact .contact-box p {
    font-family: "Libre Baskerville", serif;
    line-height: 30px;
    font-size: 18px;
    color: #8f999a;
    margin: 0;
}

.contact .contact-box a {
    display: block;
    font-family: "Libre Baskerville", serif;
    line-height: 30px;
    font-size: 18px;
    color: #8f999a;
    margin-bottom: 30px;
}

.contact .contact-box a:last-child {
    margin-bottom: 0;
}

.contact .map {
    width: 100%;
    height: 340px;
    float: left;
    margin-top: 30px;
    margin-bottom: 60px;
    background: #8f999a;
}

.contact .alert {
    width: 100%;
    float: left;
    border-radius: 0;
    border: none;
    font-weight: 700;
}

.contact .form-group {
    width: 100%;
    float: left;
    padding: 0 15px;
}

.form-control{
    font-size: 14px!important;
    font-family: zonapro-regular;
}

.contact #success,
.contact #error {
    display: none;
    float: left;
}

.contact #error {
    background: red;
    color: #fff;
}

.contact #success {
    background: green;
    color: #fff;
}

.contact form {
    width: 100%;
    float: left;
}

.contact form .form-group {
    width: 100%;
    float: left;
    padding: 0 15px;
}

.contact form .form-group:nth-child(1) {
    width: 50%;
}

.contact form .form-group:nth-child(2) {
    width: 50%;
}

.contact form .form-group span {
    width: 100%;
    float: left;
    line-height: 54px;
    font-weight: 600;
}

.contact form .form-group input {
    width: 100%;
    float: left;
    height: 54px;
    padding: 0 20px;
    border: none;
    background: #f3f3f3;
}

.contact form .form-group textarea {
    width: 100%;
    float: left;
    height: 120px;
    padding: 20px;
    border: none;
    background: #f3f3f3;
}

.contact form .form-group button {
    height: 54px;
    background: #313434;
    color: #fff;
    padding: 0 30px;
    border: none;
    font-size: 13px;
    font-weight: 600;
}

.contact form .form-group label.error {
    font-weight: 600;
    margin-top: 10px;
}

.contact form .form-group .error {
    color: #f03a37;
}

/* REQUEST MATERIAL */
.form-group {
    position: relative;
}

#requestMaterialForm #disclaimer p {
    font-weight: 100 !important;
}

#requestMaterialForm .text-danger {
    position: absolute;
    top: .70rem;
    right: 0;
    visibility: hidden;
}

#requestMaterialForm #contact-number {
    position: relative;
}

#requestMaterialForm #contact-max-input {
    top: -102%;
    padding: 10px;
    visibility: visible;
}

.form-group [name="contact_number"]::-webkit-outer-spin-button,
.form-group [name="contact_number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* JOIN OUR TEAM */
#joinOurTeamForm .text-danger {
    position: absolute;
    top: 1rem;
    right: 0;
    visibility: hidden;
}

/* FOOTER */
.footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    background: #313434;
    text-align: center;
}

.footer .container {
    display: flex;
}

.footer .container .content-box {
    flex: 1;
    color: #fff;
}

.footer .container .content-box:nth-child(1) {
    text-align: left;
}

.footer .container .content-box:nth-child(3) {
    text-align: right;
}

.footer .container .content-box figure {
    display: block;
    height: 45px;
    margin-bottom: 15px;
}

.footer .container .content-box figure img {
    height: 45px;
}

.footer .container .content-box h2 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.5;
}

.footer .container .content-box p {
    font-size: 17px;
    font-family: "Libre Baskerville", serif;
    line-height: 32px;
    margin: 0;
}

/* SUB FOOTER */
.sub-footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 40px;
    background: #313434;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: "Libre Baskerville", serif;
}

.sub-footer .container {
    display: flex;
}

.sub-footer .container small {
    margin-left: 0;
    color: #fff;
    font-size: 12px;
}

.sub-footer .container ul {
    margin-left: auto;
    margin-bottom: 0;
    padding: 0;
}

.sub-footer .container ul li {
    float: left;
    margin: 0;
    margin-left: 30px;
    padding: 0;
    list-style: none;
}

.sub-footer .container ul li a {
    float: left;
    color: #fff;
    font-size: 12px;
}

/* RESPONSIVE TABLET FIXES */
@media only screen and (max-width: 991px),
only screen and (max-device-width: 991px) {
    .header .swiper-container .swiper-slide h5 {
        font-size: 28px;
    }

    .works .works-grid li {
        width: 50%;
    }

    .side-content-block .inner {
        width: 60%;
    }

    .awards {
        background-size: auto 100%;
    }

    .awards .text-right {
        text-align: center !important;
    }

    .awards p {
        padding: 0;
    }

    .icon-content-block {
        flex-direction: row;
    }

    .icon-content-block .content-box {
        width: 50%;
        flex: auto;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .clients ul li figure {
        padding: 15px 40px;
    }

    .page-header .inner-content .inner {
        padding: 0 120px;
    }

    .page-header .inner-content .inner h2 {
        font-size: 12vw;
    }

    .text-content-block h2 {
        font-size: 10vw;
        margin-bottom: 50px;
    }

    .team ul li {
        width: 33.33333%;
        border-top: 1px solid #dbe4e4;
    }

    .team ul li:nth-child(2) {
        margin-top: 0;
    }

    .team ul li:nth-child(4) {
        margin-top: 0;
    }

    .contact form .form-group:nth-child(1) {
        width: 100%;
    }

    .contact form .form-group:nth-child(2) {
        width: 100%;
    }

    .footer .container {
        flex-direction: column;
        text-align: left;
    }

    .footer .container .content-box:nth-child(3) {
        text-align: left;
    }
}

/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 767px),
only screen and (max-device-width: 767px) {
    .navbar {
        padding: 30px 25px;
    }

    .logo a img {
        height: 40px;
    }

    .soundbar {
        display: none;
    }

    .navigation-menu.open address {
        display: none;
    }

    .navigation-menu .inner ul {
        width: 100%;
    }

    .navigation-menu .inner ul li a {
        font-size: 40px;
    }

    .header:after {
        height: 30px;
        left: 25px;
    }

    .header .social-media {
        bottom: 40px;
        left: 25px;
    }

    .header .swiper-container .swiper-button-prev {
        display: none;
    }

    .header .swiper-container .swiper-button-next {
        display: none;
    }

    .header .swiper-container .swiper-slide h5 {
        font-size: 17px;
    }

    .header .swiper-container .swiper-slide h5:before {
        display: none;
    }

    .header .swiper-container .swiper-slide h2 {
        font-size: 60px;
    }

    .header .swiper-container .swiper-pagination-fraction {
        display: none;
    }

    .page-header .inner-content .inner {
        padding: 0 10px;
    }

    .page-header .social-media {
        left: 25px;
    }

    .text-content-block {
        padding: 75px 10px;
    }

    .text-content-block h4 {
        font-size: 7vw;
    }

    .works {
        padding: 75px 10px;
    }

    .works .works-title {
        width: 100%;
    }

    .works .works-grid li {
        width: 100%;
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .works .works-grid li:last-child {
        margin-bottom: 0;
    }

    .side-content-block .inner {
        width: 100%;
        padding: 20vh 10px;
    }

    .icon-content-block .content-box {
        width: 100%;
        border-right: 0;
        padding: 75px 25px;
    }

    .awards {
        padding: 75px 10px;
        background: none;
    }

    .awards .odometer {
        font-size: 40px;
    }

    .clients {
        padding: 75px 10px;
    }

    .clients ul:before {
        right: 0;
    }

    .clients ul li {
        width: 50%;
    }

    .clients ul li figure {
        padding: 15px 20px;
    }

    .team {
        padding: 75px 10px;
    }

    .team ul {
        padding: 0;
    }

    .team ul li {
        width: 100%;
        margin-bottom: 40px;
    }

    .team ul li:last-child {
        margin-bottom: 0;
    }

    .blog .post {
        padding: 0 15px;
    }

    .blog .post .post-content {
        padding: 0;
    }

    .blog .post .post-content .post-title {
        font-size: 7vw;
    }

    .contact {
        padding: 75px 10px;
    }

    .contact .title {
        margin-bottom: 20px;
    }

    .contact form .form-group {
        padding: 0;
    }

    .contact .map {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .footer {
        padding: 75px 10px;
    }

    .footer .container .content-box {
        margin-bottom: 50px;
    }

    .footer .container .content-box:last-child {
        margin-bottom: 0;
    }

    .footer .container .content-box h2 {
        margin-bottom: 20px;
    }

    .sub-footer {
        padding: 30px 10px;
    }

    .sub-footer .container {
        flex-direction: column;
        text-align: left;
    }

    .sub-footer .container ul {
        margin-left: 0;
        margin-top: 10px;
    }

    .sub-footer .container ul li {
        margin-left: 0;
        margin-right: 10px;
    }
}

.banner-rotate {
    transform-origin: 0 0;
    transform: skewY(-5deg);
}

.banner-spacing {
    margin-top: 12.5rem !important;
    margin-left: 10%;
}

.swiper-sidebar-container {
    position: absolute;
    z-index: 10;
    bottom: 100px;
    left: 30%;
    display: flex;
}

.banner-spacing {
    position: absolute;
}

.slide-inner video {
    height: 105%;
    width: auto;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    left: 23%;
    bottom: 271px;
    text-align: left;
    margin: 0 15px;
}

.swiper-pagination-bullet {
    width: 48px;
    height: 51px;
    display: inline-block;
    background: transparent;
    opacity: 1;
    background-image: url('../images/bullet.png');
    margin: 0 25px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-image: url('../images/bullet-active.png') !important;
}

.works h2 {
    color: white;
    font-size: 4rem;
}

.works h3 {
    font-weight: bolder;
    color: white;
    font-size: 2.5rem;
}

.works h4 {
    color: white;
    font-size: 1.5rem;
    margin-left: -188px;
    padding-top: 20px;
}

.works h3>p {
    line-height: 50px;
    width: 875px;
    margin-left: -192px;
}

.works p {
    line-height: 35px;
    margin-bottom: 0px;
    width: 830px;
}

.video-services {
    /* FOR GIF */
    position: relative;
    height: auto;
    left: -20px;
    top: -15.5%;
    width: 100%;
}

.list-services {
    z-index: 1;
    transform-origin: 0 0;
    margin-top: 220px;
    transform: skewY(-5deg);
}

.pushable {
    border-radius: 16px;
    border: 3px solid #430055;
    background: linear-gradient(358deg, rgb(55 0 83) 7%, rgb(124 65 133) 62%);
    border-bottom-right-radius: 20px;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transform: rotate(355deg);
    width: 25%;
    min-width: 230px;
}

.front {
    display: block;
    padding: 20px 10px;
    border-radius: 12px;
    border-top-left-radius: 23px;
    font-size: 1rem;
    background: linear-gradient(358deg, rgb(55 0 83) 7%, rgb(80 0 92) 62%);
    color: white;
    font-weight: bolder;
    transform: rotate(359deg);
}

.pushable:active .front {
    transform: translateY(-2px);
}

.service-button-left {
    text-align: right;
}

.service-button-right {
    text-align: left;
    margin-top: -23px;
}

.services-gif {
    width: 65%;
    height: auto;
    margin-top: -91px;
}

.services-button-container {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.services {
    background-image: url("../images/work-bg.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.services .services-title {
    font-size: 3.5rem;
    line-height: 1;
    color: #16234c;
}

.services h3 {
    font-size: 1.3rem;
    line-height: 24px;
    color: #16234c;
    text-align: center;
    margin: auto;
    margin-top: 10px;
    width: 549px;
}

.rotates {
    transform-origin: 0 0;
    transform: skewY(-5deg) !important;
}

.services h6 {
    line-height: 0.5;
    color: #16234c;
    text-align: center;
    margin: auto;
    margin-top: 20px;
}

.works-video {
    height: 300px;
    width: 351px;
    object-fit: cover;
}

.gif2 {
    width: 405px !important;
}

.portfolio {
    background-image: url("../images/whats-up.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.portfolio h2 {
    font-size: 4rem;
    line-height: 1;
    color: #ffffff;
}

.portfolio h6 {
    font-size: 1.7rem;
    line-height: 0.9;
    color: #ffffff;
    font-family: 'zonapro-semibold';
}

.portfolio-content {
    margin-top: 5%;
}

.portfolio-img {
    width: 100%;
    height: auto;
}

.repurposed {
    background-image: url("../images/repurposed-bg.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.repurposed-text {
    margin-top: 3rem;
}

.repurposed-img {
    height: auto;
    max-width: 90%;
}

#repurposed-img::before {
    top: 7%;
    content: " ";
    height: 76%;
    width: 35%;
    background: var(--dynamic-img-car);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 34%;
    border-radius: 10px;
}

/* youtube holder */
#repurposed-img2-iframe-container {
    margin: 0;
    padding: 0;
    background-image: url(../images/repurposed-2.png);
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

#repurposed-img2-iframe-container iframe {
    position: absolute;
    background-color: blueviolet;
    top: 12%;
    left: 15%;
    width: 75%;
    height: 45%;
    border-radius: 10px;
}

#repurposed-img1-iframe-container {
    margin: 0;
    padding: 0;
    background-image: url(../images/repurposed-1.png);
    width: 80vw;
    height: 90vh;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

#repurposed-img1-iframe-container iframe {
    position: absolute;
    background-color: blueviolet;
    top: 7%;
    left: 29%;
    width: 36%;
    height: 76%;
    border-radius: 15px;
}

#repurposed-img2::before {
    z-index: 1;
    top: 9%;
    content: " ";
    height: 49%;
    width: 69%;
    background: var(--dynamic-img-napkin);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 20%;
    border-radius: 10px;
}

.repurposed h2 {
    max-width: 50%;
    font-size: 4rem;
    line-height: 1;
    color: #ffffff;
}

.repurposed h4 {
    font-size: 2rem;
    line-height: 1;
    color: #ffffff;
}

.repurposed h6 {
    font-size: 1.2rem;
    line-height: 1;
    color: #ffffff;
    font-family: 'zonapro-semibold';
    width: 85%;
}

.repurposed-cars {
    border-radius: 5%;
    box-shadow: 2px 2px #543e7c;
    margin-top: 55%;
}

.repurposed-img2 {
    height: auto;
    max-width: 95%;
    bottom: 0px;
    position: relative;
    margin: auto;
}

.blog {
    background-image: url("../images/repurposed-bg.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.blog-img {
    height: auto;
    margin-bottom: 0;
}

.blog h2 {
    font-size: 4rem;
    line-height: 1;
    color: #ffffff;
}

.blog h4 {
    font-size: 2rem;
    line-height: 1;
    color: #ffffff;
}

.btn-blog {
    transform: rotate(358deg) translateY(-10px);
    min-width: 100px;
}

.front-blog {
    display: block;
    padding: 25px 10px;
    border-radius: 12px;
    border-top-left-radius: 23px;
    font-size: 1rem;
    background: linear-gradient(358deg, rgba(44, 0, 62, 1) 7%, rgba(83, 0, 94, 1) 62%);
    color: white;
    font-weight: bolder;
    transform: rotate(359deg);
}

.blog-img2 {
    position: absolute;
    margin: auto;
    left: 0;
    width: 50%;
    height: auto;
}

.social-box,
.social-box-work2 {
    box-shadow: 2px 2px #6c5d5d;
    padding-bottom: 100%;
    width: 100%;
    background-color: white;
    border-radius: 15%;
    cursor: pointer;
}

.blog-open {
    width: 100%;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
    position: relative;
    z-index: 9;
    position: fixed;
    display: none;
    overflow: auto;
}

.blog-open-work2 {
    width: 100%;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
    position: relative;
    z-index: 9;
    position: fixed;
    display: none;
    overflow: auto;
}

.blog-close {
    z-index: 15;
    position: fixed;
    height: 30px;
    width: 30px;
    right: 5%;
    font-size: 50px;
    top: 2%;
    color: white;
    cursor: pointer;
}

.blog-close-work2 {
    z-index: 11;
    position: fixed;
    height: 30px;
    width: 30px;
    right: 5%;
    font-size: 50px;
    top: 2%;
    color: white;
    cursor: pointer;
}

.blog-backdrop {
    height: 100vh;
    width: 100%;
    background: #071636;
    z-index: 9;
    position: fixed;
    display: none;
    opacity: 0.8;
}

.blog-backdrop-work2 {
    height: 100vh;
    width: 100%;
    background: #071636;
    z-index: 9;
    position: fixed;
    display: none;
    opacity: 0.8;
}

.blog-open-img {
    height: auto;
    width: 95%;
    margin-top: -37px;
    position: relative;
    bottom: 0;
}

.blog-open-title {
    font-size: 4rem;
    line-height: 1;
    color: #ffffff;
    margin-top: 50px;
}

.blog-open-img2 {
    position: absolute;
    margin: auto;
    left: -100px;
    width: 35%;
    height: auto;
    top: 75px;
}

.blog-open-img3 {
    position: absolute;
    margin: auto;
    bottom: 0px;
    left: 34px;
    width: 28%;
    height: auto;
}

.blog-left-arrow,
.blog-right-arrow,
.blog-left-arrow-yt,
.blog-right-arrow-yt {
    position: absolute;
    margin: auto;
    cursor: pointer;
}

.blog-left-arrow,
.blog-left-arrow-yt {
    left: 22%;
    top: 45%;
    cursor: pointer;
}

.blog-right-arrow,
.blog-right-arrow-yt {
    right: 15%;
    top: 45%;
}

.blog-left-arrow:active,
.blog-left-arrow-yt:active {
    transform: translateX(-5px);
}

.blog-right-arrow:active,
.blog-right-arrow-yt:active {
    transform: translateX(5px);
}

.blog-open h4 {
    font-size: 1.7rem;
    line-height: 1;
    color: #ffffff;
}

.blog-open-work2 h4 {
    font-size: 1.7rem;
    line-height: 1;
    color: #ffffff;
}

.blog-descrip {
    margin-top: 8%;
    width: 75%;
    text-transform: uppercase;
    line-height: 35px !important;
}

.blog-descrip2 {
    text-transform: uppercase;
}

.front-blog {
    padding: 20px 10px !important;
}

.our-work {
    background-image: url("../images/our-work.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.our-work-img {
    height: auto;
    width: 65%;
    position: absolute;
    left: -85px;
    bottom: 345px;
}

.our-work-img3 {
    position: absolute;
    left: 249px;
    z-index: -1;
    height: auto;
    width: 40%;
    bottom: 320px;
}

.our-work-img5 {
    position: relative;
    margin: auto;
    bottom: 0;
    width: 75%;
    height: auto;
}

.our-work-img4 {
    position: absolute;
    left: 43px;
    bottom: 145px;
    width: 26%;
    height: auto;
    z-index: -1;
}

.our-work h4 {
    letter-spacing: 1px;
    font-size: 2rem;
    color: #ffffff;
    margin-left: -100px;
}

.our-work h4 button {
    width: 200px;
}

.btn-our-work {
    transform: rotate(358deg) translateY(-10px);
    margin-left: 15px;
}

.our-work-img6 {
    margin-left: 45px;
}

.partners {
    background-image: url("../images/partners-bg2.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 350px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.partners h2 {
    font-size: 4rem;
    line-height: 1;
    color: #16234c;
}

.partners img {
    width: 75%;
    height: auto;
    padding: 5% 0;
}

.center-logo {
    margin: auto;
    width: 50%;
}

.partners-button-left {
    text-align: right;
}

.partners-button-right {
    text-align: left;
    bottom: 25px;
}

.btn-partners {
    width: 25% !important;
}

.contact-us {
    background-image: url("../images/contact-us.png");
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 40px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    overflow: hidden;
}

.contact-us h2 {
    font-size: 5rem;
    line-height: 1;
    color: #ffffff;
}

.contact-left {
    margin-left: 10%;
    margin-top: 100px;
}

.contact-us .contact-left img {
    width: auto;
    height: 75%;
}

.contact-us h6 {
    font-size: 1.5rem;
    line-height: 27px;
    color: #ffffff;
    width: 60%;
    font-family: zonapro-up;
}

.contact-left-padding {
    padding: 2% 0;
}

.video-contact {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    margin: auto;
    right: 100px;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    padding-top: 50px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
    z-index: 10;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    background: #fff;
    box-shadow: 0 15px 45px 0 rgb(38 12 54);
    border-radius: 5px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    left: 0;
    right: 0;
    position: absolute;
    border-top: 5px solid #7002ad;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    text-align: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.pushable-form {
    border-radius: 16px;
    border: 3px solid #430055;
    background: linear-gradient(358deg, rgb(55 0 83) 7%, rgb(124 65 133) 62%);
    border-bottom-right-radius: 20px;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    width: 100%;
}

.front-modal {
    display: block;
    padding: 20px 10px;
    border-radius: 12px;
    border-top-left-radius: 23px;
    font-size: 1rem;
    background: linear-gradient(358deg, rgb(55 0 83) 7%, rgb(80 0 92) 62%);
    color: white;
    font-weight: bolder;
    transform: rotate(359deg);
}

.pushable-form:active .form {
    transform: translateY(-2px);
}

#title-Tag-Line {
    font-size: 20px;
}

.non-scrollable {
    max-height: 100vh;
    overflow: hidden;
}

.title {
    display: block;
    font-family: sans-serif;
    margin: 18px auto 10px;
}

.pageTitle {
    font-size: 2em;
    font-family: 'zona_probold';
    color: #16234c;
}

.name {
    background-color: #ebebeb;
    color: rgb(0 0 0);
    font-family: 'zonapro-regular';
}

.email {
    background-color: #ebebeb;
    height: 2em;
}

.message {
    overflow: hidden;
    height: 10rem!important;
    font-size: 14px;
    font-family: zonapro-regular;
}

.formEntry {
    display: block;
    margin: 5px auto 5px;
    min-width: 80%;
    padding: 10px;
    border-radius: 2px;
    border: none;
    transition: all 0.5s ease 0s;
}

.submit {
    width: 200px;
    color: white;
    background-color: #7002ad;
    font-size: 20px;
}

.submit:hover {
    box-shadow: 15px 15px 15px 5px rgba(78, 72, 77, 0.219);
    transform: translateY(-3px);
    width: 300px;
    border-top: 5px solid #16234e;
    border-radius: 0%;
}

.labelEntry {
    font-size: 16px;
    color: #4e4e4e;
    font-family: 'zonapro-semibold';
}

.upload-label, #disclaimer p {
    font-size: 14px;
    color: #4e4e4e;
    font-family: 'zonapro-semibold';
}

.upload-file {
    font-family: 'zonapro-regular';
}

.upload-file:before {
    content: "Choose Files";
    width: 106.5px;
    height: 31px;
    border: 1px solid #470059;
    background: #50005c;
    position: absolute;
    color: #fff;
    padding: 3px 5px;
    cursor: pointer;
    text-align: center;
}

.discipline-dropdown {
    width: 100%;
    font-family: 'zonapro-semibold';
}

.what-happen-space {
    margin-top: 3rem;
}

.creacon-space {
    margin-top: 3rem;
}

.social-box-container, 
.social-box-container-yt {
    min-width: 100px;
    width: 20%;
    padding: 10px;
}

.repurposed-img-container {
    min-width: 100px;
    width: 10%;
    padding: 10px;
    cursor: pointer;
}

.repurposed-img-container:hover {
    transform: scale(1.1);
}

#repurposed-img {
    left: 150px;
}

.repurposed-img-container img {
    margin: 10px;
}

.mySwiper01,
.main-container {
    overflow-x: hidden !important;
}

.disable-scroll {
    overflow-y: hidden !important;
}

.myHomePage {
    position: relative;
}

.repurposed-phone-1 {
    height: auto;
    width: 4.8%;
    position: absolute;
    right: 0;
    margin: auto;
    left: -68px;
    top: 77px;
    z-index: 3;
}

.repurposed-phone-2 {
    height: auto;
    width: 13.9%;
    position: absolute;
    margin: auto;
    right: 0;
    left: -68px;
    bottom: 175px;
    z-index: 3;
}

.repurposed-laptop-1 {
    height: auto;
    width: 4%;
    position: absolute;
    right: 0;
    margin: auto;
    left: 38px;
    top: 100px;
    z-index: 3;
}

.our-work-box-container {
    padding-right: 20px;
}

.login-text {
    font-size: 30px !important;
}

.text-bottom {
    width: 55% !important;
    float: right !important;
    margin: 0 !important;
    margin-top: 100px !important;
    padding: 20px !important;
    display: grid !important;
    justify-content: center !important;
}

.terms-text {
    font-size: 20px !important;
    font-family: zona_proextralight !important;
}

.text-text-li {
    margin-top: 100px !important;
}

.container-img-blog {
    width: 55vw;
    height: 50vh;
    margin: -50px 559px;
    display: grid;
    gap: 5px;
    grid-template-areas:
        'blog-img-1 blog-img-1 blog-img-2'
        'blog-img-1 blog-img-1 blog-img-3';
}

.container-img-blog>img {
    display: block;
    border-radius: 5px;
    box-shadow: 2px 2px 3px #330044;
}

#blog-img-1 {
    grid-area: blog-img-1;
}

#blog-img-2 {
    grid-area: blog-img-2;
}

#blog-img-3 {
    grid-area: blog-img-3;
}

#blog-img-1,
#blog-img-2,
#blog-img-3 {
    background-color: rgb(255 255 255 / 20%);
    display: flex;
    align-items: flex-end;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 1px 1px 3px #3d0055;
    transition: background-size 5s;
}

#blog-img-1:hover,
#blog-img-2:hover,
#blog-img-3:hover {
    background-size: contain;
}

#blog-img-1 a,
#blog-img-2 a,
#blog-img-3 a {
    text-decoration: none;
    text-transform: uppercase;
    background-color: rgb(138 43 226 / 50%);
    color: whitesmoke;
    text-shadow: 2px 2px 3px black;
    padding: 5px 10px 5px 1px;
    border-radius: 0px 5px 5px 0px;
    letter-spacing: .5px;
}

#blog-img-1 a:hover,
#blog-img-2 a:hover,
#blog-img-3 a:hover {
    text-decoration: underline;
    background-color: rgb(138 43 226 / 80%);
}

.our-work h2 {
    font-size: 4rem;
    color: #ffffff;
    margin-top: 100px;
    margin-left: -100px;
}

.video-contact-container {
    display: flex;
    position: relative;
    margin-top: 5vh;
    margin-left: 45vw;
    width: 50vw !important;
    padding: 0;
}

.contact-icons {
    width: 50px;
    height: 50px;
    padding: 10px;
}

.contact-row {
    min-height: 100%;
}

.why-margin {
    margin-top: 5rem;
}

.whats-up-margin {
    margin-top: -145px;
    margin-left: -90px;
    margin-right: 90px;
}

.arrow-disabled {
    pointer-events: none;
}

.work-buttons {
    bottom: -40px;
}

.fixed-btn-all-section {
    position: fixed;
    z-index: 8;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 69px;
    width: 65%;
}

.repurposed-contatiner {
    padding-top: 100px;
}

.btn-see-more {
    border-radius: 10px;
    background: #50005c;
    font-family: 'zonapro-semibold';
    border-color: #7c4185;
    font-size: 14px;
    padding: 5px;
    box-shadow: 2px 2px #7c4185;
}

.btn-see-more span {
    color: #fff;
    padding: 10px;
}

.btn-see-more:hover {
    transform: scale(0.9);
    cursor: pointer;
}

.align-repusposed-end {
    text-align: end;
}

.blog-img-container {
    text-align: right;
}

.open-blog-wrapper {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.blog-open-img-wrapper {
    padding-top: 50px;
}

.opt-txt-work {
    font-size: 18px;
    text-align: left;
}

.services-button-container-why-work {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -30px;
    text-align: center;
}

.services-button-container-repurposed {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -30px;
    text-align: center;
    z-index: 2;
}

.service-button-left-repurposed {
    top: 0;
    text-align: right;
}

.service-button-right-repurposed {
    margin-top: 0px;
    text-align: left;
}

.pushable-repurposed {
    border-radius: 16px;
    border: 3px solid #430055;
    background: linear-gradient(358deg, rgb(55 0 83) 7%, rgb(124 65 133) 62%);
    border-bottom-right-radius: 20px;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    width: 25%;
    min-width: 230px;
}

.privacy-policy{
    width: 100%;
    flex-wrap: wrap;
    overflow: scroll;
}

.pointer {
    cursor: pointer;
    background: #16234c;
}
.privacy-scrolls{
    background-color: #ffffff;
    overflow-x: hidden;
    overflow-y: scroll;
    text-align: justify;
    padding: 27px;
}

.btn-terms {
    width: 100%;
    text-align: left;
    background: transparent;
    font-family: 'zonapro-semibold';
}
.privacy-scrolls h1{
    color: #16234c;
}

.card {
    margin-bottom: 10px;
}

.card-body p {
    font-family: 'zonapro-regular';
    padding-left: 16px;
    padding: 0 16px;
    color: #363636;
    font-size: 16px;
}

.card-body a {
    color: #dd98d1;
    font-weight: 600;
}

.card-body ul li {
    font-family: 'zonapro-regular';
    font-style: italic;
    font-size: 15px;
}

.terms-card-body p{
    text-align: left;
}

.terms-card-body ul li{
    text-align: left;
}

.modal-terms {
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    background: #fff;
    box-shadow: 0 15px 45px 0 rgb(38 12 54);
    border-radius: 5px;
    max-width: 90vw;
    max-height: 90vh;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    left: 0;
    right: 0;
    position: absolute;
    border-top: 5px solid #7002ad;
    overflow: scroll;
}

.modal-terms .btn-terms{
    white-space: initial;
    color: #FFF;
}

.btn-ourWork{
    margin-left: 1.5rem;
}

/* for sizing and padding font/text */
.btn-fixed-front {
    display: block;
    padding: 20px 10px;
    border-radius: 12px;
    border-top-left-radius: 23px;
    font-size: 1rem;
    background: linear-gradient(358deg, rgb(55 0 83) 7%, rgb(80 0 92) 62%);
    color: white;
    font-weight: bolder;
    transform: rotate(359deg);
}

/* for sizing of button */
.btn-fixed-pushable {
    border-radius: 16px;
    border: 3px solid #430055;
    background: linear-gradient(358deg, rgb(55 0 83) 7%, rgb(124 65 133) 62%);
    border-bottom-right-radius: 20px;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transform: rotate(355deg);
    width: 25%;
    min-width: 230px;
}

/* for positioning of  of button*/
#fixed-btn-container {
    position: fixed;
    display: flex;
    transition: all 6s;
    width: 100%;
    height: 1px;
    bottom: 0;
}

.blog-mobile-img{
    display: none;
}

.blog-open-img-mobile{
    display: none;
}

.our-work-mobile-img{
    display: none;
}

.blog-new1{
    width: 70%;
    bottom: -50px;
    position: relative;
    left: -174px;
}

.blog-new4{
    width: 85%;
    height: auto;
    bottom: 61px;
    z-index: -1;
    left: -48px;
    position: absolute;
}

.blog-new2{
    position: absolute;
    height: auto;
    width: 79%;
    bottom: 0;
    left: -49px;
    z-index: -1;
}

.blog-new3{
    position: absolute;
    height: auto;
    width: 80%;
    top: -206px;
    left: 100px;
}

.portfolio-container {
    width: 700px;
    height: 400px;
}

.portfolio-iframe {
    width: 100%;
    height: 100%;
    background-color: blueviolet;
    border-radius: 5px;
}

.blog-mobile-img{
    display: none;
}

.blog-open-img-mobile{
    display: none;
}

.our-work-mobile-img{
    display: none;
}

.blog-new1{
    width: 70%;
    bottom: -50px;
    position: relative;
    left: -174px;
}

.blog-new4{
    width: 85%;
    height: auto;
    bottom: 61px;
    z-index: -1;
    left: -48px;
    position: absolute;
}

.blog-new2{
    position: absolute;
    height: auto;
    width: 79%;
    bottom: 0;
    left: -49px;
    z-index: -1;
}
.blog-new3{
    position: absolute;
    height: auto;
    width: 80%;
    top: -206px;
    left: 100px;
}

.portfolio-container {
    width: 700px;
    height: 400px;
}

.portfolio-iframe {
    width: 100%;
    height: 100%;
    background-color: blueviolet;
    border-radius: 5px;
}

.shadow h1 {
    text-align: left;
}

.social-box-work2{
    height: 500px;
    width: 500px;
}

.blog-new1-1-work{
    width: 48%;
    bottom: -74px;
    position: absolute;
    left: 0px;
    z-index: -1;
}

.blog-new2-work {
    position: absolute;
    height: auto;
    width: 93%;
    top: 0;
    left: 41px;
    z-index: -1;
}

.blog-new3-work{
    position: absolute;
    height: auto;
    width: 50%;
    top: 10%;
    left: -3%;
    z-index: -2;
}

.blog-new4-work {
    width: 56%;
    height: auto;
    bottom: -5%;
    z-index: -1;
    left: 47%;
    position: absolute;
}

#yt-latest {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: blueviolet;
}

.blog-new1-1-work{
    display: block;
}

.blog-new1-work{
    display: none;
}

.our-work-box-main-container {
    overflow: scroll;
    max-height: 60vh;
}

.service-text-align{
    padding: 0 79px;
}