/* Globals */
/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: 0.05rem solid #fff;
}

.bg-blue1 {
  background-color: rgba(0, 102, 204, 0.15);
}
.color-blue1 {
  color: #1d4087;
}

/*
 * Base structure
 */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: rgba(0, 102, 204, 0.35);
  font-family: Circular-Book, Arial, sans-serif;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}

.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/*
 * Header
 */
.bg-primary {
  background-color: #004f9f !important;
}

.header .logo {
  height: 45px;
  width: auto;
}

.header__top-area {
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
  display: block;
  height: 45px;
  line-height: 45px;
  font-size: 18px;
}

.header__top-area ~ .navbar-top-default {
  background-color: #ffffff;
  top: 45px;
  height: 65px;
}

.header-fixed .header__top-area {
  display: none;
}

.header-fixed .header__top-area ~ .navbar-top-default {
  top: 0;
}

.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 90px;
  width: 100%;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.header-fixed .navbar-top-default {
  height: 70px;
  position: fixed;
  z-index: 999;
  background: #ffffff;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.navbar-top-default .navbar-nav {
  margin-right: -0.5rem;
}
.navbar-top-default .navbar-nav .nav-item {
  margin-left: 1rem;
  position: relative;
}
.navbar-top-default .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  background: #fff;
  display: inline-block;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.navbar-top-default .navbar-nav .nav-link:hover::after,
.navbar-top-default .navbar-nav .nav-link.active::after {
  width: 100%;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
  width: 40%;
  position: fixed;
  right: 0;
  top: 0;
  background: #6ca7e1;
  z-index: 1032;
  height: 100%;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease,
    -o-transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  overflow: hidden;
}
.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.side-menu.before-side {
  width: 280px;
}
.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}
.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

/*side clode btn*/
.side-menu .btn-close {
  height: 33px;
  width: 33px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 30px;
  right: 15px;
  cursor: pointer;
}
.side-menu.before-side .btn-close {
  display: none;
}
.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 16px;
  content: " ";
  height: 24px;
  width: 2px;
  background: #fff;
  top: 5px;
}
.side-menu .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.side-menu .btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*side open btn*/

.sidemenu_btn.left {
  left: 15px;
  right: auto;
}
.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #ffffff;
  display: block;
}

.header-appear .navbar-simple .sidemenu_btn span {
  background: #666666;
}

.header-appear .navbar-gradient .sidemenu_btn span {
  background: #ffffff;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

.side-menu .inner-wrapper {
  padding: 3.5rem 5rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
}
.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}
.side-menu .side-nav {
  margin-top: 2.5rem;
  display: flex;
  flex: 1;
  align-items: flex-start;
}
.side-nav .navbar-nav .nav-item {
  display: block;
  margin: 10px 0;
  padding: 0 !important;
  opacity: 0;
  -webkit-transition: all 0.8s ease 500ms;
  -o-transition: all 0.8s ease 500ms;
  transition: all 0.8s ease 500ms;

  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
}
.side-nav .navbar-nav .nav-item:first-child {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.side-nav .navbar-nav .nav-item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.side-nav .navbar-nav .nav-item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.side-nav .navbar-nav .nav-item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.side-nav .navbar-nav .nav-item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.side-nav .navbar-nav .nav-item:nth-child(6) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.side-nav .navbar-nav .nav-item:nth-child(7) {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.side-nav .navbar-nav .nav-item:nth-child(8) {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.side-nav .navbar-nav .nav-item:nth-child(9) {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #fff;
  padding: 2px 0 3px 0 !important;
  font-size: 1.25rem;
  line-height: normal;
  position: relative;
}
.side-nav .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  background: #fff;
  display: inline-block;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

/* animation */

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-o-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-o-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/***** Content sections *****/
.section.cover-container {
  padding-top: 70px;
  height: auto;
  min-height: 100%;
}

.section-wrap {
  height: auto;
  min-height: calc(100vh - 70px);
  padding-bottom: 40px;
  position: relative;
}
.section-aos {
  overflow-x: hidden;
}

.gradient-text1 {
  background: #1d4087;
  background: -moz-linear-gradient(left, #1d4087 2%, #0069b4 82%);
  background: -webkit-linear-gradient(left, #1d4087 2%, #0069b4 82%);
  background: linear-gradient(to right, #1d4087 2%, #0069b4 82%);
  /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3264f5', endColorstr='#7202bb',GradientType=1 ); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-text {
  color: #0069b4;
  text-align: left;
}
.content-text-md-center {
  text-align: center;
}
.content-text-md-center h1 {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 auto;
}
.content-text h1 {
  color: #1d4087;
  font-size: 2rem;
  /* line-height: 1.5; */
  font-family: Circular-Bold, Arial, sans-serif;
  border-bottom: 3px solid #1d4087;
}

.content-text h4 {
  color: #6ca7e1;
  font-family: Circular-Medium, Arial, sans-serif;
}

.content-text p {
  font-size: 1.125rem;
}

.content-image {
  display: flex;
  align-content: center;
  justify-content: center;
  height: 100%;
}

.content-image img {
  max-width: 100%;
}

.underline {
  padding-bottom: 10px;
}
.txt-info {
  color: #17a2b8;
}

/***** HOME *****/
.video-container video {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.home-bg {
  background-repeat: no-repeat;
  background-image: url("../assets/images/levi9-bg.jpg");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.mask {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.25)),
    to(rgba(0, 0, 0, 0.35))
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.35)
  );
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/***** END HOME *****/

/***** HISTORY *****/
#history-origin .image-right {
  display: flex;
  flex: 1;
  background-image: url("../assets/images/Menno_and_Bernhard.jpg");
  background-size: cover;
  background-position: center center;
}

#history-timeline .container {
  margin-top: 2.5rem;
}
.timeline__wrapp {
  margin: 2rem;
  flex-basis: 80%;
}
.roadmap.roadmap--orientation-auto .roadmap__events__event .event .event__date {
  font-size: 1.25rem;
  color: #1d4087;
}
.roadmap.roadmap--orientation-auto .roadmap__events__event .event {
  font-size: 1rem;
  color: gray;
}
.roadmap.roadmap--orientation-auto .roadmap__events__event .event small {
  font-size: 0.875rem;
}
.in-progress {
  border: 1px dashed #ffc107;
  padding: 10px;
  display: inline-block;
}
/***** END HISTORY *****/

/***** COMPANY *****/

/* Customer intimacy */
.flexbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: hidden;
}

.flexbox .values-img {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 25%;
}
.flexbox .values-text {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}
.flexbox .values-text > div {
  margin-bottom: 2rem;
}
.values-img .item {
  display: flex;
  height: 150px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.values-img .item:nth-child(1) {
  background-image: url("../assets/images/pro_active.png");
}
.values-img .item:nth-child(2) {
  background-image: url("../assets/images/transparent.png");
}
.values-img .item:nth-child(3) {
  background-image: url("../assets/images/result-driven.jpg");
}
.values-img .item:nth-child(4) {
  background-image: url("../assets/images/loyal.png");
}
.values-img .item:nth-child(5) {
  background-image: url("../assets/images/fun.png");
}
#company-value-driven-video .video-container video {
  width: 100%;
  height: 100%;
  position: absolute;
}
.company-values {
  height: auto;
}
/* Company technology */
#campany-technology .flexbox {
  min-height: 460px;
}
#campany-technology .flexbox .values-img {
  flex-basis: 40%;
}
#campany-technology .flexbox .values-text {
  flex-basis: 40%;
}

/* Our beliefs */
.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.component .blue-card .container-fluid {
  left: 0;
  top: 0;
}
.component > .blue-card:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
  background-position: 50% 0;
  -ms-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
.component:nth-child(1) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-TEAMDREAM_DuoTone_Landscape-768x539.jpg");
}
.component:nth-child(2) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-Coffee-Copy-768x480.jpg");
}
.component:nth-child(3) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-Dart-768x513.jpg");
}
.component:nth-child(4) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-Microphone-768x512.jpg");
}
.component:nth-child(5) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-DRIVEGRIP_DuoTone_Landscape-Copy-768x511.jpg");
}
.component:nth-child(6) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-CARESHARE_PitStop_DuoTone_Landscape-Copy-e1540200049213-768x472.jpg");
}
.component:nth-child(7) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-TOUCHTECH_DuoTone_Landscape-768x543.jpg");
}
.component:nth-child(8) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-WORKHEART_DuoTone_Landscape-768x692.jpg");
}
.component:nth-child(9) > .blue-card:after {
  background-image: url("../assets/images/Levi9-campaign-SKILLWILL_DuoTone_Landscape-768x572.jpg");
}
.blue-card {
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.blue-card .text {
  text-align: left;
  color: #eceff1;
  padding: 2rem 3rem;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.25)),
    to(rgba(0, 0, 0, 0.35))
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.35)
  );
}
.blue-card .text small {
  display: block;
  font-size: 0.875rem;
}
.blue-card .text h4 {
  color: #fff;
  font-size: 1.2rem;
}
.rounded-circle-container {
  position: absolute;
  width: 90px;
  right: -60px;
  top: 50%;
  margin-top: -45px;
}
.rounded-circle-blue {
  width: 90px;
  background-color: #d9e8f7;
  z-index: 11;
  height: 90px;
  border-radius: 50%;
  position: absolute;
}

.rounded-circle-white {
  width: 60px;
  background-color: #fff;
  z-index: 12;
  height: 60px;
  border-radius: 50%;
  position: relative;
  top: 15px;
  left: 15px;
  border: 20px solid #6ca7e1;
}

/* Our talent */
#company-talent {
  background-image: url("../assets/images/map.png");
  background-position: center right;
  background-size: 50%;
  background-repeat: no-repeat;
}
.chartCount {
  margin-top: 32px;
}

/* Our board */
.w-md-90 {
  width: 90%;
}
.board-members,
.board-members-2 {
  display: inline-block;
  margin-top: 8px;
}
.board-member {
  display: inline-grid;
  vertical-align: top;
  text-align: center;
  color: #6ca7e1;
  margin: 8px 24px;
}
.board-member h5 {
  color: #1d4087;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-family: "Circular-Bold";
}
.board-member .member-photo {
  width: 180px;
  height: 180px;
  border: 5px solid #eee;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  margin-bottom: 15px;
  display: block;
  background-size: cover;
  position: relative;
}
.board-member:nth-child(1) .member-photo {
  background-image: url("../assets/images/BernhardVanOranje_Founder_Levi9website-300x300.jpg");
}
.board-member:nth-child(2) .member-photo {
  background-image: url("../assets/images/Frank-Budwilowitz.jpg");
}
.board-member:nth-child(3) .member-photo {
  background-image: url("../assets/images/PienOosterman_CEO_Levi9website-300x300.jpg");
}
.board-member:nth-child(4) .member-photo {
  background-image: url("../assets/images/DebbyJansen.jpg");
}
.board-member:nth-child(5) .member-photo {
  background-image: url("../assets/images/Menno-de-Jong_Founder-CFO_Levi9website.jpg");
}
.board-member:nth-child(6) .member-photo {
  background-image: url("../assets/images/paul.jpg");
}
.board-members-2 .board-member:nth-child(1) .member-photo {
  background-image: url("../assets/images/Menno-de-Jong_Founder-CFO_Levi9website.jpg");
}
.board-members-2 .board-member:nth-child(2) .member-photo {
  background-image: url("../assets/images/paul.jpg");
}
.board-member.extended-board:nth-child(1) .member-photo {
  background-image: url("../assets/images/JanDolinaj.jpg");
}
.board-member.extended-board:nth-child(2) .member-photo {
  background-image: url("../assets/images/ViktorKovac.png");
}
.board-member.extended-board:nth-child(3) .member-photo {
  background-image: url("../assets/images/AncaGafiteanu.png");
}
.board-member.extended-board:nth-child(4) .member-photo {
  background-image: url("../assets/images/ValentynKoryako.jpg");
}
.board-member .member-photo .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s ease-in 0.1s;
  -o-transition: all 0.5s ease-in 0.1s;
  transition: all 0.5s ease-in 0.1s;
}
.board-member .member-photo .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #6ca7e1;
  background: -moz-linear-gradient(left, #6ca7e1 2%, #1d4087 82%);
  background: -webkit-linear-gradient(left, #6ca7e1 2%, #1d4087 82%);
  background: linear-gradient(to right, #6ca7e1 2%, #1d4087 82%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3264f5', endColorstr='#7202bb',GradientType=1 );
  opacity: 0.5;
}

.board-member .member-photo:hover .overlay {
  opacity: 1;
  visibility: visible;
}

/***** END COMPANY *****/

/***** START SERVICES *****/
#our-services .image-left {
  display: flex;
  flex: 1;
  background-image: url("../assets/images/Levy9_impact.jpg");
  background-size: cover;
  background-position: center center;
}

.services__wrapp {
  padding: 3rem 0rem;
  flex-wrap: wrap;
  justify-content: center;
}
.service-item {
  text-align: center;
  height: 360px;
  width: 185px;
  border-radius: 8px;
  border: 2px solid #d9e8f7;
  margin: 2rem 1rem;
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.service-item .icon {
  width: 60px;
  height: auto;
  background-color: #d9e8f7;
  border: 2px solid #d9e8f7;
  margin-top: -30px;
}
.service-item h5 {
  color: #1434a0;
  font-size: 1.15rem;
  margin: 1rem auto;
}

.service-item .details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: gray;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.service-item .details span {
  display: block;
  margin-bottom: 0.5rem;
}
.item-co-creation {
  border-color: #009892;
}
.item-software-development {
  border-color: #ff7d77;
}
.item-software-architecture {
  border-color: #775dd0;
}
.item-application-system {
  border-color: #ffd203;
}
.item-testing-security {
  border-color: #1434a0;
}
.item-devops {
  border-color: #00a13a;
}
.item-cyber-security {
  border-color: #00b0f0;
}

#services-technologies .image-right {
  display: flex;
  flex: 1;
  background-image: url(../assets/images/tehnologies_cloud.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  height: 480px;
}
#services-technologies .content-image {
  justify-content: flex-end;
}
#services-technologies .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
#services-technologies .icons .icon {
  width: 120px;
  height: 100px;
  margin-right: 1rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
#services-technologies .icons .item {
  flex-basis: 50%;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-size: 1rem;
  color: #163c91;
  font-family: Circular-Bold, Arial, sans-serif;
  margin: 1rem 0;
}
.icons .item:nth-child(1) .icon {
  background-image: url("../assets/images/technologies_icons/BigData.png");
}
.icons .item:nth-child(2) .icon {
  background-image: url("../assets/images/technologies_icons/CloudNative.png");
}
.icons .item:nth-child(3) .icon {
  background-image: url("../assets/images/technologies_icons/JavaScript.png");
}
.icons .item:nth-child(4) .icon {
  background-image: url("../assets/images/technologies_icons/Java.png");
}
.icons .item:nth-child(5) .icon {
  background-image: url("../assets/images/technologies_icons/Microsoft_Net.png");
}
.icons .item:nth-child(6) .icon {
  background-image: url("../assets/images/technologies_icons/PHP.png");
}
/***** END SERVICES *****/
/***** END APROACH *****/
#approach-leadership .image-left {
  display: flex;
  flex: 1;
  background-image: url("../assets/images/Levi9-campaign-Microphone-768x512.jpg");
  background-size: cover;
  background-position: center center;
}
#approach-leadership .image-left img {
  opacity: 0;
}
/***** END APROACH *****/

/***** START CUSTOMERS *****/
#customer-intimacy h1 {
  margin-bottom: 3rem;
}
#customer-intimacy h3 {
  color: #1d4087;
}
#customer-intimacy .image-left {
  display: flex;
  flex: 1;
  background-image: url(../assets/images/talpa_customer.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#customer-intimacy .image-left img {
  opacity: 0;
}
#customer-intimacy .row.bg-white {
  flex-basis: 70%;
}

#customers-giarte .img-star {
  width: 200px;
  margin-left: 20px;
}

/***** END CUSTOMERS *****/
/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, 0.5);
}

.scroll-top-btn {
  font-size: 30px;
  line-height: 45px;
  color: #fff;
  display: none;
  height: 45px;
  width: 45px;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  text-decoration: none;
  z-index: 99;
  border-radius: 100%;
  /* background-color: #6ca7e1; */
  background-size: 200% auto;
  background-image: linear-gradient(
    to right,
    #004f9f 0%,
    #3264f5 51%,
    #004f9f 100%
  );
}
.scroll-top-btn:hover {
  background-position: right;
}

.section__scroll {
  position: absolute;
  bottom: 30px;
  width: 200px;
  margin: auto;
  display: block;
  cursor: pointer;
  padding-bottom: 20px;
  left: 0;
  right: 0;
  z-index: 99;
}
.section__scroll .chevron {
  margin-top: 20px;
  display: block;
  -webkit-animation: pulse 2s infinite;
  -o-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  color: #6ca7e1;
}

.chevron::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  vertical-align: top;
  width: 20px;
}
.chevron.bottom:before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

#home .section__scroll {
  /* visibility: hidden; */
}

@media screen and (max-width: 991px) {
  .w-sm-100 {
    width: 100%;
  }
  .header__top-area {
    display: none;
  }

  .header__top-area ~ .navbar-top-default {
    top: 0;
  }

  .side-menu {
    width: 100%;
    max-width: 380px;
  }

  .content-image img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
  }
  .z-index-1-md {
    z-index: 1;
  }
  .z-index-2-md {
    z-index: 2;
  }

  #campany-technology .flexbox {
    height: auto;
  }
  #campany-technology .col-lg-6:last-of-type {
    padding-left: 0;
  }
  #campany-technology .video-container {
    height: 350px;
    overflow: hidden;
  }
  #our-services .image-left,
  #history-origin .image-right,
  #services-technologies .image-right {
    background-image: none;
  }
  #services-technologies .image-right img {
    margin: 0 auto;
  }

  #services-technologies .icons .item {
    flex-basis: 33.33%;
  }
  #services-technologies .icons .icon {
    width: 100px;
    height: 80px;
  }

  #customer-intimacy .content-image {
    height: auto;
  }
  .customers-logo {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .content-text-left {
    text-align: left;
  }
  .content-text-left h1 {
    display: block;
    padding: 0;
    margin: 0;
  }

  .z-index-9-sm {
    z-index: 9;
  }
  .z-index-8-sm {
    z-index: 8;
  }
  .z-index-7-sm {
    z-index: 7;
  }
  .z-index-6-sm {
    z-index: 6;
  }
  .z-index-5-sm {
    z-index: 5;
  }
  .z-index-4-sm {
    z-index: 4;
  }
  .z-index-3-sm {
    z-index: 3;
  }
  .z-index-2-sm {
    z-index: 2;
  }
  .z-index-1-sm {
    z-index: 1;
  }
  .blue-card {
    align-items: center;
  }
  .blue-card .text {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .rounded-circle-container {
    top: auto;
    bottom: -30px;
    left: 50%;
    margin-left: -45px;
  }
  .flexbox {
    flex-direction: column;
    height: auto;
  }
  .values-img .item {
    height: 80px;
    width: 25%;
    background-position: left top;
    background-size: cover;
  }
  .flexbox .values-img {
    display: flex;
    flex-basis: 100%;
  }
  #campany-technology .flexbox .values-img {
    background-position: center;
  }
  #campany-technology .video-container {
    height: 250px;
  }

  .services__wrapp {
    flex-direction: column;
    align-content: center;
    width: 100%;
    max-width: 540px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .service-item {
    width: 100%;
    max-width: 380px;
    height: auto;
  }

  #services-technologies .icons .item {
    flex-basis: 50%;
  }
  #services-technologies .icons .icon {
    width: 80px;
    height: 60px;
  }

  #customers-giarte .img-star {
    width: 110px;
  }
}
