* {
    margin: 0;
    padding: 0;
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Roboto';
    color: black;
    font-weight: 100;
    text-decoration: none;
}




.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #285f9b;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it stays on top of everything */
    display: none; /* Hidden by default */
}

.cookie-popup.active {
    display: flex; /* Show the popup when active */
}

.cookie-popup .popup-content {
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cookie-popup p {
    margin: 0;
    font-size: 14px;
}

.cookie-popup a {
    color: #a31e1e;
    text-decoration: none;
}

.cookie-popup a:hover {
    text-decoration: underline;
}

.cookie-popup button {
    background-color: #a31e1e;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-popup button:hover {
    background-color: #a31e1e;
}







.cover {
    position: relative;
    height: 100vh;
    background: url(cover.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .cover.geo-cover {
    background: url(geo-cover.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .cover-backdrop {
    display: flex;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .cover-backdrop-arrow {
    position: absolute;
    color: #fff;
    bottom: 10px;
    left: 50%;
    animation: MoveUpDown 1.5s ease-in-out infinite;
    opacity: .6;
    transition: opacity 200ms ease;
  }

  @keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
  
  .cover-backdrop-arrow:hover {
    opacity: 1;
  }

  .cover-backdrop-arrow > * {
    width: 50px;
    margin-left: -25px;
    transform: rotate(90deg);
  }

  
  .header {
    overflow: hidden;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(49, 52, 107, 1);
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #fff;
  }
  
  .header-logo {
    padding: 0 20px;
    max-height: 30px;
  }
  
  .flex-spacer {
    flex-grow: 1;
  }
  
  .header-menu {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    margin: 0 1rem;
  }
  
  .header-menu {
    margin-right: 25px;
  }

  .main-menu {
    margin-right: 1rem;
  }
  
  .jumbo {
    color: #ffffff;
    margin: auto;
    text-align: center;
    max-width: 700px;
    font-size: 20px;
  }

  .jumbo > p {
    margin: 20px 0;
  }
  
  .jumbo-title {
    font-size: 60px;
    margin: 40px 0;
    font-weight: 800;
  }
  
  .jumbo-button {
    color: rgb(10, 143, 196);
    background: #ffffff;
    display: inline-block;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
    cursor: pointer;
    outline: none;
  }
  
  .jumbo-button:hover {
    opacity: 0.9;
  }

  .jumbo-button:active {
    position: relative;
    top: -1px;
    box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.3);
  }
  
  .big-title {
    font-size: 60px;
    margin: 20px 0px;
  }
  


.fade-in-1s {
    animation: fadein 1s ease-in-out;
    animation-iteration-count: 1;
}

.fade-in-2s {
    animation: fadein 2s ease-in-out;
    animation-iteration-count: 1;
}

.fade-in-3s {
    animation: fadein 3s ease-in-out;
    animation-iteration-count: 1;
}




/* .header-xs-menu {
    display: none;
    background: rgba(0, 0, 0, .85);
    top: 60px;
    left: 0;
    right: 0;
    position: absolute;
    flex-direction: column;
    z-index: 100;
  }
  
  .header-xs-menu.on {
    display: flex;
  }
  
  .header-xs-menu > a {
    margin: 0;
    display: inline-block;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #666;
  } */



/* burger menu */

.burger-wrapper {
    height: 44px;
    background-color: #32346b;
    position: relative;
    color: white;
    text-align: center;
    display: none;

    top: 0px;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 100;

}


#check-menu {
    display: none;
}


.logo-burger {
    position: absolute;
    left: 10px;
    height: 44px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: white;
}


.logo-image-burger {
    padding: 0 20px;
    width: 100%;
    max-height: 35px;
}


.burger-label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 100;
    line-height: 60px;
}


.burger-line {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 32px;
    height: 2px;
    transition: 0.5s all;
}


.first {
    height: 2px;
    background-color: #fff;
}

.second, .third {
    top: 22px;
    background-color: rgba(255, 255, 255, 1);
}

.fourth {
    top: 32px;
    height: 2px;
    background-color: #fff;
}


.burger-menu {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    transition: 0.5s all;
    max-height: 0;
    font-size: 0;
    overflow: hidden;
    z-index: 2;
}


.burger-button {
    display: block;
    text-decoration: none;
    color: white;
    width: 100%;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, .85);
}


#check-menu:checked ~ .burger-menu {
    max-height: 500px;
    font-size: 16px;
    color: red;
}

#check-menu:checked ~ .first {
    display: none;
}

#check-menu:checked ~ .second {
    transform: rotate(45deg);
}

#check-menu:checked ~ .third {
    transform: rotate(-45deg);
}

#check-menu:checked ~ .fourth {
    display: none;
}






@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

@media only screen and (min-width: 35em) {
    .header {
      height: 80px;
    }
  
    .header-logo {
      max-height: 35px;
    }
  }

  @media (max-width:941px) {

    .header {
        display: none;
    }
}

@media (max-width:940px) {

    .burger-wrapper {
        display: block;
    }
}





/* stats */

.stats {
    position: relative;
    height: 530px;
    background-image: url(tech.jpg);
    background-position: center center;
    background-size: cover;
  }
  
  .stats-backdrop {
    display: flex;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.90) 0%, rgba(177, 138, 255, 0.70) 100%);
  }
  
  .stats-wrapper {
    display: flex;
    max-width: 900px;
    padding: 0 10px;
    margin: auto;
    flex-direction: column;
    align-items: baseline;
  }
  
  .stats-item {
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
  }
  
  .stats-item > h1 {
    font-size: 40px;
    margin: 20px 0;
  }

  .stats-item > p {
    margin: 16px 0;
  }
  
  @media only screen and (min-width: 35em) {
    .stats-wrapper {
      flex-direction: row;
    }
  
    .stats-item {
      flex-grow: 1;
    }
  
    .stats-item > h1 {
      font-size: 60px;
    }
  }



/* solution */
.solution {
    text-align: center;
    padding: 20px;
    position: relative;
  }
  
  .lined-title {
    text-transform: uppercase;
    color: #fff;
    padding: 10px 50px;
    margin: 14px 0px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    background: #000;
    display: inline-block;
  }
  
  .lined-title:after {
    content: '';
    border-bottom: 1px solid #000;
    display: block;
    position: absolute;
    left: 50px;
    right: 50px;
    margin-top: -10px;
    z-index: -1;
  }
  
  .lined-sub-title {
    margin-top: 50px;
    border: none;
    border-bottom: 1px solid #000;
  }
  
  .solution > h2 {
    font-size: 24px;
    text-transform: uppercase;
    margin: 20px 0;
    font-weight: bold;
  }
  
  .solution > p {
    font-weight: 100;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
  }

  @media only screen and (min-width: 35em) {
    .solution {
      padding: 50px;
    }
  }
  

/* optimization */
.optimization {
    background: #404480;
    color: #fff;
    padding: 30px 20px;
    display: flex;
  }
  
  .optimization-content {
    text-align: center;
    font-size: 1.5rem;
    max-width: 900px;
    margin: 30px auto;
    box-shadow: 0 0 0 1px #fff, 0 0 0 5px #404480, 0 0 0 6px #fff;
    padding: 30px;
  }

  .optimization-content > h2 {
    margin: 30px 0;
  }
  
  .optimization-content .optimization-text {
    font-style: italic;
    margin: 10px 0;
    font-weight: 300;
  }


/* technology */
.technology {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
  }
  
  .technology-description {
    margin: 50px auto;
    text-align: center;
    padding: 0 20px;
    max-width: 500px;
  }
  
  .technology-description-title {
    font-size: 30px;
    margin: 25px 0;
  }
  
  .technology-description-text {
    font-style: italic;
    font-size: 20px;
    font-weight: 300;
    margin: 20px 0;
  }
  
  .technology-images {
    display: flex;
    flex-direction: column;
    max-width: 900px;
  }
  
  .technology-images-container {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .technology-images-container h3 {
    font-size: 28px;
    margin: 28px 0;
  }
  
  .technology-hr {
    margin: 10px auto;
    width: 150px;
  }
  
  .technology-title-big {
    font-size: 38px;
    margin: 50px auto;
  }
  
  .technology-gird {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
  }
  
  .technology-gird-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    flex-grow: 1;
    width: 250px;
    height: 200px;
    padding: 25px;
    /* min-width: 100px; */
    overflow: hidden;
    display: flex;
  }
  
  .technology-gird-cell > img {
    object-fit: contain;
    max-width: 100%;
    max-height: 200px;
  }
  
  @media only screen and (min-width: 35em) {
    .technology-images {
      margin: 30px auto;
      align-items: flex-start;
      justify-content: center;
      flex-direction: row;
    }
  
    .technology-images-container {
      width: 33%;
      flex-grow: 1;
    }
  
  
  }


/* faq */
.faq {
    background: #404480;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .faq > h2 {
    margin: 20px 0;
  }
  
  .faq-item {
    padding-left: 80px;
    background: url(checkmark.png) 0 20px no-repeat;
    max-width: 600px;
    margin-bottom: 30px;
  }
  
  .faq-item-title {
    margin: 19px 0;
  }

  .faq-item-text {
    font-weight: 100;
    color: #f0f0f0;
    margin: 16px 0;
  }
  
  .jumbo-button-faq {
    font-size: 16px;
    color: #000;
    margin-bottom: 40px;
  }

  
/* blog */
.blog-section {
    display: flex;
    flex-direction: column;
    background: #f2f2f2;
    padding: 60px 20px;
  }
  
  .blog-title {
    margin: auto;
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  .blog-article {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: auto;
    margin-bottom: 50px;
    align-items: flex-start;
  }
  
  .blog-article-title {
    margin: 20px 0;
    font-size: 28px;
  }
  
  .article-preview {
    margin-top: 10px;
    max-width: 100%;
  }
  
  .blog-article-description {
    font-weight: 200;
  }
  
  .article-button {
    display: inline-block;
    margin-top: 20px;
    background: #1f5bff;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  
  @media only screen and (min-width: 35em) {
    .blog {
      padding: 130px 20px;
    }
  
    .blog-article-title {
      margin: 0 0 20px 0;
    }
  
    .blog-article {
      flex-direction: row;
    }
  
    .blog-article-item {
      width: 50%;
      padding: 20px;
    }
  }
  
  /* news */
  
  .news {
    background: #404480;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    max-height: 300px;
    max-width: 900px;
    overflow: auto;
    border: #fff;
    border-style: double;
    border-width: 5px;
    border-radius: 10px;
    margin: 30px auto;
  }


/* cases */
.cases {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 60px 20px;
  }
  
  .cases-title {
    font-size: 38px;
    margin: 32px 0;
  }
  
  .cases-description {
    font-size: 22px;
    font-weight: 300;
    max-width: 560px;
    text-align: center;
    margin: 22px 0 40px;
  }
  
  .case-row {
    width: 100%;
    max-width: 940px;
    display: flex;
    flex-direction: column;
  }
  
  .case-item {
    padding: 30px 0;
  }
  
  .case-image {
    height: 0;
    padding: 0 20px 75% 20px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .case-image-shopping {
    background-image: url(shopping.png);
  }
  
  .case-image-card {
    background-image: url(card.png);
  }
  
  .case-image-realty {
    background-image: url(realty.png);
  }
  
  .case-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .case-item > h2 {
    font-size: 52px;
    margin: 0;
  }
  
  .case-item > p {
    font-weight: 300;
  }
  
  .case-divider {
    height: 80px;
    width: 100%;
  }
  
  @media only screen and (min-width: 35em) {
    .case-item {
      width: 50%;
      padding: 30px 20px;
    }
  
    .case-image {
      border-right: 20px solid #fff;
      padding: 0 20px 35% 20px;
    }
  
    .case-row-reverse .case-image {
      border-right: none;
      border-left: 20px solid #fff;
    }
  
    .case-row {
      flex-direction: row;
    }
  
    .cases {
      padding: 120px 20px;
    }
  
    .case-row-reverse {
      flex-direction: row-reverse;
    }
  }




/* send form */
.send-form {
    background: #727bc2;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
  }
  
  .send-form-title {
    font-size: 38px;
    margin: 32px 0 0;
  }
  
  .send-form-text {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    margin: 18px 0;
  }
  
  .send-form-field {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
  }
  
  .send-form-field label {
    display: block;
    font-weight: 300;
  }
  
  .send-form-input {
    width: 100%;
    font-size: 18px;
    padding: 8px;
  }
  
  .send-form-button {
    display: inline-block;
    border: none;
    margin: 10px auto;
  }
  
  .send-form-field sup {
    color: #990000;
    font-weight: bold;
  }
  
  .send-preloader,
  .send-success {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    background: rgba(0, 0, 0, .3);
  }
  .send-preloader.on,
  .send-success.on {
    display: flex;
  }
  .send-success {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  .send-success > * {
    color: #404480;
    margin: auto;
    padding: 20px 30px;
    background: #fff;
    font-size: 20px;
    max-width: 400px;
    box-shadow: 1px 1px 3px 3px rgba(0,0,0,0.3);
    border-radius: 10px;
  }
  
  .send-preloader img {
    margin: auto;
  }
  
  @media only screen and (min-width: 35em) {
    .send-form {
      padding: 60px 20px;
    }
  }



/* contact */
.contact {
    background: #404480;
    padding: 60px 20px;
    text-align: center;
  }
  
  .contact a {
    color: #000;
    text-decoration: none;
  }
  
  /* footer */
  .footer {
    display: flex;
    background: #31346b;
    padding: 20px 20px 30px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .footer a {
    margin-top: 20px;
    display: inline-block;
    width: 30%;
    color: #fff;
    text-decoration: none;
  }

  .hidden {
    width: 0px;
    height: 0px;
    display: none;
  }
  
  @media only screen and (min-width: 35em) {
    .footer {
      flex-direction: row;
      justify-content: space-between;
      padding-bottom: 60px;
    }
  
    .footer a {
      margin: 0 10px;
      width: auto;
    }
  }
  



