/* NEW CSS BY DEVENDRA */


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */


/*
 *  Owl Carousel - Core
 */

a, a:hover {
	text-decoration:none !important;
}

.content blockquote {
	padding-left: 30px !important;
    border-color: #3ba650;
}

.content blockquote:before {
    display: none;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}


/* No Js */

.no-js .owl-carousel {
    display: block;
}


/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/*
 *  Owl Carousel - Auto Height Plugin
 */

.owl-height {
    transition: height 500ms ease-in-out;
}


/*
 *  Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
    /**
            This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
            calculation of the height of the owl-item that breaks page layouts
         */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}


/*
 *  Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */


/*
 *  Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

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

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}


/* MODIFIED GENERAL CLASS CSS  */

.et_pb_section .sub-text {
    font-size: 25px !important;
    line-height: 25px !important;
}

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

#team-section.team-row .owl-item .et_pb_column {
    margin-top: 100px !important;
    background: #ededed;
    width: 100% !important;
    margin-bottom: 0 !important;
}

.et-db #page-container #et-boc .et-l #team-section.team-row {
    background: none !important;
    margin-top: 100px !important;
    margin-right: 0 !important;
    display: block !important;
    max-width: none !important;
    flex-wrap: nowrap !important;
}

#team-section .et_pb_promo_description p{
    text-transform: uppercase;
}


/*#team-section.team-row.slick-initialized .slick-slide.et-last-child {
    display: none !important;
}*/


/* HEADER  */

.header-section .et_pb_row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section .et_pb_image .et_pb_image_wrap {
    height: 46px;
}

.header-section .gig-logo-header.et_pb_image .et_pb_image_wrap {
    height: 72px;
    height: 64px;
}

.header-section .et_pb_image img {
    /* max-width: unset; */
    width: auto;
    height: 100%;
}

.header-home-logo {
    width: 117px;
    background: #ffdf0f;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 117px;
    position: fixed;
    top: 0px;
    left: 0;
}

.sector-template-default .header-home-logo {
    display: flex !important;
}

.logged-in.admin-bar .header-home-logo {
    top: 32px;
}

.header-home-logo a {
    padding: 30px;
}


/* --------------------------------------------
BANNER
-------------------------------------------- */

.inner-banner-wrap .taglines p,
.inner-banner-wrap .taglines .et_pb_text_inner {
    padding: 0 15px;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
}

.inner-banner-wrap {
    /* height: calc(100vh - 117px) !important; */
    max-height: 550px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.inner-banner-wrap .text-section .et_pb_text_inner {
    display: inline-block;
    padding: 60px 50px;
    position: relative;
}

.inner-banner-wrap .text-section .et_pb_text_inner {
    font-family: 'Gotham';
    left: 99px;
    max-width: 570px;
    position: absolute;
    top: 95px;
    width: auto;
    font-weight: 600;
}

.inner-banner-wrap .text-section .et_pb_text_inner:before,
.inner-banner-wrap .text-section .et_pb_text_inner:after {
    bottom: 0;
    border-top: 30px solid #ffe200;
    border-bottom: 30px solid #ffe200;
    content: " ";
    padding: 15px;
    position: absolute;
    top: 0;
}

.inner-banner-wrap .text-section .et_pb_text_inner:before {
    border-left: 25px solid #ffe200;
    left: 0;
}

.inner-banner-wrap .text-section .et_pb_text_inner:after {
    border-right: 25px solid #ffe200;
    right: 0;
}

.inner-banner-wrap .taglines:before,
.inner-banner-wrap .taglines:after {
    padding: 15px !important;
}

.inner-banner-wrap .taglines.et_pb_text {
    left: 99px;
    width: auto !important;
    max-width: 570px;
    position: absolute;
    top: 95px;
    width: auto;
}

.header-text-wrap h1 {
    font-size: 40px !important;
}

.header-text-wrap:before {
    border-top: 25px solid #ffdf0f;
    border-bottom: 25px solid #ffdf0f;
    border-left: 25px solid #ffdf0f;
}

.header-text-wrap:after {
    border-top: 30px solid #ffdf0f;
    border-bottom: 30px solid #ffdf0f;
    border-right: 25px solid #ffdf0f;
}


/* Glbal CTA  */

.global-banner-cta {
    position: absolute;
    top: 0;
    left: 100px;
    height: 100%;
    padding: 0;
    bottom: 0;
    display: flex;
    /* transform: translateY(-50%); */
    align-items: flex-end;
}

.global-banner-cta .et_pb_column {
    max-width: 50%;
}

.global-banner-cta .et_pb_button_module_wrapper {
    display: inline-block;
    padding-right: 30px;
}

.global-banner-cta.custom-global-banner-cta {
    padding-bottom: 40px;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.global-banner-cta.custom-global-banner-cta h4 {
    color: #FFF;
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 10px;
}

.global-banner-cta.custom-global-banner-cta a {
    display: inline-block;
    margin-right: 30px;
    border-radius: 100px;
    font-size: 14.76px;
    font-weight: 900;
    background: #FFF;
    padding: 12px 15px;
    margin-bottom: 20px;
    min-width: 225px;
}

.global-banner-cta.custom-global-banner-cta a.button:hover {
    background: #000;
    color: #FFF;
}


/* Products section */

.img-text-box-col {
    /* counter-reset: img-block-counter; */
}

.image-text-box:before {
    /* counter-increment: img-block-counter;
    content: counter(img-block-counter); */
    display: block;
    /* background: #ffe100; */
    height: 55px;
    width: 55px;
    color: #FFF !important;
    border-radius: 100%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.img-text-box-col.product-blue-bg .image-text-box:after,
.img-text-box-col.product-pink-bg .image-text-box:after,
.img-text-box-col.product-green-bg .image-text-box:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    background-image: radial-gradient(circle, #FFFFFFFF, #FFFFFF55, #FFFFFF00);
    background: -moz-radial-gradient(circle, #FFFFFFFF, #FFFFFF55, #FFFFFF00);
    /* FF3.6-15 */
    background: -webkit-radial-gradient(circle, #FFFFFFFF, #FFFFFF55, #FFFFFF00);
    /* Chrome10-25,Safari5.1-6 */
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=' #FFFFFFFF', endColorstr=' #FFFFFF00', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.img-text-box-col.product-blue-bg .image-text-box:hover:after,
.img-text-box-col.product-pink-bg .image-text-box:hover:after,
.img-text-box-col.product-green-bg .image-text-box:hover:after {
    background-image: none;
}

.img-text-box-col.product-yellow-bg .image-text-box {
    height: 245px;
}

.img-text-box-col.product-yellow-bg .image-text-box:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    background-color: rgba(0, 0, 0, 0.5);
}

.img-text-box-col.product-yellow-bg .image-text-box:hover:after {
    /* background-image: none; */
}

.image-text-box {
    width: calc(33.33% - 30px) !important;
    margin-right: 30px !important;
    /*  margin-bottom: 30px !important; */
    float: left;
    transition: all 0.5s ease;
    position: relative;
}

.image-text-box:nth-child(3n) {
    /* margin-right: 0 !important; */
}

.image-text-box:hover:after {
    /* background: #ffe10066; */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
}

.image-text-box.et_pb_module {
    display: flex;
    /* align-items: center; */
    flex-flow: column;
    justify-content: center;
}

.image-text-box .et_pb_promo_description,
.image-text-box a.et_pb_button.et_pb_promo_button {
    z-index: 1;
    padding-bottom: 10px;
}

.image-text-box .et_pb_promo_description h2.et_pb_module_header {
    font-size: 24px !important;
}

.image-text-box .et_pb_promo_description p {
    font-weight: 500;
}

.image-text-box:hover {
    color: #000;
}

.image-text-box:hover:before {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0;
    /* display: none; */
}

.image-text-box:hover,
.image-text-box:hover h2 {
    color: #000 !important;
}

.image-text-box:hover h2 {
    font-size: 20px !important;
}

.image-text-box p,
.image-text-box .et_pb_button {
    display: none;
    visibility: hidden;
    opacity: 0;
    /* animation-duration: 1s; */
    transition: all 0.3s ease-in !important;
}

.image-text-box:hover p,
.image-text-box:hover .et_pb_button {
    display: block;
    visibility: visible;
    opacity: 1;
}

body #page-container #et-main-area .et_pb_section .et_pb_module.image-text-box .et_pb_button {
    font-size: 11.56px !important;
    min-width: 106px !important;
    /* background-color: #888887; */
    border: 0;
    color: #FFF;
}

body #page-container #et-main-area .et_pb_section.product-section .et_pb_module.image-text-box .et_pb_button:hover {
    background: #888887 !important;
    /* color: #000 !important; */
}

.image-text-box:hover h2.et_pb_module_header {
    font-size: 19px !important;
}

.image-text-box ul {
    padding: 0 15px;
    /* height: 105px; */
    overflow: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    list-style: disc !important;
}

.image-text-box ul::-webkit-scrollbar {
    display: none;
}

.image-text-box ul li {
    padding: 0;
    margin: 0;
    line-height: 16px;
    text-align: left;
}


/* PRODUCTS STYLING FOR DIFFERENT PAGES*/


/* ---------------------------------------- */

.product-yellow-bg .image-text-box:hover h2.et_pb_module_header {
    color: #000 !important;
}

.product-yellow-bg .image-text-box:hover:after {
    background: #ffe100CC;
}

.product-green-bg .image-text-box:hover,
.product-green-bg .image-text-box:hover h2,
.product-blue-bg .image-text-box:hover h2,
.product-pink-bg .image-text-box:hover h2 {
    color: #FFF !important;
}

.product-green-bg .image-text-box:hover:after {
    background: #00b258CC;
}

.product-blue-bg .image-text-box:hover:after {
    background: #0069b4CC;
}

.product-pink-bg .image-text-box:hover:after {
    background: #c3097dCC;
}


/* INFOGRAPH STATS */

.overlay-text,
#stats-count-section .et_pb_column .overlay-text {
    display: none;
}

.cta-infograph .et_pb_promo_description,
#stats-count-section .et_pb_column {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    /* flex-flow: wrap; */
    flex-flow: column;
    justify-content: center;
}

.cta-infograph:hover .overlay-text,
#stats-count-section .et_pb_column:hover .overlay-text {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    font-size: 16px;
    line-height: 19px;
    padding: 40px 30px;
    background-color: #ffe100DD;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
}

#stats-count-section p {
    text-align: center;
}

.cta-infograph h4 {
    font-size: 16.69px;
    text-align: center;
    font-weight: 400;
}


/* VIDEO BANNER */

.video-banner-section p {
    /* min-height: 400px; */
    margin-bottom: 80px;
}

.video-banner-section .fluid-width-video-wrapper {
    padding-top: 65% !important;
}


/* TESTIMONIAL */

.testimonial-sec .et_pb_slide_overlay_container {
    background-color: rgba(0, 0, 0, 0) !important;
}

.testimonial-sec.no-border .et_pb_slide_content:before,
.testimonial-sec.no-border .et_pb_slide_content:after {
    border: 0;
}

.testimonial-sec.no-border .et_pb_slide_content {
    padding: 20px 5%;
}

.testimonial-sec .et_pb_slide .et_pb_slide_description {
    max-width: 980px !important;
}

.testimonial-sec .et_pb_slide_content .quote {
    font-size: 25px !important;
    line-height: 30px;
}


/* TEAM */

.team-row {
    font-family: 'Gotham Pro';
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.team-row .et_pb_column {
    margin: 0 !important;
    width: 16.66%;
    border-right: 3px solid #FFF;
    border-left: 3px solid #FFF;
    position: relative;
}

.team-row .et_pb_column:first-child {
    border-left: 6px solid #FFF;
}

.team-row .rounded-image {
    position: absolute;
    top: -92.5px;
    left: calc(50% - 92.5px);
}

.rounded-image {
    overflow: hidden !important;
    height: 185px;
    width: 185px;
    border-radius: 100%;
    margin: 0 auto !important;
}

.rounded-image .et_pb_image_wrap {
    position: initial;
}

.rounded-image img {
    width: 100%;
    height: auto !important;
    object-fit: cover !important;
    position: absolute;
    top: 0;
    left: 0px;
    height: 100% !important;
    /* width: 100%;
    height: auto !important;
    margin: 30px 1.115%;
    transform: scale(1.5, 1.5); */
}

.plain-button {
    display: inline-flex;
    justify-content: center;
    min-width: 100px;
    padding: 10px;
    border: 1px solid #bcbdc0;
    border-radius: 5px;
    color: #66696a !important;
    line-height: 11.9px;
    margin-top: 15px;
    text-decoration: none;
}

.team-row .et_pb_promo_description {
    padding-bottom: 76px;
    /* margin-bottom: 38px; */
}

.plain-button span {
    background: url('assets/img/icon_plus.svg');
    background-repeat: no-repeat;
    background-size: 11.9px;
    padding-left: 12px;
}

body #page-container #et-main-area .team-row .et_pb_column .et_pb_button {
    visibility: hidden;
    opacity: 0;
    border-radius: 0 !important;
    transition: all 0.5s ease;
    min-width: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

body #page-container #et-main-area .team-row .et_pb_column:hover .et_pb_button {
    visibility: visible;
    opacity: 1;
    border-radius: 0 !important;
}

body #page-container #et-main-area .et_pb_section.team-row .et_pb_module .et_pb_button {
    border-radius: 0 !important;
}

body #page-container #et-main-area .et_pb_section.team-row .et_pb_module .et_pb_button:hover {
    border-radius: 0 !important;
}

body #page-container #et-main-area .team-row .et_pb_button:hover {
    /* background: #ffdf00 !important; */
    /* border-radius: 0 !important; */
    /* border: 0; */
    /* border-color: #ffdf00 !important; */
    /* color: #000 !important; */
}


/*div#team-section.team-row {
    padding-top: 100px;
}*/

.team-row h4.et_pb_module_header,
.team-row p {
    text-transform: uppercase !important;
    text-align: center;
}

p.team-contact {
    text-transform: unset !important;
}

#team-section.team-row .et_pb_row {
    margin-right: 0 !important;
    width: 100% !important;
    display: block !important;
    float: none;
    max-width: none !important;
    padding: 2% 0 !important;
}


/* HOMEPAGE ICON TEXT */

.icon-text-row .et_pb_column>.icon,
.icon-text-row .et_pb_column>.hover-icon {
    min-height: 249px;
    max-height: 249px;
}

.icon-text-row .et_pb_column:hover>.icon,
.icon-text-row .et_pb_column:not(:hover)>.hover-icon {
    display: none;
}

.icon-text-row .et_pb_column>.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-text-row .et_pb_column>.hover-icon {
    background: linear-gradient(45deg, #0066B3, #C81B77);
    padding: 40px;
    border-radius: 100%;
    width: 249px;
}

.icon-text-row .et_pb_column .hover-icon img {
    max-height: 169px;
}


/* Sector Box  */

.rt-triangle:after {
    border-top: 148px solid transparent;
    border-bottom: 148px solid transparent;
    border-right: 75px solid #ffdf00;
    content: '';
    right: 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* CONTACT SECTION */

.lt-offgrid-sec.inner-page .et_pb_promo_description p {
    margin: 30px 0 60px 0;
    font-size: 16.5px;
    line-height: 19.8px;
    text-align: center;
}


/*-------------------------------------------------------------------------------------
 GIG PAGE  
-------------------------------------------------------------------------------------*/


/* EVENTS Section  */

.event-text-col h3 {
    padding-bottom: 30px;
}

.event-text-col p {
    /* min-height: 400px; */
    margin-bottom: 80px;
}


/* VIDEO Slider  */

.video-slider .dica_divi_carousel_1.dica_divi_carousel .dica_divi_carouselitem .dica-image-container img,
.video-slider .dica_divi_carousel_1.dica_divi_carousel .dica_divi_carouselitem .dica-image-container img,
.video-slider .dica_divi_carousel_2.dica_divi_carousel .dica_divi_carouselitem .dica-image-container img {
    padding-bottom: 0 !important;
}


/* TESTIMONIAL Section  */

.left-img.testimonial-sec .et_pb_slide .et_pb_slide_image {
    right: auto;
    left: -5%;
}

.testimonial-sec.et_pb_section .et-pb-controllers .et-pb-active-control {
    background-color: #3d3c3b !important;
}


/* INNER PAGE MENU  */

.inner-page-menu ul.et-menu li {
    flex: auto;
    position: relative;
}

.inner-page-menu ul.et-menu li:before {
    position: absolute;
    top: -4px;
    right: 35px;
    width: 2px;
    height: 100%;
    background: #b2b2b2;
    content: '';
}

.inner-page-menu ul.et-menu li:last-child:before {
    background: none;
}

.inner-page-menu ul.et-menu li:hover a {
    color: #dec000 !important;
}


/* --------------------------------------------
STRATEGY ADVISORY PAGE
-------------------------------------------- */

.icon-row-section .et_pb_column {
    width: 25%;
    margin: 0 !important;
    min-height: 465px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.icon-row-section .et_pb_column:hover {
    padding-top: 25px;
}

.icon-row-section img.aligncenter {
    margin-bottom: 25px;
}

.icon-row-section .et_pb_module.et_pb_text {
    max-width: 190px;
    margin: 0 auto;
}

.icon-row-section .et_pb_promo_description {
    padding-bottom: 50px;
}

.icon-row-section .et_pb_promo_description p {
    text-align: center;
}

.icon-row-section .et_pb_column.et_pb_image,
.icon-row-section .et_pb_column.et_pb_text,
.icon-row-section .et_pb_column .et_pb_promo {
    transition: all 0.5s ease-in;
    animation-duration: 0;
}

.icon-row-section .et_pb_column:hover .et_pb_text,
.icon-row-section .et_pb_column:not(:hover) .et_pb_promo {
    display: none;
}

.strat-cta-col {
    display: block !important;
    padding: 7% 0 !important;
}

.gig-cta-col,
.leadership-cta-col {
    display: block !important;
    padding: 0 !important;
}

.strat-cta-col .et_pb_cta_7,
.strat-cta-col .et_pb_cta_8,
.strat-cta-col .et_pb_cta_9,
.strat-cta-col .et_pb_cta_13,
.strat-cta-col .et_pb_cta_12,
.strat-cta-col .et_pb_cta_11,
.strat-cta-col .et_pb_cta_23,
.strat-cta-col .et_pb_cta_24,
.strat-cta-col .et_pb_cta_26,
.strat-cta-col .et_pb_cta_27 {
    padding: 0 20px;
    margin: 10px 0 !important;
    float: left;
}


/* ---------------------------------------------
Impact Page
--------------------------------------------- */

.rt-triangle.lt-offgrid-sec .image-col .et_pb_image .et_pb_image_wrap {
    width: 100% !important;
}

.rt-triangle.lt-offgrid-sec .image-col .et_pb_image img {
    position: relative;
    width: 100%;
}

#impact-intro.rt-triangle:after,
#events-section.lt-triangle:before {
    z-index: 1;
}


/* HELP Section  Overlay*/

.overlay-cta .et_pb_column {
    max-width: 50%;
    left: auto !important;
    right: 0;
    bottom: 35px !important;
    text-align: right;
}

.overlay-cta .et_pb_module {
    /* margin-right: 60px !important;
    margin-left: 0; */
    display: inline-block;
    margin-right: 0 !important;
    margin-left: 50px !important;
    width: calc(25% - 60px) !important;
}

.overlay-cta .et_pb_promo_description {
    padding-bottom: 0;
}

.overlay-cta img {
    margin-bottom: 18px;
}

.overlay-cta .et_pb_promo_description p {
    margin: 0 !important;
}


/* SUBSCRIBE FORM CSS  */

.gform_wrapper .subscribe-form .top_label div.ginput_container {}

.subscribe-form .gform_body {
    width: calc(100% - 150px) !important;
    float: left;
}

.gform_wrapper .subscribe-form,
.gform_wrapper .subscribe-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscribe-form .gform_heading,
.subscribe-form label {
    display: none !important;
}

.subscribe-form ul li {
    margin: 0 !important;
    width: 100% !important;
}

.gform_wrapper .subscribe-form .gform_footer {
    padding: 0;
    margin: 0;
    clear: unset;
}

.subscribe-form .ginput_container {
    margin: 0;
}

.subscribe-form .ginput_container input[type=email] {
    float: left;
    /* width: calc(100% - 150px) !important; */
    border-radius: 20px 0 0 20px;
    border: 0;
    padding: 15px 15px 15px 30px !important;
    height: 44px;
    font-size: 22px;
}

.subscribe-form input.gform_button[type=submit] {
    text-transform: uppercase;
    border-radius: 0 20px 20px 0 !important;
    border: 0;
    background: #ffdf00;
    min-width: auto !important;
    width: 150px;
    border-color: #ffdf00;
    margin: 0;
    /* margin-left: -3px; */
    float: left;
    padding: 15px !important;
    text-align: left;
}

.subscribe-form input#gform_submit_button_1:hover {
    cursor: pointer;
}

.gform_wrapper li.gfield.gfield_error {
    background: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gform_wrapper .field_description_below .gfield_description {
    display: none;
}


/* ICON ROW SECTION  */

.icon-row-section [class*=" et_pb_cta_"] img {
    width: 150px;
    height: 150px;
}

.icon-row-section.et_pb_column>.icon,
.icon-row-section .et_pb_column>.hovericon {
    min-height: 150px;
}

.icon-row-section .et_pb_column:hover>.icon,
.icon-row-section .et_pb_column:not(:hover)>.hovericon {
    display: none;
}

.icon-row-section .et_pb_column>.hovericon {
    height: 150px;
    background: linear-gradient(45deg, #0066B3, #C81B77);
    width: 150px;
    border-radius: 100%;
    padding: 22px;
}

.icon-row-section .et_pb_column .hovericon img {
    width: 100%;
}


/* TEAM CONTACT SECTION  */

#team-section h4.et_pb_module_header {
    text-transform: uppercase;
}

.team-contact {
    margin: 0 auto;
    width: 80%;
    text-align: left;
    color: #000 !important;
    display: none;
    padding-top: 15px;
}

.team-contact br {
    display: none;
}

.team-contact a {
    position: relative;
    color: #000 !important;
    padding: 4px 0;
    display: block;
    padding-left: 20px;
    text-align: left;
}

.team-contact a:before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 100%;
    font-family: ETmodules !important;
    speak: none;
}

.team-contact a.linked-in:before {
    content: '\e09d';
}

.team-contact a.tel:before {
    content: '\e090';
}

.team-contact a.mail:before {
    content: '\e076';
}

.team-contact.show,
.show {
    display: block;
}


/* SUBPAGE CSS  */

.aboutpage-handbook .et_pb_module p {
    text-align: center;
}

.aboutpage-handbook .et_pb_module .et_pb_button:hover {
    background: #000;
}

.inline-list ul,
.inline-list p,
.inline-list ul li {
    display: inline;
}

.inline-list ul li a:hover {
    color: #666;
}

.partners-logo-col.innerpage-clients.et_pb_column {
    /* display: flex; */
    align-self: center;
}

.innerpage-clients .et_pb_image .et_pb_image_wrap,
.innerpage-clients .et_pb_image .et_pb_image_wrap picture {
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
}

.partners-logo-col.innerpage-clients .et_pb_image,
.partners-logo-col.innerpage-clients .et_pb_image[class*='et_pb_image'],
.et-db #et-boc .et-l .partners-logo-col.innerpage-clients .et_pb_image[class*='et_pb_image'] {
    float: left;
    width: 25%;
    padding: 10px 25px;
    margin: 0 !important;
    margin-bottom: 20px !important;
}

.partners-logo-col.innerpage-clients .et_pb_image[class*='et_pb_image'] {
    max-width: 100% !important;
    width: 25% !important;
}

.partners-logo-col .et_pb_image.et_pb_image_7 {
    width: 25%;
    max-width: 100%;
    margin-left: 0 !important;
}

.home .partners-logo-col.innerpage-clients .et_pb_image {
    width: calc(33.33% - 30px);
    max-width: calc(33.33% - 30px);
    margin-left: 0 !important;
    margin-right: 30px;
    margin-right: 30px !important;
    margin-bottom: 30px !important;
    margin-top: 0 !important;
}

.partner-three-col .partners-logo-col.innerpage-clients .et_pb_image {
    width: 33.33% !important;
}

.innerpage-clients img {
    max-width: 100% !important;
    max-height: 100% !important;
    display: block;
}

.partners-logo-col.innerpage-clients .et_pb_image:nth-of-type(3n+1) {
    clear: unset;
}

.testimonial-sec .et_pb_slide_content .position,
.testimonial-sec .et_pb_slide_content .company {
    text-transform: uppercase;
}

.subscribe-sec .et_pb_row {
    max-width: 1450px !important;
}


/* OVERLAY COLORS  */

.yellow-overlay:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 225, 0, 0.35);
    z-index: 1;
}

.pink-overlay:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(197, 0, 116, 0.35);
    z-index: 1;
}

.blue-overlay:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(72, 125, 191, 0.35);
    z-index: 1;
}

.green-overlay:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(6, 166, 72, 0.35);
    z-index: 1;
}


/* CUSTOM CONTAINER and CUSTOM STYLING FOR INNER PAGES */

body.single-post article.post .post-header h1 {
    width: 100%;
}

.container.content.one-col ul,
.container.content.one-col p,
.container.content.one-col table,
.container.content.one-col h2 {
    max-width: 100% !important;
    width: 100%;
}

.container.content.one-col h2 {
    text-align: center;
}

.black-bg {
    background-color: #231f20 !important;
}

section.block.clients_container {
    padding: 0 !important;
    margin-bottom: 10px;
}

.container.max-md.custom-container,
.custom-container,
.container.max-md {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
}

.custom-container .clients_image_wrapper {
    width: 56% !important;
    height: 500px !important;
    position: relative !important;
    margin-right: 4%;
}

.custom-container .clients_image_wrapper .clients_image_border {
    z-index: 9;
    background-size: contain !important;
    margin: 25px 0;
    margin-left: calc((-100vw + 70vw)/2);
}

.custom-container .clients_image_wrapper .clients_image {
    background-image: url('../img/inner-banner-img.png') !important;
    z-index: 2;
    background-size: cover !important;
    margin-left: calc((-100vw + 76vw)/2);
    border-radius: 0;
    /* position: unset; */
    left: 0;
    height: 100%;
    top: 0;
    width: calc(100% + 27%);
}

.custom-container .lt-image-skew:before {
    position: absolute;
    content: '';
    height: 0;
    width: 0;
    top: 0;
    right: 2%;
    z-index: 4;
    border-style: solid;
    border-width: 0px 94px 420px 0px;
    border-color: transparent #231f20 transparent transparent;
}

.custom-container .lt-image-skew:after {
    /* width: 200% !important; */
    z-index: 3;
}

.clients_image_border {
    display: none;
}

.custom-container .clients_main {
    width: 40%;
    color: #FFF;
}

.clients_main h2 {
    font-size: 45.06px
}

.clients_main h2,
.sub_heading {
    margin-bottom: 15px;
    text-align: center;
    padding: 0;
    color: #FFF;
}

.clients_main .clients_content {
    max-width: 100% !important;
    text-align: justify;
    font-size: 16.5px;
    line-height: 19.8px;
}

.clients_main .clients_contact {
    justify-content: center !important;
}

.clients_main .button {
    border: 2px solid;
    border-width: 2px !important;
    border-radius: 100px !important;
    font-size: 14.76px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    min-width: 225px !important;
    padding: 10px 15px !important;
    text-align: center;
}

.clients_main .button:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    border-width: 2px !important;
    border-radius: 100px !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
}


/* Testomonial Section  */

.testimonial_content {
    background-color: #ffe100;
    padding: 0;
    width: 100%;
}

.testimonial_content .testimonial-slider.slick-slider {
    margin-bottom: 0;
    padding: 110px 0 150px;
}

.testimonial_content .testimonial-slider .slick-list {
    overflow: visible;
}

.testimonial_content .testimonial-slide {
    position: relative;
}

.testimonial_content .testimonial-img {
    position: absolute !important;
    border: 0;
    bottom: -150px;
    right: -15%;
    content: '';
    width: auto;
    height: auto;
}

.testimonial_content blockquote p {
    font-family: 'Gentium Book Basic';
    font-style: italic;
    font-size: 25px !important;
    line-height: 30px;
    padding-bottom: 1em !important;
    color: #000 !important;
}

.testimonial_content blockquote:after,
.testimonial_content blockquote:before {
    display: none !important;
}

.testimonial_content h4 {
    font-family: 'Gotham Pro';
    font-size: 24.97px;
    font-weight: 500;
    font-style: normal;
}

.testimonial_content .organisation {
    font-size: 15.11px !important;
}

.testimonial_content .title {
    font-size: 18.12px !important;
}

.testimonial_content blockquote,
.testimonial_content p,
.testimonial_content h4 {
    text-align: center;
    max-width: 980px;
    margin: 0 auto !important;
    border: none;
}

.testimonial_content .slick-dots {
    bottom: 40px;
}

.testimonial_content .slick-dots li button:before {
    opacity: 1;
    background-color: #FFF;
    width: 14px;
    height: 14px;
    box-shadow: none;
}

.testimonial_content .slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #3d3c3b;
}

.testimonial-sec .et_pb_slide .et_pb_slide_image {
    display: none;
}


/* Misc Fixes */

body #page-container #et-main-area .et_pb_section .list-cta-col .et_pb_module .et_pb_module_header {
    transition: all 0.3s ease;
}

body #page-container #et-main-area .et_pb_section .list-cta-col .et_pb_module:hover .et_pb_button,
body #page-container #et-main-area .et_pb_section .list-cta-col .et_pb_module:hover .et_pb_module_header {
    color: #ffdf00 !important;
}

body.et-db.single-sector #page-container #et-boc .et-l .et_pb_section .et_pb_button_0 {
    border-width: 2px !important;
}

.et_pb_section h3 {
    font-size: 45.06px !important;
}

.help-section {
    margin-bottom: 10px !important;
}

body.et-db #page-container #et-boc .et-l .et_pb_section .et_pb_button_0 {
    border-width: 2px !important;
}

.logged-in.admin-bar .login-menu-wrap .top>div,
.login-menu-wrap .top>div {
    float: right !important;
}

.ms-right .et_pb_module.et_pb_text {
    background-position: top left;
}

#call-gig-section .et_pb_column:hover img {
    transform: rotate(360deg);
    /* animation-duration: 1s; */
    transition: all 2s ease;
}

.single-sector .yellow-overlay:before,
.apply-online .yellow-overlay:before {
    background: none;
}


/* Oppurtinities single page  */

body.single-opportunity main {
    background-image: none !important;
}

article.opportunity {
    padding: 30px 0;
}

article.opportunity .row {
    display: flex;
}


/* TEAM ARCHIVE PAGE  */

.page-template-template-consultants main {
    padding-bottom: 10px !important;
}

.team-archive-wrapper {
    background-image: url('../img/pattern-bg.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    position: relative;
}

.team-archive-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffe100AA;
}

.team-archive-wrapper .container {
    background: #FFF;
}

.team-archive-wrapper .profile-container {
    margin-top: 140px;
    margin-bottom: 60px;
    min-width: auto;
    max-width: unset;
}

.specialists_content .container.specialists-container li.col.xs-12.sm-6.md-6.lg-4 {
    width: 20% !important;
}

.specialists-container .specialist-list {
    text-align: center;
}

.specialist-list h1 {
    padding-top: 30px;
}


/* SECTORS SUBPAGE STYLING */

.who_we_work_with_container {
    background-image: url('../img/pattern-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


/* CASE STUDY PAGES  */

.case-header-section.et_pb_section {
    padding: 0;
}

.case-header-section .et_pb_column {
    margin: 0;
}

.case-header-section .et_pb_column .et_pb_module.et_pb_image {
    text-align: center;
}

.case-header-section .et_pb_column .et_pb_image .et_pb_image_wrap {
    height: 100px;
}

.case-header-section .et_pb_column .et_pb_image .et_pb_image_wrap img {
    height: 100%;
    max-width: unset;
    width: auto;
}

.case-header-section .et_pb_column .et_pb_text_inner {
    text-align: center;
}

.case-header-section .et_pb_column .et_pb_module {
    /* text-align: center !important; */
    font-size: 25.11px;
}

.case-header-section .et_pb_column .et_pb_module h2 {
    font-size: 38px;
    padding-bottom: 0;
}

.case-header-section .et_pb_column .et_pb_module p {
    text-align: center;
}

.case-content-section.et_pb_section {
    padding: 40px 0;
}

.case-content-section .et_pb_column {
    width: calc(82% - 40px);
}

.case-content-section .et_pb_column:first-child {
    width: 18%;
    margin-right: 40px;
}

.case-content-section .et_pb_image_wrap,
.case-content-section .et_pb_image img {
    width: 100%;
}

.case-content-section .et_pb_column ul {
    list-style: disc;
    padding-left: 20px;
}


/* Parallaz Banner  */

.custom-parallax-slider .et_pb_slide_image {
    height: 217px;
}

.custom-parallax-slider .et_pb_slide:first-child .et_pb_slide_image img {
    opacity: 1;
}

.et_pb_fullwidth_slider_0.et_pb_slider .et_pb_slide_image img {
    max-height: 100% !important;
}

.custom-parallax-slider .et-pb-active-slide .et_pb_slide_image,
.custom-parallax-slider .et-pb-active-slide .et_pb_slide_description {
    animation-name: fadeLeft !important;
}


/* VALUES SECTION  */

div#values-section .et_pb_image_wrap {
    overflow: hidden;
}

div#values-section .et_pb_image_wrap img {
    transition: all 0.3s ease;
}

div#values-section .et_pb_image_wrap:hover img {
    transform: scale(1.1);
}


/* GIF OVERLAY  */

.gif-overlay {
    position: absolute;
    top: 40px;
    left: auto;
    right: 190px;
    height: 48px !important;
    width: auto;
}

.gif-overlay .et_pb_image_wrap,
.gif-overlay img {
    height: 100%;
}


/* BLOG CAROUSEL  */

picture.carousel-image {
    max-height: 250px !important;
    max-width: 250px;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    border-radius: 100%;
}

div#custom-blog-carousel img,
div#custom-blog-carousel2 img {
    max-height: 100% !important;
    height: 250px;
    object-fit: cover;
}

.splitscreen-slider-wrap {
    height: 100%;
    width: 100%;
    background: url('../img/fallback-bg.jpg');
}

.onload-slider-bg .splitscreen-slider-wrap {
    background: none;
}


/* REQUEST A PROGRAM  */

div#request-program {
    margin: 0 auto;
    text-align: center;
}

.program-request-form #gform_wrapper_25 .gform_fields .gfield {
    /* display: block !important; */
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.program-request-form #gform_wrapper_25 .gform_button {
    background: #000;
    color: #FFF !important;
    border-color: #000;
}

.program-request-form #gform_wrapper_25 .gform_button:hover {
    background: #ffe100 !important;
    color: #000 !important;
}


/* GFORM  */

.gfield_description,
.gform_fields .ginput_complex>span label,
.gfield_label {
    font-size: 16px !important;
}


/* INSIGHTS AND RECENT Slider  */

div#custom-blog-carousel h3,
div#custom-blog-carousel2 h3 {
    font-size: 20px !important;
    padding: 0 10px;
}

.toggle-menu-wrap {
    overflow-y: scroll;
    height: 100vh;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.toggle-menu-wrap::-webkit-scrollbar {
    display: none;
}

div#custom-search-form-wrap {
    margin-bottom: 45px;
}

.slanted-img-cta-sec .et_pb_column:nth-child(2) {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.slanted-img-cta-sec .image-col .et_pb_text h3 {
    font-size: 33px !important;
}

.opportunity-form1,
.opportunity-form2,
.opportunity-form3,
.opportunity-form4 {
    padding: 55px 22px !important;
}

body.et-db #page-container #et-boc .et-l .et_pb_section.help-section .content-col a.et_pb_button:hover {
    color: #FFF !important;
}

.share-block-buttons li a:hover {
    background: none !important;
}


/* SEARCH RESULT PAGE  */

.search-result-page {
    max-width: 1140px;
    margin: 40px auto;
    padding: 0 30px;
}

.search-form input {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #444444;
    padding: 10px;
    font-size: 16px;
    background: url('../img/search-field-icon.png') no-repeat scroll 99% center;
}

.search-result-page .cpt_type {
    background-color: #ffdf00;
    padding: 10px 0;
}

.search-result-page .cpt_type hr {
    display: none;
}

.search-result-page .cpt_type h4 {
    padding: 10px;
}

.search-content {
    /* margin-top: 40px; */
}

.search-item-category {
    margin-top: 40px;
}

.search-item {
    /* margin-bottom: 10px; */
    clear: both;
    border-bottom: 1px solid #CCC;
    padding: 10px 0;
    /* display: flex; */
    /* align-items: center; */
    /* float: left; */
    display: inline-block;
    width: 100%;
}

.search-item img {
    width: 150px;
    margin-right: 15px;
    display: block;
    float: left;
}

.search-item-detail {
    /* width: auto; */
    display: table-cell;
}

.search-item h2 {
    /* padding-bottom: 0; */
    line-height: 1;
}

.search-item a {
    font-size: 22px;
    font-weight: 500;
    /* border-bottom: 1px solid #CCC; */
    /* display: block; */
    padding-bottom: 5px;
}

.search-item p a {
    font-size: 12px;
    font-weight: 100;
    color: #ffdf00;
}

form#searchform {
    margin-bottom: 45px;
}


/*-----------------------------------------------
EVENT SINGLE PAGE  2021/06/25
------------------------------------------------*/

.event-single-section {
    padding: 50px 0;
    background: url('/wp-content/uploads/2021/08/events-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

h2.event-header {
    text-align: center;
}

.half-width {
    max-width: 50%;
    overflow: hidden;
}

.event-detail {
    margin-top: 20px;
}

.event-place {
    margin-bottom: 15px;
}

.pink-text {
    color: #c60074;
}

span.pink-text,
.event-detail p span {
    font-weight: 600;
}

.italic-text {
    font-style: italic;
}

.event-form {
    margin-top: 80px;
}

.event-form h3 {
    margin-bottom: 15px;
}

.event-book-form_wrapper,
.event-enquire-form_wrapper {
    margin-top: 30px;
    display: none;
}

.event-book-form_wrapper.show,
.event-enquire-form_wrapper.show {
    display: block !important;
}

.event-book-form_wrapper .gform_footer input,
.event-enquire-form_wrapper .gform_footer input,
.event-form .button.is-small,
.event-form .button.is-small {
    text-transform: uppercase !important;
    background-color: #e6007e !important;
    color: #FFF !important;
    border: 2px solid #e6007e !important;
    margin: 5px 0;
    margin-right: 10px;
}

#event-enquire-session {
    background-color: #ffe100 !important;
    color: #000 !important;
    border-color: #ffe100 !important;
}

.event-book-form_wrapper .gform_footer input:hover,
.event-enquire-form_wrapper .gform_footer input:hover,
.event-form .button.is-small:hover,
.event-form .button.is-small:hover,
#event-enquire-session:hover {
    background: #000 !important;
    color: #FFF !important;
    border-color: #000 !important;
}

.event-book-form_wrapper .gform_footer,
.event-enquire-form_wrapper .gform_footer {
    text-align: center;
}

.event-book-form_wrapper li,
.event-enquire-form_wrapper li {
    width: 100% !important;
}

.event-book-form_wrapper li span,
.event-enquire-form_wrapper li span {
    margin-bottom: 0 !important;
}

.event-book-form_wrapper li,
.event-enquire-form_wrapper li.gform_hidden {
    margin: 0;
}

.event-single-section .event-img-wrap {
    /* max-width: 800px; */
    /* margin: 0 auto; */
}


/* EVENT ARCHIVE PAGE  */

#event-tickets-link.event-info-button {
    /* min-width: 150px !important; */
}

.archive-event-list {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #CCC;
}

.archive-event-list .event-img-wrap {
    margin: 25px 0 !important;
    width: 25%;
    align-self: flex-start;
}

.event-detail.event-list-detail {
    width: 50%;
    padding: 25px;
    margin: 0;
}

.event-list-detail p {
    padding-bottom: 5px;
}

.event-list-btn {
    width: 25%;
    text-align: center;
    margin-top: 0;
}

.event-list-btn .button.is-small {
    /* margin-right: 0; */
    margin: 5px 0;
}

.event-detail.event-list-detail h2.event-header,
h2.event-header {
    font-size: 31px;
    text-align: left;
    line-height: 1;
}

.logged-in.admin-bar.single-sector .login-menu-wrap .top .menu-toggle:before {
    transform: translate(100%, -50%);
}

.single-sector .login-menu-wrap .top .menu-toggle:before {
    transform: translate(100%, -50%);
}

.login-menu-wrap .top .menu-toggle {
    display: block !important;
}

.single-sector .login-menu-wrap .top {
    margin: 0 !important;
    width: 100% !important;
}


/* ---------------------------------------------------
RESPONSIVE
--------------------------------------------------- */

@media (max-width: 1920px) {
    .custom-container .lt-image-skew:before {
        right: -1px;
        border-width: 0px 111px 495px 0px;
    }
}

@media (max-width: 1700px) {
    .et-l--header .et_pb_column {
        margin-right: 2%;
    }
}

@media (max-width: 1500px) {

    #team-section.team-row.et_pb_row,
    .strategy-team .team-row.et_pb_row {
        /* width: 100%; */
        margin: 160px auto !important;
        margin-bottom: 0 !important;
        flex-wrap: wrap;
    }

    .team-row .et_pb_column,
    .strategy-team .team-row .et_pb_column {
        margin-bottom: 0px !important;
    }

    .team-row .et_pb_column:last-child,
    .strategy-team .team-row .et_pb_column:last-child {
        margin-bottom: 0 !important;
    }

    .inner-page.help-section .et_pb_row {
        width: 90%;
    }

    .overlay-cta .et_pb_promo_description {
        font-size: 12px;
    }

    .articles .blog_posts-container .blog-category-posts .col.md-4 {
        width: 50%;
        margin-bottom: 40px;
    }

    div#events-section .et_pb_column:first-child {
        padding-right: 10%;
    }
}

@media (max-width: 1440px) {

    .timeline-row .timeline-box .et_pb_text_inner:before,
    .timeline-row .timeline-box .et_pb_text_inner:after,
    .timeline-row .timeline-box:nth-child(even) .et_pb_text_inner:before,
    .timeline-row .timeline-box:nth-child(even) .et_pb_text_inner:after {
        display: none !important;
    }

    .help-section .et_pb_column:nth-child(2) {
        padding-top: 70px !important;
    }
}

@media (max-width: 1369px) {
    .et-l--header .et_pb_column {
        margin-right: 0%;
    }

    .product-section .et_pb_column {
        margin-right: 0 !important;
    }

    .product-section .image-text-box {
        /* width: calc(50% - 30px)!important; */
        width: calc(33% - 30px) !important
    }

    .product-section .et_pb_column br {
        display: none;
    }

    .video-banner-section .et_pb_module.et_pb_video {
        width: auto;
    }

    .et-db #et-boc .et-l #team-section.team-row.et_pb_row,
    #team-section.team-row.et_pb_row,
    .strategy-team .team-row.et_pb_row {
        /* width: 100%; */
        margin: 160px auto !important;
        margin-bottom: 0 !important;
        flex-wrap: wrap;
        background: #FFF;
    }

    .team-row .et_pb_column,
    .strategy-team .team-row .et_pb_column {
        width: 25%;
        margin-bottom: 160px !important;
        border: 1px solid #FFF !important;
        width: 33%;
        padding: 0 10px;
        background: #ededed;
    }

    .team-row .et_pb_column:nth-of-type(n+4) {
        margin-bottom: 0 !important;
    }

    .team-row .rounded-image {
        position: absolute;
        top: -80px;
        left: calc(50% - 80px);
        height: 160px;
        width: 160px;
    }

    .team-row .et_pb_column:last-child,
    .strategy-team .team-row .et_pb_column:last-child {
        margin-bottom: 0 !important;
    }

    #values-section .et_pb_row {
        display: flex;
    }

    #values-section .et_pb_column .et_pb_module.et_pb_text {
        min-height: 170px;
    }

    #events-section .et_pb_row {
        max-width: 90% !important;
    }

    #events-section.lt-triangle:before {
        z-index: 0;
    }

    .product-section .et_pb_equal_columns .et_pb_column {
        padding: 0 15px;
        width: 50% !important;
    }

    .product-section .et_pb_equal_columns .image-text-box {
        margin-bottom: 30px !important;
        height: 285px !important;
    }

    .page-id-1309 .product-section {
        padding: 30px 0 0 !important;
    }

    #impact-intro.rt-triangle:after {
        z-index: auto;
    }

    .strat-cta-col {
        padding-bottom: 0 !important;
    }

    .product-section .et_pb_equal_columns .et_pb_column:nth-child(1) {
        width: 60% !important;
    }

    .product-section .et_pb_equal_columns .et_pb_column:nth-child(2) {
        width: 40% !important;
    }

    .event-detail.event-list-detail {
        width: 75%;
    }

    .event-list-btn {
        width: 35%;
    }
}

@media (max-width: 1299px) {
    .slanted-img-cta-sec .et_pb_equal_columns {
        display: block;
    }

    .slanted-img-cta-sec .et_pb_promo_description h2 br {
        display: none;
    }

    .help-section .et_pb_column:nth-child(2) {
        padding-top: 30px !important;
        padding-bottom: 200px !important;
    }
}

@media (max-width: 1200px) {
    .et-l--header .et_pb_column {
        margin-right: 0% !important;
        width: 26.7% !important;
        margin-bottom: 0 !important;
    }

    .et-l--header .et_pb_column.login-menu-wrap .top {
        width: 100% !important;
    }

    .timeline-row .timeline-box:nth-child(odd):after,
    .timeline-row .timeline-box:nth-child(even):after {
        display: none;
    }

    #impact-intro.lt-offgrid-sec .et_pb_column,
    #impact-intro.lt-offgrid-sec .et_pb_column .et_pb_image {
        width: 100% !important;
    }

    #download-section .et_pb_text {
        width: 100% !important;
    }

    #download-section .et_pb_text {
        width: 100% !important;
    }

    .overlay-cta {
        position: absolute;
        /* bottom: 45%; */
        /* width: 100% !important; */
        left: 30px;
    }

    .overlay-cta .et_pb_column {
        max-width: 100% !important;
    }

    .slanted-img-cta-sec .content-col {
        padding-top: 30px;
    }

    .inner-partner-text {
        width: 100% !important;
    }

    .subscribe-sec.lt-offgrid-sec .image-col .et_pb_image {
        margin-left: -6%;
        margin-right: -6%;
    }

    .container.max-md.custom-container,
    .custom-container {
        flex-flow: column;
        width: 90%;
    }

    .custom-container .clients_image_wrapper,
    .custom-container .clients_main {
        width: 100% !important;
        margin-right: 0;
    }

    .clients_image_wrapper.lt-image-skew {
        /* margin-right: -3% !important;
        margin-left: -6%; */
    }

    .custom-container .clients_image_wrapper .clients_image {
        width: calc(100vw + 7.75%);
        background: url();
    }

    .custom-container .lt-image-skew:before {
        border-width: 0;
    }

    .specialists_content .container.specialists-container li.col.xs-12.sm-6.md-6.lg-4 {
        width: 25% !important;
    }

    .product-section .et_pb_equal_columns .et_pb_column:nth-child(1),
    .product-section .et_pb_equal_columns .et_pb_column:nth-child(2) {
        padding: 0;
        width: 100% !important;
        margin: 0;
    }

    .product-section .image-text-box {
        width: calc(50% - 30px) !important;
    }

    .strat-cta-col .et_pb_module {
        float: none;
        display: inline-block;
    }

    .strat-cta-col {
        text-align: center;
    }

    #impact-intro.lt-offgrid-sec .et_pb_column .et_pb_image {
        padding: 80px 25px 0 0;
    }

    div#events-section .et_pb_column:first-child {
        padding: 0;
    }

    .partners-logo-col.innerpage-clients .et_pb_image,
    .partners-logo-col.innerpage-clients .et_pb_image[class*='et_pb_image'],
    .et-db #et-boc .et-l .partners-logo-col.innerpage-clients .et_pb_image[class*='et_pb_image'] {
        width: 33.33% !important;
    }

    .subscribe-sec .image-col {
        margin-bottom: 0;
    }

    .subscribe-sec .content-col {
        position: absolute !important;
        top: 50%;
        left: auto;
        transform: translateY(-50%);
    }

    .subscribe-sec .et_pb_row {
        width: 100% !important;
    }
}

@media (min-width:992px) and (max-width: 1023px) {
    .image-text-box:nth-child(3n) {
        margin-right: 0 !important;
    }
}

@media (max-width: 1023px) {
    .product-section .et_pb_column {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .product-section .image-text-box {
        width: calc(33.33% - 20px) !important;
    }

    .product-section .et_pb_cta_6.et_pb_promo {
        padding-top: 0 !important;
    }

    .product-section .et_pb_column br,
    .video-banner-section h3 br,
    .call-gig-section h3 br,
    #events-section h3 br {
        display: none;
    }

    .product-section .et_pb_equal_columns {
        display: block;
    }

    .product-section .et_pb_equal_columns .img-text-box-col {
        margin-bottom: 30px;
    }

    .product-section .et_pb_equal_columns .et_pb_column {
        width: auto !important;
    }

    .page-id-1309 .product-section .et_pb_column {
        padding-bottom: 30px;
    }

    .page-id-1309 .product-section .et_pb_column.img-text-box-col {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .page-id-1309 .product-section:nth-child(even) {
        background: #f6f6f6;
    }

    .strat-cta-col {
        padding: 0 !important;
        text-align: center;
    }

    .strat-cta-col .et_pb_module {
        display: inline-block;
        margin: 20px 0 !important;
        float: unset !important;
    }

    .footer-sec .et_pb_column--with-menu .et_pb_menu_1_tb_footer {
        margin-top: 0px !important;
    }

    .footer-sec .et_pb_column--with-menu .et_pb_text_3_tb_footer,
    .footer-sec .et_pb_column--with-menu .et_pb_text_2_tb_footer {
        margin: 0;
        width: 50%;
        float: left;
    }
}

@media (max-width: 991px) {
    .inner-banner-wrap {
        background-position: top left !important;
    }

    .inner-banner-wrap .et_pb_row_0.et_pb_row {
        margin: 0 auto !important;
        /* display: flex;
        align-items: center; */
    }

    .inner-banner-wrap .et_pb_column {
        height: 100%;
        width: 100%;
    }

    .inner-banner-wrap .taglines.et_pb_text {
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
    }

    .product-section .et_pb_column,
    .product-section .et_pb_equal_columns .et_pb_column:nth-child(1),
    .product-section .et_pb_equal_columns .et_pb_column:nth-child(2) {
        width: 100% !important;
        margin: 0px !important;
    }

    .product-section .image-text-box {
        width: calc(33.33% - 20px) !important;
        /* margin: 0 30px !important; */
        display: flex;
        flex-flow: column;
        justify-content: center;
        height: 300px !important;
    }

    .product-section .image-text-box:nth-child(3n) {
        margin-right: 0 !important;
    }

    #stats-count-section .et_pb_column {
        width: 50% !important;
        margin: 0 !important;
    }

    #timeline-section .et_pb_module {
        width: 100%;
        margin-bottom: 40px !important;
    }

    .timeline-row .timeline-box:nth-child(odd):before,
    .timeline-row .timeline-box:nth-child(even):before {
        display: none;
    }

    .timeline-row .timeline-box .et_pb_text_inner {
        /* background: inherit; */
        text-align: center;
    }

    .video-banner-section .et_pb_column {
        width: 100% !important;
        padding: 0;
    }

    .video-banner-section .et_pb_column p {
        margin-bottom: 0;
    }

    #team-section.team-row,
    .strategy-team .team-row {
        margin: 160px auto !important;
        /* background: #FFF; */
        margin-bottom: 0 !important;
        padding-bottom: 30px !important;
    }

    div#team-section.team-row {
        padding-top: 0;
    }

    /*#team-section .et_pb_column,*/
    .strategy-team .et_pb_column {
        width: 33.33% !important;
        margin-bottom: 160px !important;
        /* border: 0 !important; */
        padding: 0 7px;
    }

    #team-section .team-header-col {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    /*#team-section .et_pb_column:nth-child(n+4),*/
    .strategy-team .et_pb_column:nth-child(n+4) {
        margin-bottom: 0 !important;
    }

    .team-row .rounded-image {
        position: absolute;
        top: -92.5px;
        left: calc(50% - 92.5px);
        height: 185px;
        width: 185px;
    }

    body #page-container #et-main-area .et_pb_section .team-row .et_pb_column .et_pb_button {
        visibility: visible;
        opacity: 1;
        min-width: 95%;
        width: 95%;
        left: 2.5%;
    }

    .help-section .content-col {
        padding: 20px 0;
    }

    .et_pb_row.overlay-cta {
        position: unset !important;
    }

    .overlay-cta .et_pb_column {
        max-width: 100%;
        /* bottom: 42%; */
    }

    #call-gig-section .et_pb_row {
        padding: 0 0 20px !important;
    }

    #call-gig-section .et_pb_column {
        margin-bottom: 40px;
    }

    #events-section .et_pb_row {
        max-width: 90% !important;
        padding: 0;
    }

    #events-section .et_pb_column {
        width: 100% !important;
        margin: 0 !important;
        padding: 30px !important;
        z-index: 99;
    }

    .et_pb_column.event-text-col {
        width: 100% !important;
        padding: 0;
        margin-bottom: 30px !important;
    }

    .et_pb_column.events-reminder {
        width: 100% !important;
        margin: 0 !important;
        z-index: 11;
    }

    #events-section .et_pb_button_wrapper,
    .events-reminder .et_pb_button_wrapper {
        text-align: center !important;
    }

    #impact-intro.lt-offgrid-sec .image-col .et_pb_image {
        height: auto;
        margin: 0 auto !important;
    }

    #impact-intro.lt-offgrid-sec .et_pb_column .et_pb_image {
        padding: 0 0 30px;
    }

    #impact-intro.rt-triangle:after {
        display: none;
    }

    #impact-intro .et_pb_row {
        display: block;
    }

    #impact-intro.lt-offgrid-sec .et_pb_column.image-col {
        margin-bottom: 30px;
    }

    #impact-intro.lt-offgrid-sec .et_pb_column {
        width: 100% !important;
    }

    #values-section .et_pb_row:first-child .et_pb_column {
        width: 100% !important;
    }

    #values-section .et_pb_column {
        width: calc(50% - 5px) !important;
    }

    #values-section .et_pb_text:before {
        display: none !important;
    }

    #values-section .et_pb_row:last-child .et_pb_column {
        border: 1px solid #DDD;
        margin-bottom: 30px;
    }

    #values-section .et_pb_row:last-child .et_pb_column:last-child {
        margin-bottom: 0;
    }

    #values-section {
        padding-bottom: 0;
    }

    .partner-section .et_pb_module.et_pb_text {
        width: 100%;
    }

    div#product-nav-menu {
        padding-bottom: 0;
    }

    #product-nav-menu span.mobile_menu_bar {
        display: none;
    }

    #product-nav-menu .et_mobile_menu {
        border: 0;
        box-shadow: none;
        display: block !important;
        /* z-index: 999999; */
        position: unset;
        padding: 0;
    }

    #product-nav-menu .et_mobile_menu li {
        display: inline-block;
    }

    #product-nav-menu .et_mobile_menu li a {
        padding: 15px;
    }

    .programs-section .et_pb_row .et_pb_column .et_pb_text {
        width: 100%;
    }

    .help-section .et_pb_row.et_pb_row_12 {
        max-width: 90% !important;
    }

    #strategic-icon-section .et_pb_text {
        width: 100%;
    }

    .specialists_content .container.specialists-container li.col.xs-12.sm-6.md-6.lg-4 {
        width: 50% !important;
    }

    .profile-container:hover a.link.specialist-link,
    .specialists_content .specialists-container .profile-container a.link.specialist-link {
        visibility: visible !important;
        opacity: 1 !important;
    }

    .partner-section .et_pb_equal_columns {
        display: block;
    }

    .et-db #et-boc .partner-section .et_pb_column,
    .et-db #et-boc .et-l .partner-section .et_pb_column_4,
    .et-db #et-boc .et-l .partner-section .et_pb_column_5,
    .et-db #et-boc .et-l .partner-section .et_pb_column_6 {
        width: 100% !important;
        display: block !important;
        padding: 15px !important;
    }

    .et-db #et-boc .partner-section .et_pb_column:before {
        display: none;
    }

    .strat-cta-col {
        text-align: center;
        padding: 0 15px !important;
    }

    .strat-cta-col .et_pb_cta_7,
    .strat-cta-col .et_pb_cta_8,
    .strat-cta-col .et_pb_cta_9,
    .strat-cta-col .et_pb_cta_23,
    .strat-cta-col .et_pb_cta_24,
    .strat-cta-col .et_pb_cta_26,
    .strat-cta-col .et_pb_cta_27 {
        float: none;
    }

    .global-banner-cta {
        left: 30px;
    }

    .global-banner-cta .et_pb_column {
        max-width: 100%;
        height: auto;
    }

    .container.blog_posts-container.grid {
        width: 100%;
        padding: 0;
    }

    .container.inverse {
        width: 100%;
        max-width: 100% !important;
        padding: 0;
    }

    .col.md-4 {
        min-width: 40% !important;
        max-width: 50%;
    }

    .opportunity-wrap1 .row,
    .opportunity-wrap2 .row {
        padding: 0 0 0 15px;
    }

    .articles .blog_posts-container .blog-category-posts .col.md-4 {
        width: 100%;
    }

    .et_pb_section h3 {
        font-size: 36.06px !important;
    }

    .product-section .image-text-box .et_pb_button_wrapper {
        position: absolute;
        bottom: 30px;
        left: 11px;
        width: 94%;
    }

    .archive-event-list {
        display: block;
        padding-bottom: 25px;
    }

    .event-detail.event-list-detail,
    .event-detail.half-width,
    .event-form.half-width,
    .archive-event-list .event-img-wrap,
    .event-single-section .event-img-wrap.half-width {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .event-detail {
        margin-top: 20px;
    }

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

    .event-form.event-list-btn {
        margin-top: 0;
    }

    .event-list-btn {
        width: auto;
    }
}

@media (max-width: 980px) {
    .toggle-menu-wrap {
        padding: 70px;
    }

    .login-menu-wrap .et_mobile_nav_menu {
        margin: 0;
        width: 100%;
    }

    .login-menu-wrap .mobile_menu_bar {
        display: none !important;
    }

    #mobile_menu1 {
        display: block !important;
        position: unset;
        border: 0 !important;
        padding: 0 !important;
    }

    #mobile_menu1 li {
        list-style: disc;
        color: #FFF;
    }

    #mobile_menu1 a {
        padding: 10px 0;
    }

    body.et_divi_theme #page-container {
        padding-top: 0 !important;
    }

    .header-home-logo {
        height: 113px;
    }

    .logged-in.admin-bar .header-home-logo {
        /* height: 91px; */
    }
}

@media (max-width: 767px) {
    .single-sector .slanted-img-cta-sec .et_pb_equal_columns {
        width: 100% !important;
    }

    .login-menu-wrap .et_pb_column_3_tb_header {
        padding: 43px 0 !important;
    }

    .inner-banner-wrap .et_parallax_bg {
        background-position: right !important;
    }

    .inner-banner-wrap .taglines p,
    .inner-banner-wrap .taglines .et_pb_text_inner {
        font-size: 32px;
        line-height: 34px;
    }

    .product-section .image-text-box {
        width: 100% !important;
        height: 400px !important;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }

    .product-section .et_pb_cta_6.et_pb_promo p {
        text-align: center !important;
    }

    .video-banner-section h3 {
        margin-bottom: 10px !important;
    }

    /*#team-section .et_pb_column,*/
    .strategy-team .et_pb_column {
        width: 100% !important;
        /* border: 0; */
    }

    /*#team-section .et_pb_column:nth-child(n+4),*/
    .strategy-team .et_pb_column:nth-child(n+4) {
        margin-bottom: 160px !important;
    }

    /*#team-section .et_pb_column:last-child,*/
    .strategy-team .et_pb_column:last-child {
        margin-bottom: 0 !important;
    }

    .help-section.lt-offgrid-sec .image-col .et_pb_image {
        margin-right: -4%;
    }

    .overlay-cta .et_pb_column {
        position: unset !important;
        text-align: center;
        padding: 30px 0;
    }

    .overlay-cta .et_pb_module {
        margin-right: 15px;
    }

    .testimonial-sec .et_pb_container {
        height: auto !important;
    }

    #download-section .et_pb_row {
        display: block;
    }

    #download-section .et_pb_column {
        width: 100% !important;
    }

    .partner-section .et_pb_column {
        padding: 0 !important;
    }

    #values-section .et_pb_column {
        width: 100% !important;
    }

    #values-section .et_pb_column .et_pb_module.et_pb_text {
        min-height: auto;
        max-width: 100%;
    }

    .programs-section .icon-row-section .et_pb_column {
        width: 100%;
    }

    .programs-section .et_pb_row.et_pb_row_12 {
        max-width: 90% !important;
    }

    .et-l--footer .footer-sec .et_pb_column {
        width: 100% !important;
        padding: 30px 0;
    }

    div#strategic-icon-section .et_pb_column {
        width: 100%;
    }

    div#stats-count-section .et_pb_column {
        width: 100% !important;
    }

    .specialists_content .container.specialists-container li.col.xs-12.sm-6.md-6.lg-4 {
        width: 100% !important;
    }

    .profile-container {
        max-width: 100% !important;
    }

    .inner-banner-wrap .et_pb_section_video_bg {
        display: none;
    }

    .single-sector .yellow-overlay:before {
        background: rgba(255, 225, 0, 0.35);
    }

    .partners-logo-col.innerpage-clients .et_pb_image {
        width: 50%;
        margin-left: 0 !important;
        float: unset;
        display: inline-flex;
        vertical-align: top;
    }

    .home .partners-logo-col.innerpage-clients .et_pb_image {
        width: calc(50% - 30px);
        max-width: calc(50% - 30px);
        margin-right: 30px !important;
        margin-left: 0 !important;
    }

    .et-db #et-boc .et-l .inner-banner-wrap .et_pb_row,
    .et-db #et-boc .et-l .inner-banner-wrap .et_pb_row_0.et_pb_row {
        margin: 0 auto !important;
    }

    .apply-online .inner-banner-wrap .et_parallax_bg {
        background-position: left !important;
        background-size: cover;
    }

    #applyonlineform .opportunity-wrap1,
    #applyonlineform .opportunity-form2,
    #applyonlineform .opportunity-wrap2,
    #applyonlineform .opportunity-form3,
    #applyonlineform .opportunity-form4,
    #applyonlineform .opportunity-form1,
    .opportunity-form2 {
        width: 100% !important;
        display: inline-block;
        /* padding: 0; */
    }

    #applyonlineform .opportunity-wrap2 .row {
        display: flex;
        display: block;
    }

    .apply-online .opportunity-right {
        position: unset;
        width: 100%;
    }

    div#applyonlineform {
        padding-left: 5px;
    }

    div#applyonlineform .gform_footer.top_label {
        right: 50% !important;
        bottom: 25px !important;
        transform: translateX(50%);
    }

    .opportunity-form4 {
        padding-left: 0;
    }

    .help-section .et_pb_column:nth-child(2) {
        padding-bottom: 50px !important;
    }

    .overlay-cta .et_pb_module {
        margin-left: 0px !important;
        width: 25% !important;
    }

    .col.md-4 {
        min-width: 100%;
        max-width: 100%;
    }

    .featured-opportunities .container.max-md {
        max-width: 100% !important;
        width: 100%;
    }

    .help-section .et_pb_column:nth-child(2) {
        padding-bottom: 20px !important;
    }

    #multiscroll-nav {
        width: 100%;
        text-align: center;
    }

    .gif-overlay {
        width: 82%;
        right: 20%;
    }

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

    .container.specialists-container,
    .consultant .container {
        width: 100%;
    }

    .global-banner-cta.custom-global-banner-cta {
        display: none;
    }

    .partners-logo-col.innerpage-clients .et_pb_image,
    .partners-logo-col.innerpage-clients .et_pb_image[class*='et_pb_image'],
    .et-db #et-boc .et-l .partners-logo-col.innerpage-clients .et_pb_image[class*='et_pb_image'] {
        width: 50% !important;
    }

    .rt-offgrid-sec.lt-triangle.rt-triangle .taglines::before,
    .rt-offgrid-sec.lt-triangle.rt-triangle .taglines::after {
        display: none;
    }

    .subscribe-sec .content-col {
        padding-left: 15px;
        padding-right: 15px;
    }

    .opportunity-form1,
    .opportunity-form2,
    .opportunity-form3,
    .opportunity-form4 {
        padding-left: 0 !important;
    }

    .subscribe-sec .image-col {
        display: none;
    }

    .subscribe-sec .content-col {
        position: unset;
        padding: 30px 15px;
        transform: unset;
        background-image: url('/wp-content/uploads/2021/01/stay-connected.jpg');
    }

    .inner-banner-wrap {
        max-height: 280px !important;
    }

    .contact-us div#contact-middle {
        display: block;
    }

    .contact-us div#contact-middle .et_pb_row {
        width: 100%;
        max-width: 100% !important;
        float: unset;
        flex: 1;
        display: block;
        margin: 0 !important;
        padding: 0 30px !important;
    }

    div#contact-right:before {
        display: none;
    }

    div#contact-right .et_pb_text_inner {
        max-width: 100% !important;
    }

    .et-db #et-boc .et-l .inner-banner-wrap .et_pb_row,
    .et-db #et-boc .et-l .inner-banner-wrap .et_pb_row_0.et_pb_row {
        height: 280px;
    }

    .event-form.half-width {
        text-align: center;
    }

    .event-book-form_wrapper,
    .event-enquire-form_wrapper {
        text-align: left;
    }

    .event-book-form_wrapper li span,
    .event-enquire-form_wrapper li span {
        margin-bottom: 15px !important;
    }

    .event-detail.event-list-detail h2.event-header,
    h2.event-header {
        font-size: 24px !important;
    }
}

.event-single-section {
    padding: 80px 0;
}

.event-img-wrap {
    margin: 20px 0;
}

article.opportunity .opportunity-content a.button {
    margin: 10px 0;
    font-weight: 600;
}

.sector-template-default .footer-sec a {
    color: #ffdf0f !important;
}

.event-time {
    text-transform: uppercase;
}

#gform_29 li#field_29_40,
#field_29_42 {
    width: 100%;
}

#field_29_42 h2.gsection_title {
    font-size: 18px !important;
}

.subscribe-form_wrapper h3.gform_title {
    display: none;
}

footer a {
    color: #ffdf00 !important;
}


/*-----------------------------------------
CLA SOLUTION SPECIFIC 
-------------------------------------------*/

.et-db #et-boc .et-l .et_pb_section.et_pb_section_parallax .et_pb_row {
    width: 80%;
}

.et-db #et-boc .et-l .et_pb_section:not(.et_pb_section_parallax) .et_pb_row {
    width: 100%;
}

.team-row .et_pb_promo_description {
    min-height: 192px;
}

.toggle-menu-wrap .et-menu>li>a {
    line-height: 20px;
}

.toggle-menu-wrap .et-menu>li>a:before {
    top: 5px;
}

#four-section-box .image-text-box {
    width: calc(50% - 30px) !important;
}

.strat-cta-col .inline-cta,
.strat-cta-col .inline-cta {
    padding: 0 20px;
    margin: 10px 0 !important;
    float: left;
}

.image-text-box ul {
    padding: 0 20px;
}

.page-template-template-consultants .bannerfeature_image_container {
    padding-bottom: 0 !important;
}

.profile-container .button:after,
.profile-container .button:before {
    width: 8px !important;
}

.articles .blog_posts-container .blog-category-posts .blog-post-header {
    /* background-color: #0061ac; */
}

body.single-post article.post .post-header h1 {
    font-size: 38px !important;
}

.articles .blog_snippet_content h3 a:hover {
    /* color: #0061ac; */
}

body.single-post article.post blockquote.wp-block-quote {
    border: 0;
}

body.single-post article.post .post-info-categories {
    color: inherit !important;
}

.step-graphic .et_pb_blurb_content {
    max-width: 100%;
}

.step-graphic .et_pb_main_blurb_image {
    width: 200px;
}

.step-graphic ul {
    list-style-type: disc;
}


/* FISHER LEADERSHIP CSS */

#custom-blog-carousel .item img {
    /* border-radius: 0 !important; */
}

.articles .blog_snippet_content h3 {
    padding-bottom: 10px;
}

.articles .col.md-4 {
    margin-bottom: 40px;
}


/* BUTTON BLOCK  */

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

.button-content a {
    border-width: 2px;
    border-radius: 100px;
    font-size: 14.76px;
    font-weight: 900;
    line-height: 1;
    min-width: 225px;
    padding: 12px 25px;
    text-align: center;
    background-color: #ffdf0f;
    border-width: 0px;
    border-color: #ffdf0f;
    color: #000;
}

.button-content a:hover {
    color: #FFF;
    background-color: #000;
    border-color: #000;
}

.single-sector .inner-banner-wrap {
    position: relative;
}

.single-sector .global-banner-cta {
    width: 100% !important;
    /* left: 0; */
}

.global-banner-cta {
    position: absolute !important;
}

.single-sector .et_pb_row.header-row,
.single-sector .help-section .et_pb_row {
    width: 100% !important;
    max-width: 1450px !important;
}

.single-sector .header-home-logo {
    position: fixed !important;
}

.single-sector .et_pb_row.header-row .et_pb_column {
    margin-right: 2% !important;
}

.single-sector .slanted-img-cta-sec .image-col .et_pb_text,
.single-sector .team-row .rounded-image {
    position: absolute !important;
}

.single-sector .team-row .et_pb_promo_description {
    padding-bottom: 76px !important;
}


/* GIG EXECUTIVE  */

.header-home-logo,
body #page-container .et_pb_section .et_pb_button_0_tb_header {
    background: #3BA650 !important;
}

.cta-infograph:hover .overlay-text,
#stats-count-section .et_pb_column:hover .overlay-text {
    background-color: #3BA650DD;
}

.subscribe-form input.gform_button[type=submit] {
    background: #3BA650;
    border-color: #3BA650;
    /* color: #FFF !important; */
    height: 44px;
}


/* Multi Video Tab  */

#multiple-video-section .et_pb_tabs {
    display: flex;
    border: 0;
    box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 15%);
}

#multiple-video-section .et_pb_tabs .et_pb_tabs_controls {
    display: flex;
    width: 40%;
    flex-wrap: nowrap;
    flex-direction: column;
    background-color: #FFF;
}

#multiple-video-section .et_pb_tabs .et_pb_all_tabs {
    width: 60%;
    background-color: #3BA65114;
}

#multiple-video-section .et_pb_tabs_controls li {
    border: 0;
    border-bottom: 1px solid #3BA651;
}

#multiple-video-section .et_pb_tabs_controls li.et_pb_tab_active {
    background-color: #3BA65114;
}

#multiple-video-section .et_pb_tabs_controls li a {
    padding: 20px 30px;
}


/* Color Fixes */

.articles .blog_posts-container .blog-category-posts .blog-post-header,
.blog_snippet_content .snippet-header .snippet-type {
    background-color: #3ba650 !important;
}

.button-content a {
    background-color: #3ba650;
    border-color: #3ba650;
    color: #FFF;
}

.articles .blog_snippet_content h3 a:hover,
.content p a {
    color: #3ba650 !important;
}

.share-block-buttons li a:hover,
.share-block {
    border-color: #3ba650 !important;
}

.wp-block-button__link {
    background-color: #3ba650;
    margin-bottom: 15px;
}

.icon-row-section .et_pb_column .et_pb_text_inner p,
.icon-row-section .et_pb_promo_description strong {
    text-align: center;
}

#multiscroll-nav ul li a.active {
    background: #3ba650 !important;
}

.becaome-gig-form_wrapper .gform_fields {
    display: flex;
    flex-wrap: wrap;
}

.becaome-gig-form_wrapper .gform_heading {
    width: 100%;
    text-align: center;
    border: 0 !important;
    padding-bottom: 0 !important;
}

.becaome-gig-form_wrapper .gform_heading h2 {
    padding-bottom: 0;
}

.becaome-gig-form_wrapper fieldset#field_28_12,
.becaome-gig-form_wrapper fieldset#field_28_13 {
    width: 100%;
}

.becaome-gig-form_wrapper .ginput_container.ginput_container_consent {
    line-height: initial;
}

.becaome-gig-form_wrapper fieldset#field_28_13 legend {
    display: none;
}

.becaome-gig-form_wrapper .gform_footer input,
#gform_wrapper_19 .gform_footer input {
    background: #3ba650;
    border: 2px solid #3ba650 !important;
    box-shadow: unset !important;
    outline: 0;
    color: #FFF !important;
}

.becaome-gig-form_wrapper .gform_footer input:hover,
#gform_wrapper_19 .gform_footer input:hover {
    background: #000;
    border: 2px solid #000 !important;
}

#gform_wrapper_19 .gform_heading {
    display: none;
}

.icon-row-section .et_pb_column>.hovericon {
    background: linear-gradient(45deg, #3ba650, #ffffff);
}

.image-text-box .et_pb_promo_description h2.et_pb_module_header {
    font-size: 19px !important;
    padding-bottom: 0;
}

.image-text-box:hover .et_pb_promo_description h2.et_pb_module_header {
    padding-bottom: 18px;
}

.et_pb_image_2_tb_header {
    padding-left: 0;
    text-align: center;
}

.toggle-menu-wrap .et-menu>li>a:hover {
    color: #3ba650;
}

.toggle-menu-wrap .et-menu>li>a:hover:before,
.button:not(.gform_button_select_files),
.gform_confirmation_message a:not(.gform_button_select_files) {
    background: #3ba650 !important;
}

#contact-page .image-col {
    width: 100% !important;
}

#contact-right {
    padding-left: 100px !important;
}

div#contact-right:before,
.opportunity-form3:after,
.opportunity-form3:before {
    background: #3ba650bf !important;
}

p.gform_required_legend {
    display: none;
}

.opportunity-form4 a {
    color: #FFF;
    font-weight: 600;
}

.opportunity-form3 .gfield.gfield_accordion .gfield_label:before {
    border-top: 10px solid #3ba650 !important;
}

.inputCheckStyle:checked+label:before,
input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    background: #3ba650 !important;
    box-shadow: inset 0 0 0 1px #3ba650 !important;
}

.et-l--footer .footer-sec .footer-info {
    max-width: 100%;
    margin-right: 15px;
}

.et-l--footer .et_pb_column_3_4 {
    padding-left: 15px !important;
}

header.et-l--header .et_pb_column:first-child {
    z-index: 99;
}

/* SUBSCRIBE BTN  */
.subscribe-button-module {
    text-align: center;
}

.subscribe-button-module .subscribe-btn {
    color: #000000 !important;
    background: #ffdf00;
    border-radius: 50px;
    min-width: 200px;
    font-weight: 600;
}

.subscribe-button-module .subscribe-btn:hover {
    background: #000;
    color: #FFF !important;
}


/* NEW RESPONSIVE */

@media (max-width: 1700px) {
    .et-l--header .et_pb_column {
        margin-right: 0;
    }
}

@media (max-width: 1480px) {

    div#custom-blog-carousel img,
    div#custom-blog-carousel2 img {
        height: 175px !important;
        width: 175px !important;
    }
}

@media (max-width: 1200px) {
    .single-sector .et_pb_row.header-row .et_pb_column {
        margin-right: 0% !important;
        width: 26.7% !important;
        margin-bottom: 0 !important;
    }

    body .main {
        margin-top: 5px;
    }
}

@media (max-width: 980px) {
    .single-sector .et_pb_row.header-row .et_pb_column {
        margin-right: 0% !important;
    }

    .single-sector .et_pb_row.header-row {
        width: 90% !important;
    }

    .single-sector .et_pb_row.header-row .et_pb_column .fisher-logo {
        padding-left: 0 !important;
    }

    .single-sector header.et-l--header .et_pb_column,
    .single-sector .et_pb_row.header-row .et_pb_column {
        width: 100% !important;
    }

    body .main {
        margin-top: 112px !important;
    }

    .fisher-column,
    .cla-column {
        display: none;
    }

    .gig-column,
    .gig-column .gig-logo-header {
        display: block !important;
    }

    .header-section {
        padding-top: 24px !important;
        padding-bottom: 25px !important;
    }

    .header-section .login-menu-wrap .top .menu-toggle {
        max-height: 113px !important;
    }

    .login-menu-wrap .top .menu-toggle {
        padding: 44px 0 !important;
    }

    .timeline-row .timeline-box {
        margin-bottom: 30px !important;
    }
}

@media screen and (min-width: 992px) {

    header .header-section,
    header .header-row {
        top: auto;
        height: 117px !important;
        /* overflow: hidden; */
        padding: 0 !important;
        min-height: auto;
    }
}

@media (max-width: 782px) {
    .logged-in.admin-bar .header-home-logo {
        top: 46px;
    }
}

@media screen and (max-width:767px) {
    .step-graphic .et_pb_main_blurb_image {
        width: 125px;
    }

    header .header-section,
    header .header-row {
        min-height: auto;
    }

    .header-home-logo {
        width: 90px !important;
    }

    body #page-container .et_pb_section .et_pb_button_0_tb_header.menu-toggle {
        width: 90px;
        float: right;
    }

    .header-home-logo span.et_pb_image_wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .header-home-logo .et_pb_image_wrap img {
        height: auto !important;
    }

    .header-section .fisher-column .et_pb_image .et_pb_image_wrap {
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
    }

    .header-section .fisher-column .et_pb_image .et_pb_image_wrap img {
        width: 100%;
        height: auto;
    }

    .help-section .overlay-cta .et_pb_module {
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    .help-section .overlay-cta .et_pb_promo_description div {
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .timeline-row .timeline-box {
        width: auto;
        margin-bottom: 30px !important;
    }

    .header-section .et_pb_module.et_pb_image.et_pb_image_0_tb_header a {
        display: inline-block;
        width: auto;

    }

    /* Global CTA CSS  */
    .splitscreen-slider-wrap .global-banner-cta {
        display: none;
    }

    .splitscreen-slider-wrap .et_pb_row {
    max-width: 100%!important;
    height: 400px!important;
    overflow: hidden!important;
    margin-bottom: 200px;
}
    .inner-banner-wrap {
        max-height: unset !important;
        height: 280px;
        margin-bottom: 230px;
        overflow: visible !important;
    }

    .home .inner-banner-wrap {
        height: 230px;
        margin-bottom: 0;
    }

    .inner-banner-wrap .et_parallax_bg_wrap {

        height: 280px;
    }

    .inner-banner-wrap .et_pb_column {
        margin-bottom: 0;
    }

    .inner-banner-wrap .et_parallax_bg {
        background-position: right !important;
    }

    .inner-banner-wrap .et_pb_row.global-banner-cta {
        position: unset !important;
        padding-bottom: 0 !important;
        height: auto !important;
        display: block !important;
        overflow: auto;
    }

    .global-banner-cta .et_pb_text_inner {
        color: #000;
    }

    body #page-container #et-main-area .et_pb_section .global-banner-cta .et_pb_module .et_pb_button {
        background: #000 !important;
        color: #FFF !important;
    }

    .header-home-logo,.menu-toggle {
        z-index: 99 !important;
    }
    
    .header-row {
        z-index: 1;
    }
}

@media screen and (max-width: 400px) {
    body.page #page-container .et_pb_section .et_pb_button_0_tb_header.menu-toggle {
        padding: 43px 0 !important;
    }

    .header-section {
        padding-top: 32px !important;
    }

    .login-menu-wrap .top .menu-toggle:before {
        height: 22px;
    }
}