/* ============================================== */
/* FONTS */
/* ============================================== */

@font-face {
    font-family: "SanFrancisco-Regular";
    src: url("../../fonts/SanFranciscoDisplay-Regular.otf") format("opentype");
}
@font-face {
    font-family: "SanFrancisco-Bold";
    src: url("../../fonts/SanFranciscoText-Bold.otf") format("opentype");
}
@font-face {
    font-family: "SanFrancisco-Heavy";
    src: url("../../fonts/SanFranciscoDisplay-Heavy.otf") format("opentype");
}
@font-face {
    font-family: "SanFrancisco-Light";
    src: url("../../fonts/SanFranciscoDisplay-Light.otf") format("opentype");
}
@font-face {
    font-family: "SanFrancisco-Medium";
    src: url("../../fonts/SanFranciscoDisplay-Medium.otf") format("opentype");
}

/* ============================================== */
/* RESET */
/* ============================================== */

@charset 'UTF-8';

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

pre{
  width: 100%;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  line-height: 1.6em;

  cursor: default;
  font-size: 1em;
  font-family: 'SanFrancisco-Medium', sans-serif;
  color:white;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

section{position: relative;}

ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

img {
  border:none !important;
  vertical-align: top;
  max-width:100%;
  margin:0 auto;
  display:block;
}

a{
  text-decoration: none;
  cursor: pointer;
}

p,label,input{
  cursor: default;
}

form,
input{
  display: block;
}

label{
  color:black;
  margin:15px 0 10px;
  float: left;
  font-size: 0.87em;
}

input,
textarea,
button{
  outline: none;
  display: block;
  overflow: hidden;
  float: left;
  border:none;
  font-size: 0.87em;
}

fieldset, a > img{border:none;}

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

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

body{
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;
  background: #f9f9f9;
  font-size: 1em;
  font-family: 'SanFrancisco-Medium', sans-serif;
  color:#555555;
}


h1,h2,h3,h4,h5,h6,p,
.h1,.h2,.h3,.h4,.h5,.h6{
  cursor: default;
  display: block;
  float: left;
  width: 100%;
}

p::first-letter{
  text-transform: capitalize;
}
h1,h2,h3,h4,h5,h6,p,a,li{
  line-height: 1.4em;
}

h1,h2,h3,h4,h5,h6{
  margin:10px 0;
  width: 100%;
  font-weight: normal;
}

h1,.h1{font-family: 'SanFrancisco-Heavy', sans-serif;}
h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{font-family: 'SanFrancisco-Medium', sans-serif;}

/*-- colof font --*/

p,a,li,
h1,h2,h3,h4,h5,h6{color:#34323D;}

/*-- headding font --*/

h1, .h1{font-size: 48px;line-height: 1em;letter-spacing: -1px;}
.h2{font-size: 32px;line-height: 1.1em;}
.h3{font-size: 23px;line-height: 1.3em;font-family: 'SanFrancisco-Light', sans-serif;}
.h4{font-size: 16px;}
.h5{font-size: 14px;}

/*-- titles font --*/

.title-line,
.title-no-line{
  font-family: 'SanFrancisco-Heavy', sans-serif;
  line-height: 1.3em;
  display: block;
  float: left;
  width: auto;
  position: relative;
  font-size: 0.90em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.title-line span{
  height: 3px;
  margin: 8px 0 15px;
  width: 60%;
  background: #718AF2;
  display: block;
  float: left;
  overflow: hidden;
}


@media screen and (max-width: 768px) {

  .title-line,
  .title-no-line{
    text-align: center;
    float: none;
    width: 100%;
    display: block;
    font-size: 0.85em;
    margin-bottom: 20px;
  }
  .title-line span{
    width: 12%;
    margin:10px auto;
    float: none;
  }

  h1, .h1{font-size: 32px;line-height: 1em;}
  h2, .h2{font-size: 18px;line-height: 1.3em;}
  h3, .h3{font-size: 16px;line-height: 1.6em;}
  h4, .h4{font-size: 14px;line-height: 1.5em;}
  h5, .h5{font-size: 14px;}
}




