/* HEADER AND FOOTER CSS */
@import url("index.css");

/* INTODUCTION */
.intro-portion {
  background-size: cover;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  background-color: #111111;
  color: rgba(255, 255, 255, 0.5);
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-image: url("../images/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-top: 0;
  display: -ms-flexbox;
  height: 37rem;
  min-height: 37rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}
.intro-portion video {
  -moz-transform: translateX(50%) translateY(50%);
  -webkit-transform: translateX(50%) translateY(50%);
  -ms-transform: translateX(50%) translateY(50%);
  transform: translateX(50%) translateY(50%);
  bottom: 50%;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  position: absolute;
  right: 50%;
  width: auto;
}
.intro-portion:before {
  -moz-transition: opacity 3s ease;
  -webkit-transition: opacity 3s ease;
  -ms-transition: opacity 3s ease;
  transition: opacity 3s ease;
  -moz-transition-delay: 1.25s;
  -webkit-transition-delay: 1.25s;
  -ms-transition-delay: 1.25s;
  transition-delay: 1.25s;
  background: #111111;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.45;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
/* 
  .intro-portion:after {
    background: linear-gradient(135deg, #8c8ece 0%, #484a7d 64%);
    content: " ";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
  } */
.intro-portion .inner {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transition: opacity 1s ease, -moz-transform 1s ease;
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  -ms-transition: opacity 1s ease, -ms-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  opacity: 1;
  margin: 0 auto;
  width: 88%;
  position: relative;
  z-index: 5;
  color: #fff;
}
.intro-portion h1 {
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px black;
  line-height: 1.2;
  font-family: "Roboto";
  font-weight: bold;
}
.intro-portion p {
  font-size: 16px;
  color: white;
  width: 90%;
  margin: auto;
  margin-bottom: 5em;
  padding-top: 25px;
}
@media screen and (max-width: 991px) {
  .intro-portion h1 {
    font-size: 55px;
  }
  .intro-portion .inner {
    width: 99%;
  }
}
@media screen and (max-width: 763px) {
  .intro-portion p {
    font-size: 13px;
  }
  .intro-portion h1 {
    font-size: 30px;
  }
}
/* @media screen and (max-width: 530px) {
    .intro-portion p {
      font-size: 15px;
    }
  } */
/* CLIENT  */
.cekav-clients {
  padding: 0 80px;
  position: relative;
  background: #fdfd96;
  overflow: hidden;
  padding-bottom: 20px;
}
.client-logo {
  width: 70%;
  margin: 0 auto;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SERVICES */
.services {
  padding: 80px 100px;
}
.services h1 {
  font-size: 38px;
  text-align: center;
  line-height: 1.2;
  font-family: "Roboto";
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 15px;
}
.service {
  width: 90%;
  transition: 0.5s all;
  margin: 50px auto;
  border-radius: 15px;
  border: 1px solid #e7e7e7;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgb(238, 238, 238);
}
.service:hover {
  box-shadow: 0px 0px 20px rgb(179, 178, 178);
}
.service .service-header {
  background: #fff;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #484a7d;
  transition: 0.5s all;
}
.service:hover .service-header {
  background: #484a7d;
  color: #fff;
}
.service-header h3 {
  font-size: 28px;
  font-family: "Roboto";
  font-weight: bold;
  margin-top: 4%;
}
.service-header h6 {
  font-size: 20px;
  font-family: "Roboto";
  font-weight: bold;
  margin-top: 8%;
}
.service-description {
  position: absolute;
  transform: translateY(-30px);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.7s;
  width: 100%;
  background: #ffffff;
  font-weight: 600;
  padding: 15px 20px;
  margin-bottom: 2%;
  min-height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #484a7d;
}
.service:hover .service-description {
  position: relative;
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.service-description ul {
  text-align: left;
  padding: 0;
  width: 100%;
}
.service-description ul li {
  list-style-type: none;
  padding: 2px 0;
  padding-left: 2px;
  width: 99%;
  display: block;
  font-size: 14px;
}
.service-description p {
  font-size: 14px;
  width: 100%;
  margin: 10px 0;
}
.services img {
  width: 140px;
  margin-bottom: 5px;
}
@media screen and (max-width: 763px) {
  .services {
    padding: 20px 10px;
  }
  .service .service-header {
    background: #484a7d;
    color: #fff;
  }
  .service .service-description {
    position: relative;
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
