@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --brand-font: 'Lato';
  --brand-col: '#532fff';
  --pri-col: #323785;
  --sec-col: #3ca7e7;
  --blk-col: #333;
}
html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--brand-font);
  font-weight: 300;
  background-color: #F0F0F0;
}
section {
  float: left;
  width: 100%;
	background-color: #F0F0F0;
	position: relative;
	z-index: 1;
}
ul, ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1, h2, h3 {
  font-weight: 900;
  text-align: center;
}
.navbar-toggler {
  color: var(--blk-col);
  border: none;
  line-height: 30px;
  position: relative;
  z-index: 4;
}
.navbar-toggler:focus {
  outline: none;
}
.icon-bar {
  width: 22px;
  height: 2px;
  background-color: var(--blk-col);
  display: block;
  transition: all 0.2s;
  margin-top: 4px
}
.navbar-toggler {
  border: none;
  background: transparent !important;
}
.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggler .middle-bar {
  opacity: 0;
}
.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}
.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}
.navbar-collapse {
  text-align: center;
}
.navbar {
  font-weight: 300;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
}
.navbar a {
  color: var(--blk-col);
}
.navbar a:hover {
  color: var(--sec-col);
}
.navbar-brand {
  font-weight: 400;
  color: var(--pri-col);
}
.navbar-brand:hover {
  color: var(--pri-col) !important;
}
.navbar-brand img {
  max-width: 100px
}
.hilight {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  color: #fff;
  background: url("../images/hilight-bg.png") rgb(29, 68, 144) -50px 140px no-repeat;
  background-size: cover;
  padding-top: 1rem;
  position: relative;
}
.cloud-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/cloud-overlay.png") transparent center no-repeat;
  background-size: cover;
  opacity: .5;
}
.hilight-info {
  display: block;
  justify-content: center;
  align-items: center;
}
.hilight-info h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
}
.cloud-motto {
  text-align: center;
  width: 100%;
  float: left;
  white-space: nowrap;
}
.cloud-motto img {
  max-width: 70%;
}
@media (max-width: 575.98px) {
  .cloud-motto {
    white-space: wrap;
  }
  .cloud-motto img {
    max-width: 100%;
  }
}
.aws-cert img {
  max-width: 120px;
  width: 20%;
}
.cloud-info {
  padding: 0 5%;
  margin: 0 auto;
  text-align: center;
}
.more-btn {
  background-color: var(--sec-col);
  border-radius: 25px;
  padding: .3rem 1rem;
  color: var(--pri-col);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  color: #fff !important;
}
.more {
  color: var(--sec-col);
}
.more:hover {
  text-decoration: none;
}
.read-more-state {
  display: none;
}
.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .1s ease;
}
.read-more-wrap p {
  margin-bottom: 2px;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}
.read-more-state ~ .more:before {
  content: 'Read More';
}
.read-more-state:checked ~ .more:before {
  content: 'Show Less';
}
.service {
  padding: 5rem 0;
}
.service h2 {
  margin-bottom: 3rem;
}
.card-service {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
}
.card-service li {
  background-color: #fff;
  width: 48%;
  margin: .5rem 0;
  padding: 1rem;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}
.card-service li img {
  align-self: center;
  max-width: 100%;
}
.card-service li p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .card-service li {
    width: 24%;
  }
  .card-service li.w-100 {
    width: 49.3% !important;
  }
}
@media (min-width: 768px) {
  .hilight {
    height: 80vh;
    background-position: left bottom;
  }
  .hilight-info {
    display: flex;
    flex-flow: wrap;
  }
}
@media (min-width: 992px) {
  .hilight {
    justify-content: center;
    padding: 10%;
    background-position: center bottom;
  }
  .hilight-info, .cloud-info {
    width: 55%;
    align-self: flex-end;
    justify-content: flex-end;
    margin: inherit;
    text-align: right;
    padding: 0;
  }
	.cloud-motto{text-align: right;}
}
.usecase {
  padding: 5rem 0;
  text-align: center;
  background: rgb(50, 55, 133);
  background: linear-gradient(135deg, rgba(50, 55, 133, 1) 0%, rgba(12, 169, 226, 1) 100%);
}
.usecase h2, figcaption {
  color: #fff;
  margin-bottom: 3rem;
}
.usecase img {
  max-width: 100%;
}
.grid {
  position: relative;
  margin: 0 auto;
  padding: 1em 0 4em;
  max-width: 1000px;
  list-style: none;
  text-align: center;
}
.grid figure:first-child {
  width: 49.7%;
}
.grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 1px 1px 0px 0px;
  width: 24.8%;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}
.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  width: 100%;
  opacity: 0.5;
}
.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.grid figure figcaption::before, .grid figure figcaption::after {
  pointer-events: none;
}
.grid figure figcaption, .grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}
.grid figure h2 span {
  font-weight: 800;
}
.grid figure h2, .grid figure p {
  margin: 0;
}
.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}
figure.effect-usecase {
  background: var(--pri-col);
}
figure.effect-usecase img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
figure.effect-usecase:hover img {
  opacity: 0.3;
}
figure.effect-usecase figcaption::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #fff;
  content: '';
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}
figure.effect-usecase h2 {
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
}
figure.effect-usecase h2 i {
  font-style: normal;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
}
figure.effect-usecase figcaption::before, figure.effect-usecase h2 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}
figure.effect-usecase:hover figcaption::before, figure.effect-usecase:hover h2, figure.effect-usecase:hover h2 i {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media (max-width: 767px) {
  .grid figure {
    width: 100% !important;
  }
}
.team {
  padding: 5rem 0;
}
.team h2 {
  margin-bottom: 2rem;
}
.card-team {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
}
.card-team li {
  background-color: #fff;
  width: 48%;
  margin: .5rem 0;
  padding: 1rem;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}
.card-team li img {
  align-self: center;
  max-width: 100%;
}

.card-team li p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


.trust {
  text-align: center;
}
.trust img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .card-team li {
    width: 24%;
  }
  .card-team li.w-100 {
    width: 49.3% !important;
  }
}
.client {
  padding: 1rem 0;
}
.client h2 {
  margin-bottom: 2rem;
}
.card-client {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
}
.card-client li {
  background-color: #fff;
  width: 48%;
  margin: .5rem 0;
  padding: 1rem;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}
.card-client li.w-100 {
  width: 48% !important;
}
.card-client li img {
  align-self: center;
  max-width: 100%;
}
@media (min-width: 768px) {
  .card-client li {
    width: 24%;
  }
  .card-client li.w-100 {
    width: 49.3% !important;
  }
}
.contact {
  padding: 2rem 0;
}
.contact h2 {
  margin-bottom: 2rem;
}
.map {
  max-width: 550px;
  width: 100%;
  float: left;
  background-color: #fff;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 1rem;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
}
.about {
  /*float: left;
  padding-left: 1rem;
  width: 50%;*/
}
.address {
  float: left;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
}
.contac-icon {
  display: flex;
  justify-content: center;
}
.contac-icon li {
  padding: .5rem;
}
.contac-icon li img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .map, .about {
    width: 100% !important;
    max-width: inherit;
    padding: .5rem;
    margin-right: 0;
  }
}
.modal-body img {
  float: left;
	max-width: 200px;
}
.modal-body p {
  margin: 0;
  padding: 1rem 0;
}
.detail {
  padding: 2rem 0;
}
.detail h1 {
  padding: 2rem 0 1rem;
}
.detail h2 {
  font-size: 1.5rem;
  padding: 1rem 0 0;
  text-align: left;
}
.detail ul {
  padding-left: 2rem;
}
.detail li {
  list-style: circle;
  font-weight: 400;
}
.detail p {
  padding: 1rem 0;
  text-indent: 2rem;
}
.detail figure {
  text-align: center;
}
.detail img {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
}
.chat-box {
  position: fixed;
  bottom: 30px;
  right: 10px;
}
.chat-box img {
  width: 50px;
}
.chat-box:hover {
  text-decoration: none;
}
.chat-box strong {
  width: 60px;
  display: block;
  font-size: .5rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.50);
}
footer {
  float: left;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  background: rgb(50, 55, 133);
  background: linear-gradient(135deg, rgba(50, 55, 133, 1) 0%, rgba(12, 169, 226, 1) 100%);
  color: rgba(255, 255, 255, 0.9);
}
footer .copyright {
  font-size: .75rem;
}