<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
&gt;&gt;&gt; GLOBAL - TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Typography
2.0 Elements
3.0 Header
4.0 Content
5.0 Footer
--------------------------------------------------------------*/
#main ::-webkit-scrollbar {
    width: 12px;
}
 
#main ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
#main ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Kanit', sans-serif;
    color: #060607;
    text-align: left;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 54px;
    margin-bottom: 33px;
}

.page-id-983 h2{
    margin-bottom: 0;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 18px;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: underline;
}

/*--------------------------------------------------------------
2.0 Elements
--------------------------------------------------------------*/
body {
    color: #060607;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    position: relative;
    line-height: 29px;
    transition: .5s ease-in-out all;
}

body .large {
    color: #060607;
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
}

p {
    margin: 0 0 25px;
}

img {
    max-width: 100%;
}

.no-mt {
    margin-top: 0; 
}

.container-fluid {
    padding-right: 45px;
    padding-left: 45px;
}

.white-text {
    color: #fff;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.silver-btn {
    max-width: 194px;
    background: rgb(198,199,199);
    background: linear-gradient(130deg, rgba(198,199,199,1) 0%, rgba(209,210,210,1) 20%, rgba(220,220,220,1) 35%, rgba(229,229,229,1) 65%, rgba(208,208,208,1) 81%, rgba(188,188,188,1) 100%);
    padding: 13px 33px;
    display: block;
    font-size: 15px;
    color: #060607;
    border-radius: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2px;
    z-index: 1;
}

.silver-border {
    position: relative;
    display: inline-block;
    padding: 7px;
    z-index: 0;
    margin-top: 15px;
    text-shadow: none;
    width: 174px;
}

.silver-border:after {
    content: "";
    background-image: url(/wp-content/themes/maxcanvas_child/images/silver-border.png);
    background-size: contain;
    background-position: right;
    top: 0;
    right: 0;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.silver-border:before{
    content: "";
    top: 0;
    right: 0;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    border-radius: 50px;
    border: 1px solid rgb(198,199,199);
}


.silver-btn::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    border-radius: 50px;
    border: 1px solid inherit;
    text-shadow: rgba(0,0,0,.15) 0 3px 6px;
}

.silver-btn:hover,
.silver-btn:focus,
.silver-btn:active {
    text-decoration: none;
    color: #060607
}
.silver-btn:hover::before,
.silver-btn:active::before,
.silver-btn:focus::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

.black-btn {
    max-width: 194px;
    background: rgb(6,6,7);
    background: linear-gradient(90deg, rgba(6,6,7,1) 0%, rgba(45,45,46,1) 20%, rgba(65,65,65,1) 35%, rgba(32,32,33,1) 65%, rgba(6,6,27,1) 100%);
    padding: 13px 33px;
    display: block;
    font-size: 15px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2px;
    z-index: 1;
}

.black-border {
    position: relative;
    display: inline-block;
    padding: 7px;
    z-index: 0;
}

.black-border:before{
    content: "";
    top: 0;
    right: 0;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    border-radius: 50px;
    border: 1px solid;
}

.black-border:after {
    content: "";
    background-image: url(..//images/black-border.png);
    background-size: contain;
    background-position: right;
    top: 0;
    right: 0;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.black-btn::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.black-btn:hover,
.black-btn:focus,
.black-btn:active {
    text-decoration: none;
    color: #fff
}
.black-btn:hover::before,
.black-btn:active::before,
.black-btn:focus::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

.to-top {
    position: relative;
}

.to-top #button {
    display: none;
}

.to-top img {
    position: fixed;
    transform: rotate(90deg);
    padding: 20px;
    width: 84px;
    bottom: 50px;
    cursor: pointer;
}

.navigation ul {
    list-style: none;
    padding: 0;
}

.navigation li {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #707070;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    line-height: 1.8;
    font-size: 14px;
}

.navigation li.active {
    background: rgb(198,199,199);
    background: linear-gradient(90deg, rgba(198,199,199,1) 0%, rgba(209,210,210,1) 20%, rgba(220,220,220,1) 35%, rgba(229,229,229,1) 65%, rgba(208,208,208,1) 81%, rgba(188,188,188,1) 100%);
    box-shadow: 0 1px 3px #707070;
}


/*--------------------------------------------------------------
3.0 Header
--------------------------------------------------------------*/
header {
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 0;
}

#header {
    background-image: linear-gradient(#343434, transparent);
    padding: 1.76% 0;
}

#header #logo img {
    width: auto;
    height: auto
}

#header .row {
    display: flex;
    align-items: center;
}

#header .primary {
    display: inline;
}

/* dropdown menu */
#navigation {
    position: static;
}

#navigation nav ul.sub-menu {
    display: none;
    position: absolute;
    min-width: 260px;
    margin: 0;
    padding: 28px 30px;
    background: #060607;
    list-style: none;
    width: auto;
    text-align: left;
}

/*#navigation nav li {
    position: static;
}*/

#navigation .social {
    display: none;
}

/*//Subpage Header */
#subheader {
    max-height: 524px;
    padding: 11.2% 0;
    position: relative;
    background-position: center;
    background-size: cover;
}

#subheader:before {
    content: "";
    /*background: rgba(131, 133, 138, 0.37);*/
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

#subheader h1 {
    color: #fff;
    text-shadow: 0 3px 6px rgba(0,0,0,.35)
}

#subheader .border {
    border-left: 325px solid rgba(6, 6, 7, .85);
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#subheader .social {
    position: absolute;
    margin-right: 15px;
    right: 15px;
    top: 50%;
    transform: translate(0px, -50%);
}

#subheader .social ul {
    list-style: 0;
    padding-left: 0;
}
#subheader .social ul li {
    display: block;
    font-size: 21px;
}

#subheader .social ul li a {
    color: #fff;
}

#subheader .social ul li a:hover {
    color: #BCB8B9;
}

.request-button {
    position: fixed;
    right: -71px;
    top: 50%;
    z-index: 9;
    transform: rotate(-90deg);
}

.request-button .black-border:before {
    content: "";
    top: 0;
    right: 0;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    border-radius: 10px;
    border: 1px solid;
} 
.request-button .black-btn {
    max-width: 194px;
    background: rgb(6,6,7);
    background: linear-gradient(90deg, rgba(6,6,7,1) 0%, rgba(45,45,46,1) 20%, rgba(65,65,65,1) 35%, rgba(32,32,33,1) 65%, rgba(6,6,27,1) 100%);
    padding: 13px 33px;
    display: block;
    font-size: 15px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2px;
    z-index: 1;
}

.request-button .black-border:after {
    content: "";
    background-image: url(..//images/black-border-fixed.png);
    background-size: contain;
    background-position: right;
    top: 0;
    right: 0;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    transform: rotate(0deg);
}

/*--------------------------------------------------------------
4.0 Content
--------------------------------------------------------------*/

/*//404 PAGE*/

body.error404 {
    background-position: center;
    background-size: cover;
}
.error-content {
    padding-top: 150px;
    position: relative;
    display: block;
    text-align: left !important;
    padding-bottom: 3%;
    width: 100%;
    margin: 0;
    height: 100vh;
}
.error-404 h1 {
    color: #fff;
    font-size: 205px;
}

.error-404 p {
    color: #fff;
    font-weight: bold;
    font-size: 26px;
}

.error-content .container {
    width: 1527px;
}
.error-404 .silver-btn {
    min-width: 202px;
    padding: 10px;
}
.error-content .container {
    width: 100%;
    margin: 0 15px;
}

@media (max-width: 1400px) {
    
    .error-404 h1 {
        font-size: 9em;
    }
    .error-404 p {
        font-size: 1.1em;
    }
}

@media(max-width: 767px){
    .error-404.not-found,
    .error-404.not-found h1 {
        text-align: center;
    }
}

@media (min-width: 1400px){
    .error-content .container {
        width: 1170px;
    }
}

iframe {
    width: 100%;
}

/*Flexible content start*/


.slick-prev, .slick-next {
    width: 46px;
    height: 46px;
}

.slick-prev img, .slick-next img{
    width: 46px;
    height: 46px;
}

.slick-prev, .slick-next {
    z-index: 1;
}
.slick-prev:before,
.slick-next:before{
    display: none;
}

#industries_served-wrapper .industry-slider .slick-prev:before,
#industries_served-wrapper .industry-slider .slick-next:before,
#service-wrapper .five-items-slider .slick-prev:before,
#service-wrapper .five-items-slider .slick-next:before,
#press_releases .press-slider .slick-prev:before,
#press_releases .press-slider .slick-next:before,
#clients .clients-slider .slick-prev:before,
#clients .clients-slider .slick-next:before,
#our-clients .our-clients-slider .slick-prev:before,
#our-clients .our-clients-slider .slick-next:before,
#affiliations .affiliations-slider .slick-prev:before,
#affiliations .affiliations-slider .slick-next:before{
    display: none;
}

#service-wrapper .five-items-slider .slick-prev,
#industries_served-wrapper .industry-slider .slick-prev {
    left: 45px;
    top: 45%;
}
#service-wrapper .five-items-slider .slick-next,
#industries_served-wrapper .industry-slider .slick-next {
    right: 75px;
    top: 45%;
}

#gallery-wrapper .slick-prev {
    left: -55px
}
#gallery-wrapper .slick-next {
    right: -55px;
}

#gallery-wrapper button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

#gallery-wrapper h2 {
    margin-bottom: 0
}

#half-content-wrapper {
    margin-top: 100px;
    position: relative;
    /*min-height: 500px;*/
    display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -moz-flex;
      display: -webkit-flex;
      display: flex;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

}

#half-content-wrapper .content-wrapper {
    display: flex;
    align-items: center;
}

#half-content-wrapper .content {
    display: block;
}

.service-template-default #half-content-wrapper .content {
    display: block;
    padding: 0 0 0 46px;
}

.service-template-default #half-content-wrapper .content.right {
    padding: 0 46px 0 0;
}

.slick-slide.background-image {
    display: inline-block;
    float: none;
    vertical-align: middle;
}

#half-content-wrapper .background-img{
    background-position: center;
    background-size: cover;
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0
}

#half-content-wrapper ul li {
    padding-bottom: 29px;
}

#half-content-wrapper .content .extra-padding {
    padding-right: 40px;
}
#half-content-wrapper .content .extra-padding.pull-right {
    padding-left: 40px;
}

#half-content-wrapper .image-slider .background-image {
    min-height: 500px;
    max-width: 945px;
    background-size: cover;
    background-position: center;
    width: 100%
    /*border-radius: 34px 0 0 34px;*/
}

#half-content-wrapper .image-slider {
    position: absolute;
    max-width: 945px;
    width: 48%;
    right: 0px;
    top: 0;
    height: 500px;
    display: flex;
    align-items: center;
}

#half-content-wrapper .image-slider.right-align{
    right: auto;
    left: 0
}
/*#half-content-wrapper .image-slider.right-align .background-image{
    border-radius: 0px 34px 34px 0px;
}*/

#half-content-wrapper .image-slider .slick-prev, #half-content-wrapper .image-slider .slick-next {
    position: absolute;
    bottom: 60px;
    top: auto;
    right: 40px;
}

#half-content-wrapper .image-slider .slick-prev {
    left: auto;
    right: 95px;
}

#half-content-wrapper .image-slider .slick-prev:before, #half-content-wrapper .image-slider .slick-next:before {
    display: none
}

#service-wrapper {
    position: relative;
}

#service-wrapper {
    margin-top: 100px;
    padding: 0px 33px;
}

#service-wrapper h2 {
    color: #fff;
    margin-top: 80px;
    margin-bottom: 0;
}

#service-wrapper p {
	margin: 0 0 10px;
	line-height: 1.42857143
}

#service-wrapper .background {
    min-height: 430px;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background-size: cover;
}

#service-wrapper .background:before {
    content: "";
    background: rgb(92,92,92);
    background: linear-gradient(180deg, rgba(92,92,92,0.45) 0%, rgba(56,56,56,1) 50%, rgba(43,43,43,1) 100%);
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    opacity: .72;
}

#service-wrapper .five-items-slider .slick-track {
    padding: 42px 0px;
}

#service-wrapper .item {
    transition: all .5s ease-in-out;
    padding: 0;
    height: auto;
    position: relative;
}

#service-wrapper .item .silver-border{
    display: none;
}

#service-wrapper .item .silver-btn {
    padding: 10px 10px
}
#service-wrapper .item .content {
    background: #fff;
    text-align: center;
    padding: 28px 10px;
    font-size: 13px;
    min-height: 194px
}

#service-wrapper .item .content .hover{
    display: none;
}

#service-wrapper .item .content h5 {
    text-align: center;
}
#service-wrapper .item .content h5:after {
    content: "";
    background: rgba(145, 160, 173, .72);
    border-radius: 50%;
    height: 6px;
    width: 6px;
    display: block;
    margin: 10px auto;
}
#service-wrapper .image {
    height: 269px;
    background-position: center;
    background-size: cover;
    display: block;
}

#service-wrapper .item:hover::after {
    box-shadow: rgba(2, 21, 130, .25) 0 0 12px;
    height: 100%;
    display: inline-block;
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}

#service-wrapper .item:hover .content .hover{
    display: block;
}

#service-wrapper .item:hover .content .excerpt {
    display: none;
}

#service-wrapper .item:hover::before {
    content: "";
    position: absolute;
    background: rgba(6, 6, 7, .8);
    height: 100%;
    display: block;
    width: 100%;
}

#service-wrapper .item:hover {
    transform: scale(1.1);
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    overflow: visible;
    z-index: 1;
    min-height: 463px;
    max-height: 463px
}

#service-wrapper .item:hover .silver-border{
    display: block;
    transform: scale(1);
    max-width: 160px;
    margin: 0 auto
}

#service-wrapper .item:hover .content {
    background: transparent;
    text-align: center;
    padding: 50px;
    font-size: 13px;
    transform: scale(1);
    color: #fff;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    display: table-cell;
    vertical-align: middle;
    height: 463px;
}

#service-wrapper .item .content h5 {
    text-transform: uppercase;
}
 
#service-wrapper .item:hover .content h5 {
    color: #fff;
}
#service-wrapper .item:hover .content h5:after {
    background: rgba(255, 255, 255, 1);
}

#service-wrapper .item:hover .image {
    display: none
}

#video-wrapper {
    margin-top: 100px;
}

#video-wrapper .btn-primary {
    color: transparent;
    min-height: 578px;
    width: 100%;
    border-radius: 0;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    border: none;
    position: relative;
}

#video-wrapper .btn-primary:after {
    content: "";
    background-image: url(../images/play-button.png);
    display: block;
    position: absolute;
    top: 50%;
    height: 77px;
    width: 100%;
    right: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}


#video-wrapper .btn-primary:before {
    content: "";
    background-color:rgba(6, 6, 7, .75);
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    z-index: 0;
}

#video-wrapper .modal-dialog {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
}

#video-wrapper .modal-content {
    background: transparent;
    box-shadow: none;
    border: none;
    width: 80%;
    margin: 0 auto;
}
#video-wrapper .modal-header {
    padding: 15px;
    border-bottom: none;
}

#video-wrapper .modal-header .close {
    margin-top: 28px;
    position: absolute;
    right: 10px;
    color: #000;
    opacity: 1;
    font-size: 30px;
    font-weight: 200;
    border: 1px solid #fff;
    border-radius: 50%;
    /* width: 30px; */
    /* height: 30px; */
    padding: 0px 7px;
    background: #fff;
    z-index: 9;
    box-shadow: 0 2px 10px #000;
}

#video-wrapper iframe#video {
    width: 100%;
    height: 80vh;
}

#three_bucket_wrapper {
    margin-top: 100px;
    line-height: 1.42857143
}

#three_bucket_wrapper .buckets {
    border: 1px solid rgba(0, 0, 0, .20);
    position: relative;
    display: flex;
}

#three_bucket_wrapper .content {
    display: inline-block;
    width: 100%;
    padding: 45px 50px;
    text-align: center;
    position: relative;
    transition: .5s ease all;
    color: #060607;
     font-size: 14px;
}

#three_bucket_wrapper .content:after {
    content: "";
    position: absolute;
    display: inline;
    border-right: 1px solid rgba(0, 0, 0, .20);
    height: 70%;
    right: 0;
    top: 100px;
    transform: translate(0px, -50px);
}

#three_bucket_wrapper .content:last-child:after {
    border-right: none;
}
#three_bucket_wrapper .content h5 {
    text-align: center;
    margin-bottom: 42px;
    text-transform: uppercase;
}

#three_bucket_wrapper .content img {
    display: block;
    margin: 0 auto;
    max-height: 66px;
    margin-bottom: 33px;
}

#three_bucket_wrapper span.count {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    font-size: 100px;
    font-family: 'Kanit', sans-serif;
    color: rgba(0,0,0,.15);
    font-weight: 600;
    transform: translate(0px, -33%);
}

#three_bucket_wrapper .content:hover {
    color: #fff;
    background-color: #000
}

#three_bucket_wrapper .content:hover h5{
    color:#fff;
}

#three_bucket_wrapper .content:hover img {
    filter: brightness(0) invert(1);
} 

#three_bucket_wrapper .content:hover span.count {
    color: rgba(255,255,255,.15);
}

#industries_served-wrapper {
    margin-top: 100px;
}

#industries_served-wrapper .industry-slider .item {
    position: relative;
    max-width: 640px;
}

#industries_served-wrapper .industry-slider .item .content {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-image: linear-gradient(transparent, #060607);
}

#industries_served-wrapper .industry-slider .item .content h5 {
    color: #fff;
    margin-bottom: 65px;
    margin-top: 65px;
    text-transform: uppercase;
    text-align: center;
}

#gallery-wrapper{
    margin-top: 100px;
}

#gallery-wrapper .content-wrapper {
    /*padding: 69px 20px;*/
    text-align: center;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    position: relative;
    cursor: pointer;
    transition: .5s ease-in-out all;
    max-height: 1px;
    display: flex;
    align-items: center;
}

#gallery-wrapper .content {
    opacity: 0;
}

#gallery-wrapper .content-wrapper:hover {
	transform: scale(1.1);
	z-index: 9
}

/*#gallery-wrapper .content-wrapper:hover .content {
    opacity: 1;
    color: #fff;
    z-index: 2;
    position: relative;
    font-size: 13px;
    transform: scale(1);
}*/
/*#gallery-wrapper .content-wrapper:hover .content h5 {
    color: #fff;
    text-align: center;
}
*/
/*#gallery-wrapper .content-wrapper .content h5:after {
    content: "";
    background: #fff;
    border-radius: 50%;
    height: 6px;
    width: 6px;
    display: block;
    margin: 10px auto;
}*/

/*#gallery-wrapper .content-wrapper:hover:before {
    content: "";
    background-color: rgba(6, 6, 7, .87);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    box-shadow: rgba(2, 21, 130, .25) 0 0 12px;
    z-index: 1;
}*/
.gallery-items .slick-track {
    padding: 42px 0px;
}

#press_releases .press-slider .slick-prev {
    left: -105px;
}

#press_releases .press-slider .slick-next {
    right: -65px;
}

#press_releases {
    padding: 110px 0;
    margin-top: 100px;
    background-position: center;
    background-size: cover;
    position: relative;
}

#press_releases:before {
    content: "";
    background: rgba(6, 6, 7, .8);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#press_releases h2{
    color: #fff;
}
#press_releases h5,
#press_releases .content-wrapper{
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px
}

#press_releases .content h5{
    position: relative;
}

#press_releases .content h5:after {
    content: "";
    position: relative;
    width: 43px;
    height: 2px;
    background: #fff;
    display: block;
    bottom: 0;
    margin-top: 10px;
}

#press_releases .content-wrapper .featured-image {
    max-width: 486px;
    width: 100%;
    height: 275px;
    background-position: center;
    background-size: cover;
}

#press_releases .content-wrapper {
    max-width: 486px;
}

#press_releases .press-slider {
    margin-top: 80px;
}

#full-content{
    margin-top: 100px;
}

#full-content h2 {
    margin-bottom: 10px
}

#full-content .background-img {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

#full-content .content {
	padding-left: 36px
}

#full-content ul {
    column-count: 2;
    vertical-align: top;
    margin-top: 20px;
    padding-left: 4px;
    /*column-gap: 20px;*/
}

#full-content li {
    margin-left: 15px;
    margin-bottom: 20px;
    margin-right: 40px;
    text-align: left;
}

#full-content .background-image {
    background-size: cover;
    background-position: center;
}

#clients{
    margin-top: 100px;
}
#clients .clients-slider {
    margin-top:60px;
    margin-bottom:100px;
}

#clients .clients-slider .slick-prev {
    left: -7%;
}

#clients .clients-slider .slick-next {
    right: -7%;
}

#clients .clients-slider .slick-slide img {
    margin: 0 auto;
    max-height: 100px
}

#clients .clients-slider .slick-track {
  display: flex;
}
#clients .clients-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(2, 21, 130, .25) 0 0 12px;
    margin: 20px 15px;
    padding: 10px;
}

/*Flexible content end*/

/*PAGE STYLES: Services*/
.intro{
    position: relative;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: center;
    background-size: cover;
}

.intro h2{
    color: #fff;
}

.intro:before {
    content: "";
    background: rgba(6, 6, 7, 0.7);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.service-buckets {
    margin-top: 78px;
}

.page-template-template-services .service-buckets .buckets:first-child {
    height: 1093px;
    margin-left: 0;
}

.page-template-template-services .service-buckets .buckets:nth-child(4n) {
    margin-left: 15px;
}

.service-buckets .buckets:first-child, .service-buckets .buckets:nth-child(4n) {
    /*height: 1093px;*/
    margin-left: 0;
}

.service-buckets .buckets {
    float: left;
    max-width: 590px;
    width: 100%;
    margin-left: 15px;
    height: 539px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: .5s ease-in-out all;
    line-height: 1.42857143
}

.service-buckets .buckets:before {
    content: "";
    position: absolute;
    top: 0;
    background: rgba(20, 20, 20, .38);
    width: 100%;
    height: 100%;
}

.service-buckets .buckets h5 {
    color: #fff;
    position: absolute;
    text-transform: uppercase;
    right: 0;
    left: 0;
    top: 50%;
    font-size: 23px;
    text-align: center;
    padding: 100px;
    transform: translate(0px, -50%);
    vertical-align: middle;
}

.service-buckets .buckets .content {
    display: none;
    z-index: 1;
    font-size: 16px;
}

.service-buckets .buckets:hover {
    transform: scale(1.02);
    z-index: 9
}

.service-buckets .buckets:hover::after {
    box-shadow: rgba(2, 21, 130, .25) 0 0 12px;
    height: 100%;
    display: inline-block;
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}

.service-buckets .buckets:hover:before {
    background: rgba(20, 20, 20, .84);
}

.service-buckets .buckets:hover .content {
    display: block;
    position: absolute;
    color: #fff;
    transform: translate(0px, -50%) scale(1);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 60px;
}

.service-buckets .buckets:hover h5 {
    visibility: hidden;
}

.service-buckets .buckets:hover .content h5 {
    visibility: visible;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: translate(0, 0);
    padding: 0;
}
.service-buckets .buckets:hover h5:after {
    content: "";
    background: #fff;
    border-radius: 50%;
    height: 6px;
    width: 6px;
    position: relative;
    display: block;
    margin: 20px auto;
}

/*PAGE STYLES: Services END*/

/*PAGE STYLES: Industry Start*/
.industry-buckets {
    margin-top: 78px;
    display: flex;
    flex-flow: wrap;
    align-items: baseline;
    justify-content: center;
}

.industry-buckets .buckets {
    max-width: 32%;
    width: 100%;
    margin: 0 1vw 15px 0;
    height: 388px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: .5s ease-in-out all;
}

.industry-buckets .buckets:nth-child(3n){
    margin-right: 0;
}

.industry-buckets .buckets:before {
    content: "";
    position: absolute;
    top: 0;
    background: rgb(2,0,36);
    background: -moz-linear-gradient(180deg, rgba(2,0,36,0) 0%, rgba(6,6,7,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(2,0,36,0) 0%, rgba(6,6,7,1) 100%);
    background: linear-gradient(180deg, rgba(2,0,36,0) 0%, rgba(6,6,7,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#060607",GradientType=1);
    width: 100%;
    height: 100%;
}

.industry-buckets .buckets h5 {
    color: #fff;
    position: absolute;
    text-transform: uppercase;
    right: 0;
    left: 0;
    bottom: 40px;
    font-size: 18px;
    text-align: center;
    padding: 0 30px;
}

/*PAGE STYLES: Industry END*/


/*PAGE STYLES: Form START*/
#form {
    padding-top: 100px;
}

/*PAGE STYLES: Form END*/

/*PAGE STYLES: Team Member Slider START*/

#team-wrapper {
    margin-top: 100px;
}

#team-wrapper h2{
    text-align: center;
}

#team-wrapper .team-slider,
#team-wrapper .team-slider .team-content,
#team-wrapper .team-slider .team-content h5 {
    text-align: center;
}

#team-wrapper .team-slider .team-content h5 {
    font-size: 22px;
}

#team-wrapper .team-slider .team-content {
    font-size: 18px
}

#team-wrapper .team-slider .profile-img {
    height: 250px;
    background-size: cover !important;
    background-position: center !important;
    margin: 15px;
}

.team-slider .slick-prev,
.team-slider .slick-next {
    top: 40%;
}

/*PAGE STYLES: Team Member Slider END*/

/*PAGE STYLES: FAQ START*/
#faq-wrapper {
    margin-top: 100px;
}

.faq-container {
    margin-bottom: 60px;
}

#faq-wrapper .faq-container:last-child{
    margin-bottom: 0
}

#faq-wrapper .accordion {
    background: rgb(198,199,199);
    background: -moz-linear-gradient(90deg, rgba(198,199,199,1) 0%, rgba(209,210,210,1) 15%, rgba(235,235,235,1) 30%, rgba(208,208,208,1) 50%, rgba(209,209,209,1) 65%, rgba(218,218,218,1) 70%, rgba(237,237,237,1) 85%, rgba(188,188,188,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(198,199,199,1) 0%, rgba(209,210,210,1) 15%, rgba(235,235,235,1) 30%, rgba(208,208,208,1) 50%, rgba(209,209,209,1) 65%, rgba(218,218,218,1) 70%, rgba(237,237,237,1) 85%, rgba(188,188,188,1) 100%);
    background: linear-gradient(90deg, rgba(198,199,199,1) 0%, rgba(209,210,210,1) 15%, rgba(235,235,235,1) 30%, rgba(208,208,208,1) 50%, rgba(209,209,209,1) 65%, rgba(218,218,218,1) 70%, rgba(237,237,237,1) 85%, rgba(188,188,188,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c6c7c7",endColorstr="#bcbcbc",GradientType=1);
    color: #444;
    cursor: pointer;
    padding: 42px 18px;
    width: 100%;
    text-align: left;
    border-left: 4px solid #000000;
    border-top: none;
    border-right: none;
    border-bottom: none;
    outline: none;
    transition: 0.4s;
    font-size: 20px;
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
}

#faq-wrapper .accordion:after {
    content: '\f078';
    position: absolute;
    right: 50px;
    font-family: "FontAwesome";
    transition: .5s ease-in-out;
}

#faq-wrapper .accordion.active:after{
    content: '\f077';
    position: absolute;
    right: 50px;
    font-family: "FontAwesome";
    transition: .5s ease-in-out;
}

#faq-wrapper .active, #faq-wrapper .accordion:hover {
  background-color: #ccc;
  box-shadow: rgba(2, 21, 130, .25) 0 0 12px
}

#faq-wrapper .panel {
  padding: 40px;
  background-color: #fff;
  display: none;
  overflow: hidden;
  box-shadow: rgba(2, 21, 130, .25) 0 0 12px
}
/*PAGE STYLES: FAQ END*/

/*PAGE STYLES: News START*/
#news-wrapper {
    margin-top: 100px;
    padding: 100px 0;
    position: relative;
    color: #fff;
    background-position: center;
    background-size: cover;
}
#news-wrapper:before {
    content: "";
    background: rgba(0,0,0,.62);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

#news-wrapper h2 {
    color: #fff
}

#news-wrapper .news-block a {
    display: flex;
    align-content: start;
    justify-content: start;
    flex-direction: inherit;
}

#news-wrapper .news-block {
    background: #FFFFFF;
    color: #000;
    padding: 50px;
    font-size: 15px;
    border-right: 1px solid #DDDDDD;
}

#news-wrapper .news-block h6 {
    font-size: 15px;
    margin-top: 0;
}

#news-wrapper .news-block .number {
    margin-right: 20px;
}

#news-wrapper .news-block .date {
    font-size: 14px;
    color: rgba(0,0,0,.45);
}

#news-wrapper .slick-prev {
    left: -110px;
}

#news-wrapper .slick-next {
    right: -110px;
}


/*PAGE STYLES: News END*/

/*PAGE STYLES: Branches START*/
#branches {
    padding-top: 100px;
}
#branches .address {
    background-color: #F1F2F5;
    max-width: 45%;
    width: 100%;
    padding-right: 319px;
    padding-left: 89px;
    padding-top: 60px;
    padding-bottom: 60px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: left;
}

#branches .title {
    font-size: 21px;
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 20px;
}

/*#branches .office-info.active .title:before {
    content: "";
    height: 10px;
    width: 10px;
    background-color: #000;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}*/

.page-id-103 #cta {
    margin-top:  0;
}

#branches .map-container {
    position: relative;
}

#branches .acf-map.match {
    max-width: 55%;
}

.acf-map img {
   max-width: inherit !important;
}

/*PAGE STYLES: Branches END*/

/*PAGE STYLES: Media START*/
#archive-media {
    padding-top: 100px;
}

#archive-media .item {
    transition: all .5s ease-in-out;
    padding: 0;
    margin: 0 0 15px 0;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    text-align: center;

}

#archive-media .item:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.22);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    transition: 1s ease all;
}

#archive-media .item .silver-border{
    display: none;
}

#archive-media .item .silver-btn {
    padding: 10px 10px
}
#archive-media .item .content {
    text-align: center;
    padding: 28px 10px;
    font-size: 13px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    transition: all .5s ease-in-out;
}
#archive-media .item .content h5 {
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}
#archive-media .item:hover .content h5:after {
    content: "";
    background: rgba(145, 160, 173, .72);
    border-radius: 50%;
    height: 6px;
    width: 6px;
    display: block;
    margin: 10px auto;
}

#archive-media .item:hover::after {
    box-shadow: rgba(2, 21, 130, .25) 0 0 12px;
    height: 100%;
    display: inline-block;
    content: "";
    width: 100%;
}

#archive-media .item:hover .content .hover {
    opacity: 1;
    height: auto;
}

#archive-media .item .content .hover {
    opacity: 0;
    height: 0;
    color: #fff;
}

#archive-media .item:hover::before {
    content: "";
    position: absolute;
    background: rgba(6, 6, 7, .8);
    opacity: 1;
}

#archive-media .item:hover {
    transform: scale(1);
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    overflow: visible;
    z-index: 1;
}

#archive-media .item:hover .silver-border{
    display: block;
    transform: scale(1);
    max-width: 160px;
    margin: 0 auto
}

#archive-media .item:hover .content {
    background: transparent;
    text-align: center;
    font-size: 13px;
    transform: scale(1);
    color: #fff;
    background-position: center;
    background-size: cover;
    z-index: 1;
    vertical-align: middle;
    width: 100%;
    bottom: 50px;
}

#archive-media .item .content h5 {
    text-transform: uppercase;
}
 
#archive-media .item:hover .content h5 {
    color: #fff;
}
#archive-media .item:hover .content h5:after {
    background: rgba(255, 255, 255, 1);
}
/*PAGE STYLES: Branches END*/

#affiliations{
    margin-top: 100px;
    background: #f2f2f2;
    padding-top: 100px;
}
#affiliations .affiliations-slider {
    margin-top:60px;
    margin-bottom:100px;
}

#affiliations .affiliations-slider .slick-prev {
    left: -7%;
}

#affiliations .affiliations-slider .slick-next {
    right: -7%;
}

#affiliations .affiliations-slider .slick-slide img {
    margin: 0 auto;
    max-height: 100px
}

#affiliations .affiliations-slider .slick-track {
  display: flex;
}
#affiliations .affiliations-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(2, 21, 130, .25) 0 0 12px;
    margin: 20px 15px;
    padding: 10px;
    background: #ffffff;
}

#our-clients{
    margin-top: 50px;
}
#our-clients .our-clients-slider {
    margin-top:60px;
}

#our-clients .our-clients-slider .slick-prev {
    left: -7%;
}

#our-clients .our-clients-slider .slick-next {
    right: -7%;
}

#our-clients .our-clients-slider .slick-slide img {
    margin: 0 auto;
    max-height: 100px
}

#our-clients .our-clients-slider .slick-track {
  display: flex;
}
#our-clients .our-clients-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(2, 21, 130, .25) 0 0 12px;
    margin: 20px 15px;
    padding: 10px;
    background: #ffffff;
}

/*//Search Page Style*/

.search .search-form-wrapper {
    height: 139px;
    margin-bottom: 3%;
    display: flex;
    align-items: center;
    background: rgb(198,199,199);
    background: linear-gradient(90deg, rgba(198,199,199,1) 0%, rgba(209,210,210,1) 20%, rgba(220,220,220,1) 35%, rgba(229,229,229,1) 65%, rgba(208,208,208,1) 81%, rgba(188,188,188,1) 100%);
} 
.search  article {
    margin-bottom: 40px;
    border-bottom: 1px solid #707070;
    padding-bottom: 40px;
}
.search .search-form-wrapper form.search-form {
    text-align: center;
    max-width: 590px;
    width: 100%;
    min-width: 320px;
    margin: 0 auto;
    position: relative;
}

.search .search-form-wrapper label {
    position: relative;
    width: 100%
}

.search .search-form-wrapper input[type=search] {
    padding: 12.5px 40px 12.5px 12.5px;
    max-width: 590px;
    width: 100%;
    min-width: 320px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    border: none;
}

.search .search-form-wrapper i.fa.fa-search.search-submit {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    text-align: right;
    top: 0;
    padding: 10px 40px 10px 10px;
    line-height: 28px;
}

.search .search-form-wrapper input.search-submit {
    position: absolute;
    right: 0;
    height: 100%;
    opacity: 0;
    z-index: 99;
}

/*//CTA Style*/
.small-banner #cta {
    margin-top: 100px;
    margin-bottom: 102px;
}

#cta {
    padding: 3.4% 0px;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 120px;
}

#cta .content {
    position: relative;
    line-height: 48px;
}

#cta:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(6, 6, 7, .5);
}

#cta h3{
    font-size: 26px;
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 1);
    margin: 5px 0;
} 

#cta h2{
    font-size: 39px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    margin: 5px 0; 
} 
.silo { 
    color: #000000; 
    text-decoration: none; 
} 
.silo:link { 
    color: #000000; 
    text-decoration: none; 
} 
.silo:visited { 
    text-decoration: none; 
    color: #000000; 
} 
.silo:hover { 
    text-decoration: none; 
    color: #000000; 
} 
.silo:active { 
    text-decoration: none; 
    color: #000000; 
}


/*--------------------------------------------------------------
5.0 Footer
--------------------------------------------------------------*/
footer {
    font-size: 16px;
    background: #060607;
    color: rgba(255, 255, 255, 1);
    padding: 105px 0 53px;
}

footer #site-info {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    text-align: center;
    margin-top: 77px;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    color: rgba(255, 255, 255, .5);
    display: block;
}

footer ul li a {
    color: rgba(255, 255, 255, .5);
    line-height: 30px;
}

footer ul li a:focus,
footer ul li a:hover,
footer ul li a:active {
    color: rgba(255, 255, 255, .5);
    text-decoration: underline;
}

footer .site-map-centered {
    margin: 0 0 0 41%;
}

footer h3 {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    line-height: 25px;
    text-transform: uppercase;
}

footer .address-group {
    column-count: 2;
}

footer .address-group address {
    line-height: 26px;
    color: rgba(255, 255, 255, 1);
}

footer .social li {
    display: inline;
    margin: 5px;
}

footer .social li:first-child {
    margin-left: 0;
} </pre></body></html>