/* ####################################################
NOTE
I am coding styles using SASS (.scss) which is then compiled using Compass into this .css

This is (.scss) file for variables and mixins of Accuserv website

Created by Yujun Jin
###################################################
*/
a, a:hover, a:active, a:visited, a:focus {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, span, a, p {
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-image: url("../img/bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 70px 0;
  font-family: 'Shadows Into Light', cursive;
}

.fl-container {
  max-width: 794px;
  margin: 0 auto;
  width: 100%;
}
.fl-container:before, .fl-container:after {
  content: " ";
  display: table;
}
.fl-container:after {
  clear: both;
}
@media (max-width: 814px) {
  .fl-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#fl-mainbox {
  background-color: #fff;
  width: 100%;
  float: left;
  padding: 32px 20px;
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
}
#fl-mainbox section {
  float: left;
  width: 100%;
  overflow: hidden;
}
#fl-mainbox p {
  margin: 20px 0;
}
#fl-mainbox h2 {
  color: #ff2eb0;
}

.fl-buttons {
  margin-bottom: 30px;
}
@media (max-width: 567px) {
  .fl-buttons {
    float: none !important;
    width: 147px !important;
    margin: 0 auto 30px;
  }
}
.fl-buttons a {
  color: #fff;
  width: 147px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
}
.fl-buttons a:last-child {
  margin-right: 0;
}
@media (max-width: 567px) {
  .fl-buttons a {
    margin: 3px 0;
  }
  .fl-buttons a:before, .fl-buttons a:after {
    content: " ";
    display: table;
  }
  .fl-buttons a:after {
    clear: both;
  }
}

.fl-orange {
  background-color: #ff8a00;
}

.fl-pink {
  background-color: #ff2eb0;
}

.fl-blue {
  background-color: #02a1fc;
}

@media (max-width: 767px) {
	iframe {
		display: none;
	}
}
