/* Mixin for creating vertical line above or below the given item
 *
 * @color: color of the line
 */
/**********
 *
 *	 RESETS AND OVERRIDES
 *
 **********/
*, h1, h2, h3, h4, .menuMobile .nav-link, h5, .simple-page .blog-post__content, h6, a, ul, li {
  margin: 0;
  padding: 0; }

section {
  background-color: white; }

button, input, optgroup, select, textarea {
  font-family: inherit; }

figure {
  margin: 0; }

.cookiesNavMessage, #contactModal .right .overlay {
  background: #FF6900;
  background: -moz-linear-gradient(left, #FF6900 0%, #FF6900 100%);
  background: -webkit-linear-gradient(left, #FF6900 0%, #FF6900 100%);
  background: linear-gradient(to right, #FF6900 0%, #FF6900 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=nth($color-stops, 1), endColorstr=nth($color-stops, 2),GradientType=0 ); }

.navbar .navbar-nav, .language-versions button {
  font-weight: 500;
  z-index: 1000;
  line-height: 1;
  color: #fff; }

/**********
 *
 *	 TYPOGRAPHY
 *
 **********/
h1, h2, h3, h4, .menuMobile .nav-link, h5, .simple-page .blog-post__content, h6 {
  color: #000; }

.inverted {
  color: #fff !important; }

h1, h2, h3 {
  font-weight: 700; }

h1 {
  font-size: 3.75rem;
  line-height: 1.1; }

h2 {
  font-size: 2.5rem;
  line-height: 1.125; }

h3 {
  font-size: 2rem;
  line-height: 1.17; }

h4, .menuMobile .nav-link {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4; }

h5, .simple-page .blog-post__content {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75; }

h6 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.875; }

@media (max-width: 1400px) {
  h2 {
    font-size: 2.5rem; }

  h3 {
    font-size: 2rem; }

  h4, .menuMobile .nav-link {
    font-size: 1.75rem; }

  h5, .simple-page .blog-post__content {
    font-size: 1.375rem; } }
@media (max-width: 990px) {
  h5, .simple-page .blog-post__content {
    font-weight: 600; } }
@media (max-width: 767px) {
  h1 {
    font-size: 3.5rem; } }
@media (max-width: 575px) {
  h1 {
    font-size: 3rem; }

  h2 {
    font-size: 2.25rem; }

  h3 {
    font-size: 1.75rem; }

  h4, .menuMobile .nav-link {
    font-size: 1.5rem; }

  h5, .simple-page .blog-post__content {
    font-size: 1.25rem; } }
@media (max-width: 400px) {
  h1 {
    font-size: 2.625rem; }

  h2 {
    font-size: 2.125rem; } }
/**********
 *
 *	HELPERS
 *
 **********/
.gray {
  background-color: grey; }

.white {
  background-color: white; }

.dark {
  background-color: black; }

.secondary-dark {
  color: #9191a3 !important; }

.text-color {
  color: #FF6900 !important; }

.image img, .image svg {
  height: 100%;
  width: auto; }

.appear {
  opacity: 0; }

.show-element {
  opacity: 0;
  animation: show-element 0.6s ease forwards;
  animation-delay: 0.2s; }
  .show-element.name, .show-element.title, .show-element.cta {
    animation-delay: 0.3s; }

@keyframes show-element {
  to {
    opacity: 1; } }
.already-visible {
  opacity: 1;
  animation: none; }

.menu-appear {
  opacity: 0; }

.vertical-line {
  overflow: hidden;
  position: relative;
  padding-top: 40px; }
  .vertical-line:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 3px;
    width: 2.125rem;
    border-radius: 1.5px;
    background-color: #FF6900;
    right: 0; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */ }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */ } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */ }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */ } }
#preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  border: 3px solid transparent;
  border-top-color: #FF6900;
  border-radius: 50%;
  z-index: 1999;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite; }
  #preloader::after {
    content: '';
    position: absolute;
    top: .5rem;
    right: .5rem;
    bottom: .5rem;
    left: .5rem;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: rgba(255, 105, 0, 0.6);
    -webkit-animation: spin 2s ease-in infinite;
    animation: spin 2s ease-in infinite; }

/**********
 *
 *	MISCELLANEOUS
 *
 **********/
.cookiesNavMessage {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px;
  text-align: center; }
  .cookiesNavMessage .btn {
    margin-left: 10px;
    margin-top: -1px; }
  .cookiesNavMessage .link {
    font-weight: 600; }

.alert {
  border-radius: 0;
  margin-bottom: 0;
  text-align: center; }
  .alert .close {
    color: #9191a3;
    opacity: 1; }
    .alert .close:hover, .alert .close:active, .alert .close:focus {
      color: #000; }

.alert-success {
  background-color: #f9faff;
  border-color: #f9faff;
  color: #FF6900; }

.bg-white {
  background-color: white !important; }

.bg-light {
  background-color: #f9faff !important; }

.bg-image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; }

.bg-image-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.line-center {
  overflow: hidden;
  position: relative;
  padding-top: 1.625rem; }
  .line-center:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 3px;
    width: 2.125rem;
    border-radius: 1.5px;
    background-color: #FF6900;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }

.line-center-bottom {
  overflow: hidden;
  position: relative;
  padding-top: 1.25rem; }
  .line-center-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 3px;
    width: 2.125rem;
    border-radius: 1.5px;
    background-color: #FF6900;
    bottom: 0;
    top: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }

.line-left {
  overflow: hidden;
  position: relative;
  padding-top: 1.625rem; }
  .line-left:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 3px;
    width: 2.125rem;
    border-radius: 1.5px;
    background-color: #FF6900;
    left: 0; }

.line-left-bottom {
  overflow: hidden;
  position: relative;
  padding-bottom: 1.25rem; }
  .line-left-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 3px;
    width: 2.125rem;
    border-radius: 1.5px;
    background-color: #FF6900;
    left: 0;
    bottom: 0;
    top: unset; }

.line-right {
  overflow: hidden;
  position: relative;
  padding-top: 1.625rem; }
  .line-right:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    height: 3px;
    width: 2.125rem;
    border-radius: 1.5px;
    background-color: #FF6900;
    right: 0; }

.image-circle {
  width: 5.5rem;
  height: 5.5rem;
  position: relative;
  margin-bottom: 2.5rem;
  background-color: #dee1ff;
  border-radius: 50px; }
  .image-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40%;
    height: auto; }

.huge-block--left::before, .huge-block--right::before {
  content: '';
  position: absolute;
  top: 45px;
  bottom: 45px;
  width: 36%;
  background: linear-gradient(45deg, #FF6900 0%, #FF6900 100%);
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in; }

.huge-block--left::before {
  left: 0; }

.huge-block--right {
  left: auto !important;
  right: 0; }
  .huge-block--right::before {
    right: 0; }

.highlight {
  color: #FF6900; }

.underline {
  border-bottom: 1px solid rgba(255, 105, 0, 0.5); }

::selection {
  background: rgba(255, 105, 0, 0.6);
  /* WebKit/Blink Browsers */ }

::-moz-selection {
  background: rgba(255, 105, 0, 0.6);
  /* Gecko Browsers */ }

.rounded {
  border-radius: 20px; }

.media .image {
  height: 4.25rem;
  overflow: hidden;
  border-radius: 50px;
  margin-right: 1.25rem; }
  .media .image img {
    width: 4.25rem;
    height: auto; }
.media .name {
  font-weight: 700; }
.media .caption {
  margin-bottom: .5rem; }

.number-circle {
  width: 5.5rem;
  height: 5.5rem;
  position: relative;
  -webkit-box-shadow: 0 0 1rem rgba(255, 105, 0, 0.35) inset;
  -moz-box-shadow: 0 0 1rem rgba(255, 105, 0, 0.35) inset;
  box-shadow: 0 0 1rem rgba(255, 105, 0, 0.35) inset;
  border-radius: 50px;
  flex-shrink: 0; }
  .number-circle .number-text, .number-circle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .number-circle::before {
    content: '';
    background-color: #FF6900;
    width: 72%;
    height: 72%;
    border-radius: 50px; }

/**********
 *
 *	 BADGES
 *
 **********/
.badge {
  display: inline-block;
  padding: 1rem 2rem;
  padding-bottom: 0.8rem;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
  color: #FF6900;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 20px;
  text-transform: uppercase; }

.badge-primary {
  background-color: transparent;
  border: 2px solid #FF6900;
  border-color: rgba(255, 105, 0, 0.25); }

.badge-xs {
  border-width: 2px;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  padding: 0.5rem 1.25rem 0.35rem; }

/**********
 *
 *	LINKS
 *
 **********/
a {
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in; }
  a:focus, a:hover {
    text-decoration: none; }

.link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF6900;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 105, 0, 0.5); }
  .link:hover, .link:active, .link:focus {
    color: #ff8733;
    border-bottom: 1px solid #ff8733; }

.scroll-link {
  position: absolute;
  bottom: 2.75rem;
  left: 50%;
  color: #9191a3;
  opacity: 0.35;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }
  .scroll-link .scroll-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: inherit; }
  .scroll-link .scroll-img {
    height: 1.5rem;
    width: auto;
    margin-top: 0.875rem; }
    .scroll-link .scroll-img path {
      fill: #9191a3; }
  .scroll-link:hover {
    opacity: 1;
    color: #9191a3; }
  .scroll-link:focus {
    color: #9191a3; }

/**********
 *
 *	 BUTTONS
 *
 **********/
.btn {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 1.125rem 3rem;
  text-transform: uppercase;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in; }
  .btn:focus, .btn:active {
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0; }

.btn-primary {
  color: white;
  background: linear-gradient(45deg, #FF6900 0%, #FF6900 100%);
  border: none;
  position: relative;
  text-transform: uppercase; }
  .btn-primary:before {
    background-color: #242424;
    bottom: 0;
    content: '';
    height: 2px;
    left: -10.5px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 21px;
    opacity: 0.7;
    transition: 0.2s; }
  .btn-primary:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #cf6317 0%, #e65f00 100%); }
    .btn-primary:hover:before {
      width: 0; }
  .btn-primary:focus, .btn-primary:active {
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    color: white; }

.btn-outline-primary {
  color: #FF6900;
  border-color: rgba(255, 105, 0, 0.25);
  position: relative; }
  .btn-outline-primary:before {
    background-color: #fff;
    bottom: 0;
    content: '';
    height: 2px;
    left: -10.5px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 21px;
    opacity: 0.7;
    transition: 0.2s; }
  .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: transparent;
    border-color: rgba(255, 105, 0, 0.75);
    color: #FF6900; }
    .btn-outline-primary:hover:before, .btn-outline-primary:focus:before, .btn-outline-primary:active:before {
      width: 0; }

.btn-outline-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1); }
  .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.active {
    background-color: transparent;
    border-color: #FF6900;
    color: white; }

.contact-nav {
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 31px 10px 31px; }
  .contact-nav:before {
    background-color: #242424;
    bottom: 0;
    content: '';
    height: 2px;
    left: -10.5px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 21px;
    transition: 0.2s; }
  .contact-nav:hover {
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #cf6317 0%, #e65f00 100%); }
  .contact-nav:focus, .contact-nav:active {
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    color: white; }

.btn-lg {
  padding: 1.125rem 4rem;
  padding-bottom: 1.0125rem;
  font-size: 0.875rem; }

.btn-sm {
  padding: 1.125rem 3rem;
  padding-bottom: 1.0125rem;
  letter-spacing: 0; }

.btn-xs {
  border-width: 2px;
  font-size: 0.875rem;
  letter-spacing: 0;
  padding: 0.5rem 2rem 0.4rem; }

.btn-arrow {
  background-color: white;
  border-radius: 50px;
  color: #9191a3;
  padding: .3rem 1.875rem;
  font-size: 2rem; }
  .btn-arrow:hover, .btn-arrow:active, .btn-arrow:focus {
    color: #FF6900; }

/**********
 *
 *	NAVIGATION
 *
 **********/
.navbar {
  flex-shrink: 0;
  padding-left: 3.125vw;
  padding-right: 3.125vw;
  padding-top: 4.5vh;
  padding-bottom: 4.5vh; }
  .navbar .navbar-nav {
    align-items: baseline;
    margin-left: auto; }
    .navbar .navbar-nav .nav-link {
      padding: 0;
      padding-top: .35rem;
      padding-bottom: 0.2rem;
      margin-right: 2vw;
      margin-left: 2vw;
      opacity: .75;
      position: relative;
      transition: .2s; }
      .navbar .navbar-nav .nav-link:before {
        content: '';
        height: 2px;
        bottom: 0;
        left: -10px;
        top: 4px;
        margin: auto 0 auto 0;
        transition: 0.2s;
        width: 0;
        position: absolute; }
      .navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.menuOpen {
        color: #fff;
        opacity: 1; }
        .navbar .navbar-nav .nav-link:hover:before, .navbar .navbar-nav .nav-link.menuOpen:before {
          content: '';
          background-color: #FF6900;
          width: 6px; }
      .navbar .navbar-nav .nav-link.contact-nav {
        color: #fff;
        font-family: Rubik;
        font-size: 14px;
        font-weight: bold;
        line-height: 17px;
        opacity: 1;
        padding: 17px 31px 16px 41px; }
        .navbar .navbar-nav .nav-link.contact-nav:before {
          background-color: #fff;
          content: '';
          height: 2px;
          bottom: 0;
          left: -10px;
          top: 1px;
          margin: auto 0 auto 0;
          transition: 0.2s;
          width: 21px;
          position: absolute; }
        .navbar .navbar-nav .nav-link.contact-nav.menuOpen {
          color: #FF6900;
          opacity: 1;
          padding-left: 31px; }
          .navbar .navbar-nav .nav-link.contact-nav.menuOpen:before {
            content: '';
            background-color: #FF6900;
            width: 21px; }
        .navbar .navbar-nav .nav-link.contact-nav:hover {
          border-color: #FF6900; }
          .navbar .navbar-nav .nav-link.contact-nav:hover:before {
            width: 0; }
    .navbar .navbar-nav .nav-item .btn {
      margin-left: 1.8vw;
      margin-right: 1.8vw;
      font-size: inherit; }
  .navbar .nav-item .btn,
  .navbar .nav-item .nav-link,
  .navbar button {
    color: #fff; }
    .navbar .nav-item .btn:hover, .navbar .nav-item .btn:active, .navbar .nav-item .btn:focus,
    .navbar .nav-item .nav-link:hover,
    .navbar .nav-item .nav-link:active,
    .navbar .nav-item .nav-link:focus,
    .navbar button:hover,
    .navbar button:active,
    .navbar button:focus {
      color: #000; }
  @media (max-width: 991px) {
    .navbar {
      flex-direction: row; }
      .navbar .navbar-toggler {
        position: relative;
        align-self: center;
        margin-left: auto; }
      .navbar .navbar-nav {
        margin-right: auto; } }

.navbar-brand {
  width: 7.375rem;
  align-items: center;
  font-size: 1.625rem;
  font-weight: 700; }

.navbar-toggler {
  border: none; }
  .navbar-toggler:focus {
    outline: none; }

.navbar-inverse .navbar-nav .nav-link.active, .navbar-inverse .navbar-nav .nav-link.menuOpen {
  color: #fff; }
.navbar-inverse .nav-item .btn,
.navbar-inverse .nav-item .nav-link,
.navbar-inverse button {
  color: #fff; }
  .navbar-inverse .nav-item .btn:hover, .navbar-inverse .nav-item .btn:active, .navbar-inverse .nav-item .btn:focus,
  .navbar-inverse .nav-item .nav-link:hover,
  .navbar-inverse .nav-item .nav-link:active,
  .navbar-inverse .nav-item .nav-link:focus,
  .navbar-inverse button:hover,
  .navbar-inverse button:active,
  .navbar-inverse button:focus {
    color: #fff; }

.navbar-light {
  background-color: white;
  border-bottom: 1px solid rgba(145, 145, 163, 0.15); }
  .navbar-light .btn-outline-secondary {
    border-color: rgba(145, 145, 163, 0.2); }
    .navbar-light .btn-outline-secondary:hover, .navbar-light .btn-outline-secondary:active, .navbar-light .btn-outline-secondary:focus {
      border-color: rgba(255, 105, 0, 0.75); }

.menuMobile {
  color: #000; }
  .menuMobile.show {
    display: flex !important; }
  .menuMobile .nav-link {
    text-align: center;
    line-height: 2; }
    .menuMobile .nav-link:active, .menuMobile .nav-link.active {
      opacity: 1; }

/**********
 *
 *	MODALS
 *
 **********/
.modal-open {
  overflow: hidden !important; }

@media (min-width: 991px) {
  .modal-open {
    padding-right: 15px !important; } }
.modal {
  background-color: white;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }
  .modal.show {
    opacity: 1; }
  .modal .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 100;
    line-height: .5;
    color: #000;
    text-shadow: none;
    opacity: .6;
    z-index: 1; }
    .modal .close:hover {
      opacity: 1; }

.modal-backdrop.show {
  display: none; }

.modal {
  padding-right: 0 !important; }
  .modal .modal-dialog {
    max-width: initial;
    margin: 0;
    padding-bottom: 3.5rem; }
  .modal button.close {
    font-size: 3.75rem; }

.modal-header {
  border-bottom: none; }

.modal-backdrop.show {
  background: white;
  opacity: 1; }

.modal-content {
  border: none; }

#contactModal .left {
  width: 50%;
  height: 100%; }
#contactModal .right {
  position: relative;
  flex-grow: 1;
  height: 100%; }
  #contactModal .right .map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF6900;
    background: linear-gradient(90deg, #FF6900 0%, #FF6900 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  #contactModal .right .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF6900;
    background: linear-gradient(90deg, #FF6900 0%, #FF6900 100%);
    opacity: .7; }
#contactModal .modal-header {
  padding-bottom: 3vh;
  border: none; }
#contactModal .modal-body {
  padding-top: 0; }
#contactModal a {
  font-weight: 500; }
  #contactModal a:hover, #contactModal a:active, #contactModal a:focus {
    opacity: .6; }
@media (max-width: 991px) {
  #contactModal .wrapper {
    min-height: 400px; } }

.modal-casestudy {
  background-color: rgba(0, 0, 0, 0.8); }
  .modal-casestudy #projectWrapper {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    -ms-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    margin: 5vh 4vw 5vh 4vw;
    height: 90vh;
    border-radius: 20px;
    overflow: hidden; }
  .modal-casestudy #preloader {
    display: none; }
  .modal-casestudy.loaded #projectWrapper {
    opacity: 1; }
  .modal-casestudy .left {
    background-color: white;
    flex-grow: 1;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    @media (min-width: 991px) {
      .modal-casestudy .left::-webkit-scrollbar-track {
        -webkit-box-shadow: none;
        border-radius: 0;
        background-color: white; }
      .modal-casestudy .left::-webkit-scrollbar {
        width: 10px;
        background-color: white; }
      .modal-casestudy .left::-webkit-scrollbar-thumb {
        border-radius: 0;
        -webkit-box-shadow: none;
        background-color: rgba(145, 145, 163, 0.5); } }
  .modal-casestudy .right,
  .modal-casestudy .panel {
    min-width: 300px;
    background-color: white;
    width: 25%; }
    @media (min-width: 991px) {
      .modal-casestudy .right::-webkit-scrollbar-track,
      .modal-casestudy .panel::-webkit-scrollbar-track {
        -webkit-box-shadow: none;
        border-radius: 0;
        background-color: white; }
      .modal-casestudy .right::-webkit-scrollbar,
      .modal-casestudy .panel::-webkit-scrollbar {
        width: 10px;
        background-color: white; }
      .modal-casestudy .right::-webkit-scrollbar-thumb,
      .modal-casestudy .panel::-webkit-scrollbar-thumb {
        border-radius: 0;
        -webkit-box-shadow: none;
        background-color: rgba(145, 145, 163, 0.5); } }
  .modal-casestudy .modal-header,
  .modal-casestudy .modal-body,
  .modal-casestudy .modal-footer {
    padding: 2.5rem 2.5rem 2rem 2rem; }
  .modal-casestudy .modal-content {
    background: none; }
  .modal-casestudy .modal-footer {
    border: none; }
  .modal-casestudy #projectImage {
    width: 100%;
    height: auto; }
  .modal-casestudy .logo {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    width: 9.5rem;
    height: 2.75rem;
    margin-bottom: 3rem; }
    .modal-casestudy .logo svg {
      width: 100%;
      height: 100%; }
  .modal-casestudy .name {
    color: #000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1; }
    .modal-casestudy .name.inverted {
      color: #fff !important; }
      .modal-casestudy .name.inverted .brand:before {
        border-color: #fff; }
  .modal-casestudy .content {
    color: #9191a3;
    font-weight: 500;
    line-height: 1.875;
    margin-bottom: 0; }
  .modal-casestudy .title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    color: #9191a3;
    text-transform: uppercase; }
  .modal-casestudy .social-link {
    color: #FF6900;
    font-size: 1.125rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem; }
    .modal-casestudy .social-link:first-child {
      padding-left: 0; }
    .modal-casestudy .social-link:last-child {
      padding-right: 0; }
    .modal-casestudy .social-link:hover {
      color: #cc5400; }
  .modal-casestudy #services,
  .modal-casestudy #technologies {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    padding-bottom: .75rem;
    margin-right: -0.5rem; }
    .modal-casestudy #services .badge,
    .modal-casestudy #technologies .badge {
      margin-right: 0.5rem;
      margin-bottom: 0.5rem; }
    .modal-casestudy #services .icon,
    .modal-casestudy #technologies .icon {
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      height: 2.375rem;
      width: 2.375rem;
      margin: 0 1rem 1rem 0; }
    .modal-casestudy #services .icon:last-of-type,
    .modal-casestudy #technologies .icon:last-of-type {
      margin-right: 0; }

#videoModal iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

/**********
 *
 *	CARDS
 *
 **********/
.card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin: 0 auto 30px auto;
  -webkit-box-shadow: 0 0 1.75rem 0.1rem rgba(255, 105, 0, 0.08);
  -moz-box-shadow: 0 0 1.75rem 0.1rem rgba(255, 105, 0, 0.08);
  box-shadow: 0 0 1.75rem 0.1rem rgba(255, 105, 0, 0.08);
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in; }
  @media (min-width: 991px) {
    .card {
      -webkit-box-shadow: 0 0 0 rgba(255, 105, 0, 0);
      -moz-box-shadow: 0 0 0 rgba(255, 105, 0, 0);
      box-shadow: 0 0 0 rgba(255, 105, 0, 0); }
      .card:hover {
        -webkit-box-shadow: 0 0 3.75rem 0.5rem rgba(255, 105, 0, 0.13);
        -moz-box-shadow: 0 0 3.75rem 0.5rem rgba(255, 105, 0, 0.13);
        box-shadow: 0 0 3.75rem 0.5rem rgba(255, 105, 0, 0.13);
        background-color: white; }
        .card:hover .card-link {
          display: block; } }

.card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: none;
  margin-bottom: 1rem; }
  .card-header .caption {
    margin-right: 3rem;
    color: #FF6900;
    font-weight: 600; }

.card-text {
  padding: 0 2.5rem;
  line-height: 1.6; }

.card-link {
  display: none;
  position: absolute;
  bottom: 2.75rem;
  left: 0;
  right: 0;
  -webkit-transition: display 0.15s ease-in;
  -moz-transition: display 0.15s ease-in;
  -ms-transition: display 0.15s ease-in;
  -o-transition: display 0.15s ease-in;
  transition: display 0.15s ease-in; }
  @media (max-width: 991px) {
    .card-link {
      display: block; } }

/**********
 *
 *	PORTFOLIO MAIN PAGE
 *
 **********/
.portfolio {
  padding-top: 13vh;
  background-color: #f9faff;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0); }
  .portfolio .sidebar {
    height: 100vh;
    min-height: 300px; }
    .portfolio .sidebar .wrapper {
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
      background-color: white;
      height: 100%;
      padding-top: 6%;
      padding-bottom: 6%; }
      .portfolio .sidebar .wrapper .col {
        max-height: 630px;
        height: 100%; }
    .portfolio .sidebar nav {
      height: 80%;
      max-height: 420px; }
    .portfolio .sidebar .nav-item {
      padding: 0; }
    .portfolio .sidebar .nav-link {
      padding: 0;
      font-size: 14px;
      font-family: "Rubik", sans-serif;
      color: #242424;
      position: relative;
      transition: .2s; }
      .portfolio .sidebar .nav-link:before {
        content: '';
        height: 2px;
        bottom: 0;
        left: 0;
        top: 0;
        margin: auto 0 auto 0;
        transition: 0.2s;
        width: 0;
        position: absolute; }
      .portfolio .sidebar .nav-link.active {
        color: #FF6900;
        padding-left: 12px; }
        .portfolio .sidebar .nav-link.active:before {
          content: '';
          background-color: #FF6900;
          width: 6px; }

.portfolio-wrapper {
  position: relative; }
  .portfolio-wrapper .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 75%;
    max-width: 60%; }
  @media (max-width: 1200px) {
    .portfolio-wrapper .col {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 60%;
      -ms-flex: 0 0 60%;
      flex: 0 0 60%;
      max-width: 60%; } }

.project {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-bottom: 30px;
  height: 45vw;
  width: 100%;
  overflow: hidden;
  position: relative; }
  .project:last-child {
    margin-bottom: 0; }
  .project .container-fluid {
    height: 100%;
    z-index: 10; }
  .project .row {
    height: 100%; }
  .project.left .row {
    justify-content: flex-start; }
  .project.right .row {
    justify-content: flex-end; }
  .project.right .col-spacer {
    order: 1; }
  .project .bg-image-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .project .bg-image-cover--mobile {
    position: relative;
    width: 100%;
    height: auto; }
  .project .content {
    margin-top: auto;
    margin-bottom: auto; }
  .project .logo {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    width: 9.5rem;
    height: 2.75rem;
    margin-bottom: 2rem; }
    .project .logo svg {
      width: 100%;
      height: 100%; }
  .project .name {
    color: #000;
    font-weight: 600; }
    .project .name .brand {
      text-transform: uppercase;
      margin-right: 4.125rem; }
    .project .name.inverted {
      color: #fff !important; }
      .project .name.inverted .brand:before {
        border-color: #fff; }
  .project .title {
    margin-bottom: 2rem; }

.btn-icare {
  background-color: #fff; }
  .btn-icare:hover, .btn-icare:active, .btn-icare:focus {
    background-color: #ebebeb; }

.btn-opus {
  background-color: #f54687; }
  .btn-opus:hover, .btn-opus:active, .btn-opus:focus {
    background-color: #f31f6e; }

.btn-badger {
  background-color: #c3ab71; }
  .btn-badger:hover, .btn-badger:active, .btn-badger:focus {
    background-color: #b79a54; }

.btn-reactor {
  background-color: #ea0049; }
  .btn-reactor:hover, .btn-reactor:active, .btn-reactor:focus {
    background-color: #c1003c; }

.btn-sarnowski {
  background-color: #80aae4; }
  .btn-sarnowski:hover, .btn-sarnowski:active, .btn-sarnowski:focus {
    background-color: #5e93dd; }

.btn-platinum {
  background-color: #d78263; }
  .btn-platinum:hover, .btn-platinum:active, .btn-platinum:focus {
    background-color: #cf6843; }

.btn-roomland {
  background-color: #ff6d74; }
  .btn-roomland:hover, .btn-roomland:active, .btn-roomland:focus {
    background-color: #ff444d; }

.btn-daily {
  background-color: #4e7dea; }
  .btn-daily:hover, .btn-daily:active, .btn-daily:focus {
    background-color: #2a62e6; }

.btn-icare {
  color: #6ac5d5; }
  .btn-icare:hover, .btn-icare:active, .btn-icare:focus {
    color: inherit; }

/**********
 *
 *	MEDIA QUERY PORTFOLIO
 *
 **********/
@media (max-width: 990px) {
  .portfolio-column {
    padding-left: 0; }

  .project {
    height: 60vh;
    min-height: 400px;
    border-radius: 0; } }
@media (max-width: 767px) {
  .project {
    margin-left: 0; }
    .project .container-fluid {
      width: 540px;
      margin-left: 0; }
    .project .img-main {
      position: relative !important;
      left: 0 !important;
      bottom: initial !important;
      right: 0 !important;
      width: 100% !important;
      min-width: initial !important;
      height: 60vw !important; } }
@media (max-width: 575px) {
  .project {
    height: auto; }
    .project .container-fluid {
      width: auto; }
    .project .inverted {
      color: #000 !important; }
    .project .content {
      width: 100%;
      text-align: center;
      padding-top: 4rem;
      padding-bottom: 4rem;
      margin-left: auto;
      margin-right: auto; }
    .project .logo {
      width: 80%;
      background-position-x: center;
      margin-left: auto;
      margin-right: auto; }

  .btn-icare {
    background-color: #6ac5d5;
    color: #fff; }
    .btn-icare:hover, .btn-icare:active, .btn-icare:focus {
      color: #fff;
      background-color: #4ab9cc; } }
#opinions-slider .owl-stage {
  display: flex;
  align-items: stretch; }
  #opinions-slider .owl-stage .owl-item {
    height: 100%; }
#opinions-slider .card {
  background-color: white;
  border-radius: 1rem;
  height: 100%;
  margin-left: 15px;
  margin-right: 15px;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0; }
  #opinions-slider .card:hover, #opinions-slider .card:active, #opinions-slider .card:focus {
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0; }
  #opinions-slider .card figure {
    position: absolute;
    right: 80px; }
#opinions-slider .card-block {
  padding: 3rem 4.5rem; }
#opinions-slider .text {
  color: #9191a3;
  font-weight: 500;
  line-height: 1.875; }
#opinions-slider .image {
  width: 5rem;
  height: 5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  flex-shrink: 0; }
#opinions-slider .name {
  line-height: 1;
  font-weight: 600; }
#opinions-slider .caption {
  font-weight: 400;
  color: #FF6900;
  font-family: Roboto;
  font-size: 14px; }
#opinions-slider .owl-nav {
  position: absolute;
  top: -10vh;
  right: 15px;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%); }
#opinions-slider .owl-prev,
#opinions-slider .owl-next {
  display: inline-block; }
#opinions-slider .owl-prev {
  margin-right: 1.25rem; }
@media (max-width: 767px) {
  #opinions-slider .owl-nav {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
    #opinions-slider .owl-nav .btn-arrow {
      background-color: #FF6900;
      color: #fff; } }

body {
  background-color: #242424;
  color: #9191a3;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow: hidden; }

h1, h2, h3, h4, .menuMobile .nav-link {
  font-family: "Rubik", sans-serif; }

#preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  /* change if the mask should have another color then white */
  z-index: 10000;
  /* makes sure it stays on top */ }

.logotypes-technologies .d-flex {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }

.logotypes-technologies .logos a {
  padding-bottom: 0; }
.logotypes-technologies .owl-prev {
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center; }
.logotypes-technologies .owl-next {
  position: absolute;
  right: -1rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center; }

/**********
 *
 *	LAYOUT
 *
 **********/
.blog-post img {
  max-width: 100%;
  height: auto; }

.language-versions {
  margin-left: 25px; }
  .language-versions button {
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    display: flex;
    background: none;
    border: 0;
    text-align: center;
    cursor: pointer;
    z-index: 2; }
  .language-versions .languagedropdown {
    width: auto;
    min-width: 10px;
    /*  max-width: 3rem;*/
    float: none;
    left: -40px; }
    .language-versions .languagedropdown a {
      display: block;
      padding: 0 25px; }
  .language-versions .dropdown-toggle::after {
    align-self: center; }
  @media (max-width: 990px) {
    .language-versions {
      margin-left: 0; } }

.header {
  display: table;
  text-align: right;
  margin: auto; }
  .header .caption {
    color: #FF6900;
    font-weight: 600; }

.header-left {
  margin-left: initial;
  text-align: left; }

.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100vh;
  overflow: hidden;
  text-align: center; }
  .hero .caption {
    color: #BDBDBD !important; }
  .hero video {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    min-height: 100%;
    min-width: 100%; }
  .hero .buttons .btn-outline-primary {
    color: #fff; }
  .hero .buttons .orange {
    color: #FF6900;
    font-family: "Rubik", sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 17px; }
    .hero .buttons .orange:hover, .hero .buttons .orange:focus {
      color: #fff; }
  .hero .buttons span {
    margin-left: 40px;
    margin-right: 40px;
    opacity: 0.5;
    color: #FFFFFF;
    font-family: Rubik;
    font-size: 14px;
    font-weight: bold; }
  .hero .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2F2F2F 0%, #141414 100%);
    background: #2F2F2F;
    opacity: .8; }
  .hero .content {
    max-width: 100%; }
  .hero .caption {
    margin-bottom: 4rem;
    font-weight: 500; }
  .hero .buttons {
    text-align: center; }
    .hero .buttons a:last-of-type {
      margin-right: 0; }

.hero-sm {
  height: 75vh; }

.navbar {
  margin-top: 0; }
  .navbar .social-link {
    display: inline-block;
    padding-left: 20px !important;
    padding-right: 20px !important;
    color: white; }

.blog-hero .navbar {
  margin-top: 0; }

.spec-small-title {
  color: #FF6900;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  margin-bottom: 1.7rem;
  text-transform: uppercase;
  display: none; }

.spec-title {
  padding-left: .5rem;
  padding-right: .5rem;
  position: relative; }
  .spec-title:after {
    background-color: #FF6900;
    bottom: 0;
    content: '';
    height: 10px;
    left: 0;
    opacity: 0.25;
    position: absolute;
    right: 0;
    width: 100%; }

.logotypes {
  position: relative;
  height: 17.25rem;
  padding-top: 3.75rem; }
  .logotypes .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5rem;
    line-height: 1; }

.logotype-carousel {
  border-bottom: 1px solid rgba(145, 145, 163, 0.15);
  padding-bottom: 5.25rem; }
  .logotype-carousel .image {
    height: 4rem;
    width: 11rem;
    margin: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }

.logotypes-technologies {
  height: auto; }
  .logotypes-technologies .logotype-carousel {
    border-bottom: none; }
    .logotypes-technologies .logotype-carousel .image {
      height: 5.75rem;
      width: 8rem;
      margin: auto; }

.left .row {
  flex-direction: row-reverse; }
  .left .row .col {
    text-align: left; }

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

section .header .title {
  margin-bottom: 13vh; }

#servicesSection h5, #servicesSection .simple-page .blog-post__content, .simple-page #servicesSection .blog-post__content {
  margin-top: 2rem;
  margin-bottom: 1rem; }
#servicesSection h6 {
  color: #000;
  font-size: 14px;
  line-height: 28px;
  text-align: center; }

.services {
  padding: 13vh 3.125vw; }
  .services .container-fluid {
    max-width: 1320px; }
  .services .wrapper {
    margin-bottom: 4vh; }
  .services .item {
    margin-bottom: 3rem; }
    .services .item .image {
      height: 4rem;
      margin-bottom: 1.375rem;
      -webkit-transition: padding 0.2s ease-in;
      -moz-transition: padding 0.2s ease-in;
      -ms-transition: padding 0.2s ease-in;
      -o-transition: padding 0.2s ease-in;
      transition: padding 0.2s ease-in; }
      .services .item .image svg {
        overflow: visible; }
  @media (max-width: 1400px) {
    .services .card-header .caption {
      display: none; } }
  @media (max-width: 1200px) {
    .services .card-header .caption {
      display: inline; } }

.section-service {
  padding-top: 13vh;
  padding-bottom: 13vh; }
  .section-service .title {
    display: inline-block;
    margin-bottom: 4rem; }
  .section-service .content {
    margin-bottom: 6vh; }
  .section-service .image {
    min-height: 19rem; }
  .section-service .badge {
    margin-bottom: 1rem; }

.simple-page .share-buttons a {
  padding-left: .25em;
  padding-right: .25em; }
  .simple-page .share-buttons a:hover {
    color: #4353ff; }
  .simple-page .share-buttons a:first-child {
    padding-left: 0; }

.section-about {
  padding-top: 13vh;
  padding-bottom: 13vh;
  background-color: #f9faff; }

.about-gallery {
  padding-bottom: 8rem; }

.section-about__content {
  height: 100vh;
  max-height: 900px;
  position: relative; }
  .section-about__content .container,
  .section-about__content .row {
    height: inherit;
    max-height: inherit; }
  .section-about__content .title {
    margin-bottom: 5rem;
    display: inline-block; }
  .section-about__content .content {
    font-size: 0.875rem;
    margin-bottom: 5rem; }
    .section-about__content .content p {
      font-size: inherit; }
    .section-about__content .content .image {
      width: 5rem;
      height: 5rem;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      border-radius: 100%; }
  .section-about__content .media {
    margin-bottom: 3rem; }
  .section-about__content .card {
    margin-bottom: 1rem; }
    .section-about__content .card:hover .name {
      color: #FF6900; }
    .section-about__content .card:hover .media .image {
      opacity: 1; }
    .section-about__content .card .card-block {
      padding: 30px; }
    .section-about__content .card .media {
      margin-bottom: 0; }
      .section-about__content .card .media .image {
        -webkit-transition: opacity 0.15s ease-in;
        -moz-transition: opacity 0.15s ease-in;
        -ms-transition: opacity 0.15s ease-in;
        -o-transition: opacity 0.15s ease-in;
        transition: opacity 0.15s ease-in;
        opacity: .35;
        border-radius: 0;
        margin-right: 2rem; }
      .section-about__content .card .media img {
        max-height: 4rem;
        max-width: 4rem; }
    .section-about__content .card .name {
      -webkit-transition: color 0.15s ease-in;
      -moz-transition: color 0.15s ease-in;
      -ms-transition: color 0.15s ease-in;
      -o-transition: color 0.15s ease-in;
      transition: color 0.15s ease-in; }

.section-about__image-group {
  padding-top: 45px;
  padding-bottom: 45px;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  position: absolute; }
  .section-about__image-group.right {
    right: 0;
    left: unset; }
  .section-about__image-group .image {
    position: absolute;
    height: 68%;
    max-width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-transition: all 0.04s ease-in;
    -moz-transition: all 0.04s ease-in;
    -ms-transition: all 0.04s ease-in;
    -o-transition: all 0.04s ease-in;
    transition: all 0.04s ease-in;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    .section-about__image-group .image img {
      flex-shrink: 0;
      min-width: 100%;
      min-height: 100%;
      height: unset; }
  .section-about__image-group .image-sm {
    height: 35%;
    max-width: 33%; }
  .section-about__image-group .image-top {
    top: 45px;
    right: 6%; }
  .section-about__image-group .image-bottom {
    bottom: 45px;
    left: 40%; }
  .section-about__image-group .image-left {
    left: 6%;
    top: 32%; }
  .section-about__image-group .image-center {
    top: 14%;
    right: 0;
    left: 0;
    margin: auto; }

.section-news {
  padding-top: 13vh;
  padding-bottom: 13vh; }
  .section-news .title {
    margin-bottom: 13vh;
    display: inline-block; }
  .section-news .name {
    font-size: 1.5rem; }

.section-casestudy {
  padding-bottom: 7rem !important; }

.simple-page .tagsList,
.section-news .tagsList,
.section-casestudy .tagsList {
  padding-top: 3.5rem;
  padding-bottom: 4rem; }
  .simple-page .tagsList li,
  .section-news .tagsList li,
  .section-casestudy .tagsList li {
    display: inline-block;
    margin-right: 1.125rem;
    margin-bottom: 1.125rem; }
.simple-page .item,
.section-news .item,
.section-casestudy .item {
  padding-bottom: 30px; }
.simple-page .card,
.section-news .card,
.section-casestudy .card {
  margin-bottom: 0;
  overflow: hidden;
  background: white; }
  .simple-page .card .card-img-top,
  .section-news .card .card-img-top,
  .section-casestudy .card .card-img-top {
    height: 15rem; }
  .simple-page .card .card-block,
  .section-news .card .card-block,
  .section-casestudy .card .card-block {
    padding: 30px; }
  .simple-page .card .tags-wrapper,
  .section-news .card .tags-wrapper,
  .section-casestudy .card .tags-wrapper {
    margin-right: -0.5rem;
    margin-bottom: 0.5rem; }
  .simple-page .card .tags .btn,
  .section-news .card .tags .btn,
  .section-casestudy .card .tags .btn {
    margin: 0 0.5rem 0.5rem 0; }
  .simple-page .card .description,
  .section-news .card .description,
  .section-casestudy .card .description {
    font-weight: 500;
    margin-bottom: 0; }

.simple-page .date,
.section-news .date {
  font-size: .875rem;
  font-weight: 500;
  color: #9191a3; }
.simple-page .content,
.section-news .content {
  padding-top: 5rem;
  padding-bottom: 5rem; }
  .simple-page .content .caption,
  .section-news .content .caption {
    margin-bottom: 1.125rem; }
.simple-page .tagsList,
.section-news .tagsList {
  padding-top: 0;
  padding-bottom: 0; }

.cta-section {
  padding-top: 8.875rem;
  padding-bottom: 9rem; }
  .cta-section .spec-title {
    display: inline-block; }
  .cta-section .title {
    margin-bottom: 4rem; }

.opinions {
  padding: 13vh 0 8.25rem 0;
  background-color: #f9faff; }
  .opinions .header {
    margin-bottom: 10vh;
    text-align: left; }
    .opinions .header .title {
      margin-bottom: 0; }

.news {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem; }

.blog-hero {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  max-height: 70vh;
  padding: 0;
  min-height: 280px; }

.simple-page {
  padding-bottom: 5rem; }
  .simple-page .blog-post {
    margin-top: 4rem;
    margin-bottom: 3rem; }
    .simple-page .blog-post ul {
      margin-left: 20px; }
    .simple-page .blog-post ol {
      margin-left: 20px; }
  .simple-page .blog-post__content {
    color: #000 !important;
    font-weight: 400; }

.blog-post {
  color: #242424;
  margin-bottom: 3rem; }
  .blog-post:hover .blog-post__image {
    opacity: 1; }
  .blog-post:hover .blog-post__title {
    color: #FF6900; }

.blog-post__date,
.blog-post__username {
  display: inline-block;
  font-weight: 600;
  color: #FF6900;
  text-align: right; }

.blog-post__username {
  margin-right: 3rem;
  overflow: visible; }

.blog-post__tags {
  color: #FF6900;
  font-weight: 600; }

.blog-post__title {
  font-weight: 600;
  color: #000;
  -webkit-transition: color 0.15s ease-in;
  -moz-transition: color 0.15s ease-in;
  -ms-transition: color 0.15s ease-in;
  -o-transition: color 0.15s ease-in;
  transition: color 0.15s ease-in; }

.blog-post__image {
  margin-bottom: 1.5rem;
  margin-top: .375rem;
  -webkit-transition: opacity 0.15s ease-in;
  -moz-transition: opacity 0.15s ease-in;
  -ms-transition: opacity 0.15s ease-in;
  -o-transition: opacity 0.15s ease-in;
  transition: opacity 0.15s ease-in; }

.blog-post__content,
a {
  color: inherit; }
  .blog-post__content:hover, .blog-post__content:focus,
  a:hover,
  a:focus {
    color: inherit;
    outline: none; }

.see-also {
  display: flex;
  flex-direction: row; }
  .see-also .blog-post {
    margin-top: 0; }

.aplikuj {
  margin-bottom: 3rem; }

.tag {
  background: transparent;
  border: 1px solid rgba(255, 105, 0, 0.25);
  color: #FF6900;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  margin: 0 10px 10px 0;
  padding: 7px 27px;
  text-transform: uppercase; }

.section-news .work {
  padding-bottom: 5rem; }
  .section-news .work .content {
    padding-bottom: 0; }
  .section-news .work .cont {
    background-color: #242424;
    display: flex;
    text-align: center; }
    .section-news .work .cont h5, .section-news .work .cont .simple-page .blog-post__content, .simple-page .section-news .work .cont .blog-post__content {
      color: #fff;
      margin: auto; }
  .section-news .work .card-block {
    text-align: center; }

@media (max-width: 991px) {
  .absolute {
    position: absolute;
    top: 27%; } }
fieldset .control-label {
  width: 100%;
  padding: 8px 10px;
  border: 0;
  transition: all 0.2s ease-in;
  background-color: transparent;
  display: block;
  position: relative;
  z-index: 1; }
fieldset .controls input[type="file"] {
  height: 100%;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
  cursor: pointer; }

.social-link {
  color: rgba(145, 145, 163, 0.4);
  font-size: 1.125rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
  .social-link:first-child {
    padding-left: 0; }
  .social-link:last-child {
    padding-right: 0; }
  .social-link:hover i {
    color: #fff; }
  .social-link:hover, .social-link:active, .social-link:focus {
    color: #FF6900; }

.contact-wrapper {
  width: 540px;
  margin: auto; }

.footer-address-info {
  display: flex;
  align-items: center;
  list-style-type: none;
  justify-content: center;
  margin-top: 2rem; }
  .footer-address-info li {
    margin-left: 1rem;
    margin-right: 1rem;
    opacity: 0.7;
    color: #fff;
    font-weight: 500; }
    .footer-address-info li:hover a {
      color: #fff; }

footer {
  background-color: #242424;
  padding-top: 3rem;
  padding-bottom: 9vh;
  color: #9191a3;
  font-size: 1.125rem; }
  footer p {
    opacity: 0.7;
    color: #fff;
    font-family: Roboto;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 3rem; }
  footer .title {
    color: #fff;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
    padding-bottom: 2rem; }
    footer .title:before {
      content: "";
      position: absolute;
      top: 0;
      display: block;
      height: 3px;
      width: 2.125rem;
      border-radius: 1.5px;
      background-color: #FF6900;
      left: 0;
      bottom: 0;
      top: unset; }
  footer .social-title {
    color: #fff;
    font-family: Roboto;
    font-size: 16px;
    line-height: 30px; }
  footer .logo {
    margin-bottom: 6vh; }
  footer .social {
    padding-top: 1rem; }
    footer .social i {
      opacity: 0.7;
      color: #fff; }
  footer .contact .fa {
    width: 1rem;
    text-align: center;
    margin-right: 1rem;
    color: #FF6900; }
  footer .address {
    margin-bottom: 0;
    line-height: 2.1; }
  footer .nav-link {
    padding: 0.5rem 0;
    opacity: 0.7;
    color: #fff;
    font-family: Rubik;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px; }
    footer .nav-link:hover {
      color: #fff;
      opacity: 1; }

.close span {
  color: #000; }

#contactModal .right .spec-title {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: #fff;
  font-weight: 700; }
  #contactModal .right .spec-title:after {
    background-color: #fff; }
#contactModal .right a {
  font-weight: 700; }

#contactForm .form-actions,
#contactCareerForm .form-actions {
  text-align: left; }
#contactForm .half .control-group,
#contactCareerForm .half .control-group {
  position: relative; }
#contactForm .half,
#contactCareerForm .half {
  width: 49%;
  display: inline-block;
  margin-right: 2%; }
#contactForm .half:nth-child(2),
#contactForm .half:nth-child(4),
#contactCareerForm .half:nth-child(2),
#contactCareerForm .half:nth-child(4) {
  margin-right: 0; }
#contactForm .control-group,
#contactCareerForm .control-group {
  position: relative;
  margin-top: 1.5rem; }
  #contactForm .control-group label.checkbox,
  #contactCareerForm .control-group label.checkbox {
    display: flex;
    align-items: baseline;
    margin-bottom: 0; }
    #contactForm .control-group label.checkbox input[type="checkbox"],
    #contactCareerForm .control-group label.checkbox input[type="checkbox"] {
      width: 29px;
      margin-right: 10px; }
#contactForm .control-label,
#contactCareerForm .control-label {
  position: absolute;
  padding: 8px 10px;
  z-index: 0;
  display: block;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }
  #contactForm .control-label.up,
  #contactCareerForm .control-label.up {
    top: -1.5rem;
    font-size: 90%; }
#contactForm .controls,
#contactCareerForm .controls {
  position: relative; }
#contactForm span.label-form-error,
#contactCareerForm span.label-form-error {
  position: absolute;
  bottom: -35px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: none;
  color: #FF594E;
  text-shadow: none; }
  #contactForm span.label-form-error::before,
  #contactCareerForm span.label-form-error::before {
    display: none; }
#contactForm input,
#contactForm textarea,
#contactCareerForm input,
#contactCareerForm textarea {
  width: 100%;
  padding: 14px 30px;
  border: 1px solid rgba(145, 145, 163, 0.15);
  color: #000;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background-color: transparent;
  display: block;
  position: relative;
  z-index: 1; }
  #contactForm input:focus,
  #contactForm textarea:focus,
  #contactCareerForm input:focus,
  #contactCareerForm textarea:focus {
    outline: none;
    border: 1px solid #FF6900 !important; }
  #contactForm input:-webkit-autofill,
  #contactForm textarea:-webkit-autofill,
  #contactCareerForm input:-webkit-autofill,
  #contactCareerForm textarea:-webkit-autofill {
    background-color: rgba(255, 105, 0, 0.3); }
  #contactForm input.label-form-error,
  #contactForm textarea.label-form-error,
  #contactCareerForm input.label-form-error,
  #contactCareerForm textarea.label-form-error {
    border-bottom: 1px solid #FF594E; }
#contactForm textarea,
#contactCareerForm textarea {
  height: 18vh;
  min-height: 100px; }
@media (max-width: 1600px) {
  #contactForm .half,
  #contactCareerForm .half {
    width: 100%;
    margin-right: 0;
    display: block; }
  #contactForm input,
  #contactForm textarea,
  #contactForm .control-label,
  #contactCareerForm input,
  #contactCareerForm textarea,
  #contactCareerForm .control-label {
    padding: 5px 10px; } }

.services-details .image {
  height: 4rem;
  margin-bottom: 1.4rem; }

.service-menu {
  height: 24vh;
  min-height: 160px;
  max-height: 200px;
  padding-top: .8rem;
  border: none;
  align-items: center; }
  .service-menu .nav-item {
    width: 9rem;
    margin-left: 1.4vw;
    margin-right: 1.4vw; }
  .service-menu .nav-link {
    padding: 0;
    border: none;
    text-align: center;
    opacity: .6;
    color: #9191a3;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in; }
    .service-menu .nav-link:hover, .service-menu .nav-link.active {
      opacity: 1;
      color: #000; }
  .service-menu .caption .name {
    font-weight: 600; }
  .service-menu .caption .number {
    font-size: 1.125rem; }
  @media (max-width: 1200px) {
    .service-menu .nav-item {
      margin-left: 0.8vw;
      margin-right: 0.8vw; } }
  @media (max-width: 991px) {
    .service-menu .nav-item {
      margin-left: 0;
      margin-right: 0; }
    .service-menu .caption .name {
      font-size: 1.125rem; } }

.service-content {
  height: 76vh;
  min-height: 600px;
  margin-left: 3.125vw;
  margin-right: 3.125vw;
  background-color: #f9faff; }
  .service-content .header {
    margin: 0; }
  .service-content .service-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%; }
  @media (max-width: 767px) {
    .service-content {
      height: auto;
      padding-top: 4rem; }
      .service-content .tab-content > .tab-pane {
        display: block;
        margin-bottom: 3rem; }
        .service-content .tab-content > .tab-pane.fade {
          opacity: 1; }
      .service-content .logotypes-technologies .d-flex {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap; }
      .service-content .logotypes-technologies .d-flex a {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 20px; } }
  @media (max-width: 575px) {
    .service-content {
      background: none; } }

.office {
  padding-bottom: 7vh; }
  .office .image {
    height: 41.5rem;
    width: 100%;
    margin-bottom: 7.5vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .office .name {
    font-weight: 600;
    font-size: 1.25rem; }
  .office .link {
    display: block;
    color: #9191a3; }
    .office .link:hover {
      color: #FF6900; }
  @media (max-width: 990px) {
    .office .image {
      height: 80vh;
      min-height: 26rem; } }
  @media (max-width: 767px) {
    .office .image {
      height: 20rem;
      background-position-y: 40%; } }

.section-team {
  padding-top: 13vh;
  background-color: #f9faff; }
  .section-team li {
    list-style-type: none; }

@media (min-width: 1440px) {
  .container {
    width: 1440px; }

  .person .caption {
    padding-left: 3rem;
    padding-right: 3rem; } }
@media (max-width: 1199px) {
  .hero {
    max-height: 900px; }

  .section-about__content {
    max-height: 800px; }

  .section-about__image-group .image {
    max-width: 80%; }

  .person .image, .person .image--hover {
    height: 20rem; }
  .person.hover-state {
    transform: scale(1.02);
    z-index: 1; } }
@media (max-width: 990px) {
  html {
    font-size: 14px; }

  .hero .content {
    max-width: 70%;
    margin: auto; }

  footer .container {
    width: auto; }
  footer .title {
    margin-top: 12px; }

  .modal .modal-dialog {
    padding-bottom: 2rem; }

  .person .caption {
    height: 7rem; }

  .simple-page .content,
  .section-news .content {
    padding-top: 2.5rem;
    padding-bottom: 1.375rem; }

  .section-about__content {
    max-height: 600px; }
    .section-about__content .card {
      background-color: white; }
      .section-about__content .card .name {
        color: #FF6900; }
      .section-about__content .card .media .image {
        opacity: 1; }

  .section-about__image-group .image {
    max-width: 80%; } }
@media (max-width: 767px) {
  .hero {
    height: 90vh; }
    .hero video {
      display: none; }
    .hero .overlay {
      opacity: 1; }
    .hero .content {
      max-width: 90%;
      padding-bottom: 2rem;
      margin: auto; }
    .hero .content-container {
      width: 100%; }

  .blog-post:hover .blog-post__title {
    color: #000; }

  .modal .modal-dialog {
    padding-bottom: 0; }

  .office {
    padding-bottom: 12.5vh; }
    .office .image {
      margin-bottom: 12.5vh; }

  .blog-hero .overlay {
    opacity: .7 !important; }

  .simple-page .blog-post {
    margin-left: 10px; }

  footer .logo {
    margin-bottom: 1.5rem; }
  footer .title {
    margin-bottom: 2rem; }
  footer .social-title {
    text-align: right;
    font-size: 16px; }

  section .header .title {
    margin-bottom: 10vh; }

  .section-service,
  .section-about,
  .services,
  .section-service {
    padding-top: 10vh;
    padding-bottom: 10vh; }

  .services .wrapper {
    margin-bottom: 2vh; }

  .section-team,
  .opinions {
    padding-top: 10vh; }

  .opinions {
    padding-bottom: 10vh; }

  .section-service .image {
    min-height: 14rem; }

  .cta-section {
    padding-top: 5.75rem;
    padding-bottom: 6rem; }
    .cta-section .logo {
      margin-bottom: 4vh; }
    .cta-section .title {
      margin-bottom: 4vh; }

  .section-about__content {
    height: auto;
    max-height: unset; }

  .section-about__image-group {
    position: relative;
    width: auto;
    height: 80vh;
    padding: 0;
    margin-bottom: 10vh; }
    .section-about__image-group .image {
      max-width: 510px;
      top: 6vw;
      bottom: 0;
      height: auto; }
    .section-about__image-group .image-center {
      background-position-y: 20%; }

  .huge-block--left::before {
    top: 0;
    bottom: 6vw; }

  .huge-block--right::before {
    top: 0;
    bottom: 6vw; }

  .logotype-carousel .image {
    height: 6rem;
    width: 18rem; } }
@media (max-width: 575px) {
  .logotypes-technologies .owl-prev,
  .logotypes-technologies .owl-next {
    display: none; }

  .hero {
    height: 100vh; }
    .hero .content {
      text-align: center;
      max-width: unset; }
    .hero .buttons {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
      -webkit-box-align: center !important;
      -webkit-align-items: center !important;
      -ms-flex-align: center !important;
      align-items: center !important; }
      .hero .buttons a {
        margin-right: 0; }
      .hero .buttons .btn {
        margin-bottom: 2rem; }

  .visible-xs-down {
    display: initial !important; }

  .blog-hero {
    height: 60vh !important; }
    .blog-hero .container {
      margin-left: 0;
      margin-right: 0; }

  footer .title {
    overflow: hidden;
    position: relative;
    padding-top: 1.25rem; }
    footer .title:before {
      content: "";
      position: absolute;
      top: 0;
      display: block;
      height: 3px;
      width: 2.125rem;
      border-radius: 1.5px;
      background-color: #FF6900;
      bottom: 0;
      top: unset;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%); }
  footer .social-title {
    text-align: center; }
  footer .social .fa {
    font-size: 1.5rem; }
  footer .contact .fa {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem; }
  footer .address {
    line-height: 2; }
    footer .address.fa {
      margin-bottom: 0; }

  .col-person {
    padding-left: 15px;
    padding-right: 15px; }

  .person {
    max-width: 30rem;
    margin-bottom: 15px; }
    .person .image,
    .person .image--hover {
      height: 26rem; }

  .section-team {
    padding-bottom: 10vh; }

  .section-about__image-group.huge-block--left .image {
    right: 0;
    margin-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    max-width: 90vw; }
  .section-about__image-group.huge-block--right .image {
    left: 0;
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    max-width: 90vw; }

  .huge-block--left::before {
    bottom: 10vw;
    width: 90vw;
    -webkit-transition: none 0.1s ease-in;
    -moz-transition: none 0.1s ease-in;
    -ms-transition: none 0.1s ease-in;
    -o-transition: none 0.1s ease-in;
    transition: none 0.1s ease-in; }

  .huge-block--right::before {
    bottom: 10vw;
    width: 90vw;
    -webkit-transition: none 0.1s ease-in;
    -moz-transition: none 0.1s ease-in;
    -ms-transition: none 0.1s ease-in;
    -o-transition: none 0.1s ease-in;
    transition: none 0.1s ease-in; }

  .logotype-carousel .image {
    height: 6rem;
    width: 80vw; } }
@media (max-width: 500px) {
  .hero .caption {
    padding-left: 8vw;
    padding-right: 8vw; } }
.blog-author .d-block .image-circle {
  margin-right: 25px; }

.logos h4, .logos .menuMobile .nav-link, .menuMobile .logos .nav-link {
  height: 34px;
  width: 362px;
  color: #ABB1AE;
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  text-align: center;
  margin: auto auto 3rem auto; }
.logos a {
  display: block;
  padding: 20px;
  padding-top: 0;
  padding-bottom: 50px;
  width: 100%; }
  .logos a img {
    width: auto !important;
    height: auto; }
  .logos a p {
    margin-bottom: 0;
    opacity: 0; }
  .logos a:hover p {
    opacity: 1; }

/*# sourceMappingURL=main.css.map */
