* { box-sizing: border-box }
*:focus { outline: none }

html { background-color: var(--woodsmoke) }

body {
  -webkit-font-smoothing: antialiased;
  background: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }

button {
  margin: 0;
  padding: 0;
}

a {
  color: var(--white);
  text-decoration: none;
}

.container {
  max-width: 1634px;
  padding-left: 3rem;
  padding-right: 3rem;
}

@media (max-width: 1536px) {
  .container { max-width: 1300px }
}

@media (max-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 15;
}

@media (max-width: 1024px) {
  .header { background-color: var(--steel-gray) }
}

.header.inactive { visibility: hidden }

.header-search {
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
  border-bottom: 1px solid var(--robin-egg-blue);
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.header-search-container {
  height: 70px;
  padding: 0 30px;
  position: relative;
}

.header-search-input {
  background: none;
  font-size: 24px;
  font-weight: 700;
  height: 70px;
  text-align: center;
  width: 100%;
}

.header-search-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header-search-submit {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.header-menu {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  flex: 1 1 auto;
}

@media (max-width: 1024px) {
  .header-menu {
    background-color: var(--steel-gray);
    display: none;
    position: absolute;
    left: 0;
    padding: 30px;
    right: 0;
    text-align: center;
    top: 65px;
    z-index: 20;
  }

  .pca-lang-container
  {
    justify-content: center !important;
  }

  .header-menu a:not(.hidden) {
    display: block;
    margin: 0 10px 20px 10px;
  }
}

.header-link {
  margin-right: 2rem;
  transition: 300ms ease-out all;
  color: var(--white);
  text-decoration: none;
}

.header-link.active { color: var(--robin-egg-blue) }

.header-link:hover
{
  color: var(--robin-egg-blue);
}

.header-link--contact {
  border: 2px solid var(--robin-egg-blue);
  padding: 8px 15px;
}

.btn-nav { display: none }

@media (max-width: 1024px) {
  .btn-nav span,
  .btn-nav span:after,
  .btn-nav span:before {
    background: #fff;
    height: 3px;
    width: 20px;
  }

  .btn-nav {
    align-items: center;
    display: flex;
    height: 16px;
    margin-left: 1.5rem;
    padding: 0;
    width: 20px;
  }

  .btn-nav span {
    display: inline-block;
    position: relative;
    vertical-align: middle;
  }

  .btn-nav span:after,
  .btn-nav span:before {
    content: "";
    left: 0;
    position: absolute;
    transition: 500ms ease all;
  }

  .btn-nav span:after { bottom: -5px }

  .btn-nav span:before { top: -5px }

  .btn-nav.active span { background: none }

  .btn-nav.active span:before {
    top: 0;
    transform: rotate(-45deg);
  }

  .btn-nav.active span:after {
    bottom: 0;
    transform: rotate(45deg);
  }
}

.title {
  font-size: 64px;
  font-weight: 800;
  line-height: 80px;
  text-transform: uppercase;
}

@media (max-width: 1536px) {
  .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.sub-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
}

@media (max-width: 1536px) {
  .sub-title {
    font-size: 22px;
    line-height: 34px;
  }
}

.section-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 1536px) {
  .section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.section-border {
  border-top: 1px solid var(--white-o-50);
  padding-bottom: 5rem;
  padding-top: .5rem;
}

.section-border--values { padding-bottom: 24rem }

.page-padding {
  padding-bottom: 4rem;
  padding-top: 100px;
}

@media (min-width: 1536px) {
  .page-padding { padding-bottom: 5rem }
}

@media (max-width: 1024px) {
  .page-padding { padding-top: 140px }
}

.btn { display: inline-block }

.btn--primary {
  background-color: var(--robin-egg-blue);
  color: var(--steel-gray);
  font-size: 14px;
  padding: 8px 15px;
}

.btn--outlined {
  font-size: 14px;
  padding: 8px 15px;
}

.btn--outlined-primary { border: 2px solid var(--robin-egg-blue) }

.btn--outlined-primary i {
  color: var(--robin-egg-blue);
  margin-left: 15px;
}

.fs-10 { font-size: 10px }

.box {
  background-color: var(--steel-gray);
  display: flex;
  flex-direction: column;
  padding: 40px 25px 20px;
  width: 100%;
}

.box__icon { margin-bottom: 40px }

.box__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.box__link i { margin-left: 10px }

.box--landing {
  border-top: 4px solid var(--robin-egg-blue);
  padding: 65px 40px 30px;
}

@media (max-width: 1536px) {
  .box--landing { padding: 30px }
}

.box--landing .box__icon { margin-bottom: 64px }

@media (max-width: 1536px) {
  .box--landing .box__icon { margin-bottom: 30px }
}

.box--landing i.fa {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 4rem;
}

@media (max-width: 1536px) {
  .box--landing i.fa {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.box--landing .box__link {
  font-size: 18px;
  font-weight: 700;
}

.box--career {
  padding: 20px;
  transition: 300ms ease-out background-color;
}

.career-icon path { transition: 300ms ease-out fill }

.box--resources {
  aspect-ratio: 1 / .675;
  background: url(../images/image-10.jpg) no-repeat;
  background-size: contain;
  border-bottom: 2px solid var(--robin-egg-blue);
  /*min-height: 335px;*/
  padding: 24px;
}

.box--resources-layer {
  background: rgba(0, 0, 0, .65);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.bg-page {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bg-page:after {
  background: linear-gradient(to bottom, rgba(16,17,22,0.6), rgba(16,17,22,1) );
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.bg-page--solutions  { background-image: url(../images/background/solutions.jpg) }
.bg-page--index      { background-image: url(../images/background/index.jpg) }
.bg-page--about      { background-image: url(../images/background/about.jpg) }
.bg-page--career     { background-image: url(../images/background/career.jpg) }
.bg-page--industries { background-image: url(../images/background/industries.jpg) }
.bg-page--resources  { background-image: url(../images/background/resources.jpg) }

.page-logo {
  display: inline-block;
  margin: 60px 0 80px 0;
}

@media (max-width: 1536px) {
 .page-logo {
    margin: 60px 0;
    width: 100px;
  }
}

@media (max-width: 1024px) {
  .page-logo { display: none }
}

.footer-logo { width: 74px }

.footer-lines { height: 32px }

.social-icon {
  width: auto;
  height: 18px;
}

@media (max-width: 640px) {
  footer .social-icon { margin-left: auto; margin-right: auto; }
}

.bg-modal { background: #101116 url(../images/background/modal.png) no-repeat center right }

.form-item-container { margin-bottom: 24px }

.input,
.textarea {
  background: none;
  border-bottom: 1px solid var(--robin-egg-blue);
  color: var(--robin-egg-blue);
  font-size: 14px;
  width: 100%;
}

.input--phone { padding-left: 30px }

.label {
  color: var(--robin-egg-blue);
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition: 200ms ease all;
}

.label--static { position: static }

.label--small { font-size: 12px }

.label--textarea {
  left: 20px;
  top: 20px;
}

.phone-plus {
  font-size: 30px;
  left: 0;
  position: absolute;
  top: -12px;
}

.textarea {
  border: 1px solid var(--robin-egg-blue);
  height: 140px;
  padding: 30px 20px;
}

.input:focus + .label,
.input.filled + .label {
  transform: translate(0, -20px) scale(0.65);
}

.textarea:focus + .label,
.textarea.filled + .label {
  transform: translate(0, -10px) scale(0.65);
}

.file-field {
  border: 1px solid var(--robin-egg-blue);
  color: var(--robin-egg-blue);
  display: block;
  font-size: 14px;
  padding: 6px 20px;
}

.submit {
  border: 2px solid var(--robin-egg-blue);
  color: var(--robin-egg-blue);
  font-size: 14px;
  font-weight: 700;
  height: 42px;
  padding: 0 50px;
  transition: 300ms ease-out all;
}

.submit:hover {
  background: var(--robin-egg-blue);
  color: var(--white);
}

@media (max-width: 640px) {
  .submit { width: 100% }
}

.bg-values {
  background: url(../images/background/values.png) no-repeat center;
  background-size: contain;
}

@media (max-width: 1024px) {
  .table-outer-container { overflow-x: auto }
  .table-container       { min-width: 900px }
}

.thanks-modal-mh { min-height: 900px }

@media (max-width: 1536px) {
  .thanks-modal-mh { min-height: 500px }
}

.editable h2,
.editable h3,
.editable p,
.editable ul,
.editable ol {
  margin-bottom: 20px;
}
.editable h2 {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .editable h2 {
    font-size: 20px;
  }
}
.editable h3 {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .editable h2 {
    font-size: 18px;
  }
}
.editable ul,
.editable ol {
  padding-left: 17px;
}
.editable ul {
  list-style: disc;
}
.editable ol {
  list-style: decimal;
}
.blog-tag {
  background-color: var(--steel-gray);
  border-radius: 36px;
  color: var(--tiara);
  display: inline-block;
  margin: 0 16px 16px 0;
  padding: 6px 12px;
}

.modal-box-shadow {
  box-shadow: 0px 4px 25px 16px rgba(0, 0, 0, 0.4);
}

body .select2-container .select2-selection--single {
  background: none;
  border: 1px solid var(--robin-egg-blue);
  border-radius: 0 !important;
  color: var(--robin-egg-blue);
  display: block;
  font-size: 14px;
  height: 40px;
  position: relative;
  text-align: left;
  transition: 300ms ease-out all;
  width: 100%;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--robin-egg-blue);
  line-height: 40px;
  padding-left: 15px;
  padding-right: 60px;
}

body .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--white);
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
  align-items: center;
  border-left: 1px solid var(--robin-egg-blue);
  display: flex;
  height: 38px;
  justify-content: center;
  margin: 0;
  right: 0;
  top: 0;
  width: 40px;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  height: 20px;
  margin: 0;
  position: static;
  width: auto;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  color: var(--robin-egg-blue);
  content: "\f078";
  font-family: 'Font Awesome 5 Free';
  font-size: 14px;
  font-weight: 900;
}

body .select2-dropdown {
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: 0 !important;
  box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.16);
  margin: 5px 0;
}

body .select2-results__options {
  padding: 0;
}

body .select2-results__option {
  border: none;
  color: var(--robin-egg-blue);
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
}

body .select2-container--default .select2-results__option--selected,
body .select2-container--default .select2-results__option[aria-selected=true],
body .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--robin-egg-blue);
  color: var(--steel-gray);
}

.aspect-video {
  aspect-ratio: 16 / 9
}

.pca-source-code
{
  background: #323232;
  border-radius: 0.33rem;
  overflow: hidden;
}

.pca-source-code > pre
{
  margin: 1rem;
  overflow: auto;
}

.pca-lang-container
{
  display: flex;
  flex: 1 1 auto;
  justify-content: end;
}