@import url('https://fonts.googleapis.com/css?family=Hind:400,700|Montserrat:400,700');

/***********************************************************
GENERAL
 **********************************************************/
html{
  /*font-size: calc(18px + 0.25vw);*/
  font-size: calc(112.5% + 0.25vw);
  font-size: -webkit-calc(112.5% + 0.25vw);
}

h1{
  font-family: Montserrat !important;
  font-size: 2.5em;
  text-align: center;
}

/* Medium and Up Screens*/
@media screen and (min-width: 600px) {
    h1{
      font-size: 3em;
    }
  }

h2{
  font-family: Montserrat !important;
  font-size: 1.5em;
  text-align: center;
}

/* Medium and Up Screens*/
@media screen and (min-width: 600px) {
    h2{
      font-size: 2em;
    }
  }

h3{
  font-family: Montserrat;
  font-size: 1.3em;
  text-align: center;
}

/* Medium and Up Screens*/
@media screen and (min-width: 600px) {
    h3{
      font-size: 1.5em;
    }
  }

h4{
  font-family: Montserrat;
  font-size: .9em;
  text-align: center;
}

p{
  font-family: Hind;
  font-size:16px;
  /*font-size: .7em;*/
  line-height: 2em;
}

nav ul li a{
	font-size:16px;
  /*font-size: .6em;*/
}

.pricing-btn{
  background-color: #1ed760;
  color: white;
  width:100%;
  height: 50px;
  font-size: 1em;
  font-family: Montserrat;
  font-weight: bold;
  text-align: center;
  line-height:50px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.pricing-btn:hover{
  background-color: #50f38a;
}

.pricing-btn p{
  line-height: 3.5em !important;
}


.full-green-btn{
  background-color: #1ed760;
  color: white;
  max-width: 250px;
  height: 50px;
  border-radius: 5px;
  font-size: 1em;
  font-family: Montserrat;
  font-weight: bold;
  text-align: center;
  line-height:50px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.full-green-btn a{
  color: white;
}

.full-green-btn:hover{
  background-color: #50f38a;
}

.full-green-btn p{
  line-height: 3.5em !important;
}

.ghost-btn{
  background-color: transparent;
  border: solid 3px #1ed760;
  color: #252525;
  max-width: 250px;
  height: 50px;
  border-radius: 5px;
  font-size: 1em;
  font-family: Montserrat;
  font-weight: bold;
  text-align: center;
  line-height: 15px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.ghost-btn a{
  color: #252525;
}

.ghost-btn p{
  line-height: 3em;
}

.ghost-btn:hover{
  background-color: #1ed760;
  color: white;
}

.circle{
  width: 100px;
	height: 100px;
	background: red;
  -moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
  display: inline-block;
  background-color: #1ed760;
}

.circle span{
  color: white;
  font-size: 60px;
  margin-top: 20px;
  display: inline-block;
}

.center-stuff{
 text-align: center;
}

strong{
  font-weight: bold;
}

.margin-top-small{
  margin-top: 25px;
}

/* Medium and Up Screens*/
@media screen and (min-width: 600px) {
    .margin-top-small{
      margin-top: 0;
    }
  }

hr {
  border-color: gray;
  height: 1px;
  margin: 25px 0;
}

.no-access{
  color: #d2d2d2 !important;
}

.error{
	text-align: center;
    background-color: #FF9494;
    padding: 10px;
    color: white;
    border: red solid 1.5px;
}

.alert{
	text-align: center;
    background-color: #8be484;
    padding: 10px;
    color: white;
    border: green solid 1.5px;
}

.logout-msg{
	text-align: center;
    color: white;
    background-color: #252525;
    margin: 35px 0;
    padding: 1% 0;
}

form p{
  font-weight: bold;
}

td, th{
  font-size: 16px;
}

.img-uploader-margin{
  margin: 50px 0;
}

.morecontent span {
    display: none;
}
.morelink {
    display: block;
    color: #1ed760;
    font-weight: bold;
}

.morelink:hover{
  color: #50f38a;
}


.trainer-image-edit{
  color: #1ed760;
  padding: 0 20px;
}

.trainer-image-edit:hover{
  color: #50f38a;
}



 /***********************************************************
 NAVIGATION
  **********************************************************/
nav{
  background-color: transparent;
  width: 100%;
  height: 50px;
  /*position: absolute;
  top: 3%; */
  margin-top: 15px;
  box-shadow: none !important;
}

.admin-nav{
  background-color: #252525;
  width: 100%;
  height: 64px;
  box-shadow: none !important;
  margin-top: 0;
}

.logo-text{
  font-family: Montserrat;
  color: white;
  font-size: 1.3em;
  margin-top: 0;
}

nav .brand-logo{
  font-size: 1.3em !important;
  position: static;
  display: inline;
}

@media only screen and (max-width: 992px){
nav .brand-logo {
  left: 0;
}

}

nav .button-collapse{
  float: right;
}

nav ul{
  float: right;
}

nav ul li{
  font-family: Montserrat;
}


nav ul a:hover{
  background-color: transparent !important;
  text-decoration: underline;
}

nav ul a{
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.brand-logo span{
  color: #1ed760;
  margin-right: 10px;
  position: relative;
  top: 2px;
  font-size: 30px;
}

#dropdown1{
  top:50px !important;
}

.dropdown-content{
  background-color: transparent !important;
  box-shadow: none !important;
}

.dropdown-content li>a{
  color: white;
}

.dropdown-content li:hover{
  background-color: transparent !important;
}

.dropdown-button i{
  margin-left: 0 !important;
}


/***********************************************************
HERO IMAGE SECTION
 **********************************************************/
.header-img{
  width: 100%;
  height: 70vh;
  display: inline-block;
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
}



.header-img:after {
  content: "";
  background-color: gray;
  background-image: url(../img/index-hero4.jpg);
  background-size: cover;
  background-position: center 80px;
  /**background-position: 0px 275px;**/
  position: absolute;
  height: 140%;
  width: 100%;
  transform: skewY(2.5deg);
  top: -50%;
  z-index: -2;
  left: 0;
}

/* Large Screens*/
@media screen and (min-width: 993px) {
  .header-img:after {
    background-position: center 80px;
  }
}

.header-img h1{
  color: white !important;
}

.our-core{
  margin-left: 0;
  margin-top: 15px;
  display: inline-block;
}

/* Large Screens*/
@media screen and (min-width: 993px) {
  .our-core{
    margin-left: 15%;
  }
}


.header-text-center{
  margin-top: 15vh;
}

.header-img .full-green-btn{
  margin: 0 auto;
}

/***********************************************************
CALL TO ACTION SECTION
 **********************************************************/

.cta h2{
  color: #2c2c2c;
  margin-bottom: 0;
}

.cta h4{
  color: #1ed760;
  line-height: 1.5em;
}

.cta h3{
  padding: 2% 5%;
}

.cta-border{
  border: solid #252525 1px;
  padding-bottom: 50px;
}

.cta img{
  max-width: 100%;
  height: auto;
}

.cta .full-green-btn{
  margin: 0 auto;
}


.cta-bottom-p{
  text-align: center;
  margin: 2em 5%;
  line-height: 1.5em;
}

.wod-name{
  color: black !important;
  text-align: left;
  margin-bottom: 0 !important;
}

.wod-date{
	font-size:14px;
  /*font-size: .6em;*/
  font-family: Montserrat;
}

.wod-btn{
  margin: 15px 0 !important;
  margin-bottom: 0 !important;
}

.wod-box{
  padding: 2% 5%;
}

.cta-box{
  margin-top: -7px;
}

.wod-reps-index{
	margin-left: 10px;
}



/***********************************************************
GREEN DIVIDER SECTION
 **********************************************************/
.green-divider-section{
  width: 100%;
  height: 125px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-bottom: -12px;
}

/* Medium and Up Screens*/
@media screen and (min-width: 600px) {
    .green-divider-section{
      height: 200px;
    }
  }

.green-divider-section:after {
  content: "";
    background-color: #1ed760;
    position: absolute;
    height: 210%;
    width: 135%;
    transform: skewX(-81deg);
    top: -11.5%;
    z-index: -2;
}

/* Large Screens*/
@media screen and (min-width: 993px) {
  .green-divider-section:after {
    top: -10%;
    transform: skewX(-86deg);
  }
}


/***********************************************************
WHAT WE OFFER SECTION
 **********************************************************/

.what-we-offer{
  background-color: #252525;
  padding: 80px 0;
}

.what-we-offer h2{
  color: white;
  margin-bottom: 0;
}

.what-we-offer h4{
  color: white;
  line-height: 1.5em;
}

.what-we-offer h3{
  color: white;
  margin: 0;
  margin-top: 5%;
}

.what-we-offer p{
  color: white;
  line-height: 1.5em;
}

.what-we-offer-bottom-margin{
  margin-bottom: 25px;
}

.what-we-offer a{
  font-size: 16px;
  color: #1ed760;
  font-family: Montserrat;
}

.what-we-offer a:hover{
	color:#50f38a;
}

.what-we-offer a span{
  margin-left: 10px;
  position: relative;
  top: 2px;
}

/***********************************************************
PICK A PLAN SECTION
 **********************************************************/

 .pick-a-plan{
   padding: 80px 0;
 }

 .pick-a-plan h2{
   color: #2c2c2c;
   margin-bottom: 0;
 }

.pick-a-plan h4{
  color: #1ed760;
  line-height: 1.5em;
}

.green-banner{
  background-color: #1ed760;
  color: white;
  text-align: center;
  padding: 1em 0;
}

.pick-a-plan p{
  text-align: center;
  margin: 10%;
}

.pick-a-plan ul{
  text-align: center;
  font-size: 16px;
}

.pick-a-plan ul li{
  padding: 5px 0;
}

.pick-a-plan ul li i{
  margin-right: 10px;
}

.pick-a-plan-name{
  font-size: 1.2em;
  margin: 0 !important;
  font-family: Montserrat
}

.pick-a-plan-time{
  font-size: 0.6em;
  font-weight: bold;
  margin: 0 !important;
}

.pick-a-plan .full-green-btn{
  margin: 10% auto;
}

.pick-a-plan .ghost-btn{
  margin: 0 auto;
}

.pick-a-plan .ghost-btn p{
  margin: 0;
}

.pick-a-plan-border{
  border: solid #252525 1px;
}

/* Large Screens*/
@media screen and (min-width: 993px) {
  .pick-a-plan-border{
    margin-bottom: 0;
  }
}

.pick-a-plan h3{
  margin: 10%;
}


/***********************************************************
SUB HEADER SECTION
 **********************************************************/



.sub-header-img{
  width: 100%;
  height: 40vh;
  display: inline-block;
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
}



.trainer-header-img:after {
  content: "";
  background-color: gray;
  background-image: url(../img/subpage-hero.jpg);
  background-size: cover;
  background-position: center 50px;
  /**background-position: 0px 275px;**/
  position: absolute;
  height: 140%;
  width: 100%;
  transform: skewY(2.5deg);
  top: -50%;
  z-index: -2;
  left: 0;
}

/* Large Screens*/
@media screen and (min-width: 993px) {
  .trainer-header-img:after {
    background-position: center 0px;
  }
}

.sub-header-img h1{
  color: white !important;
}


/***********************************************************
TRAINERS - MEET OUR TRAINERS SECTION
 **********************************************************/
.trainers-meet-our-trainers-section{
  padding: 80px 0;
  background-color: #252525;
}

.trainers-meet-our-trainers-section h2{
  color: white;
}

.trainer-image-container{
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.trainer-image-container img{
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center center;
}

.meet-the-trainers-box-border{
  padding: 2% 5%;
}

.meet-the-trainers-box-border h3{
  color: white;
  text-align: left;
}

.meet-the-trainers-box-border p{
  color: white;
}

.trainer-title{
  font-size: 14px;
  font-family: Montserrat;
  color: #1ed760 !important;
}

/***********************************************************
TRAINERS - JOIN CORE FITNESS SECTION
 **********************************************************/
.trainers-join-core-fitness-section{
  padding: 80px 0;
}

.trainers-join-core-fitness-section .ghost-btn{
  margin: 0 auto;
}

.trainers-join-core-fitness-section .ghost-btn p{
  line-height: 1em !important;
}

.trainers-join-core-fitness-section h2{
  margin: 0;
}


/***********************************************************
MISSION - WHAT MAKES CORE FITNESS GREAT SECTION
 **********************************************************/
 .mission-what-makes-us-section{
   padding: 80px 0;
   background-color: #252525;
   text-align: center;
 }

 .mission-what-makes-us-section h2{
   color: white;
 }

 .mission-what-makes-us-section .circle{
   margin-bottom: 25px;
 }


 .mission-box-border{
   border: solid white 1px;
   padding: 2% 5%;
 }

 .mission-box-border h3{
   color: white;
   text-align: center;
 }

 .mission-box-border p{
   color: white;
 }


 /***********************************************************
 PLANS & PRICING - BENEFITS SECTION
  **********************************************************/
.pricing-benefits-section .full-green-btn{
  margin: 10% auto;
}

.pricing-benefits-section h3{
  margin: 10%;
}

.pricing-benefits-section p{
  text-align: center;
}

.pricing-benefits-section ul{
  text-align: center;
  font-size: 16px;
}

.pricing-benefits-section ul li{
  padding: 5px 0;
}

.pricing-benefits-section ul li i{
  margin-right: 10px;
}

.pricing-benefits-section .ghost-btn{
  margin: 0 auto;
}

.pricing-benefits-section .ghost-btn p{
  line-height: 1em !important;
}

.have-question{
  margin: 0;
  margin-top: 160px;
}

/***********************************************************
 CONTACT - MESSAGE SECTION
  **********************************************************/
  .contact-section h4{
	  text-align:left;
  }

  .contact-section input[type=text]{
	  border:solid 1px #252525;
	  height:2em;
	  margin:0;
    padding: 10px 20px;
    font-size: 16px;
    width: calc(90% - 40px);
  }

  .contact-section input[type=text]:focus{
    border-bottom: none !important;
    box-shadow: none !important;
    border: solid #1ed760 1px !important;
  }

  .contact-section input[type=submit]{
  background-color: #1ed760;
  width: 90%;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-family: Montserrat;
  text-align: center;
  line-height:50px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.contact-section input[type=submit]:hover{
  background-color: #50f38a;
}


  textarea{
	 height: 7em;
    resize: none;
    border: solid 1px #252525;
	   width:90%;
     padding: 10px 20px;
  }

  textarea:focus{
    border: solid #1ed760 1px !important;
  }

  .contact-section p span{
	color: #1ed760;
    font-size: 35px;
    margin-right: 10px;
    position: relative;
    top: 10px;
}

/***********************************************************
WOD COLLECTION SECTION
 **********************************************************/

 .wod-collection-section{
   margin-top: 80px;
 }

 .wod-collection-section .ghost-btn{
   margin: 0 auto;
 }

 .wod-collection-section .ghost-btn p{
   line-height: 1em !important;
 }

 /***********************************************************
 CLASSES COLLECTION SECTION
  **********************************************************/

  .classes-collection-section{
    margin-top: 80px;
  }

  .classes-collection-section a span{
    margin-left: 10px;
    position: relative;
    top: 2px;
  }

  .classes-collection-section .ghost-btn{
    margin: 0 auto;
  }

  .classes-collection-section .ghost-btn p{
    line-height: 1em !important;
  }

  /***********************************************************
  MEMBERSHIP FORM SECTION
   **********************************************************/

   select{
     display: block !important;
     border: solid 1px #252525;
     padding: 15px;
     height: auto;
     font-size: 16px;
 }

 .membership-form-section h4{
  text-align:left;
 }

 .membership-form-section input[type=text]{
   border:solid 1px #252525;
   height:2em;
   margin:0;
   padding: 10px 20px;
   font-size: 16px;
   width: calc(100% - 40px);
 }

 .membership-form-section input[type=text]:focus{
   border-bottom: none !important;
   box-shadow: none !important;
   border: solid #1ed760 1px !important;
 }

 .membership-form-section input[type=submit]{
 background-color: #1ed760;
 width: 100%;
 color: white;
 border: none;
 border-radius: 5px;
 font-size: 1em;
 font-family: Montserrat;
 text-align: center;
 line-height:50px;
 -o-transition: .5s;
 -ms-transition: .5s;
 -moz-transition: .5s;
 -webkit-transition: .5s;
 transition: .5s;
 padding: 15px 0;
}

.membership-form-section input[type=submit]:hover{
 background-color: #50f38a;
}

/***********************************************************
SIGN IN SECTION
 **********************************************************/
.signin-section{
  background-color: white;
  padding: 10% 0;
}

.signin-box{
  background-color: white;
  border: solid #252525 1px;
  margin: 0 auto;
  width: 95%;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
  .signin-box{
    width: 95%;
  }
}

/*TABLETS*/
@media only screen and (min-width: 640px) {
  .signin-box{
    width: 75%;
  }
}

/*DESKTOP*/
@media only screen and (min-width: 960px) {
  .signin-section{
    padding: 5% 0;
  }

  .signin-box{
    width: 50%;
  }
}

.signin-section input[type=email]{
  width: calc(100% - 40px);
  border:solid 1px #252525;
  height:2em;
  margin:0;
  padding: 10px 20px;
  font-size: 16px;
}

.signin-section input[type=email]:focus{
  border-bottom: none !important;
  box-shadow: none !important;
  border: solid #1ed760 1px !important;
}

.signin-section input[type=password]{
  width: calc(100% - 40px);
  border:solid 1px #252525;
  height:2em;
  margin:0;
  padding: 10px 20px;
  font-size: 16px;
}

.signin-section input[type=password]:focus{
  border-bottom: none !important;
  box-shadow: none !important;
  border: solid #1ed760 1px !important;
}

.signin-section input[type=submit]{
background-color: #1ed760;
width: 100%;
color: white;
border: none;
border-radius: 5px;
font-size: 1em;
font-family: Montserrat;
font-weight: bold;
text-align: center;
line-height:50px;
-o-transition: .5s;
-ms-transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;
transition: .5s;
}

.sigin-section input[type=submit]:hover{
background-color: #50f38a;
}

.signin-section form{
  margin: 0 10%;
}

.signin-icon{
  display: block !important;
  text-align: center !important;
  font-size: 3em !important;
  margin-top: 30px !important;
  color: #1ed760 !important;
}

.signin-box .logo-text{
  font-family: Montserrat;
  color: #252525;
  font-size: 1.3em;
  text-align: center;
  display: block;
  margin-top: 15px;
}

.forgot-pwd a{
  text-align: center;
  color: #1ed760;
  display: block;
}

/***********************************************************
ADMIN DASHBOARD SECTION
 **********************************************************/

.admin-sub-nav{
  width: 100%;
  height: 50px;
  background-color: #1ed760;
}

.admin-sub-nav p{
  color: white;
  float: right;
  margin: 0;
}

.admin-dashboard-section{
  padding: 80px 0;
  overflow:auto;
}

.admin-dashboard-section h2{
  text-align: left !important;
  display: inline-block;
}

.sign-out-btn{
	margin-left: 10px;
    color: #1ed760;
    font-size: 16px;
}

.admin-breadcrumbs{
  text-align: left;
  margin-top: 60px;
}

@media only screen and (min-width: 960px) {
  .admin-breadcrumbs{
    text-align: right;
  }
}

.admin-breadcrumbs i{
  margin-right: 5px;
}

.admin-breadcrumbs a{
  color: #9e9e9e;
}

.admin-breadcrumbs a:hover{
  color: #252525
}

.admin-dashboard-add{
  background-color: #1ed760;
  color: white;
  padding: 25px;
  text-align: center;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.admin-dashboard-add:hover{
  background-color: #50f38a;
}

.admin-dashboard-view{
  border: solid #252525 1px;
  font-size: 4em;
  text-align: center;
}

.admin-dashboard-view span{
  padding: 25px 0;
  display: inline-block;
  color: #252525;
}

.admin-dashboard-view-btn{
  background-color: #1ed760;
  height: 50px;
  color: white;
  text-align: center;
  font-weight: bold;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.admin-dashboard-view-btn:hover{
  background-color: #50f38a;
}

.admin-dashboard-view-btn p{
  margin: 0;
  padding-top: 10px;
}

.admin-btn{
  background-color: #1ed760;
  color: white;
  padding: 15px 50px;
  border-radius: 5px;
  font-family: Montserrat;
  float: right;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}

.admin-btn:hover{
	background-color: #50f38a;
}

#trainers a{
  color: #1ed760;
  font-family: Montserrat;
}

#trainers a:hover{
	color:#50f38a;
}

.left-h3{
  text-align: left !important;
}

/***********************************************************
INPUT STYLES
 **********************************************************/

 .admin-dashboard-section input[type=text]{
   width: calc(100% - 40px);
   border:solid 1px #252525;
   height:2em;
   margin:0;
   padding: 10px 20px;
   font-size: 16px;
 }

 .admin-dashboard-section input[type=text]:focus{
   border-bottom: none !important;
   box-shadow: none !important;
   border: solid #1ed760 1px !important;
 }

 .admin-dashboard-section input[type=email]{
   width: calc(100% - 40px);
   border:solid 1px #252525;
   height:2em;
   margin:0;
   padding: 10px 20px;
   font-size: 16px;
 }

 .admin-dashboard-section input[type=email]:focus{
   border-bottom: none !important;
   box-shadow: none !important;
   border: solid #1ed760 1px !important;
 }

 .admin-dashboard-section input[type=password]{
   width: calc(100% - 40px);
   border:solid 1px #252525;
   height:2em;
   margin:0;
   padding: 10px 20px;
   font-size: 16px;
 }

 .admin-dashboard-section input[type=password]:focus{
   border-bottom: none !important;
   box-shadow: none !important;
   border: solid #1ed760 1px !important;
 }

 .admin-dashboard-section input[type=submit]{
 background-color: #1ed760;
 width: 100%;
 color: white;
 border: none;
 border-radius: 5px;
 font-size: 1em;
 font-family: Montserrat;
 text-align: center;
 line-height:50px;
 -o-transition: .5s;
 -ms-transition: .5s;
 -moz-transition: .5s;
 -webkit-transition: .5s;
 transition: .5s;
 padding: 15px 0;
}

.admin-dashboard-section input[type=submit]:hover{
 background-color: #50f38a;
}

.admin-dashboard-section textarea{
  height: 7em;
  resize: none;
  border: solid 1px #252525;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
}

/***********************************************************
FOOTER SECTION
 **********************************************************/
footer{
  background-color: #252525;
  width: 100%;
  padding: 50px 0;
}

footer h4{
  text-align: left;
  color: white;
  margin: 0;
}

footer ul{
  margin-top: 10px;
}

footer ul li a{
	font-size:16px;
  /*font-size: .8em;*/
  font-family: Montserrat;
  color: white;
}

footer input[type=text]{
  background-color: white;
  border-bottom: none;
  height: auto;
  padding: 5px;
  margin: 25px 0 20px 0;
  font-size: .8em;
  font-family: Montserrat;
}

footer input[type=text]:focus{
  border-bottom: 1px solid #1ed760 !important;
  box-shadow: 0 1px 0 0 #1ed760 !important;
}

footer input[type=text]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #252525;
}
footer input[type=text]::-moz-placeholder { /* Firefox 19+ */
  color: #252525;
}
footer input[type=text]:-ms-input-placeholder { /* IE 10+ */
  color: #252525;
}
footer input[type=text]:-moz-placeholder { /* Firefox 18- */
  color: #252525;
}

footer input[type=submit]{
  font-size: .8em;
  color: white;
  background-color: #1ed760;
  border: none;
  padding: 5px 20px;
  font-family: Montserrat;
}

.footer-spacing{
  margin: 25px 0;
}

.copyright{
  color: white;
}

footer span{
  color: #1ed760;
  font-size: 40px;
  display: inline-block;
  margin: 0 5px;
}
