@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* = typeface Colour Palette = */
a {
  cursor: pointer;
}

.gradient1 {
  background: rgb(175, 20, 81);
  background: -moz-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(175, 20, 81)), color-stop(100%, rgb(1, 122, 138)));
  background: -webkit-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -o-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -ms-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#af1451", endColorstr="#017a8a", GradientType=1 );
}

.gradient2 {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(0, 0, 0)), color-stop(100%, rgb(23, 152, 172)));
  background: -webkit-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: -o-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: -ms-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#1798ac", GradientType=1 );
}

* {
  scroll-behavior: auto;
  scroll-behavior: smooth;
  -webkit-appearance: none;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 97% 0%;
  }
  50% {
    background-position: 4% 100%;
  }
  100% {
    background-position: 97% 0%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 97% 0%;
  }
  50% {
    background-position: 4% 100%;
  }
  100% {
    background-position: 97% 0%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 97% 0%;
  }
  50% {
    background-position: 4% 100%;
  }
  100% {
    background-position: 97% 0%;
  }
}
html {
  background-color: #AF1551;
}

body {
  background-color: #AF1551;
  font: 1.2em "PT Sans", sans-serif;
  color: #220901;
  transition: all 0.3s;
}

img, iframe {
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: #AF1551;
}

p {
  font-size: 1em;
  line-height: 1.4em;
  margin-bottom: 1.2em;
  color: #220901;
}

section {
  padding: 0 6vw;
  background-color: #fff;
}
section .container {
  padding: 4em 0;
  max-width: 100em;
  margin: 0 auto;
}
section .container .sec_head {
  margin: 0 auto;
  max-width: 44em;
  text-align: center;
}

.flex {
  display: flex;
  gap: 2em;
}
.flex div {
  flex: 1;
}
.flex .fl1 {
  flex: 1;
}
.flex .fl2 {
  flex: 2;
}
.flex .fl3 {
  flex: 3;
}

.flex_between {
  display: flex;
  justify-content: space-between;
}
.flex_between .fl1 {
  flex: 1;
}
.flex_between .fl2 {
  flex: 2;
}
.flex_between .fl3 {
  flex: 3;
}

.center {
  text-align: center;
}
.center .bttn {
  margin: 0 auto;
}

.middle {
  margin: 0 auto;
}

.bttn {
  background-color: #AF1551;
  color: #fff;
  min-width: 18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4em;
  font-weight: bold;
  box-shadow: 0.5em 0.5em 0 rgba(0, 0, 0, 0.1333333333);
  padding: 0 2em;
  cursor: pointer;
  transition: 0.2s all;
  position: relative;
  z-index: 5;
}

.bttn:hover, .wpcf7-submit:hover, .wpcf-submit:hover {
  background-color: #1798AC !important;
  color: #fff !important;
  transition: 0.2s all !important;
}

.wpcf7-submit {
  cursor: pointer;
}
.wpcf7-submit:hover,
#respond form input[type="submit"]:hover {
  background-color: #1798AC !important;
  color: #fff !important;
  transition: 0.2s all !important;
}

.link_text {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  color: #AF1551;
}
.link_text::after {
  content: "›";
  height: auto;
  width: auto;
  display: inline-block;
  font-size: 1.5em;
  margin-left: 0.5em;
}

h1, h2, h3, h4, h5, h6 {
  font: 2em "interface", sans-serif;
  color: #000;
  font-weight: 900;
  line-height: 1em;
}

h2, h3, h4, h5, h6 {
  font: 1.8em "interface", sans-serif;
  color: #000;
  font-weight: 900;
  line-height: 1em;
  padding-bottom: 0.2em;
}

h3, h4, h5, h6 {
  font: 1.4em "interface", sans-serif;
  color: #000;
  font-weight: 900;
  line-height: 1em;
}

h4, h5, h6 {
  font: 1.4em "interface", sans-serif;
  color: #000;
  font-weight: 900;
  line-height: 1em;
}

#pageheader {
  background-color: #000;
  position: relative;
}

#pageheader .container {
  gap: 2;
  align-items: center;
  min-height: 40vh;
}

#pageheader .textcontent {
  margin: 4em 0;
  position: relative;
  z-index: 2;
  flex: 2;
}

#pageheader h1, #pageheader p {
  color: #fff;
}

#pageheader h1 span {
  font-size: 0.8em;
  display: block;
  color: #D3226E;
  font-weight: 500;
}

#pageheader h1 {
  padding-bottom: 0.8em;
}

#pageheader div {
  flex: 2;
}

#pageheader .supportingimage {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}

#pageheader .supportingimage img {
  height: 100%;
}

#pageheader .supportingimage::after {
  content: "";
  height: 100%;
  width: 50%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

#pageheader .bttn {
  margin-top: 2em;
}

#blogpage {
  background-color: #fff;
}

#blogpage article {
  flex: 5;
  padding-top: 2em;
  max-width: 60rem;
  /*padding-bottom: 6em;*/
  padding-bottom: 4em;
}

#blogpage .postsidebar {
  background-color: #5198D8;
  flex: 1.6;
  padding-bottom: 6em;
  position: sticky;
  top: 0px;
}

#blogpage .postsidebar h3, #blogpage .postsidebar h4, #blogpage .postsidebar p {
  color: #fff;
}

#blogpage .postsidebar h3 {
  padding: 3em 30px 0.5em;
}

#blogpage .postsidebar h3, #blogpage .postsidebar h4 {
  font-size: 1.4em;
}

#blogpage .postsidebar ul {
  padding: 1em 0;
}

#blogpage .postsidebar ul li a {
  padding: 0.5em 30px;
  display: block;
  margin: 0.5px 0;
  background-color: #fff;
  border-right: 4px solid #5198D8;
  border-left: 1px solid #5198D8;
  color: #5099D8;
}

#blogpage .postsidebar .ctasidebar {
  padding: 1em 20px;
  margin-left: 8px;
  border-left: 4px solid #fff;
  margin-top: 1em;
}

#blogpage .postsidebar .bttn {
  width: 100%;
  border: 2px solid #fff;
}

.single-post #pageheader .textcontent {
  margin: 8em 0;
  position: relative;
  z-index: 2;
  flex: 2;
}

.single-post article {
  max-width: 70em;
  margin: 0 auto;
}

.single-post article h2 {
  margin: 1.8em 0 0;
}

.single-post .wp-block-image img {
  width: 100%;
  margin: 3em 0;
}

#newsSection.blogfeed ul {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
  display: flex;
}
#newsSection.blogfeed img {
  width: 100%;
  height: auto;
}
#newsSection.blogfeed li {
  width: 31%;
  flex: auto !important;
  background-color: #fff;
  margin-bottom: 2%;
}
#newsSection.blogfeed li h3 {
  padding: 1em;
}
#newsSection.blogfeed li span {
  position: absolute;
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.2666666667);
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 2em 0;
}
.pagination a, .pagination .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  background-color: #AF1551;
  color: #fff;
}
.pagination .prev, .pagination .next {
  width: auto;
  white-space: nowrap;
  background-color: transparent;
}

.filtercat {
  display: flex;
  height: 3em;
  margin-top: -1.5em;
  position: absolute;
  justify-content: center;
  z-index: 3;
  width: 100%;
}
.filtercat div {
  background-image: url(../assets/images/downarrow.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  padding: 0 1em;
  height: 3em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.filtercat div select {
  font-size: 1em;
  border: none;
  background-color: transparent;
}

#newsSection.blogfeed {
  background-color: #000;
  color: #fff;
  position: relative;
  padding: 4em 6vw 0;
}

#pageheader h1 span {
  color: #71F082;
  text-transform: uppercase;
  font-size: 0.6em;
  display: block;
  font-weight: bold;
}

.single #newsSection .container {
  padding: 0;
}

.single #newsSection {
  background-color: #000;
  color: #fff;
  position: relative;
  padding: 2em 6vw;
}
.single #newsSection h4 {
  padding: 0 1em !important;
}

#blogpage blockquote p {
  color: #AF1551;
  font-size: 1.8em;
  font-weight: bold;
  font-family: "interface", sans-serif;
  line-height: 110%;
}

#newsSection.blogfeed .newstop {
  height: 17vw;
  overflow: hidden;
}

#newsSection.blogfeed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newstop {
  height: 16em;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.newstop::before {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  background: #00DDFF;
  mix-blend-mode: color;
  pointer-events: none;
}
.newstop::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  background: url(../assets/images/newsoverlay1.svg);
  mix-blend-mode: color;
  pointer-events: none;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center right;
}
.newstop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

li:nth-child(2) .newstop::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  background: #00DDFF;
  mix-blend-mode: color;
  pointer-events: none;
  right: 0;
  top: 50%;
  z-index: 1;
}
li:nth-child(2) .newstop::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: url(../assets/images/newsoverlay2.svg);
  mix-blend-mode: color;
  pointer-events: none;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: 2;
}

li:nth-child(3) .newstop::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  background: #00DDFF;
  mix-blend-mode: color;
  pointer-events: none;
  left: 0;
  top: 50%;
  z-index: 1;
}
li:nth-child(3) .newstop::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: url(../assets/images/newsoverlay2.svg);
  mix-blend-mode: color;
  pointer-events: none;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: 2;
}

.single-post #pageheader::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #1997AB;
  mix-blend-mode: color;
  pointer-events: none;
  right: 0;
  z-index: 1;
  top: 0;
  left: 0;
}

.single-post #pageheader::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: url(../assets/images/newsico.svg);
  mix-blend-mode: color;
  pointer-events: none;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 2;
  background-size: 32%;
}

article .btn {
  background-color: #AF1551;
  color: #fff;
  min-width: 18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4em;
  font-weight: bold;
  box-shadow: 0.5em 0.5em 0 rgba(0, 0, 0, 0.1333333333);
  padding: 0 2em;
  cursor: pointer;
  transition: 0.2s all;
  position: relative;
  z-index: 5;
}

article .btn:hover {
  background-color: #1798AC !important;
  color: #fff !important;
  transition: 0.2s all !important;
}

article ul li {
  list-style: disc;
  margin-left: 1.6rem;
  margin-bottom: 0.5rem;
}

article h3 {
  padding-top: 1rem;
  padding-bottom: 0.8rem;
}

/**@import "base/forms.scss";**/
/**@import "base/typeography.scss";**/
.notice {
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notice h6 {
  color: #fff;
  font-size: 0.8em;
  text-transform: uppercase;
  text-align: center;
}

main {
  overflow: hidden;
}

header {
  position: absolute;
  z-index: 6;
  padding: 0 2em 0 6vw;
  width: 100%;
  color: #fff;
}
header .pr_agency_one_logo img {
  height: 2.4rem;
}
header .container {
  padding: 1em 0;
  align-items: center;
}
header .mainmenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.4em;
}
header .menutoggle {
  width: 2em;
  height: 2em;
  cursor: pointer;
  transition: 0.2s all !important;
}
header .menutoggle span {
  margin: 0.3em 0;
}
header .menutoggle span, header .menutoggle::before, header .menutoggle::after {
  display: block;
  content: "";
  height: 0.3em;
  width: 80%;
  background-color: #fff;
}
header ul {
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
}
header .contact_top {
  padding-bottom: 1em;
  opacity: 0.8;
}
header .contact_top a,
header .contact_mob a {
  color: #fff !important;
  text-decoration: none !important;
}
header #menu-main-menu a {
  color: #fff;
  white-space: nowrap;
  padding: 0.5em;
  display: block;
  transition: 0.2s all !important;
}
header #menu-main-menu li {
  position: relative;
}
header #menu-main-menu li .sub-menu {
  display: none;
  transition: 0.2s all !important;
}
header #menu-main-menu li:hover > a {
  background-color: #AF1551;
  transition: 0.2s all !important;
}
header #menu-main-menu li:hover > .sub-menu {
  background-color: #AF1551;
  position: absolute;
  top: 98%;
  display: block;
  box-shadow: 0.5em 0.5em 0 rgba(0, 0, 0, 0.1333333333);
  transition: 0.2s all !important;
}
header #menu-main-menu .sub-menu li:hover .sub-menu {
  dposition: absolute;
  left: 100%;
  top: 0;
  transition: 0.2s all !important;
  background-color: #1798AC;
}
header #menu-main-menu .sub-menu li > a:hover {
  background-color: #1798AC;
  transition: 0.2s all !important;
}
header #menu-main-menu .sub-menu .sub-menu a:hover {
  background-color: #AF1551;
  transition: 0.2s all !important;
}

.single-casestudy header {
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgb(0, 0, 0)));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=1 );
}

#sidebar_menu {
  display: none;
  margin-right: -20em;
  transition: all 0.3s;
  transition: 0.2s all !important;
}

.menu-on #sidebar_menu {
  z-index: 9;
  margin-right: 0px;
  background-color: rgb(175, 21, 81);
  color: rgb(255, 255, 255);
  position: fixed;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: block;
  flex-flow: column wrap;
  /* column-gap: 2em; */
  padding: 3em 2em 2em;
  width: 80%;
  /* grid-template-columns: repeat(3, 1fr); */
  /* align-items: start; */
  transition: 0.2s !important;
  column-count: 2;
}
.menu-on #sidebar_menu .menulogo {
  margin-bottom: 1rem;
  background-color: transparent;
  display: flex;
  position: absolute;
  bottom: 2rem;
  line-height: 0;
  width: 13rem;
}
.menu-on #sidebar_menu .menulogo img {
  width: 100%;
}
.menu-on #sidebar_menu > div:nth-of-type(2) {
  margin-top: 0;
}
.menu-on #sidebar_menu h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid;
}
.menu-on #sidebar_menu .menutoggle {
  background-color: #AF1551;
  border: 3px solid #AF1551;
  width: 2em;
  height: 2em;
  position: absolute;
  left: -2.4em;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
  flex-direction: column;
  padding-right: 1em;
  cursor: pointer;
  box-sizing: content-box;
  transition: 0.2s all !important;
}
.menu-on #sidebar_menu .menutoggle span {
  display: block;
  content: "";
  height: 0.3em;
  width: 60%;
  background-color: #fff;
  transform: rotate(45deg);
  position: absolute;
}
.menu-on #sidebar_menu .menutoggle::after {
  display: block;
  content: "";
  height: 0.3em;
  width: 60%;
  background-color: #fff;
  transform: rotate(-45deg);
  position: absolute;
}
.menu-on #sidebar_menu a {
  color: #fff;
}
.menu-on header, .menu-on main, .menu-on footer {
  opacity: 0.4;
  transition: 0.2s all !important;
}

#sidebar_menu .menu-item-has-children .sub-menu {
  display: none;
}
#sidebar_menu .menu-item-has-children:hover .sub-menu {
  display: block;
}

#main_header {
  overflow: hidden;
}
#main_header .container {
  padding: 10em 0;
  min-height: 120vh;
  align-items: center;
  color: #fff;
  position: relative;
}
#main_header .container .servicecontainer {
  height: 5vw;
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
}
#main_header .container .servicecontainer ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#main_header .container .servicecontainer img {
  height: 5vw;
}
#main_header .container .headercontent, #main_header .container .videocontent {
  flex: 1;
}
#main_header .container .videocontent video {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}
#main_header .container h1, #main_header .container h2, #main_header .container p {
  color: #fff;
}
#main_header .container h1 {
  margin-bottom: 1em;
  position: relative;
  font-size: 1.8em;
}
#main_header .container h1::after {
  background-image: url(../assets/images/h1_grid_small.svg);
  display: block;
  content: "";
  width: 2em;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -2.8em;
  background-position: left center;
  height: 2em;
}
#main_header .container .bttncontain {
  padding-top: 2em;
}
#main_header .container .videocontainer {
  position: absolute;
  height: 50vw;
  background-color: #fff;
  width: 50vw;
  top: 8em;
  right: -10vw;
  border-radius: 100%;
  overflow: hidden;
}
#main_header .container .videocontainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#main_header .container .imagecontainer {
  margin-left: -7vw;
  width: 20vw;
  height: 20vw;
  background-color: #ccc;
  position: absolute;
  z-index: 2;
  border-radius: 100%;
  margin-top: 4em;
  overflow: hidden;
}
#main_header .container .imagecontainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#main_header .container .grid_overlay {
  position: absolute;
  right: -4em;
  width: 19.5vw;
  bottom: 9em;
}

#service_header {
  overflow: visible;
  padding: 0;
  position: relative;
}
#service_header::after {
  content: "";
  display: block;
  height: 16vw;
  width: 16vw;
  background-image: url(../assets/images/circle_element_blue.svg);
  background-position: center;
  background-size: contain;
  right: -4vw;
  position: absolute;
  bottom: -12vw;
}
#service_header::before {
  content: "";
  display: block;
  height: 16vw;
  width: 16vw;
  background-image: url(../assets/images/circle_element_blue.svg);
  background-position: center;
  background-size: contain;
  left: -4vw;
  position: absolute;
  bottom: -12vw;
}
#service_header .container {
  padding: 10em 0;
  min-height: 120vh;
  align-items: center;
  color: #fff;
  position: relative;
}
#service_header .container .servicecontainer {
  height: 5vw;
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
}
#service_header .container .servicecontainer ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#service_header .container .servicecontainer img {
  height: 5vw;
}
#service_header .container .headercontent, #service_header .container .videocontent {
  flex: 1;
}
#service_header .container .headercontent {
  padding: 0 6vw 5em;
}
#service_header .container .headercontent h1 {
  max-width: 80em;
}
#service_header .container h1, #service_header .container h2, #service_header .container p {
  color: #fff;
}
#service_header .container span {
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
}
#service_header .container h1 {
  margin-bottom: 1em;
  position: relative;
  font-size: 1.8em;
}
#service_header .container .bttncontain {
  padding-top: 2em;
}
#service_header .container .videocontainer {
  position: absolute;
  height: 50vw;
  background-color: #fff;
  width: 50vw;
  top: 8em;
  right: -10vw;
  border-radius: 100%;
  overflow: hidden;
}
#service_header .container .videocontainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#service_header .container .imagecontainer {
  width: 17vw;
  height: 17vw;
  background-color: #ccc;
  position: absolute;
  z-index: 2;
  border-radius: 100%;
  margin-top: 7em;
  overflow: hidden;
}
#service_header .container .imagecontainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#service_header .container .grid_overlay {
  position: absolute;
  right: -4em;
  width: 19.5vw;
  bottom: 9em;
}
#service_header .container {
  padding: 6em 0 0;
  min-height: auto;
}
#service_header .container > div {
  flex: 1;
}
#service_header .imgcontent img {
  width: 100%;
  display: block;
}
#service_header .read-on {
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#service_header .read-on::after {
  width: 1px;
  content: "";
  display: block;
  height: 3em;
  background-color: #fff;
  margin-top: 1em;
}

#service_header.retail {
  background: rgb(225, 73, 28);
  background: -moz-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(225, 73, 28)), color-stop(100%, rgb(237, 216, 61)));
  background: -webkit-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: -o-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: -ms-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e1491c", endColorstr="#edd83d", GradientType=1 );
}
#service_header.retail .service_logo {
  max-height: 4em;
  margin-bottom: 3em;
}
#service_header.retail .imgcontent img {
  -webkit-mask-image: url(../assets/images/retail_mask.svg);
  mask-image: url(../assets/images/retail_mask.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 50vw;
  object-fit: cover;
}

#service_header.standard {
  background: rgb(175, 20, 81);
  background: -moz-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(175, 20, 81)), color-stop(100%, rgb(1, 122, 138)));
  background: -webkit-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -o-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -ms-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#af1451", endColorstr="#017a8a", GradientType=1 );
}
#service_header.standard .service_logo {
  max-height: 4em;
  margin-bottom: 3em;
}
#service_header.standard .imgcontent img {
  -webkit-mask-image: url(../assets/images/ico_te.svg);
  mask-image: url(../assets/images/ico_te.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 50vw;
  object-fit: cover;
}

#retail #contact_block {
  background: rgb(225, 73, 28);
  background: -moz-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(225, 73, 28)), color-stop(100%, rgb(237, 216, 61)));
  background: -webkit-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: -o-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: -ms-linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  background: linear-gradient(45deg, rgb(225, 73, 28) 0%, rgb(237, 216, 61) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e1491c", endColorstr="#edd83d", GradientType=1 );
}

#stadard #contact_block {
  background: rgb(175, 20, 81);
  background: -moz-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(175, 20, 81)), color-stop(100%, rgb(1, 122, 138)));
  background: -webkit-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -o-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: -ms-linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  background: linear-gradient(45deg, rgb(175, 20, 81) 0%, rgb(1, 122, 138) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#af1451", endColorstr="#017a8a", GradientType=1 );
}

#service_header.financial {
  background: rgb(33, 42, 89);
  background: -moz-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(33, 42, 89)), color-stop(100%, rgb(239, 163, 0)));
  background: -webkit-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: -o-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: -ms-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#212a59", endColorstr="#efa300", GradientType=1 );
}
#service_header.financial .service_logo {
  max-height: 4em;
  margin-bottom: 3em;
}
#service_header.financial .imgcontent img {
  -webkit-mask-image: url(../assets/images/ico_fi.svg);
  mask-image: url(../assets/images/ico_fi.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 50vw;
  object-fit: cover;
}

#financial #contact_block {
  background: rgb(33, 42, 89);
  background: -moz-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(33, 42, 89)), color-stop(100%, rgb(239, 163, 0)));
  background: -webkit-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: -o-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: -ms-linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  background: linear-gradient(45deg, rgb(33, 42, 89) 0%, rgb(239, 163, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#212a59", endColorstr="#efa300", GradientType=1 );
}

#service_header.health {
  background: rgb(23, 154, 171);
  background: -moz-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(23, 154, 171)), color-stop(100%, rgb(117, 199, 143)));
  background: -webkit-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: -o-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: -ms-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#179aab", endColorstr="#75c78f", GradientType=1 );
}
#service_header.health .service_logo {
  max-height: 4em;
  margin-bottom: 3em;
}
#service_header.health .imgcontent img {
  -webkit-mask-image: url(../assets/images/ico_h.svg);
  mask-image: url(../assets/images/ico_h.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 50vw;
  object-fit: cover;
}

#health #contact_block {
  background: rgb(23, 154, 171);
  background: -moz-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(23, 154, 171)), color-stop(100%, rgb(117, 199, 143)));
  background: -webkit-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: -o-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: -ms-linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  background: linear-gradient(45deg, rgb(23, 154, 171) 0%, rgb(117, 199, 143) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#179aab", endColorstr="#75c78f", GradientType=1 );
}

#service_header.technology {
  background: rgb(33, 0, 36);
  background: -moz-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(33, 0, 36)), color-stop(100%, rgb(77, 92, 105)));
  background: -webkit-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: -o-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: -ms-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#210024", endColorstr="#4d5c69", GradientType=1 );
}
#service_header.technology .service_logo {
  max-height: 4em;
  margin-bottom: 3em;
}
#service_header.technology .imgcontent img {
  -webkit-mask-image: url(../assets/images/ico_te.svg);
  mask-image: url(../assets/images/ico_te.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 50vw;
  object-fit: cover;
}

#technology #contact_block {
  background: rgb(33, 0, 36);
  background: -moz-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(33, 0, 36)), color-stop(100%, rgb(77, 92, 105)));
  background: -webkit-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: -o-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: -ms-linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  background: linear-gradient(45deg, rgb(33, 0, 36) 0%, rgb(77, 92, 105) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#210024", endColorstr="#4d5c69", GradientType=1 );
}

#service_header.environment {
  background: rgb(237, 172, 74);
  background: -moz-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(237, 172, 74)), color-stop(100%, rgb(35, 56, 91)));
  background: -webkit-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: -o-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: -ms-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#edac4a", endColorstr="#23385b", GradientType=1 );
}
#service_header.environment .service_logo {
  max-height: 4em;
  margin-bottom: 3em;
}
#service_header.environment .imgcontent img {
  -webkit-mask-image: url(../assets/images/ico_be.svg);
  mask-image: url(../assets/images/ico_be.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 50vw;
  object-fit: cover;
}

#environment #contact_block {
  background: rgb(237, 172, 74);
  background: -moz-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(237, 172, 74)), color-stop(100%, rgb(35, 56, 91)));
  background: -webkit-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: -o-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: -ms-linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  background: linear-gradient(45deg, rgb(237, 172, 74) 0%, rgb(35, 56, 91) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#edac4a", endColorstr="#23385b", GradientType=1 );
}

#landing_page_header {
  overflow: visible;
  z-index: 4;
  padding: 0;
  position: relative;
}
#landing_page_header::after {
  content: "";
  display: block;
  height: 16vw;
  width: 16vw;
  background-image: url(../assets/images/circle_element_blue.svg);
  background-position: center;
  background-size: contain;
  right: 0;
  position: absolute;
  bottom: 30%;
}
#landing_page_header::before {
  content: "";
  display: block;
  height: 16vw;
  width: 16vw;
  background-image: url(../assets/images/circle_element_blue.svg);
  background-position: center;
  background-size: contain;
  left: 0;
  position: absolute;
  bottom: 30%;
}
#landing_page_header .container {
  padding: 10em 0;
  min-height: 100vh;
  align-items: center;
  color: #fff;
  position: relative;
}
#landing_page_header .container .servicecontainer {
  height: 5vw;
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
}
#landing_page_header .container .servicecontainer ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#landing_page_header .container .servicecontainer img {
  height: 5vw;
}
#landing_page_header .container .headercontent, #landing_page_header .container .videocontent {
  flex: 1;
}
#landing_page_header .container .headercontent {
  padding: 0 6vw 12vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 60em;
  text-align: center;
  margin: 0 auto;
}
#landing_page_header .container .headercontent h1 {
  max-width: 80em;
  color: #03E2FF;
}
#landing_page_header .container h1, #landing_page_header .container h2, #landing_page_header .container p {
  color: #fff;
}
#landing_page_header .container span {
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
}
#landing_page_header .container h1 {
  margin-bottom: 1em;
  position: relative;
  font-size: 1.8em;
}
#landing_page_header .container .bttncontain {
  padding: 1em 0 2em;
}
#landing_page_header .container .videocontainer {
  position: absolute;
  height: 50vw;
  background-color: #fff;
  width: 50vw;
  top: 8em;
  right: -10vw;
  border-radius: 100%;
  overflow: hidden;
}
#landing_page_header .container .videocontainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#landing_page_header .container .imagecontainer {
  width: 17vw;
  height: 17vw;
  background-color: #ccc;
  position: absolute;
  z-index: 2;
  border-radius: 100%;
  margin-top: 7em;
  overflow: hidden;
}
#landing_page_header .container .imagecontainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#landing_page_header .container .grid_overlay {
  position: absolute;
  right: -4em;
  width: 19.5vw;
  bottom: 9em;
}
#landing_page_header .container {
  padding: 6em 0 0;
}
#landing_page_header .container > div {
  flex: 1;
}
#landing_page_header .imgcontent img {
  width: 100%;
  display: block;
}
#landing_page_header .read-on {
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}
#landing_page_header .read-on::after {
  width: 1px;
  content: "";
  display: block;
  height: 8vw;
  background-color: #fff;
  margin-top: 1em;
}
#landing_page_header .service_logo {
  margin-bottom: 2em;
  max-width: 14em;
  width: 100%;
}

#inline-gallery {
  background-color: transparent;
  padding: 0 0 2em;
  margin: -8vw 0 0;
  position: relative;
  background-color: #fff;
}
#inline-gallery .gallery-area {
  position: relative;
  z-index: 5;
}
#inline-gallery .gallerycontain {
  height: 14vw;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
#inline-gallery .slide {
  padding: 0 1em;
}
#inline-gallery img {
  display: block;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

#leadin_grid {
  position: relative;
}
#leadin_grid h2 span {
  display: block;
  color: #AF1551;
}
#leadin_grid h3 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0.6em;
}
#leadin_grid .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#leadin_grid ul {
  padding: 4em 0;
}
#leadin_grid li {
  position: relative;
  padding-bottom: 2em;
  flex: 1;
}
#leadin_grid li a {
  position: absolute;
  bottom: 0;
}
#leadin_grid img {
  margin-bottom: 2em;
  max-width: 16rem;
}
#leadin_grid .awardslider {
  display: flex;
  gap: 2em;
  padding-top: 2em;
}
#leadin_grid .awardslider img {
  margin: 0 auto;
  max-height: 3em;
}
#leadin_grid .lower_content {
  text-align: center;
}
#leadin_grid .lower_content h2 {
  padding-top: 2em;
  font-size: 1.8em;
}
#leadin_grid .lower_content h3 {
  padding-top: 0.4em;
  font-size: 1.5em;
}

#leadin_grid.gradient1 p, #leadin_grid.gradient1 h2, #leadin_grid.gradient1 ul, #leadin_grid.gradient1 a, #leadin_grid.gradient1 h3, #leadin_grid.gradient2 p, #leadin_grid.gradient2 h2, #leadin_grid.gradient2 ul, #leadin_grid.gradient2 a, #leadin_grid.gradient2 h3 {
  color: #fff;
}

#leadin_grid.gradient2::after {
  content: "";
  display: block;
  height: 20vw;
  width: 10vw;
  background-image: url(../assets/images/blueg1.svg);
  background-position: right center;
  background-size: cover;
  left: 0;
  position: absolute;
  bottom: -4em;
}
#leadin_grid.gradient2::before {
  content: "";
  display: block;
  height: 20vw;
  width: 9vw;
  background-image: url(../assets/images/blueg2.svg);
  background-position: left center;
  background-size: cover;
  right: 0;
  position: absolute;
  bottom: -4em;
}

#repeating_content {
  padding: 0;
}
#repeating_content .container {
  max-width: none;
  padding: 0;
}
#repeating_content h2 {
  color: #AF1551;
  padding-bottom: 1.2rem;
}
#repeating_content h3 {
  color: #AF1551;
  text-transform: uppercase;
  font-size: 1em;
}
#repeating_content p {
  margin-bottom: 1.2em;
  color: #494949 !important;
}
#repeating_content ul {
  margin-bottom: 1em;
  color: #494949;
}
#repeating_content ul li {
  padding-bottom: 1em;
  padding-left: 1.4em;
  position: relative;
  color: #494949;
}
#repeating_content ul li::before {
  background-color: #AF1551;
  border-radius: 4em;
  height: 0.8em;
  width: 0.8em;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
}
#repeating_content .row {
  display: flex;
}
#repeating_content .row .contentarea {
  display: flex;
  align-items: center;
  flex: 1;
}
#repeating_content .row .contentarea li > p {
  margin: 0;
}
#repeating_content .row .contentarea .pad {
  padding: 6em;
}
#repeating_content .row .imagecontainer {
  flex: 1;
  overflow: hidden;
  min-height: 50vw;
}
#repeating_content .row .imagecontainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  mask-size: 100%;
  min-height: 50vw;
}
#repeating_content .row:nth-child(even) {
  flex-direction: row-reverse;
}
#repeating_content .row:nth-child(even) .mask1, #repeating_content .row:nth-child(even) .mask2, #repeating_content .row:nth-child(even) .mask3 {
  mask-position: right;
}

#repeating_content.imagemasks .mask1 {
  -webkit-mask-image: url(../assets/images/mask-01.svg);
  mask-image: url(../assets/images/mask-01.svg);
  mask-repeat: no-repeat;
  mask-position: center;
}
#repeating_content.imagemasks .mask2 {
  -webkit-mask-image: url(../assets/images/mask-02.svg);
  mask-image: url(../assets/images/mask-02.svg);
  mask-repeat: no-repeat;
  mask-position: center;
}
#repeating_content.imagemasks .mask3 {
  -webkit-mask-image: url(../assets/images/mask-03.svg);
  mask-image: url(../assets/images/mask-03.svg);
  mask-repeat: no-repeat;
  mask-position: center;
}

#contact_block {
  overflow: visible;
  position: relative;
  z-index: 3;
}
#contact_block h1, #contact_block h2, #contact_block p {
  color: #fff;
}
#contact_block .contentarea {
  display: flex;
  align-items: center;
}
#contact_block .sec_head {
  padding-bottom: 3em;
}
#contact_block .flex {
  gap: 5em;
}
#contact_block form {
  font-size: 1em;
}
#contact_block form .wpcf7-text,
#respond form input[type="text"] {
  height: 3.4em;
  background-color: #F0F1EF;
  border-radius: 4px;
  border: none;
  width: 100%;
  font-size: 1em;
  padding: 0 1em;
}
#respond form input[type="text"] {
  font-size: 16px;
  height: 2.9em;
}
#contact_block form textarea,
#respond form textarea {
  width: 100%;
  border: none;
  padding: 1em;
  font-size: 1em;
  border-radius: 4px;
  background-color: #F0F1EF;
}
#respond form textarea {
  font-size: 16px;
}
#contact_block form .wpcf7-submit,
#respond form input[type="submit"] {
  font-size: 1em;
  border: none;
  background-color: #AF1551;
  color: #fff;
  min-width: 18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4em;
  font-weight: bold;
  box-shadow: 0.5em 0.5em 0 rgba(0, 0, 0, 0.1333333333);
  padding: 0 2em;
}
#respond form input[type="submit"] {
  cursor: pointer;
  font-size: 16px;
}
#contact_block::after {
  content: "";
  display: block;
  height: 16vw;
  width: 8vw;
  background-image: url(../assets/images/circle_element_blue.svg);
  background-position: right center;
  background-size: cover;
  left: 0;
  position: absolute;
  top: -8vw;
}
#contact_block::before {
  content: "";
  display: block;
  height: 16vw;
  width: 8vw;
  background-image: url(../assets/images/circle_element_blue.svg);
  background-position: left center;
  background-size: cover;
  right: 0;
  position: absolute;
  bottom: -8vw;
}

#faqs_block {
  background-color: #fff;
  padding-bottom: 6em;
  padding-top: 6em;
}
#faqs_block .faqs {
  max-width: 55em;
  margin: 0 auto;
}
#faqs_block .faq-answer {
  display: none;
  padding: 1em 2em;
  border-top: 1px solid #AF1551;
  transition: all 0.3s;
}
#faqs_block .faq-answer ul {
  list-style: disc;
  margin-left: 2em;
}
#faqs_block .faq-answer ul li {
  padding-bottom: 1em;
}
#faqs_block .faq-question {
  cursor: pointer;
  padding: 1em 2em;
  background-color: #fff;
  border: 1px solid #AF1551;
  margin-top: 1em;
  color: #AF1551;
  font-weight: bold;
  background-image: url(../assets/images/faqdown.svg);
  background-position: center right;
  background-repeat: no-repeat;
}

#newsSection .news_head {
  position: relative;
  z-index: 2;
  align-items: center;
}
#newsSection .news_head .bttncontain {
  display: flex;
  column-gap: 1em;
}
#newsSection .news_head .bttncontain a {
  height: 2em;
  font-weight: bold;
  color: #fff;
  min-width: 9em;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2666666667);
}
#newsSection .news_head h2, #newsSection .featuredArea h2 {
  color: #fff;
}
#newsSection .news_head h2 span, #newsSection .featuredArea h2 span {
  display: block;
  font-size: 0.6em;
  text-transform: uppercase;
  color: #AF1551;
}
#newsSection .news_head p, #newsSection .featuredArea p {
  color: #fff;
}

#newsSection {
  background-color: #000;
  color: #fff;
  position: relative;
  padding: 6em 10vw 0;
}
#newsSection p {
  color: #fff;
}
#newsSection h4 {
  color: #1F0A02;
}
#newsSection .pad {
  padding: 1em 1em 4em;
}
#newsSection .pad .link_text {
  position: absolute;
  bottom: 1em;
  left: 1em;
}
#newsSection .featuredArea {
  display: flex;
  gap: 2em;
  min-height: 6em 0;
  position: relative;
  z-index: 4;
  align-items: center;
  padding: 5em 0;
}
#newsSection .featuredArea .featcontent {
  flex: 2;
}
#newsSection .featuredArea h4 {
  font-size: 1.4em;
  margin: 0 0 0.6em 0;
  padding: 0;
  color: #1F0A02;
  font-size: 2em;
}
#newsSection .featuredArea h4 span {
  font-size: 0.8em;
  display: block;
  color: #D3226E;
}
#newsSection .featuredArea p {
  color: #fff;
}
#newsSection .featuredArea .featspacer {
  flex: 2;
}
#newsSection .newsFeed {
  display: flex;
  gap: 2em;
  position: relative;
  z-index: 4;
}
#newsSection .newsFeed li {
  background-color: #fff;
  position: relative;
  flex: 1;
}
#newsSection .newsFeed .imgcontainer {
  overflow: hidden;
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
}
#newsSection .newsFeed .imgcontainer::before {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  background: #00DDFF;
  mix-blend-mode: color;
  pointer-events: none;
}
#newsSection .newsFeed .imgcontainer::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  background: url(../assets/images/newsoverlay1.svg);
  mix-blend-mode: color;
  pointer-events: none;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center right;
}
#newsSection .newsFeed .imgcontainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#newsSection .newsFeed li:nth-child(2) .imgcontainer::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  background: #00DDFF;
  mix-blend-mode: color;
  pointer-events: none;
  right: 0;
  top: 50%;
  z-index: 1;
}
#newsSection .newsFeed li:nth-child(2) .imgcontainer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: url(../assets/images/newsoverlay2.svg);
  mix-blend-mode: color;
  pointer-events: none;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: 2;
}
#newsSection .newsFeed li:nth-child(3) .imgcontainer::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  background: #00DDFF;
  mix-blend-mode: color;
  pointer-events: none;
  left: 0;
  top: 50%;
  z-index: 1;
}
#newsSection .newsFeed li:nth-child(3) .imgcontainer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: url(../assets/images/newsoverlay2.svg);
  mix-blend-mode: color;
  pointer-events: none;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: 2;
}
#newsSection .newsFeed h4 {
  font-size: 1.4em;
  margin: 1em 0;
  padding: 0;
}
#newsSection .newsFeed p {
  color: #fff;
}
#newsSection .featimage {
  width: 80vw;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
#newsSection .featimage::after {
  content: "";
  display: block;
  height: 10em;
  width: 100%;
  background-color: #000;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
#newsSection .featimage::before {
  content: "";
  display: block;
  height: 100%;
  width: 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgb(0, 0, 0);
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
#newsSection .featimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#newsSection .bttn_text {
  color: #5198D8;
}
#newsSection .container {
  padding: 4em 0 0;
}

#newsSection.autonews {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(0, 0, 0)), color-stop(100%, rgb(23, 152, 172)));
  background: -webkit-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: -o-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: -ms-linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(23, 152, 172) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#1798ac", GradientType=1 );
}
#newsSection.autonews .newsFeed h4 {
  font-size: 1.4em;
  margin: 1em 0;
  padding: 0 1em;
}
#newsSection.autonews h2 {
  color: #fff;
  padding-bottom: 2rem;
}

#pageheader.casestudy {
  position: relative;
}
#pageheader.casestudy .container {
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#pageheader.casestudy .supportingimage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#pageheader.casestudy .supportingimage img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}
#pageheader.casestudy .supportingimage::after {
  content: "";
  display: block;
  width: 50em;
  top: 0;
  left: 0;
  bottom: 0;
  background: -moz-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgb(0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(left, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=1 );
  position: absolute;
  z-index: 1;
}
#pageheader.casestudy .textcontent {
  position: relative;
  z-index: 2;
}
#pageheader.casestudy h1 {
  font-size: 3em;
  color: #fff;
  padding-bottom: 0.5em;
}
#pageheader.casestudy h1 span {
  color: #71F082;
  text-transform: uppercase;
  font-size: 0.4em;
  display: block;
}
#pageheader.casestudy .read-on {
  color: #fff;
  position: relative;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#pageheader.casestudy .read-on::after {
  width: 1px;
  content: "";
  display: block;
  height: 5em;
  background-color: #fff;
  margin-top: 1em;
}

#logos {
  background-color: #F7F7F7;
}
#logos h2 {
  color: #AF1551;
  font-size: 1em;
  text-transform: uppercase;
}
#logos ul {
  margin-top: 2em;
}
#logos img {
  max-height: 6vw;
  margin: 0 auto;
}

#blogpage.casestudy {
  color: #fff;
  background: rgb(54, 48, 196);
  background: -moz-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(54, 48, 196)), color-stop(100%, rgb(23, 151, 172)));
  background: -webkit-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: -o-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: -ms-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3630c4", endColorstr="#1797ac", GradientType=1 );
}
#blogpage.casestudy .flex {
  gap: 6em;
}
#blogpage.casestudy .cs_top {
  max-width: 82rem;
  margin: 0 auto;
  padding-bottom: 6rem !important;
}
#blogpage.casestudy article {
  margin: 0 auto;
  position: relative;
  max-width: initial;
  padding: 4em 0;
}
#blogpage.casestudy p, #blogpage.casestudy ul, #blogpage.casestudy em, #blogpage.casestudy strong {
  color: #fff;
}
#blogpage.casestudy .objectives {
  padding: 0em 6vw 4em;
}
#blogpage.casestudy .threecol div {
  max-width: 65rem;
  margin: 0 auto;
}
#blogpage.casestudy .threecol div li {
  list-style: disc;
  margin-left: 2rem;
  padding-bottom: 0.5rem;
}
#blogpage.casestudy .cs_results .twocol h3 {
  color: #71F082;
  font-size: 1.8em;
  margin-top: 3rem;
}
#blogpage.casestudy .objectives li {
  list-style: disc;
  margin-left: 2rem;
  padding-bottom: 0.5rem;
}
#blogpage.casestudy h3 {
  font-size: 1.1m;
  color: #fff;
  padding-bottom: 0.6em;
}
#blogpage.casestudy .cs_top, #blogpage.casestudy .entry-content, #blogpage.casestudy .cs_results {
  padding: 2em 6vw;
}
#blogpage.casestudy form {
  font-size: 1em;
}
#blogpage.casestudy form .wpcf7-text {
  height: 3.4em;
  background-color: #F0F1EF;
  border-radius: 4px;
  border: none;
  width: 100%;
  font-size: 1em;
  padding: 0 1em;
}
#blogpage.casestudy form textarea {
  width: 100%;
  border: none;
  padding: 1em;
  font-size: 1em;
  border-radius: 4px;
  background-color: #F0F1EF;
}
#blogpage.casestudy form .wpcf7-submit {
  font-size: 1em;
  border: none;
  background-color: #AF1551;
  color: #fff;
  min-width: 18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4em;
  font-weight: bold;
  box-shadow: 0.5em 0.5em 0 rgba(0, 0, 0, 0.1333333333);
  padding: 0 2em;
}
#blogpage.casestudy .cs_top h2 {
  color: #71F082;
  font-size: 2.4rem;
  padding-bottom: 2rem;
}
#blogpage.casestudy .cs_contact h2 {
  color: #73F081;
}
#blogpage.casestudy .twocol, #blogpage.casestudy .threecol, #blogpage.casestudy .cs_contact {
  padding-bottom: 4em;
}
#blogpage.casestudy .break {
  background-image: url(../assets/images/break.svg);
  height: 10em;
  background-size: contain;
  width: calc(100% + 12vw);
  margin-left: -6vw;
  margin-right: -6vw;
  background-position: center left;
  margin-bottom: 5em;
}
#blogpage.casestudy .cs_quote p {
  font-weight: bold;
  color: #71F082;
  font-size: 1.6em;
  padding: 0 0 0 4em;
}
#blogpage.casestudy .sec_head {
  margin: 0 auto;
  max-width: 44em;
  text-align: center;
  padding: 2em 0 3em;
}
#blogpage.casestudy .sec_head h2 {
  ttext-align: center;
  color: #71F082;
  font-size: 2em;
  padding-bottom: 0.5em;
}

#casestudies_slider {
  padding: 0;
}
#casestudies_slider h2 {
  font-size: 1em;
  color: #AF1551;
  text-transform: uppercase;
}
#casestudies_slider .sec_head {
  padding-right: 6em;
  max-width: 50em;
  padding-top: 4em;
  padding-bottom: 2em;
}
#casestudies_slider .sec_head p {
  font-weight: bold;
  font-size: 1.6em;
  line-height: 1em;
}
#casestudies_slider li {
  display: flex;
  gap: 6em;
}
#casestudies_slider li > div {
  flex: 1;
}
#casestudies_slider .contentarea {
  display: flex;
  align-items: center;
  justify-content: center;
}
#casestudies_slider .contentarea .pad {
  padding: 4em 6vw;
}
#casestudies_slider .contentarea .pad span {
  color: #AF1551;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: bold;
}
#casestudies_slider .mask1 {
  -webkit-mask-image: url(../assets/images/mask-02.svg);
  mask-image: url(../assets/images/mask-02.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}
#casestudies_slider img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 40vw;
  object-fit: cover;
  object-position: center;
}
#casestudies_slider .container {
  padding: 0;
}

.formarea p {
  font-size: 1rem !important;
}

#leadins_slider {
  padding: 0;
}
#leadins_slider .imgcontainer {
  position: relative;
}
#leadins_slider .logooverlay {
  display: flex;
  top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
}
#leadins_slider .logooverlay .logocontain {
  max-width: 30vw;
  padding: 1.6rem 2rem;
  background-color: #fff;
}
#leadins_slider .logooverlay .logocontain img {
  width: 100%;
  display: block;
  min-height: initial;
  object-fit: initial;
}
#leadins_slider .container {
  padding: 0;
}
#leadins_slider .sec_head {
  padding-right: 6em;
  max-width: 50em;
  padding-top: 4em;
  padding-bottom: 2em;
}
#leadins_slider .sec_head p {
  font-weight: bold;
  font-size: 1.6em;
  line-height: 1em;
}
#leadins_slider li {
  display: flex;
}
#leadins_slider li > div {
  flex: 1;
}
#leadins_slider .cs_image {
  display: flex;
  height: 50vw;
}
#leadins_slider .contentarea {
  display: flex;
  align-items: center;
}
#leadins_slider .contentarea .pad {
  padding: 4em 6vw;
}
#leadins_slider .contentarea .pad span {
  color: #AF1551;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: bold;
}
#leadins_slider .mask4 {
  -webkit-mask-image: url(../assets/images/mask-04.svg);
  mask-image: url(../assets/images/mask-04.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}
#leadins_slider img {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 40vw;
  object-fit: cover;
  object-position: center;
}
#leadins_slider .container {
  padding-bottom: 0;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.socials li {
  display: block;
}
.socials li img {
  height: 2.5rem;
  display: block;
  width: auto;
}

#contact_home {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#contact_home .sec_head {
  padding-bottom: 4em;
}
#contact_home h2, #contact_home p {
  color: #fff;
}
#contact_home .contentcontain {
  align-items: center;
  gap: 6em;
}
#contact_home .contentcontain img {
  float: right;
  max-width: 28vw;
  height: auto;
  display: block;
}
#contact_home .contentcontain p, #contact_home .contentcontain h3 {
  color: #fff;
}
#contact_home .contentcontain h3 {
  font-size: 1em;
}
#contact_home .contentcontain .content, #contact_home .contentcontain .map {
  position: relative;
}
#contact_home .contentcontain .content::after {
  background-image: url(../assets/images/plus_pattern.svg);
  width: 70%;
  display: block;
  content: "";
  height: 12em;
  position: absolute;
  right: -9vw;
  top: 1.7em;
  background-size: contain;
}
#contact_home .contentcontain .content::before {
  background-image: url(../assets/images/plus_pattern.svg);
  width: 70%;
  display: block;
  content: "";
  height: 12em;
  position: absolute;
  left: -69vw;
  top: 1.7em;
  background-size: contain;
  background-position: right;
}
#contact_home form {
  font-size: 1em;
}
#contact_home form .wpcf7-text {
  height: 3.4em;
  background-color: #F0F1EF;
  border-radius: 4px;
  border: none;
  width: 100%;
  font-size: 1em;
  padding: 0 1em;
}
#contact_home form textarea {
  width: 100%;
  border: none;
  padding: 1em;
  font-size: 1em;
  border-radius: 4px;
  background-color: #F0F1EF;
}
#contact_home form .wpcf7-submit {
  font-size: 1em;
  border: none;
  background-color: #AF1551;
  color: #fff;
  min-width: 18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4em;
  font-weight: bold;
  box-shadow: 0.5em 0.5em 0 rgba(0, 0, 0, 0.1333333333);
  padding: 0 2em;
}
#contact_home .contactform {
  align-items: center;
  gap: 6em;
}

#cta .cta_container {
  display: flex;
  position: relative;
  max-width: 60em;
  margin: 0 auto;
}
#cta .cta_container .textcontent {
  align-self: center;
  background: rgb(54, 48, 196);
  background: -moz-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: -webkit-gradient(left bottom, right top, color-stop(0%, rgb(54, 48, 196)), color-stop(100%, rgb(23, 151, 172)));
  background: -webkit-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: -o-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: -ms-linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  background: linear-gradient(45deg, rgb(54, 48, 196) 0%, rgb(23, 151, 172) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3630c4", endColorstr="#1797ac", GradientType=1 );
  padding: 2em;
  color: #fff;
  position: absolute;
  width: 100%;
}
#cta .cta_container .textcontent h2 {
  margin-right: 45%;
  color: #fff;
  padding-bottom: 1em;
}
#cta .cta_container .imagearea {
  max-height: 20em;
  position: relative;
  right: 0;
  margin-left: 50%;
  padding-right: 2em;
}
#cta .cta_container .imagearea img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  object-position: right;
}
#cta .bttn {
  color: #AF1551;
  background-color: #fff;
}

#content .contentmain {
  max-width: 55em;
  margin: 0 auto;
  padding: 4em 2vw;
}
#content .contentmain iframe {
  aspect-ratio: 16/9;
  width: 100%;
  margin-bottom: 3rem;
}
#content .contentmain img {
  margin-bottom: 2rem;
  width: 100%;
}
#content .contentmain blockquote p {
  color: #AF1551;
  font-size: 1.8em;
  font-weight: bold;
  font-family: "interface", sans-serif;
  line-height: 110%;
}
#content .contentmain a {
  color: #AF1551;
}
#content .contentmain h2 {
  padding-bottom: 1.4rem;
  padding-top: 2rem;
}
#content .contentmain ul {
  margin-bottom: 1em;
}
#content .contentmain ul li {
  padding-bottom: 0.4em;
  padding-left: 1.4em;
  position: relative;
  color: #494949;
}
#content .contentmain ul li::before {
  background-color: #AF1551;
  border-radius: 4em;
  height: 0.8em;
  width: 0.8em;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.1em;
}
#content .contentmain ul ul {
  margin-top: 0.50em;
}

#text_intro h2 {
  padding-bottom: 1.6rem;
}
#text_intro .logoslider {
  margin-top: 2em;
}
#text_intro .logoslider img {
  max-height: 4em;
  margin: 0 auto;
}

footer {
  position: relative;
  z-index: 5;
  background-color: #F0F1EF;
  padding: 3em 6vw;
}
footer h5 {
  font-size: 1.1em;
  padding-bottom: 0.8em;
}
footer a {
  color: #4E4A40;
  text-decoration: none;
}
footer .footerlogos {
  display: flex;
  gap: 1em;
  padding-top: 4em;
  padding-bottom: 2em;
}
footer .footerlogos img {
  max-height: 2em;
}
footer strong {
  font-weight: bold;
}
footer p, footer a {
  font-size: 0.8em;
}
footer .footer_top {
  padding-bottom: 3em;
  justify-content: space-between;
}
footer .footer_top img {
  height: 2.3em;
}
footer .footer_top .response {
  padding: 2rem 0;
}
footer .hei1 {
  max-height: 2em;
}
footer .hei2 {
  max-height: 2.4em;
}
footer .sectorlogos {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
footer .sectorlogos img {
  height: 1.4em;
}
footer form {
  display: flex;
  gap: 1em;
}
footer form input {
  height: 1.9em;
  font-size: 1em;
}
footer form input.text {
  background-color: #AF1551;
  border: none;
  border-radius: 4px;
  padding-left: 1em;
  color: #fff;
  min-width: 24vw;
}
footer form .wpcf-submit {
  border: 2px solid #AF1551;
  color: #AF1551;
  background-color: transparent;
  padding: 0 1em;
}

.archive h1 {
  padding: 3em 0 1em;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}

.contactpopup {
  max-width: 40rem;
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 0;
  padding-top: 4.8em;
}
.contactpopup .cform {
  background-color: #AF1551;
  color: #fff;
  height: 0;
  padding: 0 2rem;
}
.contactpopup h3, .contactpopup .formsm {
  color: #fff;
}
.contactpopup p {
  font-size: 1rem;
}
.contactpopup .formsm {
  font-size: 0.8rem;
}
.contactpopup .wpcf7-submit {
  font-size: 1rem;
  border: none;
  background-color: #fff;
  color: #AF1551;
  min-width: 18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.4rem;
  font-weight: bold;
  box-shadow: 0.5em 0.5em 0 rgba(0, 0, 0, 0.1333333333);
  padding: 0 2em;
}
.contactpopup .wpcf7-text {
  height: 2.6rem;
  background-color: #F0F1EF;
  border-radius: 4px;
  border: none;
  width: 100%;
  font-size: 1em;
  padding: 0 1em;
}
.contactpopup h3 {
  padding-bottom: 1.4rem;
}
.contactpopup textarea {
  width: 100%;
  border: none;
  padding: 1em;
  font-size: 1em;
  border-radius: 4px;
  background-color: #F0F1EF;
  height: 6rem;
}
.contactpopup .fflex p {
  display: flex;
  gap: 1rem;
}
.contactpopup .contacttoggle {
  background-image: url(../assets/images/contact_toggle.svg);
  position: absolute;
  top: 0;
  right: 1em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4666666667);
  border-radius: 100%;
  z-index: 10;
  height: 3.8em;
  width: 3.8em;
  cursor: pointer;
}
.contactpopup .contacttoggle img {
  display: block;
  height: 3.8em;
}

.contactpopup.toggled .cform {
  padding: 2rem;
  height: auto;
}
.contactpopup.toggled .contacttoggle {
  background-image: url(../assets/images/contact_toggle2.svg);
  position: absolute;
  top: 0;
  right: 1em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4666666667);
  border-radius: 100%;
  z-index: 10;
  height: 3.8em;
  width: 3.8em;
  background-color: #AF1551;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.8em;
}

#service_header.tempheader p {
  max-width: 60rem;
}
#service_header.tempheader h1 {
  color: #03E2FF;
  font-size: 3rem;
}

.page-id-39550 #contact_block {
  overflow: visible;
  position: relative;
  z-index: 3;
  padding-top: 7rem;
}

a[href^=tel],
a[href^=mailto] {
  color: inherit;
  text-decoration: none;
}
.entry-content a[href^=tel],
.entry-content a[href^=mailto] {
  color: #AF1551;
}

.mobiletoggle {
  display: none;
}

/*----------------------------*/
/* New CSS starts 04-09-2025 */
/*----------------------------*/
#service_header strong,
#text_intro strong,
#repeating_content strong,
.entry-content strong {
  font-weight: 600;
}
#repeating_content em,
#repeating_content strong {
  color: #494949 !important;
}
#content em,
#service_header i,
#service_header em,
#text_intro i,
#text_intro em,
#repeating_content i,
#repeating_content em {
  font-style: italic;
}
#repeating_content ul li {
  list-style: none;
}
.contentmain ol,
.entry-content ol {
  list-style: decimal outside;
  margin-bottom: 1em;
}
.contentmain ol li,
.entry-content ol li {
  margin-bottom: 0.4em;
  margin-left: 1.7em;
}
.contentmain ol ol,
.entry-content ol ol,
.contentmain ol ol ol,
.entry-content ol ol ol,
.contentmain ol ol ol ol,
.entry-content ol ol ol ol {
  margin-top: 1em;
}
.contentmain table {
  margin-bottom: 1.2em;
}
.contentmain table td {
  border: 1px solid rgb(34, 9, 1);
  padding: 10px;
}

.meta-container {
  color: #fff;
}
.meta-container span {
  font-weight: normal !important;
  text-transform: none !important;
}
.meta-container-top {
  margin-bottom: 1.2em;
}
.meta-container-bottom {
  padding-top: 10px;
}
.meta-container-case-studies-child-page {
  margin-top: -1em;
}
.meta-container-cs-slider {
  color: #AF1551;
  margin: 0.7em 0;
}
.meta-container .post-categories {
  margin: 10px 0;
}
.meta-container .post-tags {
  margin-top: 10px;
}
.newsTitleMeta {
  padding: 0 1.4em;
}
#newsSection.autonews .newsTitleMeta h4 {
  padding: 0 !important;
}
#newsSection.autonews .meta-container {
  color: #AF1551;
  margin: 0 0 1.6em;
}

/* ----- Comments CSS start ----- */
.commentssection-wrapper {
  background-color: #F7F7F7;
  padding-top: 2.5em;
  padding-bottom: 3em;
}
.commentssection {
  font-size: 0.95em;
  line-height: 1.4em;
  margin: 0 auto;
  max-width: 60rem;
}
#respond {
  padding-top: 1.5em;
}
.commentssection #comments {
  padding-top: 0.8em;
}
#respond > h2,
.commentssection #comments {
  padding-bottom: 20px;
}
#respond #commentform,
.commentlist {
  padding-bottom: 1em;
}
.comment {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #FFF;
  border: 1px solid #ddd;
  border-radius: 5px;
}
/* Level 1: Primary comment */
.commentlist .comment.depth-1 {
  margin-top: 0;
}
/* Level 2: Indent a little more */
.commentlist .comment.depth-2 {
  /*background-color: #fff;*/
  border-left: 3px solid #ccc;
}
/* Level 3: Indent further */
.commentlist .comment.depth-3 {
  /*background-color: #f4f4f4;*/
  border-left: 3px solid #bbb;
}
/* Level 4: Indent further */
.commentlist .comment.depth-4 {
  /*background-color: #ededed;*/
  border-left: 3px solid #aaa;
}
/* Level 5: Maximum indent for this example */
.commentlist .comment.depth-5 {
  /*background-color: #e5e5e5;*/
  border-left: 3px solid #999;
}
/* Styling for nested children containers */
.commentlist ul.children {
  position: relative;
  margin-left: 20px; /* Adjust as needed */
}
/* Add a vertical thread line for all nested comments */
.commentlist ul.children::before {
  content: '';
  position: absolute;
  left: -20px; /* Position the line to the left of the content */
  top: 0;
  bottom: 0;
  width: 1px; /* Line thickness */
  background-color: #ccc; /* Line color */
}
/* Indent each level of comment */
.commentlist .comment.depth-2,
.commentlist .comment.depth-3,
.commentlist .comment.depth-4,
.commentlist .comment.depth-5 {
  /*margin-left: 20px;*/
}
.commentlist .comment-author,
.commentlist .comment-author img,
.commentlist .comment-meta {
  padding-bottom: 5px;
}
.commentlist p,
.commentlist .cancel-comment-reply {
  margin-bottom: 1em;
}
/* ----- Comments CSS end ----- */

/* blog-page.php and cspage.php */
#newsSection.blogfeed li .meta-container {
  color: #AF1551;
  padding: 0 1.4em 1.4em;
}
#newsSection.blogfeed li .meta-container span {
  background-color: transparent;
  color: #AF1551;
  position: static;
  padding: 0;
}

/* Category archive */
body.archive.category h1,
#newsSection.blogfeed ul {
  width: 100%;
}
body.archive.category #newsSection.blogfeed {
  padding-bottom: 4em;
}

/* 404 page */
body.error404 #service_header::before,
body.search #service_header::before,
body.error404 #service_header::after,
body.search #service_header::after {
  display: none;
}
body.error404 #service_header .container .headercontent,
body.search #service_header .container .headercontent {
  padding: 4em 6vw 6em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#service_header.tempheader.tempheaderSearchForm h1 {
  color: #fff;
  margin-bottom: 0.8em;
}
#service_header.tempheaderSearchForm h1 span {
  display: block;
  font-size: 100px;
  line-height: 100px;
}
.tempheaderSearchForm h3 {
  color: #FFF;
}
#service_header.tempheader.tempheaderSearchForm p {
  max-width: 35rem;
}
.tempheaderSearchForm #searchform {
  width: 530px;
  padding: 1em 0 1.5em;
}
.tempheaderSearchForm #searchform > div {
  display: flex;
  position: relative;
}
.tempheaderSearchForm #searchform i {
  font-style: normal;
  position: absolute;
  left: 15px;
  top: 21px;
  opacity: 0.6;
}
.tempheaderSearchForm #searchform input[type='search'] {
  height: 3.4em;
  background-color: rgba(240, 239, 241, 0.2);
  border-radius: 4px;
  border: none;
  color: #fff;
  font-size: 1em;
  padding: 0 1em 0 2.5em;
  position: relative;
  width: 100%;
}
.tempheaderSearchForm #searchform input[type='search']::placeholder {
  color: #fff;
}
.tempheaderSearchForm #searchform input[type='submit'] {
  font-size: 1em;
  border: none;
  background-color: #FFF;
  border-radius: 4px;
  color: #AF1551;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.4em;
  font-weight: bold;
  margin-left: 20px;
  padding: 0 1.5em;
}
.tempheaderSearchForm #searchform input[type='submit']:focus {
  border: 0 none;
  outline: 0 none;
}
 #searchform input[type='submit']:hover,
.tempheaderSearchForm #searchform input[type='submit']:active,
.tempheaderSearchForm #searchform input[type='submit']:focus {
  background-color: #AF1551;
  color: #fff;
  transition: 0.2s all;
}
#service_header.tempheaderSearchForm .container .bttncontain {
  padding-top: 0.5em;
}
.image-404 {
  margin: 1em auto;
  max-width: 100%;
}

/* Search resutls page */
body.search #service_header .container .headercontent {
  padding-bottom: 5em;
}
body.search .tempheaderSearchForm #searchform {
  padding-top: 0;
}

/* CookieYes Cookie table */
/* url: https://www.pragencyone.co.uk/privacy-policy/pr-agency-one-data-protection-policy-for-gdpr/ */
/* Usage: <div class="cky-audit-table-element"></div> */
.cky-audit-table-element h3 {
  margin: 0 !important;
}
.cky-audit-table-element .cky-cookie-audit-table th {
  font-weight: bold;
}
.cky-audit-table-element .cky-cookie-audit-table th,
.cky-audit-table-element .cky-cookie-audit-table td {
  background-color: transparent;
  border: 1px solid rgb(34, 9, 1);
  font-size: 1em;
  line-height: normal;
}
.cky-audit-table-element .cky-cookie-audit-table tr:nth-child(2n+1) td {
  background-color: transparent;
}
.cky-audit-table-element .cky-cookie-audit-table th p,
.cky-audit-table-element .cky-cookie-audit-table td p {
  font-size: 1em;
  line-height: normal;
}

/*-------------------------*/
/* New CSS ends 04-09-2025 */
/*-------------------------*/

@media screen and (max-width: 1290px) {
  html {
    font-size: 0.8em;
  }
  html h1, html h2 {
    line-height: 1.4em;
  }
  html p {
    line-height: 1.8em;
  }
}
@media screen and (max-width: 890px) {
  #main_header .container .servicecontainer img {
    height: 6rem;
  }
  #main_header .container .servicecontainer ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  #main_header .container .videocontent {
    flex: 1;
    align-self: flex-start;
  }
  #main_header .container .videocontainer {
    display: none;
  }
  #main_header .container .servicecontainer ul li {
    width: 50%;
  }
  #main_header .container .imagecontainer {
    width: auto;
    height: auto;
    background-color: #ccc;
    position: relative;
    z-index: 2;
    border-radius: 0;
    margin-top: 7em;
    overflow: hidden;
    width: calc(100% + 12vw);
    margin-left: -6vw;
    align-self: flex-start;
  }
  #main_header .container {
    padding: 10em 0 3rem;
    min-height: auto;
    align-items: center;
    color: #fff;
    position: relative;
    gap: 0;
    flex-direction: column;
  }
  #main_header .container .grid_overlay {
    position: absolute;
    right: -4em;
    width: 19.5vw;
    bottom: 16em;
    z-index: 9;
  }
  #main_header .container .servicecontainer {
    height: auto;
    position: relative;
    bottom: 2em;
    left: 0;
    right: 0;
    padding-top: 7rem;
    width: 100%;
  }
  .videocontainer, .menu-main-menu {
    display: none;
  }
  .menu-main-menu {
    display: none;
  }
  .mob-on .mainmenu {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #AF1551;
    z-index: -1;
    align-items: flex-start;
    font-size: 1.5rem;
  }
  .mob-on .mainmenu > div {
    width: 100%;
    padding: 13rem 4vw;
  }
  .menu-item-has-children > a {
    background-image: url(../assets/images/downarroww.svg);
    background-size: 3rem;
    background-repeat: no-repeat;
    background-position: center right;
  }
  .mobiletoggle {
    width: 2em;
    height: 2em;
    cursor: pointer;
    transition: 0.2s all !important;
  }
  .mobiletoggle span {
    margin: 0.3em 0;
  }
  .mobiletoggle span, .mobiletoggle::before, .mobiletoggle::after {
    display: block;
    content: "";
    height: 0.3em;
    width: 80%;
    background-color: #fff;
  }
  .mobiletoggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header .mainmenu, .contact_top {
    display: none;
  }
  header #menu-main-menu li:hover > .sub-menu {
    background-color: #AF1551;
    position: relative;
    top: 98%;
    display: block;
    box-shadow: none;
    transition: 0.2s all !important;
  }
  .menutoggle {
    display: none;
  }
  header ul {
    display: block;
    column-gap: 0.8em;
    justify-content: flex-end;
    font-weight: bold;
  }
  header #menu-main-menu .sub-menu li:hover .sub-menu {
    left: 15px;
    background-color: transparent;
  }
}
@media screen and (max-width: 720px) {
  #main_header .container .imagecontainer {
    width: auto;
    height: auto;
    background-color: #ccc;
    position: relative;
    z-index: 2;
    border-radius: 0;
    margin-top: 7em;
    overflow: hidden;
    width: calc(100% + 12vw);
    margin-left: -6vw;
    align-self: flex-start;
  }
  .videocontent {
    flex: 1;
    align-self: flex-start;
  }
  #main_header .container h1::after {
    background-image: url(../assets/images/h1_grid_small.svg);
    display: block;
    content: "";
    width: 2em;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -2.3em;
    background-position: left center;
    height: 2em;
  }
  #main_header .container .bttncontain {
    padding-top: 2em;
    display: flex;
  }
  #leadins_slider li {
    display: block !important;
  }
  #text_intro h2 {
    padding-bottom: 1.6rem;
    font-size: 1.6rem;
    padding-top: 2rem;
  }
  .mobiletoggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #leadins_slider .contentarea {
    display: block;
    align-items: center;
    height: auto;
  }
  .menu-item-has-children > a {
    background-image: url(../assets/images/downarroww.svg);
    background-size: 3rem;
    background-repeat: no-repeat;
    background-position: center right;
  }
  .mobiletoggle {
    width: 2em;
    height: 2em;
    cursor: pointer;
    transition: 0.2s all !important;
  }
  .mobiletoggle span {
    margin: 0.3em 0;
  }
  .mobiletoggle span, .mobiletoggle::before, .mobiletoggle::after {
    display: block;
    content: "";
    height: 0.3em;
    width: 80%;
    background-color: #fff;
  }
  body {
    font-size: 1.2rem;
  }
  .flex, container, .row {
    flex-direction: column !important;
  }
  img.full, img.mask1, img.mask2, img.mask3 {
    mask-position: center;
    height: 30em !important;
  }
  header {
    padding: 0 2em 0 5vw;
  }
  #service_header .container .headercontent {
    padding: 2em 5vw 9em;
  }
  #repeating_content .row .contentarea .pad {
    padding: 2em 6vw;
  }
  section {
    overflow: hidden;
    padding: 0 6vw;
    background-color: #fff;
  }
  #service_header .imgcontent img {
    mask-size: 100%;
    height: 70vw;
    object-fit: cover;
    mask-position: center;
  }
  #service_header .container {
    padding: 6em 0 0;
    min-height: auto;
    flex-direction: column-reverse !important;
  }
  .menu-main-menu {
    display: none;
  }
  .mob-on .mainmenu {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #AF1551;
    z-index: -1;
    align-items: flex-start;
    font-size: 1.5rem;
  }
  .mob-on .mainmenu > div {
    width: 100%;
    padding: 10rem 6vw;
  }
  header #menu-main-menu li:hover > .sub-menu {
    background-color: #AF1551;
    position: relative;
    top: 98%;
    display: block;
    box-shadow: none;
    transition: 0.2s all !important;
  }
  .menutoggle {
    display: none;
  }
  header ul {
    display: block;
    column-gap: 0.8em;
    justify-content: flex-end;
    font-weight: bold;
  }
  #leadins_slider li {
    display: flex;
    flex-direction: column;
  }
  #leadin_grid ul {
    padding: 4em 0;
    width: 100%;
  }
  #casestudies_slider .sec_head {
    padding-right: 0;
    max-width: 90vw;
    padding-top: 4em;
    padding-bottom: 2em;
    margin: 0 auto;
  }
  #casestudies_slider li {
    display: flex;
    gap: 0;
    flex-direction: column-reverse;
  }
  #newsSection .news_head {
    position: relative;
    z-index: 2;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
  }
  .featuredArea {
    display: none !important;
  }
  #newsSection .newsFeed {
    display: flex;
    gap: 2em;
    position: relative;
    z-index: 4;
    flex-direction: column;
  }
  #contact_home .contentcontain {
    align-items: initial;
    gap: 6em;
  }
  #contact_home .contentcontain img {
    float: initial;
    max-width: 60vw;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  #leadin_grid.gradient2::before {
    content: "";
    display: block;
    height: 40vw;
    width: 29vw;
    background-image: url(../assets/images/blueg2.svg);
    background-position: left center;
    background-size: cover;
    right: -17%;
    position: absolute;
    bottom: -4em;
  }
  #leadin_grid.gradient2::after {
    content: "";
    display: block;
    height: 40vw;
    width: 29vw;
    background-image: url(../assets/images/blueg1.svg);
    background-position: right center;
    background-size: cover;
    left: -17%;
    position: absolute;
    bottom: -4em;
  }
  #leadin_grid li a {
    position: relative;
    bottom: 0;
  }
  #leadin_grid li {
    text-align: center;
  }
  #leadin_grid img {
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
  }
  #leadin_grid .awardslider {
    display: flex;
    gap: 2em;
    padding-top: 2em;
    flex-wrap: wrap;
    flex-direction: row !important;
    justify-content: space-between;
  }
  #leadin_grid .awardslider div {
    width: 44%;
  }
  header .mainmenu, .contact_top {
    display: none;
  }
  #leadin_grid h3 {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 0;
    padding-bottom: 0.6em;
  }
  #leadins_slider .logooverlay .logocontain {
    max-width: 60vw;
    padding: 1.6rem 2rem;
    background-color: #fff;
  }
  #pageheader .supportingimage::after {
    width: 130%;
  }
  #blogpage {
    background-color: #fff;
    /*padding: 4rem 6vw;*/
    padding: 4rem 6vw 0;
  }
  header .container {
    padding: 1.8em 0;
    align-items: center;
  }
  #inline-gallery .gallerycontain {
    height: 54vw;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
  }
  #service_header.standard .imgcontent img {
    mask-image: initial;
  }
  section .container .sec_head {
    margin: 0 auto;
    max-width: auto;
    text-align: center;
  }
  #service_header .container .bttncontain {
    padding-top: 2em;
    display: flex;
    justify-content: center;
  }
  #landing_page_header .container {
    min-height: auto;
    align-items: center;
    color: #fff;
    position: relative;
  }
  #landing_page_header {
    overflow: visible;
    z-index: 4;
    padding: 0;
    position: relative;
    padding-top: 7rem;
  }
  #contact_block::after {
    content: "";
    display: block;
    height: 28vw;
    width: 8vw;
    background-image: url(../assets/images/circle_element_blue.svg);
    background-position: right center;
    background-size: cover;
    left: 0;
    position: absolute;
    top: -14vw;
  }
  #contact_block::before {
    content: "";
    display: block;
    height: 28vw;
    width: 8vw;
    background-image: url(../assets/images/circle_element_blue.svg);
    background-position: left center;
    background-size: cover;
    right: 0;
    position: absolute;
    bottom: -14vw;
  }
  #landing_page_header::before {
    content: "";
    display: block;
    height: 28vw;
    width: 28vw;
    background-image: url(../assets/images/circle_element_blue.svg);
    background-position: center;
    background-size: contain;
    left: -20vw;
    position: absolute;
    bottom: 30%;
  }
  #landing_page_header::after {
    content: "";
    display: block;
    height: 28vw;
    width: 28vw;
    background-image: url(../assets/images/circle_element_blue.svg);
    background-position: center;
    background-size: contain;
    right: -20vw;
    position: absolute;
    bottom: 30%;
  }
  #pageheader .container {
    gap: 2;
    align-items: flex-start;
    min-height: 40vh;
  }
  #newsSection.blogfeed ul {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
    display: flex;
    flex-direction: column;
  }
  #newsSection.blogfeed li {
    width: 100%;
    flex: auto !important;
    background-color: #fff;
    margin-bottom: 2%;
  }
  #newsSection.blogfeed .newstop {
    height: 47vw;
    overflow: hidden;
  }
  #blogpage.casestudy {
    padding: 0;
  }
  #pageheader.casestudy .container {
    height: auto;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    justify-content: center;
    padding-top: 10rem;
  }
  .cs-top {
    max-width: 55rem;
    margin: 0 auto;
    padding-bottom: 6rem;
  }
  #casestudies_slider .contentarea .pad {
    padding: 0em 6vw 4em;
  }
  #main_header .container .servicecontainer img {
    height: 13vw;
  }
  #main_header .container .servicecontainer ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #main_header .container .servicecontainer ul li {
    width: 50%;
  }
  #main_header .container {
    padding: 10em 0 3rem;
    min-height: 120vh;
    align-items: center;
    color: #fff;
    position: relative;
  }
  #main_header .container .servicecontainer {
    height: auto;
    position: relative;
    bottom: 2em;
    left: 0;
    right: 0;
    padding-top: 7rem;
  }
  footer .footerlogos {
    display: flex;
    gap: 1em;
    padding-top: 4em;
    padding-bottom: 2em;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footerlogos img {
    max-height: 4em;
  }
  footer .sectorlogos img {
    height: 2em;
  }
  #service_header .imgcontent img {
    mask-size: 100%;
    height: 70vw;
    object-fit: cover;
    mask-position: center;
    mask-image: initial !important;
  }
  #service_header.technology .service_logo, #service_header.financial .service_logo, #service_header.retail .service_logo, #service_header.health .service_logo, #service_header.environment .service_logo, #service_header.technology .service_logo {
    max-height: 2.8em;
    margin-bottom: 3em;
  }
  #contact_home .contentcontain .content::after {
    width: 50%;
  }
  footer form input.text {
    background-color: rgb(175, 21, 81);
    border: medium;
    border-radius: 4px;
    padding-left: 1em;
    color: rgb(255, 255, 255);
    min-width: 24vw;
    height: 3rem;
  }
  footer form .wpcf-submit {
    height: 3rem;
  }
  .mc_embed_signup_scroll .flex {
    gap: 1rem;
  }
  
  .tempheaderSearchForm #searchform {
    width: 360px;
  }
  .tempheaderSearchForm #searchform > div {
    flex-direction: column;
  }
  .tempheaderSearchForm #searchform i {
    font-size: 21px;
    left: 11px;
    top: 17px;
  }
  .tempheaderSearchForm #searchform input[type="search"] {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .tempheaderSearchForm #searchform input[type="submit"] {
    border-radius: 4px;
    margin-left: 0;
  }
  .commentssection-wrapper {
    padding: 4rem 6vw;
  }
  .comment {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
  }
  .commentlist ul.children::before {
    left: -10px
  }
  .commentlist ul.children {
    margin-left: 10px;
  }
  .commentlist .comment.depth-1 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .tempheaderSearchForm #searchform {
    width: 280px;
  }
  #respond form input[type="text"],
  #respond form textarea {
    font-size: 14px;
  }
  #respond form input[type="submit"] {
    padding: 0 1.2em;
    min-width: auto;
  }
}