/*
Theme Name: Proveo
Author: Trait Marketing
Description: Bootstrap 4.3, slickslider 1.8, fontawesome 5.3 animate.css, responsive,
Version: 1.0
*/
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

p::selection, span::selection, input::selection, ::selection {
    background-color: #ff5166;
    color: #fff;
}

img::selection {
    background-color: rgba(255, 255, 255, 0);
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
html {
    background-color: #132844;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Red Hat Display', sans-serif;
    width: 1920px;
    margin: 0 auto;
    max-width: 100%;
}

body.home {
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

main,
section {
    width: 100%;
    position: relative;
}

footer {
    margin-top: auto;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

body {
    scroll-behavior: smooth;
    min-height: 100vh;
    background-color: #f6f8fa;

    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
}


/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

header,
footer {
    width: 100%;
}

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

a {
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.white {
    color: #FFF;
}

.black {
    color: #000000;
}

.dark-blue {
    color: #799dce;
}

.dark-blue-bg {
    background-color: rgb(19, 40, 68);
}

.grey {
    color: #555555;
}

.uppercase {
    text-transform: uppercase;
}

.pad-60 {
    padding: 60px 0;
}

h1.page-title {
    font-size: 80px;
    letter-spacing: 16px;
    line-height: 84px;
    font-weight: 600;
}

h2.h1 {
    font-size: 80px;
    letter-spacing: 16px;
    line-height: 84px;
    font-weight: 600;
}

h2,
h1.h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
    font-weight: 400;
}

h2.f-40 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
    font-weight: 400;
}

h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}

h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 15px;
}

.f-700 {
    font-weight: 700 !important;
}

.button-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.my-button {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 16px;
    padding: 10px 35px;
    border-radius: 10px;
    text-decoration-line: none;
}

.my-button:hover {
    text-decoration-line: none;
}

.blue-button {
    border-radius: 10px;
    text-transform: uppercase;
    border: 2px solid #81ddff;
    color: #FFF;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 28px;
    font-weight: 600;
    padding: 5px 30px;
    text-decoration-line: none;

}

.blue-button:hover,
.blue-button:hover {
    background: #81ddff;
    text-decoration-line: none;
    color: #FFF;
}

.red-button {
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #ff5165;

}

.red-button:hover {
    background-color: #ff5165;
    color: #FFF;
}

/*
=======================
HEADER
=======================
 */
header {
    position: fixed;
    top: 0;
    /*left: 0;*/
    z-index: 99;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    width: 1920px;
    margin: 0 auto;
    max-width: 100%;
}

.home header {
    border: none;
}

header::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .5s ease-out;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transition-property: all;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transition-property: all;
    width: 100%;
    height: 100%;
    /*background-color: #102139;*/
}

.logo-content {
    width: 165px;
    flex-basis: 165px;
    max-width: 100%;
}

#main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#main-menu li {
    padding: 15px 15px;
    position: relative;
}

#main-menu li a {
    position: relative;
    padding: 0 10px;
}

#main-menu li a.open-menu span {
    margin-right: 0;
    margin-left: auto;
    padding-left: 12px;
    opacity: 1;
    mask: url("/wp-content/uploads/2022/11/down-arrow.svg") no-repeat center;
    -webkit-mask: url("/wp-content/uploads/2022/11/down-arrow.svg") no-repeat center;
    width: 13px;
    height: 9px;
    display: block;
    position: absolute;
    bottom: 4px;
    right: -10px;
    background-color: rgba(255, 255, 255, .5);
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}


#main-menu li a {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 600;
    text-decoration-line: none;
}

#main-menu li.current-menu-ancestor .sub-menu a {
    color: #666;
}

#main-menu li.current-menu-ancestor .sub-menu .current-menu-item a,
#main-menu li.current-menu-ancestor a,
#main-menu li.current-menu-item a,
#main-menu li a:hover {
    color: #3f81da;
    text-decoration-line: none;
}

#main-menu li a:hover span {
    background-color: #3f81da;
}

.home #main-menu li a:hover {
    color: #82ddff;
    text-decoration-line: none;
}


.home #main-menu li a:hover span {
    background-color: #82ddff;
}


.menu-item-has-children:focus .sub-menu, .menu-item-has-children.active .sub-menu {
    transform: translate(0, 15px);
    opacity: 1;
    visibility: visible;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f6f8fa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    list-style-type: none;
    padding: 0;
    width: 200px;
}

.sub-menu:before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    box-shadow: 2px -2px 6px rgba(0, 0, 0, .05);
    border-top: 6px solid #fff;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    transform: rotate(-45deg);
    mix-blend-mode: multiple;
}

#main-menu .sub-menu li {
    z-index: 1;
    position: relative;
    background: #fff;
    padding: 0 20px;
    color: #666;
}

#main-menu .sub-menu li.active a {
    color: #5380f7;
}

#main-menu li.active a span {
    transform: rotate(180deg);
}

#main-menu .sub-menu li:first-child {
    border-radius: 4px 4px 0 0;
}

#main-menu .sub-menu li:last-child {
    border-radius: 0 0 4px 4px;
}

#main-menu .sub-menu li:last-child a {
    border-bottom: 0;
}

#main-menu .sub-menu li a {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 16px 0;
    color: inherit;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

#main-menu .sub-menu li a:hover {
    color: #3f81da;
    text-decoration-line: none;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
}

#menuToggle {
    display: none;
}

#social-menu {
    list-style-type: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

#social-menu li {
    padding: 0 7px;
}

#social-menu li.facebook-button {
    
}


#social-menu li a {
    font-size: 24px;
    color: #3f81da;
    text-align: center;
    display: block;
    width: 100%;
    text-decoration-line: none;
}

#social-menu-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.feedback-navigation {
    margin-bottom: 0;
}

body #social-menu .feedback-navigation a, .home #social-menu .feedback-navigation a {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
}

#social-menu .feedback-navigation a img {
    display: inline-block;
    margin-right: 8px;
}

.body #social-menu .feedback-navigation a:hover, .home #social-menu .feedback-navigation a:hover {
    color: #82ddff;
}

.home #social-menu li.feedback-menu-item a {
    font-size: 18px;
}

.home #social-menu li a {
    color: #82ddff;

}

#social-menu li a:hover {
    color: #FFF;
    text-decoration-line: none;
}

#social-menu li.contractor-button {
    padding-right: 0;
    border-left: 1px solid rgb(225, 225, 255, .07);
}

#social-menu li.contractor-button a {
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    max-width: 100%;
    width: 85px;
    flex-basis: 85px;
}

.social-link-mobile {
	display: none;
}


/*
=======================
FOOTER
=======================
 */
.home footer {

    background-color: #102139;
    border-top: none;
}

footer {
    margin-top: auto;
    padding: 40px 0;
    background-color: #132844;
}

#footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 24px;
    color: #6989b5;

}

.home #footer-wrapper {
    color: rgba(130, 221, 255, .5);
}

#footer-wrapper .year {
    padding-right: 12px;
}

#footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#footer-menu li {
    padding: 0 12px;
}

.home #footer-menu li a {
    color: rgba(130, 221, 255, .5);

}

#footer-menu li a {
    font-size: 12px;
    line-height: 24px;
    color: #6989b5;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-decoration-line: none;
    display: block;
    width: 100%;
    text-align: center;
}

.home #footer-menu li a:hover {
    color: rgba(130, 221, 255, 1);
    text-decoration-line: none;
}

#footer-menu li a:hover {
    color: #FFF;
    text-decoration-line: none;
}

footer .crafted {
    font-size: 12px;
    line-height: 24px;
    color: #6989b5;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-decoration-line: none;
    display: block;
    text-align: center;
    padding-left: 12px;
}

.home footer .crafted,
.home footer .crafted a {
    color: rgba(130, 221, 255, .5);
}

.home footer .crafted a:hover {
    color: rgba(130, 221, 255, 1);
}

footer .crafted a {
    font-size: 12px;
    line-height: 24px;
    color: #6989b5;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-decoration-line: none;
}

footer .crafted a:hover {
    color: #FFF;
    text-decoration-line: none;
}

/*
=======================
HOMEPAGE
=======================
 */
/*.home #logo-wrapper img {*/
/*    filter: brightness(0) invert(1);*/
/*}*/
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body.home {
    background-image: url("/wp-content/uploads/2022/11/bg.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /*background: rgb(15, 31, 52);*/
    /*background: -moz-linear-gradient(45deg, rgba(15, 31, 52, 1) 45%, rgba(42, 87, 147, 1) 100%);*/
    /*background: -webkit-linear-gradient(45deg, rgba(15, 31, 52, 1) 45%, rgba(42, 87, 147, 1) 100%);*/
    /*background: linear-gradient(45deg, rgba(15, 31, 52, 1) 45%, rgba(42, 87, 147, 1) 100%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f1f34", endColorstr="#2a5793", GradientType=1);*/

}

#home-banner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 180px 0 60px 0;
}

#home-logo {
    margin-bottom: 20px;
}

#home-logo img {
    margin: 0 auto;
}

#home-text h2 {
    font-size: 50px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 0;
}


#home-image-wrapper {
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#home-image {
    position: relative;
    min-height: 500px;
    z-index: 9;
    width: 1057px;
    max-width: 100%;
}

#workmap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 99;
}

.illustration-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.illustration-wrapper.active {
    opacity: 1;
}

.illustration-image-link {
    position: absolute;
    z-index: 99;
}

#illustration-image-link-1 {
    left: 308px;
    top: 254px;
    width: 47px;
    height: 38px;
    transform: rotate(25deg)
}

#illustration-image-link-2 {
    left: 330px;
    top: 147px;
    width: 250px;
    height: 28px;
    transform: rotate(-31deg);
}

#illustration-image-link-3 {
    left: 505px;
    top: 157px;
    width: 50px;
    height: 110px;
}

#illustration-image-link-4 {
    left: 735px;
    top: 198px;

    width: 100px;
    height: 100px;
}

#illustration-image-link-5 {
    left: 490px;
    top: 424px;
    width: 60px;
    height: 73px;
}

#home-banner::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/wp-content/uploads/2022/11/Grid-1.webp");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: inherit;
}

#home-banner .container {
    position: relative;
    z-index: 2;
}

#home-image-wrapper #home-text-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

#home-image-wrapper #home-text-image img {
    margin-right: auto;
    margin-left: auto;
    z-index: 1;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}

#home-text .button-wrapper {
    justify-content: center;
}

#home-text p {
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 300;
}

.home-subtitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-subtitle h1 {
    font-weight: 300;
}

/*
=========================
PAGES
=========================
 */
.page-hero-section {
    position: relative;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero-section::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(15, 31, 52);
    background: -moz-linear-gradient(180deg, rgba(15, 31, 52, 1) 15%, rgba(15, 31, 52, 0.5998993347338936) 72%, rgba(31, 57, 106, 0.4318321078431373) 100%);
    background: -webkit-linear-gradient(180deg, rgba(15, 31, 52, 1) 15%, rgba(15, 31, 52, 0.5998993347338936) 72%, rgba(31, 57, 106, 0.4318321078431373) 100%);
    background: linear-gradient(180deg, rgba(15, 31, 52, 1) 15%, rgba(15, 31, 52, 0.5998993347338936) 72%, rgba(31, 57, 106, 0.4318321078431373) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f1f34", endColorstr="#1f396a", GradientType=1);

}

.page-hero-section::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 301px;
    height: 42px;
    background-image: url("/wp-content/uploads/2022/11/hero-after.png");
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    /*transition: transform 750ms ease-out;*/
    /*transform: translateY(100%);*/
}

.page-hero-section.visible::after {
    transform: translateY(0);
}

.page-hero-section .container {
    position: relative;
    margin-top: auto;
    margin-bottom: 80px;
}

/*.title-holder-wrapper {*/
/*    position: relative;*/
/*    display: block;*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/

/*.page-title {*/
/*    transition: transform 1250ms ease-out;*/
/*    transform: translateY(100%);*/
/*}*/

/*.page-hero-section.visible .page-title {*/
/*    transform: translateY(0);*/
/*}*/

/*
==========================
ABOUT US
==========================
 */

.intro-section {
    padding: 80px 0;
}

.intro-section p {
    font-size: 18px;
    line-height: 26px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

#about-us-intro {
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#about-us-intro p {
    width: 505px;
    max-width: 100%;
}

#about-intro-text-wrapper {
    padding: 130px 15px;
}

#about-us-image-wrapper {
    position: relative;
}

#about-us-image-wrapper img {
    position: absolute;
    bottom: 0;
    max-width: initial;
}

#presentation {
    padding-top: 120px;
    padding-bottom: 50px;
}

#presentation-text {
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#presentation-row {
    margin-top: 50px;
    align-items: stretch;
}

.presentation-column {
    padding-top: 20px;
    padding-bottom: 20px;
}

.presentation-column-inner {
    width: 310px;
    flex-basis: 310px;
    max-width: 100%;
    margin: 0 auto;
}

.presentation-image-wrapper {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    height: 140px;
}

.presentation-image-wrapper img {
    height: 100%;
}

.presentation-text-wrapper h5 {
    font-weight: 700;
}

#global-reach {
    padding: 50px 0 0 0;
    /*background-image: url("/wp-content/uploads/2022/11/Ellipse-1-scaled.webp");*/
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
}

#about-wrapper {
    background-image: url("/wp-content/uploads/2022/11/Ellipse-1-scaled.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#global-reach h2 {
    position: relative;
}

#global-reach p {
    position: relative;
    width: 400px;
    flex-basis: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#map-image {
    margin-top: -240px;
}

#industry-container {
    padding-top: 50px;
}

.industry-wrapper {
    padding: 10px;
}

.industry-inner {
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    height: 370px;
    overflow: hidden;
}

.industry-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.industry-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-2deg, #003f6b 0%, rgba(0, 63, 107, 0) 100%);
    z-index: 1;
}

.industry-title {
    margin-top: auto;
    margin-bottom: 35px;
    width: 100%;
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.industry-button {
    color: #2b5690;
    font-size: 22px;
}

.industry-button:hover {
    color: #FFF;
}

#industry-container h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#industry-container h2 .text {
    padding: 0 65px;
}

#safety {
    padding: 110px 0;
}

#safety-text p {
    font-size: 16px;
    width: 530px;
    flex-basis: 530px;
    max-width: 100%;
}

#clients {
    padding: 80px 0 50px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

#client-logos-wrapper {
    position: relative;
}

.client-button {
    color: #2b5690;
    font-size: 22px;
}

.client-button:hover {
    color: #ff5165;
}

.client-arrow-wrapper {
    position: absolute;
    top: calc(50% - 10px);
}

.client-arrow-wrapper.left-wrapper {
    left: 20px;
    right: auto;
}

.client-arrow-wrapper.right-wrapper {
    right: 20px;
    left: auto;
}

#clients::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translate(-50%, 0);
    background-image: url("/wp-content/uploads/2022/11/clients-before.png");
    width: 129px;
    height: 14px;
    background-size: cover;
    background-repeat: no-repeat;
}

.client-logos {
    padding: 30px 20px;
}

.client-logos .slick-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.client-logo-wrapper {
    padding: 20px;
}


.client-logo-inner img {
    margin: 0 auto;
}

#about-banner,
#narrow-banner {
    position: relative;
    overflow: hidden;
}

#about-banner::before,
#narrow-banner::before {
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    right: 0;
    width: 960px;
    height: 42px;
    background-image: url("/wp-content/uploads/2022/11/White-before.svg");
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.bottom-banner {
    padding: 80px 0;
}

.bottom-banner p {
    margin-bottom: 0;
}

.banner-text p {
    font-size: 40px;
    line-height: 46px;
    color: #ffffff;
    font-weight: 400;
}

/*
==========================
LEADERSHIP
==========================
 */
#leadership-intro {
    padding-top: 0;
    padding-bottom: 50px;
}

#leader-intro-left {
    border-right: 1px solid rgba(0, 0, 0, .1);
}

#leader-intro-left h2 {
    width: 550px;
    flex-basis: 550px;
    max-width: 100%;
}

#leader-intro-left .intro-text {
    width: 620px;
    flex-basis: 620px;
    max-width: 100%;
}

#leader-intro-left .intro-text p {
    margin-bottom: 0;
}

.intro-image-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#adipec-image-wrapper img {
    width: 600px;
    max-width: 100%;
}

#leadership-intro .intro-image-wrapper img:first-of-type {
    margin-bottom: 20px;
}

section#timeline {
    padding: 50px 0 0 0;
}

#time-line-desktop {
    overflow-x: auto;
    transform: rotateX(180deg);
}

#time-line-holder {
    transform: rotateX(180deg);
}

/* width */
#time-line-desktop::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: #4083de;
    border-radius: 100px;
}

/* Track */
#time-line-desktop::-webkit-scrollbar-track {
    background: #f0f2f4;
    height: 90px;
}

/* Handle */
#time-line-desktop::-webkit-scrollbar-thumb {
    background: #4083de;
    box-shadow: none;
    border-radius: 100px;
    width: 90px;
}

/* Handle on hover */
#time-line-desktop::-webkit-scrollbar-thumb:hover {
    background: #4083de;
}

#time-line-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 4000px;
    flex-basis: 4000px;
    padding: 20px 50px;
}

.time-line-wrapper {
    padding: 10px 20px;
}


.time-line-inner {
    width: 250px;
    flex-basis: 250px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 40px;
}

.dots {
    width: 100%;
    flex-basis: 100%;
    /*display: flex;*/
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    display: none;
}

.dots span {
    margin-right: 15px;
    border-radius: 50%;
    display: block;
}

.dot-1 {
    width: 9px;
    height: 9px;
    background-color: #4083de;
}

.dot-2 {
    width: 7px;
    height: 7px;
    background-color: #bed4f1;
}

.dot-3 {
    width: 7px;
    height: 7px;
    background-color: #c9dbf3;
}

.dot-4 {
    width: 7px;
    height: 7px;
    background-color: #d3e1f5;
}

.dot-5 {
    width: 7px;
    height: 7px;
    background-color: #dce7f6;
}

.dot-6 {
    width: 7px;
    height: 7px;
    background-color: #e3ecf7;
}

.dot-7 {
    width: 7px;
    height: 7px;
    background-color: #ebf1f8;
}

.dot-8 {
    width: 7px;
    height: 7px;
    background-color: #f1f5f9;
}

.date-wrapper {
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.time-line-inner .year {
    font-size: 56px;
    line-height: 24px;
    color: #2b5690;
    font-weight: 400;
}

.time-line-inner .month {
    font-size: 36px;
    line-height: 24px;
    color: #2b5690;
    font-weight: 300;
}

.gallery-slider .slick-track {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.gallery-item-wrapper {
    margin: 3px;
    margin-bottom: 0;
}

.gallery-image-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.gallery-item-inner {
    /*background-color: #132844;*/
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 420px;
    width: 100%;
    flex-basis: 100%;
}

.gallery-item-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.gallery-image-link:hover img {
    transform: scale(1.05);
}

body .fancybox-thumbs {
    background-color: #132844;
}

body .fancybox-thumbs__list a:before {
    border: 4px solid #ff5166;
}

.gallery-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    filter: drop-shadow(0px 15px 19px rgba(0, 0, 0, 0.3));
    background-color: #ffffff;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.gallery-previous {
    left: 30px;
    right: auto;
}

.gallery-next {
    right: 30px;
    left: auto;
}

.gallery-button i {
    color: #4083de;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.gallery-previous:hover {
    margin-left: -5px;
}

.gallery-next:hover {
    margin-right: -5px;
}

.gallery-button:hover i {
    color: #ff5166;
}

#indigenous {
    padding: 150px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#indigenous .title-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

#indigenous .title-wrapper .title {
    width: 260px;
    flex-basis: 260px;
    max-width: 100%;
}

#indigenous .title-wrapper .logo {
    padding-left: 10px;
}

#indigenous .title-wrapper .logo img {
    margin-bottom: 20px;
}

#indigenous .text-wrapper {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 630px;
    flex-basis: 635px;
    max-width: 100%;
}

#indigenous .text-wrapper p {
    font-size: 18px;
    line-height: 24px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

#indigenous .text-wrapper a {
    color: #4083de;
}

#indigenous .text-wrapper a:hover {
    color: #132844;
    text-decoration-line: none;
}

.under-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.under-title p {
    font-size: 16px;
    line-height: 18px;
    color: #989898;
    font-weight: 300;
}

.under-title .text {
    width: 340px;
    flex-basis: 340px;
    max-width: 100%;
}

.under-title .logo {
    margin-bottom: 20px;
}

section#leadership {
    padding: 60px 0;
    position: relative;
}

/*section#leadership::before {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translate(-50%, 0);*/
/*    background-image: url(/wp-content/uploads/2022/11/clients-before.png);*/
/*    width: 129px;*/
/*    height: 14px;*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    z-index: 2;*/
/*}*/

/*section#leadership::after {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 50%;*/
/*    transform: translate(-50%, 0);*/
/*    background-image: url(/wp-content/uploads/2022/11/Proveo-big-title.svg);*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*    background-position-x: center;*/
/*    background-position-y: -20px;*/
/*}*/

section#leadership .container-fluid {
    padding-left: 75px;
    padding-right: 75px;
    position: relative;
    z-index: 2;
}

#leadership-row {
    /*justify-content: flex-start;*/
    justify-content: center;
}

.leadership-wrapper {
    padding: 20px 10px;
    width: calc(100% / 7);
    flex-basis: calc(100% / 7);
    max-width: 100%;
    /*margin-top: 20px;*/
}

.leadership-inner {
    width: 240px;
    flex-basis: 240px;
    max-width: 100%;
    margin: 0 auto;
}

.leadership-inner .leader-name {
    color: #132844;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}


.leader-ship-image-wrapper {
    height: 300px;
    position: relative;
    border-radius: 10px;
    transform: skew(-5deg);
    overflow: hidden;
    margin-bottom: 20px;
}

.leader-ship-image-wrapper.red-bg {
    background-color: #ff5166;
}

.leader-image-holder {

    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: calc(100% + 25px);
    height: calc(100% + 25px);
    /* margin-left: -50px; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.leader-ship-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skew(5deg);
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.member-link:hover {
    text-decoration-line: none;
}

.member-link:hover h5 {
    color: #ff5165;
}

.member-link:hover img {
    filter: brightness(1.2);
}

h5.leader-name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.leadership-info p {
    font-size: 14px;
    line-height: 18px;
    color: #989898;
    font-weight: 300;
}

/*
==========================
ARCHIVE PROJECTS
==========================
 */
#projects-loop {
    padding: 60px 0 40px 0;
}

#projects-intro-text {
    margin-bottom: 60px;
}

.project-post-wrapper {
    border-radius: 10px;
    -webkit-box-shadow: 0px 12px 26px 4px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 12px 26px 4px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 12px 26px 4px rgba(0, 0, 0, 0.06);

    background-color: #FFF;
    padding: 0 15px;
    margin: 20px auto;

}

.project-post-wrapper .row {
    min-height: 335px;
}

.project-loop-content {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.project-loop-top {
    padding: 50px 60px;
}

.project-loop-top h3 {
    margin-bottom: 20px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.project-information {
    padding: 30px 60px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.project-category {
    font-size: 16px;
    line-height: 24px;
    color: #989898;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.reduced,
.cost {
    width: 50%;
    flex-basis: 50%;
    max-width: 100%;
}

p.info-title {
    font-size: 16px;
    line-height: 24px;
    color: #989898;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
}

p.info-value {
    font-size: 22px;
    line-height: 28px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0;
}

.project-loop-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.project-loop-image img {
    width: 250px;
    max-width: 100%;
    flex-basis: 250px;
    padding: 0 15px;
}

.loop-image-right {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.loop-image-left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.project-loop-image.no-image {
    background-color: #ff5166;
}

.resource-wrapper .project-loop-image.no-image {
    background-color: #132844;
}

.project-loop-link:hover {
    text-decoration-line: none;
}

.project-loop-link:hover h3 {
    color: #2b5690;
    text-decoration-line: none;
}

.project-loop-image {
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.project-loop-link:hover .project-loop-image {
    background-position-x: calc(50% - 20px);
}

#pagination-container {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#pagination-container .page-numbers {
    font-size: 16px;
    line-height: 18px;
    color: #989898;
    font-weight: 400;
    font-family: "Roboto";
    width: 40px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0);
    margin: 0 5px;
}

#pagination-container .page-numbers:hover {
    text-decoration-line: none;
    color: #2b558f;
}

#pagination-container .page-numbers.current {
    border: 2px solid #2b558f;
    color: #2b558f;
}

.prev.page-numbers {
    position: absolute;
    left: -15px;
    padding: 0;
}

.prev.page-numbers {
    position: absolute;
    right: -15px;
    padding: 0;
}

/*
==========================
SINGLE PROJECTS
==========================
 */
#project-content {
    padding: 60px 0;
}

.single-project-featured {
    height: 410px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px;
}

.single-project-featured img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

h1.project-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

.single-project-inner h1 {
    width: 600px;
    flex-basis: 600px;
    max-width: 100%;
    margin-bottom: 20px;
}

.single-project-inner p {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 25px;
    width: 650px;
    flex-basis: 650px;
    max-width: 100%;
}

.single-project-inner p strong {
    font-weight: 700;
}

.single-project-inner a {
    color: #4083de;
}

.single-project-inner a:hover {
    text-decoration-line: underline;
}

.single-project-info-inner {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    -webkit-box-shadow: 0px 12px 26px 4px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 12px 26px 4px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 12px 26px 4px rgba(0, 0, 0, 0.06);

    margin-top: -150px;
    width: calc(100% - 40px);
    flex-basis: calc(100% - 40px);
    max-width: 100%;
}

.project-info-top {
    padding-top: 40px;
    background-color: #2b5690;
    width: 100%;
    flex-basis: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.info-inner {
    padding-left: 40px;
    padding-right: 40px;
}

.info-inner .icon {
    width: 100px;
    flex-basis: 100px;
    max-width: 100%;
    justify-content: flex-start;
}

.info-inner .text {
    width: calc(100% - 100px);
    flex-basis: calc(100% - 100px);
    max-width: 100%;
    text-align: left;
}

.info-inner .text .small-title {
    font-size: 18px;
    color: #82ddff;
    font-weight: 400;
}

.info-inner .text .value {
    font-size: 50px;
    line-height: 58px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
}

.info-inner .text .value span {
    font-size: 20px;
    font-weight: 500;
}

.project-risk {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.project-total-cost {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
    padding-top: 30px;
}

.project-info-bottom {
    padding: 50px 45px;
    width: 100%;
    flex-basis: 100%;
}

.project-details-title {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    flex-basis: 100%;
}

.project-detail-list {
    padding-top: 40px;
}

.project-list-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 15px;
}

.project-list-item:last-of-type {
    padding-bottom: 0;
}

.project-list-item .list-item-title {
    width: 80px;
    flex-basis: 80px;
    max-width: 100%;
}

.project-list-item .list-item-title p {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.project-list-item .list-item-value {
    width: calc(100% - 80px);
    flex-basis: calc(100% - 80px);
    max-width: 100%;
}

.project-list-item .list-item-value p {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

/*
=========================
SOLUTIONS
========================
 */
#solutions-intro {
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#adipec-intro {
    padding: 130px;
}

#solutions-image-wrapper img {
    position: absolute;
    bottom: 0;
    max-width: initial;
    width: initial;
    right: -120px;
}

#solutions-intro-text-wrapper {
    padding: 130px 15px;
}

#solutions-intro-text-wrapper h2 {
    width: 560px;
    max-width: 100%;
}

#solutions-intro .intro-text {
    width: 525px;
    max-width: 100%;
}


#qualified,
#discover-section {
    padding: 60px 0;

    position: relative;
}

#discover-section h2,
#discover-section .text-wrapper {
    max-width: 790px;
    margin-inline: auto;
}

#qualified::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -560px;
    width: 100vw;
    height: 100%;
    background-image: url("/wp-content/uploads/2022/11/Grid.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#qualified .text-wrapper {
    margin-left: 0;
    width: 550px;
    max-width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

#quality-image-wrapper img {
    margin: 0 auto;
}

ul#alerts-list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;

    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    list-style-type: none;
    margin-bottom: 30px;
    margin-top: 15px;
}

ul#alerts-list li {
    font-size: 20px;
    line-height: 44px;
    color: #f6f8fa;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
}

ul#alerts-list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 0;
    width: 19px;
    height: 15px;
    background-image: url("/wp-content/uploads/2022/11/checkmark-blue.svg");
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#benefits {
    overflow: hidden;
}

#benefits h2 {
    font-size: 40px;
    line-height: 46px;
}

#benefit-circle-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefits-circle-inner {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(150, 171, 200, .1);
    margin-top: 180px;
    position: relative;
    margin-bottom: -50px;
}

.benefit-icon-inner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: #4083de;
}

.benefit-wrapper {
    width: 480px;
    flex-basis: 480px;
    max-width: 100%;
}

.benefit-icon-wrapper {
    width: 90px;
    flex-basis: 90px;
    max-width: 100%;

    position: relative;
}

.benefit-icon-inner {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.benefit-icon-inner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 44px;
    max-height: 44px;
}

.benefit-text-wrapper {
    width: calc(100% - 90px);
    flex-basis: calc(100% - 90px);
    max-width: 100%;
}

.benefit-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 90px;
}

#benefits-logo {
    position: absolute;
    top: calc(50% + 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#benefits-logo img {
    margin-bottom: 20px;
}

#benefits-logo p {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #799dce;
    font-weight: 300;
    font-family: "Roboto";
    width: 360px;
    max-width: 100%;
    margin-bottom: 0;
}

.benefit-text-wrapper {
    padding: 0 25px;
}

.benefit-title h5 {
    font-size: 20px;
    line-height: 44px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
}

.befit-text p {
    font-size: 18px;
    line-height: 24px;
    color: #799dce;
    font-weight: 300;
    font-family: "Roboto";
    width: 470px;
    max-width: 100%;
}

#benefit-3 .befit-text p {
    margin-left: auto;
    margin-right: auto;
}

.benefit-wrapper {
    position: absolute;
}

#benefit-1 {
    bottom: 245px;
    right: calc(100% - 45px);
}

#benefit-5 {
    bottom: 245px;
    left: calc(100% - 45px);
}

#benefit-2 {
    top: 50px;
    bottom: 440px;
    right: calc(100% - 120px);
}

#benefit-4 {
    top: 50px;
    bottom: 440px;
    left: calc(100% - 120px);
}

#benefit-3 {
    top: -150px;
    width: 100%;
    flex-basis: 100%;
}

#benefit-1 .benefit-icon-wrapper,
#benefit-2 .benefit-icon-wrapper,
#benefit-3 .benefit-icon-wrapper {
    order: 2;
}

#benefit-1,
#benefit-2 {
    text-align: right;
}

#benefit-4,
#benefit-5 {
    text-align: left;
}

#benefit-3 {
    text-align: center;
}

#benefit-3 .benefit-text-wrapper,
#benefit-3 .benefit-icon-wrapper {
    width: 100%;
    flex-basis: 100%;
    justify-content: center;
    text-align: center;
}


#security {
    padding: 110px 0 80px 0;
}

.security-column-wrapper {
    width: 20px;
    flex-basis: 20%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 5px;

}

.security-column-link {
    width: 100%;
    height: 100%;
    text-decoration-line: none;
}

.security-column-inner {
    max-width: 100%;
    width: 100%;
    height: 100%;
    /*display: flex;*/
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 30px 20px 20px 20px;
    background-color: #FFF;
    border-radius: 10px;
}

.security-icon-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.security-text-wrapper {
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
}

.security-icon {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(64, 131, 222, .2);
}

.security-text-wrapper p {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    width: 170px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.security-column-link:hover,
.security-column-link:focus,
.security-column-link:hover .security-text-wrapper p,
.security-column-link:focus .security-text-wrapper p {
    color: #3f81da;
    text-decoration-line: none;
}

#best-way,
#rounder-wrapper {
    overflow: hidden;
}

#best-way .container,
#rounder-wrapper .container {
    padding: 160px 15px;
    border-radius: 10px;
}

#best-content-wrapper,
#rounder-content-wrapper {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: -360px;
    left: auto;
    width: calc(100% + 135px);
    height: 100%;
    border-radius: 10px;
}

#best-content-wrapper:after,
#rounder-content-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    left: -56.5px;
    top: 50%;
    transform: rotate(-90deg);
    background-image: url("/wp-content/uploads/2022/11/clients-before.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 129px;
    height: 14px;
}

#best-content-wrapper:before,
#rounder-content-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(19, 39, 67);
    background: -moz-linear-gradient(90deg, rgba(19, 39, 67, 1) 0%, rgba(19, 39, 67, 1) 20%, rgba(42, 87, 147, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(19, 39, 67, 1) 0%, rgba(19, 39, 67, 1) 20%, rgba(42, 87, 147, 0) 100%);
    background: linear-gradient(90deg, rgba(19, 39, 67, 1) 0%, rgba(19, 39, 67, 1) 20%, rgba(42, 87, 147, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132743", endColorstr="#2a5793", GradientType=1);
    border-radius: 10px;
}

.best-text p {
    width: 415px;
    max-width: 100%;
}

.show-lg {
    display: none;
}

#trust {
    padding-top: 100px;
}

.trust-text p {
    width: 960px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#trust .gallery-section {
    margin-bottom: 5px;
    margin-top: 80px;
}

#sustainability {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 260px;
    padding-bottom: 40px;
}

#sustainability .container {
    position: relative;
}

#sustainability::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgb(19, 39, 67);*/
    /*background: -moz-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 0%, rgba(19, 39, 67, 0.7) 100%);*/
    /*background: -webkit-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 0%, rgba(19, 39, 67, 0.7) 100%);*/
    /*background: linear-gradient(180deg, rgba(19, 39, 67, 0.7) 0%, rgba(19, 39, 67, 0.7) 100%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132743", endColorstr="#132743", GradientType=1);
    */
    background: rgb(19, 39, 67);
    background: -moz-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 50%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 50%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
    background: linear-gradient(180deg, rgba(19, 39, 67, 0.7) 50%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132743", endColorstr="#132743", GradientType=1);
}

.sus-sub {
    font-size: 30px;
    line-height: 52px;
    color: #ffffff;
    font-weight: 300;
}

.know-wrapper {
    width: 380px;
    flex-basis: 380px;
    max-width: 100%;
    padding: 45px 35px 30px 15px;
}

.know-inner {
    position: relative;
}

.know-inner::before {
    content: "";
    width: 45px;
    height: 2px;
    background-color: #ff5166;
    position: absolute;
    left: 0;
    top: -20px
}

#solution-banner,
#blurry-banner {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 115px 0 100px 0;
    overflow: hidden;
}

#adipec-banner-image {
    position: relative;
}

#adipec-intro {
    background-size: inherit;
    background-repeat: no-repeat;
    background-position-x: calc(100% + 200px);
    background-position-y: -50px;
}

#adipec-banner-image::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(246, 248, 250);
    background: -moz-linear-gradient(180deg, rgba(246, 248, 250, 0.01866684173669464) 0%, rgba(246, 248, 250, 1) 90%, rgba(246, 248, 250, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(246, 248, 250, 0.01866684173669464) 0%, rgba(246, 248, 250, 1) 90%, rgba(246, 248, 250, 1) 100%);
    background: linear-gradient(180deg, rgba(246, 248, 250, 0.01866684173669464) 0%, rgba(246, 248, 250, 1) 90%, rgba(246, 248, 250, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f6f8fa", endColorstr="#f6f8fa", GradientType=1);
}

#solution-banner::after,
#blurry-banner::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /*background: rgb(245, 247, 249);*/
    /*background: -moz-linear-gradient(90deg, rgba(245, 247, 249, 1) 39%, rgba(245, 247, 249, 0.5) 89%, rgba(245, 247, 249, 0.2) 96%);*/
    /*background: -webkit-linear-gradient(90deg, rgba(245, 247, 249, 1) 39%, rgba(245, 247, 249, 0.5) 89%, rgba(245, 247, 249, 0.2) 96%);*/
    /*background: linear-gradient(90deg, rgba(245, 247, 249, 1) 39%, rgba(245, 247, 249, 0.5) 89%, rgba(245, 247, 249, 0.2) 96%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f7f9", endColorstr="#f5f7f9", GradientType=1);*/

    /*background: rgb(245, 247, 249);*/
    /*background: -moz-linear-gradient(90deg, rgba(245, 247, 249, 1) 39%, rgba(245, 247, 249, 0.5) 66%, rgba(245, 247, 249, 0.15) 100%);*/
    /*background: -webkit-linear-gradient(90deg, rgba(245, 247, 249, 1) 39%, rgba(245, 247, 249, 0.5) 66%, rgba(245, 247, 249, 0.15) 100%);*/
    /*background: linear-gradient(90deg, rgba(245, 247, 249, 1) 39%, rgba(245, 247, 249, 0.5) 66%, rgba(245, 247, 249, 0.15) 100%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f7f9", endColorstr="#f5f7f9", GradientType=1);*/
    background: rgb(245, 247, 249);
    background: -moz-linear-gradient(90deg, rgba(245, 247, 249, 1) 44%, rgba(245, 247, 249, 0.7) 58%, rgba(245, 247, 249, 0.15) 100%);
    background: -webkit-linear-gradient(90deg, rgba(245, 247, 249, 1) 44%, rgba(245, 247, 249, 0.7) 58%, rgba(245, 247, 249, 0.15) 100%);
    background: linear-gradient(90deg, rgba(245, 247, 249, 1) 44%, rgba(245, 247, 249, 0.7) 58%, rgba(245, 247, 249, 0.15) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f7f9", endColorstr="#f5f7f9", GradientType=1);
}

#solution-banner::before,
#blurry-banner::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 960px;
    height: 42px;
    background-image: url("/wp-content/uploads/2022/11/Solutions-banner.svg");
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
}

#solution-video,
#blurry-big-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60vw;
    height: 100%;
}

#solution-video video {
    height: auto;
    width: 100%;
    position: absolute;
    top: -100px;
}

#blurry-big-image img {
    height: auto;
    width: 100%;
    position: absolute;
    top: -100px;
}

#solution-banner .container,
#blurry-banner .container {
    position: relative;
    z-index: 2;
}
.adipec-banner-text{
    width: ;
}

.page-template-page-solutions footer {
    border-top: none;
}

#solution-banner p,
#blurry-banner p {
    font-size: 18px;
    line-height: 24px;
    color: #555555;
    font-weight: 300;
    margin-bottom: 20px;
}

#solution-banner .red-button,
#blurry-banner .red-button {
    color: #000;
    display: inline-block;

}

#solution-banner .red-button:hover,
#blurry-banner .red-button:hover {
    color: #000;
}

.modal-header {
    background-color: #4083de;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: none;
    padding: 15px;
}

#mobileModal .modal-content {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
}

.modal-body {
    padding: 50px 20px 34px 20px;
}

.modal-title {
    margin-bottom: 25px;
}

#mobileModal .modal-content #contact-form-inner {
    margin: 0 auto;
    border-radius: 0;
    padding: 0;
    filter: none;
}

.modal-body form {
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*
=========================
CONTACT
========================
 */
#contact-intro {
    padding: 80px 0;
}

#contact-list {
    margin-top: 20px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 35px 0;
}

#contact-list .phone {
    padding-right: 10px;
}

#contact-list .email {
    display: flex;
    flex-direction: column;
}

#contact-list .phone a {
    font-size: 30px;
    line-height: 55px;
    color: #000000;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#contact-list .phone a .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4083de;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 20px;
}

#contact-list .phone a .icon i {
    color: #FFF;
    font-size: 14px;
}

#contact-list .phone a:hover {
    color: #4083de;
    text-decoration-line: none;
}


#contact-list .email a {
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    font-weight: 400;
    padding: 0 10px;
    border-left: 1px solid rgba(0, 0, 0, .1);
    border-right: 1px solid rgba(0, 0, 0, .1);
}

#contact-list .email a:hover {
    color: #4083de;
    text-decoration-line: none;
}

#contact-list .social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

#contact-list .social-links a {
    color: #4083de;
    text-decoration-line: none;
    font-size: 34px;
    padding: 0 7px;
}

#contact-list .social-links a:first-of-type {
    padding-left: 0;
}

#contact-list .social-links a:hover {
    color: #ff5165;
}

#map-buttons {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#map-buttons a {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#map-buttons a:hover,
#map-buttons a:hover span {
    color: #4083de;
    text-decoration-line: none;
}

#map-buttons span {
    width: 100%;
}

#map-buttons .city {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
}

#map-buttons .street {
    color: #555555;
    font-weight: 300;
}

#map-buttons .show {
    font-size: 14px;
    line-height: 26px;
    color: #555555;
    font-weight: 300;
}

#map-buttons .show i {
    padding-left: 5px;
}

.map-wrapper {
    width: 100%;
}

.map-wrapper {
    display: none;
}

.map-wrapper.active {
    display: block;
}

.map-wrapper iframe {
    width: 100%;
    height: 482px;
    margin-bottom: -7px;
}

#contact-form-inner {
    width: 518px;
    border-radius: 10px;
    filter: drop-shadow(0px 24px 19.5px rgba(0, 0, 0, 0.04));
    background-color: #ffffff;
    margin-top: -115px;
    margin-left: auto;
    margin-right: 0;
    padding: 50px;
    max-width: 100%;
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 0;
}

#contact-form-inner form input[type=text]::placeholder,
#contact-form-inner form textarea::placeholder,
#contact-form-inner form input[type=email]::placeholder,
#contact-form-inner form input[type=tel]::placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #989898;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;

}

#contact-form-inner form input {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    height: 55px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    border-radius: 0;
}

#contact-form-inner form textarea:focus-within,
#contact-form-inner form input:hover,
#contact-form-inner form input:focus,
#contact-form-inner form input:focus-visible {
    outline: none;
    box-shadow: none;
}

#contact-form-inner form textarea {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    height: 55px;
    resize: none;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    overflow: hidden;
    border-radius: 0;
}

#contact-form-inner form input[type=submit] {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    font-family: 'Red Hat Display', sans-serif;
    display: block;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #ff5165;
    height: auto;
    background-color: rgba(255, 255, 255, 0);
    padding: 8px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    margin-top: 18px;
}

#contact-form-inner form input[type=submit]:hover,
#contact-form-inner form input[type=submit]:focus,
#contact-form-inner form input[type=submit]:focus-within {
    background-color: #ff5165;
}

#contact-form-inner form .ginput_recaptcha div {
    margin-left: auto;
    margin-right: auto;
}

/*
=========================
CAREERS
========================
 */
.careers-text p {
    margin-bottom: 30px;
}


#contact-form-inner form .gfield_description {
    font-size: 13px;
    color: #b8b8b8;
    font-weight: 300;
    font-style: italic;
    font-family: "Roboto";
}

#contact-form-inner form .gfield_required {
    display: none;
}

#contact-form-inner form .gfield_label {
    font-size: 16px;
    line-height: 24px;
    color: #989898;
    font-weight: 300;
    font-family: "Roboto";
    margin-bottom: 0;
    padding-right: 5px;
}

#contact-form-inner form #field_2_9 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}

#contact-form-inner form #field_2_9 input {
    padding: 0;
    width: auto;
    border: none;
    height: auto;
}

#contact-form-inner form .gform_fileupload_rules,
#contact-form-inner form #field_2_9 .gfield_description {
    display: none;
}

#no-jobs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

#no-jobs img {
    margin: 20px auto 35px auto;
}

#no-jobs h3 {
    width: 100%;
    flex-basis: 100%;
    font-weight: 400;
}

#job-accordion {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.accordion {
    padding: 20px 0;
    padding-top: 0;
}

.accordion .card {
    border: none;
    background: rgba(255, 255, 255, 0);
    border-radius: 0;
}

.accordion .card-header {
    padding: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
    border: none;
}

.accordion .card-header button {
    font-size: 19px;
    line-height: 24px;
    color: #000000;
    font-weight: 600;
    font-family: 'Red Hat Display', sans-serif;
    outline: none;
    background: none;
    padding: 20px 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;

}

.accordion .card-header button .job-title {
    width: calc(100% - 20px);
    flex-basis: calc(100% - 20px);
    max-width: 100%;
    color: #ff5166;
}

.accordion .card-header button.collapsed .job-title {
    color: #000;
}

.accordion .card-header button .arrow {
    color: #ff5166;
    transform: rotate(180deg);

    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.accordion .card-header button.collapsed .arrow {
    transform: rotate(0);
}

.accordion .card-header button:hover,
.accordion .card-header button:focus,
.accordion .card-header button:focus-within {
    outline: none;
    background: none;
    box-shadow: none;
    text-decoration-line: none;
}

.accordion > .card > .card-header {
    margin-bottom: 0;
}

.accordion .card-body {
    padding: 15px 0;
}

.accordion .card-body p {
    font-size: 18px;
    line-height: 26px;
    color: #555555;
    font-weight: 300;
    font-family: "Roboto";
}

.gform_confirmation_wrapper img {
    margin: 0 auto;
}

/*
=============================
BLOG
=============================
 */
.top-post {
    height: 610px;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    padding: 50px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
    background-color: #ff5166;
    overflow: hidden;
}

.top-post::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(19, 40, 68);
    background: -moz-linear-gradient(45deg, rgba(19, 40, 68, 1) 16%, rgba(19, 40, 68, 0.36740633753501406) 100%);
    background: -webkit-linear-gradient(45deg, rgba(19, 40, 68, 1) 16%, rgba(19, 40, 68, 0.36740633753501406) 100%);
    background: linear-gradient(45deg, rgba(19, 40, 68, 1) 16%, rgba(19, 40, 68, 0.36740633753501406) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132844", endColorstr="#132844", GradientType=1);
    border-radius: 10px;
}

.top-post a {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.top-post h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    width: 700px;
    max-width: 100%;
    line-height: 100%;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    margin-bottom: 0;
}

.latest-top-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 35px;
}

.latest-top-content p {
    margin-bottom: 0;
}

.latest-banner {
    border-radius: 5px;
    background-color: #ff5166;
    width: 100px;
    flex-basis: 100px;
    max-width: 100%;
}

.latest-banner p {
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

.latest-date {
    padding-left: 15px;
}

.latest-date p {
    font-size: 16px;
    line-height: 24px;
    color: #799dce;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.top-post-content {
    margin-top: auto;
    width: 100%;
    position: relative;
}

.top-post a:hover {
    text-decoration-line: none;
}

.top-post a:hover h2 {
    color: #ff5166;
}

.blog-excerpt {
    font-size: 16px;
}

.blog-date p {
    font-size: 14px;
    line-height: 24px;
    color: #989898;
    font-weight: 300;
    margin-bottom: 0;
}

.loop-title-link {
    text-decoration-line: none;
}

.loop-title-link h3 {
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.loop-title-link:hover,
.loop-title-link:hover h3 {
    color: #2b5690;
    text-decoration-line: none;
}

.loop-read-link {
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ff5166;
    font-weight: 700;

}

.loop-read-link:hover {
    text-decoration-line: none;
}

.blog-loop-information {
    padding: 30px 60px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/*
==========================
SINGLE BLOG
===========================
 */
.single-post-featured {
    height: 550px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.single-post-featured img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

#date-posted p {
    font-size: 14px;
    line-height: 24px;
    color: #989898;
    font-weight: 700;
}

#date-posted p span {
    font-weight: 300;
}

#post-content-wrapper {
    margin-top: 40px;
}

#post-content-wrapper p {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

#post-content-wrapper p {
    margin-bottom: 30px;
}

#post-content-wrapper ul,
#post-content-wrapper ol {
    margin-bottom: 30px;
}

#post-content-wrapper ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

#post-content-wrapper ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 9px;
    width: 18px;
    height: 14px;
    background-image: url("/wp-content/uploads/2022/11/ul-before.svg");
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

#post-content-wrapper li {
    font-size: 16px;
    line-height: 34px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-left: 40px;
}

#post-content-wrapper ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding-left: 0;
}

#post-content-wrapper ol li {
    counter-increment: my-awesome-counter;
}

#post-content-wrapper ol li::before {
    content: counter(my-awesome-counter) ".";
    position: absolute;
    left: 0;
    font-size: 16px;
    line-height: 34px;
    color: #ff5166;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    top: 0;
}

#post-content-wrapper h2,
#post-content-wrapper h3,
#post-content-wrapper h4,
#post-content-wrapper h5,
#post-content-wrapper h6 {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 100%;
    margin-bottom: 25px;
}

#post-content-wrapper h2 {
    font-size: 30px;
    color: #000000;
}

#post-content-wrapper h3 {
    font-size: 26px;
    color: #000000;
}

#post-content-wrapper h4 {
    font-size: 22px;
    color: #000000;
}

#post-content-wrapper h5 {
    font-size: 20px;
    color: #000000;
}

#post-content-wrapper h6 {
    font-size: 18px;
    color: #000000;
}

#post-content-wrapper img {
    border-radius: 10px;
}

#post-content-wrapper figcaption {
    font-size: 14px;
    line-height: 24px;
    color: #989898;
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

/*
===========================
RESOURCES
==========================
 */
#resource-archive-sub {
    margin: 50px auto;
    font-size: 40px;
}

.top-post.resource-top-video a {
    justify-content: flex-start;
}

.top-post.resource-top-video:nth-of-type(2) {
    margin-top: 20px;
}

.resource-top-video .play {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.resource-top-video .play-icon {
    mask: url("/wp-content/uploads/2022/11/Play.svg") no-repeat center;
    -webkit-mask: url('/wp-content/uploads/2022/11/Play.svg') no-repeat center;
    background: #FFF;
    flex-basis: 105px;
    width: 105px;
    height: 113px;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;

}

.resource-top-video .play:hover .play-icon {
    background-color: #ff5166;
}

.resource-top-video .latest-date {
    padding-left: 0;
}

.single-post-featured .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.single-post-featured .play-icon {
    mask: url("/wp-content/uploads/2022/11/Play.svg") no-repeat center;
    -webkit-mask: url('/wp-content/uploads/2022/11/Play.svg') no-repeat center;
    background: #FFF;
    flex-basis: 105px;
    width: 105px;
    height: 113px;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
    display: block;

}

.single-post-featured .play:hover .play-icon {
    background-color: #ff5166;
}

/*
===========================
FAQ'S
===========================
 */
.page-id-399 h1 {
    text-transform: none !important;
}

.accordion .my-button {
    display: inline-block;
    color: #000;
}

#faq-accordion .red-button {
    color: #000;
}

/*
=============================
BLOG
=============================
 */
.top-post {
    height: 610px;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    padding: 50px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
    background-color: #ff5166;
    overflow: hidden;
}

.top-post::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(19, 40, 68);
    background: -moz-linear-gradient(45deg, rgba(19, 40, 68, 1) 16%, rgba(19, 40, 68, 0.36740633753501406) 100%);
    background: -webkit-linear-gradient(45deg, rgba(19, 40, 68, 1) 16%, rgba(19, 40, 68, 0.36740633753501406) 100%);
    background: linear-gradient(45deg, rgba(19, 40, 68, 1) 16%, rgba(19, 40, 68, 0.36740633753501406) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132844", endColorstr="#132844", GradientType=1);
    border-radius: 10px;
}

.top-post a {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.top-post h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    width: 700px;
    max-width: 100%;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    margin-bottom: 0;
}

.latest-top-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 35px;
}

.latest-top-content p {
    margin-bottom: 0;
}

.latest-banner {
    border-radius: 5px;
    background-color: #ff5166;
    width: 100px;
    flex-basis: 100px;
    max-width: 100%;
}

.latest-banner p {
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

.latest-date {
    padding-left: 15px;
}

.latest-date p {
    font-size: 16px;
    line-height: 24px;
    color: #799dce;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.top-post-content {
    margin-top: auto;
    width: 100%;
    position: relative;
}

.top-post a:hover {
    text-decoration-line: none;
}

.top-post a:hover h2 {
    color: #ff5166;
}

.blog-excerpt {
    font-size: 16px;
}

.blog-date p {
    font-size: 14px;
    line-height: 24px;
    color: #989898;
    font-weight: 300;
    margin-bottom: 0;
}

.loop-title-link {
    text-decoration-line: none;
}

.loop-title-link h3 {
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.loop-title-link:hover,
.loop-title-link:hover h3 {
    color: #2b5690;
    text-decoration-line: none;
}

.loop-read-link {
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
    color: #ff5166;
    font-weight: 700;

}

.loop-read-link:hover {
    text-decoration-line: none;
}

.blog-loop-information {
    padding: 30px 60px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/*
==========================
PAGES
===========================
 */

#page-content-wrapper p {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

#page-content-wrapper p {
    margin-bottom: 30px;
}

#page-content-wrapper ul,
#page-content-wrapper ol {
    margin-bottom: 30px;
}

#page-content-wrapper ul,
#page-content-wrapper ol ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

#page-content-wrapper ul li:before,
#page-content-wrapper ul ul li:before,
#page-content-wrapper ol ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 17px;
    width: 5px;
    height: 5px;
    background-color: #ff5166;
    border-radius: 50%;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

#page-content-wrapper li {
    font-size: 16px;
    line-height: 34px;
    color: #555555;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-left: 20px;
}

#page-content-wrapper ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    padding-left: 0;
}

#page-content-wrapper ol ol {
    list-style: none;
    counter-reset: my-awesome-counter-two;
    padding-left: 0;
}

#page-content-wrapper ol li {
    counter-increment: my-awesome-counter;
}

#page-content-wrapper ul ol li,
#page-content-wrapper ol ol li,
#page-content-wrapper ol ul li {
    counter-increment: none;
}

#page-content-wrapper ol li::before {
    content: counter(my-awesome-counter) ".";
    position: absolute;
    left: 0;
    font-size: 16px;
    line-height: 34px;
    color: #ff5166;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    top: 0;
}

#page-content-wrapper ul ol li::before
#page-content-wrapper ol ol li::before {
    content: counter(my-awesome-counter) ".";
}

#page-content-wrapper h2,
#page-content-wrapper h3,
#page-content-wrapper h4,
#page-content-wrapper h5,
#page-content-wrapper h6 {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 100%;
    margin-bottom: 25px;
}

#page-content-wrapper h2 {
    font-size: 30px;
    color: #000000;
}

#page-content-wrapper h3 {
    font-size: 26px;
    color: #000000;
}

#page-content-wrapper h4 {
    font-size: 22px;
    color: #000000;
}

#page-content-wrapper h5 {
    font-size: 20px;
    color: #000000;
}

#page-content-wrapper h6 {
    font-size: 18px;
    color: #000000;
}

#page-content-wrapper img {
    border-radius: 10px;
}

#page-content-wrapper figcaption {
    font-size: 14px;
    line-height: 24px;
    color: #989898;
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

#error-main {
    background-image: url(/wp-content/uploads/2022/11/bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.show-md,
.show-sm {
    display: none;
}

#solutions-child-intro {
    padding: 60px 0;
}

.proveo-explanation {
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 115px 0 75px;
}

.explanation-circle {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 4px;
    background-color: #ff5166;
    position: relative;
    top: -9px;
    margin: 0 2px;
}

.explanation-text {
    width: 1175px;
    max-width: 100%;
    margin: 0 auto;
}

.feedback-navigation-show {
    display: none;
}

.awarness-mobile-show {
    display: none;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1260px;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        max-width: 570px;
    }
}

@media (max-width: 1600px) {
    .page-hero-section .container {
        margin-bottom: auto;
        margin-top: auto;
        padding-top: 89px;
    }

    h1.page-title {
        text-align: center;
    }

    #solutions-image-wrapper img {
        right: 0;
        width: 650px;
    }
}

@media (max-width: 1500px) {
    #best-content-wrapper,
    #rounder-content-wrapper {
        width: calc(100% + 30px);
    }

    #solution-banner::before,
    #about-banner::before,
    #blurry-banner::before,
    #narrow-banner::before {
        right: -300px;
    }

    section#leadership .container-fluid {
        max-width: 991.8px;
    }

    .leadership-wrapper {
        width: calc(100% / 3);
        flex-basis: calc(100% / 3);
        justify-content: center;
    }

    #solution-video,
    #blurry-big-image {
        height: 150%;
        width: 75vw;
    }

    #solution-video video {
        top: -40px;
    }

}

@media (max-width: 1400px) {
    .benefit-wrapper {
        width: 400px;
        flex-basis: 400px;
        max-width: 100%;
    }

    #adipec-intro {
        background-size: inherit;
        background-repeat: no-repeat;
        background-position-x: calc(100% + 400px);
        background-position-y: -100px;
    }
}

@media (max-width: 1279.9px) {
    #contact-list {
        padding: 15px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #contact-list .phone {
        width: 100%;
        flex-basis: 100%;
        padding: 0;
    }

    #contact-list .email,
    #contact-list .social-links {
        width: 100%;
        flex-basis: 100%;
        justify-content: center;
        text-align: center;
    }

    #contact-list .email a {
        border: none;
    }

    #solution-video,
    #blurry-big-image {
        width: 75vw;
    }

    #solution-video video {
        top: -40px;
    }

    .benefits-circle-inner {
        width: 500px;
        height: 500px;
        margin-bottom: -20px;
    }

    .benefit-inner {
        min-height: 130px;
    }

    .benefit-wrapper {
        width: 350px;
        flex-basis: 350px;
        max-width: 100%;
    }

    #benefit-1 {
        bottom: 130px;
        right: calc(100% - 55px);
    }

    #benefit-5 {
        bottom: 130px;
        left: calc(100% - 55px);
    }

    #benefit-2 {
        top: 50px;
        right: calc(100% - 85px);
    }

    #benefit-4 {
        top: 50px;
        left: calc(100% - 85px);
    }

    #benefits-logo img {
        width: 150px;
    }

    #solutions-image-wrapper img {
        width: 650px;
    }


}

@media (max-width: 1199.9px) {
    .page-hero-section {
        height: 400px;
    }

    .security-icon-wrapper {
        margin-bottom: 20px;
    }

    .security-icon {
        width: 140px;
        height: 140px;
    }

    #sustainability {
        padding-top: 140px;
    }

    .know-wrapper {
        width: 33.33%;
        flex-basis: 33.33%;
        padding: 30px 15px;
    }

    #about-us-image-wrapper img {
        width: 600px;
        left: -100px;
    }

    #solutions-intro-text-wrapper,
    #adipec-intro {
        padding: 100px 15px;
    }


    #solutions-image-wrapper img {
        width: 550px;
        right: -50px;

    }

    #indigenous {
        padding: 100px 0;
    }

    #map-buttons {
        flex-wrap: wrap;
    }

    #map-buttons a {
        width: 100%;
        flex-basis: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 20px;
    }

    #illustration-image-link-1 {
        left: 267px;
        top: 221px;
    }

    #illustration-image-link-2 {
        left: 308px;
        top: 122px;
        width: 200px;
    }

    #illustration-image-link-3 {
        left: 444px;
        top: 141px;
        width: 45px;
        height: 90px;
    }

    #illustration-image-link-4 {
        left: 647px;
        top: 181px;
        width: 86px;
        height: 83px;
    }

    #illustration-image-link-5 {
        left: 429px;
        top: 371px;
        width: 50px;
        height: 70px;
    }
}

@media (max-width: 1200px) {

    #social-menu {
        flex-wrap: wrap;
    }
}

@media (max-width: 991.8px) {
	
	#social-menu .youtube-link, .social-desktop {
		display: none;
	}
	
    #adipec-intro {
        background-image: none !important;
    }
	
	.social-link-mobile {
		display: inline-block;
	}

    .feedback-navigation {
        display: block;
    }
    /*.awarness-mobile-show{*/
    /*    display: none;*/
    /*}*/

    .contractor-button, .feedback-navigation-show, .feedback-navigation-show a {
        display: none;
    }

    header {
        padding: 20px 5px;
    }

    .show-lg {
        display: block;
    }

    .hide-lg {
        display: none !important;
    }

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

    h1.page-title {
        text-align: center;
    }

    .page-hero-section {
        height: 450px;
    }

    .page-hero-section .container {
        margin-bottom: auto;
        margin-top: auto;
        padding-top: 77px;
    }

    #mobile-menu-wrapper {
        margin-top: -35px;
    }

    #social-menu li a {
        color: rgba(255, 255, 255, .5);
    }

    #social-menu li a:hover {
        color: rgba(255, 255, 255, 1);
    }

    #social-menu li.contractor-button a {
        color: rgba(255, 255, 255, 1);
    }

    .feedback-navigation-show a img {
        display: inline-block;
        margin-right: 8px;
    }

    .menu-icon-toggle {
        display: block;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 9;
    }

    .menu-icon-toggle {
        /*top: -16px;*/
        position: absolute;
        right: 20px;
    }

    .menu-icon-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        position: absolute;
        top: 50%;
        background-color: #fff;
        transform: translate(0, -50%);
        transition: opacity 0.3s 0.3s;
    }

    .menu-icon-toggle span {
        background-color: #fff;
    }

    .menu-icon-toggle::before, .menu-icon-toggle::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        position: absolute;
        background-color: #fff;
        transition: transform 0.3s, top 0.3s 0.3s, bottom 0.3s 0.3s;
    }

    .menu-icon-toggle::before {
        top: 6px;
    }

    .menu-icon-toggle::after {
        bottom: 6px;
    }

    .open .menu-icon-toggle span {
        opacity: 0;
        transition: opacity 0.3s;
    }

    .open .menu-icon-toggle::before, .open .menu-icon-toggle::after {
        background-color: #6191d1;
    }

    .open .menu-icon-toggle::before {
        top: calc(50% - 1px);
        transform: rotate(45deg);
    }

    .open .menu-icon-toggle::after {
        bottom: calc(50% - 1px);
        transform: rotate(-45deg);
    }

    .open .menu-icon-toggle::before,
    .open .menu-icon-toggle::after {
        transition: top 0.3s, bottom 0.3s, transform 0.3s 0.3s;
    }

    .menu-background {
        visibility: hidden;
        width: 300%;
        height: 250px;
        position: absolute;
        left: -130%;
        background-color: #fff;
        transition: background-position 0.25s, transform 0.25s 0.25s, visibility 0.25s .5s;
    }

    .open .menu-background {
        visibility: visible;
        transition: background-position 0.2s, transform 0.2s 0.2s;
    }

    .menu-background.top {
        transform: rotate(-45deg) translateY(-150%);
        background: linear-gradient(to top, #ffb565 50%, #fff 50%);
        background-size: 100% 200%;
        background-position: -100% 100%;
    }

    .menu-background.top-top {
        transform: rotate(-45deg) translateY(50%) scaleY(0);
        background: linear-gradient(to top, #ff5166 50%, #fff 50%);
        background-size: 100% 200%;
        background-position: -100% 100%;
    }

    .open .menu-background.top {
        transform: rotate(-45deg) translateY(-49%);
        background-position: 0 0;
    }

    .menu-background.middle {
        transform: rotate(-45deg) translateY(50%) scaleY(0);
        background: linear-gradient(to top, #ff5166 50%, #fff 50%);
        background-size: 100% 200%;
        background-position: -100% 100%;
    }

    .open .menu-background.middle {
        transform: rotate(-45deg) translateY(50%) scaleY(1);
        background-position: 0 0;
    }

    .menu-background.bottom {
        transform: rotate(-45deg) translateY(250%);
        background: linear-gradient(to bottom, #fff 50%, #6191d1 50%);
        background-size: 100% 200%;
        background-position: 0 -100%;
    }

    .open .menu-background.bottom {
        transform: rotate(-45deg) translateY(149%);
        background-position: 0 0;
    }

    .menu-background.bottom-bottom {
        transform: rotate(-45deg) translateY(50%) scaleY(0);
        background: linear-gradient(to top, #ff5166 50%, #fff 50%);
        background-size: 100% 200%;
        background-position: -100% 100%;
    }

    .menu-navigation {
        width: 100vw;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        z-index: -1;
        opacity: 0;
        height: 0;
    }

    body.open .menu-navigation {
        height: 100vh;
        z-index: 1;
        opacity: 1;
    }

    #mobile-menu {
        position: absolute;
        width: 100%;
        height: auto;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
        visibility: hidden;
        list-style-type: none;
        margin: 0;
        z-index: 99999;
        padding: 20px;
        margin-top: 80px;
        overflow-y: scroll;
		column-gap: 10px;
    }

    .open #mobile-menu {
        visibility: visible;
    }

    #mobile-menu li {
        opacity: 0;
        margin-bottom: 5px;
        transform: translateX(20px);
        transition: all 0.3s;
        text-align: center;
		width: 100%;
    }
	
	#mobile-menu li.social-link-mobile {
		width: auto;
	}

    #mobile-menu li:nth-child(5) span {
        transition-delay: 1.2s;
    }

    #mobile-menu li a.open-menu span {
        margin-right: 0;
        margin-left: auto;
        padding-left: 12px;
        opacity: 1;
        mask: url("/wp-content/uploads/2022/11/down-arrow.svg") no-repeat center;
        -webkit-mask: url("/wp-content/uploads/2022/11/down-arrow.svg") no-repeat center;
        width: 13px;
        height: 9px;
        display: block;
        position: absolute;
        bottom: 7px;
        right: -22px;
        background-color: rgba(0, 0, 0, .5);
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }

    .sub-menu {
        position: relative;
        height: 0;
        background: rgba(255, 255, 255, 0);
        box-shadow: none;
        border-radius: 0;
        width: 100%;
    }

    .sub-menu:before {
        display: none;
    }


    .open #mobile-menu li {
        opacity: 1;
        transform: translateX(0);
        backface-visibility: hidden;
        padding: 5px;

    }

    .open #mobile-menu li {
        transition-delay: .5s;
    }

    .open #mobile-menu li span {
        transition-delay: 0;
    }

    #mobile-menu a {
        position: relative;
        font-size: 24px;
        text-decoration: none;
        color: #6191d1;
        text-align: center;
    }

    #mobile-menu li.current-menu-ancestor a,
    #mobile-menu li.current-menu-item a,
    #mobile-menu li.current-menu-ancestor .sub-menu li.current-menu-item a {
        color: #ff5166;
    }

    #mobile-menu li.current-menu-ancestor .sub-menu a {
        color: #6191d1;
    }

    .menu-item-has-children.active .sub-menu {
        height: auto;
    }

    #mobile-menu .sub-men {
        width: 100%;
    }


    .open #mobile-menu .sub-menu li {
        padding: 10px;
        transition-delay: 0s;
    }

    .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        color: #fff;
        transition: all 0.3s .5s;
    }

    .open .content {
        opacity: 0;
        transition: all 0.3s;
    }

    #solutions-intro-text-wrapper,
    #adipec-intro {
        padding: 50px 15px;
    }

    #solutions-intro {
        background-image: none !important;
    }

    #solutions-image-wrapper {
        position: relative;
    }

    #solutions-intro-text-wrapper h2 {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    #solutions-intro .intro-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    #solutions-mobile {
        position: relative;
    }

    #solutions-intro .container {
        position: relative;
        z-index: 3;
    }

    #solutions-image-wrapper-mobile {
        position: relative;
    }

    #solutions-mobile::before {
        background-image: url("/wp-content/uploads/2022/11/solutioins-intro-mobile.webp");
        background-size: cover;
        background-position: bottom center;
        background-repeat: no-repeat;
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(100% + 50px);

    }

    #about-intro-text-wrapper {
        padding: 50px 15px;
    }

    #security .row {
        margin-top: 40px;
    }

    .security-column-wrapper {
        width: 50%;
        flex-basis: 50%;
        padding: 5px;
    }


    .security-column-inner {
        display: flex;
        align-items: center;
        padding: 20px;
    }

    .security-icon-wrapper,
    .security-text-wrapper {
        width: 50%;
        flex-basis: 50%;
    }

    .security-text-wrapper {
        padding-left: 20px;
    }

    .security-text-wrapper p {
        width: 100%;
        text-align: left;
    }

    #best-way .container,
    #rounder-wrapper .container {
        padding: 80px 15px;
    }

    .gallery-item-inner {
        height: 350px;
    }

    #solution-video,
    #blurry-big-image {
        display: none;
    }

    #solution-banner::before,
    #about-banner::before,
    #blurry-banner::before,
    #narrow-banner::before {
        right: -450px;
    }

    #sustainability {
        padding: 80px 0 40px 0;
    }

    .sus-sub {
        line-height: 36px;
        position: relative;
    }

    .know-wrapper {
        width: 100%;
        flex-basis: 100%;
        padding: 30px 15px;
    }

    .sus-sub {
        padding-bottom: 35px;
        margin-bottom: 0;
    }

    .sus-sub::before {
        content: "";
        width: 45px;
        height: 2px;
        background-color: #ff5166;
        position: absolute;
        left: 50%;
        transform: translateX(-22px);
        top: auto;
        bottom: -15px;
    }

    .know-wrapper:first-of-type {
        margin-top: 30px;
    }

    .know-wrapper {
        padding: 15px;
    }

    #sustainability {
        padding-top: 300px;
    }

    .know-inner::before {
        display: none;
    }


    #solution-banner,
    #blurry-banner {
        padding: 80px 0;
        background-image: none !important;
    }

    #solutions-image img {
        width: 100%;
        margin: 0 auto;
    }

    #about-us-image-wrapper img {
        right: -300px;
    }

    #presentation {
        padding: 60px 0;
    }

    #safety {
        padding: 60px 0;
    }

    #safety-text p {
        width: 100%;
        flex-basis: 100%;
    }

    #safety-images-wrapper img {
        margin: 20px auto 0 auto;
    }

    #map-image {
        margin-top: -180px;
        width: 120%;
        max-width: 120%;
        margin-left: -10%;


    }

    .client-logos {
        padding: 20px 0;
    }

    .banner-text p {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 20px;

    }

    #about-banner a,
    #narrow-banner a {
        display: inline-block;
    }

    .intro-section,
    #contact-intro {
        padding: 50px 0;
    }

    #solutions-child-intro {
        padding: 40px 0;
    }

    #indigenous {
        padding: 50px 0;
    }

    .leadership-wrapper {
        width: calc(100% / 3);
        flex-basis: calc(100% / 3);
        justify-content: center;
        padding-bottom: 0;
    }

    #contact-form-inner {
        margin: 40px auto 0 auto;
    }

    #solutions-image-wrapper img {
        width: 530px;
    }

    #quality-image-wrapper {
        order: 2;
    }

    #quality-text-wrapper {
        order: 1;
    }

    #qualified::before {
        width: 100%;
        height: 60%;
        bottom: -50px;
        left: 0;
        top: auto;
        background-size: inherit;
    }

    #qualified .text-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    #about-us-intro {
        background-image: none !important;
    }

    #about-image-wrapper-mobile {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /*
    =============================
    SOLUTOINS
    =============================
     */
    .services {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 80px 0;
    }

    .services > * {
        flex-grow: 1;
    }

    .circle--rotate {
        border-radius: 50%;
        border: 1px solid rgba(150, 171, 200, .1);
        width: 500px;
        height: 500px;
        margin: 0 auto 0;
        position: relative;
        transform: rotate(0deg);
        z-index: 0;
        padding: 0;
    }

    .circle--rotate > li {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 50%;
        z-index: 10;
        visibility: hidden;
    }

    .circle--rotate > li .icon {
        visibility: visible;
        cursor: pointer;
        text-align: center;
        overflow: hidden;
        font-size: 20px;
        color: #fff;
        border-radius: 50%;
        background-color: #000;
        height: 100px;
        width: 100px;
        margin: -50px auto;
        transition: all 400ms ease;
        box-shadow: -10px 10px 25px rgba(0, 0, 0, .2);
        z-index: 2;
    }

    .circle--rotate > li .icon .small-icon {
        width: 70px;
        height: 70px;
        background-color: #132844;

    }

    .circle--rotate > li.active .icon .small-icon {
        background-color: #82ddff;

    }

    .circle--rotate > li .icon::before {
        content: "";
        display: block;
        position: absolute;
        top: -35px;
        left: -35px;
        width: calc(100% + 70px);
        height: calc(100% + 70px);
        border-radius: 50%;
        background-color: #4083de;
        opacity: 0;


    }

    .circle--rotate > li .icon img {
        filter: invert(1) sepia(1);
    }

    .circle--rotate > li.active .icon img {
        filter: none;
    }

    .circle--rotate > li.active .icon::before {
        z-index: 1;
        opacity: 0.1;
    }

    .circle--rotate > li i {
        color: #fff;
        font-size: 24px;
        margin: auto;
        cursor: pointer;
        width: 100%;
        height: 100%;
        display: table;
    }

    .circle--rotate > li i::before {
        display: table-cell;
        vertical-align: middle;
    }

    .circle--rotate > li img {
        margin: auto;
    }

    .circle--slider {
        position: relative;
    }

    .circle--slider .rotate--circle {
        margin: 0 auto;
    }

    .circle--slider .circle--rotate > li div {
        position: relative;
        overflow: visible;
        background-color: #2b5690;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .circle--slider .circle--rotate > li.active div {
        background-color: #4083de;
    }

    .circle--slider .circle--rotate > li div span {
        transform: rotate(0deg);
        transition: all 2s;
        opacity: 0;
    }

    .circle--slider .circle--rotate > li.active div {
        font-size: 20px;
        background-color: #4083de;
        transition: all 1s;
    }

    .circle--slider .circle--rotate > li.active div span {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(-45deg);
        z-index: -1;
        opacity: 1;
    }

    .circle--slider .circle--rotate > li.active div span:before {
        position: absolute;
        height: 1px;
        top: -50%;
        right: 140%;
        bottom: 0;
        margin: auto;
        content: "";
        width: 30%;
        height: 30%;
        filter: blur(3px);
        opacity: 0.7;
        border: 6px solid #f48e2a;
        z-index: -1;
    }

    .circle--slider .circle--rotate > li.active div span:after {
        position: absolute;
        height: 1px;
        top: 100%;
        left: 130%;
        bottom: 0;
        margin: auto;
        content: "";
        width: 40%;
        height: 40%;
        border-radius: 50%;
        opacity: 0.7;
        border: 8px solid #fe9290;
        z-index: 5;
    }

    .circle--slider .count2 li:nth-child(2) {
        transform: rotate(180deg);
    }

    .circle--slider .count3 li:nth-child(2) {
        transform: rotate(120deg);
    }

    .circle--slider .count3 li:nth-child(3) {
        transform: rotate(240deg);
    }

    .circle--slider .count4 li:nth-child(2) {
        transform: rotate(90deg);
    }

    .circle--slider .count4 li:nth-child(3) {
        transform: rotate(180deg);
    }

    .circle--slider .count4 li:nth-child(4) {
        transform: rotate(270deg);
    }

    .circle--slider .count5 li:nth-child(2) {
        transform: rotate(72deg);
    }

    .circle--slider .count5 li:nth-child(3) {
        transform: rotate(144deg);
    }

    .circle--slider .count5 li:nth-child(4) {
        transform: rotate(216deg);
    }

    .circle--slider .count5 li:nth-child(5) {
        transform: rotate(-72deg);
    }

    .circle--slider .count6 li:nth-child(2) {
        transform: rotate(60deg);
    }

    .circle--slider .count6 li:nth-child(3) {
        transform: rotate(120deg);
    }

    .circle--slider .count6 li:nth-child(4) {
        transform: rotate(180deg);
    }

    .circle--slider .count6 li:nth-child(5) {
        transform: rotate(240deg);
    }

    .circle--slider .count6 li:nth-child(6) {
        transform: rotate(-60deg);
    }

    .circle--slider .count7 li:nth-child(2) {
        transform: rotate(51.5deg);
    }

    .circle--slider .count7 li:nth-child(3) {
        transform: rotate(103deg);
    }

    .circle--slider .count7 li:nth-child(4) {
        transform: rotate(154.5deg);
    }

    .circle--slider .count7 li:nth-child(5) {
        transform: rotate(206deg);
    }

    .circle--slider .count7 li:nth-child(6) {
        transform: rotate(-103deg);
    }

    .circle--slider .count7 li:nth-child(7) {
        transform: rotate(-51.5deg);
    }

    .circle--slider .count8 li:nth-child(2) {
        transform: rotate(45deg);
    }

    .circle--slider .count8 li:nth-child(3) {
        transform: rotate(90deg);
    }

    .circle--slider .count8 li:nth-child(4) {
        transform: rotate(135deg);
    }

    .circle--slider .count8 li:nth-child(5) {
        transform: rotate(180deg);
    }

    .circle--slider .count8 li:nth-child(6) {
        transform: rotate(-135deg);
    }

    .circle--slider .count8 li:nth-child(7) {
        transform: rotate(-90deg);
    }

    .circle--slider .count8 li:nth-child(8) {
        transform: rotate(-45deg);
    }

    .circle--slider .count9 li:nth-child(2) {
        transform: rotate(40deg);
    }

    .circle--slider .count9 li:nth-child(3) {
        transform: rotate(80deg);
    }

    .circle--slider .count9 li:nth-child(4) {
        transform: rotate(120deg);
    }

    .circle--slider .count9 li:nth-child(5) {
        transform: rotate(160deg);
    }

    .circle--slider .count9 li:nth-child(6) {
        transform: rotate(-160deg);
    }

    .circle--slider .count9 li:nth-child(7) {
        transform: rotate(-120deg);
    }

    .circle--slider .count9 li:nth-child(8) {
        transform: rotate(-80deg);
    }

    .circle--slider .count9 li:nth-child(9) {
        transform: rotate(-40deg);
    }

    .circle--slider .count10 li:nth-child(2) {
        transform: rotate(36deg);
    }

    .circle--slider .count10 li:nth-child(3) {
        transform: rotate(72deg);
    }

    .circle--slider .count10 li:nth-child(4) {
        transform: rotate(108deg);
    }

    .circle--slider .count10 li:nth-child(5) {
        transform: rotate(144deg);
    }

    .circle--slider .count10 li:nth-child(6) {
        transform: rotate(-180deg);
    }

    .circle--slider .count10 li:nth-child(7) {
        transform: rotate(-144deg);
    }

    .circle--slider .count10 li:nth-child(8) {
        transform: rotate(-108deg);
    }

    .circle--slider .count10 li:nth-child(9) {
        transform: rotate(-72deg);
    }

    .circle--slider .count10 li:nth-child(10) {
        transform: rotate(-36deg);
    }

    .circle--slider .animate-wrapper {
        width: 50%;
        height: 50%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        border-radius: 50%;
    }

    .circle--slider .animate-title {
        color: #fff;
    }

    .circle--slider .animate-img {
        width: 25%;
        height: 25%;
        border-radius: 50%;
        overflow: hidden;
    }

    .circle--slider .animate-img .animate-img__in {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 50%;
        background-repeat: no-repeat;
        z-index: 3;
        transform: rotate3d(0, 0, 0, 0deg) scale(0.85);
        transition: 0.55s ease-in-out;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-size: cover;
        box-shadow: -20px 20px 50px rgba(0, 0, 0, .3);
    }

    .circle--slider .animate-more {
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s 0.4s;
        min-width: 131px;
        overflow: hidden;
        text-align: center;
        z-index: 30;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        padding: 15px;
        height: 100%;
        width: 100%;
        transform: scale(0.8);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .circle--slider .animate.active .animate-more {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .circle--slider .animate.active .animate-img .animate-img__in {
        opacity: 1;
        transform: scale(1);
    }

    .circle--slider .prev, .circle--slider .next {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        display: block;
        height: 62px;
        width: 87px;
        text-align: center;
        cursor: pointer;
        z-index: 2;
    }

    .circle--slider .prev span, .circle--slider .next span {
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
        color: #FFF;
    }

    .circle--slider .prev {
        left: 20px;
    }

    .circle--slider .next {
        right: 20px;
    }

    #benefits-logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    #benefits-logo p {
        width: 100%;
        margin-bottom: 30px;
    }

    /*
    =================
    BLOCK 2
    ================
     */
    #block-2.block-2 .icon {
        transform: rotate(0);
    }

    #block-2.block-1 .icon {
        transform: rotate(287deg);
    }

    #block-2.block-3 .icon {
        transform: rotate(72deg);
    }

    #block-2.block-4 .icon {
        transform: rotate(144deg);
    }

    #block-2.block-5 .icon {
        transform: rotate(215deg);
    }

    /*
    =================
    BLOCK 3
    ================
    */
    #block-3.block-1 .icon {
        transform: rotate(215deg);
    }

    #block-3.block-2 .icon {
        transform: rotate(288deg);
    }

    #block-3.block-3 .icon {
        transform: rotate(0);
    }

    #block-3.block-4 .icon {
        transform: rotate(72deg);
    }

    #block-3.block-5 .icon {
        transform: rotate(144deg);
    }

    /*
     =================
     BLOCK 4
     ================
    */
    #block-4.block-1 .icon {
        transform: rotate(144deg);
    }

    #block-4.block-2 .icon {
        transform: rotate(215deg);
    }

    #block-4.block-3 .icon {
        transform: rotate(288deg);
    }


    #block-4.block-5 .icon {
        transform: rotate(72deg);
    }

    /*
    =================
    BLOCK 5
    ================
    */
    #block-5.block-1 .icon {
        transform: rotate(72deg);
    }

    #block-5.block-2 .icon {
        transform: rotate(144deg);
    }

    #block-5.block-3 .icon {
        transform: rotate(215deg);
    }


    #block-5.block-4 .icon {
        transform: rotate(288deg);
    }

    /*
    =================
    BLOCK 1
    ================
    */
    #block-1.block-2 .icon {
        transform: rotate(72deg);
    }

    #block-1.block-3 .icon {
        transform: rotate(144deg);
    }

    #block-1.block-4 .icon {
        transform: rotate(215deg);
    }

    #block-1.block-5 .icon {
        transform: rotate(288deg);
    }

    #indigenous .text-wrapper p {
        text-align: center;
    }

    .project-loop-image {
        height: 200px;
        padding: 0;
        background-size: cover;
        background-position: center center;
        order: 1;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .project-loop-top {
        padding: 20px;
    }

    .project-information {
        padding: 15px 20px;
    }

    .project-loop-content {
        order: 2;
    }

    .single-project-info-inner {
        margin-top: 0;
        max-width: 100%;
        width: 100%;
        margin-right: auto;
    }

    .top-post {
        height: 450px;
    }

    #solution-banner::after,
    #blurry-banner::after {
        display: none;
    }

    #about-us-intro h2,
    #about-us-intro p {
        text-align: center;
        width: 100%;
    }

    #about-mobile {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    #illustration-image-link-1 {
        left: 197px;
        top: 163px;
        width: 35px;
        height: 32px;
    }

    #illustration-image-link-2 {
        left: 217px;
        top: 91px;
        width: 160px;
        height: 20px;
    }

    #illustration-image-link-3 {
        left: 330px;
        top: 104px;
        width: 31px;
        height: 66px;
    }

    #illustration-image-link-4 {
        left: 478px;
        top: 129px;
        width: 65px;
        height: 65px;
    }

    #illustration-image-link-5 {
        left: 315px;
        top: 276px;
        width: 45px;
        height: 50px;
    }

    .proveo-explanation {
        padding: 80px 0 65px;
    }

}

@media (max-width: 767.8px) {
    .pad-60 {
        padding: 40px 0;
    }

    .show-md {
        display: block;
    }

    .hide-md {
        display: none;
    }

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

    .page-hero-section::after {
        left: -100px;
    }

    #home-banner {
        padding: 120px 0 40px 0;
    }

    #home-text p {
        font-size: 26px;
    }

    .page-hero-section::after {
        height: 30px;
        width: 50%;
        left: 0;
    }

    #home-text .button {
        margin: 25px auto;
    }

    #home-text h2 {
        font-size: 40px;
        line-height: 50px;
    }

    #home-image {
        min-height: 300px;
    }

    .page-hero-section {
        height: 350px;
    }

    #home-banner::before {
        background-size: cover;
        width: 100%;
        height: 55%;
    }


    #solutions-image-wrapper img {
        position: relative;
    }

    #solutions-intro-text-wrapper {
        padding-bottom: 0;
    }

    ul#alerts-list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    #qualified,
    #security,
    #clients,
    #indigenous,
    #discover-section {
        padding: 80px 0;
    }

    .client-logos {
        padding: 0;
    }

    #trust {
        padding-top: 80px;
    }

    .security-column-wrapper {
        padding: 5px 15px;
        width: 100%;
        flex-basis: 100%;
    }

    .best-text p {
        width: 100%;
    }

    .gallery-item-inner {
        height: 300px;
    }

    #solution-banner::before,
    #blurry-banner::before {
        width: 250px;
        right: -150px;
        height: 22px;
        bottom: -7px;
    }

    #sustainability-mobile {
        padding: 300px 0 50px 0;
        background-color: #132844;
        background-size: 120%;
        background-position: top center;
        position: relative;
        background-repeat: no-repeat;
    }

    #sustainability-mobile::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: rgb(19, 39, 67);
        background: -moz-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 50%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
        background: -webkit-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 50%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
        background: linear-gradient(180deg, rgba(19, 39, 67, 0.7) 50%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132743", endColorstr="#132743", GradientType=1);
    }

    #sustainability-mobile .container {
        position: relative;
    }

    #about-banner::before,
    #narrow-banner::before {
        width: 250px;
        right: -150px;
        height: 22px;
        top: -7px;
    }

    .know-wrapper {
        width: 100%;
        flex-basis: 100%;
        padding: 10px 15px 20px 15px;
    }

    #about-us-image-wrapper img {
        position: relative;
        right: auto;
        width: 100%;
    }

    #about-intro-text-wrapper {
        padding-bottom: 0;
    }

    #presentation {
        padding-bottom: 25px;
    }

    .industry-inner {
        height: 320px;
    }

    #leader-intro-left {
        border-right: none;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .date-wrapper {
        margin-bottom: 15px;
        text-align: center;
    }

    .time-line-inner {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .time-line-inner .year {
        font-size: 46px;
        text-align: center;
    }

    .time-line-mobile {
        position: relative;
    }

    .timeline-arrow-wrapper {
        display: block;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .timeline-button {
        color: #2b5690;
        font-size: 32px;
        position: absolute;
        top: 0;
        z-index: 2;
    }

    .timeline-prev {
        left: 30px;
        right: auto;
    }

    .timeline-next {
        left: auto;
        right: 30px;
    }

    .time-line-inner .text-wrapper {
        text-align: center;
        width: 80%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .time-line-inner .month {
        font-size: 28px;
    }

    .dots {
        margin-bottom: 25px;
        display: none;
    }

    .dots span {
        margin-right: 12px;
        width: 6px;
        height: 6px;
    }

    .dot-1 {
        width: 8px;
        height: 8px;
    }

    .timeline-slider .slick-dots {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        flex-basis: 100%;
        list-style-type: none;
    }

    .timeline-slider .slick-dots li {
        padding: 0 5px;
    }

    .timeline-slider .slick-dots li button {
        outline: none;
        border: none;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        opacity: .2;
        background-color: #4083de;
        font-size: 0;
        margin: 0;
        padding: 0;

    }

    .timeline-slider .slick-dots li.slick-active button {
        opacity: 1;
    }

    section#timeline {
        padding: 30px 0;
    }

    .time-line-inner {
        margin-top: 0;
    }

    .under-title .text {
        width: 100%;
        flex-basis: 100%;
        text-align: center;
    }

    .under-title .logo {
        width: 100%;
        flex-basis: 100%;
        text-align: center;
        margin-top: 5px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .leadership-wrapper {
        width: calc(100% / 2);
        flex-basis: calc(100% / 2);
        justify-content: center;
    }

    .leader-ship-image-wrapper {
        height: 290px;
    }

    #contact-list {
        margin-bottom: 0;
    }

    #solutions-image-wrapper img {
        width: 100%;
        right: auto;
    }

    #security .container {
        max-width: 100%;
    }

    .security-icon-wrapper {
        width: 150px;
        flex-basis: 150px;
        margin-bottom: 0;
    }

    .security-text-wrapper {
        width: calc(100% - 150px);
        flex-basis: calc(100% - 150px)
    }

    .security-column-inner {
        padding: 10px;
    }

    .security-icon {
        width: 100px;
        height: 100px;
    }

    .security-icon img {
        width: 70px;
        max-height: 50px;
    }

    .security-text-wrapper {
        padding-left: 0;
    }

    #best-content-mobile,
    .rounder-content-wrapper-mobile {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding-top: 550px;
        padding-bottom: 60px;
    }

    #best-content-mobile .container,
    .rounder-content-wrapper-mobile .container {
        position: relative;
    }

    #best-content-mobile::before,
    .rounder-content-wrapper-mobile::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(19, 39, 67);
        background: -moz-linear-gradient(0deg, rgba(19, 39, 67, 1) 0%, rgba(19, 39, 67, 1) 20%, rgba(42, 87, 147, .1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(19, 39, 67, 1) 0%, rgba(19, 39, 67, 1) 20%, rgba(42, 87, 147, .1) 100%);
        background: linear-gradient(0deg, rgba(19, 39, 67, 1) 0%, rgba(19, 39, 67, 1) 20%, rgba(42, 87, 147, .1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132743", endColorstr="#2a5793", GradientType=1);
    }

    #best-content-mobile::after,
    .rounder-content-wrapper-mobile::after {
        content: "";
        display: block;
        position: absolute;
        left: calc(50% - 65px);
        bottom: 0;
        transform: rotate(180deg);
        background-image: url(/wp-content/uploads/2022/11/clients-before.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center center;
        width: 129px;
        height: 14px;
    }

    #trust .gallery-section {
        padding-bottom: 60px;
    }

    #sustainability::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: rgb(19, 39, 67); */
        /* background: -webkit-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 0%, rgba(19, 39, 67, 0.7) 100%); */
        /* background: linear-gradient(180deg, rgba(19, 39, 67, 0.7) 0%, rgba(19, 39, 67, 0.7) 100%); */
        background: rgb(19, 39, 67);
        background: -moz-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 70%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
        background: -webkit-linear-gradient(180deg, rgba(19, 39, 67, 0.7) 70%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
        background: linear-gradient(180deg, rgba(19, 39, 67, 0.7) 50%, rgba(19, 39, 67, 1) 86%, rgba(19, 39, 67, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#132743", endColorstr="#132743", GradientType=1);
    }

    h1.page-title,
    h2.h1 {
        font-size: 60px;
        line-height: 100%;
        letter-spacing: 5px;
        text-align: center;
    }

    h2,
    h1.h2 {
        font-size: 40px;
        line-height: 100%;
    }

    h2.f-40 {
        font-size: 32px;
        line-height: 100%;
    }

    #solution-banner,
    #blurry-banner {
        padding-top: 0;
        background-image: none !important;
    }


    #indigenous .title-wrapper .title {
        width: 100%;
        flex-basis: 100%;
        text-align: center;
        justify-content: center;
        order: 2;
    }

    #indigenous .title-wrapper .logo {
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-basis: 100%;
        order: 1;
    }

    #indigenous {
        background-image: none !important;
    }

    #indigenous::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("/wp-content/uploads/2022/11/Background-1.webp");
        background-position: bottom center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .top-post {
        height: 400px;
        padding: 20px;
    }

    .top-post h2 {
        font-size: 30px;
        line-height: 100%;
    }

    .latest-top-content {
        margin-bottom: 15px;
    }

    .single-project-featured,
    .single-post-featured {
        height: 300px;
        margin-bottom: 40px;
    }

    .info-inner {
        padding-left: 20px;
        padding-right: 20px;
    }


    .project-info-bottom {
        padding: 20px;
    }

    .project-details-title {
        padding-bottom: 10px;
    }

    .project-detail-list {
        padding-top: 20px;
    }

    #illustration-image-link-1 {
        left: 145px;
        top: 119px;
        width: 30px;
        height: 25px;
    }

    #illustration-image-link-2 {
        left: 175px;
        top: 66px;
        width: 102px;
        height: 15px;
    }

    #illustration-image-link-3 {
        left: 244px;
        top: 76px;
        width: 26px;
        height: 51px;
    }

    #illustration-image-link-4 {
        left: 353px;
        top: 94px;
        width: 53px;
        height: 53px;
    }

    #illustration-image-link-5 {
        left: 237px;
        top: 200px;
        width: 28px;
        height: 43px;
    }

    .proveo-explanation {
        padding: 60px 0 50px;
    }

    .explanation-circle {
        top: -5px;
    }
}

@media (max-width: 575.8px) {
    .hide-sm {
        display: none;
    }

    .show-sm {
        display: block;
    }

    .page-hero-section {
        height: 300px;
    }

    #home-logo-mobile {
        text-align: center;
    }

    #home-text-mobile h2,
    #home-text-mobile p {
        color: #FFF;
    }

    #home-logo-mobile img {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero-section::after {
        height: 22px;
        width: 50%;
        left: 0;
    }

    #home-banner {
        padding-top: 100px;
    }

    #home-logo {
        width: 350px;
        max-width: 100%;
        margin: 0 auto 20px auto;
    }

    #home-image-wrapper {
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .home-subtitle h1 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #home-text p {
        font-size: 22px;
    }

    #home-text-mobile .button {
        margin: 20px auto;
    }

    h1.page-title,
    h2.h1 {
        font-size: 50px;
        line-height: 100%;
        letter-spacing: 3px;
        text-align: center;
    }

    h2,
    h1.h2,
    #benefits h2,
    h1.project-title {
        font-size: 36px;
        line-height: 100%;
    }

    h3 {
        font-size: 26px;
        line-height: 32px;
    }

    footer {
        padding: 20px 0;
    }

    #footer-wrapper .year {
        order: 2;
        padding: 0;
        text-align: center;
        padding-left: 10px;
    }

    #footer-menu {
        justify-content: center;
        width: 100%;
        flex-basis: 100%;
    }

    #footer-menu li {
        /*width: 100%;*/
        /*flex-basis: 100%;*/
        padding: 5px 10px;
    }

    #footer-menu li a {
        position: relative;
    }

    #footer-menu li:first-of-type a:before {
        content: "";
        display: block;
        position: absolute;
        right: -10px;
        top: 5px;
        width: 1px;
        height: 14px;
        background-color: #6989b5;
    }

    footer .crafted {
        padding-left: 0;
    }

    .home #footer-menu li:first-of-type a:before {
        background-color: rgba(130, 221, 255, .5);
    }

    ul#alerts-list li {
        /*text-align: center;*/
        margin-bottom: 5px;
    }

    #qualified::before {
        width: 100%;
        height: 55%;
        bottom: 0;
        left: 0;
        top: auto;
    }


    #best-way .container,
    #rounder-wrapper .container {
        padding: 40px 15px;
    }

    #best-content-wrapper:after,
    #rounder-content-wrapper:after {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }


    .best-text p {
        color: #FFF;
    }

    #trust {
        padding-top: 40px;
    }

    .gallery-item-inner {
        height: 250px;
    }


    #map-image {
        width: 100%;
        max-width: 110%;
        margin-left: -5%;
        margin-top: -40px;
    }

    .industry-inner {
        height: 280px;
    }


    .leader-ship-image-wrapper {
        height: 250px;
    }

    .leadership-wrapper {
        margin-top: 0;
    }

    .leader-ship-image-wrapper {
        margin-bottom: 10px;
    }

    #contact-form-inner {
        padding: 25px;
    }

    #home-image {
        min-height: auto;
    }

    .circle--rotate {
        width: 400px;
    }

    .circle--rotate > li .icon {
        height: 90px;
        width: 90px;
        margin: -45px auto;
    }

    .circle--slider .animate-more {
        top: 0;
    }

    .services {
        padding: 80px 0;
        height: auto;
        min-height: 80vh;
    }

    .circle--slider .animate-wrapper {
        width: 70%;
    }

    .security-icon-wrapper {
        width: 120px;
        flex-basis: 120px;
        padding: 0 10px;
    }

    .security-text-wrapper {
        width: calc(100% - 120px);
        flex-basis: calc(100% - 120px);
        padding-left: 10px;
    }

    #best-content-mobile,
    .rounder-content-wrapper-mobile {
        padding-top: 450px;
    }

    #sustainability-mobile {
        padding-top: 200px;
        background-size: 150%;
        background-position-y: -100px;
    }

    #social-menu li {
        padding-right: 10px;
    }

    #social-menu li.contractor-button {
        padding-left: 10px;
    }

    #logo-wrapper {
        padding-right: 0;
    }

    #social-menu li.contractor-button a {
        font-size: 10px;
        line-height: 12px;
    }

    .top-post {
        height: 350px;
        padding: 20px;
    }

    .project-loop-top h3 {
        margin-bottom: 0;
    }

    .info-inner .icon {
        width: 80px;
        flex-basis: 80px;
    }

    .info-inner .text {
        width: calc(100% - 80px);
        flex-basis: calc(100% - 80px);
        padding-left: 10px;
    }

    .single-post-featured,
    .single-project-featured {
        height: 250px;
    }

    #post-content-wrapper h2 {
        font-size: 28px;
        color: #000000;
    }

    #post-content-wrapper h3 {
        font-size: 24px;
    }

    #post-content-wrapper h4 {
        font-size: 20px;
    }

    #post-content-wrapper h5 {
        font-size: 18px;
    }

    .top-post h2 {
        font-size: 26px;
        line-height: 100%;
    }

    .services-mobile {
        position: relative;
    }

    .benefit-mobile-icon-wrapper {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .benefit-mobile-icon-inner {
        position: relative;
        height: 100px;
        width: 100px;
        border-radius: 50%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        background-color: #4083de;
    }

    .benefit-mobile-icon-inner::before {
        content: "";
        display: block;
        position: absolute;
        top: -35px;
        left: -35px;
        width: calc(100% + 70px);
        height: calc(100% + 70px);
        border-radius: 50%;
        background-color: #4083de;
        opacity: 0.1;
    }

    .benefit-title {
        margin-top: 50px;
    }

    .benefit-mobile-inner {
        padding-top: 40px;
    }

    .benefit-arrow-wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
        display: block;
    }

    .benefit-button {
        color: #2b5690;
        font-size: 32px;
        position: absolute;
        top: 70px;
    }

    .benefit-prev {
        left: 30px;
        right: auto;
        opacity: .5;
    }

    .benefit-next {
        right: 30px;
        left: auto;
        opacity: .5;
    }

    .benefit-button:hover {
        opacity: 1;
    }

    .benefit-slider .slick-dots {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 20px auto;
        width: 100%;
        flex-basis: 100%;
        list-style-type: none;
    }

    .benefit-slider .slick-dots li {
        padding: 0 10px;
    }

    .benefit-slider .slick-dots li button {
        outline: none;
        border: none;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        opacity: .2;
        background-color: #4083de;
        font-size: 0;
        margin: 0;
        padding: 0;

    }

    .benefit-slider .slick-dots li.slick-active button {
        opacity: 1;
    }

    #about-banner p br,
    #narrow-banner p br {
        display: none;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-title {
        margin-bottom: 0;
    }

    .proveo-explanation {
        padding: 40px 0 25px;
    }

}

@media (max-width: 480px) {
    .leadership-wrapper {
        width: 100%;
        flex-basis: 100%;
    }

    .leadership-wrapper {
        padding: 10px 15px;
    }

    .circle--rotate {
        width: 340px;
    }

    .animate-more p {
        font-size: 16px;
        line-height: 22px;
    }

    #best-content-mobile,
    .rounder-content-wrapper-mobile {
        padding-top: 400px;
        padding-bottom: 30px;
    }

    h1.page-title,
    h2.h1 {
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 3px;
        text-align: center;
    }

    h2,
    h1.h2,
    #benefits h2 {
        font-size: 32px;
        line-height: 100%;
    }

    .sus-sub {
        line-height: 28px;
        position: relative;
    }

    #social-menu-wrapper {
        padding-left: 15px;
        padding-right: 0;
    }

    header {
        padding: 20px 0;
    }

    #social-menu li a {
        font-size: 18px;
    }

    #social-menu li.contractor-button {
        padding-left: 5px;
    }

    #social-menu li {
        padding-right: 5px;
        padding-left: 0;
    }

    .reduced, .cost {
        width: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .page-hero-section .container {
        margin-bottom: auto;
        margin-top: auto;
        padding-top: 70px;
    }

    #sustainability-mobile::before {
        height: 51%;
    }

    h3.modal-title {
        font-size: 22px;
    }

    .modal-body {
        padding: 15px;
    }


}

@media (max-width: 400px) {

    ul#alerts-list li {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
        padding-left: 20px;
    }

    ul#alerts-list li::before {
        width: 12px;
        height: 10px;
        top: 8px;
    }

    #best-content-mobile,
    .rounder-content-wrapper-mobile {
        padding-top: 350px;
        padding-bottom: 30px;
    }

    .info-inner .text .small-title {
        font-size: 16px;
    }

    .info-inner .text .value {
        font-size: 40px;
        line-height: 48px;
    }

    .info-inner .text .value span {
        font-size: 16px;
    }

    .top-post h2 {
        font-size: 24px;
        line-height: 100%;
    }

    #home-text-mobile h2 {
        font-size: 44px;
        line-height: 46px;
    }

    #sustainability-mobile::before {
        height: 40%;
    }

    .explanation-circle {
        top: -4px;
    }
}

@media (max-width: 350px) {
    #industry-container h2 .text {
        padding: 0 40px;
    }

    .circle--rotate {
        width: 270px;
    }


    .animate-more p {
        font-size: 15px;
        line-height: 20px;
    }

    h1.page-title,
    h2.h1 {
        font-size: 36px;
        line-height: 100%;
        letter-spacing: 3px;
        text-align: center;
    }

    h2,
    h1.h2,
    #benefits h2 {
        font-size: 28px;
        line-height: 100%;
    }

    h2.f-40 {
        font-size: 28px;
        line-height: 100%;
    }

    .top-post h2 {
        font-size: 22px;
        line-height: 100%;
    }

    .benefit-prev {
        left: 10px;
    }

    .benefit-next {
        right: 10px;
    }

    #sustainability-mobile::before {
        height: 29%;
    }

    .modal-body {
        font-size: 19px;
    }
}


/*
POPUP CSS
*/

.popup-backdrope {
    background-color: rgba(19, 40, 68, .6);
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s all ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.popup-wrapper {
    width: 800px;
    max-width: 90%;
    padding: 90px 75px 70px;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    filter: drop-shadow(0px 39px 32.5px rgba(0, 0, 0, 0.21));
}

.popup-close-area {
    background-color: #4083de;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popup-wrapper h2 {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    font-family: "Red Hat Display";
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.popup-logos {
    display: flex;
    padding: 60px 0;
    align-items: center;
}

.popup-logos img {
    width: 90%;
}

.popup-logos .logo-column:nth-of-type(2) img {
    margin-left: 20px;
}

.popup-link {
    display: flex;
    justify-content: center;
}

.popup-link a {
    color: #000000;
    text-align: center;
}

.close-new-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
}

.popup-backdrope.visible {
    z-index: 9999;
    opacity: 1;
}

.close-new-popup:hover {
    color: #ff5166;
}

@media (max-width: 575.9px) {
    .popup-logos {
        flex-direction: column;
        padding: 30px 0;
    }

    .popup-wrapper h2 {
        font-size: 34px;
        line-height: 110%;
    }

    .popup-logos img, .popup-logos .logo-column:nth-of-type(2) img {
        width: 70%;
        margin: 10px auto;
    }

    .popup-wrapper {
        padding: 70px 40px 40px;
    }
}

/*
POPUP CSS ENDS
*/