body {
 margin: 0;
}


@font-face {
    font-family: 'montserrat-black-webfont';
    src: url('../fonts/montserrat-black-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat-bold-webfont';
    src: url('../fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat-light-webfont';
    src: url('../fonts/montserrat-light-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat-regular-webfont';
    src: url('../fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

h1{ font-family: 'montserrat-black-webfont';}
p{font-family: 'montserrat-light-webfont'; text-align: left;}

#top-header{
  background: white;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 99;
	padding: 0;
	margin: 0;
}
header {
  padding: 0.7em;
  padding-left: 6%;
  padding-right: 6%;
}

.logo img{
  /* width: 14%; */
  width: 250px;
}

header .logo {
  color: black;
  font-weight: bold;
}
header .menu-btn {
  color:white; 
  width: 18px;
  float: right;
  cursor: pointer;
  margin-top: 15px;
}

nav {
  font-family: 'montserrat-black-webfont';
  width: 30%;
  right: 0;
  z-index: 99;
  position: absolute;
  background: #f55432;
  padding: 2em;
  height: calc(100vh);
  display: none;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.fa-bars{
	font-size: 25px;
}
.social{
	margin-top: 50px;
}
.social a{
	font-size: 30px;
	margin-right: 30px;
}
nav .close-button{
  width: 18px;
  float: right;
  cursor: pointer;
  opacity: 0;
  margin-right: 15%;
}

nav ul {
  list-style-type: none;
  margin: 30% auto 0 auto;
  padding: 0;
  width: 80%;
}

nav ul a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.4em;
}

nav ul li {
  margin-bottom: 20px;
  opacity: 0;
  transition: 0.6s;
}
nav ul li:hover {
  margin-left: 10px;
}
.show-menu {
  display: block;
  -webkit-animation: slide-menu 0.4s ease-in forwards;
          animation: slide-menu 0.4s ease-in forwards;
}

.show-menu .close-button {
  -webkit-animation: show-x 1s 1s forwards;
          animation: show-x 1s 1s forwards;
}

.show-menu li:nth-of-type(1) {
  -webkit-animation: menu-item-anim .6s forwards 0.4s ease-in-out;
          animation: menu-item-anim .6s forwards 0.4s ease-in-out;
}

.show-menu li:nth-of-type(2) {
  -webkit-animation: menu-item-anim .6s forwards 0.6s ease-in-out;
          animation: menu-item-anim .6s forwards 0.6s ease-in-out;
}

.show-menu li:nth-of-type(3) {
  -webkit-animation: menu-item-anim .6s forwards 1s ease-in-out;
          animation: menu-item-anim .6s forwards 1s ease-in-out;
}

.show-menu li:nth-of-type(4) {
  -webkit-animation: menu-item-anim .6s forwards 1.2s ease-in-out;
          animation: menu-item-anim .6s forwards 1.2s ease-in-out;
}
.show-menu li:nth-of-type(5) {
  -webkit-animation: menu-item-anim .6s forwards 1.4s ease-in-out;
          animation: menu-item-anim .6s forwards 1.4s ease-in-out;
}

.show-menu li:nth-of-type(6) {
  -webkit-animation: menu-item-anim .6s forwards 1.6s ease-in-out;
          animation: menu-item-anim .6s forwards 1.6s ease-in-out;
}
.show-menu li:nth-of-type(7) {
  -webkit-animation: menu-item-anim .6s forwards 1.8s ease-in-out;
          animation: menu-item-anim .6s forwards 1.8s ease-in-out;
}
@-webkit-keyframes slide-menu {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes slide-menu {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@-webkit-keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(70%);
            transform: translateY(70%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(70%);
            transform: translateY(70%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
* {box-sizing: border-box;}
@media only screen and (max-width: 600px) {
  nav .close-button{
  margin-right: unset;
	}
  nav{
    width: 100%;
  }
}



.main{
  text-align: center;
  padding-top: 150px;
}
.as-border{
  width: 50px;
  border:3px solid #f55432;
}

.column {
  float: left;
  width: 50%;
  padding: 20px;
}
.column img{
  width: 100%;
  height: auto;
}
.column p{
  margin-top: 40px;
  line-height: 1.5;
}
.para-color{
  color: #f55432;
  text-decoration: underline;
}
.row{
  width: 60%;
  margin: auto;
  text-align: left;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}



footer{
  width: 100%;
  margin: 0;
  background: #eeeeee;
  text-align: center;
  padding: 20px 50px 10px 50px;
}
/* footer p{line-height: 0.5;} */
footer h4{font-family: 'montserrat-regular-webfont';}
.copyright{
  margin-top: 70px;
  line-height: 25px;
}
.footer-column {
  float: left;
  width: 33.33%;
  padding: 10px; 
}
.footer-column .button{
  text-decoration: none;
  font-family: 'montserrat-light-webfont';
  font-size: 13px;
  cursor: pointer;
  padding: 10px 20px 10px 20px;
  background: #e94734;
  color: white;
  border:unset;
  border-radius: 5px;
}
.footer-column-1 {
  text-align: left;
  float: left;
  width: 33.33%;
  padding: 10px; 
  padding-top: 30px;
}
.footer-row{
  width: 80%;
  margin: auto;
}
.footer-row:after {
  content: "";
  display: table;
  clear: both;
}
footer p {
  text-align: center;
  line-height: 10px;
}
.footer-column-1 p{
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .footer-column-1 , .footer-column {
      width: 100%;
      text-align: center;
  }
  footer p, .footer-column-1 p {
    text-align: center;
    line-height: 20px;
  }

}

@media only screen and (max-width: 600px) {
  .row{
    width: 80%;
  }
  .column{
      width: 100%;
  }
  .column img{
    width: 100%;
  }
}