body {
  background-color: #fff;
}

/* First View
----------------------------------------------------- */
@media (min-width: 1151px) {
  #logo-wrap {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.bg-repair {
  background: linear-gradient(25deg, rgba(0, 128, 128, 0.6), rgba(0, 0, 0, 0.7)), url("../img/imgs/tools.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 7;
}

.bg-consultation {
  background: linear-gradient(25deg, rgba(0, 128, 128, 0.6), rgba(0, 0, 0, 0.7)), url("../img/imgs/team.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 7;
}

.bg-datarec {
  background: linear-gradient(25deg, rgba(0, 128, 128, 0.6), rgba(0, 0, 0, 0.7)), url("../img/imgs/businessman.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 7;
}

.bg-about {
  background: linear-gradient(25deg, rgba(0, 0, 1, 0.6), rgba(0, 0, 0, 0.6)), url("../img/imgs/business-meeting.jpg") no-repeat;
  background-size: cover;
  background-position-y: center;
  background-attachment: fixed;
  z-index: 7;
}

/* Page title 
----------------------------------------------------- */
#page_title_wrap {
  height: 93vh;
  background-size: cover;
  color: #fff;
  position: relative;
  text-align: center;
}
#page_title_wrap .page_title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#page_title_wrap .page_title h1 {
  margin: 0;
  text-transform: uppercase;
}
#page_title_wrap .page_title p {
  margin-top: 20px;
  line-height: 1.9;
  color: #bdbdbd;
}

/* Fixed Nav Bar 
----------------------------------------------------- */
#fixed-nav {
  width: 100%;
  background-color: #fff;
  color: #3f3e3e;
  height: 7vh;
  box-shadow: 0 10px 30px;
}
#fixed-nav .fixed-nav-left {
  float: left;
  line-height: 7vh;
}
#fixed-nav nav {
  float: right;
  display: inline-block;
  line-height: 7vh;
}
#fixed-nav nav li {
  float: left;
  display: inline;
  margin-left: 40px;
}
#fixed-nav nav li:first-child {
  margin-left: 0;
}
#fixed-nav nav li a {
  color: #3f3e3e;
}
#fixed-nav nav li a:hover {
  opacity: .7;
}
#fixed-nav nav button {
  margin: 0 5px 0 40px;
}

.fixed {
  position: fixed;
  top: 0;
  z-index: 9;
}

/* Procedures Bar 
----------------------------------------------------- */
#procedures {
  margin-top: 60px;
  color: #fff;
  position: relative;
  z-index: 0;
}
#procedures .procedures {
  display: flex;
  align-items: stretch;
  background-color: #008080;
}
#procedures .procedures .procedure {
  flex-grow: 1;
  text-align: center;
  position: relative;
}
#procedures .procedures .procedure:first-child:after, #procedures .procedures .procedure:nth-child(2):after, #procedures .procedures .procedure:nth-child(3):after {
  position: absolute;
  content: "";
  background-image: url("../img/icons/triangle-arrow.png");
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  right: 0;
}
#procedures .procedures .procedure h3 {
  margin: 10px 0 10px;
}
#procedures .procedures .procedure p {
  margin-bottom: 10px;
}

/* Services Options
----------------------------------------------------- */
#options {
  margin-bottom: 60px;
  position: relative;
  z-index: 0;
}
#options p {
  line-height: 1.9;
}
#options .options {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
#options .options .option {
  text-align: center;
  width: 480px;
  height: 300px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 3px;
  position: relative;
  transition: ease-in 0.3s;
}
#options .options .option:first-of-type {
  margin-left: 3px;
}
#options .options .option:last-of-type {
  margin-right: 3px;
}
#options .options .option:hover {
  box-shadow: 0 3px 6px 0 rgba(25, 25, 112, 0.3);
  -webkit-transform: translateY(-0.1875em);
  transform: translateY(-0.1875em);
}
#options .options .option > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
#options .options .option > div img {
  width: 65px;
}
#options .options .option > div h3 {
  margin: 10px 0 10px 0;
}

/* Service Details 
----------------------------------------------------- */
@media (min-width: 769px) {
  .detail {
    height: 70vh;
  }
  .detail .desc {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
  }
}
.detail {
  display: flex;
  overflow: hidden;
  /* img for Consultation */
  /* img for DataRecovery */
  /* img for Repair */
}
.detail:nth-child(even) {
  flex-direction: row-reverse;
}
.detail .box {
  width: 50vw;
  height: 100%;
  border: 1px solid #fff;
  background: #bdbdbd;
  position: relative;
}
.detail .box .desc {
  /* Consultation */
}
.detail .box .desc h2 {
  text-transform: uppercase;
  margin-bottom: 40px;
}
.detail .box .desc p {
  line-height: 1.9;
}
.detail .box .desc > div {
  font-weight: bold;
  display: flex;
  border-top: 1px solid #000;
}
.detail .box .desc > div p {
  margin-top: 20px;
  padding: 9px 18px;
  border: 2px solid #802000;
  color: #802000;
  text-transform: uppercase;
  line-height: normal;
}
.detail .box .desc > div a {
  margin: 23px 0 0 23px;
}
.detail .box .desc li {
  line-height: 1.9;
  position: relative;
  padding-left: 15px;
}
.detail .box .desc li:before {
  content: "";
  background: url("../img/icons/bullet.png") no-repeat;
  background-size: cover;
  width: 8px;
  height: 8px;
  position: absolute;
  display: inline-block;
  left: 0;
  top: 12px;
  line-height: 1.9;
}
.detail .cons1 {
  background: url("../img/imgs/meeting.jpg");
  background-size: cover;
  background-position: center;
}
.detail .cons2 {
  background: url("../img/imgs/learning.jpg");
  background-size: cover;
  background-position: center;
}
.detail .cons3 {
  background: url("../img/imgs/network.jpg");
  background-size: cover;
  background-position: center;
}
.detail .datarec1 {
  background: url("../img/imgs/broken-media.jpg");
  background-size: cover;
  background-position: center;
}
.detail .datarec2 {
  background: url("../img/imgs/hard-disk.jpg");
  background-size: cover;
  background-position: center;
}
.detail .datarec3 {
  background: url("../img/imgs/multipleHDD.jpg");
  background-size: cover;
  background-position: center;
}
.detail .rep1 {
  background: url("../img/imgs/computer.jpg");
  background-size: cover;
  background-position: center;
}
.detail .rep2 {
  background: url("../img/imgs/upgrades.jpg");
  background-size: cover;
  background-position: center;
}
.detail .rep3 {
  background: url("../img/imgs/service.jpg");
  background-size: cover;
  background-position: center;
}

/* About 
----------------------------------------------------- */
/* Common */
.about_sectionWrap {
  color: #fff;
  position: relative;
  height: 100vh;
}

.section-content {
  line-height: 1.9;
}

@media screen and (min-width: 1025px) {
  .about_sectionWrap .section-title {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    width: 50%;
    text-align: center;
  }
  .about_sectionWrap .section-content {
    width: 50%;
    text-align: justify;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
/* Goals */
#goals.bg1 {
  background: linear-gradient(5deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/imgs/street.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#goals h3 {
  margin-bottom: 10px;
}

/* Testimonial */
#testimonials {
  background: rgba(0, 128, 128, 0.7);
}
#testimonials blockquote {
  position: relative;
  overflow: visible;
  padding: 0 20px 0 20px;
  display: inline-block;
}
#testimonials blockquote:before {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 900;
  top: 0;
  left: 0;
}
#testimonials blockquote:after {
  position: absolute;
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 900;
  top: 0;
  right: 0;
}

/* Difference */
.bg2 {
  background: linear-gradient(5deg, rgba(43, 37, 63, 0.4), rgba(42, 37, 63, 0.4)), url("../img/imgs/data-center.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Contact Details */
#contact-details {
  background: #802000;
}
#contact-details .cd_innerWrap {
  display: flex;
}
#contact-details .cd_innerWrap div {
  text-align: left;
  width: 50%;
}
#contact-details .cd_innerWrap div h3 {
  margin: 20px 0 10px 0;
  display: inline-block;
  position: relative;
}
#contact-details .cd_innerWrap div h3:before {
  content: "";
  width: 50%;
  height: 2px;
  background: #fff;
  bottom: 0;
  position: absolute;
}

/*# sourceMappingURL=styles_subpages.css.map */
