:root {
  --myGray: #777;
}

.line-limit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limit to 2 lines */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-limit4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Limit to 4 lines */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.position-bottom8px{
  position: relative;
  bottom: 8px;
}

.position-bottom6px{
  position: relative;
  bottom: 6px;
}

.tag {
  margin-left: 10px;
  font-size: 0.75rem;
  padding: 4px;
  border-radius: 4px;
  background-color: white;
  color: var(--myGray);

}

.sologan {
  font-size: 0.75rem;

}

.footer-nav {
  list-style: none !important;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;

}

.footer-nav li {
  padding-left: 0;
}

.footer-nav li a {
  border: none !important;
  padding: 1.5rem 1rem;
}

footer .inner {
  margin: 0 auto;
  max-width: 65em;
  width: calc(100% - 6em);
}

.dir-col {
  flex-direction: column !important;
}

.dir-col p {
  text-transform: initial !important;
  margin-bottom: 2em !important;

}

.margin-left-1em {
  margin-left: 1em !important;
  margin-bottom: 0.5em !important;
}

.margin-left-2em {
  margin-left: 2.5em !important;
}

#two,
#four,
#six,
#eight {
  background-color: #d4d4ff09;
}

.copyRight {
  text-align: center;
}

@media screen and (max-width: 640px) {
  .copyRight {
    text-align: center;
  }
}

@media screen and (max-width:1024px) {
  #contact>.inner>.split>* {
    padding-top: 4em !important;
  }
}

#banner>.inner .content p {
  text-transform: initial !important;
  font-size: 1em !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
}

.email-section {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.email-section img {
  margin-right: 10px;
}

.card {
  position: relative;
  width: 220px;
  height: 320px;
  background: mediumturquoise;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
}

.card::before,
.card::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  background-color: lightblue;
  transition: all 0.5s;
}

.card::before {
  top: 0;
  right: 0;
  border-radius: 0 15px 0 100%;
}

.card::after {
  bottom: 0;
  left: 0;
  border-radius: 0 100% 0 15px;
}

.card:hover::before,
.card:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.5s;
}

.card:hover:after {
  content: url(/images/email.svg);
}

.team-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 1em;
  margin: 1em;
}

.flex-box-col {
  display: flex;
  flex-direction: column;
}

#testimonial .testimonial-item {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

#testimonial .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%
}

#testimonial .author {
  font-style: italic;
  margin-bottom: 5px;
  width: 70%;
  margin: 0 auto;
}

#testimonial .author-name {
  font-weight: bold;
}

.icon-prefix::before {
  content: url(/images/link.svg);
  margin-right: 10px;
}

.apple-badge {
  position: relative;
  top: 3px;
  left: 8px;
}

.apple-badge-detail {
  position: relative;
  top: 1px;
  left: 8px;
}

.flex-start{
 align-items: flex-start!important;
 justify-content: space-around;
    align-content: flex-end;
    flex-wrap: wrap;
}

#header-banner img {
  width: 100%;
  height: auto;
}

.test1{
  width: 100%;
}