:root {
    --black: #1d1d1b;
    --red: #eb3f43;
    --white: #fff;
    --grey: #b8b8b8;
}

/********************** 
        Fonts
***********************/

@font-face {
    font-family: "OgilvySans-Bold";
    src: local("OgilvySans Bold"), local("OgilvySans-Bold"),
        url("../fonts/OgilvySans-Bold.otf");
}

@font-face {
    font-family: "OgilvySans-Light";
    src: local("OgilvySans Light"), local("OgilvySans-Light"),
        url("../fonts/OgilvySans-Light.otf");
}

@font-face {
    font-family: "OgilvySans-Regular";
    src: local("OgilvySans Regular"), local("OgilvySans-Regular"),
        url("../fonts/OgilvySans-Regular.otf");
}

@font-face {
    font-family: "OgilvySerif-Bold";
    src: local("OgilvySerif Bold"), local("OgilvySerif-Bold"),
        url("../fonts/OgilvySerif-Bold.otf");
}

/********************** 
    Global CSS
***********************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    font-family: "OgilvySans-Regular";
    font-size: 18px;
    text-rendering: optimizeLegibility;
}

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

.text-center {
    text-align: center;
}

p {
    font-family: "OgilvySans-Regular";
}

p:last-child {
    margin-bottom: 0 !important;
}

a {
    text-decoration: none;
    font-size: 18px;
    color: #b3b2b2;
}

li {
    list-style: none;
}

.pad-0 {
    padding: 0 !important;
}

.pad-top-0 {
    padding-top: 0 !important;
}

.sec-pd-top {
    padding-top: 150px !important;
}

.section h1 {
    font-family: "OgilvySans-Bold";
    text-transform: uppercase;
}

/********************** 
    Main Nav CSS
***********************/

.navbar {
    background-color: var(--black);
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 30px;
    height: 96px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
}

.navbar .home-logo img {
    width: 170px;
}

.navbar .logo {
    display: flex;
}

.navbar .search i,
.navbar .hamberger-menu i {
    color: var(--red);
    font-weight: 600;
    font-size: 30px;
    cursor: pointer;
}

/******************************* 
   FULL SCREEN NAVIGATION
********************************/

aside {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(200deg, #27156e, #6a2a88, #9f4981); */
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 2;
}

.open {
    opacity: 1;
    visibility: visible;
}

nav {
    text-align: center;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    align-items: center;
    flex: 1;
    line-height: 11vh;
}

nav ul li a {
    font-size: 1.5em;
    transition: all 0.5s ease;
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: "OgilvySans-Bold";
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #eb3f43;
    transform: scale(1.1);
}

nav ul li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

nav ul li a:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 25%;
    background: #eb3f43;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 600px) {
    nav ul li a {
        font-size: 2.5em;
    }
}

button {
    padding: 15px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 8px;
    transition: all 0.5s ease;
}

button:hover {
    border: 1px solid white;
}

.close {
    position: fixed;
    top: 40px;
    right: 60px;
    color: white;
    z-index: 3;
    cursor: pointer;
    font-family: sans-serif;
}

.close span,
.close span:before,
.close span:after {
    border-radius: 4px;
    height: 5px;
    width: 35px;
    background: #eb3f43;
    position: absolute;
    display: block;
    content: "";
}

.close span {
    background: transparent;
}

.close span:before {
    transform: rotate(45deg);
}

.close span:after {
    transform: rotate(-45deg);
}

.outer-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 85px;
    height: 85px;
    cursor: pointer;
}

.navbar a.close {
    padding-top: 20px;
    color: var(--white);
    font-size: 28px;
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 60px;
    margin-top: 25px;
}

/**********************/
/* Full screen search */
/**********************/

#search {
    align-items: center;
    background: var(--black);
    height: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    position: fixed;
    transition: all 0.5s;
    width: 100vw;
    will-change: transform, opacity;
    z-index: -1;
}

#search:target {
    height: 100vh !important;
    opacity: 1;
    width: 100vw !important;
    z-index: 9;
}

#search:target .close-btn {
    display: block;
}

#searchbox {
    background: transparent;
    border: solid var(--red);
    border-width: 0 0 1px 0;
    color: var(--red);
    flex: 1 0 auto;
    font-size: 2rem;
    height: 2rem;
    max-width: 50%;
    outline: 0;
    padding: 2rem 1rem;
}

.close-btn {
    display: none;
    color: var(--red);
    font-size: 30px;
    position: absolute;
    top: 30px;
    right: 50px;
}

#search ::placeholder {
    color: var(--red);
}

/*********************************** 
    Full Screen Scroll Sections
************************************/

/*.fp-watermark {*/
/*    display: none;*/
/*}*/

.fp-is-overflow .fp-overflow.fp-auto-height,
.fp-is-overflow .fp-overflow.fp-auto-height-responsive,
.fp-is-overflow > .fp-overflow {
    overflow-y: hidden;
    overflow-x: hidden;
}

#fullpage {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section {
    display: flex;
    flex-direction: column;
    height: 982px;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    flex-wrap: nowrap;
}

#clients.section {
    height: 220px !important;
}

#screen-2 h1:last-child {
    margin-bottom: 0;
}

#screen-2 h1 {
    color: var(--red);
    font-size: 75px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 40px;
    letter-spacing: 0;
    margin-top: 0;
    /* text-wrap: balance; */
}

#screen-2 h1 .black-text {
    color: #000;
}

#screen-2 h1 .red-stroke {
    color: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: inherit;
}

#screen-2 h1 .black-stroke {
    color: #000;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: inherit;
}

#screen-2 p {
    color: var(--black);
    font-size: 35px;
    line-height: 50px;
    font-family: "OgilvySans-Regular";
    margin-bottom: 40px;
    letter-spacing: 0;
    margin-top: 0;
}

#screen-6 h1 {
    color: var(--red);
    width: 65%;
    margin-top: 32%;
    display: block;
    font-size: 45px;
    line-height: 60px;
}

#screen-6 h3 {
    margin-top: 2%;
    color: var(--black);
    font-size: 25px;
    line-height: 40px;
    width: 65%;
    text-transform: uppercase;
}

#screen-7 h1 {
    color: var(--black);
    font-size: 45px;
    line-height: 55px;
    text-transform: unset;
    font-family: "OgilvySans-Regular";
}

#screen-7 h1 b {
    font-family: "OgilvySans-Bold";
}

#screen-4 {
    position: relative;
    display: block;
}

#screen-4 h1 {
    margin-top: 21%;
    color: #ffffff;
    font-size: 120px;
    line-height: normal;
}

#screen-4 h1 span {
    color: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: inherit;
}

#screen-4 h3 {
    margin-top: 2%;
    color: var(--red);
    font-size: 30px;
    line-height: 45px;
    /* text-align: justify; */
    text-transform: uppercase;
}

#screen-2 .content-holder {
    position: relative;
    /* margin-top: 96px; */
}

/********************** 
    Video Player 
***********************/

.video-wraper-medium {
    width: 75%;
    margin: 0 auto;
    margin-top: 3%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.video-wraper-large {
    width: 100%;
    height: 680px;
    margin: 0 auto;
    margin-top: 4%;
    position: relative;
}

.video-wraper-large:before {
    content: url(../images/top-line.png);
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    margin-top: -12px;
    z-index: 2;
}

.video-wraper-large:after {
    content: url(../images/bottom-line.png);
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    margin-bottom: 4px;
    z-index: 2;
}

/********************** 
    Slider Home
***********************/

.slider-holder .item {
    position: relative;
}

.slider-holder .item h2 {
    position: absolute;
    font-size: 50px;
    font-family: "OgilvySerif-Bold";
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .slider-holder .item p {
  position: absolute;
  top: 0;
  padding: 30px 0 0 30px;
  font-size: 20px;
  font-family: "OgilvySans-Regular";
  line-height: 45px;
  margin-top: 50px;
} */

#sbu-slider .item p {
    position: absolute;
    top: 0;
    font-size: 20px;
    font-family: "OgilvySans-Regular";
    line-height: 45px;
    margin-top: 32%;
    width: 100%;
    text-align: center;
}

#sbu-slider .item h3,
#media-services-slider .item h3 {
    font-family: "OgilvySans-Bold";
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-top: 0;
    /* font-size: 20px !important; */
    color: #fff;
    line-height: 25px;
    padding: 0 20px;
    min-height: 50px;
}

#sbu-slider .item .slider-content,
#media-services-slider .item .slider-content {
    padding: 0 30px;
    margin-top: -20px;
}

#sbu-slider .item .slider-content button,
#media-services-slider .item .slider-content button {
    margin: 0 auto;
    display: block;
    border: none;
    font-size: 15px;
    padding: 0;
    font-weight: 100;
    cursor: pointer;
    text-transform: uppercase;
}

#sbu-slider .item .slider-content .sbu-logo {
    width: 80%;
    margin: 0 auto;
    display: block;
    min-height: 100px;
    object-fit: contain;
}

#sbu-slider .pattern3,
#media-services-slider .pattern3 {
    position: absolute;
    bottom: -3px;
    right: -1px;
    overflow: auto;
}

#sbu-slider .item,
#media-services-slider .item {
    min-height: 320px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#inner-page #sbu-slider .item {
    margin-bottom: 30px;
}

.slider-holder .owl-carousel {
    position: absolute;
    bottom: 0;
    left: 0;
}

#clients {
    padding: 80px 0;
}

#clients .owl-carousel .owl-item img {
    width: 80%;
    margin: 0 auto;
}

#clients .clients-slider-holder {
    margin-top: 0;
}

.clients-slider-holder {
    margin-top: 50px;
}

.owl-next span,
.owl-prev span {
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

button.owl-next {
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
button.owl-prev {
    left: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
}

/********************** 
        Footer
***********************/

#footer {
    background-color: var(--black);
    padding: 100px 100px 50px 100px;
    position: relative;
}

#footer:before {
    content: url(../images/footer-top-stripe.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 40px;
    margin-left: -2px;
}

#footer:after {
    content: url(../images/footer-bottom-stripe.png);
    position: absolute;
    bottom: 0px;
    right: 0;
    margin-bottom: 0px;
    margin-right: 14%;
}

#footer .quick-links {
    margin-bottom: 50px;
}

.footer-right ul li {
    margin-right: 30px;
    color: #b3b2b2;
}

#footer .quick-links a {
    color: var(--white);
    font-size: 25px;
    font-family: "OgilvySans-Bold";
}

#footer .quick-links ul li {
    margin-right: 40px;
}

#footer .quick-links ul li:last-child {
    margin-right: 0;
}

#footer ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.footer-left ul li {
    margin-right: 30px;
    color: var(--black);
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
}

#footer .social-media i {
    font-size: 25px;
}

.footer-left,
.footer-right {
    font-family: "OgilvySans-Light";
}

/********************** 
    Home - News
***********************/

.content-holder {
    position: relative;
}

.news-item {
    margin-bottom: 60px;
}

.news-item:last-child {
    margin-bottom: 0;
}

#screen-5 .news-item h1:before {
    content: url(../images/news-left-stripe.png);
    position: absolute;
    left: 0;
    margin-top: -24px;
    margin-left: -20%;
}

#screen-5 .news-item h1:after {
    content: url(../images/news-right-stripe.png);
    position: absolute;
    margin-left: 10px;
}

/* #screen-6 .read-more-text {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
} */

#screen-5 .read-more-text {
    font-size: 16px;
    color: var(--red);
    margin-left: 10px;
    text-transform: uppercase;
}

#screen-5 .content-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/********************** 
    Center Scroll
***********************/

.center-scroll {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: -3px;
    text-align: center;
    display: flex;
}

.center-scroll p {
    font-size: 10px;
    font-family: "OgilvySans-Light";
    letter-spacing: 1px;
    margin-bottom: 5px;
}

#scroll-down {
    display: block;
    position: relative;
    padding-top: 79px;
    text-align: center;
}

.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 20px;
}

.arrow-down:after {
    content: "";
    display: block;
    margin: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--grey);
    border-right: 1px solid var(--grey);
    behavior: url(-ms-transform.htc);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* .center-scroll::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    position: absolute;
    top: 0px;
    margin-left: -1px;
    width: 1px;
    margin-top: -20px;
    height: 20px;
    background: var(--grey);
    content: " ";
} */

@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@-o-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

/********************** 
    News Card
***********************/

/* #news-slider-holder {
    margin-top: 96px;
} */

#news-slider-holder .owl-carousel .owl-dots.disabled {
    display: block;
    margin-top: 40px !important;
}

.news-card h3 {
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-family: "OgilvySans-Bold";
    text-transform: uppercase;
    padding: 0 30px;
    color: #eb3f43;
    margin-top: 10px;
}

.news-card .read-more-2 a {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 30px;
}

.news-card {
    background-color: #000000;
    padding: 0px 0px 30px 0;
}

.news-card .image {
    background-color: #e8e8e8;
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 30px;
    background-position: center;
}

.news-single .news-card {
    background-color: #000000;
    padding: 0px 0px 30px 0;
    min-height: 440px;
}

.news-single .news-card .image {
    min-height: 280px;
}

/************************************************* 
              OGILVY MEDIA - HOME
**************************************************/

#ogilvy-media .navbar .phoenix-logo img {
    width: 300px;
    margin-top: 10px;
    /* height: 50px; */
}

#ogilvy-media #screen-1 .banner-content h1 {
    font-size: 80px;
    margin-bottom: 30px;
    color: var(--red);
}

#ogilvy-media #screen-1 .banner-content p {
    font-size: 30px;
    line-height: 45px;
    text-transform: uppercase;
}

#ogilvy-media #screen-2 h3 {
    font-size: 20px;
    line-height: 35px;
    text-align: inherit;
}

#ogilvy-media #screen-4 h1 {
    margin-top: 17%;
    color: #ffffff;
    font-size: 120px;
    line-height: normal;
}

#ogilvy-media #screen-5 h1 {
    color: var(--red);
    font-size: 45px;
    line-height: normal;
}

#ogilvy-media #screen-4 h3 {
    margin-top: 2%;
    color: var(--white);
    font-size: 25px;
    line-height: 30px;
    text-transform: uppercase;
}

#ogilvy-media #screen-5 h3 {
    margin-top: 2%;
    color: var(--black);
    font-size: 30px;
    line-height: 50px;
    /* text-align: justify; */
    text-transform: uppercase;
}

#ogilvy-media #media-services-slider .item h2 {
    font-size: 30px;
    font-family: "OgilvySans-Bold";
    position: unset;
    transform: none;
    text-align: center;
    text-transform: uppercase;
    line-height: 35px;
}

#ogilvy-media #media-services-slider .item p {
    font-size: 18px;
    font-family: "OgilvySans-Regular";
    line-height: 30px;
    margin-top: 1em;
    margin-bottom: 1em;
    width: 100%;
    text-align: center;
    position: unset;
}

#ogilvy-media #media-services-slider .item {
    padding: 45px;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

#ogilvy-media #media-services-slider .item .pattern1,
#ogilvy-media #media-services-slider .item .pattern2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

#ogilvy-media #screen-2 h1 {
    color: var(--red);
    font-size: 40px;
    line-height: 45px;
    font-family: "OgilvySans-Bold";
    letter-spacing: 0;
    margin-top: 0;
    padding: 0;
    margin-bottom: 20px;
    text-align: inherit;
}

#ogilvy-media #screen-2 .content-holder {
    position: relative;
    margin-top: 0;
}

#ogilvy-media #screen-4 {
    position: relative;
    display: block;
}

#work .work-img {
    position: relative;
}

#work #media-works-slider .item button {
    color: #000;
}

#work .work-img .client-name {
    position: absolute;
    background-color: #e14258;
    padding: 10px 10px;
    bottom: 0;
    color: #fff;
    font-size: 15px;
}

#ogilvy-media #media-works-slider .item h2 {
    position: unset;
    font-size: 20px;
    line-height: 25px;
    font-family: "OgilvySans-Bold";
    transform: none;
    text-align: center;
    /* padding: 25px 15px 10px 15px; */
    text-transform: uppercase;
}

#ogilvy-media #media-works-slider .caption-holder {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#ogilvy-media #screen-6 .slider-holder .owl-carousel {
    position: unset;
}

#ogilvy-media #screen-6 .owl-carousel .item .read-more-text {
    text-align: center;
    font-size: 15px;
    width: 100%;
    display: block;
    text-transform: uppercase;
    cursor: pointer;
}

#ogilvy-media #screen-6 .slider-holder .item {
    position: relative;
    min-height: 13em;
}

#ogilvy-media #screen-7 h1 {
    color: var(--red);
    font-size: 45px;
    line-height: normal;
}

#ogilvy-media #screen-7 h3 {
    margin-top: 2%;
    color: var(--black);
    font-size: 34px;
    line-height: 50px;
    /* text-align: justify; */
    text-transform: uppercase;
}

#ogilvy-media #team {
    margin-top: 96px;
}

#ogilvy-media #team .member-image {
    min-height: 360px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#ogilvy-media #team .item .caption-holder {
    background-color: var(--grey);
    padding: 25px 20px 30px 20px;
    text-align: center;
    margin-top: -3px;
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#ogilvy-media #team .item .caption-holder:after {
    content: url(../images/footer-bottom-stripe.png);
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: -3px;
    width: 100%;
}

#ogilvy-media #team .caption-holder .name {
    font-size: 18px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 10px;
    text-transform: uppercase;
    width: 90%;
    margin: 0 auto 10px auto;
}

#ogilvy-media #team .caption-holder .designation {
    font-size: 15px;
    font-family: "OgilvySans-Light";
    margin-bottom: 10px;
    line-height: 20px;
}

#ogilvy-media #team .caption-holder .email {
    font-size: 20px;
    font-family: "OgilvySans-Light";
    color: #000;
}

#ogilvy-media #team h1 {
    color: var(--red);
    font-size: 70px;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 0;
}

#ogilvy-media #work h1 {
    color: var(--red);
    font-size: 70px;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 0;
}

#ogilvy-media #about .about-img {
    display: flex;
    justify-content: center;
    max-height: 460px;
}

#about .row {
    margin-top: 6%;
}

#ogilvy-media #about .about-img img {
    width: 100%;
    object-fit: cover;
}

/************************************* 
    Ogilvy Media - Contact Form
**************************************/

#contact .form-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1em;
}

form#contact_form .form-group .error {
    color: var(--red);
    font-size: 15px;
}

#contact label.form-label {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: "OgilvySans-Light";
    color: #fff;
}

#contact input,
#contact select {
    height: 50px;
    padding: 0 15px;
    font-family: "OgilvySans-Light";
    font-size: 18px;
    outline: none;
}

#contact button {
    padding: 15px 40px;
    font-size: 18px;
    background: #e14258;
    border: 1px solid rgb(225 66 88);
    color: #ffffff;
    border-radius: 0;
    transition: all 0.5s ease;
    text-transform: uppercase;
    font-family: "OgilvySans-Light";
    cursor: pointer;
}

#contact textarea {
    padding: 20px;
    font-family: "OgilvySans-Light";
    font-size: 18px;
    outline: none;
}

#contact h1 {
    color: var(--red);
    font-size: 45px;
    line-height: normal;
    margin-bottom: 20px;
}

.form-holder {
    margin-top: 40px;
}

/************************************* 
    Ogilvy Media - Popup
**************************************/

.popup-link {
    display: flex;
    flex-wrap: wrap;
}

.popup-link a {
    background: #333;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 17px;
    cursor: pointer;
    margin: 20px;
    text-decoration: none;
}

/* .popup-container {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: flex;
  align-items: center;
}

.popup-content {
  margin: auto;
  padding: 90px;
  color: var(--white);
  border: 1px solid #888;
  width: 50%;
  word-spacing: normal;
  background-color: var(--grey);
  position: relative;
}

.popup-content p {
  font-size: 18px;
  line-height: 30px;
  font-family: "OgilvySans-Regular";
  text-align: justify;
}

.popup-content a.close {
  padding-top: 5px;
  color: var(--white);
  font-size: 28px;
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 10px;
}

.popup-content a.close:hover {
  color: #333;
} */

#ogilvy-media #team .item .caption-holder:hover {
    background-color: var(--red);
    color: var(--white);
}

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

/* .popup-container:target {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
} */

.popup-container h3,
.work-popup-container h3 {
    font-family: "OgilvySans-Light";
    margin-bottom: 20px;
}

.popup-container .name,
.work-popup-container .name {
    font-family: "OgilvySans-Bold";
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 25px;
}

.popup-container .service-title,
.work-popup-container .service-title {
    font-family: "OgilvySans-Bold";
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 25px;
    margin-top: 0;
}

.popup-img.service {
    margin-bottom: 20px;
}

.popup-img.service img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

/*End popup styles*/

/* Additional styles */
.popup-style-2 {
    transform: scale(0.3);
}

.popup-style-2:target {
    transform: scale(1);
}

.popup-style-3 {
    left: 100%;
}

.popup-style-3:target {
    left: 0;
}

.popup-style-4 {
    transform: rotate(180deg);
}

.popup-style-4:target {
    transform: rotate(0deg);
}

.popup-style-5 {
    top: 100%;
}

.popup-style-5:target {
    top: 0;
}

.popup-style-6 {
    transform: scale(15.3);
}

.popup-style-6:target {
    transform: scale(1);
}

.popup-style-7 {
    transform: skewY(180deg);
    transition: all 0.7s ease-in-out;
}

.popup-style-7:target {
    transform: skewY(0deg);
}

/* vindula */
#contact p {
    font-size: 20px;
    line-height: 35px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.popup-content:after,
.work-popup-content:after,
.team-popup-content:after {
    content: url(../images/footer-bottom-stripe.png);
    bottom: -4px;
    position: absolute;
    left: -1px;
}

.popup-container,
.work-popup-container,
.team-popup-container {
    left: 0;
    width: 100%;
    z-index: 3;
    display: none;
    background-color: rgba(21, 17, 17, 0.61);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(21 17 17 / 85%);
}

.popup-container:target,
.work-popup-container:target,
.team-popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.popup-container.show,
.work-popup-container.show,
.team-popup-container.show {
    display: block;
}

a.close {
    color: var(--white);
    font-size: 28px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 20px 0px 20px;
}

a.close:hover {
    color: var(--white);
}

.popup-content,
.work-popup-content,
.team-popup-content {
    background-color: #000000;
    margin: auto;
    padding: 50px;
    width: 50%;
    position: relative;
    color: var(--white);
}

.popup-content p,
.work-popup-content p,
.team-popup-content p {
    font-size: 18px;
    line-height: 30px;
    font-family: "OgilvySans-Regular";
}

.sub-popup-margin {
    height: 100%;
    display: flex;
}

button.popup-trigger,
button.work-popup-trigger,
button.team-popup-trigger {
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    border: none;
    padding: 0;
    cursor: pointer;
    /* margin-top: 20px; */
}

button.team-popup-trigger {
    padding: 0px;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.work-popup-container img {
    width: 100%;
    margin-bottom: 30px;
    height: auto;
}

.scrollable-content {
    flex-grow: 1;
    overflow: auto;
    /* for Firefox */
    max-height: 220px;
}

#media-services-slider .read-more-text {
    margin-top: 20px;
}

/* vindula */

/* Yashod - About Us Page */

#inner-page.about #screen-1 h1 {
    color: var(--white);
    font-family: "OgilvySans-Bold";
    letter-spacing: 0;
    margin: 0;
    font-size: 120px;
    line-height: 105px;
}

/* #inner-page.about #screen-1 h1 span {
    color: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: inherit;
} */

#inner-page.about #screen-1 h1 .banner_content-line,
#inner-page.work #screen-1 h1 .banner_content-line,
#inner-page.news #screen-1 h1 .banner_content-line,
#ogilvy-media
    #screen-1
    .banner-content.sbu-inner-main-header
    h1
    .banner_content-line {
    color: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: inherit;
}

#inner-page #screen-2 h1 {
    color: var(--red);
    font-size: 50px;
    line-height: 55px;
    text-transform: uppercase;
    padding: 10px 0;
}

#inner-page #screen-3 h1,
#inner-page #screen-4 h1,
#inner-page #screen-5 h1 {
    /* color: var(--white); */
    font-size: 50px;
    line-height: normal;
    margin-bottom: 20px;
    font-family: "OgilvySans-Bold";
    text-transform: uppercase;
    margin-top: 0;
}

#inner-page.services #screen-3 h1 {
    color: var(--red);
}

#inner-page.about #screen-3 h1 {
    color: var(--red);
}

#inner-page.careers #screen-4 h1 {
    color: var(--red);
    margin-top: 0;
}

#inner-page #screen-2 .content-wraper p,
#inner-page #screen-3 .content-wraper p,
#inner-page #screen-4 .content-wraper p {
    color: var(--white);
    font-size: 25px;
    line-height: normal;
    margin-bottom: 40px;
    text-wrap: balance;
}

.about-sbu-card .card-caption {
    padding-bottom: 25px;
}

.card-caption a {
    font-size: 15px;
}

#inner-page.about .about-sbu-card .card-caption p,
#inner-page.services .about-sbu-card .card-caption p {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    padding: 25px 20px 15px 20px;
    text-align: center;
    position: relative;
    font-family: "OgilvySans-Bold";
    text-wrap: balance;
    text-transform: uppercase;
}

#inner-page #screen-4 h1 {
    margin-top: 2%;
    text-transform: uppercase;
}

#inner-page #screen-2,
#inner-page #screen-3,
#inner-page #screen-4,
#inner-page #screen-5 {
    padding: 3em 0em;
}

/* #inner-page .sbu-logo {
    background-color: #1a1a18;
    min-height: 230px;
    position: relative;
} */

#inner-page .sbu-logo img {
    position: absolute;
    font-family: "OgilvySerif-Bold";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.about-sbu-card {
    margin-bottom: 25px;
    text-align: center;
    background-color: #c6c6c6;
}

#inner-page #team .member-image {
    min-height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-position: center top;
}

#inner-page #team .member-holder {
    margin-bottom: 25px;
}

#inner-page #team .caption-holder {
    background-color: var(--grey);
    padding: 25px 20px 30px 20px;
    text-align: center;
    margin-top: -3px;
    position: relative;
    min-height: 7em;
}

#inner-page #team .caption-holder .name {
    font-size: 18px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 10px;
}

#inner-page #team .caption-holder .designation {
    font-size: 15px;
    font-family: "OgilvySans-Light";
    line-height: 20px;
}

#inner-page #team .caption-holder:after {
    content: url(../images/footer-bottom-stripe.png);
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: -3px;
    width: 100%;
    overflow: hidden;
}

#inner-page #global-network .map-img img {
    margin-top: 40px;
    width: 100%;
}

/* Yashod - Work Listing Page */

#inner-page.work #screen-1 .banner-content h1 {
    color: var(--white);
    font-size: 90px;
    font-family: "OgilvySans-Bold";
    letter-spacing: 0;
    margin: 0;
    text-transform: uppercase;
    line-height: 85px;
    width: 75%;
    text-wrap: balance;
}

#inner-page.work #screen-1 {
    background-position: center;
}

.tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
}

.tabs {
    margin-bottom: 20px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 50px;
}

.tab-link {
    list-style: none;
    color: var(--black);
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.5s;
    border-bottom: solid 3px rgba(255, 255, 255, 0);
    line-height: 30px;
    font-size: 20px;
}

.tab-link:hover {
    color: #eb3f43;
    border-color: #eb3f43;
}

.tab-link.active {
    color: #eb3f43;
    border-color: #eb3f43;
}

/* .content-wrapper {
    padding: 40px 0px;
} */

.tab-content {
    display: none;
    text-wrap: balance;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content p {
    line-height: 30px;
    font-size: 20px;
}

.tab-content.active {
    display: block;
}

#inner-page .work-tab .news-card .image {
    min-height: 240px;
}

#inner-page .work-tab .news-card {
    margin-bottom: 25px;
    min-height: 425px;
}
.news-card .caption-holder {
    display: flex;
    flex-direction: column;
    min-height: 80px;
    justify-content: center;
}

/* #inner-page .work-tab {
    margin-top: 30px;
} */

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

/* Yashod - Work Inner Page */

#inner-page.work-single .section {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    flex-wrap: nowrap;
}

#inner-page.work-single #screen-1.section h1 {
    color: var(--white);
    font-size: 60px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 10px;
    letter-spacing: 0;
    margin-top: 0;
    text-transform: uppercase;
}

#inner-page.work-single #screen-1.section h3 {
    color: var(--black);
    font-size: 20px;
    margin-top: 0;
    text-transform: uppercase;
}

#inner-page.work-single #screen-2 p {
    color: var(--black);
    font-size: 25px;
    line-height: normal;
    margin-bottom: 30px;
    text-wrap: wrap;
}

#inner-page.work-single #screen-2 h1 {
    color: var(--red);
    font-size: 50px;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
}

#inner-page.work-single li {
    color: var(--black);
    font-size: 25px;
    line-height: normal;
    margin-bottom: 30px;
    list-style: disc;
}

#inner-page.work-single li:last-child {
    margin-bottom: 0;
}

#inner-page.work-single ul {
    padding-left: 6%;
}

#inner-page.work-single #screen-2 {
    position: relative;
}

#inner-page.work-single #screen-2:before {
    content: url(../images/frame-1.png);
    position: absolute;
    top: 0;
    right: 0;
}

#inner-page.work-single #screen-4:after {
    content: url(../images/frame-2.png);
    position: absolute;
    bottom: 0;
    margin-bottom: -3px;
    left: 0;
}

#inner-page.work-single #screen-1 .video-wraper-large {
    width: 68%;
    height: 500px;
    margin: 0 auto;
    margin-top: 4%;
    position: relative;
    margin-bottom: 30px;
}

#inner-page.work-single #screen-1 .video-wraper-large:before {
    content: url(../images/top-line.png);
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    margin-top: -4px;
    z-index: 2;
    overflow: hidden;
}

#inner-page.work-single #screen-1 .video-wraper-large:after {
    content: url(../images/bottom-line.png);
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0px;
    z-index: 2;
    overflow: hidden;
}

/* Yashod - News Listing Page */

#inner-page.news #screen-1 .banner-content h1 {
    color: var(--white);
    font-size: 88px;
    font-family: "OgilvySans-Bold";
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 90px;
    width: 70%;
    text-wrap: balance;
    margin: 0;
}

#inner-page.news .news-date {
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    padding: 0px 30px 0px;
    line-height: inherit;
    margin-bottom: 0;
}

#inner-page.news #screen-2 h1 {
    margin-bottom: 20px;
}

/* Yashod - News Single Page */

#inner-page.news-single #screen-1 .banner-content h1 {
    color: var(--red);
    font-size: 60px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 20px;
    letter-spacing: 0;
    margin-top: 0;
    text-transform: uppercase;
}

#inner-page.news-single #screen-1.section h3 {
    color: var(--black);
    font-size: 15px;
    margin-top: 0;
    text-transform: uppercase;
    background-color: #ffffff;
    display: inline-block;
    padding: 15px 20px;
}

#inner-page.news-single .section {
    display: flex;
    flex-direction: column;
    height: 500px;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 96px;
}

#inner-page.news-single .banner-content .news-date {
    color: var(--black);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    padding: 0;
}

#inner-page.news-single #screen-1.desktop-banner {
    min-height: 500px;
    background: no-repeat;
    background-position: center;
    margin-top: 96px;
    background-size: cover;
}

#inner-page.news-single .news-date {
    font-size: 15px !important;
    color: var(--black) !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0 !important;
    line-height: inherit;
}

.news-single #screen-3 .content-wraper h1 {
    color: var(--black) !important;
}

.news-single .news-image img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.news-single .news-image {
    margin-bottom: 40px;
}

.news-single .news-heading {
    margin-bottom: 40px;
}

#inner-page.news-single #screen-2 .news-heading h1 {
    margin-bottom: 0px;
    font-size: 45px;
    line-height: 55px;
}

.news-single .news-content p {
    color: #000 !important;
    text-wrap: unset !important;
    line-height: 35px !important;
    font-size: 20px !important;
}

.news-single .news-heading h3 {
    background-color: #1e293b;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
}

/* Yashod - Services Page */

#inner-page.services #screen-1 .banner-content h1 {
    color: var(--red);
    font-size: 84px;
    font-family: "OgilvySans-Bold";
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 80px;
    width: 70%;
    text-wrap: balance;
    margin: 0;
}

#inner-page.services #screen-3 {
    /* margin-top: 96px; */
    padding: 9em 0 3em 0;
}

/* Yashod - Career Page */

#inner-page.careers #screen-1 .banner-content h1 {
    color: var(--red);
    font-size: 84px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 80px;
    width: 80%;
    text-wrap: balance;
    margin-top: 7%;
}

#inner-page.careers .career-card h3 {
    font-size: 25px;
    line-height: 25px;
    color: var(--black);
    position: relative;
    margin-top: 0;
    font-family: "OgilvySans-Bold";
    text-wrap: balance;
    text-transform: uppercase;
}

#inner-page.careers .career-card {
    background-color: var(--grey);
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
}

#inner-page.careers .career-card::after {
    content: url(../images/footer-bottom-stripe.png);
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: -3px;
}

#inner-page.careers .career-card p {
    color: var(--black);
    font-size: 18px;
    padding: 25px 0px;
    line-height: 25px;
}

#inner-page.careers .career-card .apply-now-btn {
    font-size: 15px;
    color: var(--red);
}

#inner-page.careers .career-card .apply-now-btn i {
    margin-left: 5px;
}

/* #inner-page.careers .careers-card-holder {
    margin-top: 40px;
} */

#inner-page.careers #screen-2 p {
    color: #ffffff;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 40px;
}

#inner-page.careers #screen-2 .content-wraper-left h1 {
    padding-right: 40px;
    color: #ffffff;
}

#cv-upload p {
    font-size: 20px;
    line-height: 35px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cv-upload-box #fileError {
    color: #e14258;
    margin-top: 20px;
}

#linked_in-error,
#cover_letter-error,
#email-error,
#mobile-error,
#first_name-error,
#last_name-error {
    color: #e14258;
}

.careers #screen-4 .content-wraper p {
    color: var(--black);
}

/* Yashod - Career Single Page  */

#inner-page.career-single .section {
    display: flex;
    flex-direction: column;
    height: 400px;
    margin-top: 96px;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center;
    flex-wrap: nowrap;
}

#inner-page.career-single #screen-1.section h1 {
    color: var(--white);
    font-size: 60px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 10px;
    letter-spacing: 0;
    margin-top: 0;
    text-transform: uppercase;
}

#inner-page.career-single #screen-1.section h3 {
    color: var(--black);
    font-size: 20px;
    margin-top: 0;
    text-transform: uppercase;
}

#inner-page.career-single #screen-2 p {
    color: var(--black);
    font-size: 25px;
    line-height: normal;
    margin-bottom: 30px;
    text-wrap: wrap;
}

#inner-page.career-single #screen-2 h1 {
    color: var(--red);
    font-size: 50px;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
}

#inner-page.career-single li {
    color: var(--black);
    font-size: 25px;
    line-height: normal;
    margin-bottom: 30px;
    list-style: disc;
}

#inner-page.career-single li:last-child {
    margin-bottom: 0;
}

#inner-page.career-single ul {
    padding-left: 6%;
}

#inner-page.career-single #screen-2 {
    position: relative;
}

#inner-page.work-single #screen-2:before {
    content: url(../images/frame-1.png);
    position: absolute;
    top: 0;
    right: 0;
}

#inner-page.career-single #screen-4:after {
    content: url(../images/frame-2.png);
    position: absolute;
    bottom: 0;
    margin-bottom: -3px;
    left: 0;
}

#inner-page.career-single #screen-1 {
    min-height: 400px;
    display: flex;
    align-items: center;
}

#inner-page.career-single #screen-1 .banner-content {
    margin-top: 70px;
}

#inner-page.career-single #screen-1 .banner-content h1 {
    font-family: "OgilvySans-Bold";
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 20px;
}

#inner-page.career-single #screen-2 h2 {
    color: var(--red);
    font-size: 30px;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    font-family: "OgilvySans-Bold";
}

/* Yashod - CV Upload */

.cv-upload-box {
    margin: 10px 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dotted #a3a3a3;
    border-radius: 5px;
    background-color: #fff;
}

.cv-upload-box h4 {
    font-size: 16px;
    font-weight: 400;
    color: #2e2e2e;
}

.cv-upload-box p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #a3a3a3;
}

/* Yashod - Contact */

#inner-page.contact #screen-1 {
    margin-top: 96px;
}

#inner-page.contact .sbu-head {
    min-height: 170px;
    display: flex;
    align-items: center;
    border-right: 1px solid #3e3e3e;
}

#inner-page.contact .sbu-head img {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    display: block;
}

#inner-page.contact .sbu-contact-details {
    text-align: center;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3em;
    border-right: solid 1px #ececec;
}

#inner-page.contact .map img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.map {
    position: fixed;
}

#inner-page.contact .sbu-contact-details h3.address {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 20px;
}

#inner-page.contact .sbu-contact-details a.hotline {
    font-size: 18px;
    margin-bottom: 25px;
    color: #000;
}

#inner-page.contact .sbu-contact-details a.get-in-touch {
    padding: 15px 30px;
    font-size: 15px;
    background: #e14258;
    border: 1px solid rgb(225 66 88);
    color: #ffffff;
    border-radius: 0;
    transition: all 0.5s ease;
    text-transform: uppercase;
    font-family: "OgilvySans-Light";
    display: block;
}

.container.main-banner-container {
    /* max-width: 1450px; */
    height: 100vh;
    display: flex;
    align-items: center;
}

#inner-page.work #screen-1 h1 .banner_content-red,
#ogilvy-media
    #screen-1
    .banner-content.sbu-inner-main-header
    h1
    .banner_content-red {
    color: var(--red);
}

#inner-page.work #screen-1 h1 .banner_content_author {
    font-size: 50px;
    color: var(--red);
}

#inner-page.work #screen-1 h1 .banner_content_author,
#inner-page.careers #screen-1 h1 .banner_content_author,
#inner-page.services #screen-1 h1 .banner_content_author {
    font-size: 50px;
    color: var(--red);
}

#inner-page.news #screen-1 h1 .banner_content_author_black {
    font-size: 50px;
    color: var(--black);
}

#inner-page.about #screen-1 h1 .banner_content-black,
#inner-page.careers #screen-1 .banner-content h1 .banner_content-black,
#inner-page.services #screen-1 h1 .banner_content-black,
#ogilvy-media
    #screen-1
    .banner-content.sbu-inner-main-header
    h1
    .banner_content-black {
    color: black;
}

#inner-page.careers #screen-1 .banner-content h1 .banner_content-line-black,
#inner-page.services #screen-1 .banner-content h1 .banner_content-line-black,
#ogilvy-media
    #screen-1
    .banner-content.sbu-inner-main-header
    h1
    .banner_content-line-black {
    color: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--black);
}

/* Yashod - Home page main banner */

.red-box {
    background-color: #e14258;
    min-height: 510px;
    width: 75%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#main-banner .red-box .content-holder {
    padding: 0 40px;
    position: absolute;
    width: 65%;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

#main-banner .red-box .content-holder h1 {
    font-size: 70px;
    margin: 0;
}

#main-banner .red-box .content-holder h1.white-stroke {
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: inherit;
}

/* Yashod - Awards Section */

#screen-5.awards h1 span {
    color: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: inherit;
}

#screen-5.awards h1 {
    margin-top: 0;
    color: #ffffff;
    font-size: 150px;
    line-height: normal;
    margin-bottom: 0;
}
#screen-5.awards #awards-slider-holder {
    background-color: #fff;
    padding: 30px 20px;
}

#screen-5.awards #awards-slider-holder .item {
    width: 60%;
    margin: 0 auto;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
/* Home page showreel video  */

.videoWrapper {
    position: relative;
    width: 100%;
    height: 0;
    /*background-color: #000;*/
}

.videoWrapper169 {
    padding-top: 56.25%;
}

.videoIframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 680px;
    background-color: transparent;
    overflow: hidden;
}

.videoWrapperActive .videoPoster {
    opacity: 0;
    height: 0;
    transition-delay: 0s, 0.8s;
}

.videoPoster {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 680px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: 0;
    outline: none;
    background-position: 50% 50%;
    background-size: 100% 100%;
    background-size: cover;
    text-indent: -999em;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.8s ease, height 0s ease;
    transition-delay: 0s, 0s;
}

.videoPoster:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    margin: -25px 0 0 -14px;
    border-left: 40px solid rgba(255, 255, 255, 0.75);
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 0 5px 0 transparent;
}

.home-video-close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    display: block;
    line-height: 0;
    display: inline-block;
    padding: 20px 10px;
    font-size: 3em;
    font-weight: 700;
    color: white;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: ease-in-out 0.15s all;
}

.home-video-close.is-hidden {
    display: block;
    transform: translateY(0);
}

#js-pointer-detector {
    display: none;
}

@media (pointer: coarse) {
    #js-pointer-detector {
        display: block;
    }

    /* .js-videoPoster {
        display: none;
    } */
}

#ogilvy-media #screen-1 .banner-content.sbu-inner-main-header h1 {
    color: var(--white);
    font-size: 90px;
    font-family: "OgilvySans-Bold";
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    width: 65%;
    margin-top: 0;
    line-height: 85px;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.googleMap {
    width: 50vw;
    height: 50vh;
}

.map-one,
.map-two {
    position: fixed;
}

.map-two {
    top: 50%;
}

.gm-style-cc {
    display: none;
}

/* SWEET ALERT STYLES  */

.sweet-alert button {
    background-color: #000000 !important;
    color: white !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
}

.sweet-alert {
    background-color: #e14258 !important;
    font-family: "OgilvySans-Regular" !important;
    color: #fff !important;
}

.sweet-alert .sa-icon.sa-error {
    background-color: #fff !important;
}

.sweet-alert .sa-icon.sa-success {
    background-color: #fff !important;
}

.sweet-alert .sa-icon.sa-info {
    background-color: #fff !important;
}

.sweet-alert .sa-icon.sa-warning {
    border-color: #f8bb86;
    background-color: #fff !important;
}

.sweet-alert h2 {
    color: #fff !important;
    font-family: "OgilvySans-Regular" !important;
}

.sweet-alert p {
    color: #fff !important;
    font-family: "OgilvySans-Regular" !important;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
    background-color: transparent !important;
}

.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
    background: transparent !important;
}

/* arrow */
.scroll {
    position: relative;
    display: flex;
    justify-content: center;
    top: -60px;
}
.scroll span {
    display: block;
    color: var(--grey);
    font-size: 16px;
    position: absolute;
}
.scroll span.one {
    animation: animeone 3s infinite linear;
    opacity: 0;
    transform: scale(0.4, 0.4);
}
.scroll span.two {
    animation: animetwo 3s infinite linear;
    opacity: 1;
}
.scroll span.three {
    animation: animethree 3s infinite linear;
    opacity: 1;
}
.scroll span.four {
    animation: animefour 3s infinite linear;
    opacity: 0;
    transform: scale(0.4, 0.4);
}
@keyframes animeone {
    0%,
    10% {
        opacity: 0;
        transform: translateY(0px) scale(0.4, 0.4);
    }
    33.3%,
    43.3% {
        opacity: 1;
        transform: translateY(20px);
    }
    66.6%,
    76.6% {
        opacity: 1;
        transform: translateY(30px);
    }
    100% {
        opacity: 0;
        transform: translateY(50px) scale(0.4, 0.4);
    }
}
@keyframes animetwo {
    0%,
    10% {
        opacity: 1;
        transform: translateY(20px);
    }
    33.3%,
    43.3% {
        opacity: 1;
        transform: translateY(30px);
    }
    66.6%,
    76.6% {
        opacity: 0;
        transform: translateY(50px) scale(0.4, 0.4);
    }
    100% {
        opacity: 0;
        transform: translateY(0px) scale(0.4, 0.4);
    }
}
@keyframes animethree {
    0%,
    10% {
        opacity: 1;
        transform: translateY(30px);
    }
    33.3%,
    43.3% {
        opacity: 0;
        transform: translateY(50px) scale(0.4, 0.4);
    }
    66.6%,
    76.6% {
        opacity: 0;
        transform: translateY(0px) scale(0.4, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateY(20px);
    }
}
@keyframes animefour {
    0%,
    10% {
        opacity: 0;
        transform: translateY(50px) scale(0.4, 0.4);
    }
    33.3%,
    43.3% {
        opacity: 0;
        transform: translateY(0px) scale(0.4, 0.4);
    }
    66.6%,
    76.6% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(30px);
    }
}
