
/******************** BASE STYLES ***********************/
body {
  font-family: 'Montserrat', sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: BebasNeue;
}

.wrapper {
  max-width: 960px;
  margin: 0px auto;
  padding: 70px 20px;
}

.row-wrapper {
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (min-width: 940px) {
  .next-to-fixed {
    margin-top: 63px;
  }
}

p,strong {
  color: #5c5c5c;
}

/*img {
  width: 100%;
}*/

@media only screen and (min-width: 600px) {
  .grid-sizer,
  .grid-item { width: 33.33%; }
}
  

.filter-button-group {
  background: #ae1f23;
  margin-bottom: 0px;
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 15px;
}

.filter-button-group .button {
  margin: 0px 30px;
  background: transparent;
  border-bottom: 2px solid transparent;
  padding: 10px 0px;
}

.filter-button-group .button.is-checked {
  border-bottom: 2px solid #fff;
}

/******************** END BASE STYLES *********************/


/******************** TOP BAR STYLES **********************/
/* Custom, iPhone Retina */
@media only screen and (min-width:1px) {

  .top-bar {
    background:  #ae1f23;
  }
  .top-bar ul {
    background-color: transparent;
  }
  .menu li a {
    text-transform: uppercase;
    position: relative;
    font-size: 13px;
    display: block;
    color:#fff;
  }
  .menu li a .angle {
    position: absolute;
    width: 10px;
    top: 15px;
    left: 5px;
  }
  .top-bar img {
    width: 125px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 640px) {
  .top-bar {
    padding: 0px;
  }
  .menu > li {
    display: inline-block;
  }
  .menu li a {
    padding: 25px 20px;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 950px) {
  .top-bar {
    padding: 0px 40px;
    width: 80%;
  }

  .top-bar-fixed {
    position: fixed;
    z-index: 1;
    top: 0px;
  }

  .menu li a {
    padding: 25px 20px;
  }
}
/******************** END TOP BAR STYLES ******************/


/******************** HOME STYLES *************************/
.orbit,.orbit-container,.orbit-slide {
  height: 100vh;
  overflow: hidden;
}

#slide-home-1 {
  background: url("../images/home/1.JPG");
  background-size: cover;
}

#slide-home-2 {
  background: url("../images/home/2.JPG");
  background-size: cover;
}

#slide-home-3 {
  background: url("../images/home/3.jpg");
  background-size: cover;
}

#slide-home-4 {
  background: url("../images/home/4.JPG");
  background-size: cover;
}

.orbit-bullets {
  position: absolute;
  margin: 0px 45px;
  top: 60%;
}
.orbit-bullets button {
  background-color: #fff;
  margin: 10px 0px;
  display: block;
  height: 9px;
  width: 9px;
  cursor: pointer;
}

.orbit-bullets button.is-active {
  background-color: #ae1f23;
}

.orbit-previous {
  left: auto;
  right: 18%;
  top: 70%;
}

.orbit-next {
  left: auto;
  right: 10%;
  top: 70%;
}

.orbit-slide h1 {
    color: rgb(255, 255, 255);
    line-height: 1;
    text-align: right;
    margin-right: 10px;
    border-right: 2px solid rgb(255, 255, 255);
    padding-right: 15px;
    font-size: 52px;
	text-shadow: 0px 0px 8px rgb(0 0 0 / 60%);
}

.slide-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-container img {
  width: 50px;
}

@media only screen and (min-width : 640px) {
  .orbit-slide h1 {
    font-size: 70px;
  }
  .slide-container img {
    width: 100px;
  }
}
/******************** END HOME STYLES *********************/


/******************** PROJECTS STYLES *********************/


.image-container {
  position: relative;
}

.image-container image {
  display: block;
  width: 100%;
  height: auto;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #ae1f23;
  background-color: rgba(174,31,35,0.6);
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-container .text {
  color: #000;
  font-size: 20px;
  position: absolute;
  top: 65%;
  background: #fff;
  width: 100%;
  left: 0px;
  height: 35%;
  padding: 15px;
}

.image-container .text p {
  color: #000;
  margin-bottom: 0px;
}

.image-container .text h5 {
  margin-bottom: 0px;
}


/******************** END PROJECTS STYLES *****************/



/******************** ABOUT US STYLES *********************/

.about-info {
  background: #efefef;
  padding: 30px;
}

.about-info p {
  color: #000;
}

.about-info p.legal {
  font-weight: 500;
}

.about-image_1 {
  margin: 20px 0px 40px 0px;
}

.last-paragraph {
  margin-bottom: 70px;
}

.pseudo_border {
    position:relative;
    display:inline-block;
    margin-bottom: 40px;
}
.pseudo_border:after {
    content:'';
    position:absolute;
    left:0;
    top:100%;
    margin:10px auto;
    width:50%;
    height:6px;
    background: #000;
}

.about_us_images {
  border-bottom: 7px solid darkgray;
  margin-bottom: 80px;
  padding-bottom: 60px;
}

iframe {
  width: 100%;
  margin-bottom: 40px;
}

/****************** END ABOUT US STYLES *******************/


/******************** CONTACT STYLES **********************/

/******************** END CONTACT STYLES ******************/
