html { font-size: calc(1em + 1vw); scroll-behavior: smooth;} 

/* setting the max width*/
 @media screen and (min-width: 50em) {
  html {
    font-size: 1.25em;
  }
   
} 

body {
  font-family: 'Lato', sans-serif;
  color: #535353;
}
p {
  line-height: 130%;
}
ul {
  list-style-type: circle; line-height: 130%;
}

a{
    text-decoration: none;
}
* { box-sizing: border-box } 

nav{
    width: 100%;
    padding: 1.5vh 10%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    position: fixed;
    background: rgba(255,255,255,0.6);
}

.logo{
    width: 100px;
}

.light{
    color: white;
}
.body-text{
width: 60vw;
text-align: center;
}

.text-center{
    text-align: center;
    
}


.nav-links{
    display: flex;
    align-content: center;
    align-items: center;

}


.nav-link{
    margin-right: 2em;
    text-decoration: none;
    color: #535353;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .nav-link{
        display: none;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .nav-link{
        display: none;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .nav-link{
        display: none;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .nav-link{
        display: block;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .nav-link{
        display: block;
    }
}



.nav-link:hover{
    text-decoration: underline;
}



.centered{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}


section.hero{
    background:linear-gradient(
        rgba(0, 0, 0, 0.4), 
        rgba(0, 0, 0, 0.4)
      ), url("/static/assets/hero.jpg");
    background-color: #cccccc; /* Used if the image is unavailable */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    padding: 20vw 0;
    width: 100%;
    min-height: 90vh;
    
    box-shadow: 10px 8px 10px rgba(0, 0, 0, 0.25);
}

section.intro, section.framework, section.packages{
    padding-top: 10vh;
    padding-bottom: 5vh;
    padding: 10vh 5vw;
}

section.faq{
    padding: 5vh 5vw 10vh;
}

section.buy{
    padding: calc(3rem + 5vh) 0;
    background-image: url("/static/assets/buy.jpg");
    background-color: #cccccc; /* Used if the image is unavailable */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */

}


/*

.training{
    margin: 0 auto;
    width: 100vw;

}
*/
/* Extra small devices (phones, 600px and down) 
@media only screen and (max-width: 600px) {
    .training{
        width: 80vw;
    }
}*/

/* Small devices (portrait tablets and large phones, 600px and up) 
@media only screen and (min-width: 600px) {
    .training{
        width: 80vw;
    }
}*/

/* Medium devices (landscape tablets, 768px and up) 
@media only screen and (min-width: 768px) {
    .training{
        width: 80vw;
    }
}*/


/* Large devices (laptops/desktops, 992px and up) 
@media only screen and (min-width: 992px) {
    .training{
        width: 80vw;
    }
}*/

/* Extra large devices (large laptops and desktops, 1200px and up)
@media only screen and (min-width: 1200px) {
    .training{
        width: 50vw;
    }
}

*/


.training-container{
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin: 0 auto;

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .training-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 2rem 1rem;

    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .training-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 2rem 1rem;
        
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .training-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 2rem 1rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .training-container{
        display: flex;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        margin: 0 auto;
        padding: 2rem 1rem;

    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .training-container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-content: center;
        margin: 0 auto;
        padding: 3rem 20%;
    }
}



.training-container img{
    padding-right: calc(2em + 1vw);
    width: 30%;
    min-width: 150px;
    max-width: 300px;
    object-fit: contain;
}

.content{
    width: 70%;
    min-width: 200px;
    max-width: 500px;
}



.training-2{
    margin-top: -2em;
}

.training-3{
    margin-top: -2em;
}


.flow-1{
    background: #EFF2F8;
}

.flow-2{
    background: #CDDAE9;
    padding-top: 4em;
}

.flow-3{
    background: #ACC1DB;
    padding-top: 4em;
}



.triangles{
    width: 100%;
    display: flex;
}

.triangle{
    border-bottom: 2em solid transparent;
}
.triangle-1 {
    border-right: 50vw solid #EFF2F8;
}
.triangle-2 {
    border-left: 50vw solid #EFF2F8;
}
.triangle-3 {
    border-right: 50vw solid #CDDAE9;
}
.triangle-4 {
    border-left: 50vw solid #CDDAE9;
}
.triangle-5 {
    border-right: 50vw solid #ACC1DB;
}
.triangle-6 {
    border-left: 50vw solid #ACC1DB;
}



.curve{
    padding: 2em 0;
    width: 80%;

}

.package-options{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 .5em;

}

.package{
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    width: calc(25% - 1em);
    min-width: 250px;
    max-width: 500px;
    margin: 1em;
    border-radius: 8px;
    padding: 1.5em;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .package{
        width: 80%;
    }
    .package-options{
        flex-wrap: wrap;
        }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .package{
        width: 80%;
    }
    .package-options{
        flex-wrap: wrap;
        }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .package{
        width: 80%;
    }
    .package-options{
    flex-wrap: wrap;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .package{
        width: calc(30% - 1em);
    }
    .package-options{
        flex-wrap: nowrap;
        }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .package{
        width: calc(30% - 1em);
    }
    .package-options{
        flex-wrap: nowrap;
        }
}


.package-heading{
    display: flex;
    align-items: center;

}



h2{
    font-size: calc(2.2em + .75vw);
    font-weight: 700;
    text-align: center;
}


h3{
    font-size: calc(1.5em + .75vw);
    font-weight: 700;
    text-align: center;
}

h4{
    font-size: calc(1.1em + .75vw);
    font-weight: 700;
    text-align: center;
}

h5{
    font-size: calc(1em + .5vw);
    font-weight: 700;
    padding-left: .5em;
}
p{
    color: #535353;
}

strong{
    font-weight: 700;
}

.buttons-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.button-1{
    background: #447ABF;
    border: 1px solid #447ABF;
    border-radius: 8px;
    width: 150px;
    padding: 8px;
    text-align: center;
      transition: 0.3s;
}

.button-1:hover{
    background: #366198;
    border: 1px solid #366198;
    cursor: pointer;
}
.button-2{
    background: none;
    border: 1px solid #EFF2F8;
    border-radius: 8px;
    width: 150px;
    padding: 8px;
    margin: 0 1em;
    text-align: center;
    transition: 0.3s;
}
.button-2:hover{
    background: #EFF2F8;
    color: #447ABF;
    cursor: pointer;
}


section.faq h3{
    color: #535353;
    padding-bottom: 10px;
}
/* Accordion styles */
input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
.tabs {
    
    border-radius: 8px;
    min-width: 300px;
    max-width: 1600px;
    margin: 1em;
    border-radius: 8px;
    padding: 0.5em;
    overflow: hidden;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.3);

    width: 80%;

  }
  
  .tab {
    width: 100%;
    color: white;
    overflow: hidden;

  }
  .tab-label {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
    padding: 1em;
    background: white;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    cursor: pointer;
    color: #535353;

    /* Icon */
  }

  .tab-label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    -webkit-transition: all .35s;
    transition: all .35s;
  }
  .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #535353;
    background: white;
    -webkit-transition: all .35s;
    transition: all .35s;
    line-height: 120%;
  }
  .tab-close {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
            justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: white;
    cursor: pointer;
  }
  .tab-close:hover {
    background: white;
  }
  
  input:checked + .tab-label {
    background: white;
  }
  input:checked + .tab-label::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
  }
  
  li{
      margin-left: 1rem;
  }

  .indent2{
      margin-left: 2rem;
  }