* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 27px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-size: 42px;
  line-height: 56px;
  margin-bottom: 7px;
}

h2 {
  font-size: 36px;
  line-height: 54px;
  margin-bottom: 20px;
}

h4 {
  font-size: 24px;
  line-height: 36px;
}

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

p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  margin: 0 0 1rem;
}

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

input {
  width: 100%;
}

textarea {
  resize: none;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.fullsection {
  width: 100%;
}

.col-half {
  width: 50%;
}

.mail {
  color: inherit;
}

.dark {
  color: #fff;
}

.light {
  color: #8f8f8f;
}

.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6 {
  color: #313131;
}

.primary-bg {
  background-color: #2972E0;
}

.medium-bg {
  background-color: #E7EEF8;
  color: #353535;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.btn {
  max-width: 240px;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  padding: 15px 64px;
  cursor: pointer;
  position: relative;
  transition: all .3s ease;
  display: inline-block;
  z-index: 10;
}

.btn:hover {
  color: #fff;
}

.btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #033582;
  color: #fff;
  transition: all .3s ease;
  height: 60px;
  width: 0;
}

.btn:hover:before {
  width: 100%;
}

.primary-btn {
  background-color: #2972E0;
  color: #fff;
}

.secondary-btn {
  border: none;
  background-color: #fff;
  color: #2972E0;
}

.block {
  display: block;
}

/*loader*/
.loader {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999999999;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  overflow: hidden;
}

.loader:after {
  top: 120%;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  background: #2972e0;
  transition: all .8s ease;
}

.loader.show-blue:after {
  opacity: 1;
  top: 0
}

.hide-loader {
  z-index: -5;
  opacity: 0;
  /*    height: 0;
        width: 0;*/
}

.images {
  position: relative;
}

.images img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.images .outer-part.loading {
  transform: translate(-50%, -50%) scale(2) rotate(-180deg);
  animation: squarerotate 1s ease forwards;
  -webkit-transform: translate(-50%, -50%) scale(2) rotate(-180deg);
  -moz-transform: translate(-50%, -50%) scale(2) rotate(-180deg);
  -ms-transform: translate(-50%, -50%) scale(2) rotate(-180deg);
  -o-transform: translate(-50%, -50%) scale(2) rotate(-180deg);
}

.images .inner-part.loading {
  transform: translate(-50%, -50%) scale(2) rotate(180deg);
  animation: squarerotate 1.1s ease forwards;
}

@keyframes squarerotate {
  to {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

.load-percentage {
  position: absolute;
  bottom: 10px;
  color: #093CAD;
  font-weight: 500;
  font-size: 28px;
  line-height: 56px;
}

/*loader end*/
/****************************************************************/
/*header*/
.site-header {
  min-height: 70px;
}

.site-header .container {
  padding-top: 50px;
}

/*header*/
.banner-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-size: 115%;
}

.video-background {
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
  overflow: hidden;
}

.video-foreground {
  width: 100%;
  height: 100%;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}

.main-wrapper.fade-in .banner-wrapper {
  animation: bgzoomout .7s .2s ease forwards;
}

@keyframes bgzoomout {
  to {
    background-size: 105%;
  }
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 200px;
}

body.admin-bar .hero:before {
  top: 32px;
}

.page-id-8 .hero:before {
  display: none;
}

.banner-wrapper-inner {
  min-height: 70vh;
  padding-bottom: 99px;
  /*  padding-top: 170px;
      padding-bottom: 200px;*/
}

.banner-wrapper-inner .container {
  flex-wrap: wrap;
  min-height: 70vh;
  align-items: center;
}

.banner-wrapper-inner .content {
  max-width: 540px;
  color: #fff;
}


/*footer*/
footer {
  color: #c4c4c4;
}

.footer-background {
  background: #1F1F1F;
  padding: 100px 0 120px;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
}

.footer-background li {
  list-style: none;
}

.footer-background .content {
  display: flex;
}

.widget-item p {
  font-size: inherit;
  text-align: justify;
  max-width: 480px;
  line-height: 38px;
}

.footer-background img.image.wp-image-7.attachment-medium.size-medium {
  width: 100%;
  max-width: 145px !important;
}

.footer-background ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

.footer-left-column .footer-widget-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-right-column {
  display: flex;
  padding-left: 200px;
}

.social-icon-section {
  display: flex;
  margin: 0;
  padding: 0;
}

.social-icon-section li {
  font-size: 32px;
  margin-right: 40px;
}

.social-icon {
  color: #fff;
}

.social-icon:hover {
  color: #fff;
  opacity: 0.8;
}

.footer-links-wrapper li {
  margin-bottom: 40px;
}

.footer-links-wrapper a.footer-menu {
  color: #C4C4C4;
}

.footer-menu:hover {
  color: #fff;
  text-decoration: none;
}

footer .footer-right-column a {
  color: #C4C4C4;
  transition: all .3s ease;
}

footer .footer-right-column a:hover {
  color: #fff;
}

.skech_logo {
  position: absolute;
  right: 30px;
  bottom: 80px;
  transition: all ease-in-out 0.3s;
}

.skech_logo img {
  width: 90px;
  height: auto;
  transition: all ease-in-out 0.3s;
}

.normal-img {
  position: absolute;
}

.hover-img {
  opacity: 0;
}

a:hover .normal-img {
  opacity: 0;
}

a:hover .hover-img {
  opacity: 1;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.4s;
}

/*homepage*/
.homepage-section {
  background-color: #2972E0;
  color: #fff;
}

.home-banner {
  text-align: center;
  padding: 100px 0;
}

.home-banner .content {
  max-width: 620px;
  margin: auto;
}

.get-in-touch-content {
  margin: auto;
  text-align: center;
  padding: 100px 0;
}

.homepage-section .get-in-touch-content {
  padding-top: 0;
  padding-bottom: 200px;
}

.get-in-touch-content .content {
  max-width: 560px;
  margin: auto;
}

.get-in-touch-content a {
  color: #2972E0;
  padding: 16.5px 33px;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  display: inline-block;
  min-width: 240px;
  position: relative;
  z-index: 10;
}

.get-in-touch-content a:hover {
  color: #fff;
}

.get-in-touch-content a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #033582;
  color: #fff;
  transition: all .3s ease;
  height: 60px;
  width: 0;
}

.get-in-touch-content a:hover:before {
  width: 100%;
}

.get-in-touch-content p {
  padding: 25px 0 40px;
}

.our-services-section ul {
  padding-inline-start: 0;
}

.our-services-section li {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  opacity: 0.6;
}

.services-wrapper {
  max-width: 600px;
  margin: auto;
  position: relative;
  text-align: justify;
}

.services-wrapper .number {
  position: absolute;
  left: -170px;
  font-weight: bold;
  font-size: 200px;
  line-height: 250px;
  color: #FFFFFF;
  opacity: 0.5;
  text-align: right;
  width: 130px;
}

.services-wrapper h3 {
  font-weight: bold;
  font-size: 80px;
  line-height: 120px;
}

.services-wrapper .steps {
  margin-bottom: 200px;
  margin-top: 200px;
  opacity: 1;
  transition: all .5s ease;
}

.services-wrapper .steps:not(.active) {
  opacity: .3;
}

/*pages link animation*/
.pages-link {
  position: absolute;
  bottom: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
}

.link-block {
  text-align: right;
  transition: all .5s ease;
}

/*.link-block.expand{
    background-color: rgba(41, 114, 224, 0);
  }*/
.link-block:before {
  content: "";
  /*width: 0;*/
  height: 40px;
  background-color: #2972e0;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  transition: all .5s ease;
}

.link-block:hover:after {
  animation: growwidthfull .6s ease forwards;
}

.link-block:nth-child(1):before {
  width: 20%;
  background-color: rgba(41, 114, 224, .2);
}

.link-block:nth-child(2):before {
  top: 40px;
  width: 40%;
  background-color: rgba(41, 114, 224, .4);
}

.link-block:nth-child(3):before {
  top: 80px;
  width: 60%;
  background-color: rgba(41, 114, 224, .6);
}

.link-block:nth-child(4):before {
  top: 120px;
  width: 80%;
  background-color: rgba(41, 114, 224, .8);
}

.link-block:nth-child(5):before {
  top: 160px;
  width: 100%
}

/*.link-block.expand:before {
    animation: openlinkheight 1.2s ease .1s forwards !important;
    z-index: 10;
  }*/
.link-block.expand:after {
  animation: openlinkheight 1.2s ease .1s forwards !important;
  z-index: 10;
}

.link-block:after {
  content: "";
  height: 40px;
  background-color: #2972e0;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: all .5s ease;
  opacity: 0;
}

.link-block:hover:after {
  opacity: 1;
  animation: growwidthfull .6s ease forwards;
}

.link-block:nth-child(1):after {
  width: 20%;
}

.link-block:nth-child(2):after {
  top: 40px;
  width: 40%;
}

.link-block:nth-child(3):after {
  top: 80px;
  width: 60%;
}

.link-block:nth-child(4):after {
  top: 120px;
  width: 80%;
}

.link-block:nth-child(5):after {
  top: 160px;
  width: 100%
}

.main-wrapper {
  opacity: 0;
  transition: all ease-in-out 0.5s;
}

.main-wrapper.fade-in {
  opacity: 1;
  transition: all ease-in-out 0.5s;
}

@keyframes openlinkheight {
  70% {
    transform: scale(100);
  }

  95% {
    background-color: #fff;
    transform: scale(100);
  }

  100% {
    background-color: #fff;
    transform: scale(100);
  }
}

.main-wrapper.fade-in .link-block:nth-child(1) {
  max-width: 20%;
  animation: growmaxwidth 1.6s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(1):before {
  width: 20%;
  animation: growwidth 1.6s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(2) {
  max-width: 40%;
  animation: growmaxwidth 1.4s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(2):before {
  width: 40%;
  animation: growwidth 1.4s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(3) {
  max-width: 60%;
  animation: growmaxwidth 1.2s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(3):before {
  width: 60%;
  animation: growwidth 1.2s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(4) {
  max-width: 80%;
  animation: growmaxwidth 1s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(4):before {
  width: 80%;
  animation: growwidth 1s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(5) {
  max-width: 100%;
  animation: growmaxwidth .8s ease forwards;
}

.main-wrapper.fade-in .link-block:nth-child(5):before {
  width: 100%;
  animation: growwidth .8s ease forwards;
}

.main-wrapper.fade-in .page-links {
  padding-right: 120px;
  display: block;
  color: inherit;
  opacity: 0;
  animation: showtext .5s 1.2s ease forwards;
  white-space: nowrap;
}

@keyframes growmaxwidth {
  from {
    max-width: 0;
  }
}

@keyframes growwidth {
  from {
    width: 0;
  }
}

@keyframes growwidthfull {
  to {
    width: 100%;
  }
}

@keyframes showtext {
  to {
    opacity: 1;
  }
}

@keyframes textslideup {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.banner-wrapper-inner h1,
.banner-wrapper-inner p {
  opacity: 0;
  transform: translateY(40px);
}

.main-wrapper.fade-in .banner-wrapper-inner h1 {
  animation: textslideup .5s .5s ease forwards;
}

.main-wrapper.fade-in .banner-wrapper-inner p {
  animation: textslideup .7s .7s ease forwards;
}

/*templates header*/
.site-header-inner {
  background-color: #2972E0;
  position: relative;
  border-bottom: 1px solid #fff;
  max-height: 80px;
  z-index: 99;
}

.site-header-inner .container {
  flex-direction: column;
}

.site-brand {
  display: flex;
  align-items: center;
}

.site-brand a {
  display: flex;
}

.site-brand .logo-img {
  padding-top: 9px;
  padding-bottom: 9px;
}

.site-brand:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  top: 50%;
}

.site-header-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu #menu-header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

.site-menu #menu-header-menu a {
  color: rgba(255, 255, 255, .6);
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
  transition: all .3s ease;
}

.site-menu #menu-header-menu a:hover {
  color: #fff;
}

.site-menu #menu-header-menu .current-menu-item a,
.site-menu #menu-header-menu .current_page_item a {
  color: #fff;
}

/*about us*/
.template-banner {
  /*    min-height: 520px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
        padding-top: 220px;
        padding-bottom: 180px;*/

  min-height: calc(100vh - 80px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: flex;
}

.template-banner .container {
  flex: auto;
}

.template-banner .content {
  max-width: 490px;
}

.who-we-are .content {
  max-width: 730px;
}

.who-we-are .content p,
.what-we-do .content p,
.our-vision .content p {
  font-size: 20px;
  line-height: 30px;
}

.who-we-are:before {
  content: "Who we are";
}

/*our offices*/

img.offices-mobile-img {
  display: none;
}

.our-offices {
  display: flex;
  align-items: center;
}

.offices-region {
  display: flex;
}

.office-country {
  cursor: pointer;
  position: relative;
  transition: all .3s ease;
}

.office-country .country-name {
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff;
  width: 100%;
}

.office-country:nth-of-type(1) {
  background-color: rgba(49, 49, 49, 1);
}

.office-country:nth-of-type(2) {
  background-color: rgba(49, 49, 49, .9);
}

.office-country:nth-of-type(3) {
  background-color: rgba(49, 49, 49, .8);
}

.office-country:nth-of-type(1):hover {
  background-color: rgba(41, 114, 224, 1);
}

.office-country:nth-of-type(2):hover {
  background-color: rgba(41, 114, 224, .9);
}

.office-country:nth-of-type(3):hover {
  background-color: rgba(41, 114, 224, .8);
}

.office-country img {
  height: 100%;
  width: 100%;
}

.our-offices .content {
  max-width: 620px;
  padding-left: 120px;
}

.our-offices p {
  font-size: 20px;
  line-height: 30px;
}

/*what we do*/
.points {
  margin-top: 70px;
  margin-bottom: 70px;
}

.point {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.point-number {
  flex-basis: 120px;
  max-width: 120px;
}

.point-content {
  flex-basis: calc(100% - 160px);
  max-width: calc(100% - 160px);
}

.point-number img {
  width: 100%;
}

.what-we-do:before {
  content: "What we do";
}

.before-text {
  position: relative;
}

.before-text:before {
  text-transform: uppercase;
  position: absolute;
  right: 0;
  top: -75px;
  font-weight: bold;
  font-size: 100px;
  line-height: 150px;
  opacity: .1;
  color: #fff;
}

.light.before-text:before {
  color: #2972E0;
}

/*our vision*/
.our-vision:before {
  content: "Our vision";
  color: #000;
}

.our-vision .content {
  max-width: 910px;
}

/*get in touch*/
body.page-template:not(.home) .get-in-touch-content .btn-section a {
  background-color: #2972E0;
  color: #fff;
}

/*research & development*/
.rnd-section {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
  transform: translateY(30%);
}

.img-section img {
  display: block;
}

.rnd-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 60px;
}

.r-and-d:before {
  content: "R & D";
}

.career-head {
  padding-top: 300px;
  padding-bottom: 60px;
}

.career-head .content {
  max-width: 530px;
}

/*careers*/
.careers:before {
  content: "Careers";
}

.careers {
  padding-bottom: 0;
}

.careers .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.career a {
  display: flex;
  align-items: center;
}

.career-img {
  margin-right: 30px;
}

.career {
  margin-bottom: 60px;
}

.career-info p {
  margin-bottom: 0;
  font-size: 20px;
  left: 30px;
}

/*solutions*/
.solutions .top-content {
  max-width: 670px;
}

.solutions-section {
  margin-top: 100px;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.solution {
  background-color: #fff;
  display: flex;
  max-width: calc(50% - 20px);
  flex-basis: calc(50% - 20px);
  margin-bottom: 40px;
}

.solution-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.solution .more-link {
  margin-top: auto;
  font-weight: bold;
  color: #2972E0;
}

/*partner, accordion*/
.accordion {
  background-color: #fff;
  transform: translateY(30%);
  width: 100%;
}

.accordian-head {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-heading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  position: relative;
}

.accordian-head .sliding-line {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #2972E0;
  height: 4px;
  width: 95px;
  transition: all .3s ease;
}

.partner-heading {
  font-weight: bold;
  font-size: 24px;
  line-height: 80px;
  padding-left: 25px;
  padding-right: 25px;
  cursor: pointer;
  position: relative;
}

/*.partner-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #2972E0;
    height: 4px;
    width: 0;
    opacity: 0;
    transition: all .3s ease;
  }
  .partner-heading.active:after {
    opacity: 1;
    width: 100%;
  }*/
.accordion-content {
  text-align: center;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
}

.partner-content {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 840px;
  margin: auto;
  transform: translateY(70px);
  opacity: 0;
  transition: all .3s ease;
}

.partner-content.active {
  transform: translateY(0);
  opacity: 1;
}

.partner-content img {
  margin-bottom: 60px;
}

.partner-content p {
  font-weight: normal;
}

.partner-contact {
  padding-top: 300px;
}

/*contact page*/
.addresses {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.addresses>.col-half {
  max-width: calc(50% - 20px);
}

.office {
  background-color: #fff;
  padding: 50px 60px;
  margin-bottom: 40px;
}

.info-wrapper {
  display: flex;
  align-items: flex-start;
}

.info-wrapper img {
  margin-right: 20px;
}

.info {
  margin-bottom: 32px;
}

.argentina {
  display: flex;
}

.wpcf7 {
  width: 100%;
}

.wpcf7-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wpcf7-form p:nth-of-type(1),
.wpcf7-form p:nth-of-type(2),
.wpcf7-form p:nth-of-type(3),
.wpcf7-form p:nth-of-type(4),
.wpcf7-form p:nth-of-type(5),
.wpcf7-form p:nth-of-type(6) {
  max-width: calc(33.33% - 10px);
  flex-basis: calc(33.33% - 10px);
  margin-bottom: 20px;
}

.wpcf7-form p:nth-of-type(7) {
  max-width: 100%;
  flex-basis: 100%;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 select {
  display: none;
}

.form-input {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 16.5px 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  font-family: inherit; 
}
.form-input.error {
  border:1px solid red
}

::placeholder {
  color: #fff;
}

.form-textarea {
  display: block;
  background-color: rgba(255, 255, 255, .1);
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  max-height: 280px;
  overflow: auto;
  padding: 16px 20px;
  font-weight: inherit;
  color: #fff;
}

.services-dropdown {
  height: 100%;
}

.select2-container {
  width: 100% !important;
  height: 100%;
}

.select2-container:focus,
.select2-container .selection:focus,
body .wpcf7 .select2-selection:focus,
body .select2-container--default .select2-selection--single .select2-selection__rendered:focus {
  outline: none;
}

.select2-container .selection {
  display: block;
  height: 100%;
}

body .wpcf7 .select2-selection {
  background-color: rgba(255, 255, 255, .1);
  border: none;
  border-radius: unset;
  height: 100%;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  line-height: 60px;
  padding: 0 20px;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 60px;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
  border-width: 10px 8px 0 8px;
  margin-left: -20px;
  margin-top: -5px;
  transition: all .3s ease;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
  border-width: 10px 8px 0 8px;
  transform: rotate(180deg);
}

body .select2-dropdown {
  border-radius: unset;
  border: none;
}

body .select2-search--dropdown {
  display: none;
}

body .select2-results__option:nth-of-type(1) {
  display: none;
}

body .select2-results__option {
  padding: 6px 20px;
  transition: all .24s ease;
}

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #2b71e0;
  color: white;
}

.wpcf7-form p:nth-of-type(8) {
  margin: auto;
  width: 100%;
  text-align: center;
}

body .wpcf7-response-output {
  width: 100%;
  color: #fff;
  border-color: #fff;
  border-width: 1px;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}
.wpcf7-response-output.error {
  border: 2px solid #ffb900 !important;
}
body .wpcf7-not-valid-tip {
  /*  color: rgba(255, 255, 255, .7);
    font-size: 1rem;*/
  display: none;
}

.wpcf7-form-control.wpcf7-not-valid {
  border: 1px solid red;
}

.wpcf7-form p:nth-of-type(6) {
  max-height: 60px;
}

.wpcf7-submit {
  margin-top: 26px;
  color: #2b71e0 !important;
}

body .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #e7eef8;
}

.offices-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*    bottom: 0;*/
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-in-out;
  display: flex;
  justify-content: center;
  /*    align-items: center;*/
  z-index: -1;
  /*    overflow: auto;*/
  padding-top: 55px;
  padding-bottom: 55px;
}

.offices-popup.show {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  overflow-x: hidden;
  overflow-y: auto;
}

.popup-wrapper {
  max-width: 75%;
  width: 100%;
  position: relative;
}

.close {
  position: absolute;
  right: 30px;
  top: 18px;
  font-size: 26px;
  cursor: pointer;
}

.close .fa-times {
  color: #387ee1;
  -webkit-text-stroke: 2px #f8f8f8;
}

/*.purechat-messenger-header {
    background: #2b71e0 !important;
  }*/


/*mobile menu*/
.mobile-menu {
  display: none;
}

.mobile-menu .overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #2972E0;
  overflow-x: hidden;
  transition: 0.5s;
}

.mobile-menu .overlay-content {
  position: relative;
  top: 16%;
  width: 100%;
  text-align: right;
  margin-top: 30px;
  margin-left: -38px;
}

.mobile-menu .overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.mobile-menu .overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.mobile-menu .overlay .closebtn {
  position: absolute;
  top: 8px;
  right: 25px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .mobile-menu .overlay a {
    font-size: 20px
  }

  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

.mobile-logo {
  position: absolute;
  left: 32px;
  top: 19px;
}

.mobile-menu {
  padding: 32px 22px;
}

.mobile-logo img.logo-img {
  width: 140px;
  height: auto;
}

.mobile-menu span.mobile-menu-btn {
  font-size: 36px;
  color: #fff !important;
  float: right;
  margin-top: -12px;
  cursor: pointer;
}

.mobile-menu ul#menu-header-menu-1 li {
  margin: 50px 0;
}

.mobile-icon {
  position: absolute;
  right: 0;
  bottom: 10%;
}

.mobile-menu ul#menu-header-menu-1 li a {
  font-weight: 600;
}

.widget-item img {
  width: 140px;
  height: auto;
}

img.logo-img {
  width: 90px;
}

/*************  Accordian Styles***************/
.offices-wrapper ul {
  display: flex;
  height: 514px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}

.offices-wrapper li {
  flex: 1;
  display: flex;
  padding: 0px;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
  position: relative;

}

.offices-wrapper li:first-of-type {
  background: #333
}

.offices-wrapper li:nth-of-type(2) {
  background: #555
}

.offices-wrapper li:nth-of-type(3) {
  background: #777
}

.offices-wrapper li.active {
  flex: 12;
  background: #2972E0;
  cursor: default;
}

.offices-wrapper li h2 {
  font-size: 24px;
}

.offices-wrapper li.active h2 {
  color: #fff;
}

.offices-wrapper li.active .section-content {
  flex: 9;
  opacity: 1;
  /*    transform: scaleX(1);*/
  padding: 100px;
  background: #E7EEF8;
  position: relative;
  margin-left: 180px;

}

.offices-wrapper li .section-content p {
  max-width: 500px;
  color: #353535;
}

.offices-wrapper li h4 {
  color: #353535;
  text-transform: uppercase
}

.offices-wrapper li .section-title {
  flex: 1;
  display: flex;
  align-items: flex-end;
  width: 180px;
  margin: 0;
  padding: 0;
  text-align: center;
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 180px;
  transition: all ease-in-out 0.5s;
  position: absolute;
  left: 0;
  height: 100%;
  justify-content: center;
  top: 0;
  bottom: 0;
  z-index: 99;
}

.offices-wrapper li .section-title h2 {
  margin: 0;
  white-space: nowrap;
}

.offices-wrapper li .section-content {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: 180px;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  width: 0;
}

.hide .secondary-btn {
  display: none;
}

.btn, a, button,
.btn:active, a:active, button:active,
.btn:focus, a:focus, button:focus {
  outline: none !important;
}

.text-center {
  text-align: center;
  display: block;
  width: 100%;
}

/*modal*/
.modal-body {
  padding: 15px 60px !important;
}

.modal-body h5 {
  font-size: 17px;
  padding: 25px 0;
}

.modal-body h5:first-child {
  padding: 23px 0;
}

.modal-body p {
  font-size: 16px;
}

.modal-body h4 {
  padding: 10px 0;
  font-size: 19px;
  font-weight: 600;
}

.modal-header {
  background: #f8f8f8;
  padding: 12px 26px;
}

.modal-content {
  border: none !important;
  border-radius: 0 !important;
  background-color: #fff;
}

h5#exampleModalLongTitle {
  font-size: 19px;
  font-weight: 600;
}

.modal-header .close {
  padding: 0 !important;
  margin-top: -16px !important;
  color: #0070da !important;
  opacity: 1 !important;
  font-size: 30px !important;
}

.close:hover {
  color: #0070da !important;
}

.analytical-tools-content p {
  color: #8f8f8f;
}

.email-text {
  color: #000 !important;
  max-width: 560px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.analytical-tools-content ul {
  list-style-type: none;
  padding-inline-start: 23px;
}

.analytical-tools-content li {
  position: relative;
  margin: 23px 0;
}

.analytical-tools-content li:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 6px;
  background: #2e77e1;
  left: -23px;
  bottom: 6px;
}

.value-proposition {
  padding-bottom: 20px;
  padding-top: 60px;
}

.careers-section .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.careers-content-text {
  max-width: 560px;
  padding-top: 0;
  padding-bottom: 55px;
}

.modal {
  padding: 0;
  border-radius: 0;

}




#section01 a {
  position: absolute;
  right: 20%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}

#section01 a:hover {
  opacity: .5;
}



#section01 a {
  margin-top: -23px;
}

#section01 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.copyright {
  font-size: 13px;
  position: absolute;
  bottom: -100px;
}

.footer-background .container, .footer-background {
  position: relative;
}

.what-we-do .content p {
  max-width: 65%;
}

.offices-wrapper a, .offices-wrapper {
  color: #353535;
}

.solutions-section .solution img {
  max-width: 180px;
  object-fit: cover;
}

img.logo-img {
  width: 150px;
  content: url(../images/loader-logo.svg) !important;
}