/* Orange Color e6b036*/

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML and body settings */
html, body {
    width: 100%;
    height: 100%;
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
    line-height: 1.6;
    color:#505050;
    background-color: #f4f4f4;
    overflow-x: hidden;
    background-image: url(images/main.jpg);
    background-size: cover; 
    background-position: center center; 
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

ol, ul {
    list-style: none;
}

/**
 * Images a now responsive
 */
 img {
	max-width: 100%;
	height: auto;
}

/**
 * Limit the container in
 * width for big screens
 */
 .main-header{
    display:flex;
    position:sticky;
    top:0;
    background-color:white;
    z-index: 100;
 }

.container {
	width: 100%;
	max-width: 100%;
	padding: 10px 20px 10px 20px;
	margin: 0 auto;
    position: sticky;
    align-self: flex-start;
    top: 0;
}

/**
 * By using display: flex
 * Logo and nav are in 2 cols
 * align-items make them
 * vertically centered
 * justify-content distribute
 * horizontal spaces around
 * and flex-wrap break the
 * things in two lines in
 * small screens
 */

.main-header .container {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
}

/**
 * The followings are to
 * make things more
 * clean and airy
 * and contents centered
 */
.main-nav ul {
	margin: 1em 0 .5em;
	text-align: center;
    list-style-type: none;
}
.main-nav li {
	display: inline;
}
.main-nav a {
	display: inline-block;
	padding: .5em 1.5em;
    text-decoration: none;
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
    font-size: 14pt;
    color: 	#505050;
}

h1.mh-logo{
    margin-right:auto;
}

/* Main Text Body */
.parallax h1{
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
    font-size:3.5rem;
    line-height:1.5em;
    font-weight:400;
    text-shadow: 2px 2px 4px #000000;
}

.parallax {
    display: flex;
    align-items: center;
    justify-content: center;
    color:white;

    /* The image used */
    /*background-image: url(images/main.jpg);
  
    /* Full height */
    height: 100%;
    max-height: 600px;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    perspective: 1px;
  }

  .parallax2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color:white;

    scroll-margin-top: 100px;

    /* The image used */
    /*background-image: url('images/main.jpg');
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    perspective: 1px;

    padding:75px 0px 100px 0px;
  }

  .wrapper1 {
    background-color:white;
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
    font-weight: 300;
    font-size:15pt;
    padding: 10px;
    line-height: 1.6em;
  }

 
  .row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .column{
    display: flex;
    flex:1 1 50%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding:20px 20% 20px 50px;
    margin-top: 95px;
    margin-bottom:95px;
    text-align: left;
  }

   @media only screen and (min-width: 200px) and (max-width: 1400px){
    .column{
        flex-basis: 100%;
        padding: 10px;
        margin: 20px;
        align-items: center;
        text-align: center;
    }

    .column img{
        align-items: center;
        margin:auto
    }
  }


  .column:nth-child(1){
    padding-right:30px;
  }

.column img{
    width:588px;
    height:331px;
    margin-left: auto;
    border-radius: 5px;
}

.column h3{
    font-weight:300;
    font-size:26pt;
    margin-bottom: 35px;
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
}

.column h3:after {
    border:0.5px solid grey;
    bottom: -20px;
    content: "";
    display: block;
    height: 0px;
    position: relative;
    width: 100px;
 }

.wrapper2{
    display:flex;
    background-color: black;
    width:100%;
}

 /*Accordion*/
.accordion h1{
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom:20px;
}
 .accordion {
    width: min(90vw, 500px);
    width:50%;
    left: 50%;
    top: 50%;
    background-color: rgba(4, 35, 41, 0.5);
    padding:20px;
    border-radius: 5px;
  }

  @media only screen and (min-width: 200px) and (max-width: 1400px){
  /* CSS rules for small devices */
  .accordion{
    width: min(90vw, 600px);
    width:90%;
    }
}

  input[type="checkbox"] {
    display: none;
    appearance: none;
  }
  .accordion-item {
    padding: 1.7em;
    background-color: #ffffff;
    border-radius: 0.5em;
  }

  .accordion-item:not(:last-child) {
    margin-bottom: 1em;
  }
  .accordion-content {
    color: #606060;
    font-size: 0.8em;
    line-height: 1.8em;
  }

  label {
    font-size: 1em;
    display: flex;
    justify-content: space-between;
    color: #000000;
    cursor: pointer;
    font-weight: 600;
  }

  input[type="checkbox"] ~ label .arrow {
    display: inline-block;
    transition: 1s;
    padding-left:10px;
  }
  
  input[type="checkbox"]:checked ~ label .arrow {
    transform: rotate(90deg);
  }
  input[type="checkbox"]:checked ~ label {
    color: #0083e9;
  }
  input[type="checkbox"] ~ .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 1s;
  }
  input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 100vh;
  
    transition: 1s;
  }

  /*Contact*/
.contactItem p{
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
    font-weight:300;
    font-size:16pt;
}

.contactContainer h3{
    font-weight:300;
    font-size:26pt;
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
}

.contactContainer{
  text-align: center;
  padding-top: 30px;
  background-color: white;
  height: auto;
}

.contactRow{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding:50px;
}

.contactColumn{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    justify-content: center;
}

.contactItem{
    text-align: center;
    font-size: 14pt;
}

/*Contact Form*/

#fcf-form {
    display:block;
}

.fcf-body {
    margin: 0;
    font-family:"Source Sans Pro", Helvetica, sans-serif ;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    color: #212529;
    text-align: left;
    background-color: #f4f4f4;
    padding: 30px;
    padding-bottom: 10px;
    border-radius: 0.25rem;
    width:100%;
    max-width: 100%;
   
}

.fcf-form-group {
    margin-bottom: 1rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;

    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #439bf8;
    border-color: #007bff;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}

.fcf-body h3{
    padding-bottom: 30px;
}

/*Footer*/

.footerContainer{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width:90%;
    height:auto;
    margin-top:50px;
    margin-bottom:50px;
}

footer {
    display: flex;
    justify-content: space-around;
    background-color: rgb(241, 241, 236) ;
  }
  
  .footer__headline {
    font-weight: bold;
    font-family: 'Helvetica';
    margin-bottom:10px;
    margin-top:10px;
  }
  
  .footer__list {
    font-family: 'Helvetica';
    list-style: none;
    padding: 0;
    width:300px;
  }
  