*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  background-color: #333;
}

h2 {
  text-transform: uppercase;
  text-align: center;
}

.blue-text {
  color: #978d8d;
}

.wrapper {
  max-width: 2560px;
  width: 80%;
  margin: 0 auto;
}

.underline {
  margin: 0 auto 40px;
  width: 60px;
  height: 4px;
  background-color: #978d8d;
}

.scroll-fix::before {
  display: block;
  margin-top: -66px;
  height: 66px;
  content: '';
}

.visibility {
  visibility: hidden;
}

.jumbotron {
  margin: 0;
}

nav {
  text-transform: uppercase;
  -webkit-transition: background-color .6s;
  transition: background-color .6s;
}

nav a, nav i {
  color: #fff;
  -webkit-transition: color .3s;
  transition: color .3s;
}

nav a:hover {
  color: #978d8d;
}

nav i {
  padding: 10px;
}

nav .navbar-brand {
  font-weight: bold;
}

nav .active {
  color: #978d8d;
}

.shadow-bg {
  background-color: rgba(0, 0, 0, 0.8);
}

header {
  color: #fff;
  overflow: hidden;
}

header h1 {
  padding: 10px;
  text-transform: uppercase;
  font-size: 30px;
}

header .hero-img {
  position: relative;
  height: 100vh;
  background-image: url("../img/laptop-1209008_1280.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

header .hero-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -10;
}

header .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-align: center;
}

header .hero-text p {
  padding: 10px;
  font-size: 14px;
}

header .btn-outline-light {
  text-transform: uppercase;
}

header .fa-chevron-down {
  display: none;
}

#aboutus i {
  margin-top: 20px;
  font-size: 30px;
}

#aboutus h3 {
  font-size: 18px;
  text-transform: uppercase;
}

#aboutus p {
  font-size: 14px;
}

#aboutus .aboutus-hover {
  -webkit-transition: color .3s;
  transition: color .3s;
}

#aboutus .aboutus-hover:hover {
  color: #978d8d;
}

#aboutus-hero {
  color: #ddd;
  overflow: hidden;
}

#aboutus-hero .jumbotron {
  position: relative;
  padding: 60px 0;
  background-image: url("../img/blue.jpg");
  background-position: center;
  background-size: cover;
  z-index: 0;
}

#aboutus-hero .jumbotron h2 {
  font-size: 32px;
}

#aboutus-hero .jumbotron i {
  font-size: 35px;
}

#aboutus-hero .jumbotron p {
  font-size: 14px;
}

#aboutus-hero .about-shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -10;
}

#aboutus-hero .about-hero-item {
  margin: 10px 0;
}

#portfolio .carousel-item {
  position: relative;
  height: 600px;
}

#portfolio .carousel-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#portfolio .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  padding: 40px 0;
  background-color: rgba(0, 0, 0, 0.8);
}

#portfolio .carousel-indicators {
  padding-bottom: 20px;
}

#prices .jumbotron {
  background-color: #f9f9f9;
}

#prices .price-wrap {
  max-width: 2560px;
  width: 95%;
  margin: 0 auto;
}

#prices .price-box {
  margin: 20px 10px;
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.6);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

#prices .price-box h3 {
  color: #978d8d;
  text-transform: uppercase;
}

#prices .price-box span {
  font-weight: bold;
}

#prices .price-box i {
  padding: 0 5px;
  font-size: 23px;
}

#prices .price-box button {
  padding: 10px 20px;
  text-transform: uppercase;
}

#prices .price-box .price {
  font-size: 30px;
  font-weight: bold;
}

#prices .price-box:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#prices .price-text {
  margin-top: 30px;
}

#team .jumbotron {
  position: relative;
  background-image: url("../img/room-hero.jpg");
  background-attachment: fixed;
  background-size: cover;
  z-index: 0;
}

#team .jumbotron h2 {
  color: #ddd;
}

#team .team-shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

#team .card {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

#team .card img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

#team .card i {
  padding: 10px 20px;
}

#team .card .row {
  margin-left: 0;
  margin-right: 0;
}

#team .card:hover {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}

#team .card-body {
  height: 150px;
}

#team .card-title {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

#team .card-text {
  font-size: 54px;
}

#achievements .achievement-list {
  padding: 20px 0;
}

#achievements .achievement {
  text-align: center;
}

#achievements i {
  padding: 10px;
  font-size: 48px;
  color: #fff;
  text-shadow: 0 0 5px black;
}

#achievements .achievement-number {
  font-size: 22px;
}

#achievements .achievement-text {
  font-size: 13px;
  text-transform: uppercase;
}

#contact .jumbotron {
  position: relative;
  background-image: url(../img/contact.jpg);
  background-position: bottom;
  background-attachment: fixed;
  background-size: cover;
  z-index: 0;
}

#contact .jumbotron h2 {
  color: #fff;
  font-weight: bold;
}

#contact .jumbotron .underline {
  background-color: #ccc;
}

#contact .contact-shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(81, 84, 90, 0.83);
  z-index: -5;
}

#contact .contact-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

#contact .contact-us .contact-item {
  margin: 30px 0;
}

#contact .contact-us .contact-item h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#contact .contact-us .contact-item .social-media {
  font-size: 26px;
}

#contact .contact-us .contact-item .social-media a {
  padding: 10px;
  color: #fff;
  text-shadow: 0 0 5px black;
}

#contact .contact-us .contact-item .social-media a:hover {
  color: #ccc;
}

footer {
  color: #fff;
  background-color: rgb(19, 18, 18);
}


footer p {
  padding: 5px;
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 375px) {
  header h1 {
    font-size: 36px;
  }
  header .hero-text p {
    font-size: 16px;
  }
  #aboutus-hero .jumbotron h2 {
    font-size: 36px;
  }
  #aboutus-hero .jumbotron h3 {
    font-size: 32px;
  }
  #aboutus-hero .jumbotron p {
    font-size: 18px;
  }
  #team .card-text {
    font-size: 15px;
  }
}

@media (min-width: 411px) {
  #aboutus-hero .jumbotron {
    padding: 80px 0;
  }
}

@media (min-width: 500px) {
  #team .card-body {
    height: 120px;
  }
}

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