/* Reset to Standard */
*,*:after,*:before,*::after,*::before {box-sizing: border-box; -webkit-tap-highlight-color: rgba(0,0,0,0);}
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}
nav ul {list-style:none}
blockquote,q {quotes:none}
blockquote:before,blockquote:after,q:before,q:after {content:none}
img {-ms-interpolation-mode: bicubic;}
a {margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins {background-color:#FF9;color:#000;text-decoration:none}
mark {background-color:#FF9;color:#000;font-style:italic;font-weight:bold}
del {text-decoration:line-through}
abbr[title],dfn[title] {border-bottom:1px dotted;cursor:help}
table {border-collapse:collapse;border-spacing:0}
hr {display:block;height:1px;border:0;border-top:1px solid #CCC;margin:1em 0;padding:0}
section hr, .basic-content hr {max-width:936px;margin:3em auto}
input,select,td {vertical-align:middle}

body {
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  /* font-family: Arial, sans-serif; */
}
/* section */
.section-container {
  margin: 0 auto;
	max-width: 1270px;
	padding: 0 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  height: 40px;
  border: 2px solid #fff;
  padding: 6px 16px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.20);
  transition: all .25s;
}
.button:hover {
  background-color: #fff;
  color: #000;
}
/* section-1 */
.section-1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 42px 0;
  text-align: center;
}
.section-1 .section-bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.section-1 .section-container {
  position: relative;
  z-index: 10;
}
.section-1 .section-title {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
}
.section-1 .section-subtitle {
  font-size: 20px;
	line-height: 28px;
	font-weight: 500;
  margin-bottom: 40px;
}
.section-1 .section-buttons .button {
  min-width: 120px;
  margin: 0 4px;
}