@import url('https://fonts.googleapis.com/css2?family=Lato&family=Open+Sans&display=100,200,300,400,500,600,700');


body {
	margin: 0;
	font-family: 'sans-serif', lato;
	font-weight: 700;
    overflow-x: hidden;
}
/*..................................header*/
.container-fluid {
	width: 100%;
    background:  #ABCC59;
    height: auto;
}

header {
  background: #ABCC59;
  width: 100%;
}


.logo {
  background: url("/assets/images/eternal-fitness.jpg");
  float: left;
}

/*................................navigation*/
.navbar {
background: #ABCC59;
}

.navbar-brand {
    margin: auto;
    padding: 0;
}

.nav-item {
text-transform: uppercase;
}

.nav-item a {
color: #4F2683;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 16px;
margin: auto;
}
.navbar-light .navbar-nav .nav-link  {
 color: #4F2683;   
}
.nav-link a:hover{
color:  grey;
}
.navbar-toggle .icon-bar {
    background-color: grey;
}

.navbar-nav .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
    line-height: 50px;
}

/*................hero-image*/
#hero-outer {
    overflow: hidden;
    position: relative;
}

#hero-image {
    width: 100%;
    animation-name: hero-zoom;
    animation-duration: 5s;
    animation-fill-mode: forwards;
} 

#hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@keyframes hero-zoom {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}
/*.......................cover-text*/
#cover-text, #cover-text h2 {
    color: #4F2683;
    font-weight: normal;
    font-size: 130%;
    font-family: sans-serif;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    letter-spacing: 2px;
}
#cover-text, #cover-text h3 {
    color: #4F2683;
    font-size: 100%;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    font-style: normal;
    text-align: center;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: rgba(79, 38, 131, 0.8);
    padding: .5cm .5cm; 
    text-transform: uppercase;
}
#cover-text{
    width: 500px;
    height: 200px;
    padding-top: 70px;
    padding-left: 70px;
    padding-right: 80px;
    background-color: rgba(171, 204, 89, .6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

} 
/*......................................................................................Why Choose Eternal Section*/
.container-fluid2 {
    background-color: #ABCC59;
    width: 100%;
    height: auto;
}

.why-us {
    text-align: center;
    padding: 20px;
    color: #4F2683;
}
.blurb p {
    text-align: center;
}
.contact-us p {
    text-align: justify;
    padding: 20px;
    color: #4F2683;
}
h1 {
    font-family: lato;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 30px;
    color: #4F2683;
    text-align: center;
}
h1::after {
    content: '';
    background: #4F2683;
    display: block;
    width: 150px;
    height: 3px;
    margin: 10px auto;
}
 h3 {
    color: #4F2683;
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
}
p {
    color: #3F4443;
    font-family: lato;
    font-size: 18px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 10px;
    text-align: justify;
}
/*................................................................................................Homepage Classes*/
.container-fluid3 {
    background-color: #fafafa;
    width: 100%;
    height: auto;
}
 h1:hover{
    color: grey;
}
.shrink img {
transition: 1s ease;
}

.shrink img:hover{
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
transition: 1s ease;
}
.membership-button {
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/*................Footer*/
footer {
    text-align: center;
    padding-top: 10px;
}

footer li {
    margin: auto;
}

h5 {
    font-family: lato;
    list-style: none; 
    font-size: 22px;
    color: #4F2683;
    text-align: center;
 } 


.location {
    font-family: lato;
    list-style: none; 
    padding: 0;

}
.trainer-photo {
    padding-bottom: 20px;
}

h3 a {
color: #4F2683;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 4px;
font-size: 16px;
}
h3 a:hover {
    color: grey;
    text-decoration: none;
}
/* Membership Table */
.membership p {
    text-align: center;
}

.card-body {
    background-color: rgb(171, 204, 89, 0.8);
}
.btn-lg {
    background-color: rgb(79, 38, 131, 0.8);
}

/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
  .columns {
    width: 100%;
  }
}
/* Contact Us Form */
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 4px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #ABCC59;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  margin-left: 40%;
  margin-right: 30%;
  margin-bottom: 10px;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: grey;
}

/* Add a background color and some padding around the form */
.container5 {
  display: inline-block;
  border-radius: 5px;
  margin-top: 0px;
  padding-top: 2px;
  padding: 7px;
  background-color:  rgba(79, 38, 131, 0.6);
  margin-left: 25%;
  margin-right:25%;
  margin-bottom: 5%;
  width: 50%;

}
@media only screen and (max-width: 600px) {
  .container5 {
    width: 80%;
    margin-left: 10%;
    margin-right: 5%;
  }
}



