/*
 

	// Table of contents //

		01. GOOGLE FONTS
		02. BODY
		03. HTML TAGS
		04. CUSTOM TAGS
		05. SECTIONS
		06. CONTENT
		07. ODOMETER
		08. EQUALIZER
		09. REVEAL EFFECT
		10. PAGE TRANSITION
		11. PRELOADER
		12. PAGE LOADED
		13. TEXT ROTATER
		14. PERSPECTIVE 
		15. SOCIAL BAR
		16. HEADER
		17. DROPDOWN
		18. SLIDER
		19. SLIDER FRACTION
		20. SLIDER BUTTONS
		21. SLIDER CONTENT
		22. SLIDER LINKS
		23. INT HERO
		24. ABOUT STUDIO
		25. WORKS
		26. WORKS FILTER
		27. WORKS FIGURE
		28. ICON FEATURES
		29. TEAM MEMBERS
		30. CLIENTS
		31. SIDE IMAGE CONTENT
		32. AWARDS
		33. JOURNAL
		34. CONTACT
		35. FOOTER
		36. SCROLL DOWN
		37. RESPONSIVE MEDIUM FIXES
		38. RESPONSIVE TABLET FIXES
		39. RESPONSIVE MOBILE FIXES



*/


/* GOOGLE FONTS */

@import url("https://fonts.googleapis.com/css?family=Fjalla+One|Poppins:300,400,600,800&amp;display=swap");




/* BODY */

* {
    outline: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    background: #FFf;
}


/* HTML ELEMENTS */

img {
    max-width: 100%;
}


/* LINKS */

a {
    color: #222327;
    -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;
}

a:hover {
    text-decoration: underline;
    color: #222327;
}


/* CUSTOM CLASSES */

.overflow {
    overflow: hidden;
}


/* CUSTOM CONTAINER */


/* @media (min-width: 1300px) {
  .container {
    max-width: 1340px;
  }
} */


/* SECTIONS */

main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    background: #fff;
}

section {
    position: relative;
}

aside {
    position: relative;
}


/* FORM ELEMENTS */

input[type=email],
input[type=text] {
    max-width: 100%;
    height: 58px;
    border: 1px solid #eee;
    padding: 0 20px;
}

input[type=email] {
    max-width: 100%;
    height: 58px;
    border: 1px solid #eee;
    padding: 0 20px;
}

input[type=search] {
    max-width: 100%;
    height: 58px;
    border: 1px solid #eee;
    padding: 0 20px;
}

input[type=password] {
    max-width: 100%;
    height: 58px;
    border: 1px solid #eee;
    padding: 0 20px;
}

input[type=submit] {
    height: 58px;
    border: none;
    background: #222327;
    color: #fff;
    padding: 0 30px;
    font-weight: 600;
    font-size: 14px;
}

button[type=submit] {
    height: 58px;
    border: none;
    background: #222327;
    color: #fff;
    padding: 0 30px;
    font-weight: 600;
    font-size: 14px;
    transition: .3s all ease;
}

button[type=submit]:hover {
    background: #e91757;
}

.clients-section {
    padding: 120px 0;
    background: #FAFAFA;
    width: 100%;
    color: #000;
    background-image: url(../images/hero-bg.svg);
    background-position: left bottom 100px;
    background-size: 55%;
    background-repeat: no-repeat;
}

.clients-section .card {
    position: relative;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #cdcccc73;
    background: #fff;
    padding: 5px 18px;
    font-weight: 600;
    font-size: 14px;
    transition: clip-path 500ms;
    margin-bottom: 10px;
    margin-right: 5px;
    width: 100%;
    padding: 5px;
}

.clients-section .card .card-body {
    width: 100%;
    padding: 5px;
}

.clients-section .card .card-body img {
    width: 100%;
    height: 60px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* @media only screen and (max-width:992px)
{
    .clients-section .card .card-body img{
        width: 100%;
        height:auto;
       padding: 30px;
     }

}*/
@media only screen and (max-width:568px) {
    .clients-section .card .card-body img {
        padding: 0px;
    }
    .clients-section .last-card {
       display: none;
    }
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* @media only screen and (max-width:399px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

.chat.contact .contact-form .form-group .contact-btn {
    transition: .3s all ease;
}

.chat.contact .contact-form .form-group .contact-btn:hover {
    background: #e91757;
    border-color: #e91757;
}

textarea {
    max-width: 100%;
    height: 140px;
    border: 1px solid #eee;
    padding: 20px;
}

.hamburger {
    z-index: 9;
    width: auto;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #000;
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-6.is-active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-6.is-active .line {
    background-color: #fff;
    transition: background-color 600ms;
}

#hamburger-6.is-active .line:nth-child(2) {
    width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#hamburger-6.is-active .line:nth-child(1) {
    -webkit-transform: translateY(7px);
    -ms-transform: translateY(7px);
    -o-transform: translateY(7px);
    transform: translateY(7px);
}

#hamburger-6.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(90deg);
    -ms-transform: translateY(-7px) rotate(90deg);
    -o-transform: translateY(-7px) rotate(90deg);
    transform: translateY(-7px) rotate(90deg);
}


/* fadeup-animated */

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 80px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 80px, 0)
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.swiper-pagination {
    display: none;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.fadeInUp {
    opacity: 1;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.delay-03 {
    animation-delay: .22s;
}

.delay-06 {
    animation-delay: .44s;
}

.delay-1 {
    animation-delay: .66s;
}

.delay-2 {
    animation-delay: 2s;
}

.delay-3 {
    animation-delay: 3s;
}

.grid.row {
    margin: 0;
}

.grid-item {
    width: 33.3333333%;
    padding: 0 20px;
    padding: 0;
    position: relative;
}

.grid-item--width2 {
    width: 33.3333333%;
}

.grid-item .details {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgb(0 0 0 / 60%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    -webkit-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.grid-item:hover .details {
    opacity: 1;
}

.grid-item .details .title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transform: translate3d(-60px, 0, 0) skewX(-15deg);
    transform: translate3d(-60px, 0, 0) skewX(-15deg);
    -webkit-transition: -webkit-transform 0s .3s;
    transition: -webkit-transform 0s .5s;
    -o-transition: transform 0s .5s;
    transition: transform 0s .5s;
    transition: transform 0s .5s, -webkit-transform 0s .3s;
}

.grid-item .details .category {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    -webkit-transform: translate3d(-60px, 0, 0) skewX(-15deg);
    transform: translate3d(-60px, 0, 0) skewX(-15deg);
    -webkit-transition: -webkit-transform 0s .3s;
    transition: -webkit-transform 0s .3s;
    -o-transition: transform 0s .3s;
    transition: transform 0s .3s;
    transition: transform 0s .3s, -webkit-transform 0s .3s;
}

.grid-item:hover .details .category,
.grid-item:hover .details .title {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .4s cubic-bezier(.165, .84, .44, 1);
    transition: -webkit-transform .4s cubic-bezier(.165, .84, .44, 1);
    -o-transition: transform .4s cubic-bezier(.165, .84, .44, 1);
    transition: transform .4s cubic-bezier(.165, .84, .44, 1);
    transition: transform .4s cubic-bezier(.165, .84, .44, 1), -webkit-transform .4s cubic-bezier(.165, .84, .44, 1);
}


/* EQUALIZER */

.equalizer {
    width: 26px;
    height: 30px;
    cursor: pointer;
    position: relative;
}

.equalizer span {
    background: #fff;
    width: 2px;
    height: 0px;
    bottom: 0;
    left: 0%;
    display: block;
    position: absolute;
    transition: height 0.2s linear;
}

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

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

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

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


/* SPLITTING */

.splitting .word,
.splitting .char {
    display: inline-block;
}

.splitting .char {
    position: relative;
}

.animated .char {
    display: inline-block;
    animation: texteffect 0.6s cubic-bezier(0.5, 0, 0.5, 1) both;
    animation-delay: calc(10ms * var(--char-index));
}


/* ODOMETER */

.odometer.odometer-auto-theme,
.odometer.odometer-theme-car {
    padding: 0;
}

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

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-car .odometer-digit .odometer-value {
    text-indent: -5px;
}

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

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-car .odometer-digit .odometer-value {
    text-indent: 0;
}


/* PAGINATION */

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

.pagination .page-item {
    display: inline-block;
    margin-right: 10px;
}

.pagination .page-item .page-link {
    font-weight: 600;
    border-radius: 0 !important;
    font-size: 13px;
    color: #222327;
    line-height: 1;
    padding: 15px 30px;
}


/* REVEAL EFFECT */

.reveal-effect {
    float: left;
    position: relative;
}

.reveal-effect>* {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    position: relative;
}

.reveal-effect>* {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.reveal-effect {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.reveal-effect {
    -webkit-transition-duration: 1.2s;
    transition-duration: 1.2s;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-effect.animated {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.reveal-effect.animated * {
    -webkit-animation-name: show-img-1;
    animation-name: show-img-1;
}

.reveal-effect:after {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.reveal-effect:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.reveal-effect:after {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(0.05, 0);
    transform: scale(0.05, 0);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.reveal-effect.masker:after {
    background-color: #161619;
}

.reveal-effect.animated:after {
    -webkit-animation-name: slide-bg-2;
    animation-name: slide-bg-2;
}

h2 {
    font-weight: 600;
}


/* SWIPER PAGINATION */

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transform: scale(0.4);
    background: #fff;
    opacity: 1;
    border-radius: 50%;
}

.swiper-pagination .swiper-pagination-bullet:hover {
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    -webkit-transform: scale(1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    border: 2px solid #fff;
    background: none;
}

.swiper-pagination .swiper-pagination-bullet-active {
    -webkit-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, transform 0.3s ease;
    -webkit-transform: scale(1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    border: 2px solid #fff;
    background: none;
}


/* PRELOADER */

.preloader {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #f6084a;
    text-align: center;
    -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);
    overflow: hidden;
    transition-delay: 0.6s;
    display: none;
}

/* .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;
    top: 0;
    background: #ff0055;
    transition-delay: 0.3s;
}

.preloader .inner {
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 99999;
    margin: 0 auto;
}

.preloader .inner span {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.preloader .inner figure {
    display: block;
    margin-bottom: 20px;
    transition-delay: 0.1s;
}

.preloader .inner figure img {
    height: 300px;
    /* transform: translateX(-7px); */
}


/* PAGE LOADED */

.page-loaded .preloader {
    left: -100%;
}

/* .page-loaded .preloader .inner figure {
    opacity: 0;
    transform: scale(1.5);
}

.page-loaded .preloader .inner span {
    transform: translateY(20px);
    opacity: 0;
} */

.page-loaded .preloader .layer {
    left: -100%;
}


.page-loaded .left-side {
    left: 0;
    opacity: 1;
    display: none;
}

.page-loaded .slider {
    filter: blur(0);
    transform: scale(1);
}

.page-loaded .page-header {
    filter: blur(0);
    transform: scale(1);
}

.page-loaded .all-cases-link {
    right: 35px;
}


/* PAGE TRANSTION */

.page-transition {
    width: 100%;
    height: 100%;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    opacity: 0;
    visibility: hidden;
    -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);
    background: #a81a43;
    display: none;
}

.page-transition .layer {
    width: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #1c1c1c;
    -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.3s;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
    right: 0;
}

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


/* SITE NAVIGATION */

.site-navigation {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    right: -100%;
    top: 0;
    padding-top: 100px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -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);
    background: #f6084a;
    padding-left: 160px;
    display: none;
}

.site-navigation .layer {
    width: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #f6084a;
    -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.3s;
}

.site-navigation .inner {
    position: relative;
    z-index: 2;
    padding-left: 100px;
    -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-delay: 0.7s;
    opacity: 0;
    width: 100%;
    overflow: auto;
}

.site-navigation .inner ul {
    margin: 0;
    padding: 0;
    animation-duration: 1s;
}

.site-navigation .inner ul li {
    display: block;
    margin: 5px 0;
    padding: 5px 0;
}

.site-navigation .inner ul li ul {
    margin-top: 0;
    margin-bottom: 10px;
    display: none;
}

.site-navigation .inner ul li ul li {
    display: block;
    margin: 0;
}

.site-navigation .inner ul li ul li a {
    font-size: 18px;
    font-weight: 500;
}

.site-navigation .inner ul li i {
    margin-left: 20px;
    font-size: 30px;
    color: #fff;
    display: inline-block;
    line-height: 1;
    transform: translateY(-5px);
    cursor: pointer;
}

.site-navigation .inner ul li:first-child i {
    margin-left: 0;
}

.site-navigation .inner ul li small {
    width: 100%;
    display: block;
    color: #fff;
    opacity: 0.7;
    letter-spacing: 0.5px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateY(-15px);
}

.site-navigation .inner ul li a {
    font-size: 36px;
    display: inline-block;
    font-weight: 800;
    color: #fff;
    -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;
}

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

.site-navigation.active {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.site-navigation.active .layer {
    width: 100%;
}

.site-navigation.active .inner {
    opacity: 1;
}

.site-navigation .experience img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95vh;
}

.site-navigation .experience .text {
    position: absolute;
    text-align: center;
    font-size: 48px;
    right: 25vh;
    bottom: 30vh;
    color: #fff;
}

@media (min-width:1900px) {
    .site-navigation .experience .text {
        right: 30vh;
        bottom: 33vh;
    }
}

@media (max-width:1300px) {
    .site-navigation .experience {
        display: none;
    }
}

.site-navigation .experience .text span {
    font-size: 28px;
    display: block;
    font-weight: 300;
}

.site-navigation .inner .social li {
    display: inline-block;
}


/* SECTION TITLES */

.section-title {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 36px;
    font-weight: 600;
}


/* SOCIAL MEDIA */

.social-media {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 3;
    background: #d32e2f;
    opacity: 0;
    visibility: hidden;
    -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);
}

.social-media .layer {
    width: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #161619;
    -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.3s;
}

.social-media .inner {
    position: relative;
    z-index: 2;
    padding-left: 100px;
    -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-delay: 0.7s;
    opacity: 0;
    text-align: center;
    width: 100%;
}

.social-media .inner h5 {
    font-size: 3vw;
    font-weight: 600;
    color: #fff;
    margin-bottom: 50px;
}

.social-media .inner ul {
    display: block;
    margin: 0;
    padding: 0;
}

.social-media .inner ul li {
    font-size: 2vw;
    display: inline-block;
    margin: 0 40px;
    padding: 0;
    list-style: none;
}

.social-media .inner ul li a {
    color: #fff;
}

.social-media .inner ul li a:hover {
    color: #d32e2f;
    text-decoration: none;
}

.social-media.active {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.social-media.active .layer {
    width: 100%;
}

.social-media.active .inner {
    opacity: 1;
}


/* ALL CASES */

.all-cases {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 3;
    background: #d32e2f;
    opacity: 0;
    visibility: hidden;
    -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);
}

.all-cases .layer {
    width: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #161619;
    -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.3s;
}

.all-cases .inner {
    position: relative;
    z-index: 2;
    padding-left: 220px;
    -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-delay: 0.7s;
    opacity: 0;
    width: 100%;
}

.all-cases .inner ul {
    display: block;
    max-height: 500px;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
}

.all-cases .inner ul li {
    font-size: 8vw;
    font-weight: 800;
    margin: 0;
    padding: 0;
    list-style: none;
}

.all-cases .inner ul li a {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
}

.all-cases .inner ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.all-cases.active {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.all-cases.active .layer {
    width: 100%;
}

.all-cases.active .inner {
    opacity: 1;
}


/* ALL CASES LINK */

.all-cases-link {
    position: absolute;
    /* right: -100%; */
    right: 35px;
    top: 30px;
    /* -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; */
    display: none;
}

.all-cases-link span {
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    margin-right: 10px;
}

.all-cases-link b {
    width: 40px;
    height: 40px;
    line-height: 44px;
    font-size: 25px;
    font-weight: 300;
    display: inline-block;
    background: #fff;
    color: #222327;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.all-cases-link b:hover {
    background: #d32e2f;
    text-decoration: none;
    color: #fff;
}


/* LEFT SIDE */

.left-side {
    width: 180px;
    height: 110px;
    display: flex;
    flex-direction: column;
    position: absolute;
    /* left: -100%; */
    top: 0;
    z-index: 10;
    text-align: center;
    padding: 25px 40px;
    /* -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;
    opacity: 0; */
}


@media (min-width:992px) {
    .left-side {
        display: none;
    }
}


.left-side .logo {
    display: inline-block;
    margin-bottom: auto;
}

.left-side .logo img {
    width: 70px;
}

.left-side .logo img.white-img {
    filter: brightness(200);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
    transition-delay: 0.7s;
}

.left-side .hamburger {
    margin: auto;
}

.left-side .follow-us {
    width: 100px;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    text-align: center;
    transform: rotate(-90deg);
    margin: auto;
    cursor: pointer;
}

.left-side .equalizer {
    margin: auto;
    margin-bottom: 0;
}


/* SLIDER */

.slider {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    transition-delay: 500ms;
    -webkit-transition-delay: 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);
    transform: scale(1.2);
    filter: blur(20px);
    transition-delay: 0.8s;
    background: #000;
    padding-top: 120px;
}

header {
    width: 100%;
    background: #fff;
    padding: 180px 0;
    padding-bottom: 140px;
    position: relative;
    /* background: url(../images/homebg.png); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;  */
}

@media (min-width:1200px) {
    .banner-ht {
        min-height: 100vh;
    }
}

@media (min-width:1600px) {
    .banner-ht {
        min-height: 100vh;
    }
}

.banner-ht>.container {
    height: 100%;
}

.banner-ht>.container .row {
    align-items: center;
    height: 100%;
}

header h2 {
    color: #000;
    font-size: 48px;
    margin: 0;
    margin-top: 30px;
    font-weight: 700;
}

header h6 {
    margin-top: 10px;
    color: #000;
    font-size: 24px;
    line-height: 32px;
}

header .text-type-animation .wrap {
    color: #F53166;
}

.banner-img img {
    position: absolute;
    bottom: 0;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
}

@media (min-width:1800px) {
    .banner-img img {
        max-width: 100%;
        right: 15%;
        transform: translateY(-42%);
    }
}

@media (max-width:767px) {
    .banner-img {
        display: none;
    }
}

.slider .service-box:hover h2 {
    color: #fff;
}

.slider .service-box:hover p {
    color: #fff;
}

.slider .service-box.one {
    background-image: url(../images/wave1.svg);
    background-position: center;
    background-size: contain;
}

.slider .service-box.two {
    background-image: url(../images/wave2.svg);
    background-position: center;
    background-size: contain;
}

.slider .swiper-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.slider .swiper-container .swiper-slide {
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.swiper-slide a:hover {
    text-decoration: none;
}

.slider .swiper-container .swiper-slide video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.slider .gallery-top {
    height: 100%;
    width: 100%;
    background: #222327;
}

.slider .gallery-thumbs {
    width: calc(100% - 240px);
    display: flex;
    flex-wrap: wrap;
    margin: 0 120px;
    padding-bottom: 30px;
    z-index: 9;
    position: absolute;
    bottom: 30%;
    right: 0;
    height: auto;
    color: #fff;
}

.slider .gallery-thumbs .swiper-slide {
    width: 90%;
    height: 100%;
    opacity: 0.4;
    text-align: center;
    filter: blur(3px);
}

.slider .gallery-thumbs .swiper-slide span {
    margin-left: 50%;
    transform: translateX(-50%);
    float: left;
    font-size: 3vw;
    line-height: 5vw;
    font-weight: 800;
}

.slider .gallery-thumbs .swiper-slide a {
    display: none;
    font-size: 13px;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    padding-bottom: 5px;
    position: relative;
}

.slider .gallery-thumbs .swiper-slide a:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    -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;
}

.slider .gallery-thumbs .swiper-slide a:hover {
    text-decoration: none;
}

.slider .gallery-thumbs .swiper-slide a:hover:before {
    width: 100%;
}

.slider .gallery-thumbs .swiper-slide-active {
    width: 100%;
    opacity: 1;
    /*  transform: scale(1.4);*/
    filter: blur(0px);
}

.slider .gallery-thumbs .swiper-slide-active span {
    font-size: 4vw;
}

.slider .gallery-thumbs .swiper-slide-active a {
    display: inline-block;
}

.slider .swiper-button-prev {
    height: auto;
    position: absolute;
    left: auto;
    top: auto;
    right: 120px;
    bottom: 30px;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    background: none;
}

.slider .swiper-button-next {
    height: auto;
    position: absolute;
    left: auto;
    top: auto;
    right: 40px;
    bottom: 30px;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    background: none;
}

.slider .slide-progress {
    width: 220px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    left: 50%;
    bottom: 30px;
    margin-left: -110px;
    z-index: 3;
    text-align: center;
}

.slider .slide-progress span {
    display: inline-block;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    font-size: 14px;
}

.slider .slide-progress .swiper-pagination {
    width: 160px;
    height: 2px;
    margin: auto 10px;
    display: inline-block;
    position: static;
    background: rgba(255, 255, 255, 0.3);
}

.slider .slide-progress .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #fff;
}


/* VIDEO HERO */

.video-hero {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.video-hero .video-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    background: #222327;
}

.video-hero .video-bg video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.video-hero .inner {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
}

.video-hero .inner span {
    width: 100%;
    float: left;
    font-size: 8vw;
    line-height: 5vw;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.video-hero .inner a {
    font-size: 19px;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    padding-bottom: 5px;
    position: relative;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
}

.video-hero .inner a:hover {
    text-decoration: none;
    color: #d32e2f;
}


/* CAROUSEL HERO */

.carousel-hero {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.carousel-hero .carousel-slider {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.carousel-hero .carousel-slider .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.carousel-hero .carousel-slider .swiper-slide.swiper-slide-active {
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.carousel-hero .carousel-slider .swiper-slide.swiper-slide-active .inner {
    opacity: 1;
}

.carousel-hero .carousel-slider .swiper-slide.swiper-slide-active:after {
    opacity: 0.4;
}

.carousel-hero .carousel-slider .swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #222327;
    opacity: 0.7;
}

.carousel-hero .carousel-slider .swiper-slide .inner {
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    opacity: 0;
    -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;
}

.carousel-hero .carousel-slider .swiper-slide .inner h2 {
    font-size: 30px;
}


/* {
    width: 100%;
    float: left;
    font-size: 4vw;
    line-height: 5vw;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
} */

.carousel-hero .carousel-slider .swiper-slide .inner a {
    font-size: 19px;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    padding-bottom: 5px;
    position: relative;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
}

.carousel-hero .carousel-slider .swiper-slide .inner a:hover {
    text-decoration: none;
    color: #d32e2f;
}

.carousel-hero .swiper-button-prev {
    height: auto;
    position: absolute;
    left: auto;
    top: auto;
    right: 120px;
    bottom: 30px;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    background: none;
}

.carousel-hero .swiper-button-next {
    height: auto;
    position: absolute;
    left: auto;
    top: auto;
    right: 40px;
    bottom: 30px;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    background: none;
}

.carousel-hero .slide-progress {
    width: 220px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    left: 50%;
    bottom: 30px;
    margin-left: -110px;
    z-index: 3;
    text-align: center;
}

.carousel-hero .slide-progress span {
    display: inline-block;
    color: #fff;
    font-family: "Fjalla One", sans-serif;
    font-size: 14px;
}

.carousel-hero .slide-progress .swiper-pagination {
    width: 160px;
    height: 2px;
    margin: auto 10px;
    display: inline-block;
    position: static;
    background: rgba(255, 255, 255, 0.3);
}

.carousel-hero .slide-progress .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #fff;
}


/* PAGE HEADER */

.page-header {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background: #161619;
    position: relative;
    -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);
    transform: scale(1.2);
    filter: blur(20px);
    transition-delay: 0.8s;
}

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

.page-header .video-bg video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.page-header .inner {
    width: 100%;
    padding-left: 220px;
    position: relative;
    z-index: 2;
}

.page-header .inner h1 {
    color: #fff;
    font-weight: 800;
    font-size: 10vw;
    letter-spacing: -3px;
}

.page-header .inner p {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.5px;
}


/* INTRO */

.intro {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    color: #000;
    background: #FAFAFA;
    text-align: left;
}

.intro .col-lg-7 {
    padding-left: 10%;
}

.intro h6 {
    font-weight: 600;
    font-size: 19px;
}

.intro h6:after {
    content: "";
    width: 70px;
    height: 1px;
    background: #fff;
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 7px;
}

.intro b {
    font-size: 120px;
    line-height: 1;
    font-family: "Fjalla One", sans-serif;
    float: left;
    font-weight: 400;
    margin-right: 20px;
}

.intro h4 {
    font-weight: 600;
}

.intro p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

.intro p:first-child {
    margin-bottom: 35px;
}


/* 
.intro small {
    display: block;
    opacity: 0.7;
    margin-bottom: 50px;
}

.intro a {
    color: #fff;
    font-size: 17px;
    border-bottom: 1px solid #d32e2f;
    padding-bottom: 5px;
}

.intro a:hover {
    border-color: #fff;
} */

.sub-head {
    font-size: 24px;
    color: #000;
    text-align: left;
    line-height: 28px;
    padding-left: 100px;
    margin-bottom: 50px;
}

.intro h5 {
    position: relative;
}

.intro .line {
    position: absolute;
    left: 15px;
    top: 12px;
}


/* INTRO IMAGE */


/* 
.intro-image {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 150px;
    position: relative;
}

.intro-image:before {
    content: "";
    width: 100%;
    height: 100px;
    background: #161619;
    position: absolute;
    left: 0;
    top: 0;
}

.intro-image.light:before {
    background: #fff;
}

.intro-image .office-slider {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #222327;
    position: relative;
    overflow: hidden;
}

.intro-image figure {
    width: 100%;
    display: block;
    margin: 0;
    position: relative;
}

.intro-image figure img {
    width: 100%;
    opacity: 0.7;
}

.intro-image figure figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    line-height: 1;
}

.intro-image figure figcaption h6 {
    font-size: 13px;
    color: #fff;
    font-weight: 600; 


}*/

.section.portfolio {
    width: 100%;
    padding: 100px 0;
    background: #FFFFFF;
}

.section.portfolio-inner {
    padding-top: 150px;
}

.section.portfolio h5 {
    position: relative;
}

.section.portfolio .line {
    position: absolute;
    left: 15px;
    top: 12px;
}

.section.portfolio h3 {
    line-height: 1.4;
    font-size: 28px;
    color: #000;
    margin-bottom: 50px;
}

/* 
.section.portfolio .swiper .swiper-wrapper .swiper-slide {
    margin: 0 10px;
}

.section.portfolio .swiper .swiper-wrapper .swiper-slide .img-container img {
    transition: 1s ease all;
}

.section.portfolio .swiper .swiper-wrapper .swiper-slide .img-container {
    z-index: 1;
    overflow: hidden;
}

.section.portfolio .swiper .swiper-wrapper .swiper-slide:hover img {
    scale: 1.2;
    transition: 1s ease all;
}

.section.portfolio .swiper .swiper-wrapper .swiper-slide .portfolio-box {
    padding: 20px 40px;
    z-index: 9;
}

.section.portfolio .swiper .swiper-wrapper .swiper-slide .portfolio-box h3 {
    margin: 0;
    line-height: 1.4;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
} */

.section.portfolio .swiper .swiper-wrapper .swiper-slide .portfolio-box h6 {
    font-size: 15px;
    margin: 0;
    color: #fff;
}

.section.portfolio .img-container img {
    transition: 1s ease all;
}

.section.portfolio .grid-item:hover img {
    scale: 1.2;
}

.section.portfolio .img-container {
    overflow: hidden;
}


/* .section.portfolio .filters {
    text-align: center;
    background: #fff;
}

.section.portfolio .section-title {
    color: #fff;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 0;
}

.section.portfolio .filters ul {
    padding: 0;
    margin-bottom: 0;
}

.section.portfolio .filters ul li {
    list-style: none;
    display: inline-block;
    padding: 28px 30px;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    text-transform: uppercase;
}

.section.portfolio .filters ul li:after {
    content: "";
    display: block;
    width: calc(0% - 60px);
    position: absolute;
    height: 2px;
    background: #333;
    transition: width 350ms ease-out;
}

.section.portfolio .filters ul li:hover:after {
    width: calc(100% - 60px);
    transition: width 350ms ease-out;
}

.section.portfolio .filters ul li.active {
    color: #ff0055;
}

.section.portfolio .filters ul li.active:after {
    width: calc(100% - 60px);
    background: #ff0055;
}

.section.portfolio .filters-content .row {
    margin: 0;
}

.section.portfolio .filters-content .row .col-sm-3 {
    padding: 0;
}

.section.portfolio .filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
}

.section.portfolio .filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
}

.section.portfolio .portfolio-row {
    margin: 0;
}

.section.portfolio .portfolio-row .all {
    padding: 0;
}

.section.portfolio .item {
    text-align: center;
    cursor: pointer;
    padding-top: 100%;
    overflow: hidden;
    background: #ff0055;
    position: relative;
    display: block;
}

.section.portfolio .item .p-inner {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 55%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .5s all ease-out;
}

.section.portfolio .item:hover .p-inner {
    opacity: 1;
    top: 50%;
}

.section.portfolio .item .p-inner h3 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}

.section.portfolio .item .p-inner .cat {
    font-size: 18px;
    font-style: italic;
    color: #fff;
    text-transform: capitalize;
}

.section.portfolio .item img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.section.portfolio .item img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .5s ease-out all;
}

.section.portfolio .item:hover img {
    transform: scale(1.3);
    opacity: .3;
} */

.we-offer {
    width: 100%;
    padding: 100px 0;
    background: #FAFAFA;
    color: #000;
}

.we-offer h5 {
    position: relative;
}

.we-offer .line {
    position: absolute;
    left: 15px;
    top: 12px;
}

.we-offer .weoffer-row {
    padding: 0px 00px;
}

.we-offer .weoffer-row .sub-tittle a {
    text-decoration: none;
}

.we-offer .weoffer-row .sub-tittle a:hover h3 {
    color: #FF2929;
}

.we-offer .weoffer-row .sub-tittle h3 {
    font-size: 14px;
    margin-top: 10px;
}

.we-offer .weoffer-row .tag {
    position: relative;
    display: inline-block;
    border-radius: 6px;

    background: hsl(0deg 0% 86%);
    padding: 5px 18px;

    font-weight: 600;
    font-size: 14px;
    transition: clip-path 500ms;
    margin-bottom: 10px;
    margin-right: 5px;
}






.we-offer .weoffer-row .sub-tittle h3 svg {
    margin-left: 10px;
    display: none;
}

.we-offer .bottom-section {
    padding: 0px 00px;
    margin-top: 50px;
}

.we-offer .bottom-section h6 {
    font-size: 18px;
}

.we-offer .bottom-section p {
    font-size: 16px;
    margin-bottom: 0;
}

.we-offer .bottom-section span {
    font-size: 16px;
}

.services {
    padding: 100px 0;
    background: #fff;
    background-image: url(../images/service-section.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
}

.services .section-title {
    color: #000;
    margin-bottom: 30px;
}

.services .service {
    text-align: center;
    padding: 60px 30px;
    border: 2px solid #707070;
    width: 100%;
    background: rgb(50 50 50 / 40%);
    margin-bottom: 30px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    height: calc(100% - 30px);
}

.services .service .icon {
    height: 110px;
}

.services .service h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

.services .service p {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

.hero {
    background: #fff;
    background-image: url(../images/hero-bg.svg);
    background-position: center bottom;
    padding: 160px 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: auto;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.sub h2 {
    font-weight: 600;
    text-transform: uppercase;
}

.hero h5 {
    font-weight: 300;
    font-size: 28px;
    text-transform: lowercase;
}

.hero h5::first-letter {
    text-transform: uppercase;
}

.service-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.service-section {
    background: #fff;
    padding: 100px 0;
    background-image: url(../images/service-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center 110px;
}

.accordion .accordion-card {
    background: rgba(219, 219, 219, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #faf0f0;
    margin-bottom: 16px;
}

.accordion .accordion-card .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 50px 100px;
    font-size: 28px;
    color: #000;
    text-decoration: none !important;
    text-transform: uppercase;
}

.accordion .accordion-card .btn-link::before {
    content: "\002b";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: relative;
    top: 8px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear;
    font-weight: 800;
}

.accordion .accordion-card .btn-link[aria-expanded="true"]::before {
    content: "\2212";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion .accordion-card .card-body {
    padding: 100px 100px;
    padding-top: 0;
    padding-bottom: 80px;
    font-weight: 300;
    font-size: 16px;
}

.accordion .accordion-card .card-body ul {
    list-style: circle;
    margin-top: 60px;
    margin-bottom: 0;
    padding-left: 0;
}

.accordion .accordion-card .card-body ul li {
    font-weight: 400;
    display: inline-block;
    margin-right: 60px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.accordion .accordion-card .card-body ul li svg {
    margin-right: 12px;
}

.accordion .accordion-card .card-body ul li svg circle {
    fill: #FF2929;
}


/* PROCESS */

.process {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    color: #000;
    background: #FAFAFA;
    padding: 100px 0;
}

.process .count {
    text-align: center;
    display: block;
    font-size: 105px;
    color: #000;
}

.process .content {
    padding-top: 30px;
}

.process .content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.process .content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.process .odometer {
    font-size: 5vw;
    line-height: 1;
    text-align: center;
    font-weight: 300;
}

.process .symbol {
    width: 100%;
    display: block;
    font-size: 12px;
}

.process small {
    display: block;
    font-size: 32px;
    margin: 20px 10%;
    font-weight: 300;
    margin-bottom: 0;
}

.process .process-subtitle {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
}


/* ICON CONTENT BLOCK */

.icon-content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    color: #fff;
    background: #222327;
    padding-top: 120px;
}

.icon-content-block .container {
    position: relative;
    z-index: 2;
}

.icon-content-block .content-block {
    width: 100%;
    display: block;
    margin: 0;
    padding: 50px 30px;
    position: relative;
    -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-block.selected {
    background: #161619;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
}

.icon-content-block .content-block.selected:before {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    right: -25px;
    bottom: -30px;
    z-index: -1;
    background: url(../images/dot-pattern.png) right;
    background-size: 10px;
}

.icon-content-block .content-block figure {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

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

.icon-content-block .content-block h6 {
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #fff;
}

.icon-content-block .content-block ul {
    margin: 0;
    padding: 0;
}

.icon-content-block .content-block ul li {
    padding: 3px 0;
    opacity: 0.7;
    list-style: none;
    font-weight: 300;
}

.icon-content-block .content-block p {
    padding: 3px 0;
    opacity: 0.7;
    list-style: none;
    font-weight: 300;
    line-height: 1.6;
    font-size: 14px;
    color: #fff;
}


/* TEXT CONTENT BLOCK */

.text-content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #fff;
}

.text-content-block .col-md-4 {
    margin: 20px 0;
}

.text-content-block .section-title {
    margin-bottom: 30px;
}

.text-content-block h5 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    padding-right: 20%;
    margin-bottom: 70px;
}

.text-content-block small {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: -20px;
    opacity: 0.1;
    display: block;
}

.text-content-block h6 {
    font-size: 20px;
}

.text-content-block p {
    padding-right: 20%;
    margin-bottom: 0;
    line-height: 1.5;
}


/* TESTIMONIALS */

.testimonials {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    color: #fff;
    background: #000;
    position: relative;
}

.testimonials .section-title {
    margin-bottom: 0;
}

.testimonials .testimonial-area {
    padding: 0 50px;
    background: rgb(50 50 50 / 40%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    border: 1px solid #707070;
}

.testimonials .testimonials-slider {
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}

.testimonials .testimonials-slider .tescontent {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonials .testimonials-slider .tescontent .company-logo {
    margin-top: auto;
}

.testimonials .testimonials-slider .tescontent .quote {
    position: relative;
    top: -20px;
    left: -20px;
}

.testimonials .testimonials-slider .tescontent p {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 300;
}

@media (min-width:768px) {
    .testimonials .testimonials-slider .tescontent {
        padding-left: 40px;
    }
}

.testimonials .testimonials-slider figure {
    margin: 0;
}

.testimonials .swiper-pagination {
    width: 100px;
    right: 00px;
    left: auto;
    bottom: 40px;
    text-align: right;
}

.testimonials .swiper-pagination-bullet {
    background: #fff;
}

.testimonials .swiper-pagination-bullet:hover {
    border-color: #fff;
}

.testimonials .swiper-pagination-bullet-active {
    border-color: #fff;
    background: none;
}

.testimonials .testimonial {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 80px;
    background: #d32e2f;
    color: #222327;
}

.testimonials .testimonial blockquote {
    font-size: 21px;
    line-height: 1.7;
    font-weight: 300;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonials .testimonial .reviewer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.testimonials .testimonial .reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    float: left;
}

.testimonials .testimonial .reviewer .reviewer-infos {
    width: calc(100% - 65px);
    float: left;
}

.testimonials .testimonial .reviewer h6 {
    display: block;
    font-weight: 600;
}

.testimonials .testimonial .reviewer small {
    display: block;
}


/* TEAM */

.team {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 150px;
    padding-bottom: 100px;
    color: #fff;
    background: #161619;
    position: relative;
    z-index: 2;
}

.team:before {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
}

.team .reveal-effect.masker:after {
    background: #222327;
}

.team h5 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.team figure {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: -100px;
}

.team figure:hover ul {
    opacity: 1;
    visibility: visible;
}

.team figure img {
    width: 100%;
}

.team figure figcaption {
    display: block;
    color: #222327;
    margin-top: 20px;
}

.team figure figcaption h6 {
    display: block;
    font-weight: 600;
}

.team figure figcaption small {
    display: block;
    opacity: 0.5;
}

.team figure ul {
    width: 80%;
    display: flex;
    margin: 10%;
    padding: 0;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 60px;
    -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;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.team figure ul li {
    flex: 1;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    text-align: center;
    border-right: 1px solid #eee;
}

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

.team figure ul li a {
    color: #222327;
    font-size: 13px;
    padding: 5px;
}

.team figure ul li a:hover {
    color: #d32e2f;
}


/* WORKS */

.works {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #222327;
    color: #fff;
}

.works ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: -60px 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.works ul li {
    width: 33.33333%;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 60px;
}

.works ul li:nth-child(2n+2) {
    margin-top: 100px;
}

.works ul li:nth-child(3n+3) {
    margin-top: 40px;
}

.works ul li figure {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    background: #222327;
    -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 ul li figure:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

.works ul li figure:hover:before {
    opacity: 1;
}

.works ul li figure:before {
    content: "";
    width: 90%;
    height: 30%;
    position: absolute;
    right: -25px;
    bottom: -30px;
    z-index: -1;
    background: url(../images/dot-pattern.png) right;
    background-size: 10px;
    opacity: 0;
    -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 ul li figure a {
    width: 100%;
    background: #222327;
    display: block;
    position: relative;
    z-index: 2;
}

.works ul li figure a img {
    width: 100%;
}

.works ul li h3 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 26px;
    letter-spacing: -1px;
}

.works ul li small {
    display: block;
    font-family: "Fjalla One", sans-serif;
    opacity: 0.7;
}


/* CASE STUDY */

.case-study {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: #fff;
}

.case-study h6 {
    font-weight: 600;
    margin-top: 30px;
}

.case-study h5 {
    font-family: "Fjalla One", sans-serif;
    font-size: 5vw;
    text-align: center;
    margin-top: 50px;
    text-transform: uppercase;
}

.case-study p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.case-study figure {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.case-study figure img {
    width: 100%;
}

.case-study figure video {
    width: 100%;
}

.case-study .container-fluid {
    margin-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
}


/* BLOG */

.blog {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    background: #fff;
}

.blog .col-lg-9 {
    padding-right: 60px;
}

.blog .sidebar {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
}

.blog .sidebar .widget {
    width: 100%;
    display: block;
    border-left: 1px solid #eee;
    margin-bottom: 40px;
    padding-left: 30px;
    padding-bottom: 10px;
}

.blog .sidebar .widget .title {
    display: block;
    font-weight: 800;
    font-size: 19px;
    padding: 15px 0;
    position: relative;
}

.blog .sidebar .widget .title:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #222327;
    position: absolute;
    left: -31px;
    top: 0;
}

.blog .sidebar .widget p {
    margin: 0;
}

.blog .sidebar .widget form {
    width: 100%;
}

.blog .sidebar .widget form input[type=text] {
    width: 100%;
    margin-bottom: 10px;
}

.blog .sidebar .widget .categories {
    width: 100%;
    margin: 0;
    padding: 0;
}

.blog .sidebar .widget .categories li {
    display: flex;
    flex-wrap: wrap;
    margin: 4px 0;
    padding: 0;
    list-style: none;
}

.blog .sidebar .widget .categories li span {
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #ccc;
    color: #fff;
    margin-right: 15px;
    margin-left: 0;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
}

.blog .sidebar .widget .categories li a {
    color: #222327;
    margin-left: 0;
    font-weight: 600;
}

.blog .sidebar .widget .tags {
    width: 100%;
    display: block;
    margin-bottom: 0;
    padding: 0;
}

.blog .sidebar .widget .tags li {
    display: inline-block;
    list-style: none;
    margin-bottom: 5px;
}

.blog .sidebar .widget .tags li a {
    font-weight: 600;
    font-size: 11px;
    background: #222327;
    color: #fff;
    line-height: 1;
    padding: 3px 6px;
}

.blog .sidebar .widget .tags li a:hover {
    color: #d32e2f;
    text-decoration: none;
}

.blog .sidebar .widget .mini-works {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.blog .sidebar .widget .mini-works li {
    width: 33.3333%;
    display: inline-block;
    margin: 0;
    padding: 4px;
    list-style: none;
}

.blog .post {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 50px 0;
}

.blog .post.single {
    position: relative;
}

.blog .post.single .post-image {
    width: 100%;
    margin-bottom: 50px;
}

.blog .post.single .post-content {
    width: 100%;
    padding: 0 60px;
}

.blog .post.single .post-content .post-title {
    font-size: 3vw;
    line-height: 1.4;
}

.blog .post:nth-child(even) {
    position: relative;
}

.blog .post:nth-child(even) .post-image {
    order: 2;
}

.blog .post:nth-child(even) .post-image:before {
    right: auto;
    left: -25px;
}

.blog .post:nth-child(even) .post-content {
    order: 1;
    padding-right: 60px;
    padding-left: 0;
    text-align: right;
}

.blog .post .post-image {
    width: 45%;
    margin: 0;
    position: relative;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
}

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

/* 
.blog .post .post-image:before {
    content: "";
    width: 90%;
    height: 60%;
    position: absolute;
    right: -25px;
    bottom: -30px;
    z-index: 0;
    background: url(../images/dot-pattern.png) right;
    background-size: 10px;
    -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;
    opacity: 0.2;
} */

.blog .post .post-content {
    width: 55%;
    padding-left: 60px;
}

.blog .post .post-content h5 {
    font-weight: 600;
    margin-top: 30px;
}

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

.blog .post .post-content ul li {
    margin: 0;
}

.blog .post .post-content .social-share {
    width: 100%;
    float: left;
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

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

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

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

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

.blog .post .post-content .image-left {
    width: 40%;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.blog .post .post-content .image-full {
    width: 100%;
    display: block;
    margin: 30px 0;
}

.blog .post .post-content .post-date {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.5;
}

.blog .post .post-content .post-title {
    color: #000;
    text-align: left;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.blog .post .post-content .post-title a {
    color: #161619;
}

.blog .post .post-content .post-title a:hover {
    color: #d32e2f;
    text-decoration: none;
}

.blog .post .post-content .post-author {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    display: none;
}

.blog .post .post-content .post-author img {
    width: 50px;
    height: 50px;
    display: inline-block;
    margin-right: 15px;
    border-radius: 50%;
}

.blog .post .post-content .post-author span {
    display: inline-block;
    color: #A7A7A7;
}

.blog .post .post-content .post-author span a {
    color: #222327;
    font-size: 15px;
}

.blog .post .post-content .post-author span a:hover {
    color: #222327;
}

.blog .post .post-content .breadcrumb {
    padding: 0;
    background-color: transparent;
    margin-bottom: 10px;
}

.blog .post .post-content .breadcrumb a:hover {
    text-decoration: none;
    color: #e91757;
}

.blog .post .post-content .breadcrumb-item+.breadcrumb-item::before {
    color: #222327;
    content: ">";
}

.blog .post .post-content .post-categories {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding: 0;
}

.blog .post .post-content .post-categories li {
    display: inline-block;
    list-style: none;
}

.blog .post .post-content .post-categories li a {
    font-weight: 600;
    font-size: 11px;
    background: #222327;
    color: #fff;
    line-height: 1;
    padding: 3px 6px;
}

.blog .post .post-content .post-categories li a:hover {
    color: #d32e2f;
    text-decoration: none;
}

.blog .post .post-content .post-link {
    border-bottom: 2px solid #222327;
    padding-bottom: 5px;
}

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

.blog .post.single .post-content p[data-f-id="pbf"] {
    display: none !important;
  }
/* CLIENTS */

.clients {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 120px 0;
    background: #fff;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.3);
}

.clients ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.clients ul li {
    width: 33.33333%;
    margin: 0;
    padding: 40px;
    list-style: none;
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
}


/* CONTACT */

.contact {
    width: 100%;
}

.contact .contact-form {
    background: #f1f1f1;
    padding: 55px;
    padding-top: 140px;
}

.contact h2 {
    font-size: 50px;
    margin-bottom: 40px;
}

.contact .bg-chat {
    background: url(../images/chat-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
}

.contact address {
    display: block;
}

.contact address p {
    margin: 0;
}

.contact address a {
    text-decoration: underline;
}

.contact .contact-form {
    width: 100%;
    display: block;
}

.contact .contact-form #contact {
    display: block;
}

.contact .contact-form #contact .form-group {
    display: block;
    position: relative;
    margin-bottom: 58px;
}

.contact .contact-form #contact .form-group span {
    width: 100%;
    line-height: 58px;
    position: absolute;
    font-size: 20px;
    left: 0;
    top: 0;
    padding: 0 0px;
    z-index: 0;
    -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;
}

.contact .contact-form #contact .form-group span.label-up {
    font-size: 18px;
    line-height: 1;
    top: -20px;
    font-weight: 600;
}

.contact .contact-form #contact .form-group.resume {
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    padding-bottom: 15px;
}

.contact .contact-form #contact .form-group.resume input {
    font-size: 14px;
    display: block;
}


.contact .contact-form #contact .form-group.resume span {
    position: relative;
}

.contact .contact-form #contact .form-group input[type=text],
.contact .contact-form #contact .form-group input[type=email],
.contact .contact-form #contact .form-group select {
    width: 100%;
    background: none;
    position: relative;
    z-index: 2;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    font-size: 20px;
    padding: 0;
}

.contact .contact-form #contact .form-group select {
    padding: 12px 0;
}

.contact .contact-form #contact .form-group input:focus~span {
    font-size: 16px;
    line-height: 1;
    top: -20px;
    font-weight: 600;
}

.contact .contact-form #contact .form-group textarea {
    width: 100%;
    background: none;
    position: relative;
    z-index: 2;
    height: 58px;
    line-height: 58px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    overflow: hidden;
    padding: 0;
    font-size: 20px;
}

.contact .contact-form #contact .form-group textarea:focus~span {
    font-size: 16px;
    line-height: 1;
    top: -20px;
    font-weight: 600;
}

.contact .contact-form #contact .form-group label.error {
    width: 100%;
    color: red;
    margin-top: 5px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 13px;
    position: absolute;
    bottom: -24px;
    left: 0;
}

.contact .contact-form #contact .contact-btn {
    font-weight: 600;
    font-size: 16px;
}

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

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

.contact .contact-form #success {
    background: green;
    color: #fff;
    position: absolute;
    bottom: 0;
}

.contact .contact-form .alert {
    border: none;
    border-radius: 0;
    padding: 20px 30px;
}

.contact .map {
    width: 80%;
    height: 400px;
    display: block;
    background: #222327;
}

.contact .map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-address {
    background: #FAFAFA;
    padding-bottom: 90px;
}

.contact-address h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    color: #000;
}

.creative-main {
    padding: 0;
    background: #fff;
    width: 100%;
    padding: 100px 0;
}


/* 
.creative-main .creative-row {
    padding: 0px 50px;
} */

.creative-main .creative-title {
    color: #000;
    text-align: left;
    font-size: 36px;
    margin-bottom: 44px;
}

.creative-main .creative-box { 
}

.creative-main .creative-box .service-sector {
    border: 1px solid #fff;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.creative-main .creative-box .service-sector .service-sector-icon {
    margin-bottom: 30px;
    transition: .7s ease all;
}

.creative-main .creative-box .service-sector:hover .service-sector-icon {
    scale: 1.2;
    transition: .7s ease all;
}

.creative-main .creative-box .service-sector-icon svg {
    fill: #FF2929 !important;
}

.creative-main .creative-box .service-sector h6 {
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-align: center;
}


/* CHAT  */

.chat {
    padding: 120px 0;
    background: #FAFAFA;
    width: 100%;
    color: #000;
}

.chat h2 {
    font-size: 30px;
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.chat p {
    max-width: 840px;
    margin: 0 auto;
    font-size: 18px;
}

.chat h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 50px;
}

.chat.contact .contact-form {
    background: transparent;
    padding: 0;
}

.chat .chat-btn:hover::after {
    right: 0;
}

.chat.contact .contact-form #contact .form-group span {
    font-size: 16px;
    text-transform: capitalize;
}

.chat .form-group textarea:focus~span {
    font-size: 20px;
    line-height: 1;
    top: -20px;
    font-weight: 600;
}

.chat.contact .contact-form #contact .form-group input[type=text] {
    background: transparent;
    font-size: 18px;
    padding: 0;
    border-bottom: 1px solid #000;
}

.chat.contact .contact-form #contact .form-group textarea {
    background: transparent;
    font-size: 18px;
    padding: 0;
    border-bottom: 1px solid #000;
}

.chat.contact .contact-form #contact .form-group select {
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-size: 18px;
    margin-top: 3px;
}

.chat.contact .contact-form #contact .form-group option {
    background: #313234;
    color: #fff;
    font-size: 15px;
}

.chat.contact .contact-form .form-group select {
    margin-top: 18px;
}

.chat.contact .contact-form .form-group .contact-btn {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.services.contact-address .service {
    background: rgba(219, 219, 219, 0.3);
    backdrop-filter: blur(12px);
    overflow: hidden;
    border-radius: 8px;
    border: 0px solid #faf0f0;
}

.services.contact-address .service h3 {
    font-weight: 600;
}

.map {
    width: 100%;
    display: flex;
}

.social-connect {
    width: 100%;
    display: flex;
}

.about-info {
    display: flex;
    width: 100%;
    padding: 100px 0;
    background: #fff;
}

.about-info h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 30px;
}

.about-info p {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}


/* FOOTER */

.footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 80px;
    padding-top: 80px;
    color: #fff;
    background: #000;
    background-image: url(../images/footer-bg.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer img {
    height: 75px;
    margin-bottom: 20px;
}

.footer h5 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer ul {
    margin: 0;
    padding: 0;
}

.footer ul li {
    display: block;
    padding: 0;
}

.footer .footer-contact-text {
    padding-top: 20px;
}

.footer .footer-contact {
    margin: 20px 0;
}

.footer .footer-contact p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer .footer-contact p a {
    text-decoration: none;
    color: #fff;
    transition: ease all 0.3s;
}

.footer .footer-contact p a:hover {
    color: #d32e2f;
    font-weight: 600;
    text-decoration: none;
}

.footer .connect-us {
    display: flex;
    justify-content: flex-start;
}

.footer .connect-us li {
    padding: 0 5px;
}

.footer .connect-us li a svg {
    transition: ease all 0.3s;
}

.footer .connect-us li a:hover svg {
    fill: #d32e2f;
}

.footer ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 4px 0;
    display: block;
}

.footer ul li a:hover {
    color: #d32e2f;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .5px;
}

.why-hire {
    width: 100%;
    padding: 100px 0;
    background: #fff;
}

.why-hire h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 55px;
}

.why-hire h6 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.why-hire h6 svg {
    margin-right: 16px;
}

.why-hire h6 svg path {
    stroke: #FF2929;
}

.why-hire p {
    font-size: 16px;
    font-weight: normal;
    color: #000;
    padding-top: 28px;
    line-height: 26px;
}

.mt-hire {
    margin-top: 100px;
}


/* our-team */

.our-team {
    padding: 100px 0;
    background: #fff;
    background-image: url(../images/service-section.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
}

.our-team h2 {
    font-size: 36px;
    color: #000;
}

.our-team p {
    font-size: 16px;
    font-weight: normal;
    color: #000;
    line-height: 26px;
    margin-bottom: 60px;
}

.our-team .member {
    text-align: center;
    padding: 160px 30px;
    border: 2px solid #707070;
    width: 100%;
    background: rgb(50 50 50 / 40%);
    margin-bottom: 30px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    height: calc(100% - 30px);
}


/* chat-bottom */

.chat2 {
    padding: 130px 0;
    text-align: center;
    background: #313234;
    width: 100%;
}

.chat2 h2 {
    color: #fff;
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.chat2 p {
    color: #fff;
    max-width: 840px;
    margin: 0 auto;
    font-size: 18px;
}

.chat2 .chat-btn {
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 15px 25px;
    border: 1px solid #fff;
    border-radius: 0;
    position: relative;
    z-index: 1;
}


/* creative */

.creative {
    padding: 130px 0;
    background: #000;
    width: 100%;
}

.creative .creative-title {
    color: #fff;
    text-align: left;
    font-size: 36px;
    margin-bottom: 44px;
}

.creative .creative-box {
    background: rgba(222, 222, 222, 0.15);
    margin: 0 8px;
}

.creative .creative-box .service-sector {
    border: 1px solid #000;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.creative .creative-box .service-sector .service-sector-icon {
    margin-bottom: 50px;
    transition: .7s ease all;
}

.creative .creative-box .service-sector:hover .service-sector-icon {
    scale: 1.2;
    transition: .7s ease all;
}

.creative .creative-box .service-sector h6 {
    font-size: 16px;
    color: #fff;
    text-align: center;
}


/* platforms */

.app-design {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.app-design h2 {
    color: #000;
    text-align: left;
    font-size: 28px;
    margin-bottom: 44px;
}

.app-design p {
    font-size: 16px;
    color: #000;
    text-align: left;
    line-height: 24px;
}

.app-design h5 {
    font-size: 24px;
    color: #000;
    text-align: left;
    font-weight: 600;
    line-height: 28px;
    position: relative;
    padding-left: 120px;
}

.app-design .line {
    position: absolute;
    left: 15px;
    top: 12px;
}

.platforms {
    margin-top: 90px;
}

.platforms h4 {
    font-size: 20px !important;
    color: #000;
    text-align: center;
    margin: 0;
}

.platforms .platform-section {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.platforms .platform-section .platform-icon {
    margin-bottom: 40px;
    transition: .7s ease all;
}

.platforms .platform-section:hover .platform-icon {
    scale: 1.2;
    transition: .7s ease all;
}

.inner-services .platform-section h4 {
    padding-left: 0 !important;
}

.platform-pl {
    margin: 0;
}


/* design-process */

.design-process {
    padding: 100px 0;
    background: #FAFAFA;
    width: 100%;
}

.design-process h4 {
    font-size: 24px;
    color: #000000;
    text-align: left;
    line-height: 28px;
    position: relative;
    padding-left: 120px;
}

.design-process h2 {
    color: #000;
    text-align: left;
    font-size: 28px;
    margin-top: 38px;
    /* padding-left: 100px; */
}

.design-process svg {
    position: absolute;
    left: 15px;
    top: 12px;
}

.design-process .visual-design {
    margin-top: 60px;
    position: relative;
    z-index: 8;
}

.ht-500 {
    height: 500px;
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease
}

.design-process .visual-design .inner-image img {
    position: absolute;
    top: 185px;
    left: 150px;
    height: 300px;
}

.design-process .visual-design .inner-image2 img {
    position: absolute;
    top: 120px;
    left: 120px;
    height: 350px;
}

.design-process .visual-design .visual-design-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design-process .visual-design h5 {
    font-size: 20px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
}

.design-process .visual-design p {
    font-size: 16px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
}

.design-process .visual-design-bg img {
    position: absolute;
    left: 46%;
    top: 50%;
    transform: translate(-54%, -50%);
    z-index: 1;
}

.is-opened-navi {
    color: #fff !important;
}


/* view-water */

.view-water {
    padding: 120px 0;
    background: #DFDFDF;
    width: 100%;
}

.view-water h2 {
    font-size: 50px;
    margin-bottom: 60px;
    padding-left: 80px;
}

.view-water h6 {
    font-size: 24px;
    color: #000;
    text-align: left;
    line-height: 28px;
    margin-bottom: 32px;
}

.view-water .bold-subhead {
    padding-left: 80px;
}

.view-water .bold-subhead h6 {
    font-weight: 700;
}

.view-water .bold-subhead h6:first-child {
    margin-bottom: 61px;
}

.view-water .banner-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.app-description {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.app-description p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 35px;
    color: #000;
    margin: 0;
    line-height: 32px;
    padding-left: 100px;
}

.client-bussiness {
    padding: 100px 0;
    background: #FAFAFA;
    width: 100%;
    position: relative;
}

.client-bussiness .lap-image img {
    padding-top: 25px;
}

.client-bussiness .bg-img img {
    position: absolute;
    top: 1px;
    left: 0;
    height: 100%;
}

.client-bussiness .about-content-wrap {
    padding-left: 120px;
    z-index: 1;
}

.client-bussiness .about-client h5 {
    font-size: 24px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 24px;
}

.client-bussiness .about-client p {
    font-size: 16px;
    color: #000000a6;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 68px;
}

.client-bussiness .about-client .line {
    position: absolute;
    left: -100px;
    top: 12px;
    z-index: 5;
}

.client-bussiness .business-challanges h5 {
    font-size: 24px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 24px;
    z-index: 5;
}

.client-bussiness .business-challanges .line {
    position: absolute;
    left: -100px;
    top: 12px;
    z-index: 5;
}

.client-bussiness .business-challanges p {
    font-size: 16px;
    color: #000000a6;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    z-index: 5;
}

.delivered-solution {
    padding: 120px 0 240px 0;
    background: #fff;
    width: 100%;
    z-index: 0;
}

.delivered-solution .border-img {
    display: flex;
    justify-content: center;
}

.delivered-solution h2 {
    color: #000;
    text-align: left;
    font-size: 36px;
    margin-bottom: 30px;
    padding-left: 100px;
}

.delivered-solution p {
    font-size: 16px;
    color: #000000a6;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    padding-left: 100px;
    margin-bottom: 120px;
}

.delivered-solution .approval-content {
    margin-top: 36px;
}

.delivered-solution .approval-content h5 {
    font-size: 24px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 24px;
    padding-left: 100px;
    margin-bottom: 40px;
}

.delivered-solution .approval-content .line {
    position: absolute;
    left: 0px;
    top: 12px;
}

.delivered-solution .approval-content p {
    font-size: 16px;
    color: #000000a6;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}

.delivered-solution .media-file-content {
    margin-top: 10px;
}

.delivered-solution .media-file-content h5 {
    font-size: 24px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 24px;
    padding-left: 100px;
    margin-bottom: 40px;
}

.delivered-solution .media-file-content .line {
    position: absolute;
    left: 0px;
    top: 12px;
}

.delivered-solution .media-file-content p {
    font-size: 16px;
    color: #000000a6;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}

.delivered-solution .media-file-img {
    z-index: 1;
}

.delivered-solution .triangle {
    top: -90px;
    left: -115px;
    position: absolute;
    z-index: -1;
}

.delivered-solution .media-file {
    margin-top: 200px;
}

.tech {
    padding: 120px 0;
    background: #FAFAFA;
    width: 100%;
}

.tech h4 {
    font-size: 18px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    padding-left: 100px;
}

.tech .line {
    position: absolute;
    left: 15px;
    top: 12px;
}

.tech h5 {
    font-size: 24px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
}

.tech p {
    font-size: 18px;
    color: #000000a6;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
}


/* banner-cursor */

.cursor-container {
    position: absolute;
    inset: 0;
}

.cursor-container svg .particles circle {
    stroke-width: 1.5 !important;
    stroke-opacity: 1 !important;
    z-index: 0;
}

.cursor-container svg .tiny-cursor circle {
    fill: rgba(236, 0, 79, 0.685);
    r: 7.5px;
}


/* nav-bar */

.nav-bar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.nav-bar-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.nav-bar .nav-bar-wrap .logo img {
    width: 75px;
    margin: 2em 0px;
    transition: ease all 0.3s;
}

.nav-bar .nav-bar-wrap .slide-nav {
    margin: 2em auto;
    display: table;
    list-style: none;
    padding: 0;
    position: relative;
}

.nav-bar .nav-bar-wrap .slide-nav li {
    display: block;
    text-align: center;
    display: table-cell;
}

.nav-bar .nav-bar-wrap .slide-nav li a {
    padding: 30px 20px;
    display: block;
    color: #000;
    text-decoration: none;
    transition: .3s all ease-in-out;
    text-transform: lowercase;
}

.nav-bar .nav-bar-wrap .slide-nav li a::first-letter {
    text-transform: uppercase;
}

.sticky.nav-bar .nav-bar-wrap .slide-nav li a {
    padding: 20px 20px;
}

.nav-bar .nav-bar-wrap .slide-nav li.current a {
    color: #e91757 !important;
    border-bottom: 1px solid #e91757;
}

.nav-bar .nav-bar-wrap .slide-nav li:hover a {
    color: #e91757 !important;

}

.nav-bar .nav-bar-wrap .slide-nav li.current i {
    color: #e91757 !important;
}

.nav-bar .nav-bar-wrap .slide-nav .slide-bg {
    position: absolute;
    border-bottom: 1px solid #e91757;
    left: 0;
    bottom: 0px;
}

.clr-white {
    color: #fff !important;
}

.bg-white {
    background: #fff;
}

.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    margin: 0;
    z-index: 9;
}

.nav-bar .nav-bar-wrap .slide-nav {
    margin: 0;
    margin-left: auto;
}

.nav-bar .nav-bar-wrap .slide-nav li a {
    color: #000 !important;
}

.nav-bar .nav-bar-wrap .slide-nav li .dropbtn {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
}

.nav-bar .nav-bar-wrap .slide-nav li .dropdown {
    position: relative;
    display: inline-block;
}

.nav-bar .nav-bar-wrap .slide-nav li .dropdown .fa-caret-down:before {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.nav-bar .nav-bar-wrap .slide-nav li .dropdown-content {
    display: block;
    position: absolute;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 28px 0 rgb(0 0 0 / 8%);
    box-shadow: 0 10px 28px 0 rgb(0 0 0 / 8%);
    z-index: 1;
    padding: 15px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: .4s all ease;
}

.nav-bar .nav-bar-wrap .slide-nav li .dropdown-content a {
    display: block;
    width: 100%;
    padding: 12px 26px;
    clear: both;
    font-weight: 400;
    color: #212529 !important;
    text-align: left;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 15px;
    text-transform: capitalize;
}

.nav-bar .nav-bar-wrap .slide-nav li .dropdown-content a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #f6f6f6;
    padding-left: 34px;
    padding-right: 18px;
}

.nav-bar .nav-bar-wrap .slide-nav li .dropdown:hover .dropdown-content {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.dropdown-animation {
    /* animation: growOut 300ms ease-in-out forwards;
    transform-origin: top center; */
}

@-moz-keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@-o-keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes growOut {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.nav-bar .nav-bar-wrap .logo {
    display: flex;
    justify-content: center;
}

.nav-bar .nav-bar-wrap .logo img {
    margin: 10px auto;
    width: 85px;
    transition: all ease 0.3s;
    margin-bottom: 0;
}

.contact-mt {
    margin-top: 64px;
}

header .header-btn {
    color: #111;
    border: 2px solid #111;
    margin: 35px 0;
    padding: 9px 30px;
    background: transparent;
    font-weight: 600;
    transition: .3s all ease;
}

header .header-btn:hover {
    color: #F53166;
    border-color: #F53166;
}

.bg-grey {
    background: #FAFAFA !important;
}

.bg-white {
    background: #fff !important;
}


/* web app */


/* .craft-app {
    padding: 50px 0 100px 0;
    background: #fff;
    width: 100%;
}

.craft-app h2 {
    color: #000;
    text-align: left;
    font-size: 36px;
    margin-bottom: 44px;
}

.craft-app p {
    font-size: 16px;
    color: #000;
    text-align: left;
    font-weight: 300;
    margin: 0;
}

.inner-services h4:first-child {
    font-size: 24px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    position: relative;
    padding-left: 120px;
}

.inner-services .line {
    position: absolute;
    left: 15px;
    top: 12px;
}

.inner-services p {}

.webapp-dev {
    padding: 100px 0;
    background: #FAFAFA;
    width: 100%;
}

.webapp-dev h2 {
    color: #000;
    text-align: left;
    font-size: 36px;
    margin-top: 38px;
    padding-left: 100px;
}

.webapp-dev .webapp-section {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webapp-dev .webapp-section .webapp-icon {
    margin-bottom: 40px;
    transition: .7s ease all;
}

.webapp-dev .webapp-section:hover .webapp-icon {
    scale: 1.2;
    transition: .7s ease all;
}

.webapp-dev .webapp-section h4 {
    font-size: 20px;
    color: #000;
    text-align: center;
    margin: 0;
    padding-left: 0;
}

.webapp-dev .webapp-section p {
    font-size: 16px;
    color: #000;
    text-align: center;
    position: relative;
    padding-top: 20px;
}



.tech-webapp {
    padding: 100px 0 50px 0;
    background: #fff;
    width: 100%;
}

.tech-webapp .sub-tittle h3 {
    font-size: 20px;
    margin: 0;
}

.tech-webapp .sub-tittle p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 20px;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.benefit {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.benefit h2 {
    color: #000;
    text-align: left;
    font-size: 36px;
    margin-top: 38px;
    padding-left: 100px;
}

.app-services {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.app-services .sub-tittle h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.app-services .sub-tittle p {
    font-size: 16px;
    margin: 0;
}

.all-devices {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.all-devices h4 {
    font-size: 20px;
    color: #000;
    text-align: center;
    margin: 0;
    padding-left: 0;
}

.bg-border {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.bg-border2 {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.ht-50 {
    min-height: 50px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    margin: 0;
    z-index: 999999;
    box-shadow: 0 3px 3px rgb(0 0 0 / 10%);
}

.sticky .nav-bar-wrap .slide-nav {
    margin: 0;
    margin-left: auto;
}


/* .sticky .nav-bar-wrap .slide-nav li.current a {
    padding: 20px;
} 

.sticky .nav-bar-wrap .slide-nav li a {
    color: #000 !important;
}

.sticky .nav-bar-wrap .logo {
    display: flex;
    justify-content: center;
}

.sticky .nav-bar-wrap .logo img {
    margin: 5px auto;
    width: 56px;
    transition: all ease 0.3s;
}

.sticky.nav-bar .nav-bar-wrap .slide-nav .slide-bg {
    bottom: 10px;
}

*/


/* web app */

.craft-app {
    padding: 100px 0 100px 0;
    background: #fff;
    width: 100%;
}

.craft-app h2 {
    color: #000;
    text-align: left;
    font-size: 28px;
    margin-bottom: 44px;
    text-transform: capitalize;
}

.craft-app p {
    font-size: 16px;
    color: #000;
    text-align: left;
    font-weight: 300;
    margin: 0;
}

.inner-services h4:first-child {
    font-size: 24px;
    color: #000;
    text-align: left;
    line-height: 28px;
    position: relative;
    padding-left: 100px;
}

.inner-services .line {
    position: absolute;
    left: 15px;
    top: 12px;
}

.inner-services p {}

.webapp-dev {
    padding: 100px 0;
    background: #FAFAFA;
    width: 100%;
}

.webapp-dev h2 {
    color: #000;
    text-align: left;
    font-size: 28px;
    margin-top: 38px;
    padding-left: 100px;
}

.webapp-dev .webapp-section {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webapp-dev .webapp-section .webapp-icon {
    margin-bottom: 40px;
    transition: .7s ease all;
}

.webapp-dev .webapp-section:hover .webapp-icon {
    scale: 1.2;
    transition: .7s ease all;
}

.webapp-dev .webapp-section h4 {
    font-size: 20px;
    color: #000;
    text-align: center;
    margin: 0;
    font-weight: 500;
    padding-left: 0;
}

.webapp-dev .webapp-section p {
    font-size: 16px;
    color: #000;
    text-align: center;
    position: relative;
    padding-top: 20px;
}

.tech-webapp {
    padding: 100px 0 100px 0;
    background: #fff;
    width: 100%;
}

.tech-webapp .sub-tittle h3 {
    font-size: 20px;
    margin: 0;
}

.webapp-dev .mvp-deliverables {
    padding-left: 120px;
}

.tech-webapp .sub-tittle p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 20px;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.benefit {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.benefit h2 {
    color: #000;
    text-align: left;
    font-size: 36px;
    margin-top: 38px;
    padding-left: 85px;
}

.benefit p {
    color: #000;
    text-align: left;
    font-size: 16px;
    padding-left: 85px;
    margin-bottom: 0;
}

.webapp-dev .sub-p {
    color: #000;
    text-align: left;
    font-size: 16px;
    padding-left: 100px;
    margin-bottom: 0;
}

.app-services {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.app-services .sub-tittle h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.app-services .sub-tittle p {
    font-size: 16px;
    margin: 0;
}

.all-devices {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.all-devices h4 {
    font-size: 20px;
    color: #000;
    text-align: center;
    margin: 0;
    padding-left: 0;
}

.bg-border {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.bg-border2 {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.ht-50 {
    min-height: 50px;
}

.ht-60 {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.pl-expert {
    padding-left: 100px !important;
}

.pb-80 {
    padding-bottom: 80px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffffb7;
    margin: 0;
    z-index: 999;
    box-shadow: 0 3px 3px rgb(0 0 0 / 10%);
    backdrop-filter: saturate(180%) blur(5px);
}

.sticky .nav-bar-wrap .slide-nav {
    margin: 0;
    margin-left: auto;
}


/* 
.sticky .nav-bar-wrap .slide-nav li.current a {
    padding: 20px;
} */


/* .sticky .nav-bar-wrap .slide-nav li.current a:first-child {
    padding: 20px;
} */

.sticky .nav-bar-wrap .slide-nav li a {
    color: #000 !important;
}

.sticky .nav-bar-wrap .logo {
    display: flex;
    justify-content: center;
}

.sticky .nav-bar-wrap .logo img {
    margin: 5px auto;
    width: 56px;
    transition: all ease 0.3s;
}

.sticky.nav-bar .nav-bar-wrap .slide-nav .slide-bg {
    bottom: 0px;
}

.webapp-dev .solve-section {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webapp-dev .solve-section {
    position: relative;
}

.webapp-dev .solve-section::after {
    position: absolute;
    content: '';
    background-image: url(../images/double-circle.svg);
    top: calc(100% - 3px);
    left: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    height: 30px;
    z-index: 9;
}

.webapp-dev .solve-section::before {
    position: absolute;
    content: '';
    background-image: url(../images/Line-rotate.svg);
    bottom: 0;
    right: calc(50%);
    width: 1px;
    height: 60px;
    z-index: 9;
}

.webapp-dev .solve-section2 {
    position: relative;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webapp-dev .solve-section2::after {
    position: absolute;
    content: '';
    background-image: url(../images/double-circle.svg);
    bottom: calc(100% - 3px);
    left: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    height: 30px;
    z-index: 9;
}

.webapp-dev .solve-section2::before {
    position: absolute;
    content: '';
    background-image: url(../images/Line-rotate.svg);
    top: 0;
    right: calc(50%);
    width: 1px;
    height: 60px;
    z-index: 9;
}

.webapp-dev .solve-section .solve-content h4 {
    font-size: 20px;
    color: #000;
    text-align: center !important;
    margin: 0;
    padding-left: 0;
    font-weight: 600;
}

.webapp-dev .solve-section p {
    font-size: 16px;
    color: #000;
    text-align: center;
    position: relative;
    padding-top: 20px;
}

.webapp-dev .solve-section2 .solve-content h4 {
    font-size: 20px;
    color: #000;
    text-align: center !important;
    margin: 0;
    padding-left: 0;
    font-weight: 600;
}

.webapp-dev .solve-section2 p {
    font-size: 16px;
    color: #000;
    text-align: center;
    position: relative;
    padding-top: 20px;
}

.our-process {
    padding: 100px 0;
    background: #FAFAFA;
    width: 100%;
    text-align: center;
}

.our-process h2 {
    color: #000;
    font-size: 28px;
    margin-top: 38px;
    margin-bottom: 60px;
}

.our-process h4 {
    font-size: 20px;
    color: #000;
    margin: 0;
    padding-left: 0;
    margin-top: 30px;
}

.our-process .process-section {
    position: relative;
}

.our-process .process-section::after {
    position: absolute;
    content: '';
    background-image: url(../images/process-line.svg);
    z-index: 9;
    left: 20px;
    top: 50%;
    transform: translate(50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center center;
    height: 18px;
}

.craft-app .advance-tech ul {
    margin-top: 1.5rem;
    list-style: none;
    margin-bottom: 0;
}

.craft-app .advance-tech ul li {
    padding: 10px 0;
    position: relative;
}

.craft-app .advance-tech ul li::after {
    position: absolute;
    content: '';
    background-image: url(../images/tick.svg);
    left: -30px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    background-position: center center;
}

.augmentation-process {
    padding: 100px 0;
    background: #fff;
    width: 100%;
    text-align: center;
}

.augmentation-process h2 {
    color: #000;
    font-size: 36px;
    margin-bottom: 60px;
}

.augmentation-process h6 {
    font-size: 24px;
    color: #FF0000;
    margin: 0;
    padding-left: 0;
    margin-top: 30px;
    text-align: left;
}

.augmentation-process p {
    font-size: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 0;
}

.augmentation-process .inner-img {
    display: flex;
}

.augmentation-process .aug-mt {
    margin-top: 0;
}

.fw-600 {
    font-weight: 600;
}

.openings {
    list-style: none;
    padding-left: 0;
}

.section.portfolio .openings li {
    padding: 40px 0;
    border-bottom: 1px solid #B3B8BC;
    padding-left: 10px;
    min-width: 100%;
}

.section.portfolio .openings li:last-child {

    border-bottom: 0px;

}

.section.portfolio .openings li a:hover {
    color: #e91757;
    text-decoration: none;
}

.section.portfolio .openings li a.apply {
    padding: 15px 0 15px 15px;
}

.section.portfolio .openings h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section.portfolio .openings h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}


.opening-head .section-title {
    padding-bottom: 30px;
}

.opening-head {
    padding-bottom: 20px;
    border-bottom: 1px solid #B3B8BC;
    margin-bottom: 40px;
}

.opening-head .meta {
    display: inline-block;
    padding-right: 30px;
}

.opening-head .meta i {
    margin-right: 5px;
    color: #e91757;
}




.opening-details h5 {
    font-weight: 600;
    margin-top: 30px;
}

.opening-details h5 a {
    color: #e91757;
}

.opening-details ul {
    padding-left: 18px;
}

.opening-details ul li {
    padding: 10px 0;
}

/* career-buttons */
.career-filter-btn button {
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: transparent;
    padding-bottom: 15px;
}

.career-filter-btn button:hover {
    color: #e91757;
}

.career-filter-btn .is-checked {

    border-bottom: 1px solid #e91757 !important;
}

/* portfolio inner */

.portfolio-inner .project-page-content {
    padding-left: 30px;
}

.portfolio-inner .project-tittle {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
}

.portfolio-inner .project-description {
    color: #000;
    font-size: 16px;
}

.portfolio-inner strong {
    font-weight: 600;
}

.portfolio-inner .project-line {
    border-top: 1px solid #707070;
}

/* RESPONSIVE TABLET FIXES */

@media only screen and (min-width: 992px) {
    .pl-lg-100 {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 1199px),
only screen and (min-device-width: 1199px) {
    .webapp-dev .webapp-wrap {
        padding: 0 8px;
    }
}

@media only screen and (max-width: 1199px),
only screen and (max-device-width: 1199px) {
    .mt-hire {
        margin-top: 0;
    }

    .design-process .visual-design-bg img {
        display: none;
    }

    .design-process .visual-design {
        text-align: center;
        margin-top: 60px;
    }

    .design-process .visual-design h5 {
        margin-top: 30px;
    }

    .design-process .visual-design img {
        height: 500px;
    }

    .design-process .visual-design .inner-image2 img {
        height: 350px;
        top: 90px;
        left: 160px;
    }

    .design-process .visual-design .inner-image img {
        height: 240px;
        top: 200px;
    }

    .view-water .banner-bg {
        right: -140px;
    }

    .our-process .process-section::after {
        width: 150px;
        left: 80px;
    }

}

@media only screen and (min-width: 992px),
only screen and (min-device-width: 992px) {
    .col-20 {
        max-width: 20%;
    }
}

@media only screen and (max-width: 991px),
only screen and (max-device-width: 991px) {
    body {
        margin: 0 !important;
    }

    .clients-section {
        background-size: 150%
    }

    .clients-section p {
        margin-bottom: 30px;
    }
    p,
    .intro p,
    .accordion .accordion-card .card-body {
        font-size: 14px !important;
    }

    .preloader {
        display: flex;
    }

    .site-navigation {
        display: flex;
    }

    .section-title {
        font-size: 24px !important;
        margin-bottom: 50px;
    }

    header h2,
    .hero h2 {
        font-size: 36px;
    }

    header h6,
    .hero h5 {
        font-size: 20px;
        line-height: 24px;
    }

    .creative-main .creative-box .service-sector h6 {
        font-size: 14px;
    }

    header .header-btn {
        font-size: 14px;
    }

    .we-offer .weoffer-row .sub-tittle h3 {
        font-size: 13px;
    }

    .we-offer .weoffer-row .sub-tittle .tag {
        padding: 5px 10px;
    }

    .sub-head {
        font-size: 20px;
    }

    .about-info h2,
    .why-hire h2,
    .our-team h2,
    .chat2 h2,
    .service-title,
    .creative .creative-title,
    .app-design h2,
    .design-process h2,
    .delivered-solution h2,
    .craft-app h2,
    .webapp-dev h2,
    .benefit h2 {
        font-size: 24px !important;
    }

    .accordion .accordion-card .btn-link,
    .process .process-subtitle,
    .process .content h3 {
        font-size: 20px;
    }

    .why-hire h6 {
        font-size: 20px;
    }

    .page-header .inner {
        padding-left: 160px;
    }

    .all-cases .inner {
        padding-left: 160px;
    }

    .social-media .inner ul li {
        font-size: 4vw;
    }

    .all-cases .inner ul li {
        font-size: 10vw;
    }

    .works {
        padding: 80px 0;
    }

    .works ul li {
        width: 50%;
    }

    .slider .gallery-thumbs .swiper-slide-active span {
        width: 100%;
        font-size: 8vw;
        line-height: 11vw;
    }

    .intro .col-lg-7 {
        padding-left: 15px;
        margin-top: 50px;
    }

    .text-content-block {
        padding: 80px 0;
    }

    .intro-image {
        padding-bottom: 80px;
    }

    .icon-content-block .col-lg-3:nth-child(3) {
        margin-top: 0;
    }

    .icon-content-block .content-block {
        padding: 30px 20px;
    }

    /* .process {
    margin-bottom: 80px;
  } */
    .process .col-lg-3:first-child {
        margin-bottom: 40px;
    }

    .process .odometer {
        font-size: 60px;
    }

    .process .col-md-6 {
        margin-bottom: 60px;
    }

    .process small {
        display: block;
        font-size: 26px;
        margin: 0px 10%
    }

    /* .testimonials {
    margin-top: 80px;
  } */
    .testimonials {
        padding-bottom: 140px;
    }

    .testimonials:before {
        display: none;
    }

    .testimonials .col-lg-6:first-child {
        order: 2;
    }

    .testimonials .col-lg-6:last-child {
        order: 1;
    }

    .testimonials .testimonials-slider {
        margin-top: 40px;
        width: 100%;
    }

    .testimonials .swiper-pagination {
        bottom: 65px;
    }

    .testimonials .testimonial {
        padding: 50px 80px;
    }

    .testimonials .section-title {
        margin-top: 80px;
    }

    .team {
        padding: 80px 0;
    }

    .team:before {
        display: none;
    }

    .team .col {
        width: 33.33333%;
        flex-basis: auto;
        flex-grow: inherit;
    }

    .team figure {
        margin: 30px 0;
    }

    .team figure figcaption {
        color: #fff;
    }

    .team h5 {
        margin-bottom: 40px;
        margin-top: 0;
    }

    .intro {
        padding: 60px 0;
    }

    .intro p:first-child {
        margin-bottom: 20px;
    }

    .clients {
        padding: 60px 0;
    }

    .blog {
        padding: 30px 0;
    }

    .blog .col-lg-9 {
        padding-right: 15px;
    }

    .contact {
        padding: 0px 0;
    }

    .chat {
        padding: 60px 15px;
    }

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

    .contact .map {
        width: 100%;
        margin: 50px 0;
    }

    .footer {
        position: relative;
        text-align: left !important;
        z-index: 1;
    }

    .footer h6 {
        font-size: 26px;
    }

    .footer ul {
        width: 100%;
        float: left;
        margin-bottom: 30px;
    }

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

    .footer .connect-us {
        justify-content: flex-start;
    }

    .footer .connect-us li {
        padding-left: 0;
    }

    .platforms {
        margin-top: 20px;
    }

    .app-design .line {
        width: 50px;
    }

    .design-process svg {
        width: 50px;
    }

    .app-design h5,
    .design-process h4 {
        font-size: 20px;
        padding-left: 0px;
    }

    .design-process h2,
    .app-description p,
    .delivered-solution h2,
    .delivered-solution p,
    .craft-app h2,
    .craft-app p,
    .webapp-dev h2,
    .benefit h2,
    .webapp-dev .sub-p .benefit p .webapp-dev .solve-section .solve-content h4,
    .webapp-dev .solve-section2 .solve-content h4 {
        padding-left: 0 !important;
    }

    .client-bussiness .about-content-wrap {
        padding-left: 15px;
        margin-top: 30px;
    }

    .client-bussiness .about-client p {
        margin-bottom: 30px;
    }

    .design-process .visual-design .inner-image2 img {
        left: 45%;
    }

    .design-process .visual-design .inner-image img {
        left: 50%;
    }

    .design-process .visual-design .visual-order {
        order: 2;
    }

    .we-offer .bottom-section,
    .we-offer .weoffer-row {
        padding: 0;
    }

    .about-banner,
    .client-bussiness,
    .delivered-solution,
    .tech,
    .app-description {
        padding: 100px 0;
    }

    .delivered-solution p {
        margin-bottom: 100px;
    }

    .delivered-solution .media-file-content,
    .tech h5:first-child {
        margin-top: 30px;
    }

    .delivered-solution .approval-content {
        margin-bottom: 30px;
    }

    .delivered-solution .media-file {
        margin-top: 100px;
    }

    .delivered-solution h2 {
        margin-top: 0;
    }

    .bt-border-img,
    .delivered-solution .border-img {
        display: none;
    }

    .tech .line {
        width: 40px;
    }

    .tech h4,
    .delivered-solution .approval-content h5,
    .delivered-solution .media-file-content h5 {
        padding-left: 50px;
    }

    .delivered-solution .media-file-content .line,
    .delivered-solution .approval-content .line {
        width: 40px;
    }

    .view-water .banner-bg {
        display: none;
    }

    .inner-services h4 {
        padding-left: 0px !important;
        font-size: 20px !important;
    }

    .inner-services p {
        padding-left: 0px !important;
    }

    .webapp-dev .webapp-section h4 {
        padding-left: 0px !important;
    }

    .pl-expert {
        padding-left: 0px !important;
    }

    .d-before-md-none::before,
    .d-before-md-none::after {
        display: none;
    }

    .webapp-dev .solve-section2::before,
    .webapp-dev .solve-section::before {
        bottom: calc(-60px + 15px);
        height: 120px;
        width: 2px;
        top: unset;
    }

    .webapp-dev .solve-section2,
    .webapp-dev .solve-section {
        padding: 60px;
    }

    .webapp-dev .solve-section::after,
    .webapp-dev .solve-section2::after {
        bottom: 0px;
        top: unset;
    }

    .our-process h4 {
        margin-bottom: 150px;
    }

    .our-process .md-mb-0 {
        margin-bottom: 0;
    }

    .our-process .process-section::after {
        background-image: url(../images/process-line-rotate.svg);
        height: 150px;
        width: 18px;
        left: 50%;
        transform: translate(-50%, 70%);
    }

    .inner-services .expert-line {
        display: none;
    }

    .augmentation-process .inner-img {
        display: none;
    }

    .augmentation-process .aug-mt {
        margin-top: 80px !important;
    }

    .aug-ord1 {
        order: 1;
    }

    .aug-ord2 {
        order: 2;
    }

    .aug-ord3 {
        order: 3;
    }

    .aug-ord4 {
        order: 4;
    }

    .aug-ord5 {
        order: 5;
    }

    .augmentation-process h6 {
        padding-left: 100px;
        margin-top: 80px;
    }

    .augmentation-process .aug-ord1 h6 {
        margin-top: 30px;
    }

    .augmentation-process p {
        padding-left: 100px;
    }

    .augmentation-process .aug-ord1 {
        position: relative;
    }

    .augmentation-process .aug-ord2 {
        position: relative;
    }

    .augmentation-process .aug-ord3 {
        position: relative;
    }

    .augmentation-process .aug-ord3 {
        position: relative;
    }

    .augmentation-process .aug-ord4 {
        position: relative;
    }

    .augmentation-process .aug-ord1::before {
        position: absolute;
        content: '';
        background-image: url(../images/ord-1.svg);
        left: 20px;
        top: 20px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 80px;
        background-position: center center;
        z-index: 8;
    }

    .augmentation-process .aug-ord1::after {
        position: absolute;
        content: '';
        background-image: url(../images/ord-line.svg);
        left: 60px;
        top: 90px;
        height: 100px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 2px;
        background-position: center center;
        z-index: 5;
    }

    .augmentation-process .aug-ord2::before {
        position: absolute;
        content: '';
        background-image: url(../images/ord-2.svg);
        left: 20px;
        top: 80px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 80px;
        background-position: center center;
        transform: translateY(-4px);
        z-index: 8;
    }

    .augmentation-process .aug-ord3::before {
        position: absolute;
        content: '';
        background-image: url(../images/ord-3.svg);
        left: 20px;
        top: 80px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 80px;
        background-position: center center;
        transform: translateY(-4px);
        z-index: 8;
    }

    .augmentation-process .aug-ord4::before {
        position: absolute;
        content: '';
        background-image: url(../images/ord-4.svg);
        left: 20px;
        top: 80px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 80px;
        background-position: center center;
        transform: translateY(-4px);
        z-index: 8;
    }

    .augmentation-process .aug-ord5::before {
        position: absolute;
        content: '';
        background-image: url(../images/ord-5.svg);
        left: 20px;
        top: 80px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 80px;
        background-position: center center;
        transform: translateY(-4px);
        z-index: 8;
    }

    .augmentation-process .aug-ord2::after {
        position: absolute;
        content: '';
        background-image: url(../images/ord-line.svg);
        left: 60px;
        top: 120px;
        height: 100px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 2px;
        background-position: center center;
        z-index: 5;
    }

    .augmentation-process .aug-ord3::after {
        position: absolute;
        content: '';
        background-image: url(../images/ord-line.svg);
        left: 60px;
        top: 120px;
        height: 100px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 2px;
        background-position: center center;
        z-index: 5;
    }

    .augmentation-process .aug-ord4::after {
        position: absolute;
        content: '';
        background-image: url(../images/ord-line.svg);
        left: 60px;
        top: 120px;
        height: 100px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 2px;
        background-position: center center;
        z-index: 5;
    }

    .md-order-2 {
        order: 2;
    }

    .md-order-1 {
        order: 1;
    }

    .md-order-3 {
        order: 3;
    }

    .section.portfolio-inner {
        padding-top: 100px !important;
    }

    .portfolio-inner .project-line {
        border-top: none;
    }
}

@media (max-width:575px) {
    .chat.contact .contact-form {
        padding-right: 30px;
    }
}

/* RESPONSIVE tab FIXES */

@media only screen and (max-width:992px),
only screen and (max-device-width: 992px) {
    .grid-item {
        width: 50%;
        padding: 0 20px;
        padding: 0;
        position: relative;
    }

    .grid-item--width2 {
        width: 50%;
    }

    .testimonials .swiper-pagination {
        bottom: 15px;
        right: 20px;
    }

    .slider .service-box h2 {
        font-size: 34px;
    }

    .slider .service-box p {
        font-size: 14px;
    }

    .we-offer .weoffer-row .lg-dis {
        display: none;
    }

    .we-offer .bottom-section h6 {
        margin-top: 20px;
        font-size: 16px;
    }

    .creative-title {
        font-size: 24px !important;
    }

    .platforms h4 {
        font-size: 16px !important;
    }

    .site-navigation {
        display: flex;
    }

    .all-cases-link {
        display: block;
    }

    .page-loaded .left-side {
        display: block;
    }

    .nav-bar {
        display: none;
    }

    .step .line {
        width: 120px;
    }

    .line {
        left: 15px !important;
        top: -15px !important;
        width: 60px;
    }

    .sub-head {
        padding-left: 0px;
    }

    .site-navigation .inner ul li a:hover {
        color: #ffc4c4;
    }

    .banner-ht {
        height: auto;
        padding-bottom: 90px !important;
    }

    .about-info {
        padding-bottom: 0px;
    }

    .about-info,
    .why-hire,
    .our-team,
    .chat2,
    .app-design,
    .design-process,
    .delivered-solution,
    .craft-app,
    .webapp-dev,
    .benefit,
    .process,
    .creative-main,
    .section.portfolio,
    .we-offer,
    .craft-app,
    .tech-webapp,
    .inner-services,
    .our-process,
    .augmentation-process,.clients-section {
        padding: 60px 0;
    }

    .webapp-dev .mvp-deliverables {
        padding-left: 20px;
        font-size: 14px;
    }

    /* .process {
        padding-top: 0;
    } */
    .footer ul {
        margin-top: 15px !important;
    }

    .footer .footer-contact-text {
        margin-bottom: 0;
    }

    .footer h5 {
        margin-bottom: 0;
    }

    .chat.contact .contact-form #contact .form-group span {
        font-size: 14px;
    }

    .chat.contact .contact-form #contact .form-group select {
        font-size: 14px;
        margin-top: 8px;
    }

    .our-process h2 {
        margin-top: 0;
    }

    .md-mt-20 {
        margin-top: 20px !important;
    }

    .contact h2 {
        font-size: 24px;
    }

    .contact .contact-form #contact .contact-btn {
        font-size: 14px;
    }

    .webapp-dev .webapp-section.md-al-left {
        align-items: start;
    }

    .webapp-dev .webapp-section h4 {
        text-align: left;
        font-size: 16px !important;
    }

    .webapp-dev .webapp-section p {
        text-align: left;
    }

    .webapp-dev .webapp-section .webapp-icon,
    .platforms .platform-section .platform-icon {
        margin-bottom: 20px;
    }

    .tech-webapp .sub-tittle h3 {
        font-size: 16px;
    }

    .design-process .visual-design h5 {
        font-size: 20px;
    }

    .about-info h2 br {
        display: none;
    }

    .md-pt-75 {
        padding-top: 75px;
    }
}


/* RESPONSIVE MOBILE FIXES */

@media only screen and (max-width: 767px),
only screen and (max-device-width: 767px) {
    .creative-main .creative-row {
        padding: 0;
    }

    .site-navigation {
        padding-left: 36px;
    }

    .contact .contact-form #contact .form-group {
        margin-bottom: 50px;
    }

    .contact .contact-form #contact .form-group span.label-up {
        font-size: 14px;
        top: -15px;
    }

    .contact .contact-form #contact .form-group input:focus~span {
        font-size: 14px;
        top: -15px;
    }

    .contact .contact-form #contact .form-group textarea:focus~span {
        font-size: 14px;
        top: -15px;
    }

    .process .count {
        text-align: left;
        font-size: 60px;
    }

    .process .line {
        display: none;
    }

    .process .content {
        padding: 60px 0;
        padding-top: 10px;
    }

    .slider .gallery-thumbs {
        width: 100%;
        margin: 0;
    }

    .page-header .inner {
        padding-left: 100px;
    }

    .page-header .inner p {
        font-size: 17px;
        padding-right: 10%;
    }

    .all-cases .inner {
        padding-left: 100px;
    }

    .all-cases .inner ul li {
        font-size: 13vw;
    }

    .site-navigation .inner {
        padding-left: 0;
    }

    .site-navigation .inner ul li {
        line-height: 1;
    }

    .site-navigation .inner ul li a {
        font-size: 28px;
    }

    .site-navigation .inner ul li i {
        margin-left: 13px;
    }

    .site-navigation .inner ul li small {
        display: none;
    }

    .site-navigation .inner ul li ul {
        margin-top: 10px;
    }

    .left-side {
        width: 140px;
        border-right: none;
        padding: 15px 30px;
    }

    .left-side .follow-us {
        display: none;
    }

    .slide-progress {
        display: none;
    }

    /* .all-cases-link {
        right: 15px;
    } */
    .swiper-button-next {
        right: 20px;
    }

    .swiper-button-prev {
        right: 90px;
    }

    .icon-content-block .col-lg-3 {
        margin-bottom: 50px;
    }

    .slider .service-box {
        height: 25vh;
        margin-bottom: 30px;
        background-size: cover;
        /* background: #f6084a; */
        background-repeat: no-repeat;
    }

    .slider .service-box p {
        font-size: 16px;
        /* color: #fff; */
    }

    .section.portfolio .filters {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section.portfolio .filters ul li {
        padding: 10px 20px;
    }

    .hero {
        padding-top: 180px;
        padding-bottom: 100px;
    }

    .accordion .accordion-card .btn-link {
        padding: 20px;
    }

    .footer {
        padding: 60px 0;
        background-size: auto;
        padding-bottom: 15px;
    }

    .footer ul li {
        display: block;
        padding: 5px 0;
    }

    .accordion .accordion-card .card-body {
        padding: 20px;
        padding-top: 0;
    }

    .accordion .accordion-card .card-body ul li {
        margin-bottom: 20px;
    }

    /*
    
  .icon-content-block .col-lg-3:nth-child(3) {
    margin: 50px 0;
  }
*/
    .icon-content-block .content-block {
        padding: 0;
    }

    .icon-content-block .content-block.selected {
        background: none;
        box-shadow: none;
    }

    .icon-content-block .content-block.selected:before {
        display: none;
    }

    .testimonials .testimonials-slider .tescontent .quote {
        top: 0;
        left: 0;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .company-logo svg {
        max-width: 100%;
    }

    /* .testimonials .swiper-pagination {
    bottom: 85px;
  } */
    .team .col {
        width: 50%;
        flex-basis: 50%;
        flex-grow: inherit;
    }

    .team figure {
        display: block;
        height: auto;
    }

    .team figure img {
        height: auto;
        object-fit: cover;
    }

    .works ul li {
        width: 100%;
    }

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

    .works ul li:nth-child(3n+3) {
        margin-top: 0;
    }

    .clients ul li {
        padding: 30px 20px;
        width: 50%;
    }

    .clients ul li:last-child {
        display: none;
    }

    .blog .post .post-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .blog .post .post-content {
        width: 100%;
        padding: 0 !important;
    }

    .blog .post:nth-child(even) {
        text-align: left;
    }

    .blog .post:nth-child(even) .post-image {
        order: 1;
    }

    .blog .post:nth-child(even) .post-content {
        order: 2;
        text-align: left;
    }

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

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

    .footer h2 {
        font-size: 30px;
        font-size: 7vw;
    }

    .footer h2 {
        font-size: 30px;
    }

    br {
        display: none;
    }

    header h6 br {
        display: block;
    }

    .footer .footer-bar .creation {
        width: 100%;
        display: block;
        margin-top: 5px;
    }

    .design-process .visual-design img {
        height: 300px;
    }

    .design-process .visual-design .inner-image2 img {
        height: 210px;
        top: 60px;
    }

    .design-process .visual-design .inner-image img {
        height: 144px;
        top: 120px;
    }

    .pl-expert {
        padding-left: 0px !important;
    }

    .footer ul li a {
        padding: 0;
    }

    .footer ul li {
        padding: 0;
        margin-bottom: 5px;
    }

    .md-align-left {
        align-items: start !important;
    }
}

@media only screen and (max-width: 567px),
only screen and (max-device-width: 567px) {
    .banner-img img {
        top: 120px;
        opacity: 0.5;
    }

    .grid-item {
        width: 100%;
        padding: 0 20px;
        padding: 0;
        position: relative;
    }

    .grid-item--width2 {
        width: 100%;
    }

    .career-filter-btn .button-group .sm-d-block {
        display: block !important;
    }
}

@media (min-width:1600px) {
    header h2 {
        font-size: 60px;
    }
}

.spinner {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: relative;
    width: 30px;
    height: 30px;
}

.spinner .path {
    stroke: #fff;
    stroke-linecap: round;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}


/* ANIMATIONS */

@keyframes texteffect {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes texteffect {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes show-img-1 {

    0%,
    66.6% {
        visibility: hidden;
    }

    100%,
    66.7% {
        visibility: visible;
    }
}

@keyframes show-img-1 {

    0%,
    66.6% {
        visibility: hidden;
    }

    100%,
    66.7% {
        visibility: visible;
    }
}

@-webkit-keyframes slide-bg-2 {
    33.3% {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(0.05, 1);
        transform: scale(0.05, 1);
    }

    66.6% {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    66.7% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
}

@keyframes slide-bg-2 {
    33.3% {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(0.05, 1);
        transform: scale(0.05, 1);
    }

    66.6% {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    66.7% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
}


/* ANIMATIONS */

@keyframes texteffect {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes texteffect {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes show-img-1 {

    0%,
    66.6% {
        visibility: hidden;
    }

    100%,
    66.7% {
        visibility: visible;
    }
}

@keyframes show-img-1 {

    0%,
    66.6% {
        visibility: hidden;
    }

    100%,
    66.7% {
        visibility: visible;
    }
}

@-webkit-keyframes slide-bg-2 {
    33.3% {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(0.05, 1);
        transform: scale(0.05, 1);
    }

    66.6% {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    66.7% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
}

@keyframes slide-bg-2 {
    33.3% {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(0.05, 1);
        transform: scale(0.05, 1);
    }

    66.6% {
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    66.7% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-inner .mySwiper .swiper-pagination {
    display: block;
}
 p[data-f-id="pbf"] {
    display: none !important;
  }