@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

	


    

    
    .btn-green{
        background-color: #21B19C;
    }
    
    .btn-orange{
        background-color: #F69038;
    }
    
    .btn-dark{
        background-color: #3E4347;
    }
    
    .btn-visit{
        background-color: rgba(255,255,255,.2);
        border:1px solid rgba(255,255,255,.8);
    }
    
    .btn-visit:hover{
        background-color: rgba(255,255,255,.9);
        border:.5px solid rgba(255,255,255,.8);
        color: #3E4347;
    }
    
    .btn-visit:hover svg path{
       fill: #3E4347;
    }
    
    
    .btn-onwhite{
        background-color: rgba(167,167,167,.2);
        border:1px solid rgba(167,167,167,.8);
        color: #3E4347;
    }
    

    .btn-onwhite:hover{
        background-color: rgba(167,167,167,.9);
        border:.5px solid rgba(167,167,167,.8);
        color: #fff;
    }
    
    .btn-onwhite svg path{
       fill: #3E4347;
    }
    
    .btn-onwhite:hover svg path{
       fill: #fff;
    }
    
    .btn-onwhite i{
       margin-left: 0;
        font-size: 1.2em;
    }
    
    
    .button-back svg{
        rotate:180deg;
    }
    
    
    
    
    
    .contact-btn{
        font-family: "GeneralSans-Medium";
        color: #000;
        margin: .5em;
        font-weight: 400;
        padding: .7em 1.2em .8em 1.5em;
    }
    
    
    .contact-btn i{
        margin: auto .5em auto 0;
    }
    
    
    .contact-btn:hover{
        background-color: #21B19C;
        color: #fff;
        font-weight: 400;
    }
    
    
    button{
        padding: .9em 1.2em .8em 1.5em;
        font-family: "bahnschrift";
        color: #fff;
        border: 0;
        display: block;
        float: left;
        font-size: .85em;
        border-radius: 2em;
        letter-spacing: .8px;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        cursor: pointer;
        margin: auto .5em;
        transition: all .3s;
        position: relative;
    }
    
    
    button svg{
        height: .8em;
        margin-left: 1em;
        transition: all .3s;
    }
    
    
    button i{
        font-size: 1.1em;
        margin: auto .5em;
    }
    
    
    button:hover{
        font-weight: bold;
    }
    
    
    button:hover svg{
        height: 1em;
    }
    
    
    
    
    
    
    
    
    
    














/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
	
	
	
	
	
	
    
    
    
    
    
    
    
    
    
	

	
	
	
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

    
    
    
    .btn-green{
        background-color: #21B19C;
    }
    
    .btn-orange{
        background-color: #F69038;
    }
    
    .btn-dark{
        background-color: #3E4347;
    }
    
    .btn-visit{
        background-color: rgba(255,255,255,.2);
        border:1px solid rgba(255,255,255,.8);
    }
    
    .btn-visit:hover{
        background-color: rgba(255,255,255,.9);
        border:.5px solid rgba(255,255,255,.8);
        color: #3E4347;
    }
    
    .btn-visit:hover svg path{
       fill: #3E4347;
    }
    
    
    .btn-onwhite{
        background-color: rgba(167,167,167,.2);
        border:1px solid rgba(167,167,167,.8);
        color: #3E4347;
    }
    

    .btn-onwhite:hover{
        background-color: rgba(167,167,167,.9);
        border:.5px solid rgba(167,167,167,.8);
        color: #fff;
    }
    
    .btn-onwhite svg path{
       fill: #3E4347;
    }
    
    .btn-onwhite:hover svg path{
       fill: #fff;
    }
    
    .btn-onwhite i{
       margin-left: 0;
        font-size: 1.5em;
    }
    
    
    .button-back svg{
        rotate:180deg;
    }
    
    
    
    
    
    .contact-btn{
        font-family: "GeneralSans-Medium";
        color: #000;
        margin: .5em;
        font-weight: 400;
        padding: .7em 1.2em .8em 1.5em;
    }
    
    
    .contact-btn i{
        margin: auto .5em auto 0;
    }
    
    
    .contact-btn:hover{
        background-color: #21B19C;
        color: #fff;
        font-weight: 400;
    }
    
    
    button{
        padding: .9em 1.2em .8em 1.5em;
        font-family: "bahnschrift";
        color: #fff;
        border: 0;
        display: block;
        float: left;
        font-size: .9em;
        border-radius: 2em;
        letter-spacing: .8px;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        cursor: pointer;
        margin: auto .5em;
        transition: all .3s;
        position: relative;
    }
    
    
    button svg{
        height: .8em;
        margin-left: 1em;
        transition: all .3s;
    }
    
    
    button i{
        font-size: 1.1em;
        margin: auto .5em;
    }
    
    
    button:hover{
        font-weight: bold;
    }
    
    
    button:hover svg{
        height: 1em;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
}
    /* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
	
    
    
    
    .btn-green{
        background-color: #21B19C;
    }
    
    .btn-orange{
        background-color: #F69038;
    }
    
    .btn-dark{
        background-color: #3E4347;
    }
    
    .btn-visit{
        background-color: rgba(255,255,255,.2);
        border:1px solid rgba(255,255,255,.8);
    }
    
    .btn-visit:hover{
        background-color: rgba(255,255,255,.9);
        border:.5px solid rgba(255,255,255,.8);
        color: #3E4347;
    }
    
    .btn-visit:hover svg path{
       fill: #3E4347;
    }
    
    
    .btn-onwhite{
        background-color: rgba(167,167,167,.2);
        border:1px solid rgba(167,167,167,.8);
        color: #3E4347;
    }
    

    .btn-onwhite:hover{
        background-color: rgba(167,167,167,.9);
        border:.5px solid rgba(167,167,167,.8);
        color: #fff;
    }
    
    .btn-onwhite svg path{
       fill: #3E4347;
    }
    
    .btn-onwhite:hover svg path{
       fill: #fff;
    }
    
    .btn-onwhite i{
       margin-left: 0;
        font-size: 1.5em;
    }
    
    
    .button-back svg{
        rotate:180deg;
    }
    
    
    
    
    
    .contact-btn{
        font-family: "GeneralSans-Medium";
        color: #000;
        margin: .5em;
        font-weight: 400;
         padding: .7em 1.2em .8em 1.5em;
    }
    
    
    .contact-btn i{
        margin: auto .5em auto 0;
    }
    
    
    .contact-btn:hover{
        background-color: #21B19C;
        color: #fff;
        font-weight: 400;
    }
    
    
    button{
        padding: .9em 1.2em .8em 1.5em;
        font-family: "bahnschrift";
        color: #fff;
        border: 0;
        display: block;
        float: left;
        font-size: .8em;
        border-radius: 2em;
        letter-spacing: .8px;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        cursor: pointer;
        margin: auto .5em;
        transition: all .3s;
        position: relative;
    }
    
    
    button svg{
        height: .8em;
        margin-left: 1em;
        transition: all .3s;
    }
    
    
    button i{
        font-size: 1.2em;
        margin: auto .5em;
    }
    
    
    button:hover{
        font-weight: bold;
    }
    
    
    button:hover svg{
        height: 1em;
    }
    
    
    
    
    
    
}
    
    
    /* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {

    
    
    
    
    
    .btn-green{
        background-color: #21B19C;
    }
    
    .btn-orange{
        background-color: #F69038;
    }
    
    .btn-dark{
        background-color: #3E4347;
    }
    
    .btn-visit{
        background-color: rgba(255,255,255,.2);
        border:1px solid rgba(255,255,255,.8);
    }
    
    .btn-visit:hover{
        background-color: rgba(255,255,255,.9);
        border:.5px solid rgba(255,255,255,.8);
        color: #3E4347;
    }
    
    .btn-visit:hover svg path{
       fill: #3E4347;
    }
    
    
    .btn-onwhite{
        background-color: rgba(167,167,167,.2);
        border:1px solid rgba(167,167,167,.8);
        color: #3E4347;
    }
    

    .btn-onwhite:hover{
        background-color: rgba(167,167,167,.9);
        border:.5px solid rgba(167,167,167,.8);
        color: #fff;
    }
    
    .btn-onwhite svg path{
       fill: #3E4347;
    }
    
    .btn-onwhite:hover svg path{
       fill: #fff;
    }
    
    .btn-onwhite i{
       margin-left: 0;
        font-size: 1.5em;
    }
    
    
    .button-back svg{
        rotate:180deg;
    }
    
    
    
    
    
    .contact-btn{
        font-family: "GeneralSans-Medium";
        color: #000;
        margin: .5em;
        font-weight: 400;
         padding: .7em 1.2em .8em 1.5em;
    }
    
    
    .contact-btn i{
        margin: auto .5em auto 0;
    }
    
    
    .contact-btn:hover{
        background-color: #21B19C;
        color: #fff;
        font-weight: 400;
    }
    
    
    button{
        padding: .9em 1.2em .8em 1.5em;
        font-family: "bahnschrift";
        color: #fff;
        border: 0;
        display: block;
        float: left;
        font-size: 1em;
        border-radius: 2em;
        letter-spacing: .8px;
        display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
        cursor: pointer;
        margin: auto .5em;
        transition: all .3s;
        position: relative;
    }
    
    
    button svg{
        height: .8em;
        margin-left: 1em;
        transition: all .3s;
    }
    
    
    button i{
        font-size: 1.2em;
        margin: auto .5em;
    }
    
    
    button:hover{
        font-weight: bold;
    }
    
    
    button:hover svg{
        height: 1em;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
}
    
        /* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
	
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  
    
    
    
}
            /* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
	

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
		
}