/* Table of Contents:
	1. Navigation
  2. project images
*/

html * {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;

}


#preloader {
     position: fixed;
     left: 0;
     top: 0;
     z-index: 9999;
     width: 100%;
     height: 100%;
     /*background: #D91832;*/
     /*background-color: RGB(31, 43, 60);*/
     background-color: #0F0F0F;
     display: flex;
     justify-content: center;
     align-items: center;


 }

.spinner {

    	font: 700 3em/1 "Oswald", sans-serif;
    	letter-spacing: 0;
  	  display: block;
  	  margin: 0 auto;
      color: white;

  /* Clip Background Image */

  	  background: url('../images/lines.png') repeat-y;
  	  -webkit-background-clip: text;
  	  background-clip: text;

  /* Animate Background Image */


  -webkit-text-fill-color: transparent;
  -webkit-animation: aitf 80s linear infinite;

/* Activate hardware acceleration for smoother animations */

  -webkit-transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden;

}

@-webkit-keyframes aitf {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}

body{
  overflow-y: show;
}

/*
.header-top{
  background:#D91832;
  color: white;
padding: 1.5rem 0;
}*/



/* Navigation */

header {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 115px;
  background-color:white;
  text-align: center;
  z-index: 1;
  box-shadow: 0 1px 10px -1px #1d1d1d;
  box-sizing: border-box;
}

@media only screen and (min-width: 1170px) {
  header {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    height: 115px;
  }

  header #cd-logo {
    position: absolute;
    top: 8%;
    left: 14%;
    margin: auto 0;
  }

  header #cd-main-nav {
    display: inline-block;
    position: absolute;
    width: 100%;
    top: 0;
    right: 14%;


  }

}

#cd-logo img{
  height: 100%;
    transition: all ease-in-out 300ms;
}

#cd-logo img:hover{
  opacity: 0.6;
}

#cd-nav ul {
  /* mobile first */
  position: fixed;
  width: 70%;
  max-width: 400px;
  right: 5%;
  bottom: 20px;
  border-radius: 0.25em;
  background-color: #FFFFFF;
  text-align: left;
  visibility: hidden;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  /* remove overflow:hidden if you want to create a drop-down menu - but then remember to fix/eliminate the list items animation */
  overflow: hidden;
  z-index: 1;
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}
#cd-nav ul li {
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 0.3em;
  margin-left: 0;

}

#cd-nav ul.is-visible {

  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
  border-bottom: 3px solid #E20C1B;
  border-top: 3px solid #E20C1B;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);



  /*box-shadow: 0 0 5px rgba(104, 104, 104, 0.5);*/
}

#cd-nav ul.is-visible li:nth-child(1) {
  /* list items animation */
  -webkit-animation: cd-slide-in 0.2s;
  -moz-animation: cd-slide-in 0.2s;
  animation: cd-slide-in 0.2s;
   border-bottom: 1px solid #eff2f6;
}
#cd-nav ul.is-visible li:nth-child(2) {
  -webkit-animation: cd-slide-in 0.3s;
  -moz-animation: cd-slide-in 0.3s;
  animation: cd-slide-in 0.3s;
   border-bottom: 1px solid #eff2f6;
}
#cd-nav ul.is-visible li:nth-child(3) {
  -webkit-animation: cd-slide-in 0.4s;
  -moz-animation: cd-slide-in 0.4s;
  animation: cd-slide-in 0.4s;
   border-bottom: 1px solid #eff2f6;
}
#cd-nav ul.is-visible li:nth-child(4) {
  -webkit-animation: cd-slide-in 0.5s;
  -moz-animation: cd-slide-in 0.5s;
  animation: cd-slide-in 0.5s;
}
#cd-nav ul.is-visible li:nth-child(5) {
  -webkit-animation: cd-slide-in 0.6s;
  -moz-animation: cd-slide-in 0.6s;
  animation: cd-slide-in 0.6s;

}
#cd-nav li a {
  display: block;
  padding: 0.5rem;
  font-size: 0.8rem;
  color: #1F2B3C;
  text-decoration: none ;
  text-transform: uppercase ;
  font-weight: bold;
  margin-top: 0.8em;
    margin-bottom: 0.8em;


}
#cd-nav li:last-child a {
  border-bottom: none;
  margin-bottom: 0.6rem;
}


@media only screen and (min-width: 1170px) {
  #cd-nav ul {
    /* the navigation moves to the top */
    position: absolute;
    width: auto;
    max-width: none;
    bottom: auto;
    top: 36px;
    background: transparent;
    visibility: visible;
    box-shadow: none;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
  }
  #cd-nav li {
    display: inline-block;
  }
  #cd-nav li a {
    opacity: 1;
    display: block;
    margin: auto 0;
    color:#1F2B3C;
    margin-top: 1em;
    margin-bottom: 1em;

  }
  cd-main-nav{
    border 0;
    transition: all ease-in-out 300ms;
  }

  /*#cd-nav li a:hover {
  color: #9B071A;
  transition-timing-function: ease-in-out;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }*/


  #magic-line { position: absolute; bottom: -6px; left: 0; width: 100%; height: 2px; background: #D91832; }


  #cd-nav.is-fixed ul {
    /* when the user scrolls down, the navigation moves to the bottom right in Fixed position - as on touch devices */
  position: fixed;
  width: 90%;
  max-width: 400px;
  bottom: 20px;
  top: auto;
  background: #FFF;
  visibility: hidden;
  /*box-shadow: 0 0 40px rgba(24, 22, 23, 0.3);*/
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);

  }
  #cd-nav.is-fixed ul li {
    display: block;
  }


  #cd-nav ul.has-transitions {
    /* this class is used to bring back transitions when the navigation moves at the bottom right */
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;
    border-bottom: 3px solid #E20C1B;
    border-top: 3px solid #E20C1B;


  }

  #cd-nav .has-transitions li:not(a) {
    /* this class is used to bring back transitions when the navigation moves at the bottom right */
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;

    margin-left: 0;
    border-bottom: 1px solid #eff2f6;

  }

  #cd-nav ul.is-visible {
    /* this class is used to bring back the navigation animation - as on touch devices */
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
    transition: transform 0.3s, visibility 0s 0s;
  }
  #cd-nav ul.is-hidden {
    /* this class is used to animate the scale down the navigation when the user scrolls down with the navigation still open */
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
}

.cd-nav-trigger {
  position: fixed;
  bottom: 20px;
  right: 2.5%;
  width: 44px;
  height: 44px;
  background-color: #D91832;
  box-shadow: 0 0 5px rgba(5, 5, 4, 0.6);
  color: white;
  border-radius: 0.25em;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 2;


}
.cd-nav-trigger span {
  /* the span element is used to create the menu icon */
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  top: 50%;
  margin-top: -1px;
  left: 50%;
  margin-left: -10px;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  content: '';
  position: absolute;
  left: 0;
  background: inherit;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, background 0s;
  -moz-transition: -moz-transform 0.3s, background 0s;
  transition: transform 0.3s, background 0s;
}
.cd-nav-trigger span::before {
  top: -6px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-nav-trigger span::after {
  bottom: -6px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.cd-nav-trigger.menu-is-open {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

}
.cd-nav-trigger.menu-is-open span {
  background: rgba(232, 74, 100, 0);
}
.cd-nav-trigger.menu-is-open span::before, .cd-nav-trigger.menu-is-open span::after {
  background: white;
}
.cd-nav-trigger.menu-is-open span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-nav-trigger.menu-is-open span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}


@media only screen and (min-width: 1170px) {
  .cd-nav-trigger {
    /* the the menu triger is hidden by default on desktop devices */
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;
  }
  .is-fixed .cd-nav-trigger {
    visibility: visible;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-animation: cd-bounce-in 0.3s linear;
    -moz-animation: cd-bounce-in 0.3s linear;
    animation: cd-bounce-in 0.3s linear;
  }
}


@-webkit-keyframes cd-slide-in {
  0% {
    -webkit-transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes cd-slide-in {
  0% {
    -moz-transform: translateX(100px);
  }

  100% {
    -moz-transform: translateY(0);
  }
}
@keyframes cd-slide-in {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes cd-bounce-in {
  0% {
    -webkit-transform: scale(0);
  }

  60% {
    -webkit-transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-bounce-in {
  0% {
    -moz-transform: scale(0);
  }

  60% {
    -moz-transform: scale(1.2);
  }

  100% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-bounce-in {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }

  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/* Navigation end */


.jumbotron{
  color: white;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.jumbotron h1{
  font-size:2.3rem;

}



.line{
    display:inline-block;
    border-top: 3px solid #D91832;
    width:15rem;
    padding: none;
    margin: auto 0;
    margin-bottom: 0.8em;
}

.btn{
  border:none;
}

.btn:active{
  border:none;
}

.btn-primary{
  margin-left: 0.2em;
  background-color: rgba(0,0,0,0) ;
  border-radius: 0;
  font-weight: bold ;
  border: 2px solid #D91832;
}

.btn-primary:after,.btn-primary:before {
  transition: all 280ms ease-in-out ;

}

.btn-primary:hover{
  background-color:#D91832 ;
  box-shadow: none ;
  border: 2px solid #D91832;
}

.btn-primary:focus{
  box-shadow: none ;
  color: white ;
}

.btn-outline-secondary{
  color:#D91832 ;
  border: 2px solid #D91832;
  border-radius: 0 ;
  font-weight: bold ;
  padding-top: 0.4rem ;
  padding-bottom: 0.4rem ;
  cursor: pointer ;


}

.btn-outline-secondary:hover{
  background-color:#D91832 ;
  color: white ;
  border: 2px solid #D91832;
  box-shadow:none;
}


.btn-outline-secondary:focus
  {
    box-shadow:none;
  }




.slide1{

  background: url('../images/hero.jpg');
  background-position:bottom;
  background-size: cover;
  margin: 0;
  width: 100%;


}


  /* medium and up */
@media  (min-width: 768px) {

    .slide1{
    background-position:bottom center;
    height:500px;
    }


    .jumbotron h1{

      font-size:2.8rem;

    }


    .jumbotron .btn{
      margin-top: 0;
    }

    .line{
        display:inline-block;
        border-top: 2px solid #D91832;
        width:25rem;
    }

}



@media (max-width: 544px){


  .jumbotron h1{
    margin-top: 5%;
    display: block;
    font-size:1.9rem;
    }

    .jumbotron .btn{
      padding: 0.5rem;
      font-size: 1rem;

    }

    .second-cta h2{

          font-size:1.2rem;
    }


}

@media (max-width:440px){

  .carousel-inner h1{
    font-size: 1.7em;
    margin-top: 0;
  }

  .carousel-inner a{
    width: 100%;
  }
  .carousel-inner a~a{
    margin-top: 0.8em;

  }

}

.about-alumaster{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.about-alumaster h2{
  font-size:2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.about-alumaster h2 span{
  color: #D91832 !important;
  font-size:1.5rem;
  font-weight: bold;
}

.second-cta{
  background:#D91832 !important;
  color: white;
  text-transform: uppercase;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.second-cta h2{
    font-weight: bold;
}


.second-cta .btn-secondary{
  margin-top: 1.3rem;
  outline: 2px solid white !important;
  color: white !important;
  border-radius: 0 !important;
  font-weight: bold !important;
  border: none !important;
  cursor: pointer !important;
  background-color: rgba(0,0,0,0) !important;

}

.second-cta .btn-secondary:hover{
  background-color: white !important;
  color: #D91832 !important;
}

.services-background h1{
  text-transform: uppercase;
  font-weight: bold;
  color: #D91832;
}

.services-background p{
text-transform:capitalize;
/*color: #1F2B3C;*/
color:white;
margin-bottom: 2em;
}

.services-background{
  background-color: #1F2B3C;
  color: white;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  align-items:flex-end;
  vertical-align: text-top;
  flex-direction: column;
}

.services-background h2{
  font-weight: bold ;
  text-transform: uppercase ;
  color: #D91832;
  font-size:1.6rem;
}

.services-background .lead{
  font-weight: 400;
}

.projects{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.projects a{
  color: #D91832;
}

.projects h2{
  color: #D91832 ;
  font-weight: bold ;
  text-transform: uppercase;
}

.project-images{
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
}

.projects .btn-secondary{

    outline-width: thick;
}

.contact-cta {

  background:#D91832;
  color: #FFF;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
  width: 100%;
}

.contact-cta:before{
content:"";
position: relative;
margin: 0 auto;
top:-1.4rem;
border-left: 40px solid transparent;
border-right: 40px solid transparent;
border-top: 23px solid white;
}



.contact-cta p{
  text-transform: capitalize;
  font-weight: 400;
}

.contact-cta h2{
  font-weight: bold !important;
  color:white;
  text-transform: uppercase;
}



/* contact form */

.contact-form{
	margin:2em 0 0 0;
}
.contact-form h4,.address h4,.agileits-w3layouts-map h4{
    margin: 0 0 1em 0;
    color: #D91832;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-form a{
    text-decoration: none!important;
    color: #999999;
    font-size: 1rem;
}

.contact-form a:hover{
    text-decoration: none!important;
    color: #555;

}


  .last{

    margin-top: 2.5rem !important;
    margin-bottom: 1.5rem !important;

}

.styled-input.agile-styled-input-top {
    margin-bottom: 2rem;
}
.contact input[type="text"],.contact input[type="email"],.contact textarea{
    font-size: .9em;
    color: #999999;
    padding: 0.5em 1em;
    border: 0;
    width: 100%;
    border-bottom: 1px solid #D91832 !important;
    background: none;
    -webkit-appearance: none;
	  outline: none;
}
.contact textarea {
	min-height: 150px;
  resize: none;
}
/*-- input-effect --*/
.styled-input input:focus ~ label, .styled-input input:valid ~ label,.styled-input textarea:focus ~ label ,.styled-input textarea:valid ~ label{
    font-size: .9em;
    margin-bottom: 1.5rem;
    color: #D91832;
    top: -1.3em;
    -webkit-transition: all 0.125s;
	-moz-transition: all 0.125s;
	-o-transition: all 0.125s;
	-ms-transition: all 0.125s;
    transition: all 0.125s;
}
.styled-input {

    position: relative;
    margin-top: 2rem;
    border-bottom: #ececec 1.5px solid;
    width: 100%;
}



.styled-input:nth-child(1),.styled-input:nth-child(3){
	margin-left:0;
}
.textarea-grid{

	width:100%;
	margin-left:0;

}
.styled-input label {
	color: #8c8c8c;

    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
    font-weight: 400;
    font-size: .9em;
    display: block;
    line-height: 1em;
}


.styled-input input ~ span, .styled-input textarea ~ span {
    display: block;
    height: 2px;
    background: #D91832;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.125s;
    -moz-transition: all 0.125s;
    transition: all 0.125s;
    margin-bottom: -0.1rem;
}



.styled-input input:focus.styled-input textarea:focus {
	outline: 0;
}
.styled-input input:focus ~ span,.styled-input textarea:focus ~ span {
	width: 100%;
	-webkit-transition: all 0.075s;
	-moz-transition: all 0.075s;
	transition: all 0.075s;
}
/*-- //input-effect --*/

input{
  border-style: none;
  outline-style: none;
  text-shadow: none;
  box-shadow: none;
  width: 100%;

}

textarea{
  border-style: none;
  outline-style: none;
  box-shadow: none;
  width:100%;

}

.contact-container{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.contact-container .btn-lg{
  margin-top: 2rem;
}

.contact-container button{
  width: 100%;
}


/* end contact form */

ul {
  list-style: none;


}
.services-background li {

  list-style-position: inside;
}



.services-background li:before {
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
  color: #D91832;
  list-style-position: inside;
}


footer{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #D91832;

}

footer h6{

  color: white;
  font-size: 0.8rem;

}
.footer-social{
    margin-bottom: 0.5em;
}

.footer-social a{
  color: white;
  opacity: 0.7;
  font-size: 0.75em;
}

.footer-social a:nth-child(2){
  padding-left: 0.8em;
  padding-right: 0.8em;
}

.footer-social a:hover{
  opacity: 1;
  text-decoration: none;


}
.credit{
    font-size: 0.8rem;
    color: #f65858;
}
.credit a{
  color: #e6a976;
  opacity: 0.7;
  transition: ease-in-out 600;
  text-decoration: none;
}

.credit :hover{
  opacity: 1;
  transition: ease-in-out 600;
}


/* project images */

#instafeed{

  padding: 2rem;
}


#instafeed img{

  width: 50%;

  /*display: flex;
  flex-wrap: wrap;
  justify-content: space-around;*/

}


.insta-image img{
  opacity:0.9;
}

.insta-image img:hover{

opacity:1;
}



@media screen and (min-width:50em) {
  #instafeed img {
    width:calc(30% - 15px);
    height: auto;
    align-items: center;
    vertical-align: middle;
    justify-content: center;

  }


}

hr{
  border:none;
}

#status{
  text-align: center;

  display: inline-block;
  width: 100%;
  height: auto;
  padding-top: 1em;
  margin: 0 auto;
}

/*project images end*/
