/* Variables */
/*COMMON SECTION STYLES*/
.main-content {
  width: 100%;
  background-color: #e4e0e0;
  -ms-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.content-section, .banner-section {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}

.banner-section .section-heading, .banner-section .section-text {
  color: #fff;
  -webkit-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -ms-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -o-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
.banner-section .section-heading::after {
  background-color: #fff;
}

.anchor-target {
  height: 1px;
  position: absolute;
  top: -60px;
}
@media screen and (min-width: 992px) {
  .anchor-target {
    top: -80px;
  }
}

.section-heading {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.section-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #575a5b;
}

.section-text {
  width: 100%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-text {
    width: 60%;
  }
}

/*ABOUT SECTION*/
.about-section {
  background-color: #fff;
}

.about-author .quote {
  margin-bottom: 15px;
  padding: 30px 25px;
  border-radius: 12px;
  background-color: rgba(212, 209, 209, 0.7215686275);
  position: relative;
}
.about-author h4 {
  margin: 0;
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 26px;
  color: #575a5b;
}
.about-author .fa {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.4rem;
  line-height: 28px;
  -moz-column-rule: #d5d9da;
       column-rule: #d5d9da;
}
.about-author .fa.fa-quote-right {
  top: auto;
  left: auto;
  right: 16px;
  bottom: 16px;
}
.about-author .author {
  margin-bottom: 15px;
  position: relative;
  text-align: right;
}
.about-author .author .info {
  padding-left: 100px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #242a30;
}
.about-author .author small {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  -moz-columns: #999;
       columns: #999;
}
.about-author .image {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border: 5px solid #fff;
  position: absolute;
  left: -10px;
  top: -50px;
  background-color: #fff;
  border-radius: 50%;
}
.about-author .image img {
  max-width: 100%;
  border-radius: 50%;
}

/*SERVICES SECTION*/
.team-section {
  background-color: white;
}

.info-card {
  padding: 20px 0;
  text-align: center;
}
.info-card .fa {
  font-size: 6rem;
  color: #398edb;
  line-height: 70px;
}

/*TECH SECTION*/
.tech-section {
  background: transparent url(/WEBSITEV1/OnePagerWebSite/assets/images/slide-image-1.jpg) no-repeat fixed center center;
  background-size: cover;
}

.tech-card {
  padding: 20px 0;
  text-align: center;
}
.tech-card h3 {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  -webkit-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -ms-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  -o-text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

/*TEAM SECTION*/
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  perspective: 1000px;
  margin: 20px 0;
}

.flip-card-inner {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  text-align: center;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 50%;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}
.flip-card-front img {
  width: 100%;
}

.flip-card-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.flip-card-text h3 {
  margin-top: 0;
  color: #fff;
}
.flip-card-text p {
  color: #fff;
}

/*CONTACT SECTION*/
label {
  display: block;
  width: 100%;
  margin-bottom: 4px;
  color: #262626;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  display: block;
  width: 100%;
  height: 40px;
  margin-bottom: 6px;
  padding: 10px 4px 10px 6px;
  border: 1px solid #398edb;
  border-radius: 3px;
  background-color: #fff;
  color: #393d40;
}

textarea.form-control {
  height: 150px;
}

.input-validation-error {
  border-color: #ed1c24;
}

.field-validation-error {
  color: #ed1c24;
}

.company-info h5 {
  margin: 15px 0;
}

.list-inline li {
  display: inline-block;
}
.list-inline a:hover .fa, .list-inline a.active .fa {
  color: #005587;
}