@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css');

body {
  font-family: 'Montserrat', sans-serif;
}

p {
  color: #000;
}

h1, h2, h3 {
  text-transform: uppercase;
  color: #4d5858;
  font-weight: 600;
}

.display-4,
strong {
  font-weight: 600;
}

.display-4 {
  font-size: 2.5rem;
}

.py-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-section {
  padding-top: 100px;
}

.pb-section {
  padding-bottom: 100px;
}

.btn-main {
  background-color: #ffc629;
  border-radius: 0;
  color: #fff;
}

.btn-main:hover {
  color: #4d5858;
}

.btn-second {
  background-color: #4d5858;
  border-radius: 0;
  color: #fff;
}

.btn-second:hover {
  color: #000;
}

.navbar {
  transition: .3s ease-in-out;
}

.bg-static {
  background-color: #ffc629;
}

.navbar-nav {
  color: #fff;
}

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

.navbar-toggler i {
  font-size: 1.5em;
  color: #fff;
}

.nav-item {
  margin: 5px 0;
}

.navbar a {
  color: #fff;
  font-size: 1.1em;
}

.navbar-nav a:hover {
  color: #fff;
}

#hero h1,
#hero h3 {
  color: #fff;
}

#hero .carousel-item {
  min-height: 550px;
  background-size: cover;
}

#hero .carousel {
  padding-top: 73px;
  position: relative;
}

.carousel-control-prev,
.carousel-control-next {
  cursor: pointer;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-bg-1 {
  background:
  linear-gradient(
    rgba(0,0,0, .2),
    rgba(0,0,0, .2)
  ),
  url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.hero-bg-2 {
  background:
  linear-gradient(
    rgba(0,0,0, .2),
    rgba(0,0,0, .2)
  ),
  url('../img/hero-bg-1.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.hero-bg-3 {
  background:
  linear-gradient(
    rgba(0,0,0, .2),
    rgba(0,0,0, .2)
  ),
  url('../img/hero-bg-2.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.hero-bg-4 {
  background:
  linear-gradient(
    rgba(0,0,0, .2),
    rgba(0,0,0, .2)
  ),
  url('../img/hero-bg-3.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.fixed-text {
  padding-top: 73px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 10;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  color: #fff;
}

.fixed-text-inner {
  height: fit-content;
}

.title-decoration {
  height: 7px;
  width: 15px;
  background-color: #ffc629;
  margin: 15px 0;
}

#services {
  background-color: #4d5858;
}

#services h2,
#services h3,
#services p {
  color: #fff;
}

.divider-img {
  background: url('../img/divider-bg.jpg');
  height: 350px;
  background-size: cover;
  background-position: center 60%;
  position: relative;
}

.divider-img p {
  position: absolute;
  bottom: 0;
}

.service-img img {
  filter: grayscale(100%);
  transition: .3s ease-in-out;
}

.service-img p {
  font-size: .7em;
  text-transform: uppercase;
}

.service-img:hover img {
  filter: none;
}

#form {
  background:
  linear-gradient(
    rgba(255, 198, 41, 1),
    rgba(255, 198, 41, .85)
  ),
  url('../img/form-bg.jpg');
  background-size: cover;
}

#form label {
  color: #4d5858;
}

.form-control {
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #000;
  border-radius: 0;
  border: none;
}

.form-control:focus {
  box-shadow: none;
  border: none;
}

#thank-you {
  height: 80vh;
}

#thank-you a {
  color: #4d5858;
}

#footer {
  background-color: #4d5858;
}

#footer a,
#footer p {
  color: #fff;
}

#footer a:hover {
  text-decoration: none;
}

.footer-icons a {
  font-size: 2em;
  margin: 0 5px;
}

.footer-icons a:first-child {
  font-size: 1.6em;
}

#help-container {
    position: fixed;
    bottom: 10px;
    right: 5px;
    font-size: .9em;
    z-index: 300;
    cursor: pointer;
}

.fa-stack-2x {
	color: #00E676;
  transition: 0.3s ease-in-out;
}

.fa-inverse {
  color: #fff;
}

.fa-stack:hover .fa-stack-2x {
  color: #00aa57;
  transition: 0.3s ease-in-out;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

  #hero .carousel-item {
    min-height: 700px;
  }
  #hero .carousel {
    padding-top: 0;
  }

  .py-lg-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .pt-lg-section {
    padding-top: 100px;
  }

  .pb-lg-section {
    padding-bottom: 100px;
  }

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}
