@import url(https://use.typekit.net/gpt1wtf.css);
/**
  * Clear after floats
*/
/**
  * Convert font-size from px to rem with px fallback
  * @param $size - the value in pixel you want to convert
  * Credit - http://bit.ly/1H7jo0n
  * e.g. p { @include fontSize(12px); }
*/
/**
  * Function for converting a px based font-size to rem.
*/
/**
  * Mixin that will include the fall back px declaration
  * as well as the calculated rem value.
*/
/**
  * Apply clearfix to this classes by default
*/
.clear,
.group {
  zoom: 1;
}
.clear:before, .clear:after,
.group:before,
.group:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clear:after,
.group:after {
  clear: both;
}

/**
* Responsive mixins
*/
/*------------------------------------*\
    #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
    #COLOUR-VARIABLES
\*------------------------------------*/
/**
  * One of the best reasons to use Sass is variables.
  * They help keep your code DRY, which makes it easy to maintain and change.
  * However, with colors, it's easy for your variables to get out of hand.
  *
  * Solution - Use Name that colour - http://bit.ly/1KCISUE
  * Name your variables after colors like you were trying to do, but without the naming difficulty
  * Suggestion by David Walsh - http://bit.ly/1I62ZLL
*/
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;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

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

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

*,
*:before,
*:after {
  box-sizing: border-box;
}

.js #flash {
  display: none;
}

body {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lock {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

img {
  border: none;
}

a {
  transition: all, 0.25s, linear;
  text-decoration: none;
}

img,
video,
audio,
iframe,
object {
  max-width: 100%;
}

button {
  padding: 0;
  margin: 0;
  border: 0;
}

sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -9px;
}

button {
  outline: none;
}

object {
  display: block;
}

strong {
  font-weight: bold;
}

/**
  * So to avoid duplicate CSS declarations we have decided to add some single classes
  * Its all for the BEM methodology
*/
.primary {
  color: #00a09a;
}
.primary__bg {
  background: #00a09a;
}

.secondary {
  color: #212c55;
}
.secondary__bg {
  background: #212c55;
}

.tertiary {
  color: #dddb00;
}
.tertiary__bg {
  background: #dddb00;
}

.dark {
  color: #4f545b;
}
.dark__bg {
  background: #4f545b;
}

.light {
  color: #ffffff;
}
.light__bg {
  background: #ffffff;
}

.bg-grey {
  background: #d9d9d9;
}
.bg-grey--greyBg {
  background: #f1f5f6;
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #4f545b;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.object-fit {
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
     object-fit: cover;
}

.object-contain {
  width: 100%;
  height: 100%;
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
     object-fit: contain;
}

.object-pos-left {
  -o-object-position: left top;
     object-position: left top;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.align-left {
  text-align: right;
}

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

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

.preload {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-out;
  background: #212c55;
  z-index: 9999999;
}
.preload.active {
  opacity: 1;
  visibility: visible;
  transition: all 1s ease-out;
}
.preload__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preload__loader.active {
  opacity: 1;
  visibility: visible;
}
.preload__loader img {
  width: 260px;
  height: 65px;
}

.container {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 0 30px;
}
.container--no-pad {
  padding: 0 !important;
}
@media screen and (min-width: 1024px) {
  .container {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1366px) {
  .container {
    padding: 0 75px;
  }
}
@media screen and (min-width: 1900px) {
  .container {
    padding: 0 0;
  }
}
.container--1015 {
  max-width: 1015px;
}
.container--1190 {
  max-width: 1190px;
}
.container--1400 {
  max-width: 1400px;
}
.container--1500 {
  max-width: 1500px;
}
.container--1500-no-pad {
  padding: 0;
}
.container--1700 {
  max-width: 1700px;
}
.container--push-left {
  margin: 0 0 0 auto;
}
.container--center {
  margin: 0 auto;
}
.container__basic {
  max-width: 1290px;
  margin: auto;
  padding: 60px 30px;
}
@media screen and (min-width: 1024px) {
  .container__basic {
    padding: 60px 50px;
  }
}
.container__basic p {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
  color: #4f545b;
}
.container__basic a {
  margin-bottom: 20px;
}

.fw-geo-reg {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.fw-geo-light {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}

.fw-geo-bold {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 800;
}

.fw-geo-demi {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
}

.subtitle {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 3px;
  color: #212c55;
  margin-bottom: 20px;
  text-transform: uppercase;
}

body.ie .header {
  justify-content: flex-start;
}
body.ie .header .header__burger .header-burger__circle {
  top: -1px;
  left: -1px;
}
@media screen and (min-width: 1024px) {
  body.ie .projects-slider .btn {
    width: 160px;
  }
}
body.ie .curved-slider::after {
  bottom: -7px;
}
body.ie .curved-slider__dots ul {
  width: 0;
}
body.ie .curved-header::after {
  bottom: -7px;
}
body.ie .circle-img-text__content {
  flex: none;
}
body.ie .home-intro__content {
  flex: none;
}
body.ie .home-intro__electric-lines {
  display: none;
}
body.ie .about .about-intro__lines {
  display: none;
}
body.ie .about .careers__content {
  flex: none;
}
body.ie .testimonial-slider__img img {
  background-position-x: right !important;
}
body.ie .projects-list__item {
  justify-self: none;
}
body.ie .projects-list .projects-list-item__location svg {
  display: none;
}
body.ie .projects-list .projects-list-item__location span {
  margin-right: 0;
}
body.ie .projects-list .projects-list-item__number {
  top: -50px;
}
body.ie .project .project__intro .project-intro__lines {
  display: none;
}
body.ie .project__challenges::before {
  top: -179px;
}
body.ie .what-we-offer__card .card-content {
  width: 100%;
}
body.ie .what-we-offer__card:nth-of-type(4n+1) .card-header {
  background: #00a09a;
}
body.ie .what-we-offer__card:nth-of-type(4n+2) .card-header {
  background: #2fab66;
}
body.ie .what-we-offer__card:nth-of-type(4n+3) .card-header {
  background: #94c01f;
}
body.ie .what-we-offer__card:nth-of-type(4n) .card-header {
  background: #dddb00;
}
body.ie .what-we-offer__card .card-header .oval {
  display: none;
}
body.ie .blog-directory-header::after {
  bottom: -7px;
}
body.ie .contact__card::before {
  display: none;
  content: none;
}
body.ie .contact .contact-location__map {
  flex: none;
}
@media screen and (min-width: 1024px) {
  body.ie .footer__copy .copy {
    margin-right: 200px;
  }
}
@media screen and (min-width: 1601px) {
  body.ie .footer__copy .copy {
    margin-right: 450px;
  }
}
@media screen and (min-width: 1024px) {
  body.ie .footer__copy .made {
    margin-left: 200px;
  }
}
@media screen and (min-width: 1601px) {
  body.ie .footer__copy .made {
    margin-left: 450px;
  }
}
body.ie .footer__copy .back::before {
  display: block;
}

.page-template-template-get-a-quote.ie .contact__form::before {
  display: none;
  content: none;
}

.header {
  width: 100%;
  max-width: 100vw;
  height: 85px;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: rgba(33, 44, 85, 0.6);
  transition: background 0.15s linear;
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 28px 70px;
    height: 135px;
  }
}
.header--active {
  padding: 15px 15px 15px 45px;
  height: 140px;
  align-items: flex-start;
  background-color: #212c55;
}
.header--active .header__logo svg .logo-text {
  fill: #212c55;
}
.header--active .header__logo {
  width: 0;
}
.header--light {
  background: white;
}
.header--light .header__services-nav ul li a {
  color: #4f545b;
}
.header--light .header__logo svg .logo-text {
  fill: #fff;
}
@media screen and (min-width: 1024px) {
  .header--no-bg {
    background: transparent;
  }
}
.header--no-bg .header__services-nav {
  opacity: 0;
  visibility: hidden;
}
.header__logo {
  width: 180px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 290px;
    height: 75px;
    margin-right: auto;
  }
}
.header__logo .logo-desk {
  width: 90%;
  height: auto;
}
.header__logo .logo-desk--inactive {
  display: none;
}
.header__logo .logo-desk .logo-text {
  fill: #ffffff;
  transition: all 0.25s ease-in-out;
}
.header__logo .logo-mob {
  width: 100px;
  height: 120px;
  display: none;
}
.header__logo .logo-mob--active {
  display: block;
}
.header__services-nav {
  display: none;
}
@media screen and (min-width: 1680px) {
  .header__services-nav {
    display: block;
  }
}
.header__services-nav ul li {
  display: inline-block;
  margin-right: 65px;
  text-align: center;
}
.header__services-nav ul li:last-child {
  margin-right: 0;
}
.header__services-nav ul li a {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  line-height: 25px;
  transition: all 0.25s ease-in-out;
}
.header__services-nav ul li a:hover {
  color: #00a09a;
}
.header__cta-btn {
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.header__burger {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  background: #dddb00;
  border: 0;
  margin-left: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border 0.5s;
}
@media screen and (min-width: 1024px) {
  .header__burger {
    margin-left: 20px;
    width: 65px;
    height: 65px;
    border-radius: 65px;
  }
}
.header__burger .header-burger__line {
  width: 20px;
  height: 13px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .header__burger .header-burger__line {
    width: 27px;
    height: 18px;
  }
}
.header__burger .header-burger__line .line-svg {
  stroke-dasharray: 117.9314804077;
  stroke-dashoffset: 0;
}
.header__burger .header-burger__close {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1024px) {
  .header__burger .header-burger__close {
    width: 24px;
    height: 24px;
  }
}
.header__burger .header-burger__close .cross-svg {
  stroke-dasharray: 181.019317627;
  stroke-dashoffset: 181.019317627;
}
.header__burger .header-burger__circle {
  width: 35px;
  height: 35px;
  position: absolute;
  left: -1px;
  top: -1px;
  transform: rotate(225deg);
}
@media screen and (min-width: 1024px) {
  .header__burger .header-burger__circle {
    width: 65px;
    height: 65px;
  }
}
.header__burger .header-burger__circle circle {
  stroke-dasharray: 203.8736572266;
  stroke-dashoffset: 203.8736572266;
}
.header-placeholder {
  height: 85px;
  background-color: #212c55;
}
@media screen and (min-width: 1024px) {
  .header-placeholder {
    height: 135px;
  }
}

.post-type-archive-projects .header {
  background: white;
  border-bottom: 1px solid #36a9e0;
}
.post-type-archive-projects .header .header__services-nav ul li a {
  color: #4f545b;
}
.post-type-archive-projects .header .header__logo svg .logo-text {
  fill: #212c55;
}

.preload {
  transition: opacity 0.5s linear;
  pointer-events: none;
}
.preload.active {
  opacity: 1;
}

body.nav-open {
  height: 100vh;
  overflow: hidden;
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  pointer-events: none;
  overflow: hidden;
}
.nav-wrapper--active {
  pointer-events: all;
}
.nav-wrapper--active .nav-wrapper__left {
  transform: translateY(0);
  opacity: 1;
}
.nav-wrapper--active .nav-wrapper__left .inner {
  overflow-y: auto;
}
@media screen and (min-width: 1024px) {
  .nav-wrapper--active .nav-wrapper__left .inner {
    padding-right: 100px;
  }
}
.nav-wrapper--active .nav-wrapper__left .inner .pages-nav {
  margin-bottom: 100px;
}
.nav-wrapper--active .nav-wrapper__left .inner .nav-social-mob {
  margin-bottom: 20px;
}
.nav-wrapper--active .nav-wrapper__right {
  transform: translateY(0);
  opacity: 1;
}
.nav-wrapper--active .social {
  opacity: 1;
}
.nav-wrapper--active-small .nav-wrapper__right {
  display: none;
}
.nav-wrapper .social {
  position: absolute;
  bottom: 65px;
  right: 65px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  opacity: 0;
  transition: opacity 0.15s linear;
}
.nav-wrapper .social p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 3px;
  color: #36a9e0;
  text-transform: uppercase;
  margin-right: 25px;
}
.nav-wrapper .social svg {
  fill: #36a9e0;
}
.nav-wrapper .social .li {
  margin-right: 25px;
}
.nav-wrapper__left {
  width: 100%;
  height: 100%;
  background: #212c55;
  transform: translateY(-75%);
  opacity: 0;
  transition: opacity 0.15s linear, transform 0.35s linear;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 160px 45px 0 45px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .nav-wrapper__left {
    width: 50%;
    padding: 120px 45px 85px 45px;
    overflow: scroll;
  }
}
@media screen and (min-width: 1194px) {
  .nav-wrapper__left {
    padding: 160px 85px 85px 85px;
  }
}
@media screen and (min-width: 1601px) {
  .nav-wrapper__left {
    padding: 200px 100px 100px 210px;
  }
}
.nav-wrapper__left--full-width {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .nav-wrapper__left .mobile-only {
    display: none;
  }
}
.nav-wrapper__left .nav-social-mob {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .nav-wrapper__left .nav-social-mob {
    display: none;
  }
}
.nav-wrapper__left .nav-social-mob p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #36a9e0;
}
.nav-wrapper__left .nav-social-mob svg {
  fill: #36a9e0;
}
.nav-wrapper__left .nav-logos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 310px;
  margin-bottom: 45px;
}
@media screen and (min-width: 1024px) {
  .nav-wrapper__left .nav-logos {
    margin-bottom: unset;
  }
}
.nav-wrapper__left .nav-logos__city {
  width: 85px;
  height: 58px;
}
.nav-wrapper__left .nav-logos__napit {
  width: 55px;
  height: 58px;
}
.nav-wrapper__left .nav-logos__chas {
  width: 85px;
  height: 62px;
}
.nav-wrapper__left .nav-logos svg {
  fill: #ffffff;
}
.nav-wrapper__right {
  width: 50%;
  height: 100%;
  background: #ffffff;
  transform: translateY(75%);
  opacity: 0;
  transition: opacity 0.15s linear, transform 0.35s linear;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .nav-wrapper__right {
    padding: 120px 45px 85px 45px;
    overflow: scroll;
    display: flex;
  }
}
@media screen and (min-width: 1194px) {
  .nav-wrapper__right {
    padding: 160px 85px 85px 85px;
  }
}
@media screen and (min-width: 1601px) {
  .nav-wrapper__right {
    padding: 200px 100px 100px 170px;
  }
}
@media screen and (min-width: 1024px) {
  .nav-wrapper .pages-nav {
    margin: 0 0 60px 0;
  }
}
.nav-wrapper .pages-nav ul li {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 50px;
  letter-spacing: -0.36px;
}
@media screen and (min-width: 1024px) {
  .nav-wrapper .pages-nav ul li {
    font-size: 54px;
    line-height: 100px;
  }
}
.nav-wrapper .pages-nav ul li.current_page_item a {
  color: #dddb00;
}
.nav-wrapper .pages-nav ul li a {
  color: #ffffff;
  transition: color 0.25s ease-in-out;
}
.nav-wrapper .pages-nav ul li:hover a {
  color: #dddb00;
}
.nav-wrapper .services-nav__title {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 54px;
  line-height: 100px;
  letter-spacing: -0.36px;
  color: #212c55;
  margin-bottom: 40px;
}
.nav-wrapper .services-nav ul li {
  margin-bottom: 45px;
  display: flex;
  flex-direction: row;
}
.nav-wrapper .services-nav__icon {
  width: 80px;
  margin-right: 60px;
}
.nav-wrapper .services-nav__text a {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  color: #212c55;
  margin-bottom: 10px;
  transition: all 0.25s ease-in-out;
}
.nav-wrapper .services-nav__text a:hover {
  color: #dddb00;
}
.nav-wrapper .services-nav__text p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
  width: 100%;
  max-width: 525px;
}

.curved-slider {
  width: 100%;
  max-width: 1920px;
  height: 585px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: #212c55;
}
@media screen and (min-width: 768px) {
  .curved-slider {
    height: 860px;
  }
}
@media screen and (min-width: 1920px) {
  .curved-slider {
    max-width: 100%;
  }
}
.curved-slider .slick-track,
.curved-slider .slick-list {
  height: 100%;
}
.curved-slider__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  float: left;
}
.curved-slider__arrows {
  display: inline-flex;
  float: right;
  position: relative;
  z-index: 12;
  position: absolute;
  top: 72%;
  right: 11%;
}
@media screen and (min-width: 1024px) {
  .curved-slider__arrows {
    top: 55%;
  }
}
.curved-slider__arrows .slick-arrow {
  border: 2px solid white;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.curved-slider__arrows .slick-arrow:first-of-type {
  margin-right: 10px;
}
.curved-slider__arrows .slick-arrow--next {
  left: 75%;
}
.curved-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 145px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
}
@media screen and (min-width: 1024px) {
  .curved-slider__dots {
    bottom: 20%;
  }
}
.curved-slider__dots ul {
  width: 100%;
  display: flex;
  justify-content: center;
}
.curved-slider__dots ul li {
  margin-right: 30px;
}
.curved-slider__dots ul li:last-of-type {
  margin-right: 0px;
}
.curved-slider__dots ul li button {
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-radius: 50%;
  text-indent: -99999px;
  background: none;
  border: 1px solid #ffffff;
}
.curved-slider__dots ul li.slick-active button {
  background: #ffffff;
  border: none;
}
.curved-slider__dots .scroll-text {
  position: absolute;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3.68px;
  top: 60px;
  color: #ffffff;
  display: none;
}
@media screen and (min-width: 1024px) {
  .curved-slider__dots .scroll-text {
    display: block;
  }
}
.curved-slider__dots .scroll-text::before {
  content: "";
  width: 2px;
  height: 85px;
  background: #ffffff;
  position: absolute;
  top: 43px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media screen and (min-width: 1024px) {
  .curved-slider__dots .scroll-text::before {
    display: block;
  }
}
.curved-slider::after {
  content: "";
  width: 100vw;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background-image: url("../../assets/svg/arc.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media screen and (min-width: 445px) {
  .curved-slider::after {
    width: 1920px;
    height: 190px;
  }
}
@media screen and (min-width: 1920px) {
  .curved-slider::after {
    width: 100%;
    height: 250px;
  }
}
.curved-slider__img {
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.curved-slider__content {
  width: 100%;
  max-width: 1700px;
  padding: 0 30px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .curved-slider__content {
    padding: 0 100px;
  }
}
.curved-slider-content__left {
  flex: 1;
}
.curved-slider-content__right {
  margin-top: 50px;
  width: 165px;
  height: 170px;
  margin-left: 100px;
  display: none;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .curved-slider-content__right {
    display: block;
  }
}
.curved-slider__title {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .curved-slider__title {
    font-size: 55px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1366px) {
  .curved-slider__title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media screen and (min-width: 1440px) {
  .curved-slider__title {
    font-size: 67px;
    line-height: 75px;
  }
}
@media screen and (min-width: 1601px) {
  .curved-slider__title {
    font-size: 74px;
    line-height: 80px;
    letter-spacing: -0.5px;
  }
}
.curved-slider__text {
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 35px;
}
.curved-slider__text p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.curved-slider__project {
  float: right;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 35px;
}
.curved-slider__project span {
  position: relative;
}
.curved-slider__project span::before {
  width: 12px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  content: "";
  background: url("../../assets/svg/location-pin.svg") no-repeat;
  left: -20px;
  top: 5px;
}

.curved-header {
  width: 100%;
  max-width: 1920px;
  height: 610px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #212c55;
  padding: 0 50px;
}
@media screen and (min-width: 1024px) {
  .curved-header {
    height: 860px;
  }
}
.curved-header::after {
  content: "";
  width: 100vw;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background-image: url("../../assets/svg/arc.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media screen and (min-width: 445px) {
  .curved-header::after {
    width: 1920px;
    height: 190px;
  }
}
.curved-header--grey::after {
  background-image: url("../../assets/svg/arc-grey.svg");
  bottom: -4px;
  height: 180px;
}
.curved-header--dark-grey::after {
  background: url("../../assets/svg/arc-dark-grey.svg");
  bottom: -4px;
  height: 180px;
}
.curved-header__img {
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.curved-header__content {
  width: 100%;
  max-width: 1700px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .curved-header__content {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1440px) {
  .curved-header__content {
    padding: 0 100px;
  }
}
.curved-header__content .icon {
  width: 125px;
}
@media screen and (min-width: 1024px) {
  .curved-header__content .icon {
    width: 160px;
  }
}
.curved-header__content .btn {
  margin: 50px auto 0;
}
.curved-header__subtitle {
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .curved-header__subtitle {
    margin-bottom: 15px;
  }
}
.curved-header__title {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 45px;
}
@media screen and (min-width: 1024px) {
  .curved-header__title {
    font-size: 55px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1366px) {
  .curved-header__title {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 65px;
  }
}
@media screen and (min-width: 1440px) {
  .curved-header__title {
    font-size: 67px;
    line-height: 75px;
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 1601px) {
  .curved-header__title {
    font-size: 74px;
    line-height: 80px;
    letter-spacing: -0.5px;
    margin-bottom: 85px;
  }
}
.curved-header-content__icon {
  width: 125px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .curved-header-content__icon {
    width: 160px;
  }
}
.curved-header-content__icon--case-study {
  width: 100px;
}
.curved-header__icon {
  width: 125px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .curved-header__icon {
    width: 160px;
  }
}
.curved-header__location-icon {
  width: 12px;
  height: 16px;
  margin-right: 10px;
  position: relative;
  top: 46px;
  left: 6px;
}
.curved-header__location-icon svg {
  width: 12px;
  height: 16px;
  fill: #ffffff;
}
.curved-header__project {
  float: right;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 35px;
}

.page-template-template-service .curved-header__content img {
  width: 79px;
  height: 89px;
}
@media screen and (min-width: 768px) {
  .page-template-template-service .curved-header__content img {
    width: 161px;
    height: 180px;
  }
}

.page-template-template-about .curved-header__content img,
.page-template-template-get-a-quote .curved-header__content img,
.page-template-template-contact-us .curved-header__content img {
  width: 125px;
  height: 89px;
}
@media screen and (min-width: 768px) {
  .page-template-template-about .curved-header__content img,
.page-template-template-get-a-quote .curved-header__content img,
.page-template-template-contact-us .curved-header__content img {
    width: 200px;
    height: 145px;
  }
}

.single .curved-header-content__icon svg {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .single .curved-header-content__icon svg {
    width: 100px;
    height: 125px;
  }
}

.circle-img-text {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1385px;
  padding: 0 30px;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .circle-img-text {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1194px) {
  .circle-img-text {
    padding: 0 100px;
  }
}
.circle-img-text__content {
  flex: 1;
  max-width: 475px;
}
.circle-img-text__subtitle {
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3px;
  color: #212c55;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.circle-img-text__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 40px;
  color: #00a09a;
}
@media screen and (min-width: 1024px) {
  .circle-img-text__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.circle-img-text__title i, .circle-img-text__title em {
  color: #212c55;
}
.circle-img-text__text {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
  color: #4f545b;
}
.circle-img-text__image {
  width: 325px;
  height: 325px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}
@media screen and (min-width: 768px) {
  .circle-img-text__image {
    width: 500px;
    height: 500px;
  }
}
@media screen and (min-width: 1366px) {
  .circle-img-text__image {
    width: 640px;
    height: 640px;
  }
}
@media screen and (min-width: 768px) {
  .circle-img-text__image {
    margin-right: 30px;
  }
}
@media screen and (min-width: 1366px) {
  .circle-img-text__image {
    margin-right: 0;
  }
}
.circle-img-text__image img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.news-card {
  width: 100%;
  max-width: 475px;
  margin-bottom: 40px;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-card:first-of-type {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .news-card:first-of-type {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .news-card {
    margin-bottom: 100px;
  }
}
.news-card__image {
  width: 100%;
  height: 275px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 0 23px 0 #cbcdcf;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .news-card__image {
    height: 305px;
  }
}
.news-card__image:hover::after {
  opacity: 1;
}
.news-card__image:hover::before {
  width: 100%;
}
.news-card__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #212c55;
  opacity: 0.68;
  transition: all 0.6s ease;
  z-index: 1;
}
.news-card__image::after {
  content: "Read Post";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 25px;
  color: #fff;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__cats {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
  color: #4f545b;
}
.news-card__title {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
  color: #4f545b;
}

.projects-slider {
  padding: 0 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .projects-slider {
    padding: 0 0 210px 170px;
  }
}
.projects-slider__intro-title {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  color: #212c55;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .projects-slider__intro-title {
    font-size: 74px;
    line-height: 80px;
  }
}
.projects-slider__slider {
  zoom: 1;
  overflow: hidden;
}
.projects-slider__slider:before, .projects-slider__slider:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.projects-slider__slider:after {
  clear: both;
}
.projects-slider__item {
  width: 382px;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
  align-items: flex-start;
  float: left;
}
@media screen and (min-width: 1024px) {
  .projects-slider__item {
    height: 725px;
    width: 1115px;
    margin-right: 40px;
  }
}
.projects-slider__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.projects-slider-item__number {
  position: absolute;
  top: -5px;
  right: -5px;
  height: 165px;
  width: 233px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .projects-slider-item__number {
    height: 230px;
    width: 326px;
  }
}
.projects-slider-item__content {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  width: 100%;
  max-width: 690px;
  margin-top: auto;
}
@media screen and (min-width: 1024px) {
  .projects-slider-item__content {
    padding: 40px 60px;
  }
}
.projects-slider-item__service {
  color: #ffffff;
  margin-bottom: 10px;
}
.projects-slider-item__title {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 35px;
}
@media screen and (min-width: 1024px) {
  .projects-slider-item__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.projects-slider-item__location {
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
}
@media screen and (min-width: 1024px) {
  .projects-slider-item__location {
    font-size: 18px;
  }
}
.projects-slider-item__location span {
  margin-right: 10px;
  width: 12px;
}
.projects-slider-item__location span svg {
  width: 12px;
  height: 16px;
  fill: #ffffff;
}
.projects-slider__arrows {
  margin: 40px 0 80px;
  zoom: 1;
}
.projects-slider__arrows:before, .projects-slider__arrows:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.projects-slider__arrows:after {
  clear: both;
}
@media screen and (min-width: 1024px) {
  .projects-slider__arrows {
    margin: 40px 0;
  }
}
.projects-slider__arrows .slick-arrow {
  border: 1px solid #878CA3;
  border-radius: 48px;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  float: left;
}
.projects-slider__arrows .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.projects-slider__arrows .slick-arrow--prev {
  margin-right: 10px;
}
.projects-slider__arrows .slick-arrow svg {
  width: 17px;
  height: 13px;
}
.projects-slider .btn {
  position: absolute;
  left: 76%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 135px;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .projects-slider .btn {
    width: unset;
    left: 63%;
    bottom: 20%;
  }
}

.logo-slider {
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  border-top: 1px solid #cbcdcf;
  border-bottom: 1px solid #cbcdcf;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .logo-slider {
    padding: 105px 0;
  }
}
.logo-slider__title {
  text-align: center;
  margin-bottom: 55px;
}
.logo-slider__wrapper {
  width: 100%;
  display: block;
  zoom: 1;
}
.logo-slider__wrapper:before, .logo-slider__wrapper:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.logo-slider__wrapper:after {
  clear: both;
}
.logo-slider__item {
  width: 100%;
  max-width: 150px;
  height: 90px;
  float: left;
}
@media screen and (min-width: 1024px) {
  .logo-slider__item {
    margin: 0 130px;
    height: 150px;
  }
}
.logo-slider__item:focus {
  outline: 0;
}
.logo-slider__item img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 75px;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .logo-slider__item img {
    height: 150px;
    width: auto;
  }
}

.results {
  background: #212c55;
  width: 100%;
  padding: 85px 0 250px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .results {
    padding: 130px 0 350px;
  }
}
.results__subtitle {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: #ffffff;
}
.results__title {
  font-size: 30px;
  line-height: 35px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
}
@media screen and (min-width: 1024px) {
  .results__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.results__title span {
  color: #00a09a;
}
.results__img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.25;
}
.results .results-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .results .results-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: unset;
  }
}
.results__item {
  width: 300px;
  height: 300px;
  background: #f1f5f6;
  padding: 17px;
  border-radius: 100%;
  box-shadow: 0 0 14px 0 #cbcdcf;
  margin-bottom: 60px;
  opacity: 0;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .results__item {
    margin-bottom: 0;
  }
}
.results-item__inner {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 14px 0 #cbcdcf;
  position: relative;
  opacity: 0;
}
.results-item__inner .circle {
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 2;
}
.results-item__inner .circle__top {
  top: -5px;
  background: #8C93A9;
}
.results-item__inner .circle__bottom {
  bottom: -5px;
  background: #F0F2FA;
}
.results-item__inner .results-curve {
  position: absolute;
  right: 0;
  top: 0;
  width: 134px;
  height: inherit;
  stroke-dasharray: 419.4616699219;
  stroke-dashoffset: -419.4616699219;
}
.results-item__inner .results-curve__animation {
  -webkit-animation: dash 0.8s linear forwards;
          animation: dash 0.8s linear forwards;
}
@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.results-item__number {
  font-size: 74px;
  line-height: 80px;
  color: #878ca3;
  margin-bottom: 20px;
  opacity: 0;
  top: 100px;
  position: relative;
}
.results-item__text {
  font-size: 18px;
  line-height: 25px;
  color: #878ca3;
  margin-bottom: 0px;
  width: 100%;
  max-width: 170px;
  opacity: 0;
  top: 100px;
  position: relative;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-slider::before {
  content: "";
  position: absolute;
  background: url(../../assets/img/node-pattern-w.png) no-repeat;
  width: 375px;
  height: 412px;
  top: 0;
  left: 10%;
  z-index: 1;
}
.testimonial-slider .slick-list {
  padding: 0 !important;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider .slick-list {
    padding: 0 30px !important;
  }
}
.testimonial-slider__intro {
  width: 100%;
  max-width: 550px;
  padding: 0 55px;
  text-align: center;
  margin: 0 auto 25px;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider__intro {
    margin: 0 auto 80px;
    padding: 0 25px;
  }
}
.testimonial-slider-intro__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider-intro__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.testimonial-slider-intro__text {
  font-size: 16px;
  line-height: 25px;
  color: #4f545b;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider-intro__text {
    font-size: 18px;
    line-height: 15px;
  }
}
.testimonial-slider__arrows {
  width: 98%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}
.testimonial-slider__arrows .slick-arrow {
  background: #ffffff;
  border-radius: 65px;
  width: 65px;
  height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  float: left;
  box-shadow: 0 0 10px #d9d9d9;
  cursor: pointer;
}
.testimonial-slider__arrows .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.testimonial-slider__arrows .slick-arrow svg {
  width: 17px;
  height: 13px;
}
.testimonial-slider__dots {
  margin: 0 auto;
}
.testimonial-slider__dots .slick-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.testimonial-slider__dots .slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  border: 2px solid #00a09a;
  overflow: hidden;
  margin-right: 25px;
  transition: all 0.15s linear;
}
.testimonial-slider__dots .slick-dots li:last-child {
  margin-right: 0;
}
.testimonial-slider__dots .slick-dots li.slick-active {
  background: #00a09a;
}
.testimonial-slider__dots .slick-dots li button {
  background: transparent;
  text-indent: -99999px;
}
.testimonial-slider__slider {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto 40px;
  zoom: 1;
  position: relative;
  overflow: hidden;
  padding: 20px 0px;
  z-index: 2;
}
.testimonial-slider__slider:before, .testimonial-slider__slider:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.testimonial-slider__slider:after {
  clear: both;
}
.testimonial-slider__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: #ffffff;
  box-shadow: 0 0 23px 0 #cbcdcf;
  border-radius: 15px;
  overflow: hidden;
  float: left;
  margin: 0 10px;
  width: 325px;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider__item {
    width: unset;
    margin: 0 105px;
  }
}
.testimonial-slider__img {
  width: 410px;
  position: relative;
  display: none;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider__img {
    display: block;
  }
}
.testimonial-slider__img::after {
  content: "";
  width: 65px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../../assets/svg/testimonial-img-curve.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.testimonial-slider__img img {
  -o-object-position: right center;
     object-position: right center;
}
.testimonial-slider__content {
  flex: 1;
  padding: 90px 40px 50px 40px;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider__content {
    padding: 125px 90px 55px 75px;
  }
}
.testimonial-slider__content .text {
  color: #4f545b;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 25px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .testimonial-slider__content .text {
    font-size: 25px;
  }
}
.testimonial-slider__content .text::before {
  content: '"';
  position: absolute;
  top: -55px;
  left: 0;
  font-size: 74px;
  line-height: 80px;
  letter-spacing: -0.5px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #00a09a;
}
.testimonial-slider__content .from {
  color: #212c55;
}

.single .testimonial-slider::before,
.home .testimonial-slider::before {
  content: none;
}

.page-template-template-service .testimonial-slider {
  background-color: #f1f5f6 !important;
  padding-bottom: 100px;
}
.page-template-template-service .testimonial-slider::before {
  content: none;
}
@media screen and (max-width: 1024px) {
  .page-template-template-service .testimonial-slider {
    width: 100%;
    padding: 100px 0 160px;
    background-image: url(../../assets/img/two-col-bullets-bg.png);
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: top center;
    margin: -50px auto 0;
    position: relative;
  }
  .page-template-template-service .testimonial-slider::before {
    content: "";
    width: 100vw;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-image: url(../../assets/svg/arc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    transform: scale(-1);
  }
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .testimonial-slider::before {
    content: "";
    background: url(../../assets/img/node-pattern-w.png) no-repeat;
    z-index: 2;
  }
}

.btn {
  height: 40px;
  border-radius: 65px;
  color: #ffffff;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 10px 25px 10px;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  background: transparent;
}
@media screen and (min-width: 1024px) {
  .btn {
    height: 65px;
    font-size: 18px;
    line-height: 25px;
    padding: 26px 44px;
  }
}
.btn--nav {
  height: 35px;
}
@media screen and (min-width: 1024px) {
  .btn--nav {
    height: 65px;
  }
}
.btn--primary {
  background: #00a09a;
  color: #ffffff;
}
.btn--primary:hover {
  transition: all 0.3s linear;
  background: #212c55;
}
.btn--light {
  background: #ffffff;
  color: #00a09a;
}
.btn--icon {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  .btn--icon {
    padding: 13px 20px 10px;
  }
}
.btn--icon .btn__icon {
  margin-right: 12px;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .btn--icon .btn__icon {
    margin-top: 6px;
  }
}
.btn--icon .btn__icon svg {
  width: 15px;
  height: 14.5px;
}
@media screen and (min-width: 1024px) {
  .btn--icon .btn__icon svg {
    width: 29px;
    height: 29px;
  }
}
.btn--icon .btn__text {
  position: relative;
  display: block;
}
.btn--icon .btn__text--nav {
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 1024px) {
  .btn--icon .btn__text--nav {
    font-size: 18px;
    line-height: 25px;
    top: -4px;
  }
}
.btn--map-filter {
  border: 1px solid #878ca3;
  border-radius: 30px;
  height: 30px;
  color: #878ca3;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  margin-right: 10px;
}
.btn--map-filter.btn--active {
  background: #00a09a;
  color: #ffffff;
  border-color: #00a09a;
}

.work-with-us {
  background-color: #00a09a;
}
.work-with-us__background {
  padding: 60px 0 60px;
  background-image: url("../../assets/svg/lines-white-clear.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  margin: auto;
  max-width: 1700px;
}
@media screen and (min-width: 1024px) {
  .work-with-us__background {
    background-size: 100% auto;
    padding: 110px 0 120px;
  }
}
.work-with-us__container {
  width: 100%;
  max-width: 1290px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .work-with-us__container {
    padding: 0 50px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.work-with-us__text {
  width: 100%;
  max-width: 595px;
}
.work-with-us__text .title {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.75px;
  color: #ffffff;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .work-with-us__text .title {
    font-size: 43px;
    line-height: 45px;
    letter-spacing: -1px;
    margin-bottom: 0;
  }
}
.footer {
  width: 100%;
  padding: 80px 30px;
  background: #212c55;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 120px 0px 65px 0px;
  }
}
.footer__section-title {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 3px;
  color: #ffffff;
  cursor: pointer;
  position: relative;
}
.footer__section-title--follow-us {
  color: #00a09a;
}
@media screen and (min-width: 1024px) {
  .footer__section-title {
    color: #00a09a;
    margin-bottom: 25px;
    font-family: "fieldwork", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 28px;
    cursor: pointer;
  }
}
.footer__section-title .title-mob-arrow {
  position: absolute;
  top: 0;
  right: 0;
}
.footer__section-title .title-mob-arrow svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__section-title .title-mob-arrow {
    display: none;
  }
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 35px;
}
@media screen and (min-width: 1024px) {
  .footer__top {
    margin-bottom: 70px;
    align-items: flex-end;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer__top .newsletter-btn {
  cursor: pointer;
  color: #212c55;
}
@media screen and (min-width: 1024px) {
  .footer__top .newsletter-btn {
    margin-left: 20px;
  }
}
.footer__top .newsletter-text {
  font-size: 18px;
  line-height: 30px;
  margin-right: 20px;
  color: white;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .footer__top .newsletter-text {
    flex-wrap: nowrap;
    text-align: right;
  }
}
.footer__top .newsletter-text button {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__top .newsletter-text button {
    margin-top: 0;
  }
}
.footer__logo {
  width: 100%;
  height: 75px;
  display: block;
  margin-bottom: 40px;
  grid-column: 1/4;
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    width: 290px;
    height: 75px;
    margin: 0;
    grid-column: unset;
  }
}
.footer__logo svg {
  width: 320px;
  height: auto;
}
.footer__logo svg .logo-text {
  fill: #ffffff;
}
.footer__social {
  display: flex;
  flex-direction: column;
  order: 3;
}
@media screen and (min-width: 1024px) {
  .footer__social {
    margin-right: 50px;
    order: unset;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
}
.footer__social .footer__section-title {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 28px;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .footer__social .footer__section-title {
    font-size: 18px;
    line-height: 30px;
  }
}
.footer__social a {
  margin-left: 20px;
  position: relative;
}
.footer__social a:first-of-type {
  margin-left: 0px;
}
@media screen and (min-width: 1024px) {
  .footer__social a:first-of-type {
    margin-left: 20px;
  }
}
.footer__social a svg {
  fill: #ffffff;
  cursor: pointer;
}
.footer__social a svg:nth-of-type(1) {
  width: 20px;
  height: 19px;
}
.footer__social a svg:nth-of-type(2) {
  width: 12px;
  height: 22px;
}
.footer__social div {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer__bottom {
    flex-direction: row;
    margin-bottom: 110px;
  }
}
.footer__bottom .left {
  width: 100%;
  max-width: 830px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .footer__bottom .left {
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: unset;
    margin-right: 15px;
  }
}
.footer__bottom .right {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__nav {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.footer__nav ul {
  display: none;
  padding-top: 15px;
}
@media screen and (min-width: 1024px) {
  .footer__nav ul {
    display: block;
    padding-top: 0;
  }
}
.footer__nav ul li {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
  color: #ffffff;
  transition: all 0.25s linear;
}
.footer__nav ul li.grey {
  color: #d9d9d9;
}
.footer__nav ul li a {
  color: #ffffff;
  transition: all 0.25s linear;
}
.footer__nav ul li a:hover {
  color: #dddb00;
}
@media screen and (min-width: 1024px) {
  .footer__nav .footer__section-title {
    text-transform: uppercase;
  }
}
.footer__logos {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 12px;
  gap: 10px;
}
.footer__logos svg {
  fill: #ffffff;
}
.footer-logos__city {
  width: 85px;
  height: 58px;
}
.footer-logos__napit {
  width: 55px;
  height: 58px;
}
.footer-logos__chas {
  width: 100px;
  height: 62px;
}
.footer-logos__jtl {
  width: 85px;
  height: 42px;
}
.footer-logos__avetta {
  width: 85px;
}
.footer__copy {
  padding: 55px 0 25px;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: 30px;
}
@media screen and (min-width: 1024px) {
  .footer__copy {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.footer__copy a {
  color: #ffffff;
}
.footer__copy > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer__copy > .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer__copy .copy {
  order: 1;
}
.footer__copy .back {
  color: #00a09a;
  line-height: 30px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  order: 3;
  margin-top: 45px;
}
@media screen and (min-width: 1024px) {
  .footer__copy .back {
    order: 2;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer__copy .back::before {
  width: 1px;
  height: 85px;
  background: #00a09a;
  position: absolute;
  top: -97px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer__copy .back::before {
    display: block;
    content: "";
  }
}
.footer__copy .back a {
  color: #00a09a;
}
.footer__copy .made {
  order: 2;
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .footer__copy .made {
    order: 3;
    margin-top: 0;
    text-align: right;
  }
}

.home-intro {
  position: relative;
  padding: 45px 0 145px;
}
@media screen and (min-width: 1024px) {
  .home-intro {
    padding: 110px 0 345px;
  }
}
.home-intro__electric-lines {
  width: 100%;
  max-width: 1700px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
}
@media screen and (min-width: 1024px) {
  .home-intro__electric-lines {
    padding: 0 100px;
    top: -40px;
  }
}
.home-intro > .flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 200;
  width: 100%;
  max-width: 1385px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .home-intro > .flex {
    padding: 0 100px;
    flex-direction: row;
  }
}
.home-intro__content {
  flex: 1;
  max-width: 455px;
}
.home-intro__subtitle {
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3px;
  color: #212c55;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.home-intro__btn {
  margin-bottom: 45px;
}
@media screen and (min-width: 1024px) {
  .home-intro__btn {
    margin-bottom: 0;
  }
}
.home-intro__title {
  margin-bottom: 30px;
  color: #00a09a;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
}
@media screen and (min-width: 1024px) {
  .home-intro__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.home-intro__title i,
.home-intro__title em {
  color: #212c55;
}
.home-intro__text {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
  color: #4f545b;
}
@media screen and (min-width: 1024px) {
  .home-intro__text {
    font-size: 18px;
  }
}
.home-intro__text p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.home-intro__text a {
  color: #00a09a;
}
.home-intro__image {
  width: 324px;
  height: 324px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}
@media screen and (min-width: 1024px) {
  .home-intro__image {
    width: 640px;
    height: 640px;
  }
}
.home-intro__image img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.solutions {
  display: none;
}
@media screen and (min-width: 1440px) {
  .solutions {
    display: block;
    padding-bottom: 220px;
  }
}
.solutions--mobile {
  display: block;
}
@media screen and (min-width: 1440px) {
  .solutions--mobile {
    display: none;
  }
}
.solutions__header {
  position: relative;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .solutions__header {
    flex-direction: row;
  }
}
.solutions__header-tiny {
  color: #212c55;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3.5px;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .solutions__header-tiny {
    padding-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .solutions__header-tiny {
    padding-top: 0;
    padding-left: 30px;
  }
}
.solutions__header-left {
  display: flex;
  position: relative;
}
.solutions__header-left svg {
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 515px;
  left: -30px;
}
@media screen and (min-width: 1024px) {
  .solutions__header-left svg {
    width: 450px;
    height: 575px;
  }
}
.solutions__header-right {
  z-index: 1;
}
.solutions__header-title {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  color: #212c55;
}
@media screen and (min-width: 1024px) {
  .solutions__header-title {
    font-size: 74px;
    line-height: 80px;
    margin-bottom: 50px;
  }
}
.solutions__header-subtitle {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.5px;
  color: #212c55;
}
@media screen and (min-width: 1024px) {
  .solutions__header-subtitle {
    font-size: 43px;
    line-height: 45px;
    margin-bottom: 110px;
  }
}
.solutions__header--mobile {
  padding-bottom: 60px;
}
.solutions__main {
  overflow: hidden;
}
.solutions__main .flex {
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (min-width: 1440px) {
  .solutions__main .flex {
    position: relative;
  }
}
.solutions__main-item {
  width: calc(25% - 15px);
  height: 600px;
  position: relative;
}
.solutions__main-item:nth-of-type(even) {
  margin-top: 35px;
}
.solutions__main-item .icon {
  position: absolute;
  bottom: -20px;
  right: 15px;
  width: 80px;
  height: 90px;
  z-index: 2;
}
@media screen and (min-width: 1440px) {
  .solutions__main-item .icon {
    bottom: 10px;
  }
}
.solutions__main-item .image {
  display: block;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 15px;
}
.solutions__main-item .content {
  padding: 25px 20px 0 20px;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 345px;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .solutions__main-item .content {
    min-height: 400px;
  }
}
.solutions__main-item .content--mobile {
  max-width: 320px;
}
.solutions__main-item .content .title {
  font-size: 25px;
  line-height: 30px;
  color: #212c55;
  margin-bottom: 30px;
}
.solutions__main-item .content .description {
  font-size: 16px;
  line-height: 25px;
  color: #4f545b;
  margin-bottom: 50px;
}
@media screen and (min-width: 1440px) {
  .solutions__main-item .content .description {
    font-size: 18px;
  }
}
.solutions__main-item--mobile {
  width: 100%;
  height: 520px;
  margin: 0 15px;
}
.solutions__main-item--mobile:nth-of-type(2) {
  margin-top: 0;
}
.solutions__arrows {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0 90px;
}
.solutions__arrows .slick-arrow {
  border: 1px solid #878ca3;
  border-radius: 48px;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.solutions__arrows .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.solutions__arrows .slick-arrow--prev {
  margin-right: 10px;
}
.solutions__arrows .slick-arrow svg {
  width: 17px;
  height: 13px;
}

* {
  min-width: 0;
  min-height: 0;
}

.latest-news {
  padding: 235px 0 40px;
}
@media screen and (min-width: 1024px) {
  .latest-news {
    padding: 160px 0 80px;
  }
}
.latest-news .latest-news-bg-pattern {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .latest-news .latest-news-bg-pattern {
    width: 375px;
    height: 385px;
  }
}
.latest-news__header {
  position: relative;
  /* &::before {
  	content: '';
  	position: absolute;
  	background: url(../../assets/img/node-pattern-mob.png);
  	width: 268px;
  	height: 294px;
  	top: -170px;
  	right: 5%;
  	z-index: -1;

  	@include mobilefirst($bp-768) {
  		right: 60%;
  	}

  	@include mobilefirst($bp-1024) {
  		background: url(../../assets/img/node-pattern.png);
  		width: 375px;
  		height: 412px;
  		top: -40px;
  		right: 80%;
  	}
  } */
}
.latest-news__header a {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
@media screen and (min-width: 1024px) {
  .latest-news__header a {
    display: flex;
  }
}
.latest-news__subtitle {
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3px;
  color: #212c55;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.latest-news__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 60px;
  color: #00a09a;
}
@media screen and (min-width: 1024px) {
  .latest-news__title {
    font-size: 43px;
    line-height: 45px;
    margin-bottom: 90px;
  }
}
.latest-news__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .latest-news__content {
    flex-direction: row;
  }
}

.home .testimonial-slider {
  background: url("../../assets/img/two-col-bullets-bg.png") no-repeat;
  background-position: top center;
  background-size: contain;
  margin-top: -180px;
  padding: 90px 0;
}
@media screen and (min-width: 1024px) {
  .home .testimonial-slider {
    background-size: cover;
    padding: 180px 0 165px;
  }
}
.home .testimonial-slider .testimonial-slider__pattern {
  display: none;
}

.about__intro {
  background: #f1f5f6;
  position: relative;
  padding: 50px 0 120px;
}
@media screen and (min-width: 1024px) {
  .about__intro {
    padding: 125px 0 120px;
  }
}
.about-intro__lines {
  width: 100%;
  max-width: 1500px;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .about-intro__lines {
    top: -40px;
  }
}
.about-intro__flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 40px);
  max-width: 1190px;
  margin: 0 30px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .about-intro__flex {
    flex-direction: row;
    margin: 0 auto;
  }
}
.about-intro__left {
  width: 100%;
  max-width: 570px;
}
.about-intro__subtitle {
  color: #212c55;
  margin-bottom: 25px;
}
.about-intro__title {
  color: #00a09a;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
}
@media screen and (min-width: 1024px) {
  .about-intro__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.about-intro__text {
  width: 100%;
  max-width: 535px;
  color: #4f545b;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .about-intro__text {
    margin-top: 50px;
    margin-left: 100px;
  }
}
.about-intro__text p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .about-intro__text p {
    font-size: 18px;
  }
}
.about .circle-img-text {
  padding: 60px 30px 120px;
  max-width: 1190px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text {
    padding: 135px 0 160px;
  }
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text {
    flex-direction: row;
  }
}
.about .circle-img-text__image {
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text__image {
    margin-bottom: 0;
  }
}
.about .circle-img-text__text {
  font-size: 16px;
  line-height: 25px;
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text__text {
    font-size: 18px;
  }
}
.about .circle-img-text__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text__title {
    font-size: 43px;
    line-height: 45px;
    margin-bottom: 50px;
  }
}
.about .circle-img-text .logos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
.about .circle-img-text .logos__city {
  width: 99px;
  height: 69px;
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text .logos__city {
    width: 147px;
    height: 95px;
  }
}
.about .circle-img-text .logos__napit {
  width: 62px;
  height: 69px;
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text .logos__napit {
    width: 93px;
    height: 95px;
  }
}
.about .circle-img-text .logos__chas {
  width: 99px;
  height: 69px;
}
@media screen and (min-width: 1024px) {
  .about .circle-img-text .logos__chas {
    width: 137px;
    height: 95px;
  }
}
.about .circle-img-text .logos svg {
  fill: #212c55 !important;
  width: 100%;
}
.about .circle-img-text .logos svg path {
  fill: #212c55 !important;
}
.about .team {
  padding: 60px 30px 120px;
}
@media screen and (min-width: 1024px) {
  .about .team {
    padding: 175px 0 150px;
  }
}
.about .team__intro {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 50px;
}
@media screen and (min-width: 1024px) {
  .about .team__intro {
    margin: 0 auto 100px;
    width: calc(100% - 40px);
  }
}
.about .team__intro h2,
.about .team__intro h3,
.about .team__intro h4,
.about .team__intro h5,
.about .team__intro h6 {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  color: #212c55;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .about .team__intro h2,
.about .team__intro h3,
.about .team__intro h4,
.about .team__intro h5,
.about .team__intro h6 {
    font-size: 74px;
    line-height: 80px;
  }
}
.about .team__intro h2 em,
.about .team__intro h3 em,
.about .team__intro h4 em,
.about .team__intro h5 em,
.about .team__intro h6 em {
  color: #00a09a;
}
.about .team__intro p {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  color: #212c55;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .about .team__intro p {
    font-size: 43px;
    line-height: 45px;
  }
}
.about .team-flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.about .team__item {
  margin-bottom: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about .team__item {
    width: calc(50% - 15px);
  }
}
@media screen and (min-width: 1024px) {
  .about .team__item {
    width: unset;
  }
}
.about .team__item:nth-of-type(3n + 1) .team__placeholder {
  background-color: #36a9e0;
}
.about .team__item:nth-of-type(3n + 2) .team__placeholder {
  background-color: #00a09a;
}
.about .team__item:nth-of-type(3n + 3) .team__placeholder {
  background-color: #212c55;
}
.about .team__img {
  width: 100%;
  max-width: 470px;
  box-shadow: 0 0 23px 0 #cbcdcf;
  overflow: hidden;
  border-radius: 15px;
}
.about .team__img.team__placeholder {
  height: 300px;
  width: calc(100vw - 60px);
}
@media screen and (min-width: 768px) {
  .about .team__img.team__placeholder {
    width: calc(50vw - 60px);
  }
}
.about .team__content {
  background: #ffffff;
  padding: 30px 65px 30px 35px;
  color: #212c55;
  position: absolute;
  bottom: -50px;
  left: -20px;
}
.about .team__name {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 5px;
}
.about .team__position {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 5px;
}
.about .team__email {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 0px;
}
.about .team__email a {
  color: #212c55;
}
.about .team__linkedin {
  width: 20px;
  position: absolute;
  top: 35px;
  right: 35px;
}
.about .team__linkedin svg {
  fill: #36a9e0;
}
.about .careers {
  position: relative;
  padding: 0px 0 120px;
}
@media screen and (min-width: 1024px) {
  .about .careers {
    padding: 0px 0 240px;
  }
}
.about .careers > .flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 200;
  width: 100%;
  max-width: 1385px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .about .careers > .flex {
    flex-direction: row;
    padding: 0 100px;
  }
}
.about .careers__content {
  flex: 1;
  max-width: 455px;
}
.about .careers__subtitle {
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3px;
  color: #212c55;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.about .careers__text h2,
.about .careers__text h3,
.about .careers__text h4,
.about .careers__text h5,
.about .careers__text h6 {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  color: #212c55;
  margin-bottom: 30px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .about .careers__text h2,
.about .careers__text h3,
.about .careers__text h4,
.about .careers__text h5,
.about .careers__text h6 {
    font-size: 43px;
    line-height: 45px;
  }
}
.about .careers__text h2 i,
.about .careers__text h2 em,
.about .careers__text h3 i,
.about .careers__text h3 em,
.about .careers__text h4 i,
.about .careers__text h4 em,
.about .careers__text h5 i,
.about .careers__text h5 em,
.about .careers__text h6 i,
.about .careers__text h6 em {
  color: #00a09a;
}
.about .careers__text p,
.about .careers__text li {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
  color: #4f545b;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .about .careers__text p,
.about .careers__text li {
    font-size: 18px;
  }
}
.about .careers__image {
  width: 325px;
  height: 325px;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .about .careers__image {
    width: 640px;
    height: 640px;
    margin-top: 0;
  }
}
.about .careers__image img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.page-template-template-about .curved-header {
  z-index: 1;
}

.page-template-template-service .curved-header {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .curved-header {
    margin-bottom: 95px;
  }
}
.page-template-template-service .service {
  position: relative;
}
.page-template-template-service .service__electric-lines {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: -110px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .service__electric-lines {
    display: none;
  }
}
.page-template-template-service .service__electric-lines svg {
  height: 220px;
  width: 100%;
}
.page-template-template-service .service .circle-img-text {
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .service .circle-img-text {
    flex-direction: row;
  }
}
.page-template-template-service .service .circle-img-text__image {
  order: 2;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .service .circle-img-text__image {
    order: 1;
  }
}
.page-template-template-service .service .circle-img-text__content {
  order: 1;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .service .circle-img-text__content {
    order: 2;
  }
}
.page-template-template-service .service .circle-img-text__text {
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .service .circle-img-text__text {
    margin-bottom: 20px;
  }
}
.page-template-template-service .two-col-bullets {
  width: 100%;
  padding: 100px 0 160px;
  background: #ffffff url("../../assets/img/two-col-bullets-bg.png") no-repeat;
  background-size: cover !important;
  background-position: top center;
  margin: -50px auto 0;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .two-col-bullets {
    padding: 245px 0 175px;
  }
}
.page-template-template-service .two-col-bullets > .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .two-col-bullets > .container {
    flex-direction: row;
  }
}
.page-template-template-service .two-col-bullets__left {
  width: 100%;
  max-width: 635px;
}
.page-template-template-service .two-col-bullets__subtile {
  margin-bottom: 25px;
  color: #212c55;
}
.page-template-template-service .two-col-bullets__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 40px;
  color: #00a09a;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .two-col-bullets__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.page-template-template-service .two-col-bullets__text {
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
}
.page-template-template-service .two-col-bullets__text p {
  margin-bottom: 15px;
}
.page-template-template-service .two-col-bullets__right {
  width: 100%;
  max-width: 455px;
  margin-top: 35px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .two-col-bullets__right {
    margin-left: 50px;
  }
}
.page-template-template-service .two-col-bullets__list li {
  font-size: 25px;
  line-height: 30px;
  color: #212c55;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}
.page-template-template-service .two-col-bullets__list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../../assets/svg/bullet.svg");
  position: absolute;
  left: 0;
  top: 6px;
}
.page-template-template-service .service-wrapper {
  position: relative;
}
.page-template-template-service .service-wrapper .service-bg-pattern {
  position: absolute;
  z-index: 1;
  display: none;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .service-wrapper .service-bg-pattern {
    top: 13%;
    right: 39%;
    width: 375px;
    height: 385px;
    display: block;
  }
}
.page-template-template-service .what-we-offer {
  padding: 60px 0 160px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer {
    padding: 150px 0 195px;
  }
}
.page-template-template-service .what-we-offer__intro {
  margin-bottom: 40px;
  width: 100%;
  max-width: 730px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__intro {
    margin-bottom: 100px;
  }
}
.page-template-template-service .what-we-offer-intro__text {
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
  margin-bottom: 20px;
}
.page-template-template-service .what-we-offer-intro__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  color: #212c55;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer-intro__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.page-template-template-service .what-we-offer__card-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card-wrapper {
    justify-content: space-between;
  }
}
.page-template-template-service .what-we-offer__card {
  width: 100%;
  max-width: 475px;
  min-height: 300px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 20px 0 rgba(230, 229, 229, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  margin: 0 0 35px 0;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card {
    min-height: 400px;
  }
}
.page-template-template-service .what-we-offer__card:nth-child(1) .card-header svg ellipse, .page-template-template-service .what-we-offer__card:nth-child(5) .card-header svg ellipse {
  fill: #00a09a;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card:nth-child(2), .page-template-template-service .what-we-offer__card:nth-child(6) {
    margin-top: 135px;
  }
}
.page-template-template-service .what-we-offer__card:nth-child(2) .card-header svg ellipse, .page-template-template-service .what-we-offer__card:nth-child(6) .card-header svg ellipse {
  fill: #2fab66;
}
.page-template-template-service .what-we-offer__card:nth-child(3) .card-header svg ellipse, .page-template-template-service .what-we-offer__card:nth-child(7) .card-header svg ellipse {
  fill: #94c01f;
}
.page-template-template-service .what-we-offer__card:nth-child(4), .page-template-template-service .what-we-offer__card:nth-child(8) {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card:nth-child(4), .page-template-template-service .what-we-offer__card:nth-child(8) {
    margin-top: 135px;
  }
}
.page-template-template-service .what-we-offer__card:nth-child(4) .card-header svg ellipse, .page-template-template-service .what-we-offer__card:nth-child(8) .card-header svg ellipse {
  fill: #dddb00;
}
.page-template-template-service .what-we-offer__card .card-header {
  width: 150%;
  height: 115px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card .card-header {
    height: 165px;
  }
}
.page-template-template-service .what-we-offer__card .card-header .oval {
  width: 150%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.page-template-template-service .what-we-offer__card .card-header .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: auto;
  height: 60px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card .card-header .number {
    height: 72px;
  }
}
.page-template-template-service .what-we-offer__card .card-content {
  padding: 20px 35px 35px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card .card-content {
    padding: 75px 50px;
  }
}
.page-template-template-service .what-we-offer__card .card-title {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #212c55;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card .card-title {
    margin-bottom: 25px;
  }
}
.page-template-template-service .what-we-offer__card .card-text {
  font-size: 16px;
  line-height: 25px;
  color: #4f545b;
}
.page-template-template-service .what-we-offer__card .card-text a {
  color: #00a09a;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer__card .card-text {
    font-size: 18px;
  }
}
.page-template-template-service .what-we-offer::before {
  content: "";
  background: url(../../assets/img/node-pattern.png) no-repeat;
  position: absolute;
  width: 267px;
  height: 294px;
  top: 82%;
  z-index: 0;
  left: 45px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .what-we-offer::before {
    content: none;
  }
}
.page-template-template-service .why-choose__intro {
  width: 100%;
  max-width: 500px;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose__intro {
    margin-bottom: 100px;
  }
}
.page-template-template-service .why-choose-intro__subtitle {
  color: #212c55;
  margin-bottom: 20px;
}
.page-template-template-service .why-choose-intro__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  color: #00a09a;
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose-intro__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.page-template-template-service .why-choose-intro__text {
  font-size: 16px;
  line-height: 25px;
  color: #4f545b;
}
.page-template-template-service .why-choose-intro__text p {
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose-intro__text {
    font-size: 18px;
  }
}
.page-template-template-service .why-choose__circle {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 125px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose__circle {
    width: 725px;
    height: 725px;
    border-radius: 100%;
    border: 1px solid #d9d9d9;
    margin-bottom: 240px;
  }
}
.page-template-template-service .why-choose-circle__text {
  display: none;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose-circle__text {
    display: block;
  }
}
.page-template-template-service .why-choose-circle__text p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 74px;
  line-height: 80px;
  letter-spacing: -0.5px;
  color: #212c55;
  text-align: center;
}
.page-template-template-service .why-choose-circle__text p i,
.page-template-template-service .why-choose-circle__text p em {
  color: #00a09a;
}
.page-template-template-service .why-choose-circle__item {
  padding: 25px 35px;
  width: 400px;
  text-align: center;
  z-index: 1;
}
.page-template-template-service .why-choose-circle__item svg {
  height: 85px;
  margin: 0 auto 25px;
  background: #ffffff;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose-circle__item--1 {
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-template-template-service .why-choose-circle__item--1 svg {
  height: 125px;
  border: 20px solid #ffffff;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose-circle__item--2 {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    z-index: 0;
  }
}
.page-template-template-service .why-choose-circle__item--2 svg {
  height: 76px;
  width: 101px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose-circle__item--3 {
    position: absolute;
    bottom: -212px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-template-template-service .why-choose-circle__item--3 svg {
  height: 125px;
  border: 20px solid #ffffff;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .why-choose-circle__item--4 {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    background: #ffffff;
    z-index: 0;
  }
}
.page-template-template-service .why-choose-circle__item--4 svg {
  height: 71px;
  width: 89px;
}
.page-template-template-service .why-choose-circle-item__title {
  font-size: 25px;
  line-height: 30px;
  color: #212c55;
  margin-bottom: 20px;
}
.page-template-template-service .why-choose-circle-item__text {
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.page-template-template-service .projects-slider {
  position: relative;
  margin-bottom: 100px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-service .projects-slider {
    margin: 425px 0 0;
    background: #f1f5f6;
  }
}
.page-template-template-service .projects-slider::before {
  content: "";
  width: 1920px;
  height: 450px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../../assets/svg/arc-flip.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.blog .header {
  background: #ffffff;
}
.blog .header .header__services-nav ul li a {
  color: #4f545b;
}
.blog .header .header__logo svg .logo-text {
  fill: #212c55;
}

.blog-directory-header {
  background: #f1f5f6;
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 70px;
}
@media screen and (min-width: 1024px) {
  .blog-directory-header {
    height: 700px;
    margin-bottom: 0;
  }
}
.blog-directory-header::after {
  content: "";
  width: 1920px;
  height: 190px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background-image: url("../../assets/svg/arc.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.blog-directory-header__text {
  width: 100%;
  max-width: 1600px;
  padding: 0 50px;
  margin: 0 auto;
  display: block;
}
.blog-directory-header__text .title {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -0.5px;
  max-width: 880px;
  color: #212c55;
}
@media screen and (min-width: 1024px) {
  .blog-directory-header__text .title {
    font-size: 74px;
    line-height: 80px;
  }
}

.blog-directory {
  width: 100%;
  max-width: 1295px;
  padding: 0 50px;
  margin: -165px auto 40px;
  position: relative;
  z-index: 50;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .blog-directory {
    justify-content: space-between;
  }
}

.archive-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 140px;
}

.blog-header {
  width: 100%;
  height: 880px;
  background: #212c55 url("../../assets/img/blog-header-bg.png") no-repeat;
  background-size: cover;
  background-position: top left -7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 15px;
}
@media screen and (min-width: 1024px) {
  .blog-header {
    padding: 100px 100px;
  }
}
.blog-header__content {
  width: 100%;
  max-width: 1160px;
  text-align: center;
}
.blog-header-content__icon {
  width: 90px;
  margin: 0 auto 65px;
  display: block;
}
.blog-header-content__icon svg {
  width: 100%;
}
.blog-header-content__date {
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.blog-header-content__title {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 1024px) {
  .blog-header-content__title {
    font-size: 74px;
    line-height: 80px;
  }
}

.blog-content__image {
  width: 100%;
  max-width: 865px;
  margin: -70px auto 0;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  padding: 0 30px;
}
@media screen and (min-width: 1024px) {
  .blog-content__image {
    padding: 0;
  }
}
.blog-content__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  height: 567px;
}
.blog-content__image .back-btn {
  margin-top: 20px;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 3.5px;
  color: #212c55;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.blog-content__image .back-btn span {
  margin-right: 15px;
  position: relative;
  top: 5px;
}
.blog-content__image .back-btn span svg {
  transform: rotate(90deg);
  width: 20px;
  height: 20px;
}
.blog-content__text {
  width: 100%;
  max-width: 970px;
  padding: 80px 50px 250px;
  margin: 0 auto;
  position: relative;
}
.blog-content__text .social-share {
  position: absolute;
  left: 50px;
  top: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .blog-content__text .social-share {
    top: 85%;
  }
}
@media screen and (min-width: 1024px) {
  .blog-content__text .social-share {
    position: absolute;
    left: -10vw;
    top: 90px;
    display: block;
  }
}
.blog-content__text .social-share .subtitle {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 3px;
  color: #212c55;
  margin-bottom: 55px;
  text-transform: uppercase;
  text-align: center;
  margin-right: 15px;
}
@media screen and (min-width: 1024px) {
  .blog-content__text .social-share .subtitle {
    margin-right: 0;
  }
}
.blog-content__text .social-share__icon {
  width: 45px;
  height: 45px;
  border-radius: 45px;
  background: #00a09a;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
@media screen and (min-width: 1024px) {
  .blog-content__text .social-share__icon {
    margin-right: 0;
    width: 65px;
    height: 65px;
    border-radius: 65px;
  }
}
.blog-content__text .social-share__icon svg {
  fill: #ffffff;
}
.blog-content__text.wysiwyg h2,
.blog-content__text.wysiwyg h3,
.blog-content__text.wysiwyg h4,
.blog-content__text.wysiwyg h5,
.blog-content__text.wysiwyg ul,
.blog-content__text.wysiwyg ol,
.blog-content__text.wysiwyg blockquote {
  margin-bottom: 50px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.blog-content__text.wysiwyg p a {
  color: #00a09a;
}
.blog-content__text.wysiwyg h2,
.blog-content__text.wysiwyg h3,
.blog-content__text.wysiwyg h4,
.blog-content__text.wysiwyg h5 {
  color: #00a09a;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.blog-content__text.wysiwyg h2 {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
}
@media screen and (min-width: 1024px) {
  .blog-content__text.wysiwyg h2 {
    font-size: 43px;
    line-height: 45px;
  }
}
.blog-content__text.wysiwyg h3 {
  font-size: 30px;
  line-height: 35px;
}
.blog-content__text.wysiwyg h4 {
  font-size: 24px;
  line-height: 28px;
}
.blog-content__text.wysiwyg h5 {
  font-size: 20px;
  line-height: 24px;
}
.blog-content__text.wysiwyg p,
.blog-content__text.wysiwyg ul {
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.blog-content__text.wysiwyg p b,
.blog-content__text.wysiwyg p strong,
.blog-content__text.wysiwyg ul b,
.blog-content__text.wysiwyg ul strong {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.blog-content__text.wysiwyg ul {
  list-style: disc;
  margin-top: 50px;
}
.blog-content__text.wysiwyg ol {
  list-style: decimal;
}
.blog-content__text.wysiwyg ol,
.blog-content__text.wysiwyg ul {
  margin-left: 30px;
}
.blog-content__text.wysiwyg ol ol,
.blog-content__text.wysiwyg ol ul,
.blog-content__text.wysiwyg ul ol,
.blog-content__text.wysiwyg ul ul {
  margin-top: 11px;
}
.blog-content__text.wysiwyg ol li,
.blog-content__text.wysiwyg ul li {
  margin-bottom: 11px;
}
.blog-content__text.wysiwyg em {
  font-style: italic;
}
.blog-content__text.wysiwyg blockquote {
  padding: 30px;
  font-size: 26px;
  border-left: 2px solid #00a09a;
  color: #00a09a;
}
.blog-content__text.wysiwyg blockquote p {
  line-height: 30px;
}
.blog-content__text.wysiwyg blockquote p:last-child {
  margin-bottom: 0;
}
.blog-content__text.wysiwyg img {
  display: block;
  width: 100%;
  margin: 40px 0;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .blog-content__text.wysiwyg img {
    margin: 80px 0;
  }
}
.blog-content__text .btn--back-2-new {
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  max-width: 225px;
}

.margin-bottom {
  margin-bottom: 50px;
}

.post-type-archive-projects {
  background: #f1f5f6;
}
@media screen and (min-width: 1024px) {
  .post-type-archive-projects {
    background: url("../../assets/img/projects-bg.jpg") no-repeat;
    background-size: 100% auto;
    background-position: top center;
  }
}

.projects-header {
  width: 100%;
  padding: 175px 0 70px;
}
@media screen and (min-width: 1024px) {
  .projects-header {
    padding: 270px 0 110px;
  }
}
.projects-header__subtitle {
  margin-bottom: 10px;
  color: #212c55;
}
.projects-header__title {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -0.5px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #212c55;
}
@media screen and (min-width: 1024px) {
  .projects-header__title {
    font-size: 74px;
    line-height: 80px;
  }
}

.projects-map {
  margin: 0 -30px;
}
@media screen and (min-width: 1024px) {
  .projects-map {
    margin: unset;
    width: 100%;
  }
}
.projects-map__filters {
  margin: 0 20px 60px 20px;
}
@media screen and (min-width: 1024px) {
  .projects-map__filters {
    margin: 0 0 20px 0;
  }
}
.projects-map__filters button {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .projects-map__filters button {
    margin-bottom: 0;
  }
}
.projects-map__map {
  width: 100%;
  height: 625px;
  display: none;
}
.projects-map__map--all {
  display: block;
}

.projects-list {
  width: 100%;
  max-width: 1115px;
  margin: 60px 0 80px 0;
}
@media screen and (min-width: 1024px) {
  .projects-list {
    margin: 110px auto 165px;
    width: 100%;
  }
}
.projects-list__title {
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -1px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .projects-list__title {
    font-size: 43px;
    line-height: 45px;
    margin-bottom: 35px;
  }
}
.projects-list__item {
  width: 100%;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: flex-end;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .projects-list__item {
    height: 725px;
    max-height: 725px;
  }
}
.projects-list__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.projects-list-item__number {
  position: absolute;
  top: -5px;
  right: -5px;
  height: 165px;
  width: 233px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .projects-list-item__number {
    height: 230px;
    max-height: 230px;
    width: 233px;
  }
}
.projects-list-item__content {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  width: 100%;
  max-width: 690px;
  margin-top: auto;
}
@media screen and (min-width: 1024px) {
  .projects-list-item__content {
    padding: 40px 60px;
  }
}
.projects-list img {
  transition: all 0.5s ease-in-out;
}
.projects-list img:hover {
  transform: scale(1.1);
}
.projects-list-item__service {
  color: #ffffff;
  margin-bottom: 15px;
}
.projects-list-item__title {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 35px;
}
@media screen and (min-width: 1024px) {
  .projects-list-item__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.projects-list-item__location {
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
}
.projects-list-item__location span {
  margin-right: 15px;
  width: 12px;
}
.projects-list-item__location span svg {
  width: 8px;
  fill: #ffffff;
}

.project {
  overflow: hidden;
  display: block;
}
.project__intro {
  background: #f1f5f6;
  position: relative;
  padding: 50px 0 120px;
}
@media screen and (min-width: 1024px) {
  .project__intro {
    padding: 125px 0 120px;
  }
}
.project-intro__lines {
  width: 100%;
  max-width: 1500px;
  height: auto;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.project .circle-img-text {
  position: relative;
  z-index: 1;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .project .circle-img-text {
    flex-direction: row;
  }
}
.project .circle-img-text__logo {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #8c93a9;
  margin-bottom: 50px;
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .project .circle-img-text__logo {
    margin-bottom: 0;
    width: 454px;
    height: 180px;
  }
}
.project .circle-img-text__image {
  order: 2;
}
@media screen and (min-width: 1024px) {
  .project .circle-img-text__image {
    order: 1;
  }
}
.project .circle-img-text__content {
  order: 1;
}
@media screen and (min-width: 1024px) {
  .project .circle-img-text__content {
    order: 2;
  }
}
.project .circle-img-text__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .project .circle-img-text__title {
    font-size: 43px;
    line-height: 45px;
    margin-bottom: 50px;
  }
}
.project__challenges {
  margin-bottom: 120px;
  color: #212c55;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .project__challenges {
    margin-bottom: 170px;
  }
}
.project__challenges::before {
  content: "";
  width: 1920px;
  height: 180px;
  position: absolute;
  top: -175px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../../assets/svg/curve.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}
.project__challenges .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .project__challenges .container {
    flex-direction: row;
  }
}
.project__challenges .container.push-right {
  margin-left: auto;
  margin-right: 0;
}
.project-challenges__left {
  width: 100%;
  max-width: 630px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .project-challenges__left {
    margin-right: 100px;
    margin-bottom: 0;
  }
}
.project-challenges__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .project-challenges__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.project-challenges__text {
  margin-bottom: 50px;
}
.project-challenges__text ul li {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}
.project-challenges__text ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 0;
  background: url("../../assets/svg/bullet.svg");
  background-repeat: no-repeat;
}
.project-challenges__img {
  width: 100%;
  max-width: 825px;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}
.project__overview {
  margin-bottom: 160px;
}
@media screen and (min-width: 1024px) {
  .project__overview {
    margin-bottom: 225px;
  }
}
.project__overview > .container {
  position: relative;
}
.project-overview__follower {
  width: 375px;
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .project-overview__follower {
    top: 0;
    left: -150px;
  }
}
.project-overview__follower svg {
  fill: #f1f5f6;
}
.project-overview__content {
  width: 100%;
  max-width: 870px;
  margin-left: auto;
}
.project-overview__subtitle {
  margin-bottom: 20px;
  color: #212c55;
}
.project-overview__title {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .project-overview__title {
    font-size: 43px;
    line-height: 45px;
  }
}
.project-overview__text {
  font-size: 16px;
  line-height: 25px;
  color: #4f545b;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .project-overview__text {
    font-size: 18px;
    margin-bottom: 60px;
  }
}
.project-overview__text p {
  margin-bottom: 20px;
}
.project .testimonial-slider {
  background: url("../../assets/img/two-col-bullets-bg.png") no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: -180px;
  padding: 180px 0 165px;
}
.project .testimonial-slider .testimonial-slider__pattern {
  display: none;
}

.contact .card-flex {
  display: flex;
  flex-direction: column;
  margin: -50px 0 45px 0;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contact .card-flex {
    flex-direction: row;
    justify-content: space-between;
    margin: -120px auto 50px;
  }
}
.contact__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 50px;
  font-size: 25px;
  line-height: 30px;
  box-shadow: 0 0 27px 4px rgba(205, 205, 205, 0.5);
  border-radius: 15px;
  text-align: center;
  margin: 0 15px;
}
@media screen and (min-width: 1024px) {
  .contact__card {
    width: calc(50% - 10px);
    margin: 0;
    min-height: 480px;
  }
}
.contact__card::before {
  content: none;
  height: 400px;
  position: absolute;
  top: 100px;
  right: 50%;
  transform: translateX(50%);
  background: url(../../assets/svg/lines-white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  z-index: -1;
}
@media screen and (min-width: 1601px) {
  .contact__card::before {
    max-width: 1500px;
    width: 1500px;
    content: "";
  }
}
.contact__card--left {
  background: #ffffff;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .contact__card--left {
    margin-bottom: 0;
  }
}
.contact__card--left p,
.contact__card--left a {
  color: #212c55;
}
.contact__card--left a {
  min-height: 65px;
  min-width: 184px;
  justify-content: center;
}
.contact__card--left .btn {
  color: #ffffff;
}
.contact__card--right {
  background: #00a09a;
}
.contact__card--right .icon {
  width: 82px;
  height: 82px;
  display: block;
  margin-bottom: 15px;
}
.contact__card--right .icon svg {
  width: 100%;
}
.contact__card--right p,
.contact__card--right a {
  color: #ffffff;
}
.contact-card__title {
  margin-bottom: 30px;
}
.contact-card__tel {
  margin-bottom: 15px;
}
.contact-card__email {
  margin-bottom: 40px;
}
.contact__location {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .contact__location {
    margin-bottom: -100px;
  }
}
@media screen and (min-width: 1366px) {
  .contact__location {
    margin-bottom: -250px;
  }
}
.contact__location > .container {
  margin-right: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .contact__location > .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
  }
}
.contact-location__content {
  width: 100%;
  max-width: 405px;
  padding: 0 30px;
}
@media screen and (min-width: 1024px) {
  .contact-location__content {
    margin-top: -100px;
    margin-left: 150px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1550px) {
  .contact-location__content {
    margin-left: 0;
  }
}
.contact-location__map {
  flex: 1;
  max-width: 950px;
  display: none;
}
@media screen and (min-width: 768px) {
  .contact-location__map {
    display: block;
    margin-left: -100px;
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .contact-location__map {
    max-width: 700px;
    display: block;
    width: calc(100% + 40px);
    height: auto;
    position: relative;
    max-width: 700px;
  }
}
@media screen and (min-width: 1350px) {
  .contact-location__map {
    max-width: 950px;
  }
}
.contact-location__map img {
  width: 100%;
  height: 725px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-location__map--mobile {
  display: block;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .contact-location__map--mobile {
    display: none;
  }
}
.contact-location__get-directions {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.contact-location__get-directions span {
  display: block;
  width: 25px;
  height: 34px;
  margin-right: 10px;
}
.contact-location__get-directions span svg {
  width: 100%;
  fill: #00a09a;
}
.contact-location__address {
  margin-bottom: 40px;
}
.contact-location__address p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  color: #212c55;
}
.contact-location__social {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.contact-location__social p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 3px;
  color: #00a09a;
  text-transform: uppercase;
  margin-right: 25px;
}
.contact-location__social svg {
  fill: #00a09a;
}
.contact-location__social .li {
  margin-right: 25px;
  position: relative;
}
.contact-location__social .fb {
  position: relative;
}
.contact .curve-wrap {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contact .curve-wrap {
    padding-top: 250px;
  }
}
.contact .curve-wrap:before {
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  width: 4000px;
  height: 4000px;
  background-color: #fff;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .contact .curve-wrap:before {
    content: "";
  }
}
.contact .curve-wrap .contact-bg-pattern {
  position: absolute;
  width: 375px;
  height: 412px;
  top: 25%;
  z-index: 0;
  left: 10%;
  display: none;
}
@media screen and (min-width: 1024px) {
  .contact .curve-wrap .contact-bg-pattern {
    display: block;
  }
}
.contact__form {
  padding: 135px 0 60px 0;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contact__form {
    padding: 0 0 200px 0;
  }
}
.contact__form--quote {
  padding-bottom: 80px;
  position: relative;
  z-index: 10;
  margin-top: -125px;
}
.contact__form--quote::before {
  width: 80%;
  height: 400px;
  position: absolute;
  top: 100px;
  left: 50%;
  background: url(../../assets/svg/lines-white-clear.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  z-index: 0;
}
@media screen and (min-width: 1440px) {
  .contact__form--quote::before {
    width: 1500px;
    max-width: 1500px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__form--quote {
    padding: 0 0 200px;
  }
}
.contact__form .g-recaptcha {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}
.contact-form__intro {
  margin-bottom: 95px;
  display: none;
}
@media screen and (min-width: 1024px) {
  .contact-form__intro {
    display: block;
  }
}
.contact-form-intro__title {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 74px;
  line-height: 80px;
  letter-spacing: -0.5px;
  color: #212c55;
  margin-bottom: 20px;
}
.contact-form-intro__subtitle {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 43px;
  line-height: 45px;
  letter-spacing: -1px;
  color: #212c55;
  margin-bottom: 30px;
}
.contact-form__form {
  position: relative;
  width: calc(100% - 15px);
  max-width: 910px;
  margin: 0 auto;
  display: block;
  padding: 45px 30px;
  background: #ffffff;
  box-shadow: 0 0 27px 4px rgba(205, 205, 205, 0.5);
  border-radius: 15px;
}
@media screen and (min-width: 1024px) {
  .contact-form__form {
    padding: 100px;
    width: calc(100% - 40px);
  }
}
.contact-form__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 35px;
}
.contact-form__title .title {
  font-size: 25px;
  line-height: 30px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #212c55;
}
.contact-form__title .required {
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.contact-form__title-inner {
  font-size: 25px;
  line-height: 30px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #212c55;
  margin-bottom: 50px;
  margin-top: 15px;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .contact-form__title-inner {
    width: 100%;
    width: 60%;
  }
}
.contact-form__input {
  width: 100%;
  height: 62px;
  border-radius: 9px;
  background: #f2f3f6;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  border: 0;
  text-indent: 25px;
}
.contact-form__submit {
  width: 100%;
  height: 40px;
  border-radius: 65px;
  color: #ffffff;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 10px 25px 10px;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  background: #00a09a;
  color: #ffffff;
  border: 0;
  text-align: center;
  display: block;
  cursor: pointer;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 18px !important;
  height: 65px !important;
}
@media screen and (min-width: 1024px) {
  .contact-form__submit {
    height: 65px;
    font-size: 18px;
    line-height: 25px;
    padding: 26px 44px;
  }
}
.contact-form__submit:hover {
  transition: all 0.3s linear;
  background: #212c55;
}
.contact-form__radio {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cbcdcf;
}
@media screen and (min-width: 768px) {
  .contact-form__radio {
    flex-direction: row;
  }
}
.contact-form__radio .input-hide {
  display: none;
}
.contact-form__radio .input-hide:checked + .contact-form__radio-input {
  box-shadow: 0 0 10px #b5b3b3;
  border: 1px solid #00a09a;
}
.contact-form__radio .input-hide:checked + .contact-form__radio-input .check-circle {
  opacity: 1;
}
.contact-form__radio label {
  width: 220px;
}
@media screen and (min-width: 1024px) {
  .contact-form__radio label {
    width: calc(33.3333% - 20px);
  }
}
.contact-form__radio-input {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  cursor: pointer;
  width: 100%;
  height: 150px;
  border-radius: 10px;
  margin-bottom: 25px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contact-form__radio-input {
    margin-bottom: 0;
    padding: 20px 30px;
  }
}
.contact-form__radio-input .services-icon {
  width: 49px;
  height: 55px;
  margin-bottom: 20px;
}
.contact-form__radio-input p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #4f545b;
  text-align: center;
  margin-top: 20px;
}
.contact-form__radio-input .check-circle {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  opacity: 0;
}

.call-btn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 2000;
  height: 65px;
  padding: 10px;
  background: #ffffff;
  border-radius: 65px;
  box-shadow: 0 0 6px 1px rgba(185, 185, 185, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .call-btn {
    padding: 10px 25px 10px 10px;
  }
}
.call-btn .icon {
  width: 46px;
  height: 46px;
  border-radius: 46px;
  background-color: #00a09a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .call-btn .icon {
    margin-right: 25px;
  }
}
.call-btn .icon svg {
  width: 27px;
  fill: #ffffff;
}
.call-btn p {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #878ca3;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  display: none;
}
@media screen and (min-width: 1024px) {
  .call-btn p {
    display: block;
  }
}

.message {
  padding: 30px;
  border-radius: 5px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
}
.message p {
  margin-bottom: 0;
}
.message__success {
  color: #00a09a;
}
.message__error {
  color: red;
}

.page-template-template-get-a-quote .contact-form__form {
  margin-top: -50px;
}
@media screen and (min-width: 1024px) {
  .page-template-template-get-a-quote .contact-form__form {
    margin-top: 0;
  }
}
.page-template-template-get-a-quote .contact__form {
  position: relative;
}
.page-template-template-get-a-quote .contact__form::before {
  height: 400px;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../assets/svg/lines-white-clear.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  max-width: 1500px;
  width: 80%;
}
@media screen and (min-width: 1024px) {
  .page-template-template-get-a-quote .contact__form::before {
    content: "";
  }
}

.legal-content-wrapper {
  padding: 100px 0;
}
@media screen and (min-width: 1024px) {
  .legal-content-wrapper {
    padding: 200px 0;
  }
}
.legal-content-wrapper.wysiwyg h2,
.legal-content-wrapper.wysiwyg h3,
.legal-content-wrapper.wysiwyg h4,
.legal-content-wrapper.wysiwyg h5,
.legal-content-wrapper.wysiwyg ul,
.legal-content-wrapper.wysiwyg ol,
.legal-content-wrapper.wysiwyg blockquote {
  margin: 50px 0;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.legal-content-wrapper.wysiwyg p a {
  color: #00a09a;
}
.legal-content-wrapper.wysiwyg h2,
.legal-content-wrapper.wysiwyg h3,
.legal-content-wrapper.wysiwyg h4,
.legal-content-wrapper.wysiwyg h5 {
  color: #00a09a;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 400;
}
.legal-content-wrapper.wysiwyg h2 {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
}
@media screen and (min-width: 1024px) {
  .legal-content-wrapper.wysiwyg h2 {
    font-size: 43px;
    line-height: 45px;
  }
}
.legal-content-wrapper.wysiwyg h3 {
  font-size: 30px;
  line-height: 35px;
}
.legal-content-wrapper.wysiwyg h4 {
  font-size: 24px;
  line-height: 28px;
}
.legal-content-wrapper.wysiwyg h5 {
  font-size: 20px;
  line-height: 24px;
}
.legal-content-wrapper.wysiwyg p,
.legal-content-wrapper.wysiwyg ul,
.legal-content-wrapper.wysiwyg ol {
  font-size: 18px;
  line-height: 25px;
  color: #4f545b;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
.legal-content-wrapper.wysiwyg p b, .legal-content-wrapper.wysiwyg p strong,
.legal-content-wrapper.wysiwyg ul b,
.legal-content-wrapper.wysiwyg ul strong,
.legal-content-wrapper.wysiwyg ol b,
.legal-content-wrapper.wysiwyg ol strong {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.legal-content-wrapper.wysiwyg ul {
  list-style: disc;
  margin-top: 50px;
}
.legal-content-wrapper.wysiwyg ol {
  list-style: decimal;
}
.legal-content-wrapper.wysiwyg ol,
.legal-content-wrapper.wysiwyg ul {
  margin-left: 30px;
}
.legal-content-wrapper.wysiwyg ol ol,
.legal-content-wrapper.wysiwyg ol ul,
.legal-content-wrapper.wysiwyg ul ol,
.legal-content-wrapper.wysiwyg ul ul {
  margin-top: 11px;
}
.legal-content-wrapper.wysiwyg ol li,
.legal-content-wrapper.wysiwyg ul li {
  margin-bottom: 11px;
}
.legal-content-wrapper.wysiwyg em {
  font-style: italic;
}
.legal-content-wrapper.wysiwyg blockquote {
  padding: 30px;
  font-size: 26px;
  border-left: 2px solid #00a09a;
  color: #00a09a;
}
.legal-content-wrapper.wysiwyg blockquote p {
  line-height: 30px;
}
.legal-content-wrapper.wysiwyg blockquote p:last-child {
  margin-bottom: 0;
}
.legal-content-wrapper.wysiwyg img {
  display: block;
  width: 100%;
  margin: 40px 0;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .legal-content-wrapper.wysiwyg img {
    margin: 80px 0;
  }
}

.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 44, 85, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.newsletter-popup.active {
  display: flex;
}
.newsletter-popup__form {
  width: 585px;
  border-radius: 15px;
  box-shadow: 0 0 27px 4px rgba(205, 205, 205, 0.5);
  padding: 50px;
  background: #ffffff;
  position: relative;
}
.newsletter-popup__form .title {
  font-size: 25px;
  line-height: 30px;
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4f545b;
}
.newsletter-popup__form .newsletter-close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.newsletter-popup__form .newsletter-close svg {
  width: 20px;
  height: 20px;
}
.newsletter-popup .check-wrapper {
  margin-bottom: 30px;
}
.newsletter-popup .check-wrapper label {
  font-family: "fieldwork", sans-serif;
  font-style: normal;
  font-weight: 300;
}
