@import url(https://fonts.googleapis.com/css?family=Montserrat|Montserrat:b);

html {
  height: 100%;
  font-display: swap;
}

body{
}

footer{
  margin-top:auto;
}

h1 {
  font-family: 'Montserrat';
  font-weight: 700;
  color: white;
}

h3 {
  font-family: 'Montserrat';
  font-weight: 700;
  color: white;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

div {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
}

a {
  color: #f22300;
}

a:hover{
  color: #f22300;
}

.main-div {
  position: relative;
  margin-bottom: 0;
}

.main-div-parent{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin:0;
}

@media (max-width: 1290px){
  .main-div-parent {
    position: relative;
  }
}

.main-div {
  display: flex;
  flex-flow: column;
  flex-basis: auto;
  font-family: montserrat;
  height: 100%;
  width: 100%;
  min-height: calc(100vh - 400px);
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

/*
HEADER
*/
header {
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  font-family: 'Montserrat';
  font-weight: 400;
  text-decoration: none;
  width: 100%;
  height: 85px;
  border-bottom: 1px solid lightgrey;
  color: white;
}

.header-buttons-div {
  display: inline-block;
  text-align: right;
}

.spacer {
  flex: 1;
}

.header-buttons-div ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: white;
  display: flex;
}

.header-buttons-div li {
  padding: 0 1rem;
  color: white;
  letter-spacing: .1rem;
  font-size: 14px;
}

.header-buttons-div a {
  color: white;
}

.header-parent {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 1rem;
}

.headerLogo{
  display: inline-block;
  margin-left: 3%;
  height: 80px;
}

.header-div {
  display: inline-block;
  margin-left: 1rem;
  width: 100%;
}

.footer-column {
  padding: 2%;
  width: 22%;
  margin: 1%;
  text-align: left;
  display: flex;
  align-self: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

/*

FOOTER

*/

.footer{
  color: white;
  text-align: left;
  vertical-align: top;
  display: inline-block;
  font-family: 'Montserrat';
  width: 100%;
  height: 400px;
  margin-top: auto;
}

footer h1{
  font: 'Montserrat Bold', sans-serif;
  font-weight: 900;
}

footer a{
  font-weight: 600;
  text-decoration: underline;
  color: white;
}

footer a:hover{
  color: #f22300;
}

footer p {
  color: white;
}

@media (max-width: 992px){
  .header-div{
    display: inline-block;
    width: 35%;
    align-items: center;
  }

  .header-buttons-div{
    display: none;
  }

  .footer-column{
    width: 47%;
  }

  .footer-parent{
    flex-wrap: wrap;
  }

  footer{
    height: 500px;
  }
}

@media (max-width: 768px){
  .header-buttons-div{
    display: none;
  }

  .footer-column{
    width: 100%;
  }
}

@media (max-width: 768px){
  .footer {
    height: 750px;
  }

  .footer-div {
    width: 100%;
  }

  .footer-parent{
    flex-wrap: wrap;
  }
}

.no-points {
  list-style-type: none;
  font-size: 14px;
}


/*

SIDEBAR

*/


.toggle-button {
  height: 30px;
  width: 30px;
  display: flex;
  z-index: 1004;
  flex-direction: column;
  justify-content: space-around;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  padding-right: 5%;
  box-sizing: border-box;
}

.toggle-button:focus {
  outline: none;
}

.toggle-button-line {
  width: 30px;
  height: 3px;
  background: white;
}

.sidedrawer {
  height: 100%;
  background: #101010;
  box-shadow: 2px 0px 5px rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  z-index: 1002;
  right: 0;
  width: 70%;
  max-width: 400px;
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
}

.sidedrawer.open {
  transform: translateY(0);
}

.sidedrawer ul {
  height: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
}

.sidedrawer li {
  margin: 0.5rem 0;
}

.sidedrawer a {
  color: white;
  font-family: 'Montserrat';
  font-size: 2rem;
  font-weight: 400;
  font-stretch: expanded;
  letter-spacing: .1rem;
}

.sidedrawer a:hover,
.sidedrawer a:active {
  text-decoration: none;
  color: #f2f2f2;

}

@media (min-width: 768px){
  .sidedrawer{
    display: none;
  }
  .toggle-button {
    display: none;
  }
}

/*

HOME PAGE

*/

.homepage {
  padding-top: 75px;
  left: 0;
  right: 0;
  width: 100%;
}

.image-spacer{
  height: 10vh;
  background-color: black;
}

.image-parent{
  height: calc(100vh - 75px);
  width: 100%;
}

.image-parent h1{
  color: white;
  text-shadow: 1px 1px black;
}

.image-parent h2{
  color: white;
  text-shadow: 1px 1px black;
}

.image-parent h3{
  color: white;
  text-shadow: 1px 1px black;
}


@media (max-width: 768px){
  .image-parent{
    height: 100%;
    width: 100%;
  }

}

.image-parent p{
  color: white;
  text-shadow: 1px 1px black;
}

.image-parent a:hover,
.image-parent a:active{
  color: white;
  text-decoration: none;
}

.image-1{
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('gettingstarted.webp'), url('gettingstarted.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
}

.image-2{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-image: url('memberinfo.webp'), url('memberinfo.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
}

.image-3{
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('find-a-gym.webp'), url('find-a-gym.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
}



/*

JOIN PAGE css

*/

@import url(https://fonts.googleapis.com/css?family=Montserrat|Montserrat:b);

.underHeader {
  display: flex;
  flex-direction: column;
  flex-flow: column;
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 150px;
  margin-top: 100px;
  height: 100%;
}

.under-header {
  display: inline-block;
  margin-top: 85px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}


.underHeaderLeft {
  display: flex;
  flex-direction: column;
  flex-flow: column;
  text-align: left;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 150px;
  margin-top: 100px;
  height: 100%;
}

.underHeader h3{
  font-family: 'Montserrat';
  font-weight: 700;
  color: #f22300;
}

.form-div {
  text-decoration-color: blue;
}

.form-label2 {
  text-decoration-color: blue;
  font-weight: lighter;
  padding: 2px;
  width: 49%;
}

@media (max-width: 768px){
  .form-div {
    margin: 1%;
  }
}

.one-line {
  display: inline;
  position: relative;
  margin-left: 4px;
  padding-top: 2%;
  padding-left: 5%;
  width: 100%;
  float: left;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.one-line h1 {
  font: 'Montserrat Bold', sans-serif;
  color: #f22300;
  font-weight: 900;
}

.center-one-line {
  display: inline;
  position: relative;
  margin-left: 4px;
  padding-top: 2%;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  float: left;
  text-align: center;
}

.error {
  font-family: montserrat;
  text-decoration-color: #f22300;
  color: red;
  font-weight: lighter;
  padding: 2px;
  width: 49%;
}

.error-one-line {
  display: inline;
  position: relative;
  margin-left: 4px;
  padding-top: 2%;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  color: red;
  float: left;
  text-align: center;
}

.center-one-line h1 {
  font: 'Montserrat Bold', sans-serif;
  font-weight: 900;
  color: #f22300;
}

.terms-div {
  color: black;
  padding-left: 5%;
  padding-right: 5%;
}

.terms-div p{
  color: black;
}

.one-third-parent {
  display: inline-block;
  text-align: center;
  width: 100%;
  float: center;
}

.one-full{
  text-align: center;
  width: 100%;
  float: center;
}

.one-third {
  display: inline-block;
  position: relative;
  padding: 2px;
  width: 33%;
  float: center;
  text-align: center;
}

.one-half {
  display: inline-block;
  position: relative;
  padding: 2px;
  width: 50%;
  float: center;
  text-align: center;
}

.grid-parent {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 2%;
}

.half {
  display: inline-block;
  vertical-align: top;
  padding: 2px;
  width: 49%;
}

@media (max-width: 768px){
  .one-third{
    width: 100%;
    margin-bottom: 10%;
  }

  .half {
    width: 100%;
  }

  .one-half {
    width: 100%;
  }

  .select-button {
    color: black;
    background-color: white;
  }
}

.grow {
  transition: tranform .2s ease-in-out;
  transition: background-color .2s linear;
  z-index: 1000;
}
.grow:hover {
  transform: scale(1.2);

}


input[type=submit]{
  border: 2px solid #000000;
  color: black;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
}

input[type=text] {
    width: 100%;
    font-family: montserrat;
    font-weight: lighter;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid lightgrey;
    border-radius: 4px;
}

input[type=texterror] {
    width: 100%;
    font-weight: lighter;
    font-family: montserrat;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid red;
    border-radius: 4px;
}

input[type=email] {
  width: 100%;
  font-weight: lighter;
  font-family: montserrat;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid lightgrey;
  border-radius: 4px;
}

input[type=cell] {
  width: 100%;
  font-weight: lighter;
  font-family: montserrat;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid lightgrey;
  border-radius: 4px;
}

input[type=emailerror] {
  width: 100%;
  font-weight: lighter;
  font-family: montserrat;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid red;
  border-radius: 4px;
}

input[type=password] {
  width: 100%;
  font-weight: lighter;
  font-family: montserrat;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid lightgrey;
  border-radius: 4px;
}

.password-error {
  width: 100%;
  font-weight: lighter;
  font-family: montserrat;
  padding: 12px 20px;
  margin: 8px 0;
  border: 1px solid red;
  border-radius: 4px;
}

label[type="checkbox"]{
  margin-left: 10px;
}

.select-button {
    border: 2px solid #000000;
    border-radius: 4px;
    color: black;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    background-color: white;
}

.select-button:hover {
    background-color: #f22300; /* Black */
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    color: white;
}

.checkout {
  width: 100%;
}




/*

LOGIN

*/

.login-form-div {
  width: 90%;
  text-decoration-color: blue;
  margin: 5%;
}

.login-form-div input[type=submit]{
  border: 1px solid #f22300;
  color: #f22300;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
}

/* GENMERAL css

*/

.eighth-parent{
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 100%;
  float: left;
}

.one-eighth{
  display: inline-block;
  position: relative;
  padding: 2px;
  width: 12%;
  padding-left: 5%;
  float: left;
  text-align: left;
}

.seven-eighth{
  display: inline-block;
  position: relative;
  padding-left: 2%;
  padding-right: 2%;
  width: 88%;
  float: left;
  font-weight: 600;
  text-align: left;
}

.full-width {
  text-align: left;
  width: 100%;
  height: 100%;
  margin-top: 100px;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 16px;
}

.full-width h4 {
  font-family: 'Montserrat';
  font-weight: 900;
  color: white;
}

.full-width h5 {
  font-family: 'Montserrat';
  font-weight: 900;
  color: white;
}

.full-width h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.quarter-parent{
  display: inline-block;
  text-align: center;
  padding-left: 5%;
  width: 100%;
  height: 100%;
  float: left;
}

.one-quarter{
  display: inline-block;
  position: relative;
  padding-left: 2%;
  padding-right: 2%;
  width: 24%;
  float: left;
  text-align: left;
}


/*
 PLANS SECTION
*/
.plan-tabs-parent {
  display: inline-block;
  text-align: center;
  width: 98%;
  padding: 2%;
  float: center;
  /**/
}

.stay-fit-background{
  background-image: url('tribestrong.webp'), url('tribestrong.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  width: 100%;
}

.plan-tab{
  display: inline-block;
  position: relative;
  border-style: solid;
  border-width: .1em;
  border-color: #dddad6;
  margin: 0.5%;
  width: 400px;
  float: center;
  text-align: center;
  height: auto;
  padding-bottom: 2%;
  margin-bottom: 1%;
  top: 60px;
  z-index: 1;
  background-color: rgba(255,255,255,0.8);
}

.plan-tab h1, h2, h3 {
  opacity: 1;
  text-transform: uppercase;
}

.plan-tab h1 {
  font-size: 60px;
}

.plan-tab h2{
  font-family: 'Montserrat';
  font-size: 24px;
  color: black;
}



.footer-parent{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.logo-div {
  height: 100%;
}

.footer-copyright{
  margin: auto;
  width: 100%;
  text-align: center;
  padding-left: 5%;
}

.why-iron-hos{
  background-color: #0b0b0b;
  display: flex;
  flex-wrap: wrap;
  padding: 5%;
  color: white;
}

.why-iron-hos:not(:first-child) {
  flex: 1;
}

.why-iron-hos:nth-child(1) {
  width: 100%;
}

.why-iron-hos h1 {
  color: white;
}

.why-iron-hos h2 {
  color: white;
}

.why-iron-title{
  display: inline-block;
  position: relative;
  padding: 2px;
  float: center;
  text-align: center;
  width: 75%;
}

.red {
  color: #f22300;
}
