body {
  font-family: "Roboto", sans-serif;
  background-color: #f8f9fa;
}

html, body {
  height: 100%;
}

section {
  padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #202124;
}

h3 {
  font-size: 30px;
  font-weight: 500;
}

p {
  font-size: 17px;
  line-height: 30px;
  color: #3c4043;
  font-weight: normal;
}

.bg-white {
  background-color: #fff;
}

.bg-alt {
  background-color: #174ea6;
}

.bg-trans {
  background-color: transparent;
}

.title-default {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  color: #202124;
  position: relative;
  margin-bottom: 30px;
}

.title-default::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -15px;
  width: 100px;
  height: 2px;
  background-color: #1a73e8;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.title-helper {
  font-size: 22px;
  color: #3c4043;
  font-weight: normal;
  text-align: center;
  margin-bottom: 50px;
}

.title-alt {
  font-size: 50px;
  color: #202124;
  font-weight: 500;
}

.my-btn {
  background-color: #1a73e8;
  color: #fff;
  font-size: 18px;
  padding: 8px 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  letter-spacing: 1px;
}

.my-btn:hover {
  background-color: #174ea6;
  color: #fff;
}

.my-btn:focus {
  box-shadow: none;
  outline: none;
}

.btn-large {
  font-size: 25px;
  padding: 10px 30px;
  font-weight: 500;
  letter-spacing: 1px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background: lightgray;
  border-radius: 20px;
  box-shadow: 0px 2px 5px 1px #000 inset;
}

.navbar {
  padding-left: 0;
  padding-right: 0;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-brand img {
  width: 100px;
}

.logo-alt {
  display: none;
}

.is-scrolling .logo-default {
  display: none;
}

.is-scrolling .logo-alt {
  display: block;
}

.fixed-top {
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.is-scrolling {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-light .navbar-nav .nav-item:last-child .nav-link {
  background-color: var(--theme-color);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: #ddd;
}

#home {
  height: 100%;
  position: relative;
  z-index: 0;
  background-image: url("../images/bg/home-bg.jpg");
  background-attachment: fixed;
}

#home::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.hero-inner {
  display: table;
  width: 100%;
  height: 100%;
}

.hero-content {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  color: red;
}

.hero-text h1 {
  color: #fff;
  font-size: 100px;
  font-weight: 500;
}

.hero-text p {
  font-size: 28px;
  color: #fff;
  margin: 30px 0;
  font-weight: normal;
}

.about-text {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
  border: 1px solid transparent;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.about-text:hover {
  border: 1px solid #1a73e8;
}

.about-img {
  overflow: hidden;
}

.about-img img {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.about-img:hover img {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.services-box {
  border: 1px solid transparent;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.services-box:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.services-box i {
  font-size: 50px;
}

.services-box h3 {
  margin: 20px 0;
}

.contact-form .form-control {
  padding: 10px;
  height: inherit;
  border-radius: 0;
}

.contact-form .form-control:focus {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid lightgray;
}

.contact-details ul li {
  position: relative;
  margin-left: 25px;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 10px;
}

.contact-details ul li a {
  color: inherit;
}

.contact-details ul li a:hover {
  text-decoration: none;
  color: #056df5;
}

.contact-details ul li i {
  position: absolute;
  left: -25px;
  top: 6px;
  color: #056df5;
}

/* Form Response Message */
.btn-query {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: rotate(90deg);
  transform-origin: center right;
  padding-left: 40px;
  padding-right: 40px;
}

form#contactForm {
  width: 100%;
}

#responseMsg {
  width: 100%;
  font-size: 16px;
}

.error {
  padding: 10px;
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
}

.success {
  padding: 10px;
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}

#footer {
  background-color: #252525;
  padding: 30px 0;
}

.copyright-text p {
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 1px;
}

.social-media ul li a {
  background-color: #ddd;
  color: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  border-radius: 100%;
  margin-left: 10px;
  font-size: 18px;
  border: none;
}

.social-media ul li a:hover .fa-facebook-f {
  color: #4267b2;
}

.social-media ul li a:hover .fa-twitter {
  color: #1da1f2;
}

.social-media ul li a:hover .fa-linkedin-in {
  color: #004b7c;
}

.social-media ul li a:hover .fa-instagram {
  color: #fb3958;
}

.social-media ul li a:hover .fa-google-plus-g {
  color: #DC4538;
}

@media (max-width: 991px) {
  .fixed-top {
    background-color: #252525;
  }

  .navbar-light .navbar-toggler {
    color: #ddd;
  }

  .hero-text h1 {
    font-size: 80px;
  }

  .hero-text p, .title-helper {
    font-size: 20px;
  }

  .title-helper {
    margin-bottom: 20px;
  }

  #footer .justify-content-end {
    justify-content: center !important;
  }

  .copyright-text p {
    text-align: center;
  }

  .social-media ul li a {
    margin: 0 5px;
  }
}
@media (max-width: 575px) {
  section {
    padding: 30px 0;
  }

  .hero-text h1 {
    font-size: 50px;
  }

  .title-default, .title-alt {
    font-size: 30px;
  }

  .about-text, .services-box {
    padding: 15px;
  }
}

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