html,
body {
    overscroll-behavior-y: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.example::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.example {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.bg-red {
    background-color: #AF1F23;
}

.bg-maroon-gradient-black {
    background: #880004 linear-gradient(180deg, #00000080 0%, #00000000 100%) 0% 0% no-repeat padding-box;
}

.bg-maroon-gradient-black-reverse {
    background: #880004 linear-gradient(180deg, #00000000 0%, #00000080 100%) 0% 0% no-repeat padding-box;
}

.bg-black {
    background: black;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.bg-maroon {
    background: #880004;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}

.text-white {
    color: #fff;
}

.bold {
    font-family: 'Pragmatica Extended Bold', sans-serif;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.capital {
    text-transform: capitalize;
}

.pt-480 {
    padding-top: 480px;
}

.pt-400 {
    padding-top: 400px;
}

.pt-300 {
    padding-top: 300px;
}

.pt-250 {
    padding-top: 250px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-35 {
    padding-bottom: 35px;
}

.mb-50 {
    margin-bottom: 50px;
}

br.responsive-mb,
.responsive-mb {
    display: inline;
}

br.responsive-dt,
.responsive-dt {
    display: none;
}

/* Social Icons Navbar */
ul.social-icons-floating {
    display: flex;
    margin: 0;
    margin-right: 30px;
}

ul.social-icons-floating img {
    height: 24px;
    width: 24px;
    margin: 5px 10px;
}

.social-icons-floating li {
    text-decoration: none;
    list-style: none;
}

.social-icons-floating li a img.grow {
    transition: all 0.3s ease;
}

.social-icons-footer li a img {
    transition: all 0.3s ease;
}

.social-icons-footer li a img:hover {
    transform: scale(1.3);
}

.social-icons-footer li a.grow {
    transition: all 0.3s ease;
}

.social-icons-floating li a {
    transition: all 0.3s ease;
}

.social-icons-floating li a:hover {
    transform: scale(1.3);
}

/* Nav Bar Mobile Menu */
.desktop-menu {
    display: none;
}

/*what we do scroll limit div*/
.scroll_limit {
    height: 40px;
}

.mobile-menu {
    display: flex;
    padding: 0 30px;
    background: rgb(0, 0, 0, 0.3);
}

ul.navbar-nav {
    width: 95%;
    justify-content: space-between;
    margin-bottom: -6px;
}

a.navbar-brand {
    justify-content: flex-start;
}

.navbar {
    min-height: 65px;
    font-size: 1.2rem;
    font-family: 'Pragmatica Extended Book', sans-serif;
    letter-spacing: 0.5px;
}

.hypen {
    font-family: 'Pragmatica Bold', sans-serif;
}

.navbar-dark .navbar-brand {
    font-family: 'Pragmatica Bold', sans-serif;
}

.navbar-dark .navbar-nav .nav-link {
    color: #f2f2f2;
}

li.nav-item:last-child {
    margin-right: 0;
}

a.nav-link:last-child {
    margin-right: 0px;
}

/*Scroll Down Button*/
div#scroll-button {
    position: relative;
    width: 100%;
    height: 100%;
}

div#scroll-button::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 80%;
}

.scroll-btn-arrow a {
    position: absolute;
    z-index: 2;
    bottom: -100px;
    left: 0;
    right: 0;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font-family: 'Tenon Light', sans-serif;
    text-decoration: none;
    transition: opacity .3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 14px;
}

.scroll-btn-arrow a:hover {
    opacity: .5;
}

.btn-arrow {
    display: inline-grid;
    width: 100%;
    height: 100%;
}

.scroll-btn-arrow a img {
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

.scroll-btn-arrow.work {
    bottom: -120px;
}

/* Overlay Menu */
.overlay {
    /*-webkit-backdrop-filter: blur(8px);*/
    height: 0%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 1em #474747;
    background-color: rgba(0 0 0 / 60%);
    transition: 0.5s;
    position: fixed;
    overflow-y: scroll;
    overscroll-behavior: contain;
}

.overlay:before {
    content: "";
    margin: -35px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

.overlay-content {
    position: relative;
    top: 8%;
    width: 100%;
    text-align: right;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay .closebtn {
    position: absolute;
    top: 0;
    right: 0px;
    padding-right: 4%;
    background: transparent;
    border: 0;
}

.noscroll {
    overflow: hidden;
    height: auto;
}

[aria-hidden="true"] {
    display: none;
}

[aria-hidden="false"] {
    display: block;
}

.social-icons-nav.mob-nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin-top: 0;
}

img.closebtn-img {
    height: 30px;
    width: 30px;
}

a.nav-link {
    transition: all 0.3s ease;
}


/* Hero Banner Text */
#hero-slide-2 {
    top: 150px;
}

.hero-banner .container {
    padding-left: 0;
    padding-right: 0;
}

p.h1 {
    font-size: 2.9rem;
    color: white;
    text-align: center;
}

p.h2 {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

p.h2-light {
    font-family: 'Tenon Light', sans-serif;
    font-size: 1.8rem;
    color: white;
    text-align: center;
    line-height: 1.4em;
    padding-bottom: 35px;
}

.swwd-dt {
    padding-top: 0;
}

.h1.single-word {
    font-size: 6.873rem;
    letter-spacing: 1.2px;
    line-height: 0.6;
}

/* Work Page Content */
.h1.single-word .bold {
    font-family: 'Pragmatica Extended Bold', sans-serif;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

/* Work Page Content */
#work {
    padding-left: 0;
    padding-right: 0;
}

.col-lg-4.col-sm-12.works-img {
    padding-right: 0;
    padding-left: 0;
}

.row.no-gutter {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

video.work-video {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    object-fit: cover;
}

section.work-section {
    position: relative;
    z-index: 10;
    height: 100%;
}

p.h3.bold.text-align-left-dt {
    font-size: 2rem;
    margin-bottom: 50px;
}

div.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    /*height: calc(100vh + 65px);*/
    width: 100vw;
    background: rgb(0, 0, 0, 0.0);
    z-index: 1;
}

.desktop-object {
    display: none;
}

.mobile-object {
    display: block;
}

img {
    width: auto;
}

.gallery {
    background-color: black;
    padding: 80px 0;
}

#gallery-modal .modal-img {
    width: 100%;
}

.img__wrap {
    position: relative;
    overflow: hidden;
}

.img__description_layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    transition: opacity .4s, visibility .4s ease-in-out;
}

.img_txts_cont {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
}

.img__wrap:hover .img__description_layer {
    visibility: visible;
    opacity: 1;
    background: #000000B3 0% 0% no-repeat padding-box;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: mymove .4s;
}

.img__wrap:hover .img_txts_cont {
    visibility: visible;
    opacity: 1;
    animation: moveup .4s;
}

@keyframes mymove {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes moveup {

    from {
        top: 200px;
    }

    to {
        top: 0px;
    }

}

.img__texts {
    padding: 2% 5%;
    color: white;
    transition: .2s;
    padding-left: 8%;
    /*height: 100%;*/
}

.img__title {
    font-size: 1rem;
    font-family: 'Tenon Medium';
}

.img__description {
    font-size: 1rem;
    font-family: 'Pragmatica Extended Bold';
    width: 80%;
    line-height: 1.2;
}

/*work overlay cta*/
.work__hover-cta {
    color: white;
    border-radius: 35px;
    background-color: #AF1F23;
    text-decoration: none;
    vertical-align: middle;
    padding: 5px 20px 8px 20px;
    font-size: .8rem;
    font-family: 'Tenon Medium', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
}

.work__hover-cta:hover {
    color: white;
    cursor: pointer;
}

/*services images style*/
.service-image-bg {
    background: #333333 no-repeat;
    background-size: cover;
    background-position: center center;
}

.service-image-ratio,
.work-grid-image-ratio,
.mobile-service-image-ratio {
    display: block;
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.svc-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.work-grid-image-bg {
    background: #333333 no-repeat;
    background-size: cover;
    background-position: center center;
}

/*work grid overlay */
body.work-grid-overlay {
    overflow: hidden;
}

.overlay-container {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 1001;
    display: none;
}

.overlay-container .overlay-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.9;
    background: #000;
}

.overlay-container .overlay-content-work-grid-modal {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-container .overlay-content-work-grid-modal .overlay-asset {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: auto;
}

#overlays {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: auto;
    /* backdrop-filter: blur(6px); */
}

.overlay-container .overlay-content-work-grid-modal .overlay-close {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    z-index: 10;
}

.overlay-container .overlay-content-work-grid-modal .overlay-close img {
    width: 100%;
}

.overlay-container .overlay-gallery {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    height: 100%;
    max-width: 874px;
    max-height: 874px;
}

.overlay-container .overlay-gallery .overlay-item {
    width: auto;
    margin: 20px 0px;
    display: none;
    text-align: center;
}

.overlay-container .overlay-gallery .overlay-item.active {
    display: block;
}

.overlay-container .overlay-gallery .overlay-item img,
.overlay-container .overlay-gallery .overlay-item video {
    width: 100%;
    transition: opacity 0.5s;
}

.overlay-container .overlay-gallery.active {
    display: flex;
}

.overlay-container .arrow-right {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    /* right: 40px; */
    right: 20%;
    cursor: pointer;
}

.overlay-container .arrow-left {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    /* left: 40px; */
    left: 20%;
    cursor: pointer;
}

@media only screen and (max-width: 1440px) {
    .overlay-container .arrow-left {

        left: 10%;
    }

    .overlay-container .arrow-right {
        right: 10%;
    }
}

@media only screen and (max-width: 1024px) {
    .overlay-container .arrow-left {

        left: 1%;
    }

    .overlay-container .arrow-right {
        right: 1%;
    }
}

.overlay-container .arrow-right img {
    width: 100%;
    background: #AF1F23;
    border-radius: 50%;
}

.overlay-container .arrow-left img {
    width: 100%;
    background: #AF1F23;
    border-radius: 50%;
}

/*end of work grid overlay */

.ampersand.bold {
    font-family: 'Pragmatica Extended Bold';
}

.img__wrap:hover .img__description {
    transform: translateY(0);
}

/*Careers Page Content*/
button.accordion-button.collapsed {
    padding-left: 0;
}

button.accordion-button {
    padding-left: 0 !important;
}

.accordion-body {
    padding-left: 0;
}

.career-details {
    font-family: 'Tenon Medium', sans-serif;
}

.at {
    font-family: 'Pragmatica', sans-serif;
}

.accordion-item {
    background: black;
    border: none;
}

hr.careers-hr-accordion {
    color: white;
    height: 1px;
    opacity: 1;
    margin: 0;
}

hr.careers-hr.mt-35 {
    margin-top: 15px;
}

hr.careers-hr {
    width: 95%;
    margin: 0 auto;
}

div#accordionFlushExample {
    margin: 0 auto;
}

h1.careers-label {
    font-size: 2.8rem;
    text-align: center;
    color: white;
    font-family: 'Pragmatica Extended Book', sans-serif;
}

.careers-text {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0 auto;
    color: white;
    font-family: 'Tenon Medium', sans-serif;
    margin-bottom: 2rem;
}

hr.careers-hr.mt-35 {
    color: white;
    height: 3px;
    opacity: 1;
    margin-bottom: 8px;
}

button.accordion-button.collapsed {
    background: black;
    color: white;
    font-size: 1.3rem;
    font-family: 'Pragmatica Extended Book', sans-serif;
}

span.career-bullet {
    color: #AD272C;
    font-size: 1.5rem;
    padding-right: 10px;
}

.accordion-button:not(.collapsed) {
    background: black;
    color: white;
    font-size: 1.3rem;
    font-family: 'Pragmatica Extended Book', sans-serif;
}

.accordion-body {
    background: black;
    color: white;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

a.careers-email {
    color: #AD272C;
}

/* Client Page Content */
.clients-label {
    font-size: 2.8rem;
    text-align: center;
    color: white;
    font-family: 'Pragmatica Extended Book', sans-serif;
}

.clients-wrapper {
    margin-top: 80px;
    overflow-y: hidden;
}

.clients-wrapper img {
    max-width: 150px;
    margin: 0 !important;
    object-fit: contain;
}

.ticker-item {
    width: 200px !important;
    margin: 0px 30px 0px 30px !important;
}

.clients-wrapper .container {
    overflow-x: scroll;
    white-space: nowrap;
    width: 200px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.slide {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    z-index: 0;
}

.slide .animatable {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;

}

.slide.slide-left .animatable {
    opacity: 0;
    -webkit-transform: translate(-30px, 0);
    transform: translate(-30px, 0);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;

}

.slide.slide-show .animatable {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0px, 0);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active.remove .animatable {
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
}

.slide.active .animatable {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);

}

.slide.active {
    z-index: 10;
}


/** Mobile Services **/
.mb-services .svc-details {
    color: white;
    padding: 20px 30px;
    font-size: 1.25rem;
    line-height: 1.27rem;
    font-family: 'Tenon Medium', sans-serif;
    border-bottom: 1px solid white;
}

.mb-services .accordion-item,
.mb-services .accordion-button {
    background-color: black;
    border: 0;
    padding: 0 10px;
}

.mb-services .accordion-button,
.mb-services .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: black;
    font-family: 'Pragmatica Extended Book', sans-serif;
    font-size: 20px;
    padding: 30px 15px;
}

.mb-services .accordion-button.collapsed {
    border-bottom: 1px solid white;
}

.mb-services .accordion-collapse {
    margin-left: -10px;
    margin-right: -10px;
}

.svc-mb-num {
    color: #FF0000;
    border: 1px solid red;
    border-radius: 50%;
    padding: 5px 8px;
    margin-right: 20px;
    font-size: 12px;
    font-family: 'Pragmatica Extended Bold', sans-serif;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
    background-image: url('../assets/chevron-msm.svg')
}

.accordion-button:focus {
    box-shadow: none;
    border-color: none;
}

.svc-mb-img img {
    padding: 0 -10px;
}

/* Back to Top Button */
.col-lg-12.col-sm-12.text-white {
    position: relative;
}

a#bttop-btn {
    position: absolute;
    right: 90px;
    bottom: 25px;
    color: white;
    text-decoration: none;
    letter-spacing: 1.3px;
    opacity: 1;
    font-family: 'Tenon Medium', sans-serif;
    font-size: 18px;
}

#bttop-btn span {
    color: #D6D6D6;
    opacity: 1;
    margin-left: 10px;
    font-family: 'Tenon Medium', sans-serif;
}

/* Footer Content */
a#email {
    color: white;
    font-size: 1.3rem;
    font-family: 'Pragmatica Light';
}

.email-with-icon img {
    margin-bottom: 4px;
    width: 30px;
    height: 30px;
}

.social-icons-footer {
    max-width: 300px;
    margin: auto;
}

.social-icons-footer ul {
    display: flex;
    padding: 20px;
    justify-content: space-evenly;
    margin-top: 15px;
    list-style: none;
}

.social-icons-footer img {
    width: 30px;
    height: 30px;
}

.social-icons-nav ul {
    display: flex;
    padding: 20px;
    justify-content: space-evenly;
    margin-top: 15px;
    list-style: none;
}

.social-icons-nav img {
    width: 30px;
    height: 30px;
}

p.h4-footer {
    font-family: 'Pragmatica Extended Bold', sans-serif;
    font-size: 1.8rem;
}

p.h5-footer {
    font-family: 'Tenon Light', sans-serif;
    font-size: 1.3rem;
}

.footer-button {
    background-color: transparent;
    margin: 0;
    border: 2px solid #FFFFFF;
    border-radius: 35px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    color: white;
    font-family: 'Tenon Medium', sans-serif;
}

a.careers-btn {
    text-decoration: none;
    color: white;
    font-family: 'Tenon Medium', sans-serif;
}

p.h6-footer {
    margin-top: 0;
    color: #D6D6D6;
    font-family: 'Tenon Light', sans-serif;
}

.footer-content-text {
    margin-bottom: 30px;
}

/*canvas.moving-bg {*/
/*    z-index: 10;*/
/*}*/
section.hero-banner.d-flex.align-items-center {
    position: relative;
    z-index: 10;
}

#animation_container {
    width: 100% !important;
    overflow: hidden;
}

.fixed-section {
    top: 0;
    /*pointer-events: none;*/
}

.pointer-event-none {
    pointer-events: none;
}

.pointer-event-auto {
    pointer-events: auto;
}

.opacity {
    opacity: .5;
}

span.slayd {
    display: inline-block;
    padding-right: 15px;
}

span.stay.dblock {
    display: block;
}

.slaydOut {
    animation-name: slaydOut;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    /* animation-delay: 0.5s; */
}

.slayd.reverse {
    animation-name: slaydOutRev;
    animation-duration: 0.5s;
    animation-fill-mode: backwards;
}


.slaydOut.slaydOutPassion.stay {
    animation-name: slaydOutPassion;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.slaydOutPassion.stay.reverse {
    animation-name: slaydOutPassionRev;
    animation-duration: 1s;
    animation-fill-mode: backwards;
}

.reverse.slaydOutCreative.stay {
    animation-name: slaydOutCreativeRev;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.reverse.slaydOutInnovation.stay {
    animation-name: slaydOutInnovationRev;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.slaydOut.slaydOutCreative.stay {
    animation-name: slaydOutCreative;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.slaydOut.slaydOutInnovation.stay {
    animation-name: slaydOutInnovation;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.slaydUp {
    visibility: hidden;
}

.slaydUpVis {
    visibility: visible;
}

section.full-view-banner.pt-150.text-center.pb-3 {
    padding-top: 40px;
}

div#our-services {
    max-height: 100vh;
    overflow-y: scroll;
}

a#email {
    font-size: 1.1rem;
}

.social-icons-footer ul {
    margin: 0;
}

.social-icons-nav ul {
    margin: 0;
}

p.h4-footer {
    font-size: 1.4rem;
}

p.h5-footer {
    font-size: 1.1rem;
}

.footer-button {
    padding: 10px 20px;
}

section.full-view-banner.pt-150.text-center.pb-3 {
    padding-top: 80px;
}

div#careers {
    height: 100%;
    display: block;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    padding-top: 150px;
    padding-bottom: 150px;
    max-width: 1080px;
}

div#clients {
    /*height: 100vh;*/
    display: flex;
    align-items: center;
}

.ampersand {
    font-family: 'Pragmatica Extended Book';
}

/*Mobile logo css*/
.header-logo {
    width: 200px;
}

.nav-bar-mob {
    background: url('../assets/header_gradient.webp') no-repeat center center;
    background-size: cover;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.ticker-container {
    pointer-events: none;
}

/*mobile services media rules end*/

/*MOBILE MEDIA RULES*/
.hero-text {
    font-size: 2.5rem;
    text-shadow: 0px 3px 36px #0000004d;
    padding-bottom: 0px;
    line-height: 45px;
}

.text-holder {
    width: 327px;
    text-align: left !important;
    font-family: 'Pragmatica Extended Bold', sans-serif;
    font-size: 3rem;
    top: 60%;
    /*    transform: translateY(-50%);*/
    margin: 0;
    /*    position: absolute;*/
    position: relative;
    /*    padding-left: 2rem;*/
    line-height: 1;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta,
.hero-cta:hover {
    color: white;
    margin: 0;
    border: 2px solid #FFFFFF;
    border-radius: 35px;
    font-size: 1.4rem;
    text-align: center;
    padding: 12px 20px 14px 20px;
    display: inline-block;
    line-height: .8;
    text-decoration: none;
    vertical-align: middle;
    transition-delay: 0.1s;
}

.hero-cta {
    /*display: none;*/
}

.hero-cta-mobile,
.hero-cta-mobile:hover {
    color: white;
    margin: 0;
    border: 2px solid #FFFFFF;
    border-radius: 35px;
    font-size: 1.2rem;
    text-align: center;
    padding: 12px 20px 14px 20px;
    display: inline-block;
    line-height: .8;
    text-decoration: none;
    vertical-align: middle;
    transition-delay: 0.1s;
}

.scroll-container-value-props-texts {
    padding-top: 5vh;
    width: 327px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    /*    padding-left: 2rem;*/
}

.main-text-headline,
.headline {
    text-align: center !important;
    font-size: 4.5rem;
    -webkit-text-stroke: 1px white;
    color: transparent;
    margin: 0 auto;
}

.main-text-headline {
    line-height: 1;
}

.main-text {
    font-size: 1.75rem;
    line-height: 1.3;
    text-align: center !important;
    font-family: 'Tenon Medium', sans-serif;
}

.what-we-do-headline {
    text-align: center !important;
    font-size: 3rem;
    -webkit-text-stroke: 1px white;
    color: transparent;
}

.what-we-do-container {
    position: relative;
    pointer-events: none;
}

/* NEW CSS V3 */
html,
body,
main,
.scroll-scenes-wrapper,
.scroll-section {
    width: 100vw;
    height: 100%;
    max-width: 100vw;
}

body {
    margin: 0;
}

.object-fit {
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.full-screen {
    display: block;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

canvas {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100vw;
    height: 60vh;
    z-index: -00001;
    transform: translateY(-37px);
    object-fit: cover;
}

h1 {
    text-align: center;
}

.hero {
    background-color: #000000;
    transform: translate3d(0px, 0px, 0px) !important;
}

.panel2 {
    background-color: #ffffff;
}

div#about {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-text {
    position: fixed;
    text-align: left;
    color: #ffffff;
}

.hero-cta:hover {
    color: #000000;
    background-color: white;
}

.hero-cta-mobile:hover {
    color: #000000;
    background-color: white;
}

.footer-button:hover,
a.careers-btn:hover {
    background-color: #ffffff;
    color: #AF1F23;
}

.contact_us_footer,
.contact_us_footer:focus,
.contact_us_footer:active {
    text-decoration: none;
    color: inherit;
}

.main-text {
    text-align: left !important;
    font-family: 'Tenon Medium', sans-serif;
    padding-top: 30vh;
    padding-bottom: 30vh;
}

.main-panel2-text {
    position: absolute;
    text-align: center;
}

.text1,
.text2,
.text3 {
    color: #ffffff;
    text-shadow: 0px 3px 36px #0000004d;
}

#navbar.scrolled {
    background: url('../assets/header_gradient.webp') no-repeat center center;
    background-size: cover;
}

#progress-container {
    width: 100%;
    background-color: transparent;
    height: 2px;
    display: block;
    position: absolute;
    bottom: 0px;
}

.progress-bar {
    background-color: white;
    width: 0%;
    display: block;
    height: inherit;
}

/*arrow animations*/
.arrow {
    width: 0;
    height: 40px;
    border: 1px solid #ffffff;
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    top: 20px;
    display: block;
    animation: scroll 1.5s infinite;
    -webkit-animation: scroll 1.5s infinite;
}

.arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -5px;
    width: 1px;
    height: 10px;
    border-top: 10px solid #ffffff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

@keyframes scroll {
    0% {
        height: 40px;
    }

    30% {
        height: 70px;
    }

    60% {
        height: 40px;
    }
}

@-webkit-keyframes scroll {
    0% {
        height: 40px;
    }

    30% {
        height: 70px;
    }

    60% {
        height: 40px;
    }
}

/*mobile services swiper css*/
#tablet_services {
    display: none;
}

.swiper-holder {
    width: 100vw;
    height: 100%;
    display: block;
}

.swiper {
    width: 100vw;
    height: auto;
    background-color: #000000;
    top: 5%
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    background-color: #000000;
}

/*mobile services media rules*/
.slide-img-container {
    /*height: 30vh;*/
    background: #333 no-repeat;
    background-size: cover;
    background-position: center center;
}

img.slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.slide-content {
    text-align: left;
    padding: 30px;
    height: auto;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #ffffff;
    opacity: 1;
    border: solid 2px #ffffff;
}

.swiper-pagination-bullet-active {
    color: #ffffff;
    background: #ffffff;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 5%;
}

.slide-number {
    font-size: 20px;
    color: #ad272c;
    font-family: 'pragmatica extended bold', sans-serif;
}

.slide-title {
    font-size: 35px;
    color: #ffffff;
    line-height: 35px;
    font-family: 'pragmatica extended bold', sans-serif;
}

.slide-details {
    font-size: 1.25rem;
    color: #ffffff;
    font-family: tenon medium, sans-serif;
}

.navbar-brand-footer a {
    margin: 0;
    cursor: pointer;
}

.navbar-brand-footer img {
    padding-bottom: 12px;
    height: 29px;
    width: 215px;
}

.hero-lockup {
    height: 100%;
    width: 100%;
    text-align: center;
}

.hero-overlay {
    position: fixed;
    pointer-events: none;
    top: 0 !important;
}

.scroll-container-value-props {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.value-props-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.value-props-picture img,
.value-props-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sticky-value-props {
    height: 100vh;
    position: fixed;
    opacity: 0;
    top: 0;
    width: 100%;
}

.scroll-container {
    background-color: #000000;
}

.hero-home {
    position: relative;
}

.works-img-child img {
    width: 100%;
}

.scroll-container-hero {
    position: relative;
    height: 100vh;
}

.sticky-hero {
    height: 100vh;
    position: sticky;
    top: 0px;
}

.hero-intro-copy {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-lockup {
    height: 100%;
    width: 100%;
    top: 0;
    text-align: center;
}

.hero-lockup,
.hero-lockup-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.career-headline {
    padding-bottom: 1rem;
}

/*services nav link*/
.services-mob {
    display: block !important;
}

.services-tab-des {
    display: none !important;
}

.registered-icon {
    font-size: 10px;
    vertical-align: 8px;
    line-height: 1rem;
}

.what-we-do-container {
    padding-bottom: 50px;
}

/*force word grid column to 100% width before tablet*/
.row-cols-sm-2>* {
    width: 100% !important;
}

/*end of force word grid column to 100% width before tablet*/
/* MEDIA QUERIES */

@media (max-width: 320px) {
    .text-holder {
        padding-left: 1rem;
        line-height: 1;
        padding-top: 3rem;
    }

    .hero-text {
        font-size: 1.6rem;
        text-shadow: 0px 3px 36px #0000004d;
        padding-bottom: 0px;
        line-height: 40px;
    }

    .hero-cta {
        padding: 10px 20px 10px 20px;
        font-size: 0.9rem;
    }

    .mobile-menu {
        padding-left: 1rem;
    }

    .what-we-do-headline {
        font-size: 2.5rem;
    }

    .what-we-do-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-number {
        font-size: 0.938rem;
    }

    .slide-title {
        font-size: 1.563rem;
        line-height: 1.563rem;
    }

    .slide-details {
        font-size: 1rem;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 3%;
    }

    .h1.single-word {
        font-size: 5rem;
    }

    .career-headline h1 {
        font-size: 3rem;
    }

    .scroll-btn-arrow a {
        bottom: -17px;
    }

    .work-section {
        padding-bottom: 30px;
    }
}

@media (min-width: 360px) and (max-width: 375px) {
    .swiper-pagination {
        padding-bottom: 15px;
    }

    .slide-content {
        padding: 15px;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 1%;
    }

    .scroll-btn-arrow a {
        bottom: -44px;
    }

    .clients-wrapper {
        margin-top: 150px;
    }
}

/*For hero scroll and video background scroll*/
@media (min-width: 601px) {
    .main-text {
        padding-top: 20vh;
        padding-bottom: 50vh;
    }

    .scroll-container-value-props-texts {
        padding-top: 22vh;
    }

    .what-we-do-container {
        padding-bottom: 50px;
    }
}

/* END For hero scroll and video background scroll*/

@media (min-width: 720px) and (max-width: 1200px) {
    .hero-text {
        font-size: 3.3rem;
        line-height: 1;
        padding-bottom: 10px;
    }
}

/* TABLET SCREEN */
@media (min-width: 720px) and (max-width: 992px) {

    /*services nav link*/
    .row-cols-sm-2>* {
        width: 50% !important;
    }

    .registered-icon {
        font-size: 10px;
        vertical-align: 10px;
        line-height: 1rem;
    }

    .services-mob {
        display: none !important;
    }

    .services-tab-des {
        display: block !important;
    }

    .svc-number {
        font-size: 1.5rem;
        color: #AD272C;
        font-family: 'Pragmatica Extended Bold', sans-serif;
    }

    .svc-title {
        font-size: 2rem;
        font-weight: 700;
        line-height: 2rem;
        font-family: 'Pragmatica Extended Bold', sans-serif;
        text-align: left;
    }

    .svc-details {
        font-size: 1.5rem;
        line-height: 1.7rem;
        font-family: 'Tenon Medium', sans-serif;
        margin-top: 1.2rem;
    }

    .svc-wrapper {
        padding: 50px 2%;
    }

    .img__description {
        font-size: 1.3rem;
    }

    .img__title {
        margin-bottom: 5px;
    }

    .work__hover-cta {
        font-size: 1rem;
    }
}


/*new version for mobile*/
.hero-text-mobile {
    font-size: 1.6rem;
    text-shadow: 0px 3px 36px #0000004d;
    padding-bottom: 10px;
    line-height: 30px;
}

.hero-text {
    display: none;
}

@media (min-width: 720px) {
    canvas {
        height: 100vh;
        top: 0px;
        transform: translate(0px);
    }

    .text-holder {
        top: 50%;
        transform: translateY(-50%);
        text-align: left !important;
        width: auto;
    }

    .hero-text {
        display: block;
    }

    .hero-text-mobile {
        display: none;
    }

    .scroll-container-value-props-texts {
        width: 280px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    .main-text {
        text-align: left !important;
    }
}

/*end of new version for mobile*/


@media (min-width: 720px) and (max-width: 989px) {
    .text-holder {
        padding-left: 4rem;
    }

    .row-cols-1>* {
        width: 50% !important;
    }

    .row-cols-sm-2>* {
        width: 50% !important;
    }

    /*services nav link*/
    .services-mob {
        display: none !important;
    }

    .services-tab-des {
        display: block !important;
    }

    .swiper-holder {
        display: none;
    }

    .hero-cta-mobile {
        display: none;
    }

    .scroll-container-value-props-texts {
        width: 560px;
    }

    .main-text {
        font-size: 2.5rem;
        width: 560px;
    }

    .what-we-do-headline,
    .work-text-headline,
    .headline {
        font-size: 6rem;
    }

    .career-header h1 {
        padding-bottom: 30px;
    }

    div#careers {
        width: 90%;
        padding: 0;
        padding: 200px 0;
    }

    .career-details,
    .careers-text {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    .career-header {
        margin: 0 auto;
    }

    .col-footer {
        width: 100% !important;
    }

    .social-icons-footer {
        width: 35%;
        /*display: contents;*/
        max-width: 300px;
        margin: auto;
    }

    .social-icons-nav {
        width: 35%;
        display: contents;
    }

    .show-on-tablet {
        display: block !important;
    }

    .hero-cta {
        display: inline-block;
    }

    /* Services Content */
    .svc-container {
        display: flex;
    }

    .svc-wrapper {
        padding: 50px 2%;
    }

    .svc-label {
        font-size: 2rem;
        font-family: 'Tenon Medium', sans-serif;
        margin-bottom: 60px;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .main-text-headline,
    .headline {
        font-size: 8rem;
    }

    .desktop-services-section {
        padding-top: 63px;
        margin-top: 63px;
    }
}

@media (min-width: 720px) and (max-width: 800px) {
    .svc-wrapper {
        padding: 20px 2%;
    }
}

/*Desktop*/
@media (min-width: 990px) {
    .text-holder {
        padding-left: 4rem;
    }

    .desktop-services-section {
        padding-top: 63px;
        margin-top: 63px;
    }

    .col-lg-6 {
        width: 50%;
    }

    /*services nav link*/
    .services-mob {
        display: none !important;
    }

    .services-tab-des {
        display: block !important;
    }

    /* Services Content */
    .svc-label {
        font-size: 2rem;
        font-family: 'Tenon Medium', sans-serif;
        margin-bottom: 60px;
    }

    .svc-number {
        font-size: 1.875rem;
        color: #AD272C;
        font-family: 'Pragmatica Extended Bold', sans-serif;
    }

    .svc-title {
        font-size: 4.8rem;
        font-weight: 700;
        line-height: 4.8rem;
        font-family: 'Pragmatica Extended Bold', sans-serif;
        text-align: left;
    }

    .svc-details {
        font-size: 2rem;
        line-height: 2.2rem;
        font-family: 'Tenon Medium', sans-serif;
        margin-top: 1.8rem;
    }

    .hero-cta {
        display: inline-block;
    }

    .main-text-headline,
    .headline {
        font-size: 11.875rem;
    }

    .clients-wrapper h1 {
        padding-left: 56px;
        padding-right: 55.5px;
    }

    .what-we-do-headline {
        font-size: 10.5rem;
    }

    .main-text {
        font-size: 3rem;
        line-height: 1.3;
        width: 880px;
    }

    .scroll-container-value-props-texts {
        z-index: 3;
        width: 880px;
    }

    .swiper-holder,
    .hero-cta-mobile {
        display: none;
    }

    /* Style the navbar */
    .header-logo {
        width: 200px;
    }

    a.navbar-brand {
        padding: 0;
        margin: 0;
    }

    #navbar {
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
    }

    #navbar a {
        float: left;
        display: block;
        color: #f2f2f2;
        /*text-align: center;*/
        text-decoration: none;
    }

    .content {
        padding: 16px;
    }

    .sticky {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .sticky+.content {
        padding-top: 100px;
    }

    p.h1 {
        font-size: 4rem;
        text-align: left;
    }

    p.h2 {
        font-size: 2.1rem;
    }

    p.h2-light {
        font-size: 1.8rem;
        text-align: left;
    }

    nav.social-icons-floating {
        right: 20px;
    }

    #hero-slide-2 {
        top: 0px;
    }

    .d-lg-block {
        display: block !important;
    }

    .svc-label {
        font-size: 1.375rem;
    }

    .svc-number {
        font-size: 1.875rem;
    }

    .nav-item {
        padding: 1px 0;
        white-space: normal;
    }

    .navbar-expand-lg .navbar-nav {
        padding-left: 0;
        padding-right: 0;
    }

    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover {
        color: #f2f2f2;
        text-decoration: none;
    }

    .slide {
        top: 0;
    }

    .pt-400 {
        padding-top: 150px;
    }

    .pt-480 {
        padding-top: 230px;
    }

    .desktop-object {
        display: block;
    }

    .mobile-object {
        display: none;
    }

    a.nav-link:after {
        display: block;
        content: '';
        border-bottom: solid 2px white;
        transform: scaleX(0);
        transition: transform 150ms ease-out;
    }

    /* Social Icons Menu */
    nav.social-icons-floating {
        display: flex;
    }

    nav.social-icons-floating {
        position: fixed;
        width: 60px;
        right: 0px;
        top: 35%;
        transition: all 0.1s linear;
        z-index: 500;
    }

    nav.social-icons-floating ul {
        margin-top: 0;
        margin-bottom: 0rem;
        list-style: none;
        padding: 0;
    }

    nav.social-icons-floating li a img {
        position: absolute;
        top: 10%;
        left: 24px;
        width: 48px;
        height: 48px;
    }

    nav.social-icons-floating li a.grow {
        transition: all 0.3s ease;
    }

    nav.social-icons-floating li a {
        transition: all 0.3s ease;
    }

    .vertical.flip {
        transform-origin: 0 0;
        transform: rotate(-90deg);
        width: 200px;
        letter-spacing: 4px;
        font-size: 12px;
    }

    /* Home and About Content */
    .pt-400 {
        padding-top: 150px;
    }

    .pt-480 {
        padding-top: 230px;
    }

    .hero-banner .container {
        max-width: 100%;
    }

    section.hero-banner {
        height: 100vh;
        display: flex;
    }

    br.responsive-mb,
    .responsive-mb {
        display: none;
    }

    br.responsive-dt,
    .responsive-dt {
        display: inline;
    }

    .swwd-dt {
        padding-top: 5%;
    }

    span.registered-icon {
        font-size: 10px;
        vertical-align: 16px;
        line-height: 1rem;
    }

    .nobr {
        white-space: nowrap;
    }

    /* Work Page Content */
    p.h3 {
        font-size: 1.55rem;
        margin-bottom: 50px;
    }

    p.h1.single-word {
        font-size: 18rem;
    }

    .work-video {
        position: absolute;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .works-img-parent {
        height: 363px;
    }

    section.work-section {
        position: relative;
        z-index: 10;
        top: 0;
    }

    /** Clients **/
    .clients-wrapper {
        margin-top: 100px;
    }

    .clients-wrapper .container {
        text-align: center;
        margin-bottom: 50px;
    }

    .clients-wrapper img {
        max-width: 200px;
    }

    .clients-wrapper img:last-child {
        margin-right: 0;
    }

    .clients-wrapper .container {
        width: unset;
    }

    /*Careers Page Content*/
    .careers-wrapper.pt-150.align-items-center {
        padding-top: 100px;
    }

    .career-header {
        width: 60%;
        display: block;
        margin: 0 auto;
    }

    .careers-label {
        font-size: 4.5rem;
        text-align: center;
        color: white;
        font-family: 'Pragmatica Extended Book', sans-serif;
    }

    .careers-wrapper .container {
        overflow-x: scroll;
        white-space: nowrap;
        width: 300px;
    }

    div#accordionFlushExample {
        width: 60%;
    }

    button.accordion-button {
        font-size: 2.125rem;
        font-family: 'Pragmatica Extended Book', sans-serif;
    }

    .accordion-button:not(.collapsed),
    button.accordion-button.collapsed {
        font-size: 2.125rem;
    }

    .careers-text {
        color: white;
        font-family: 'Tenon Medium', sans-serif;
    }

    .careers-text,
    .career-details {
        font-size: 2rem;
        line-height: 2rem;
    }

    .careers-hr {
        opacity: 1;
        width: 60%;
        margin: 0 auto;
    }

    hr.careers-hr.mt-35 {
        margin-top: 35px;
    }

    /* Footer Content */
    p.h6-footer {
        margin-top: 50px;
    }

    .brand-socials {
        text-align: left;
        padding-left: 55px;
    }

    .social-icons-footer {
        max-width: none;
    }

    .social-icons-footer ul {
        justify-content: flex-start;
        padding-left: 0;
    }

    .social-icons-nav ul {
        justify-content: flex-start;
        padding-left: 0;
    }

    .social-icons-footer img {
        margin-right: 20px;
    }

    .navbar-brand-footer a {
        font-size: 1.8rem;
        margin-left: 0;
    }

    .email-with-icon {
        padding-top: 15px;
    }

    a#email {
        font-size: 1.2rem;
    }

    .footer-content-text {
        text-align: left;
    }

    p.h6-footer {
        text-align: left;
        padding-left: 55px;
    }

    p.h4-footer {
        margin-bottom: 0;
    }

    p.h5-footer {
        margin-top: 30px;
    }

    .navbar-brand-footer {
        font-size: 1.4rem;
    }

    p.h4-footer {
        font-size: 1.3rem;
    }

    a#email {
        font-size: 1.1rem;
    }

    p.h5-footer {
        font-size: 1.1rem;
    }

    .careers-text {
        font-size: 2.25rem;
        width: 100%;
        padding: 0;
        line-height: 2.25rem;
    }

    .what-we-do-headline {
        font-size: 8rem;
    }

    a.nav-link:hover:after {
        transform: scaleX(0);
    }

    .ticker-item {
        margin: 0px 100px 0px 100px !important;
        width: 200px !important;
    }

    .main-text-headline,
    .headline {
        font-size: 8rem;
    }

    div#accordionFlushExample {
        width: 90%;
    }

    .career-header {
        width: 90%;
    }

    .svc-title {
        font-size: 4rem;
        width: 90%;
    }

    .overlay-container .overlay-gallery {
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        height: 100%;
        max-width: 874px;
        max-height: 874px;
    }

    .overlay-container .overlay-gallery .overlay-item img {
        width: 75%;
        transition: opacity 0.5s;
    }

    .img__description {
        font-size: 1.5rem;
    }

    .work__hover-cta {
        padding: 7px 22px 10px 22px;
        font-size: 1.1rem;
    }

    .career-details,
    .careers-text {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    .svc-container {
        display: flex;
    }

    .svc-wrapper {
        padding: 50px 2%;
        max-width: 720px;
    }
}

/* End of 990 */

/*for services contentwork grid overlay content*/
@media (min-width: 991px) and (max-width: 1200px) {
    .img__description {
        font-size: 1.2rem;
    }

    .work__hover-cta {
        padding: 4px 17px 7px 17px;
        font-size: .8rem;
    }

    /* Services Content */
    .svc-title {
        font-size: 2.5rem;
        line-height: 2.75rem;
    }
}

/* @media screen and (max-height: 1080px) {
    
    .overlay-container .overlay-gallery {
        
        max-width: 600px;
        max-height: 600px;
    }
}

@media screen and (max-height: 900px) {
    
    .overlay-container .overlay-gallery {
        
        max-width: 500px;
        max-height: 500px;
    }
}

@media screen and (max-height: 768px) {
    
    .overlay-container .overlay-gallery {
        
        max-width: 300px;
        max-height: 300px;
    }
}

@media screen and (max-height: 600px) {
    
    .overlay-container .overlay-gallery {
        
        max-width: 200px;
        max-height: 200px;
    }
} */


/* MAIN NAV RESPONSIVENESS */
@media (min-width: 1201px) {
    .hero-text {
        font-size: 4.3rem !important;
        line-height: 1;
        padding-bottom: 20px;
    }

    .hero-cta,
    .hero-cta:hover {
        font-size: 2rem;
        padding: 8px 20px 13px 20px;
        line-height: .8;
    }

    .mobile-menu {
        display: none;
    }

    .desktop-menu {
        display: flex;
    }

    a.logo-nav {
        margin-left: 30px;
    }

    a.nav-link:hover {
        transform: translateZ(0)scale(1.1);
    }

    .nav-link {
        padding: 19px 5px !important;
    }

}

@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    
}

/* END of MAIN NAV RESPONSIVENESS */

/* Landscaped Media Queries */
/*@media (not: pointer) and (orientation: landscape) { ... }*/
@media only screen and (min-device-width: 480px) and (max-device-height: 450px) and (orientation: landscape) {
    .overlay a {
        font-size: 16px;
    }

    img.closebtn-img {
        height: 15px;
        width: 15px;
    }

    .overlay-content {
        top: 12%;
    }

    .text-holder {
        padding-left: 2rem;
    }

    .scroll-container-value-props-texts {
        width: 500px;
    }

    .main-text {
        font-size: 1.7rem;
    }

    canvas {
        height: 100vh;
        top: 0px;
        transform: translate(0px);
    }

    .hero-text-mobile {
        display: none;
    }

    .hero-text {
        display: block;
    }

    .text-holder {
        transform: translateY(-50%);
        text-align: left !important;
        width: auto;
    }

    /*    .mobile-object{
        display: none;
    }
    .desktop-object{
        display: block;
    }*/
}

.nav-link:hover {
    color: #f2f2f2 !important;
}

/*Mobile landscaped*/
@media only screen and (max-device-width: 1023px) and (max-device-height: 500px) and (orientation: landscape) {
    .hero-text {
        font-size: 1.5rem;
        line-height: 2rem;
        padding-bottom: 0px;
    }

    .text-holder {
        padding-left: 2rem;
    }

    .hero-cta,
    .hero-cta:hover {
        font-size: .9rem;
        padding: 12px 20px 14px;
    }

    .text-holder {
        top: 58%;
    }

    .swiper-holder,
    .hero-cta-mobile {
        display: none;
    }

    .show-on-tablet {
        display: block !important;
    }

    .svc-number {
        font-size: 1rem;
        color: #AD272C;
        font-family: 'Pragmatica Extended Bold', sans-serif;
        padding-top: 10px;
    }

    .svc-title {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 2rem;
        font-family: 'Pragmatica Extended Bold', sans-serif;
        text-align: left;
    }

    .svc-details,
    p.svc-details {
        font-size: 1.75rem;
        line-height: 2.25rem;
        font-family: 'Tenon Medium', sans-serif;
        margin-top: 1rem;
    }

    .svc-wrapper {
        padding: 50px 1%;
    }

    .col-lg-4 {
        width: 50%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .what-we-do-container {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .scroll-btn-arrow.work {
        bottom: -55px;
    }

    #work {
        padding-bottom: 30vh;
    }

    div#careers {
        padding: 150px 70px 150px 70px;
    }

    div#accordionFlushExample {
        width: 100%;
    }

    .col-footer {
        width: 100%;
    }

    .social-icons-nav ul {
        padding: 20px 160px;
    }

    .mobile-work-section {
        padding-bottom: 160px;
    }
}

/*Tablet landscaped*/
@media only screen and (min-device-width: 1024px) and (max-device-height: 850px) and (orientation: landscape) {
    .svc-img img {
        /*height: 58vh;*/
    }

    .svc-wrapper {
        padding: 50px 2%;
    }

    .svc-number {
        font-size: 1.3rem;
    }

    .svc-title {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .svc-details,
    p.svc-details {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }

    .hero-text {
        font-size: 3.3rem;
    }

    .careers-text,
    .career-details,
    .accordion-button:not(.collapsed),
    button.accordion-button.collapsed {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    p.h1.single-word {
        font-size: 12rem;
    }

    .scroll-btn-arrow a {
        bottom: -45px;
    }

    .clients-wrapper {
        padding-top: 250px;
    }

    .desktop-services-section {
        padding-top: 63px;
        margin-top: 63px;
    }
}

/* HIDE SCROLLBARS */

html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

::-webkit-scrollbar {
    display: none;
}